diff --git a/.gitignore b/.gitignore
index 3dd095c5b..3939e5bc8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,4 @@
node_modules
-dist
scripts/icomoon
scripts/*.zip
npm*debug*.log
@@ -9,3 +8,4 @@ site/bundle.js
site/build
site/node_modules
.idea
+.history
\ No newline at end of file
diff --git a/dist/Icon.js b/dist/Icon.js
new file mode 100644
index 000000000..c9f3582e3
--- /dev/null
+++ b/dist/Icon.js
@@ -0,0 +1,76 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.withBaseIcon = exports["default"] = exports.Icon = void 0;
+
+var _react = _interopRequireDefault(require("react"));
+
+var _propTypes = _interopRequireDefault(require("prop-types"));
+
+var _SvgIcon = _interopRequireDefault(require("./SvgIcon"));
+
+var _excluded = ["style", "className", "icon", "size", "tag"];
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
+
+function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
+
+function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
+
+function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
+
+function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
+
+function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
+
+var Icon = function Icon(props) {
+ var style = props.style,
+ className = props.className,
+ icon = props.icon,
+ size = props.size,
+ tag = props.tag,
+ others = _objectWithoutProperties(props, _excluded); //eslint-disable-line
+
+
+ var Tag = tag;
+ return /*#__PURE__*/_react["default"].createElement(Tag, _extends({}, others, {
+ style: _objectSpread({
+ display: 'inline-block'
+ }, style),
+ className: className
+ }), /*#__PURE__*/_react["default"].createElement(_SvgIcon["default"], {
+ size: props.size,
+ icon: props.icon,
+ title: props.title
+ }));
+};
+
+exports.Icon = Icon;
+
+var withBaseIcon = function withBaseIcon(defaultProps) {
+ return function (props) {
+ var propsToUse = _objectSpread({}, defaultProps);
+
+ return /*#__PURE__*/_react["default"].createElement(Icon, _extends({}, propsToUse, props));
+ };
+};
+
+exports.withBaseIcon = withBaseIcon;
+Icon.defaultProps = {
+ size: 16,
+ fill: 'currentColor',
+ tag: 'i'
+};
+Icon.propTypes = {
+ icon: _propTypes["default"].object.isRequired,
+ size: _propTypes["default"].oneOfType([_propTypes["default"].number, _propTypes["default"].string]),
+ style: _propTypes["default"].object,
+ tag: _propTypes["default"].oneOf(['i', 'span', 'div']),
+ className: _propTypes["default"].string
+};
+var _default = Icon;
+exports["default"] = _default;
\ No newline at end of file
diff --git a/dist/Icon.playground.js b/dist/Icon.playground.js
new file mode 100644
index 000000000..51f942089
--- /dev/null
+++ b/dist/Icon.playground.js
@@ -0,0 +1,37 @@
+"use strict";
+
+function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.__PlaygroundIcon = void 0;
+
+var _react = _interopRequireDefault(require("react"));
+
+var _Icon = _interopRequireDefault(require("./Icon"));
+
+var icons = _interopRequireWildcard(require("./md/"));
+
+function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
+
+function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
+
+var __PlaygroundIcon = function __PlaygroundIcon() {
+ return /*#__PURE__*/_react["default"].createElement("div", {
+ style: {
+ color: 'green',
+ margin: 2,
+ padding: 4
+ }
+ }, Object.keys(icons).map(function (key) {
+ return /*#__PURE__*/_react["default"].createElement(_Icon["default"], {
+ icon: icons[key],
+ size: 42
+ });
+ }));
+};
+
+exports.__PlaygroundIcon = __PlaygroundIcon;
\ No newline at end of file
diff --git a/dist/README.md b/dist/README.md
new file mode 100644
index 000000000..b0e162bf2
--- /dev/null
+++ b/dist/README.md
@@ -0,0 +1,109 @@
+
+# react-icons-kit
+
+Note: Please visit https://reactsvgicons.com/
+has svg icons directly as react components can you can import to your project without
+to need to use a library
+
+Releases:
+
+v2.0.0
+
+- [@kamikazebr](https://github.com/kamikazebr) export withBaseIcon - PR [#75](https://github.com/wmira/react-icons-kit/pull/75)
+- [@lyleunderwood](https://github.com/lyleunderwood) Don't discard fill=none - PR [#73](https://github.com/wmira/react-icons-kit/pull/73)
+- [@lyleunderwood](https://github.com/lyleunderwood) Update Material Design Icons to 4.0.0 - PR [#60](https://github.com/wmira/react-icons-kit/pull/60)
+- [@vahissan](https://github.com/vahissan) Allow IconProp type definition to allow all HTML attributes. PR[#58](https://github.com/wmira/react-icons-kit/pull/58)
+- [@gottschalkironhack](https://github.com/gottschalkironhack) - Same material v4 update
+
+1.3.0
+
+- `[Merged PR #42 by @nbcnc`](https://github.com/wmira/react-icons-kit/pull/42)
+
+
+[](https://ReactForBeginners.com/friend/REACTICONS)
+
+[](https://AdvancedReact.com/friend/REACTICONS)
+
+## Installation
+
+```
+npm install --save react-icons-kit
+```
+
+## Documentation / Demo
+
+Please visit:
+[Vercel react-icons-kit](https://react-icons-kit.vercel.app/)
+[Surge react-icons-kit](https://react-icons-kit.surge.sh/)
+
+## Bundled Icon Sets
+
+* [`IcoMoon`](https://github.com/Keyamoon/IcoMoon-Free) vmaster
+* [`FontAwesome`](http://fortawesome.github.io/Font-Awesome/icons/) v4.7
+* [`MaterialIcons`](https://www.google.com/design/icons/) v4.x
+* [`Open Iconic`](https://github.com/iconic/open-iconic) v1.1.1
+* [`Entypo`](http://entypo.com) latest
+* [`Ikons`](http://ikons.piotrkwiatkowski.co.uk/) latest
+* [`Metrize`](http://www.alessioatzeni.com/metrize-icons/) latest
+* [`Octicons`](https://octicons.github.com/) v5.0.1
+* [`Ionicons`](http://ionicons.com/) v2.0.1
+* [`Linea`](http://linea.io/) latest
+* [`Typicons`](http://typicons.com/) v2.0.8
+* [`Noto Emoji Regular`](https://www.google.com/get/noto/#emoji-zsye/) latest
+* [`Feather Icons`](https://feathericons.com/)latest
+
+Plus more to come.
+
+## Browse Icon Sets
+
+Browse all available icons here:
+
+[Vercel react-icons-kit](https://react-icons-kit-wmira.vercel.app/)
+[Surge react-icons-kit](https://react-icons-kit.surge.sh/)
+
+
+## Quick Start Guide
+
+```javascript
+
+ import Icon from 'react-icons-kit';
+ import { ic_add_a_photo } from 'react-icons-kit/md/ic_add_a_photo';
+ import { lock } from 'react-icons-kit/fa/lock';
+
+ export const ShowIcons = () => {
+
+ return (
+
+
+
+
+ )
+ }
+```
+
+## Tree Shaking
+
+Use the eslint config from this: https://github.com/wmira/react-icons-kit/issues/38
+
+## Development
+
+### React Icons Kit Site
+
+To update the react-icons-kit site deployed at [react-icons-kit](https://react-icons-kit-wmira.vercel.app/), You would need to clone
+https://github.com/wmira/react-icons-kit-site
+
+1. Run npm run dist on react-icons-kit
+2. Go to react-icons-kit-site and do npm install
+3. cd node_modules
+4. ln -sf /path/to/react-icons-kit/dist react-icons-kit
+5. npm start
+
+You should now be able to live edit the website to do some changes, submit pull request.
+
+## Contributors
+
+react-icons-kit is brought to you by the following contributors:
+
+
+
+
diff --git a/dist/SvgIcon.js b/dist/SvgIcon.js
new file mode 100644
index 000000000..d86ff16b7
--- /dev/null
+++ b/dist/SvgIcon.js
@@ -0,0 +1,134 @@
+"use strict";
+
+function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports["default"] = exports.SvgIcon = void 0;
+
+var _react = _interopRequireWildcard(require("react"));
+
+var _propTypes = _interopRequireDefault(require("prop-types"));
+
+var _camelCase = require("camel-case");
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
+
+function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
+
+function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
+
+function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
+
+function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
+
+function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
+
+function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
+
+function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
+
+function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
+
+function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
+
+function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
+
+function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
+
+function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
+
+function notNullOrUndef(val) {
+ return val !== null && val !== undefined;
+}
+
+function expandStyle() {
+ var style = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
+ return style.split(';').reduce(function (partial, next) {
+ // next h ere is key:val
+ var _next$split = next.split(':'),
+ _next$split2 = _slicedToArray(_next$split, 2),
+ key = _next$split2[0],
+ val = _next$split2[1];
+
+ if (notNullOrUndef(key) && notNullOrUndef(val)) {
+ partial[(0, _camelCase.camelCase)(key)] = val;
+ }
+
+ return partial;
+ }, {});
+}
+
+var walkChildren = function walkChildren(children) {
+ return children.map(function (child, idx) {
+ var name = child.name,
+ attribsMap = child.attribs,
+ _child$children = child.children,
+ gchildren = _child$children === void 0 ? null : _child$children; //fill, stroke
+
+ var attribs = Object.keys(attribsMap).filter(function (key) {
+ return key !== 'fill' && key !== 'stroke' && attribsMap[key] !== 'none';
+ }).reduce(function (partial, key) {
+ if (key === 'style') {
+ partial.style = expandStyle(attribsMap[key]);
+ } else {
+ partial[(0, _camelCase.camelCase)(key)] = attribsMap[key];
+ }
+
+ return partial;
+ }, {}); //special case, it has fill and stroke at the same time
+
+ var merge = {};
+
+ if (attribsMap.fill === 'none' && attribsMap.stroke) {
+ merge = {
+ fill: 'none',
+ stroke: 'currentColor'
+ };
+ } else if (attribsMap.fill === 'none') {
+ merge = {
+ fill: 'none'
+ };
+ }
+
+ return /*#__PURE__*/(0, _react.createElement)(name, _objectSpread(_objectSpread({
+ key: idx
+ }, attribs), merge), gchildren === null ? gchildren : walkChildren(gchildren));
+ });
+};
+
+var SvgIcon = function SvgIcon(props) {
+ var size = props.size;
+ var _props$icon = props.icon,
+ children = _props$icon.children,
+ viewBox = _props$icon.viewBox,
+ _props$icon$attribs = _props$icon.attribs,
+ svgAttribs = _props$icon$attribs === void 0 ? {} : _props$icon$attribs;
+ var camelCasedAttribs = Object.keys(svgAttribs).reduce(function (partial, key) {
+ partial[(0, _camelCase.camelCase)(key)] = svgAttribs[key];
+ return partial;
+ }, {});
+ return /*#__PURE__*/_react["default"].createElement("svg", _extends({
+ fill: "currentColor",
+ style: {
+ display: 'inline-block',
+ verticalAlign: 'middle'
+ },
+ height: size,
+ width: size,
+ viewBox: viewBox
+ }, camelCasedAttribs), props.title ? /*#__PURE__*/_react["default"].createElement("title", null, props.title) : null, walkChildren(children));
+};
+
+exports.SvgIcon = SvgIcon;
+SvgIcon.defaultProps = {
+ size: 16
+};
+SvgIcon.propTypes = {
+ icon: _propTypes["default"].object.isRequired,
+ size: _propTypes["default"].oneOfType([_propTypes["default"].number, _propTypes["default"].string]),
+ title: _propTypes["default"].string
+};
+var _default = SvgIcon;
+exports["default"] = _default;
\ No newline at end of file
diff --git a/dist/entypo/address.js b/dist/entypo/address.js
new file mode 100644
index 000000000..c98df8ecb
--- /dev/null
+++ b/dist/entypo/address.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.address = void 0;
+var address = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.799,5.165l-2.375-1.83c-0.135-0.093-0.324-0.176-0.521-0.237C16.705,3.037,16.5,3,16.336,3H9.5l0.801,5h6.035\r\n\tc0.164,0,0.369-0.037,0.566-0.098s0.387-0.145,0.521-0.236l2.375-1.832C19.933,5.743,20,5.622,20,5.5S19.933,5.257,19.799,5.165z\r\n\t M8.5,1h-1C7.224,1,7,1.224,7,1.5V5H3.664c-0.166,0-0.37,0.037-0.567,0.099C2.899,5.159,2.71,5.242,2.576,5.335l-2.375,1.83\r\n\tC0.066,7.256,0,7.378,0,7.5c0,0.121,0.066,0.242,0.201,0.335l2.375,1.832C2.71,9.758,2.899,9.842,3.097,9.902\r\n\tC3.294,9.963,3.498,10,3.664,10H7v8.5C7,18.776,7.224,19,7.5,19h1C8.776,19,9,18.776,9,18.5v-17C9,1.224,8.776,1,8.5,1z"
+ }
+ }]
+};
+exports.address = address;
\ No newline at end of file
diff --git a/dist/entypo/adjust.js b/dist/entypo/adjust.js
new file mode 100644
index 000000000..a83d9dfd8
--- /dev/null
+++ b/dist/entypo/adjust.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.adjust = void 0;
+var adjust = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,9.199c-0.182,0-0.799,0-0.98,0c-0.553,0-1,0.359-1,0.801c0,0.441,0.447,0.799,1,0.799c0.182,0,0.799,0,0.98,0\r\n\tc0.552,0,1-0.357,1-0.799C20,9.559,19.551,9.199,19,9.199z M10,4.5c-3.051,0-5.5,2.449-5.5,5.5c0,3.051,2.449,5.5,5.5,5.5\r\n\tc3.05,0,5.5-2.449,5.5-5.5C15.5,6.949,13.049,4.5,10,4.5z M10,14c-2.211,0-4-1.791-4-4c0-2.211,1.789-4,4-4V14z M3,10\r\n\tc0-0.441-0.449-0.801-1-0.801c-0.185,0-0.816,0-1,0c-0.553,0-1,0.359-1,0.801c0,0.441,0.447,0.799,1,0.799c0.184,0,0.815,0,1,0\r\n\tC2.551,10.799,3,10.441,3,10z M10,3c0.441,0,0.799-0.447,0.799-1c0-0.184,0-0.816,0-1c0-0.553-0.358-1-0.799-1\r\n\tC9.558,0,9.199,0.447,9.199,1c0,0.184,0,0.816,0,1C9.199,2.553,9.558,3,10,3z M10,17c-0.442,0-0.801,0.447-0.801,1\r\n\tc0,0.184,0,0.816,0,1c0,0.553,0.359,1,0.801,1c0.441,0,0.799-0.447,0.799-1c0-0.184,0-0.816,0-1C10.799,17.447,10.441,17,10,17z\r\n\t M17.365,3.766c0.391-0.391,0.454-0.961,0.142-1.273s-0.883-0.248-1.272,0.143c-0.108,0.107-0.593,0.592-0.7,0.699\r\n\tc-0.391,0.391-0.454,0.961-0.142,1.273s0.883,0.248,1.273-0.143C16.773,4.357,17.257,3.873,17.365,3.766z M3.334,15.533\r\n\tc-0.108,0.109-0.593,0.594-0.7,0.701c-0.391,0.391-0.454,0.959-0.142,1.271s0.883,0.25,1.272-0.141\r\n\tc0.108-0.107,0.593-0.592,0.7-0.699c0.391-0.391,0.454-0.961,0.142-1.274S3.723,15.144,3.334,15.533z M3.765,2.635\r\n\tC3.375,2.244,2.804,2.18,2.492,2.492S2.244,3.375,2.633,3.766c0.108,0.107,0.593,0.592,0.7,0.699\r\n\tc0.391,0.391,0.96,0.455,1.272,0.143s0.249-0.883-0.141-1.273C4.357,3.227,3.873,2.742,3.765,2.635z M15.534,16.666\r\n\tc0.108,0.107,0.593,0.592,0.7,0.699c0.391,0.391,0.96,0.453,1.272,0.143c0.312-0.312,0.249-0.883-0.142-1.273\r\n\tc-0.107-0.107-0.592-0.592-0.699-0.699c-0.391-0.391-0.961-0.455-1.274-0.143S15.143,16.275,15.534,16.666z"
+ }
+ }]
+};
+exports.adjust = adjust;
\ No newline at end of file
diff --git a/dist/entypo/air.js b/dist/entypo/air.js
new file mode 100644
index 000000000..dfb598fb8
--- /dev/null
+++ b/dist/entypo/air.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.air = void 0;
+var air = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.643,6.357c1.747-1.5,3.127-2.686,6.872-0.57c1.799,1.016,3.25,1.4,4.457,1.398c2.115,0,3.486-1.176,4.671-2.193\r\n\tc0.423-0.363,0.477-1.008,0.122-1.439c-0.357-0.432-0.987-0.488-1.41-0.125c-1.746,1.502-3.127,2.688-6.872,0.57\r\n\tC5.535,1.205,3.217,3.195,1.355,4.795C0.933,5.158,0.879,5.801,1.234,6.234C1.59,6.664,2.22,6.721,2.643,6.357z M17.355,8.535\r\n\tc-1.746,1.5-3.127,2.688-6.872,0.57C5.535,6.31,3.217,8.301,1.355,9.9c-0.422,0.363-0.477,1.008-0.121,1.439\r\n\tc0.355,0.432,0.986,0.488,1.409,0.125C4.39,9.963,5.77,8.777,9.515,10.892c1.799,1.018,3.25,1.4,4.457,1.4\r\n\tc2.115,0,3.486-1.176,4.671-2.195c0.423-0.363,0.477-1.008,0.122-1.438C18.409,8.226,17.778,8.172,17.355,8.535z M17.355,13.641\r\n\tc-1.746,1.502-3.127,2.688-6.872,0.572c-4.948-2.795-7.266-0.805-9.128,0.795c-0.422,0.363-0.477,1.008-0.121,1.439\r\n\tc0.355,0.432,0.986,0.486,1.409,0.123C4.39,15.07,5.77,13.885,9.515,16c1.799,1.016,3.25,1.4,4.457,1.4\r\n\tc2.115,0,3.486-1.178,4.671-2.195c0.423-0.363,0.477-1.008,0.122-1.439C18.409,13.334,17.778,13.279,17.355,13.641z"
+ }
+ }]
+};
+exports.air = air;
\ No newline at end of file
diff --git a/dist/entypo/aircraft.js b/dist/entypo/aircraft.js
new file mode 100644
index 000000000..c5fcd8236
--- /dev/null
+++ b/dist/entypo/aircraft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.aircraft = void 0;
+var aircraft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.496,17.414c-0.394-1.096-1.805-4.775-2.39-6.297c-1.103,0.737-2.334,1.435-3.512,1.928\r\n\tc-0.366,1.28-1.094,3.709-1.446,4.033c-0.604,0.557-0.832,0.485-0.925-0.279c-0.093-0.764-0.485-3.236-0.485-3.236\r\n\ts-2.162-1.219-2.84-1.568s-0.667-0.591,0.057-0.974c0.422-0.223,2.927-0.085,4.242,0.005c0.861-0.951,1.931-1.882,2.993-2.679\r\n\tC6.975,7.271,4.04,4.672,3.156,3.923C2.38,3.265,3.235,3.126,3.235,3.126c0.39-0.07,1.222-0.132,1.628-0.009\r\n\tc2.524,0.763,6.442,2.068,7.363,2.376c0.353-0.249,0.737-0.52,1.162-0.821c4.702-3.33,5.887-2.593,6.111-2.27\r\n\ts0.503,1.701-4.199,5.032c-0.425,0.301-0.808,0.573-1.16,0.823c-0.029,0.98-0.157,5.151-0.311,7.811\r\n\tc-0.025,0.428-0.367,1.198-0.565,1.544C13.263,17.612,12.841,18.377,12.496,17.414z"
+ }
+ }]
+};
+exports.aircraft = aircraft;
\ No newline at end of file
diff --git a/dist/entypo/all.js b/dist/entypo/all.js
new file mode 100644
index 000000000..4987a342b
--- /dev/null
+++ b/dist/entypo/all.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.all = void 0;
+var all = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.225,5.767V3.086L0,9.542l7.225,6.691v-2.777L3,9.542L7.225,5.767z M12.225,6.953V3.086L5,9.542l7.225,6.691v-4.357\r\n\tc3.292,0,5.291,0.422,7.775,4.81C20,16.685,19.632,6.953,12.225,6.953z"
+ }
+ }]
+};
+exports.all = all;
\ No newline at end of file
diff --git a/dist/entypo/alternative.js b/dist/entypo/alternative.js
new file mode 100644
index 000000000..dc10be5c7
--- /dev/null
+++ b/dist/entypo/alternative.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alternative = void 0;
+var alternative = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9,13h2V4h2l-3-4L7,4h2V13z M17,7h-3v2h2v9H4V9h2V7H3C2.447,7,2,7.447,2,8v11c0,0.552,0.447,1,1,1h14c0.553,0,1-0.448,1-1V8\r\n\tC18,7.448,17.553,7,17,7z"
+ }
+ }]
+};
+exports.alternative = alternative;
\ No newline at end of file
diff --git a/dist/entypo/alternitive.js b/dist/entypo/alternitive.js
new file mode 100644
index 000000000..b26211a4d
--- /dev/null
+++ b/dist/entypo/alternitive.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alternitive = void 0;
+var alternitive = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,17V3c0-1.1-0.903-2-2.005-2H3.005C1.855,1,1,1.853,1,3v14c0,1.148,0.855,2,2.005,2h13.99C18.097,19,19,18.101,19,17z\r\n\t M15.184,11.607c0,0,1.132,1.117,1.411,1.635c0.008,0.011,0.011,0.021,0.014,0.025c0.113,0.19,0.142,0.34,0.085,0.45\r\n\tC16.6,13.9,16.28,13.992,16.171,14c0,0-1.943,0-1.999,0c-0.14,0-0.43-0.036-0.782-0.279c-0.27-0.188-0.537-0.499-0.797-0.802\r\n\tc-0.388-0.45-0.724-0.84-1.062-0.84c-0.043,0-0.086,0.007-0.126,0.021c-0.257,0.082-0.583,0.447-0.583,1.422\r\n\tc0,0.305-0.24,0.479-0.41,0.479c0,0-0.872,0-0.916,0c-0.312,0-1.937-0.109-3.376-1.628c-1.766-1.86-3.352-5.591-3.366-5.624\r\n\tc-0.1-0.241,0.107-0.372,0.332-0.372h2.02c0.271,0,0.358,0.164,0.42,0.311C5.596,6.855,5.86,7.529,6.292,8.287\r\n\tc0.703,1.233,1.136,1.735,1.481,1.735c0.064,0,0.126-0.017,0.184-0.049c0.451-0.249,0.367-1.857,0.347-2.189\r\n\tc0-0.063-0.001-0.719-0.231-1.034C7.907,6.522,7.626,6.435,7.456,6.402c0.045-0.065,0.142-0.166,0.266-0.226\r\n\tC8.031,6.022,8.588,6,9.142,6h0.308c0.601,0.008,0.757,0.047,0.974,0.102c0.439,0.105,0.448,0.39,0.409,1.36\r\n\tc-0.011,0.276-0.023,0.589-0.023,0.956c0,0.079-0.003,0.166-0.003,0.256c-0.014,0.496-0.03,1.057,0.32,1.287\r\n\tc0.046,0.028,0.097,0.044,0.151,0.044c0.122,0,0.487,0,1.476-1.697c0.435-0.749,0.77-1.633,0.793-1.699\r\n\tc0.02-0.036,0.079-0.142,0.148-0.183c0.056-0.033,0.128-0.039,0.166-0.039h2.375c0.26,0,0.436,0.039,0.469,0.138\r\n\tc0.057,0.159-0.011,0.644-1.096,2.11c-0.184,0.243-0.343,0.455-0.483,0.64C14.142,10.563,14.142,10.629,15.184,11.607z"
+ }
+ }]
+};
+exports.alternitive = alternitive;
\ No newline at end of file
diff --git a/dist/entypo/archive.js b/dist/entypo/archive.js
new file mode 100644
index 000000000..6c6abca75
--- /dev/null
+++ b/dist/entypo/archive.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.archive = void 0;
+var archive = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.981,2H6.018c0,0-0.996,0-0.996,1h9.955C14.977,2,13.981,2,13.981,2z M16.968,5c0-1-0.995-1-0.995-1H4.027\r\n\tc0,0-0.995,0-0.995,1v1h13.936V5z M18.958,6C18.37,5.408,18.37,5.408,18.37,5.408V7H1.63V5.408c0,0,0,0-0.589,0.592\r\n\tC0.452,6.592,0.03,6.75,0.267,8c0.236,1.246,1.379,8.076,1.549,9c0.186,1.014,1.217,1,1.217,1h13.936c0,0,1.03,0.014,1.217-1\r\n\tc0.17-0.924,1.312-7.754,1.549-9C19.97,6.75,19.548,6.592,18.958,6z M14,11.997C14,12.551,13.551,13,12.997,13H7.003\r\n\tC6.449,13,6,12.551,6,11.997V10h1v2h6v-2h1V11.997z"
+ }
+ }]
+};
+exports.archive = archive;
\ No newline at end of file
diff --git a/dist/entypo/arrows.js b/dist/entypo/arrows.js
new file mode 100644
index 000000000..faf792303
--- /dev/null
+++ b/dist/entypo/arrows.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows = void 0;
+var arrows = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1L5,8h10L10,1z M10,19l5-7H5L10,19z"
+ }
+ }]
+};
+exports.arrows = arrows;
\ No newline at end of file
diff --git a/dist/entypo/attachment.js b/dist/entypo/attachment.js
new file mode 100644
index 000000000..cb178f2ca
--- /dev/null
+++ b/dist/entypo/attachment.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.attachment = void 0;
+var attachment = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.602,19.8c-1.293,0-2.504-0.555-3.378-1.44c-1.695-1.716-2.167-4.711,0.209-7.116c1.391-1.408,6.966-7.053,9.748-9.87\r\n\tc0.988-1,2.245-1.387,3.448-1.06c1.183,0.32,2.151,1.301,2.468,2.498c0.322,1.22-0.059,2.493-1.046,3.493l-9.323,9.44\r\n\tc-0.532,0.539-1.134,0.858-1.738,0.922c-0.599,0.064-1.17-0.13-1.57-0.535c-0.724-0.736-0.828-2.117,0.378-3.337l6.548-6.63\r\n\tc0.269-0.272,0.705-0.272,0.974,0s0.269,0.714,0,0.986l-6.549,6.631c-0.566,0.572-0.618,1.119-0.377,1.364\r\n\tC5.5,15.252,5.66,15.301,5.845,15.28c0.283-0.029,0.606-0.216,0.909-0.521l9.323-9.439c0.64-0.648,0.885-1.41,0.69-2.145\r\n\tc-0.192-0.725-0.778-1.318-1.493-1.513c-0.726-0.197-1.48,0.052-2.12,0.7c-2.782,2.818-8.356,8.462-9.748,9.87\r\n\tc-1.816,1.839-1.381,3.956-0.209,5.143c1.173,1.187,3.262,1.629,5.079-0.212l9.748-9.87c0.269-0.272,0.705-0.272,0.974,0\r\n\tc0.269,0.272,0.269,0.714,0,0.987L9.25,18.15C8.101,19.312,6.814,19.8,5.602,19.8z"
+ }
+ }]
+};
+exports.attachment = attachment;
\ No newline at end of file
diff --git a/dist/entypo/back.js b/dist/entypo/back.js
new file mode 100644
index 000000000..7508d4f00
--- /dev/null
+++ b/dist/entypo/back.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.back = void 0;
+var back = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,7v6c0,1.103-0.896,2-2,2H3v-3h13V8H5v2L1,6.5L5,3v2h12C18.104,5,19,5.896,19,7z"
+ }
+ }]
+};
+exports.back = back;
\ No newline at end of file
diff --git a/dist/entypo/bag.js b/dist/entypo/bag.js
new file mode 100644
index 000000000..aad71066d
--- /dev/null
+++ b/dist/entypo/bag.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bag = void 0;
+var bag = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.121,3.271c-0.295-0.256-1.906-1.731-2.207-1.991C15.615,1.021,15.158,1,14.812,1H5.188C4.843,1,4.386,1.021,4.086,1.28\r\n\tC3.785,1.54,2.174,3.016,1.879,3.271C1.582,3.527,1.336,3.914,1.415,4.463c0.079,0.551,1.89,13.661,1.937,13.973\r\n\tC3.398,18.747,3.67,18.993,4,19h12c0.33-0.007,0.602-0.253,0.648-0.565c0.047-0.311,1.858-13.422,1.938-13.973\r\n\tC18.664,3.914,18.418,3.527,18.121,3.271z M10,11.973c-3.248,0-3.943-4.596-4.087-5.543H7.75c0.276,1.381,0.904,3.744,2.25,3.744\r\n\ts1.975-2.363,2.25-3.744h1.838C13.943,7.377,13.248,11.973,10,11.973z M3.17,4.006L5,2h10l1.83,2.006H3.17z"
+ }
+ }]
+};
+exports.bag = bag;
\ No newline at end of file
diff --git a/dist/entypo/baidu.js b/dist/entypo/baidu.js
new file mode 100644
index 000000000..2b1f8bdea
--- /dev/null
+++ b/dist/entypo/baidu.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.baidu = void 0;
+var baidu = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.4116364,6.9370399c-0.3587151-0.2830696-0.923996-0.4004283-1.4627256-0.3652954\r\n\tc-0.4163361,0.0265503-0.7609177,0.0346184-1.0045052,0.1825905c-1.1165419,0.6770897-1.2169638,4.3529868,0.1820755,4.9340606\r\n\tC18.100399,12.9238987,19.1828365,8.3379107,17.4116364,6.9370399z M12.933279,10.7750425\r\n\tc-0.9637632-1.1185446-1.6411963-2.6815205-3.5630016-2.375906c-1.7067132,0.2714539-1.9238648,1.6706648-2.8335552,2.6501064\r\n\tc-1.0796924,1.1637497-3.1049521,2.0173635-3.5640316,3.8376598c-0.3346822,1.3286009,0.1159286,2.8923788,0.9135242,3.4726515\r\n\tc1.5661802,1.1375408,4.473722-0.1246262,6.5796628,0.0911503c1.2606802,0.1290321,2.2246733,0.571804,3.197649,0.5484009\r\n\tc2.2625532-0.0532722,4.0896587-1.669405,3.1077557-4.294507C16.2904587,13.418684,14.1704426,12.21099,12.933279,10.7750425z\r\n\t M12.6592512,6.8458877c1.1333075,0.0318718,2.3012905-1.2649717,2.3760777-2.467402\r\n\tc0.0976181-1.5697851-0.929431-3.1436331-2.4671726-2.7416024c-0.9137535,0.2387236-1.66397,1.4105408-1.7361822,2.5593553\r\n\tC10.7485466,5.5281014,11.4487524,6.8116126,12.6592512,6.8458877z M8.2726755,6.4801922\r\n\tC9.4498711,6.321291,9.9402504,4.9083467,9.7355728,3.2816844c-0.1689148-1.338729-0.8955564-2.6371751-2.4675736-2.192801\r\n\tC5.1026068,1.7001691,5.4477601,6.8620238,8.2726755,6.4801922z M4.1614451,10.5923948\r\n\tc2.5823007-0.3854933,1.9797125-5.9385071-0.8224294-5.2997556C0.9296925,5.8418407,1.2518435,11.0266409,4.1614451,10.5923948z"
+ }
+ }]
+};
+exports.baidu = baidu;
\ No newline at end of file
diff --git a/dist/entypo/basecamp.js b/dist/entypo/basecamp.js
new file mode 100644
index 000000000..901b79dc0
--- /dev/null
+++ b/dist/entypo/basecamp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basecamp = void 0;
+var basecamp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2C5.327,2,0.7,8.481,0.7,14.422C0.7,15.799,5.234,18,10,18s9.3-2.201,9.3-3.578C19.3,8.481,14.673,2,10,2z\r\n\t M10.006,15.615c-5.198,0-6.673-2.068-6.673-2.722c0-1.287,2.13-4.485,2.906-4.485c0.719,0,1.542,1.811,2.314,1.811\r\n\tc1.241,0,2.567-3.954,3.579-3.954s4.601,5.178,4.601,6.749C16.733,13.285,15.649,15.615,10.006,15.615z"
+ }
+ }]
+};
+exports.basecamp = basecamp;
\ No newline at end of file
diff --git a/dist/entypo/basket.js b/dist/entypo/basket.js
new file mode 100644
index 000000000..e5ccb2e62
--- /dev/null
+++ b/dist/entypo/basket.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basket = void 0;
+var basket = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.399,7h-5.007l-1.812,1.812c-0.453,0.453-1.056,0.702-1.696,0.702c-0.642,0-1.244-0.25-1.698-0.703\r\n\tC7.734,8.359,7.484,7.757,7.483,7.116c0-0.039,0.01-0.077,0.011-0.116H1.6C1.268,7,1,7.268,1,7.6V10h18V7.6\r\n\tC19,7.268,18.73,7,18.399,7z M10.768,7.999l5.055-5.055c0.235-0.234,0.237-0.613,0.002-0.849l-0.92-0.92\r\n\tc-0.234-0.234-0.614-0.233-0.85,0L9,6.231c-0.488,0.488-0.488,1.28,0,1.768C9.488,8.486,10.279,8.487,10.768,7.999z M3.823,17.271\r\n\tC3.92,17.672,4.338,18,4.75,18h10.5c0.412,0,0.83-0.328,0.927-0.729L17.7,11H2.3L3.823,17.271z"
+ }
+ }]
+};
+exports.basket = basket;
\ No newline at end of file
diff --git a/dist/entypo/battery.js b/dist/entypo/battery.js
new file mode 100644
index 000000000..dbaf65bbf
--- /dev/null
+++ b/dist/entypo/battery.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery = void 0;
+var battery = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.408,10c0-2.766,1.277-4.32,2.277-4.32c0.363,0,1.315,0,1.315,0C18.332,4.621,17.779,4,15.342,4H5.334\r\n\tC1.6,4,0,7.441,0,10c0,2.559,1.6,6,5.334,6h10.008c2.438,0,2.99-0.621,3.658-1.68c0,0-0.315,0-1.315,0S15.408,12.766,15.408,10z\r\n\t M12.688,11.795c-0.164,0.25-0.676,0.016-0.676,0.016l-2.957-1.338c0,0-0.264,0.67-0.467,1.141\r\n\tc-0.205,0.471-0.361,1.004-1.209,0.408c-0.849-0.598-3.581-3.25-3.581-3.25S3.453,8.488,3.625,8.221\r\n\tc0.163-0.252,0.676-0.016,0.676-0.016l2.956,1.336c0,0,0.265-0.668,0.468-1.139C7.93,7.932,8.086,7.396,8.934,7.994\r\n\tc0.849,0.596,3.58,3.25,3.58,3.25S12.859,11.527,12.688,11.795z M18.874,7.928h-0.749c-0.559,0-1.105,0.754-1.105,1.979\r\n\tc0,1.227,0.547,1.98,1.105,1.98h0.749c0.56,0,1.126-0.754,1.126-1.98C20,8.682,19.434,7.928,18.874,7.928z"
+ }
+ }]
+};
+exports.battery = battery;
\ No newline at end of file
diff --git a/dist/entypo/behance.js b/dist/entypo/behance.js
new file mode 100644
index 000000000..f12968ff2
--- /dev/null
+++ b/dist/entypo/behance.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.behance = void 0;
+var behance = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.072,9.301c0,0,1.892-0.147,1.892-2.459c0-2.315-1.548-3.441-3.51-3.441H0v12.926h6.454c0,0,3.941,0.129,3.941-3.816\r\n\tC10.394,12.51,10.566,9.301,8.072,9.301z M2.844,5.697h3.61c0,0,0.878,0,0.878,1.344c0,1.346-0.516,1.541-1.102,1.541H2.844V5.697z\r\n\t M6.271,14.029H2.844v-3.455h3.61c0,0,1.308-0.018,1.308,1.775C7.762,13.861,6.785,14.018,6.271,14.029z M15.649,6.688\r\n\tc-4.771,0-4.767,4.967-4.767,4.967s-0.326,4.941,4.767,4.941c0,0,4.243,0.254,4.243-3.437h-2.182c0,0,0.072,1.391-1.988,1.391\r\n\tc0,0-2.184,0.152-2.184-2.25h6.423C19.962,12.299,20.67,6.688,15.649,6.688z M17.59,10.574h-4.074c0,0,0.266-1.992,2.182-1.992\r\n\tS17.59,10.574,17.59,10.574z M18.097,4.16H12.98v1.594h5.117V4.16z"
+ }
+ }]
+};
+exports.behance = behance;
\ No newline at end of file
diff --git a/dist/entypo/bell.js b/dist/entypo/bell.js
new file mode 100644
index 000000000..15b89fb7d
--- /dev/null
+++ b/dist/entypo/bell.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bell = void 0;
+var bell = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.65,8.512c-2.28-4.907-3.466-6.771-7.191-6.693C6.132,1.846,6.45,0.857,5.438,1.232C4.428,1.607,5.295,2.156,4.261,3.005\r\n\tc-2.902,2.383-2.635,4.587-1.289,9.84c0.567,2.213-1.367,2.321-0.602,4.465c0.559,1.564,4.679,2.219,9.025,0.607\r\n\tc4.347-1.613,7.086-4.814,6.527-6.378C17.157,9.394,15.611,10.578,14.65,8.512z M10.924,16.595c-3.882,1.44-7.072,0.594-7.207,0.217\r\n\tc-0.232-0.65,1.253-2.816,5.691-4.463c4.438-1.647,6.915-1.036,7.174-0.311C16.735,12.467,14.807,15.154,10.924,16.595z\r\n\t M9.676,13.101c-2.029,0.753-3.439,1.614-4.353,2.389c0.643,0.584,1.847,0.726,3.046,0.281c1.527-0.565,2.466-1.866,2.095-2.904\r\n\tc-0.005-0.013-0.011-0.023-0.016-0.036C10.197,12.913,9.94,13.002,9.676,13.101z"
+ }
+ }]
+};
+exports.bell = bell;
\ No newline at end of file
diff --git a/dist/entypo/blackboard.js b/dist/entypo/blackboard.js
new file mode 100644
index 000000000..498ad5c21
--- /dev/null
+++ b/dist/entypo/blackboard.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.blackboard = void 0;
+var blackboard = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M2.539,20H6l1.406-3.698L4.44,15.298L2.539,20z M12.594,16.302L14,20h3.461\r\n\tl-1.901-4.702L12.594,16.302z M18,2h-6.5L11,0H9L8.5,2H2C1.447,2,1,2.447,1,3v11c0,0.552,0.447,1,1,1h16c0.553,0,1-0.448,1-1V3\r\n\tC19,2.448,18.553,2,18,2z"
+ }
+ }]
+};
+exports.blackboard = blackboard;
\ No newline at end of file
diff --git a/dist/entypo/block.js b/dist/entypo/block.js
new file mode 100644
index 000000000..261df5ced
--- /dev/null
+++ b/dist/entypo/block.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.block = void 0;
+var block = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M2.399,10c0-4.197,3.402-7.6,7.6-7.6c1.829,0,3.506,0.647,4.817,1.723L4.122,14.817\r\n\tC3.046,13.505,2.399,11.829,2.399,10z M9.999,17.599c-1.828,0-3.505-0.646-4.815-1.722L15.878,5.184\r\n\tC16.953,6.496,17.6,8.171,17.6,10C17.6,14.197,14.196,17.599,9.999,17.599z"
+ }
+ }]
+};
+exports.block = block;
\ No newline at end of file
diff --git a/dist/entypo/boldDown.js b/dist/entypo/boldDown.js
new file mode 100644
index 000000000..d4237785a
--- /dev/null
+++ b/dist/entypo/boldDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.boldDown = void 0;
+var boldDown = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.5,10H6V3h8v7h3.5L10,17.5L2.5,10z"
+ }
+ }]
+};
+exports.boldDown = boldDown;
\ No newline at end of file
diff --git a/dist/entypo/boldLeft.js b/dist/entypo/boldLeft.js
new file mode 100644
index 000000000..959b4027e
--- /dev/null
+++ b/dist/entypo/boldLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.boldLeft = void 0;
+var boldLeft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2.5V6h7v8h-7v3.5L2.5,10L10,2.5z"
+ }
+ }]
+};
+exports.boldLeft = boldLeft;
\ No newline at end of file
diff --git a/dist/entypo/boldRight.js b/dist/entypo/boldRight.js
new file mode 100644
index 000000000..7f4ba5bd3
--- /dev/null
+++ b/dist/entypo/boldRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.boldRight = void 0;
+var boldRight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.5,10L10,17.5V14H3V6h7V2.5L17.5,10z"
+ }
+ }]
+};
+exports.boldRight = boldRight;
\ No newline at end of file
diff --git a/dist/entypo/boldUp.js b/dist/entypo/boldUp.js
new file mode 100644
index 000000000..4d49328ed
--- /dev/null
+++ b/dist/entypo/boldUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.boldUp = void 0;
+var boldUp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2.5l7.5,7.5H14v7H6v-7H2.5L10,2.5z"
+ }
+ }]
+};
+exports.boldUp = boldUp;
\ No newline at end of file
diff --git a/dist/entypo/book.js b/dist/entypo/book.js
new file mode 100644
index 000000000..a526893b3
--- /dev/null
+++ b/dist/entypo/book.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.book = void 0;
+var book = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,5.95v10.351c0,0.522-0.452,0.771-1,1.16c-0.44,0.313-1-0.075-1-0.587c0,0,0-9.905,0-10.114\r\n\tc0-0.211-0.074-0.412-0.314-0.535c-0.24-0.123-7.738-4.065-7.738-4.065C6.827,2.115,6.299,1.782,5.595,2.144\r\n\tC4.926,2.488,4.562,2.862,4.469,3.038l8.18,4.482C12.866,7.634,13,7.81,13,8.036v10.802c0,0.23-0.142,0.476-0.369,0.585\r\n\tc-0.104,0.052-0.219,0.077-0.333,0.077c-0.135,0-0.271-0.033-0.386-0.104c-0.215-0.131-7.774-4.766-8.273-5.067\r\n\tc-0.24-0.144-0.521-0.439-0.527-0.658L3,3.385c0-0.198-0.023-0.547,0.289-1.032c0.697-1.084,3.129-2.317,4.36-1.678l8.999,4.555\r\n\tC16.865,5.342,17,5.566,17,5.95z"
+ }
+ }]
+};
+exports.book = book;
\ No newline at end of file
diff --git a/dist/entypo/bookmark.js b/dist/entypo/bookmark.js
new file mode 100644
index 000000000..1d9c8eacd
--- /dev/null
+++ b/dist/entypo/bookmark.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookmark = void 0;
+var bookmark = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,2v17l-4-4l-4,4V2c0-0.553,0.585-1.02,1-1h6C13.689,0.98,14,1.447,14,2z"
+ }
+ }]
+};
+exports.bookmark = bookmark;
\ No newline at end of file
diff --git a/dist/entypo/bookmarks.js b/dist/entypo/bookmarks.js
new file mode 100644
index 000000000..83bb69ef7
--- /dev/null
+++ b/dist/entypo/bookmarks.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookmarks = void 0;
+var bookmarks = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,0h-4c-0.553,0-1,0.447-1,1l0.023,0.222c1.102,0,2,0.897,2,2v11.359L13,13.4l3,3.6V1C16,0.447,15.553,0,15,0z M9.023,3H5\r\n\tC4.447,3,4,3.447,4,4v16l3-3.6l3,3.6V4C10,3.447,9.576,3,9.023,3z"
+ }
+ }]
+};
+exports.bookmarks = bookmarks;
\ No newline at end of file
diff --git a/dist/entypo/bottom.js b/dist/entypo/bottom.js
new file mode 100644
index 000000000..59202032c
--- /dev/null
+++ b/dist/entypo/bottom.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bottom = void 0;
+var bottom = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,11h-2V3H9v8H7l3,3L13,11z M17.4,15H2.6C2.048,15,2,15.447,2,16c0,0.553,0.048,1,0.6,1H17.4c0.552,0,0.6-0.447,0.6-1\r\n\tC18,15.447,17.952,15,17.4,15z"
+ }
+ }]
+};
+exports.bottom = bottom;
\ No newline at end of file
diff --git a/dist/entypo/bowl.js b/dist/entypo/bowl.js
new file mode 100644
index 000000000..49a5669af
--- /dev/null
+++ b/dist/entypo/bowl.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bowl = void 0;
+var bowl = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.949,7.472c-2.176,2.902-4.095,3.002-7.046,3.152H9.802c-3.591-0.002-6.138-1.336-6.138-1.832\r\n\tC3.662,8.321,5.962,7.095,9.269,6.973l0.59-1.473c-0.019,0-0.037-0.002-0.057-0.002c-4.908,0-7.791,1.562-7.791,3.051v2\r\n\tc0,0.918,0.582,8.949,7.582,8.949s8-8.031,8-8.949v-2c0-0.391-0.201-0.787-0.584-1.158L16.949,7.472z M17.589,2.702\r\n\tc-0.441-0.33-1.069-0.242-1.399,0.201l-3.608,4.809l2.336-5.838c0.206-0.512-0.044-1.094-0.557-1.301\r\n\tc-0.508-0.205-1.096,0.043-1.3,0.559L9.802,9.274c2.882-0.147,4.277-0.227,6.067-2.611c1.789-2.387,1.919-2.561,1.919-2.561\r\n\tC18.12,3.661,18.031,3.034,17.589,2.702z"
+ }
+ }]
+};
+exports.bowl = bowl;
\ No newline at end of file
diff --git a/dist/entypo/box.js b/dist/entypo/box.js
new file mode 100644
index 000000000..264ee9f0c
--- /dev/null
+++ b/dist/entypo/box.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.box = void 0;
+var box = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.399,2H1.6C1.268,2,1,2.267,1,2.6V5h18V2.6C19,2.267,18.73,2,18.399,2z M2,16.6c0,0.77,0.629,1.4,1.399,1.4h13.2\r\n\tc0.77,0,1.4-0.631,1.4-1.4V6H2V16.6z M7,8h6v2H7V8z"
+ }
+ }]
+};
+exports.box = box;
\ No newline at end of file
diff --git a/dist/entypo/branch.js b/dist/entypo/branch.js
new file mode 100644
index 000000000..a90c00c9f
--- /dev/null
+++ b/dist/entypo/branch.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.branch = void 0;
+var branch = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.4,4c0-1.326-1.074-2.4-2.4-2.4S11.6,2.674,11.6,4c0,0.961,0.568,1.784,1.384,2.167c-0.082,1.584-1.27,2.122-3.335,2.896\r\n\tC8.779,9.39,7.82,9.752,7,10.297V6.176C7.825,5.796,8.4,4.967,8.4,4c0-1.326-1.074-2.4-2.4-2.4S3.6,2.674,3.6,4\r\n\tc0,0.967,0.576,1.796,1.4,2.176v7.649C4.175,14.204,3.6,15.033,3.6,16c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4\r\n\tc0-0.961-0.568-1.784-1.384-2.167c0.082-1.583,1.271-2.122,3.335-2.896c2.03-0.762,4.541-1.711,4.64-4.756\r\n\tC15.82,5.803,16.4,4.971,16.4,4z M6,2.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385\r\n\tC5.235,5.385,4.616,4.764,4.616,4C4.616,3.234,5.235,2.615,6,2.615z M6,17.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C7.384,16.764,6.764,17.385,6,17.385z M14,5.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC15.384,4.764,14.764,5.385,14,5.385z"
+ }
+ }]
+};
+exports.branch = branch;
\ No newline at end of file
diff --git a/dist/entypo/briefcase.js b/dist/entypo/briefcase.js
new file mode 100644
index 000000000..9bbfa9918
--- /dev/null
+++ b/dist/entypo/briefcase.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.briefcase = void 0;
+var briefcase = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9,10h2v2h9c0,0-0.149-4.459-0.2-5.854C19.75,4.82,19.275,4,17.8,4h-3.208c-0.497-0.938-1.032-1.945-1.197-2.256\r\n\tC13.064,1.121,12.951,1,12.216,1H7.783C7.048,1,6.936,1.121,6.604,1.744C6.439,2.055,5.904,3.062,5.408,4H2.199\r\n\tc-1.476,0-1.945,0.82-2,2.146C0.145,7.473,0,12,0,12h9V10z M7.649,2.916C7.879,2.484,7.957,2.4,8.466,2.4h3.067\r\n\tc0.509,0,0.588,0.084,0.816,0.516c0.086,0.16,0.318,0.6,0.575,1.084H7.074C7.331,3.516,7.563,3.076,7.649,2.916z M11,15H9v-2H0.5\r\n\tc0,0,0.124,1.797,0.199,3.322C0.73,16.955,0.917,18,2.499,18H17.5c1.582,0,1.765-1.047,1.8-1.678C19.387,14.754,19.5,13,19.5,13H11\r\n\tV15z"
+ }
+ }]
+};
+exports.briefcase = briefcase;
\ No newline at end of file
diff --git a/dist/entypo/browser.js b/dist/entypo/browser.js
new file mode 100644
index 000000000..1336c7d9d
--- /dev/null
+++ b/dist/entypo/browser.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.browser = void 0;
+var browser = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,2H2C0.9,2,0,2.9,0,4v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M4.5,3.75\r\n\tc0.414,0,0.75,0.336,0.75,0.75c0,0.414-0.336,0.75-0.75,0.75c-0.414,0-0.75-0.336-0.75-0.75C3.75,4.086,4.086,3.75,4.5,3.75z\r\n\t M1.75,4.5c0-0.414,0.336-0.75,0.75-0.75c0.414,0,0.75,0.336,0.75,0.75c0,0.414-0.336,0.75-0.75,0.75\r\n\tC2.086,5.25,1.75,4.914,1.75,4.5z M18,16H2V7h16V16z M18,5H6V4h12.019L18,5z"
+ }
+ }]
+};
+exports.browser = browser;
\ No newline at end of file
diff --git a/dist/entypo/brush.js b/dist/entypo/brush.js
new file mode 100644
index 000000000..c99b1e133
--- /dev/null
+++ b/dist/entypo/brush.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.brush = void 0;
+var brush = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.763,13.563c-1.515,1.488-0.235,3.016-2.247,5.279c-0.908,1.023,3.738,0.711,6.039-1.551\r\n\tc0.977-0.961,0.701-2.359-0.346-3.389C5.162,12.874,3.739,12.602,2.763,13.563z M19.539,0.659C18.763-0.105,10.16,6.788,7.6,9.305\r\n\tc-1.271,1.25-1.695,1.92-2.084,2.42c-0.17,0.219,0.055,0.285,0.154,0.336c0.504,0.258,0.856,0.496,1.311,0.943\r\n\tc0.456,0.447,0.699,0.793,0.959,1.289c0.053,0.098,0.121,0.318,0.342,0.152c0.51-0.383,1.191-0.801,2.462-2.049\r\n\tC13.305,9.88,20.317,1.422,19.539,0.659z"
+ }
+ }]
+};
+exports.brush = brush;
\ No newline at end of file
diff --git a/dist/entypo/bucket.js b/dist/entypo/bucket.js
new file mode 100644
index 000000000..4dc158d03
--- /dev/null
+++ b/dist/entypo/bucket.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bucket = void 0;
+var bucket = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,1C6.092,1,3.002,2.592,3.21,3.95c0.06,0.389,0.225,1.945,0.434,3.273c-2.405,0.934-3.202,2.449-3.095,3.684\r\n\tc0.127,1.461,1.441,3.025,4.328,3.295c1.648,0.154,3.631-0.75,4.916-2.295C9.671,11.7,9.6,11.457,9.6,11.2\r\n\tc0-0.774,0.627-1.4,1.4-1.4c0.774,0,1.4,0.627,1.4,1.4c0,0.762-0.61,1.381-1.369,1.398c-1.529,1.973-3.858,3.164-6.064,3.025\r\n\tc0.051,0.324,0.07,0.947,0.096,1.113C5.153,17.315,7.41,18.996,11,19c3.59-0.004,5.847-1.685,5.938-2.263\r\n\tC17.026,16.16,18.579,5.328,18.79,3.95C18.998,2.592,15.907,1,11,1z M1.943,10.785c-0.055-0.643,0.455-1.498,1.924-2.139\r\n\tc0.211,1.34,0.441,2.797,0.643,4.074C2.906,12.407,2.012,11.571,1.943,10.785z M11,6.024C7.41,6.022,4.863,4.69,4.863,4.192\r\n\tC4.861,3.698,7.41,2.402,11,2.404c3.59-0.002,6.139,1.294,6.137,1.788C17.137,4.69,14.59,6.022,11,6.024z"
+ }
+ }]
+};
+exports.bucket = bucket;
\ No newline at end of file
diff --git a/dist/entypo/bug.js b/dist/entypo/bug.js
new file mode 100644
index 000000000..22032bc48
--- /dev/null
+++ b/dist/entypo/bug.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bug = void 0;
+var bug = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1C7.7907715,1,6,2.7908325,6,5h8C14,2.7908325,12.2092285,1,10,1z M19,10h-3V7.5031738\r\n\tc0-0.02771-0.0065918-0.0535278-0.0080566-0.0808716l2.2150879-2.21521c0.390625-0.3905029,0.390625-1.0236816,0-1.4141846\r\n\tc-0.3903809-0.390564-1.0236816-0.390564-1.4140625,0l-2.215332,2.21521C14.550293,6.0066528,14.5246582,6,14.4970703,6H5.5029297\r\n\tC5.4753418,6,5.449707,6.0066528,5.4223633,6.0081177l-2.215332-2.21521c-0.3903809-0.390564-1.0236816-0.390564-1.4140625,0\r\n\tc-0.390625,0.3905029-0.390625,1.0236816,0,1.4141846l2.2150879,2.21521C4.0065918,7.449646,4,7.4754639,4,7.5031738V10H1\r\n\tc-0.5522461,0-1,0.4476929-1,1c0,0.5522461,0.4477539,1,1,1h3c0,0.7799683,0.15625,1.520813,0.4272461,2.2037354\r\n\tc-0.0441895,0.0316162-0.0947266,0.0494995-0.1342773,0.0891724l-2.8286133,2.8283691\r\n\tc-0.3903809,0.390564-0.3903809,1.0237427,0,1.4142456c0.390625,0.3905029,1.0239258,0.3905029,1.4143066,0L5.4802246,15.93396\r\n\tC6.3725586,16.9555054,7.6027832,17.6751099,9,17.9100342V8h2v9.9100342\r\n\tc1.3972168-0.2349243,2.6274414-0.9545288,3.5197754-1.9760132l2.6015625,2.6015015\r\n\tc0.3903809,0.3905029,1.0236816,0.3905029,1.4143066,0c0.3903809-0.3905029,0.3903809-1.0236816,0-1.4142456l-2.8286133-2.8283691\r\n\tc-0.0395508-0.0396729-0.0900879-0.0575562-0.1342773-0.0891724C15.84375,13.520813,16,12.7799683,16,12h3\r\n\tc0.5522461,0,1-0.4477539,1-1C20,10.4476929,19.5522461,10,19,10z"
+ }
+ }]
+};
+exports.bug = bug;
\ No newline at end of file
diff --git a/dist/entypo/bulb.js b/dist/entypo/bulb.js
new file mode 100644
index 000000000..04c6e8259
--- /dev/null
+++ b/dist/entypo/bulb.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bulb = void 0;
+var bulb = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M7.186,19.172C7.975,19.682,8.887,20.027,10,20\r\n\tc1.111,0.027,2.025-0.318,2.814-0.828L12.797,17H7.203L7.186,19.172z M12.697,16c0-4.357,4.63-5.848,4.283-10.188\r\n\tC16.762,3.074,14.907,0.002,10,0.002c-4.907,0-6.762,3.072-6.981,5.811C2.672,10.152,7.303,11.643,7.303,16H12.697z M5,6\r\n\tc0.207-2.598,2.113-4,5-4c2.886,0,4.654,1.371,4.861,3.969c0.113,1.424-0.705,2.373-1.809,3.926C12.238,11.041,11.449,12.238,11,14\r\n\tH9c-0.449-1.762-1.238-2.959-2.053-4.106C5.844,8.342,4.886,7.424,5,6z"
+ }
+ }]
+};
+exports.bulb = bulb;
\ No newline at end of file
diff --git a/dist/entypo/cake.js b/dist/entypo/cake.js
new file mode 100644
index 000000000..ef6c0fce1
--- /dev/null
+++ b/dist/entypo/cake.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cake = void 0;
+var cake = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.584,6.036c1.952,0,2.591-1.381,1.839-2.843c-0.871-1.693,1.895-3.155,0.521-3.155c-1.301,0-3.736,1.418-4.19,3.183\r\n\tC7.415,4.545,8.05,6.036,9.584,6.036z M14.796,14.987l-0.444-0.383c-0.487-0.42-1.25-0.418-1.735,0l-0.442,0.382\r\n\tc-0.62,0.534-1.397,0.801-2.174,0.801c-0.777,0-1.554-0.267-2.173-0.8l-0.444-0.384c-0.487-0.418-1.249-0.419-1.734,0.001\r\n\tl-0.444,0.383c-1.193,1.028-2.967,1.056-4.204,0.1V19c0,0.552,0.448,1,1,1h16c0.552,0,1-0.448,1-1v-3.912\r\n\tC17.765,16.042,15.991,16.017,14.796,14.987z M10,7c-7.574,0-9,3.361-9,5v0.469l1.164,1.003c0.486,0.421,1.249,0.417,1.735,0\r\n\tl0.444-0.383c1.237-1.065,3.105-1.066,4.345,0l0.444,0.384c0.484,0.417,1.245,0.42,1.735-0.001l0.442-0.382\r\n\tc1.24-1.067,3.107-1.067,4.346-0.001l0.444,0.383c0.487,0.421,1.25,0.417,1.735,0L19,12.469V12C19,10.361,17.574,7,10,7z"
+ }
+ }]
+};
+exports.cake = cake;
\ No newline at end of file
diff --git a/dist/entypo/calculator.js b/dist/entypo/calculator.js
new file mode 100644
index 000000000..6fba54d6f
--- /dev/null
+++ b/dist/entypo/calculator.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calculator = void 0;
+var calculator = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.6,1H5.398C4.629,1,4,1.629,4,2.4V17.6c0,0.77,0.629,1.4,1.398,1.4H14.6c0.769,0,1.4-0.631,1.4-1.4V2.4\r\n\tC16,1.629,15.369,1,14.6,1z M7,12c0.689,0,1.25,0.447,1.25,1S7.689,14,7,14c-0.69,0-1.25-0.447-1.25-1S6.31,12,7,12z M5.75,10\r\n\tc0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1c0,0.553-0.561,1-1.25,1C6.31,11,5.75,10.553,5.75,10z M7,15\r\n\tc0.689,0,1.25,0.447,1.25,1S7.689,17,7,17c-0.69,0-1.25-0.447-1.25-1S6.31,15,7,15z M10,12c0.689,0,1.25,0.447,1.25,1\r\n\ts-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S9.31,12,10,12z M8.75,10c0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1\r\n\tc0,0.553-0.561,1-1.25,1C9.31,11,8.75,10.553,8.75,10z M10,15c0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1\r\n\tS9.31,15,10,15z M13,12c0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S12.31,12,13,12z M11.75,10\r\n\tc0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1c0,0.553-0.561,1-1.25,1C12.31,11,11.75,10.553,11.75,10z M13,15\r\n\tc0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S12.31,15,13,15z M5,7V4h10v3H5z"
+ }
+ }]
+};
+exports.calculator = calculator;
\ No newline at end of file
diff --git a/dist/entypo/calendar.js b/dist/entypo/calendar.js
new file mode 100644
index 000000000..f3b8eeb7d
--- /dev/null
+++ b/dist/entypo/calendar.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendar = void 0;
+var calendar = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,3h-1v2h-3V3H7v2H4V3H3C1.899,3,1,3.9,1,5v12c0,1.1,0.899,2,2,2h14c1.1,0,2-0.9,2-2V5C19,3.9,18.1,3,17,3z M17,17H3V9h14\r\n\tV17z M6.5,1h-2v3.5h2V1z M15.5,1h-2v3.5h2V1z"
+ }
+ }]
+};
+exports.calendar = calendar;
\ No newline at end of file
diff --git a/dist/entypo/camera.js b/dist/entypo/camera.js
new file mode 100644
index 000000000..d96c03e2c
--- /dev/null
+++ b/dist/entypo/camera.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.camera = void 0;
+var camera = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,8c-1.657,0-3,1.344-3,3c0,1.656,1.343,3,3,3c1.656,0,3-1.344,3-3C13,9.344,11.656,8,10,8z M18,5h-2.4\r\n\tc-0.33,0-0.686-0.256-0.789-0.57l-0.621-1.861C14.085,2.256,13.731,2,13.4,2H6.6C6.27,2,5.914,2.256,5.811,2.568L5.189,4.43\r\n\tC5.085,4.744,4.73,5,4.4,5H2C0.9,5,0,5.9,0,7v9c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M10,16\r\n\tc-2.762,0-5-2.238-5-5c0-2.762,2.238-5,5-5c2.761,0,5,2.238,5,5C15,13.762,12.761,16,10,16z M17.5,8.2c-0.387,0-0.7-0.314-0.7-0.701\r\n\tc0-0.385,0.313-0.7,0.7-0.7s0.7,0.314,0.7,0.7C18.2,7.886,17.887,8.2,17.5,8.2z"
+ }
+ }]
+};
+exports.camera = camera;
\ No newline at end of file
diff --git a/dist/entypo/cap.js b/dist/entypo/cap.js
new file mode 100644
index 000000000..9e117e267
--- /dev/null
+++ b/dist/entypo/cap.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cap = void 0;
+var cap = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.302,12.238c0.464,1.879,1.054,2.701,3.022,3.562C8.293,16.66,9.228,17.6,10,17.6c0.771,0,1.648-0.822,3.616-1.684\r\n\tc1.969-0.861,1.443-1.123,1.907-3.002L10,15.6L3.302,12.238z M19.511,7.336l-8.325-4.662c-0.652-0.365-1.72-0.365-2.372,0\r\n\tL0.488,7.336c-0.652,0.365-0.652,0.963,0,1.328l8.325,4.662c0.652,0.365,1.72,0.365,2.372,0l5.382-3.014l-5.836-1.367\r\n\tC10.506,9,10.259,9.031,10,9.031c-1.052,0-1.904-0.506-1.904-1.131c0-0.627,0.853-1.133,1.904-1.133c0.816,0,1.51,0.307,1.78,0.734\r\n\tl6.182,2.029l1.549-0.867C20.162,8.299,20.162,7.701,19.511,7.336z M16.967,16.17c-0.065,0.385,1.283,1.018,1.411-0.107\r\n\tc0.579-5.072-0.416-6.531-0.416-6.531l-1.395,0.781C16.567,10.312,17.75,11.438,16.967,16.17z"
+ }
+ }]
+};
+exports.cap = cap;
\ No newline at end of file
diff --git a/dist/entypo/card.js b/dist/entypo/card.js
new file mode 100644
index 000000000..1d8fbb1de
--- /dev/null
+++ b/dist/entypo/card.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.card = void 0;
+var card = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,3H2C0.899,3,0,3.9,0,5v10c0,1.1,0.899,2,2,2h16c1.1,0,2-0.9,2-2V5C20,3.9,19.1,3,18,3z M18,15H2V9h16V15z M18,6H2V5h16\r\n\tV6z M4,11.1v0.6h0.6v-0.6H4z M7.6,12.299V12.9h1.2v-0.601h0.6v-0.6H10v-0.6H8.8v0.6H8.199v0.6H7.6z M10,12.9v-0.601H9.399V12.9H10z\r\n\t M7,12.9v-0.601H5.8V12.9H7z M7.6,11.699h0.6v-0.6H7v1.199h0.6V11.699z M5.199,12.299H5.8v-0.6h0.6v-0.6h-1.2v0.6H4.6v0.6H4V12.9\r\n\th1.199V12.299z"
+ }
+ }]
+};
+exports.card = card;
\ No newline at end of file
diff --git a/dist/entypo/cart.js b/dist/entypo/cart.js
new file mode 100644
index 000000000..875e5c2af
--- /dev/null
+++ b/dist/entypo/cart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cart = void 0;
+var cart = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,17c0,1.104,0.894,2,2,2c1.104,0,2-0.896,2-2c0-1.106-0.896-2-2-2C13.894,15,13,15.894,13,17z M3,17c0,1.104,0.895,2,2,2\r\n\tc1.103,0,2-0.896,2-2c0-1.106-0.897-2-2-2C3.895,15,3,15.894,3,17z M6.547,12.172L17.615,9.01C17.826,8.949,18,8.721,18,8.5V3H4V1.4\r\n\tC4,1.18,3.819,1,3.601,1H0.399C0.18,1,0,1.18,0,1.4L0,3h2l1.91,8.957L4,12.9v1.649c0,0.219,0.18,0.4,0.4,0.4H17.6\r\n\tc0.22,0,0.4-0.182,0.4-0.4V13H6.752C5.602,13,5.578,12.449,6.547,12.172z"
+ }
+ }]
+};
+exports.cart = cart;
\ No newline at end of file
diff --git a/dist/entypo/cascade.js b/dist/entypo/cascade.js
new file mode 100644
index 000000000..a029a809a
--- /dev/null
+++ b/dist/entypo/cascade.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cascade = void 0;
+var cascade = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,14.6c-0.967,0-1.796,0.576-2.176,1.4H8.5C7.672,16,7,15.328,7,14.5v-3.85C7.456,10.868,7.961,11,8.5,11h3.324\r\n\tc0.38,0.824,1.208,1.4,2.176,1.4c1.326,0,2.4-1.075,2.4-2.4S15.326,7.6,14,7.6c-0.967,0-1.796,0.576-2.176,1.4H8.5\r\n\tC7.672,9,7,8.328,7,7.5V5.176C7.825,4.796,8.4,3.967,8.4,3c0-1.326-1.074-2.4-2.4-2.4S3.6,1.674,3.6,3\r\n\tc0,0.967,0.576,1.796,1.4,2.176V14.5C5,16.433,6.567,18,8.5,18h3.324c0.38,0.824,1.208,1.4,2.176,1.4c1.326,0,2.4-1.075,2.4-2.4\r\n\tS15.326,14.6,14,14.6z M14,8.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tC12.616,9.234,13.235,8.615,14,8.615z M6,1.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385\r\n\tC5.235,4.385,4.616,3.764,4.616,3C4.616,2.234,5.235,1.615,6,1.615z M14,18.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C15.384,17.764,14.764,18.385,14,18.385z"
+ }
+ }]
+};
+exports.cascade = cascade;
\ No newline at end of file
diff --git a/dist/entypo/ccw.js b/dist/entypo/ccw.js
new file mode 100644
index 000000000..bc65c77a8
--- /dev/null
+++ b/dist/entypo/ccw.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ccw = void 0;
+var ccw = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.685,10h2.372V9.795c0.108-4.434,3.724-7.996,8.169-7.996c4.515,0,8.174,3.672,8.174,8.201s-3.659,8.199-8.174,8.199\r\n\tc-1.898,0-3.645-0.65-5.033-1.738l1.406-1.504c1.016,0.748,2.27,1.193,3.627,1.193c3.386,0,6.131-2.754,6.131-6.15\r\n\tc0-3.396-2.745-6.15-6.131-6.15c-3.317,0-6.018,2.643-6.125,5.945V10h2.672l-3.494,3.894L0.685,10z"
+ }
+ }]
+};
+exports.ccw = ccw;
\ No newline at end of file
diff --git a/dist/entypo/chart.js b/dist/entypo/chart.js
new file mode 100644
index 000000000..3a33b28eb
--- /dev/null
+++ b/dist/entypo/chart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chart = void 0;
+var chart = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,0.958v9.039C11,10.551,10.551,11,9.997,11H0.958c0.498,4.555,4.355,8.1,9.042,8.1c5.026,0,9.1-4.074,9.1-9.1\r\n\tC19.1,5.312,15.555,1.456,11,0.958z M9,0.958C4.774,1.42,1.42,4.774,0.958,9H9V0.958z"
+ }
+ }]
+};
+exports.chart = chart;
\ No newline at end of file
diff --git a/dist/entypo/chat.js b/dist/entypo/chat.js
new file mode 100644
index 000000000..80fd8d650
--- /dev/null
+++ b/dist/entypo/chat.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chat = void 0;
+var chat = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.8,12.2V6H2C0.9,6,0,6.9,0,8v6c0,1.1,0.9,2,2,2h1v3l3-3h5c1.1,0,2-0.9,2-2v-1.82c-0.064,0.014-0.132,0.021-0.2,0.021h-7\r\n\tV12.2z M18,1H9C7.9,1,7,1.9,7,3v8h7l3,3v-3h1c1.1,0,2-0.899,2-2V3C20,1.9,19.1,1,18,1z"
+ }
+ }]
+};
+exports.chat = chat;
\ No newline at end of file
diff --git a/dist/entypo/check.js b/dist/entypo/check.js
new file mode 100644
index 000000000..f0be70c61
--- /dev/null
+++ b/dist/entypo/check.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.check = void 0;
+var check = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.294,16.998c-0.435,0-0.847-0.203-1.111-0.553L3.61,11.724c-0.465-0.613-0.344-1.486,0.27-1.951\r\n\tc0.615-0.467,1.488-0.344,1.953,0.27l2.351,3.104l5.911-9.492c0.407-0.652,1.267-0.852,1.921-0.445\r\n\tc0.653,0.406,0.854,1.266,0.446,1.92L9.478,16.34c-0.242,0.391-0.661,0.635-1.12,0.656C8.336,16.998,8.316,16.998,8.294,16.998z"
+ }
+ }]
+};
+exports.check = check;
\ No newline at end of file
diff --git a/dist/entypo/circle.js b/dist/entypo/circle.js
new file mode 100644
index 000000000..952aa2898
--- /dev/null
+++ b/dist/entypo/circle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle = void 0;
+var circle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6S5.802,2.4,10,2.4c4.197,0,7.601,3.402,7.601,7.6\r\n\tS14.197,17.599,10,17.599z"
+ }
+ }]
+};
+exports.circle = circle;
\ No newline at end of file
diff --git a/dist/entypo/clapperboard.js b/dist/entypo/clapperboard.js
new file mode 100644
index 000000000..ac31c9f8b
--- /dev/null
+++ b/dist/entypo/clapperboard.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clapperboard = void 0;
+var clapperboard = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M20,3v14c0,0.552-0.447,1-1,1H1c-0.553,0-1-0.448-1-1V3c0-0.553,0.447-1,1-1h1l3,3\r\n\th2.5l-3-3h3l3,3H13l-3-3h3l3,3h2.5l-3-3H19C19.553,2,20,2.448,20,3z"
+ }
+ }]
+};
+exports.clapperboard = clapperboard;
\ No newline at end of file
diff --git a/dist/entypo/clipboard.js b/dist/entypo/clipboard.js
new file mode 100644
index 000000000..470aa39b6
--- /dev/null
+++ b/dist/entypo/clipboard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clipboard = void 0;
+var clipboard = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.6,2l-1.2,3H5.6l-1.2-3C3.629,2,3,2.629,3,3.4V18.6c0,0.77,0.629,1.4,1.399,1.4h11.2c0.77,0,1.4-0.631,1.4-1.4V3.4\r\n\tC17,2.629,16.369,2,15.6,2z M13.6,4l0.9-2h-2.181L11.6,0h-3.2L7.68,2H5.5l0.899,2H13.6z"
+ }
+ }]
+};
+exports.clipboard = clipboard;
\ No newline at end of file
diff --git a/dist/entypo/clock.js b/dist/entypo/clock.js
new file mode 100644
index 000000000..194a80059
--- /dev/null
+++ b/dist/entypo/clock.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clock = void 0;
+var clock = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.601,3.402,7.601,7.6\r\n\tC17.6,14.197,14.196,17.6,9.999,17.6z M11,9.33V4H9v6.245l-3.546,2.048l1,1.732l4.115-2.377C10.807,11.511,11,11.175,11,10.9v-0.168\r\n\tl4.24-4.166c-0.198-0.271-0.411-0.529-0.647-0.766L11,9.33z"
+ }
+ }]
+};
+exports.clock = clock;
\ No newline at end of file
diff --git a/dist/entypo/cloud.js b/dist/entypo/cloud.js
new file mode 100644
index 000000000..b6172ab23
--- /dev/null
+++ b/dist/entypo/cloud.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud = void 0;
+var cloud = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20,11.32c0,2.584-2.144,4.68-4.787,4.68H3.617C1.619,16,0,14.416,0,12.463c0-1.951,1.619-3.535,3.617-3.535\r\n\tc0.146,0,0.288,0.012,0.429,0.027C4.009,8.709,3.989,8.457,3.989,8.199C3.989,5.328,6.37,3,9.309,3c2.407,0,4.439,1.562,5.096,3.707\r\n\tc0.263-0.043,0.532-0.066,0.809-0.066C17.856,6.641,20,8.734,20,11.32z"
+ }
+ }]
+};
+exports.cloud = cloud;
\ No newline at end of file
diff --git a/dist/entypo/club.js b/dist/entypo/club.js
new file mode 100644
index 000000000..a99ac6e2c
--- /dev/null
+++ b/dist/entypo/club.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.club = void 0;
+var club = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6,13.5l4,2.5l4-2.5V5H6V13.5z M4.5,10c0-1.105-0.896-2-2-2s-2,0.895-2,2c0,1.105,0.896,2,2,2S4.5,11.105,4.5,10z M17.5,8\r\n\tc-1.104,0-2,0.895-2,2c0,1.105,0.896,2,2,2s2-0.895,2-2C19.5,8.895,18.604,8,17.5,8z M4.485,6.199C5.74,4.384,7.802,3.3,10,3.3\r\n\tc2.158,0,4.198,1.056,5.456,2.823c0.449,0.629,1.323,0.776,1.952,0.329c0.63-0.448,0.777-1.323,0.329-1.953\r\n\tC15.955,1.995,13.062,0.5,10,0.5c-3.117,0-6.04,1.535-7.817,4.107c-0.439,0.636-0.28,1.508,0.355,1.948\r\n\tC3.175,6.993,4.046,6.834,4.485,6.199z M15.456,13.877C14.198,15.645,12.158,16.7,10,16.7c-2.198,0-4.26-1.084-5.515-2.899\r\n\tc-0.439-0.636-1.311-0.794-1.947-0.356c-0.636,0.44-0.795,1.312-0.355,1.948C3.96,17.965,6.883,19.5,10,19.5\r\n\tc3.062,0,5.955-1.495,7.737-3.999c0.448-0.63,0.301-1.504-0.329-1.953C16.779,13.101,15.905,13.248,15.456,13.877z"
+ }
+ }]
+};
+exports.club = club;
\ No newline at end of file
diff --git a/dist/entypo/code.js b/dist/entypo/code.js
new file mode 100644
index 000000000..ce5598c63
--- /dev/null
+++ b/dist/entypo/code.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.code = void 0;
+var code = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.719,14.75c-0.236,0-0.474-0.083-0.664-0.252L-0.005,10l5.341-4.748C5.748,4.887,6.38,4.922,6.747,5.335\r\n\tc0.367,0.413,0.33,1.045-0.083,1.412L3.005,10l3.378,3.002c0.413,0.367,0.45,0.999,0.083,1.412\r\n\tC6.269,14.637,5.994,14.75,5.719,14.75z M14.664,14.748L20.005,10l-5.06-4.498c-0.413-0.367-1.045-0.33-1.411,0.083\r\n\tc-0.367,0.413-0.33,1.045,0.083,1.412L16.995,10l-3.659,3.252c-0.413,0.367-0.45,0.999-0.083,1.412C13.45,14.887,13.725,15,14,15\r\n\tC14.236,15,14.474,14.917,14.664,14.748z M9.986,16.165l2-12c0.091-0.545-0.277-1.06-0.822-1.151\r\n\tc-0.547-0.092-1.061,0.277-1.15,0.822l-2,12c-0.091,0.545,0.277,1.06,0.822,1.151C8.892,16.996,8.946,17,9.001,17\r\n\tC9.481,17,9.905,16.653,9.986,16.165z"
+ }
+ }]
+};
+exports.code = code;
\ No newline at end of file
diff --git a/dist/entypo/cog.js b/dist/entypo/cog.js
new file mode 100644
index 000000000..94fccee3b
--- /dev/null
+++ b/dist/entypo/cog.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cog = void 0;
+var cog = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.783,10c0-1.049,0.646-1.875,1.617-2.443c-0.176-0.584-0.407-1.145-0.692-1.672c-1.089,0.285-1.97-0.141-2.711-0.883\r\n\tc-0.741-0.74-0.968-1.621-0.683-2.711c-0.527-0.285-1.088-0.518-1.672-0.691C12.074,2.57,11.047,3.215,10,3.215\r\n\tc-1.048,0-2.074-0.645-2.643-1.615C6.772,1.773,6.213,2.006,5.686,2.291c0.285,1.09,0.059,1.971-0.684,2.711\r\n\tC4.262,5.744,3.381,6.17,2.291,5.885C2.006,6.412,1.774,6.973,1.6,7.557C2.57,8.125,3.215,8.951,3.215,10\r\n\tc0,1.047-0.645,2.074-1.615,2.643c0.175,0.584,0.406,1.144,0.691,1.672c1.09-0.285,1.971-0.059,2.711,0.682\r\n\tc0.741,0.742,0.969,1.623,0.684,2.711c0.527,0.285,1.087,0.518,1.672,0.693c0.568-0.973,1.595-1.617,2.643-1.617\r\n\tc1.047,0,2.074,0.645,2.643,1.617c0.584-0.176,1.144-0.408,1.672-0.693c-0.285-1.088-0.059-1.969,0.683-2.711\r\n\tc0.741-0.74,1.622-1.166,2.711-0.883c0.285-0.527,0.517-1.086,0.692-1.672C17.429,11.873,16.783,11.047,16.783,10z M10,13.652\r\n\tc-2.018,0-3.653-1.635-3.653-3.652c0-2.018,1.636-3.654,3.653-3.654c2.018,0,3.652,1.637,3.652,3.654\r\n\tC13.652,12.018,12.018,13.652,10,13.652z"
+ }
+ }]
+};
+exports.cog = cog;
\ No newline at end of file
diff --git a/dist/entypo/colours.js b/dist/entypo/colours.js
new file mode 100644
index 000000000..d7eba0a38
--- /dev/null
+++ b/dist/entypo/colours.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.colours = void 0;
+var colours = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.179,5.998C2.756,5.648,2.122,5.708,1.771,6.13L0.494,7.669c-0.35,0.423-0.291,1.058,0.131,1.407l7.888,6.542L4.706,7.264\r\n\tL3.179,5.998z M7.013,2.683l-1.82,0.829C4.694,3.74,4.471,4.337,4.698,4.836l4.25,9.325l0.213-9.179L8.339,3.178\r\n\tC8.109,2.678,7.513,2.455,7.013,2.683z M14.211,2.887c0.013-0.55-0.427-1.01-0.976-1.023l-2-0.046\r\n\tc-0.549-0.013-1.009,0.427-1.022,0.976L9.974,13.037l4.19-8.167L14.211,2.887z M19.191,3.837l-1.779-0.913\r\n\tc-0.489-0.25-1.096-0.055-1.347,0.434L9.674,15.814c-0.251,0.489-0.056,1.096,0.434,1.347l1.779,0.913\r\n\tc0.489,0.251,1.095,0.056,1.346-0.433l6.391-12.456C19.875,4.694,19.68,4.088,19.191,3.837z M12.799,16.293\r\n\tc-0.252,0.492-0.855,0.686-1.346,0.434c-0.492-0.252-0.685-0.854-0.433-1.346c0.252-0.492,0.854-0.685,1.346-0.433\r\n\tC12.858,15.199,13.051,15.802,12.799,16.293z"
+ }
+ }]
+};
+exports.colours = colours;
\ No newline at end of file
diff --git a/dist/entypo/commons.js b/dist/entypo/commons.js
new file mode 100644
index 000000000..b3b0fdec8
--- /dev/null
+++ b/dist/entypo/commons.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commons = void 0;
+var commons = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.8,10.8l1.1,0.6c-0.2,0.4-0.6,0.8-1,1.1c-0.4,0.3-0.9,0.4-1.4,0.4c-0.8,0-1.5-0.2-2-0.8C5,11.6,4.8,10.9,4.8,10\r\n\tc0-0.9,0.3-1.6,0.8-2.1C6,7.4,6.7,7.1,7.5,7.1c1.1,0,2,0.4,2.4,1.3L8.7,9.1C8.5,8.8,8.4,8.6,8.2,8.5S7.8,8.4,7.7,8.4\r\n\tc-0.8,0-1.2,0.5-1.2,1.6c0,0.5,0.1,0.9,0.3,1.2c0.2,0.3,0.5,0.4,0.9,0.4C8.2,11.6,8.6,11.4,8.8,10.8z M13,11.6\r\n\tc-0.4,0-0.7-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.2c0-1.1,0.4-1.6,1.2-1.6c0.2,0,0.4,0.1,0.5,0.2c0.2,0.1,0.4,0.3,0.5,0.6l1.2-0.6\r\n\tc-0.5-0.9-1.3-1.3-2.4-1.3c-0.8,0-1.4,0.3-1.9,0.8c-0.5,0.5-0.8,1.2-0.8,2.1c0,0.9,0.2,1.6,0.7,2.1c0.5,0.5,1.2,0.8,2,0.8\r\n\tc0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.8-0.6,1-1.1l-1.2-0.6C13.9,11.4,13.5,11.6,13,11.6z M19.6,10c0,2.7-0.9,4.9-2.7,6.7\r\n\tc-1.9,1.9-4.2,2.9-6.9,2.9c-2.6,0-4.9-0.9-6.8-2.8c-1.9-1.9-2.8-4.1-2.8-6.8c0-2.6,0.9-4.9,2.8-6.8C5.1,1.3,7.3,0.4,10,0.4\r\n\tc2.7,0,5,0.9,6.8,2.8C18.7,5,19.6,7.3,19.6,10z M17.9,10c0-2.2-0.8-4-2.3-5.6C14,2.9,12.2,2.1,10,2.1c-2.2,0-4,0.8-5.5,2.3\r\n\tC2.9,6,2.1,7.9,2.1,10c0,2.1,0.8,4,2.3,5.5c1.6,1.6,3.4,2.3,5.6,2.3c2.1,0,4-0.8,5.6-2.4C17.1,14,17.9,12.2,17.9,10z"
+ }
+ }]
+};
+exports.commons = commons;
\ No newline at end of file
diff --git a/dist/entypo/commonsAttribution.js b/dist/entypo/commonsAttribution.js
new file mode 100644
index 000000000..939836acc
--- /dev/null
+++ b/dist/entypo/commonsAttribution.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commonsAttribution = void 0;
+var commonsAttribution = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.6,7.6v3.9h-1.1v4.6h-3v-4.6H7.4V7.6C7.4,7.3,7.7,7,8,7H12C12.3,7,12.6,7.3,12.6,7.6z M10,6.5c0.7,0,1.3-0.6,1.3-1.3\r\n\tc0-0.7-0.6-1.3-1.3-1.3c-0.7,0-1.3,0.6-1.3,1.3C8.7,5.9,9.3,6.5,10,6.5z M19.6,10c0,2.7-0.9,4.9-2.7,6.7c-1.9,1.9-4.2,2.9-6.9,2.9\r\n\tc-2.6,0-4.9-0.9-6.8-2.8c-1.9-1.9-2.8-4.1-2.8-6.8c0-2.6,0.9-4.9,2.8-6.8C5.1,1.3,7.3,0.4,10,0.4c2.7,0,5,0.9,6.8,2.8\r\n\tC18.7,5,19.6,7.3,19.6,10z M17.9,10c0-2.2-0.8-4-2.3-5.6C14,2.9,12.2,2.1,10,2.1c-2.2,0-4,0.8-5.5,2.3C2.9,6,2.1,7.9,2.1,10\r\n\tc0,2.1,0.8,4,2.3,5.5s3.4,2.3,5.6,2.3c2.1,0,4-0.8,5.6-2.4C17.1,14,17.9,12.2,17.9,10z"
+ }
+ }]
+};
+exports.commonsAttribution = commonsAttribution;
\ No newline at end of file
diff --git a/dist/entypo/commonsNoderivs.js b/dist/entypo/commonsNoderivs.js
new file mode 100644
index 000000000..9a58bb9b3
--- /dev/null
+++ b/dist/entypo/commonsNoderivs.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commonsNoderivs = void 0;
+var commonsNoderivs = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1s4,0.8,5.6,2.3\r\n\tc1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M6.6,10.8h7v1.7h-7V10.8z M6.6,7.7h7v1.7h-7V7.7z"
+ }
+ }]
+};
+exports.commonsNoderivs = commonsNoderivs;
\ No newline at end of file
diff --git a/dist/entypo/commonsNoncommercialEu.js b/dist/entypo/commonsNoncommercialEu.js
new file mode 100644
index 000000000..cba9c375a
--- /dev/null
+++ b/dist/entypo/commonsNoncommercialEu.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commonsNoncommercialEu = void 0;
+var commonsNoncommercialEu = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-0.9,0.1-1.8,0.4-2.6l2.5,1.1H4.9v1.1h0.9\r\n\tc0,0.2,0,0.3,0,0.5v0.3H4.9v1.1h1c0.1,0.9,0.5,1.5,0.9,2.1c0.9,1.2,2.3,1.8,3.9,1.8c1,0,2-0.3,2.5-0.6l-0.4-1.8\r\n\tc-0.3,0.2-1.1,0.4-1.8,0.4c-0.8,0-1.6-0.2-2.1-0.8c-0.2-0.3-0.4-0.6-0.5-1.1H12l5,2.2C16.6,14.4,16.1,15,15.6,15.5z M9.3,10.5\r\n\tL9.3,10.5L9.3,10.5L9.3,10.5z M12.4,9.7h0.1V8.6H9.8L8.7,8.1C8.8,7.9,8.9,7.7,9,7.5c0.5-0.6,1.2-0.9,2-0.9c0.7,0,1.4,0.2,1.8,0.4\r\n\tl0.5-1.8c-0.6-0.3-1.4-0.5-2.4-0.5C9.3,4.7,8,5.3,7.1,6.4C6.9,6.6,6.7,6.9,6.6,7.1L3.4,5.8c0.3-0.5,0.7-0.9,1.1-1.3\r\n\tC6,2.9,7.8,2.1,10,2.1c2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6c0,0.7-0.1,1.4-0.2,2L12.4,9.7z"
+ }
+ }]
+};
+exports.commonsNoncommercialEu = commonsNoncommercialEu;
\ No newline at end of file
diff --git a/dist/entypo/commonsNoncommercialUs.js b/dist/entypo/commonsNoncommercialUs.js
new file mode 100644
index 000000000..75e59251c
--- /dev/null
+++ b/dist/entypo/commonsNoncommercialUs.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commonsNoncommercialUs = void 0;
+var commonsNoncommercialUs = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10s0.9,4.9,2.8,6.8c1.9,1.9,4.1,2.8,6.8,2.8\r\n\tc2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7S18.7,5,16.8,3.2z M15.6,15.5c-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3\r\n\tC2.9,14,2.1,12.1,2.1,10c0-0.9,0.1-1.8,0.4-2.6l4.9,2.2c0.5,0.2,1,0.4,1.5,0.7l1.1,0.5l0.9,0.4c0.2,0.1,0.3,0.3,0.3,0.6\r\n\tc0,0.7-0.6,1-1.2,1c-0.9,0-1.5-0.3-2.1-0.9l-1.3,1.3c0.8,0.7,1.8,1.1,2.9,1.1v1.5h1.1v-1.5c1.3-0.1,2.4-0.9,2.6-2.1l3.6,1.6\r\n\tC16.6,14.4,16.1,15,15.6,15.5z M12.7,9.9c-0.5-0.2-1-0.4-1.5-0.7l-0.8-0.4L9.1,8.3C9.1,8.2,9,8.1,9,8c0-0.6,0.7-0.7,1.2-0.7\r\n\tc0.6,0,1.2,0.2,1.6,0.6l1.3-1.3c-0.8-0.6-1.7-0.8-2.4-0.9V4.2H9.6v1.5C8.4,5.7,7.4,6.3,7.1,7.4L3.4,5.7c0.3-0.5,0.7-0.9,1.1-1.3\r\n\tC6,2.9,7.8,2.1,10,2.1c2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6c0,0.7-0.1,1.4-0.2,2.1L12.7,9.9z"
+ }
+ }]
+};
+exports.commonsNoncommercialUs = commonsNoncommercialUs;
\ No newline at end of file
diff --git a/dist/entypo/commonsPublicDomain.js b/dist/entypo/commonsPublicDomain.js
new file mode 100644
index 000000000..178590a8f
--- /dev/null
+++ b/dist/entypo/commonsPublicDomain.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commonsPublicDomain = void 0;
+var commonsPublicDomain = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M8.1,7.3H5.5v5.3h1.3v-1.7h1c1.8,0,2.2-1.1,2.2-1.8\r\n\tC10.1,8,9.6,7.3,8.1,7.3z M7.9,9.9H6.8V8.3h1.1c0.6,0,0.9,0.3,0.9,0.8C8.8,9.5,8.5,9.9,7.9,9.9z M12.5,7.3h-2.1v5.3h2.1\r\n\tc1.6,0,2.7-0.8,2.7-2.7C15.2,8.1,14.1,7.3,12.5,7.3z M12.5,11.5h-0.8V8.4h0.8c1,0,1.4,0.7,1.4,1.5C13.9,10.8,13.5,11.5,12.5,11.5z"
+ }
+ }]
+};
+exports.commonsPublicDomain = commonsPublicDomain;
\ No newline at end of file
diff --git a/dist/entypo/commonsRemix.js b/dist/entypo/commonsRemix.js
new file mode 100644
index 000000000..5e46eba38
--- /dev/null
+++ b/dist/entypo/commonsRemix.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commonsRemix = void 0;
+var commonsRemix = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M16.3,10.2l-1.9-0.8V7L8.5,4.6L5.9,5.7v2.7l0,0l-2.3,1\r\n\tv2.5l2.5,1.1l2.5-1L8.7,12l5,2.1l0.1,0l0.1,0l2.3-1l0.2-0.1v-2.7L16.3,10.2z M13.6,13.3L13.6,13.3L13.6,13.3l-4.4-1.8V9.8l4.4,1.8\r\n\tv0.1l0,0V13.3z M13.8,11.1l-1.4-0.6L14,9.9l1.4,0.6L13.8,11.1z M15.9,12.6l-1.7,0.7v-1.7l1.7-0.7V12.6z"
+ }
+ }]
+};
+exports.commonsRemix = commonsRemix;
\ No newline at end of file
diff --git a/dist/entypo/commonsShare.js b/dist/entypo/commonsShare.js
new file mode 100644
index 000000000..d10cbefcd
--- /dev/null
+++ b/dist/entypo/commonsShare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commonsShare = void 0;
+var commonsShare = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M13.9,7.2h-2.1V5.2c0-0.3-0.2-0.5-0.5-0.5H6.1\r\n\tc0,0,0,0,0,0c-0.3,0-0.5,0.3-0.5,0.5v7.1c0,0.3,0.2,0.5,0.5,0.5h2.1v2.1c0,0.3,0.2,0.5,0.5,0.5h5.2c0.3,0,0.5-0.2,0.5-0.5V7.8\r\n\tC14.5,7.5,14.2,7.2,13.9,7.2z M8.6,7.2c-0.3,0-0.5,0.3-0.5,0.5v3.9H6.6v-6h4.2v1.6H8.6C8.7,7.2,8.7,7.2,8.6,7.2z M13.4,14.3H9.2v-6\r\n\th4.2V14.3z"
+ }
+ }]
+};
+exports.commonsShare = commonsShare;
\ No newline at end of file
diff --git a/dist/entypo/commonsSharealike.js b/dist/entypo/commonsSharealike.js
new file mode 100644
index 000000000..50962a478
--- /dev/null
+++ b/dist/entypo/commonsSharealike.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commonsSharealike = void 0;
+var commonsSharealike = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10s0.9,4.9,2.8,6.8c1.9,1.9,4.1,2.8,6.8,2.8\r\n\tc2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7S18.7,5,16.8,3.2z M15.6,15.5c-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3\r\n\tC2.9,14,2.1,12.1,2.1,10s0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1s4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z\r\n\t M14.9,10.1c0,2.9-2,5.1-5,5.1c-2.1,0-3.9-1.3-4.2-3.8h2.4c0.1,1.3,0.9,1.7,2.1,1.7c1.4,0,2.3-1.3,2.3-3.2c0-2-0.8-3.1-2.2-3.1\r\n\tc-1.1,0-2,0.4-2.2,1.7l0.7,0l-1.9,1.9L5,8.6l0.8,0c0.4-2.4,2.1-3.7,4.2-3.7C13,4.9,14.9,7.2,14.9,10.1z"
+ }
+ }]
+};
+exports.commonsSharealike = commonsSharealike;
\ No newline at end of file
diff --git a/dist/entypo/compass.js b/dist/entypo/compass.js
new file mode 100644
index 000000000..3d99e6b88
--- /dev/null
+++ b/dist/entypo/compass.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.compass = void 0;
+var compass = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.454,14.548c0,0,4.568-0.627,6.518-2.576s2.576-6.518,2.576-6.518S9.979,6.081,8.03,8.03S5.454,14.548,5.454,14.548z\r\n\t M9.017,9.015c0.818-0.818,2.385-1.4,3.729-1.762c-0.361,1.342-0.945,2.92-1.76,3.732c-0.543,0.545-1.426,0.545-1.969,0\r\n\tC8.472,10.442,8.472,9.56,9.017,9.015z M10.001,0.4C4.698,0.4,0.4,4.698,0.4,10c0,5.303,4.298,9.601,9.601,9.601\r\n\tc5.301,0,9.6-4.298,9.6-9.601C19.601,4.698,15.302,0.4,10.001,0.4z M10,17.6c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6\r\n\tc4.197,0,7.601,3.402,7.601,7.6C17.601,14.197,14.197,17.6,10,17.6z"
+ }
+ }]
+};
+exports.compass = compass;
\ No newline at end of file
diff --git a/dist/entypo/computer.js b/dist/entypo/computer.js
new file mode 100644
index 000000000..48771f41b
--- /dev/null
+++ b/dist/entypo/computer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.computer = void 0;
+var computer = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,0H4C2.9,0,2,0.899,2,2v15c0,0.552,0.447,1,1,1v2h14v-2c0.553,0,1-0.448,1-1V2C18,0.899,17.101,0,16,0z M14,15h-4v-1h4\r\n\tV15z M15,11H5V3h10V11z"
+ }
+ }]
+};
+exports.computer = computer;
\ No newline at end of file
diff --git a/dist/entypo/cone.js b/dist/entypo/cone.js
new file mode 100644
index 000000000..3d56fbd2c
--- /dev/null
+++ b/dist/entypo/cone.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cone = void 0;
+var cone = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,12.078c2.39,0,4.392-0.812,4.513-1.873c-0.356-0.996-0.744-2.084-1.125-3.152C13.124,7.814,11.663,8.354,10,8.354\r\n\tS6.876,7.814,6.612,7.053c-0.381,1.068-0.769,2.156-1.124,3.152C5.609,11.266,7.61,12.078,10,12.078z M10,5.373\r\n\tc1.124,0,2.167-0.348,2.473-0.889c-0.421-1.182-0.782-2.197-1.011-2.836C11.31,1.221,10.621,1,10,1S8.69,1.221,8.538,1.648\r\n\tc-0.228,0.639-0.59,1.654-1.011,2.836C7.833,5.025,8.877,5.373,10,5.373z M18.78,13.066l-3.755-1.514l0.433,1.207\r\n\tc-0.022,1.279-2.504,2.299-5.458,2.299c-2.953,0-5.437-1.019-5.458-2.299l0.433-1.207L1.22,13.066\r\n\tc-1.053,0.424-1.098,1.209-0.098,1.744l7.062,3.787c0.998,0.535,2.633,0.535,3.632,0l7.063-3.787\r\n\tC19.878,14.275,19.833,13.49,18.78,13.066z"
+ }
+ }]
+};
+exports.cone = cone;
\ No newline at end of file
diff --git a/dist/entypo/controller.js b/dist/entypo/controller.js
new file mode 100644
index 000000000..c963f3b63
--- /dev/null
+++ b/dist/entypo/controller.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.controller = void 0;
+var controller = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M19.444,9.361c-0.882-4.926-2.854-6.379-3.903-6.379\r\n\tc-1.637,0-2.057,1.217-5.541,1.258C6.516,4.199,6.096,2.982,4.459,2.982c-1.049,0-3.022,1.453-3.904,6.379\r\n\tc-0.503,2.812-1.049,7.01,0.252,7.514c1.619,0.627,2.168-0.941,3.946-2.266C6.558,13.266,7.424,12.95,10,12.95\r\n\tc2.576,0,3.442,0.316,5.247,1.659c1.778,1.324,2.327,2.893,3.946,2.266C20.494,16.371,19.948,12.174,19.444,9.361z M6,10\r\n\tc-1.105,0-2-0.896-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C8,9.104,7.104,10,6,10z M13,10c-0.553,0-1-0.447-1-1s0.447-1,1-1\r\n\tc0.553,0,1,0.447,1,1S13.553,10,13,10z M15,8c-0.553,0-1-0.447-1-1s0.447-1,1-1c0.553,0,1,0.447,1,1S15.553,8,15,8z"
+ }
+ }]
+};
+exports.controller = controller;
\ No newline at end of file
diff --git a/dist/entypo/copy.js b/dist/entypo/copy.js
new file mode 100644
index 000000000..1a5b461d1
--- /dev/null
+++ b/dist/entypo/copy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.copy = void 0;
+var copy = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,0H3C2.447,0,2,0.447,2,1v12c0,0.552,0.447,1,1,1h5v2h2v-2H8.001v-2H10v-2H8v2H4V2h6v4h2V1C12,0.448,11.553,0,11,0z M8,7\r\n\tv1h2V6H9C8.447,6,8,6.447,8,7z M12,20h2v-2h-2V20z M12,8h2V6h-2V8z M8,19c0,0.552,0.447,1,1,1h1v-2H8V19z M17,6h-1v2h2V7\r\n\tC18,6.448,17.553,6,17,6z M16,20h1c0.553,0,1-0.448,1-1v-1h-2V20z M16,12h2v-2h-2V12z M16,16h2v-2h-2V16z"
+ }
+ }]
+};
+exports.copy = copy;
\ No newline at end of file
diff --git a/dist/entypo/credit.js b/dist/entypo/credit.js
new file mode 100644
index 000000000..0c1f7ea31
--- /dev/null
+++ b/dist/entypo/credit.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.credit = void 0;
+var credit = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,16.755V19H9v-2.143c-1.712-0.1-3.066-0.589-4.241-1.797l1.718-1.74c0.859,0.87,2.023,1.16,3.282,1.16\r\n\tc1.565,0,2.405-0.599,2.405-1.702c0-0.483-0.133-0.889-0.42-1.16c-0.267-0.251-0.572-0.387-1.202-0.483L8.9,10.903\r\n\tc-1.164-0.174-2.022-0.541-2.634-1.141C5.618,9.105,5.293,8.216,5.293,7.055c0-2.155,1.382-3.743,3.707-4.1V1h2v1.932\r\n\tc1.382,0.145,2.465,0.62,3.415,1.551l-1.679,1.682c-0.859-0.832-1.889-0.947-2.787-0.947c-1.412,0-2.099,0.792-2.099,1.74\r\n\tc0,0.348,0.115,0.716,0.401,0.986c0.267,0.252,0.706,0.464,1.26,0.541l1.602,0.232c1.241,0.174,2.023,0.522,2.596,1.063\r\n\tc0.726,0.696,1.05,1.702,1.05,2.92C14.759,14.95,13.192,16.362,11,16.755z"
+ }
+ }]
+};
+exports.credit = credit;
\ No newline at end of file
diff --git a/dist/entypo/crop.js b/dist/entypo/crop.js
new file mode 100644
index 000000000..5100f3288
--- /dev/null
+++ b/dist/entypo/crop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crop = void 0;
+var crop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6,14V1H4v3H1v2h3v8c0,1.0996094,0.8989258,2,2,2h8v3h2v-3h3v-2H6z M14,13h2V6c0-1.0996094-0.8989258-2-2-2H7v2h7V13z"
+ }
+ }]
+};
+exports.crop = crop;
\ No newline at end of file
diff --git a/dist/entypo/cross.js b/dist/entypo/cross.js
new file mode 100644
index 000000000..b813d17b4
--- /dev/null
+++ b/dist/entypo/cross.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cross = void 0;
+var cross = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.348,14.849c-0.469,0.469-1.229,0.469-1.697,0L10,11.819l-2.651,3.029c-0.469,0.469-1.229,0.469-1.697,0\r\n\tc-0.469-0.469-0.469-1.229,0-1.697l2.758-3.15L5.651,6.849c-0.469-0.469-0.469-1.228,0-1.697c0.469-0.469,1.228-0.469,1.697,0\r\n\tL10,8.183l2.651-3.031c0.469-0.469,1.228-0.469,1.697,0c0.469,0.469,0.469,1.229,0,1.697l-2.758,3.152l2.758,3.15\r\n\tC14.817,13.62,14.817,14.38,14.348,14.849z"
+ }
+ }]
+};
+exports.cross = cross;
\ No newline at end of file
diff --git a/dist/entypo/cup.js b/dist/entypo/cup.js
new file mode 100644
index 000000000..fdc24ab05
--- /dev/null
+++ b/dist/entypo/cup.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cup = void 0;
+var cup = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1C5.721,1,3.06,2.41,3.205,3.555l1.442,13.467C4.705,17.482,6.868,18.998,10,19c3.131-0.002,5.295-1.518,5.351-1.979\r\n\tl1.442-13.467C16.938,2.41,14.279,1,10,1z M10,5.291C6.868,5.289,4.647,4.174,4.647,3.756C4.646,3.342,6.869,2.225,10,2.227\r\n\tc3.131-0.002,5.354,1.115,5.351,1.529C15.351,4.174,13.131,5.289,10,5.291z"
+ }
+ }]
+};
+exports.cup = cup;
\ No newline at end of file
diff --git a/dist/entypo/cw.js b/dist/entypo/cw.js
new file mode 100644
index 000000000..1879bcbdd
--- /dev/null
+++ b/dist/entypo/cw.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cw = void 0;
+var cw = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.315,10h-2.372V9.795c-0.108-4.434-3.724-7.996-8.169-7.996C4.259,1.799,0.6,5.471,0.6,10s3.659,8.199,8.174,8.199\r\n\tc1.898,0,3.645-0.65,5.033-1.738l-1.406-1.504c-1.016,0.748-2.27,1.193-3.627,1.193c-3.386,0-6.131-2.754-6.131-6.15\r\n\ts2.745-6.15,6.131-6.15c3.317,0,6.018,2.643,6.125,5.945V10h-2.672l3.494,3.894L19.315,10z"
+ }
+ }]
+};
+exports.cw = cw;
\ No newline at end of file
diff --git a/dist/entypo/cycle.js b/dist/entypo/cycle.js
new file mode 100644
index 000000000..ff4472899
--- /dev/null
+++ b/dist/entypo/cycle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cycle = void 0;
+var cycle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.516,14.224c-2.262-2.432-2.222-6.244,0.128-8.611c0.962-0.969,2.164-1.547,3.414-1.736L8.989,1.8\r\n\tC7.234,2.013,5.537,2.796,4.192,4.151c-3.149,3.17-3.187,8.289-0.123,11.531l-1.741,1.752l5.51,0.301l-0.015-5.834L5.516,14.224z\r\n\t M12.163,2.265l0.015,5.834l2.307-2.322c2.262,2.434,2.222,6.246-0.128,8.611c-0.961,0.969-2.164,1.547-3.414,1.736l0.069,2.076\r\n\tc1.755-0.213,3.452-0.996,4.798-2.35c3.148-3.172,3.186-8.291,0.122-11.531l1.741-1.754L12.163,2.265z"
+ }
+ }]
+};
+exports.cycle = cycle;
\ No newline at end of file
diff --git a/dist/entypo/database.js b/dist/entypo/database.js
new file mode 100644
index 000000000..3c23be208
--- /dev/null
+++ b/dist/entypo/database.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.database = void 0;
+var database = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.726,12.641c-0.843,1.363-3.535,2.361-6.726,2.361c-3.191,0-5.883-0.998-6.727-2.361C3.095,12.351,3,12.506,3,12.648\r\n\tc0,0.144,0,2.002,0,2.002C3,16.59,6.134,18.6,10,18.6s7-2.01,7-3.949c0,0,0-1.858,0-2.002C17,12.506,16.904,12.351,16.726,12.641z\r\n\t M16.737,7.525c-0.83,1.205-3.532,2.09-6.737,2.09c-3.205,0-5.908-0.885-6.738-2.09C3.091,7.277,3,7.412,3,7.523\r\n\tc0,0.113,0,2.357,0,2.357c0,1.762,3.134,3.189,7,3.189s7-1.428,7-3.189c0,0,0-2.244,0-2.357C17,7.412,16.908,7.277,16.737,7.525z\r\n\t M10,1C6.134,1,3,2.18,3,3.633v1.26c0,1.541,3.134,2.791,7,2.791s7-1.25,7-2.791v-1.26C17,2.18,13.866,1,10,1z"
+ }
+ }]
+};
+exports.database = database;
\ No newline at end of file
diff --git a/dist/entypo/direction.js b/dist/entypo/direction.js
new file mode 100644
index 000000000..4a73e783e
--- /dev/null
+++ b/dist/entypo/direction.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.direction = void 0;
+var direction = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.06,1.941c-0.586-0.586-1.144-0.033-3.041,0.879C9.944,5.259,1.1,10.216,1.1,10.216L8.699,11.3l1.085,7.599\r\n\tc0,0,4.958-8.843,7.396-13.916C18.092,3.085,18.645,2.527,18.06,1.941z M16.236,3.896l-5.519,10.247l-0.561-4.655L16.236,3.896z"
+ }
+ }]
+};
+exports.direction = direction;
\ No newline at end of file
diff --git a/dist/entypo/document.js b/dist/entypo/document.js
new file mode 100644
index 000000000..562375dca
--- /dev/null
+++ b/dist/entypo/document.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.document = void 0;
+var document = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M15,17H5V3h10V17z"
+ }
+ }]
+};
+exports.document = document;
\ No newline at end of file
diff --git a/dist/entypo/documentInverted.js b/dist/entypo/documentInverted.js
new file mode 100644
index 000000000..2f2cc5c41
--- /dev/null
+++ b/dist/entypo/documentInverted.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.documentInverted = void 0;
+var documentInverted = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M13,15H7v-2h6V15z M13,11H7V9h6V11z M13,7H7V5h6V7z"
+ }
+ }]
+};
+exports.documentInverted = documentInverted;
\ No newline at end of file
diff --git a/dist/entypo/documents.js b/dist/entypo/documents.js
new file mode 100644
index 000000000..9b8eca93b
--- /dev/null
+++ b/dist/entypo/documents.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.documents = void 0;
+var documents = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.398,7.415l-7.444-1.996l-1.303-4.861c-0.109-0.406-0.545-0.642-0.973-0.529L0.602,2.461\r\n\tC0.174,2.575-0.084,2.999,0.025,3.405l3.23,12.051c0.109,0.406,0.544,0.643,0.971,0.527l3.613-0.967l-0.492,1.838\r\n\tc-0.109,0.406,0.149,0.83,0.577,0.943l8.11,2.174c0.428,0.115,0.862-0.121,0.972-0.529l2.97-11.084\r\n\tC20.084,7.952,19.826,7.528,19.398,7.415z M1.633,3.631l7.83-2.096l2.898,10.818l-7.83,2.096L1.633,3.631z M15.678,18.463\r\n\tL8.864,16.6L9.4,14.598l3.901-1.047c0.428-0.113,0.688-0.537,0.578-0.943l-1.508-5.627l5.947,1.631L15.678,18.463z"
+ }
+ }]
+};
+exports.documents = documents;
\ No newline at end of file
diff --git a/dist/entypo/down.js b/dist/entypo/down.js
new file mode 100644
index 000000000..2f8214404
--- /dev/null
+++ b/dist/entypo/down.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.down = void 0;
+var down = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,17.5L3.5,11H7V3h6v8h3.5L10,17.5z"
+ }
+ }]
+};
+exports.down = down;
\ No newline at end of file
diff --git a/dist/entypo/download.js b/dist/entypo/download.js
new file mode 100644
index 000000000..f8e084be3
--- /dev/null
+++ b/dist/entypo/download.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.download = void 0;
+var download = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,7h-3V1H8v6H5l5,5L15,7z M19.338,13.532c-0.21-0.224-1.611-1.723-2.011-2.114C17.062,11.159,16.683,11,16.285,11h-1.757\r\n\tl3.064,2.994h-3.544c-0.102,0-0.194,0.052-0.24,0.133L12.992,16H7.008l-0.816-1.873c-0.046-0.081-0.139-0.133-0.24-0.133H2.408\r\n\tL5.471,11H3.715c-0.397,0-0.776,0.159-1.042,0.418c-0.4,0.392-1.801,1.891-2.011,2.114c-0.489,0.521-0.758,0.936-0.63,1.449\r\n\tl0.561,3.074c0.128,0.514,0.691,0.936,1.252,0.936h16.312c0.561,0,1.124-0.422,1.252-0.936l0.561-3.074\r\n\tC20.096,14.468,19.828,14.053,19.338,13.532z"
+ }
+ }]
+};
+exports.download = download;
\ No newline at end of file
diff --git a/dist/entypo/dribbble.js b/dist/entypo/dribbble.js
new file mode 100644
index 000000000..52af279a3
--- /dev/null
+++ b/dist/entypo/dribbble.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dribbble = void 0;
+var dribbble = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.565,7.421C8.207,5.007,6.754,3.038,6.648,2.893C4.457,3.929,2.822,5.948,2.311,8.38C2.517,8.384,5.793,8.423,9.565,7.421\r\n\tz M10.543,10.061c0.102-0.033,0.206-0.064,0.309-0.094c-0.197-0.447-0.412-0.895-0.637-1.336C6.169,9.843,2.287,9.755,2.15,9.751\r\n\tc-0.003,0.084-0.007,0.166-0.007,0.25c0,2.019,0.763,3.861,2.016,5.252l-0.005-0.006C4.154,15.247,6.304,11.433,10.543,10.061z\r\n\t M5.171,16.194V16.19c-0.058-0.045-0.12-0.086-0.178-0.135C5.099,16.14,5.171,16.194,5.171,16.194z M8.118,2.372\r\n\tC8.111,2.374,8.103,2.376,8.103,2.376c0.006-0.002,0.014-0.002,0.014-0.002L8.118,2.372z M15.189,4.104\r\n\tC13.805,2.886,11.99,2.143,10,2.143c-0.639,0-1.258,0.078-1.852,0.221c0.12,0.16,1.595,2.119,2.938,4.584\r\n\tC14.048,5.839,15.167,4.136,15.189,4.104z M10,19.2c-5.08,0-9.199-4.119-9.199-9.199C0.8,4.919,4.919,0.8,10,0.8\r\n\tc5.082,0,9.2,4.119,9.2,9.201C19.2,15.081,15.082,19.2,10,19.2z M11.336,11.286c-4.611,1.607-6.134,4.838-6.165,4.904\r\n\tc1.334,1.041,3.006,1.666,4.828,1.666c1.088,0,2.125-0.221,3.067-0.621c-0.116-0.689-0.573-3.096-1.679-5.967\r\n\tC11.371,11.274,11.354,11.28,11.336,11.286z M11.69,8.12c0.184,0.373,0.358,0.754,0.523,1.139c0.059,0.135,0.114,0.272,0.17,0.406\r\n\tc2.713-0.342,5.385,0.238,5.473,0.256c-0.019-1.863-0.686-3.572-1.787-4.912C16.051,5.032,14.79,6.852,11.69,8.12z M12.861,10.905\r\n\tc1.031,2.836,1.449,5.142,1.529,5.611c1.764-1.191,3.018-3.08,3.367-5.27C17.601,11.196,15.401,10.499,12.861,10.905z"
+ }
+ }]
+};
+exports.dribbble = dribbble;
\ No newline at end of file
diff --git a/dist/entypo/drink.js b/dist/entypo/drink.js
new file mode 100644
index 000000000..c349a38b0
--- /dev/null
+++ b/dist/entypo/drink.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.drink = void 0;
+var drink = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.538,2.639C17.932,2.094,18,1,18,1H2c0,0,0.068,1.094,0.462,1.639L9,11v6H7c-2,0-2,2-2,2h10c0,0,0-2-2-2h-2v-6\r\n\tL17.538,2.639z M9.4,6c0-0.885,0.716-1.6,1.6-1.6s1.6,0.715,1.6,1.6c0,0.883-0.716,1.6-1.6,1.6S9.4,6.883,9.4,6z"
+ }
+ }]
+};
+exports.drink = drink;
\ No newline at end of file
diff --git a/dist/entypo/drive.js b/dist/entypo/drive.js
new file mode 100644
index 000000000..ea80f4075
--- /dev/null
+++ b/dist/entypo/drive.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.drive = void 0;
+var drive = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H5.546C4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927\r\n\tc-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18h14.383c0.755,0,1.399-0.546,1.523-1.291\r\n\tl0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M16.959,15.245C16.887,15.681,16.51,16,16.068,16H3.932\r\n\tc-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867c0.558,0,0.983,0.501,0.891,1.052\r\n\tL16.959,15.245z"
+ }
+ }]
+};
+exports.drive = drive;
\ No newline at end of file
diff --git a/dist/entypo/drop.js b/dist/entypo/drop.js
new file mode 100644
index 000000000..ba64dad48
--- /dev/null
+++ b/dist/entypo/drop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.drop = void 0;
+var drop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.203,0.561c-0.027-0.215-0.38-0.215-0.406,0C8.914,7.668,4.399,9.133,4.399,14.073c0,3.053,2.564,5.527,5.601,5.527\r\n\tc3.036,0,5.6-2.475,5.6-5.527C15.6,9.133,11.086,7.668,10.203,0.561z M9.35,8.418C9.291,8.637,9.227,8.862,9.161,9.096\r\n\tc-0.401,1.424-0.856,3.039-0.856,4.906c0,1.012-0.598,1.371-1.156,1.371c-0.639,0-1.156-0.523-1.156-1.166\r\n\tc0-2.207,1.062-3.649,2-4.92c0.295-0.398,0.572-0.775,0.797-1.15C8.893,7.965,9.17,7.973,9.296,8.143\r\n\tC9.355,8.223,9.375,8.325,9.35,8.418z"
+ }
+ }]
+};
+exports.drop = drop;
\ No newline at end of file
diff --git a/dist/entypo/dropbox.js b/dist/entypo/dropbox.js
new file mode 100644
index 000000000..aa28fad92
--- /dev/null
+++ b/dist/entypo/dropbox.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dropbox = void 0;
+var dropbox = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.109,0.902L0.4,4.457l3.911,3.279L10,4.043L6.109,0.902z M13.452,15.992c-0.102,0-0.203-0.033-0.285-0.102L10,13.262\r\n\tl-3.167,2.629c-0.082,0.068-0.184,0.102-0.285,0.102c-0.085,0-0.17-0.023-0.244-0.072l-2.346-1.533v0.904L10,19.098l6.042-3.807\r\n\tv-0.904l-2.346,1.533C13.622,15.969,13.537,15.992,13.452,15.992z M19.6,4.457l-5.71-3.555L10,4.043l5.688,3.693L19.6,4.457z\r\n\t M10,11.291l3.528,2.928l5.641-3.688l-3.481-2.795L10,11.291z M6.472,14.219L10,11.291L4.311,7.736l-3.48,2.795L6.472,14.219z"
+ }
+ }]
+};
+exports.dropbox = dropbox;
\ No newline at end of file
diff --git a/dist/entypo/edit.js b/dist/entypo/edit.js
new file mode 100644
index 000000000..03e6a0313
--- /dev/null
+++ b/dist/entypo/edit.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.edit = void 0;
+var edit = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.561,2.439c-1.442-1.443-2.525-1.227-2.525-1.227L8.984,7.264L2.21,14.037L1.2,18.799l4.763-1.01l6.774-6.771\r\n\tl6.052-6.052C18.788,4.966,19.005,3.883,17.561,2.439z M5.68,17.217l-1.624,0.35c-0.156-0.293-0.345-0.586-0.69-0.932\r\n\tc-0.346-0.346-0.639-0.533-0.932-0.691l0.35-1.623l0.47-0.469c0,0,0.883,0.018,1.881,1.016c0.997,0.996,1.016,1.881,1.016,1.881\r\n\tL5.68,17.217z"
+ }
+ }]
+};
+exports.edit = edit;
\ No newline at end of file
diff --git a/dist/entypo/email.js b/dist/entypo/email.js
new file mode 100644
index 000000000..73164c310
--- /dev/null
+++ b/dist/entypo/email.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.email = void 0;
+var email = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.608,12.172c0,0.84,0.239,1.175,0.864,1.175c1.393,0,2.28-1.775,2.28-4.727c0-4.512-3.288-6.672-7.393-6.672\r\n\tc-4.223,0-8.064,2.832-8.064,8.184c0,5.112,3.36,7.896,8.52,7.896c1.752,0,2.928-0.192,4.727-0.792l0.386,1.607\r\n\tc-1.776,0.577-3.674,0.744-5.137,0.744c-6.768,0-10.393-3.72-10.393-9.456c0-5.784,4.201-9.72,9.985-9.72\r\n\tc6.024,0,9.215,3.6,9.215,8.016c0,3.744-1.175,6.6-4.871,6.6c-1.681,0-2.784-0.672-2.928-2.161\r\n\tc-0.432,1.656-1.584,2.161-3.145,2.161c-2.088,0-3.84-1.609-3.84-4.848c0-3.264,1.537-5.28,4.297-5.28\r\n\tc1.464,0,2.376,0.576,2.782,1.488l0.697-1.272h2.016v7.057H14.608z M11.657,9.004c0-1.319-0.985-1.872-1.801-1.872\r\n\tc-0.888,0-1.871,0.719-1.871,2.832c0,1.68,0.744,2.616,1.871,2.616c0.792,0,1.801-0.504,1.801-1.896V9.004z"
+ }
+ }]
+};
+exports.email = email;
\ No newline at end of file
diff --git a/dist/entypo/empty.js b/dist/entypo/empty.js
new file mode 100644
index 000000000..e4c6ac59b
--- /dev/null
+++ b/dist/entypo/empty.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.empty = void 0;
+var empty = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z"
+ }
+ }]
+};
+exports.empty = empty;
\ No newline at end of file
diff --git a/dist/entypo/erase.js b/dist/entypo/erase.js
new file mode 100644
index 000000000..9cb6ccd9e
--- /dev/null
+++ b/dist/entypo/erase.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.erase = void 0;
+var erase = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,3H8.446c-0.44,0-1.071,0.236-1.402,0.525L0.248,9.473c-0.331,0.289-0.331,0.764,0,1.053l6.796,5.947\r\n\tC7.375,16.762,8.006,17,8.446,17H18c1.1,0,2-0.9,2-2V5C20,3.9,19.1,3,18,3z M15.191,14l-2.557-2.557L10.078,14l-1.443-1.443\r\n\tL11.191,10L8.635,7.443L10.078,6l2.557,2.555L15.19,6l1.444,1.443L14.078,10l2.557,2.555L15.191,14z"
+ }
+ }]
+};
+exports.erase = erase;
\ No newline at end of file
diff --git a/dist/entypo/eraser.js b/dist/entypo/eraser.js
new file mode 100644
index 000000000..77acf6887
--- /dev/null
+++ b/dist/entypo/eraser.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eraser = void 0;
+var eraser = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.998,4.18l-3.154-2.425c-0.872-0.671-2.135-0.506-2.807,0.365l-8.4,10.897c-0.671,0.871-0.507,2.132,0.365,2.803\r\n\tl3.153,2.425c0.872,0.671,2.135,0.506,2.807-0.365l8.401-10.897C18.034,6.112,17.87,4.851,16.998,4.18z M8.548,16.467l-0.537,0.681\r\n\tc-0.152,0.197-0.385,0.31-0.639,0.31c-0.124,0-0.309-0.029-0.485-0.164l-3.153-2.425c-0.168-0.129-0.275-0.317-0.303-0.53\r\n\tc-0.028-0.213,0.028-0.422,0.157-0.589l0.537-0.681c0.152-0.197,0.385-0.311,0.64-0.311c0.124,0,0.309,0.029,0.485,0.164\r\n\tl3.154,2.425c0.168,0.129,0.275,0.317,0.303,0.53C8.733,16.09,8.677,16.299,8.548,16.467z"
+ }
+ }]
+};
+exports.eraser = eraser;
\ No newline at end of file
diff --git a/dist/entypo/evernote.js b/dist/entypo/evernote.js
new file mode 100644
index 000000000..fd6026296
--- /dev/null
+++ b/dist/entypo/evernote.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.evernote = void 0;
+var evernote = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.3,4.3c0-1.2-1.7-1.3-1.7-1.3l-4.1-0.3c0,0-0.1-1.1-0.9-1.5C9.8,0.9,8.9,1,8.3,1C7.6,1,7.5,1.9,7.5,2.6\r\n\tc0,0.8,0,1.7,0,2.2c0,1-0.4,1.4-1.6,1.4H3.6c-0.6,0-1.1,0.1-1.1,0.6c0,0.5,0.8,5,1.8,6c0.6,0.6,4.3,1,5.1,1s0.5-2.3,0.7-2.3\r\n\ts0.5,1.3,1.7,1.6c1.2,0.3,2.9,0.2,3,1.1c0.1,1.2,0.2,2.6-0.5,2.7l-1.7,0.1c-1.2-0.1-0.9-1.4-0.3-1.4c0.5,0,0.8,0,0.8,0l0.1-1.4\r\n\tc0,0-2.7-0.3-2.8,1.5c-0.1,1.7,0.2,2.4,0.4,2.6c0.2,0.2,0.6,0.5,3.9,0.5C19,19,17.3,5.5,17.3,4.3z M15.4,10.3\r\n\tC15.3,10.5,14.6,10,14,10c-0.6,0-1.3,0.3-1.5,0.1c-0.2-0.2,0.1-2,1.3-2S15.6,10.1,15.4,10.3z M5.3,4.6c-0.5,0-2.9,0-2.9,0l3.5-3.4\r\n\tc0,0-0.1,2.8-0.1,3C5.8,4.4,5.7,4.6,5.3,4.6z"
+ }
+ }]
+};
+exports.evernote = evernote;
\ No newline at end of file
diff --git a/dist/entypo/exportIcon.js b/dist/entypo/exportIcon.js
new file mode 100644
index 000000000..f5e4b6d2a
--- /dev/null
+++ b/dist/entypo/exportIcon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.exportIcon = void 0;
+var exportIcon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,15H2V6h2.595c0,0,0.689-0.896,2.17-2H1C0.447,4,0,4.449,0,5v11c0,0.553,0.447,1,1,1h15c0.553,0,1-0.447,1-1v-3.746\r\n\tl-2,1.645V15z M13.361,8.05v3.551L20,6.4l-6.639-4.999v3.131C5.3,4.532,5.3,12.5,5.3,12.5C7.582,8.752,8.986,8.05,13.361,8.05z"
+ }
+ }]
+};
+exports.exportIcon = exportIcon;
\ No newline at end of file
diff --git a/dist/entypo/eye.js b/dist/entypo/eye.js
new file mode 100644
index 000000000..22fbf532c
--- /dev/null
+++ b/dist/entypo/eye.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eye = void 0;
+var eye = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,4.4C3.439,4.4,0,9.232,0,10c0,0.766,3.439,5.6,10,5.6c6.56,0,10-4.834,10-5.6C20,9.232,16.56,4.4,10,4.4z M10,14.307\r\n\tc-2.455,0-4.445-1.928-4.445-4.307c0-2.379,1.99-4.309,4.445-4.309c2.455,0,4.444,1.93,4.444,4.309\r\n\tC14.444,12.379,12.455,14.307,10,14.307z M10,10c-0.407-0.447,0.663-2.154,0-2.154c-1.228,0-2.223,0.965-2.223,2.154\r\n\tc0,1.189,0.995,2.154,2.223,2.154c1.227,0,2.223-0.965,2.223-2.154C12.223,9.453,10.346,10.379,10,10z"
+ }
+ }]
+};
+exports.eye = eye;
\ No newline at end of file
diff --git a/dist/entypo/facebook.js b/dist/entypo/facebook.js
new file mode 100644
index 000000000..e3e6a4d09
--- /dev/null
+++ b/dist/entypo/facebook.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.facebook = void 0;
+var facebook = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,1H3C1.9,1,1,1.9,1,3v14c0,1.101,0.9,2,2,2h7v-7H8V9.525h2V7.475c0-2.164,1.212-3.684,3.766-3.684l1.803,0.002v2.605\r\n\th-1.197C13.378,6.398,13,7.144,13,7.836v1.69h2.568L15,12h-2v7h4c1.1,0,2-0.899,2-2V3C19,1.9,18.1,1,17,1z"
+ }
+ }]
+};
+exports.facebook = facebook;
\ No newline at end of file
diff --git a/dist/entypo/fastBackward.js b/dist/entypo/fastBackward.js
new file mode 100644
index 000000000..3a84a9238
--- /dev/null
+++ b/dist/entypo/fastBackward.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fastBackward = void 0;
+var fastBackward = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.959,4.571L10.756,9.52c0,0-0.279,0.201-0.279,0.481s0.279,0.479,0.279,0.479l7.203,4.951\r\n\tC18.531,15.811,19,15.53,19,14.805V5.196C19,4.469,18.531,4.188,17.959,4.571z M8.883,4.571L1.68,9.52c0,0-0.279,0.201-0.279,0.481\r\n\ts0.279,0.479,0.279,0.479l7.203,4.951c0.572,0.381,1.041,0.1,1.041-0.625V5.196C9.924,4.469,9.455,4.188,8.883,4.571z"
+ }
+ }]
+};
+exports.fastBackward = fastBackward;
\ No newline at end of file
diff --git a/dist/entypo/fastForward.js b/dist/entypo/fastForward.js
new file mode 100644
index 000000000..7b5fb3dad
--- /dev/null
+++ b/dist/entypo/fastForward.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fastForward = void 0;
+var fastForward = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.244,9.52L2.041,4.571C1.469,4.188,1,4.469,1,5.196v9.609c0,0.725,0.469,1.006,1.041,0.625l7.203-4.951\r\n\tc0,0,0.279-0.199,0.279-0.478C9.523,9.721,9.244,9.52,9.244,9.52z M18.6,10.001c0,0.279-0.279,0.478-0.279,0.478l-7.203,4.951\r\n\tc-0.572,0.381-1.041,0.1-1.041-0.625V5.196c0-0.727,0.469-1.008,1.041-0.625L18.32,9.52C18.32,9.52,18.6,9.721,18.6,10.001z"
+ }
+ }]
+};
+exports.fastForward = fastForward;
\ No newline at end of file
diff --git a/dist/entypo/feather.js b/dist/entypo/feather.js
new file mode 100644
index 000000000..4742608d2
--- /dev/null
+++ b/dist/entypo/feather.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.feather = void 0;
+var feather = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.254,19.567c0.307-0.982,0.77-2.364,1.391-4.362c2.707-0.429,3.827,0.341,5.546-2.729\r\n\tc-1.395,0.427-3.077-0.792-2.987-1.321c0.091-0.528,3.913,0.381,6.416-3.173c-3.155,0.696-4.164-0.836-3.757-1.067\r\n\tc0.939-0.534,3.726-0.222,5.212-1.669c0.766-0.745,1.125-2.556,0.813-3.202c-0.374-0.781-2.656-1.946-3.914-1.836\r\n\tc-1.258,0.109-3.231,4.79-3.817,4.754C8.573,4.925,8.454,2.864,9.476,0.949c-1.077,0.477-3.051,1.959-3.67,3.226\r\n\tc-1.153,2.357,0.108,7.766-0.296,7.958c-0.405,0.193-1.766-2.481-2.172-3.694c-0.555,1.859-0.568,3.721,1.053,6.194\r\n\tc-0.611,1.623-0.945,3.491-0.996,4.441C3.371,19.833,4.119,19.996,4.254,19.567z"
+ }
+ }]
+};
+exports.feather = feather;
\ No newline at end of file
diff --git a/dist/entypo/fingerprint.js b/dist/entypo/fingerprint.js
new file mode 100644
index 000000000..95a46c131
--- /dev/null
+++ b/dist/entypo/fingerprint.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fingerprint = void 0;
+var fingerprint = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.6795855,7.8502398c-0.3737011,0.09375-0.6062469,0.4970703-0.5193815,0.9003906\r\n\tc0.7166376,3.3271484,0.8731756,6.8144531,0.4515181,10.0849619c-0.0524817,0.4106445,0.2126379,0.7895508,0.5926733,0.8461914\r\n\tc0.0325747,0.0048828,0.0651484,0.0073242,0.096818,0.0073242c0.3411264,0,0.6388206-0.2714844,0.6876822-0.6464844\r\n\tc0.4442797-3.4511728,0.2805023-7.1274424-0.4750433-10.6318369C10.4269867,8.0064898,10.0532856,7.7584429,9.6795855,7.8502398z\r\n\t M8.0689611,12.0733843c-0.3818445,0.0380859-0.6632514,0.4033203-0.6279626,0.815918\r\n\tc0.1692061,1.9672852,0.1248689,3.9091806-0.1321073,5.7714853c-0.0561004,0.409668,0.2063046,0.7915039,0.5854349,0.8520508\r\n\tc0.0343838,0.0058594,0.068768,0.0083008,0.1031523,0.0083008c0.3384123,0,0.6352015-0.2675781,0.6867771-0.6396484\r\n\tc0.2723579-1.980957,0.3203154-4.0439463,0.1411562-6.1308603C8.790122,12.3380327,8.439043,12.0304155,8.0689611,12.0733843z\r\n\t M9.1583948,5.4142046c-0.783596,0.1967773-1.4495621,0.7114258-1.8757439,1.4487305\r\n\tC6.8564687,7.6012163,6.7225518,8.4727983,6.9044256,9.3165483c0.08777,0.409668,0.1673961,0.8198242,0.2370691,1.2294922\r\n\tc0.0678635,0.4077148,0.4388499,0.6767578,0.8080268,0.6025391c0.3782248-0.074707,0.6279626-0.4658203,0.5582891-0.8730469\r\n\tc-0.0732918-0.4321289-0.156538-0.8647461-0.2497368-1.2983398c-0.097723-0.4541016-0.0253363-0.9228516,0.2044945-1.3203125\r\n\tc0.2298307-0.3979492,0.5890541-0.6757812,1.0098076-0.78125c0.8722706-0.2192383,1.7418261,0.3706055,1.9436064,1.309082\r\n\tc0.7464972,3.4614258,0.9419441,6.9296875,0.5809107,10.309083c-0.0443373,0.4116211,0.2298307,0.7836914,0.6107702,0.8310547\r\n\tc0.0271454,0.003418,0.0542908,0.0048828,0.0805311,0.0048828c0.3483658,0,0.6487741-0.2817383,0.6894922-0.6640625\r\n\tc0.3791304-3.5507822,0.1746349-7.1914072-0.6080561-10.8203135C12.3950253,6.1026812,10.7789717,5.0118608,9.1583948,5.4142046z\r\n\t M6.7478876,5.9469194c0.2388787-0.3251953,0.1873026-0.796875-0.1140108-1.0537109\r\n\tc-0.302218-0.2573242-0.7383533-0.2001953-0.9754229,0.1230469C5.5363002,5.1827593,5.4222894,5.3580523,5.3173275,5.5396929\r\n\tc-0.753736,1.3056641-0.9917102,2.8481445-0.6686802,4.34375c0.5935779,2.7563477,0.7320194,5.5878906,0.400846,8.1889658\r\n\tc-0.0524807,0.4101562,0.2135434,0.7885742,0.5935783,0.8452148c0.0325747,0.0043945,0.0642443,0.0068359,0.0959134,0.0068359\r\n\tc0.3420315,0,0.6397257-0.2719727,0.6876826-0.6479492c0.3537941-2.7802744,0.2072091-5.7998056-0.4243727-8.7329111\r\n\tC5.7643209,8.4386187,5.9398608,7.2984819,6.4972453,6.3326616C6.5750618,6.197896,6.6583076,6.069478,6.7478876,5.9469194z\r\n\t M15.10956,12.8189898c-0.3827496,0.0205078-0.6786337,0.3720703-0.6596327,0.7861328\r\n\tc0.0633392,1.3837891,0.0434332,2.7739267-0.058814,4.1313486c-0.0316696,0.4130859,0.253356,0.7749023,0.6361055,0.8085938\r\n\tc0.019002,0.0014648,0.0380039,0.0024414,0.0570049,0.0024414c0.3583193,0,0.6623468-0.296875,0.6913023-0.6889648\r\n\tc0.1076765-1.4223633,0.1284876-2.8784189,0.0624342-4.3276377C15.8189583,13.1168413,15.4841652,12.8082476,15.10956,12.8189898z\r\n\t M14.9403534,11.7843218c0.0289555,0,0.05791-0.0019531,0.0868654-0.0058594\r\n\tc0.3809395-0.0507812,0.6505833-0.4257812,0.6035318-0.8364258c-0.1402512-1.2226562-0.3447466-2.4550781-0.6053419-3.6625977\r\n\tc-0.5528603-2.574707-2.7498236-4.4438477-5.22367-4.4438477c-0.390893,0-0.781786,0.0478516-1.1636305,0.1425781\r\n\tc-0.3157902,0.0791016-0.625248,0.1889648-0.9211321,0.3271484C7.3649917,3.4698689,7.2030244,3.9117634,7.3550382,4.291646\r\n\tC7.507957,4.6720171,7.9178519,4.8473101,8.2689314,4.682271c0.2189732-0.1025391,0.449708-0.184082,0.6822538-0.2426758\r\n\tc0.2777872-0.0688477,0.5637178-0.1040039,0.8505535-0.1040039c1.8341208,0,3.4610329,1.3803711,3.8700228,3.2836914\r\n\tc0.2497368,1.1572266,0.4451838,2.3374023,0.5800056,3.5073242C14.2951994,11.5064898,14.5947027,11.7843218,14.9403534,11.7843218z\r\n\t M17.282093,6.7164507c-0.3157921-1.4726562-1.0152359-2.8251951-2.0205193-3.913574\r\n\tc-0.2705488-0.2929688-0.7103033-0.2920532-0.9826622,0.0009155c-0.2723579,0.2924805-0.2723579,0.7734375-0.0018091,1.0664062\r\n\tc0.822504,0.8906248,1.3934612,2.0072629,1.6513424,3.2074583c0.6469641,3.003418,0.9365149,6.0850124,0.860507,9.0986834\r\n\tC16.7789993,16.5904026,17.0812168,17,17.4648705,17h0.0190029c0.3755093,0,0.684063-0.3749294,0.6949196-0.782156\r\n\tC18.257515,13.0757551,17.9562016,9.8443804,17.282093,6.7164507z M3.3900077,12.8546343\r\n\tc0.0334792,0,0.0678635-0.0024414,0.1022475-0.0078125c0.3791301-0.0600586,0.6415353-0.4414062,0.5863395-0.8510742\r\n\tc-0.0841506-0.6181641-0.1954465-1.2524414-0.332078-1.8867188C3.3673866,8.3546343,3.6460788,6.5435991,4.5319219,5.0108843\r\n\tc0.8831291-1.5297849,2.2675419-2.597656,3.8944526-3.0063474c1.4052248-0.3491211,2.9009333-0.1430664,4.1930523,0.5581055\r\n\tc0.3411264,0.1875,0.7600698,0.0371094,0.9328947-0.3325195c0.1728258-0.3701172,0.0343838-0.8212891-0.3085518-1.0073242\r\n\tc-1.5789547-0.8579102-3.4076462-1.105957-5.1304712-0.6796875c-1.9897542,0.5-3.6809092,1.8046875-4.7612944,3.6738279\r\n\tC2.2698097,6.0909624,1.929588,8.3043413,2.3928685,10.4488726c0.1275833,0.59375,0.2316403,1.1870117,0.3103619,1.7646484\r\n\tC2.7539017,12.5865679,3.0506909,12.8546343,3.3900077,12.8546343z M3.5972173,14h-0.023526\r\n\tc-0.3836544,0-0.684063,0.2493391-0.6713951,0.6634016c0.0271454,0.8476562,0.0036194,1.5799913-0.0696731,2.3895617\r\n\tc-0.0380034,0.4121094,0.2415936,0.777544,0.6234381,0.8180714c0.0226212,0.0024414,0.0461471,0.0025425,0.0687683,0.0025425\r\n\tc0.3528895,0,0.6551077-0.2373772,0.6903965-0.6245842c0.0796266-0.875,0.1058669-1.7228241,0.0769119-2.6368866\r\n\tC4.2785654,14.2068329,3.9700134,14,3.5972173,14z"
+ }
+ }]
+};
+exports.fingerprint = fingerprint;
\ No newline at end of file
diff --git a/dist/entypo/fiveHundredPX.js b/dist/entypo/fiveHundredPX.js
new file mode 100644
index 000000000..b696af0a7
--- /dev/null
+++ b/dist/entypo/fiveHundredPX.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fiveHundredPX = void 0;
+var fiveHundredPX = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.398,14.775c0.481-0.174,0.928-0.4,1.337-0.683c0.41-0.282,0.797-0.608,1.16-0.982c0.363-0.373,0.736-0.759,1.118-1.159\r\n\tc0.346,0.4,0.71,0.786,1.092,1.159c0.382,0.374,0.787,0.7,1.214,0.982c0.428,0.282,0.887,0.509,1.379,0.683\r\n\tc0.49,0.173,1.017,0.259,1.582,0.259c0.727,0,1.387-0.132,1.977-0.396c0.591-0.264,1.087-0.627,1.487-1.092\r\n\tc0.399-0.464,0.71-1.005,0.928-1.623C19.891,11.306,20,10.642,20,9.932c0-0.71-0.109-1.364-0.328-1.964\r\n\tc-0.218-0.602-0.528-1.123-0.928-1.569c-0.4-0.446-0.892-0.795-1.473-1.05c-0.583-0.256-1.238-0.383-1.966-0.383\r\n\tc-0.581,0-1.123,0.092-1.623,0.273c-0.5,0.182-0.964,0.423-1.391,0.723c-0.428,0.3-0.828,0.65-1.201,1.051\r\n\tc-0.372,0.399-0.732,0.81-1.078,1.228C9.648,7.804,9.28,7.391,8.908,6.999C8.535,6.608,8.135,6.262,7.707,5.962\r\n\tc-0.428-0.3-0.891-0.541-1.391-0.723c-0.5-0.182-1.051-0.273-1.65-0.273c-0.728,0-1.385,0.133-1.965,0.396\r\n\tC2.117,5.626,1.628,5.979,1.227,6.426c-0.4,0.446-0.706,0.974-0.914,1.583C0.104,8.618,0,9.277,0,9.985\r\n\tc0,0.71,0.108,1.374,0.326,1.992c0.219,0.619,0.537,1.15,0.955,1.597c0.419,0.446,0.919,0.801,1.5,1.064\r\n\tc0.584,0.264,1.246,0.396,1.993,0.396C5.374,15.034,5.916,14.948,6.398,14.775z M3.164,11.65c-0.383-0.418-0.573-0.955-0.573-1.609\r\n\tc0-0.6,0.186-1.142,0.561-1.624c0.372-0.48,0.876-0.723,1.515-0.723c0.345,0,0.689,0.078,1.035,0.232\r\n\tc0.346,0.154,0.678,0.35,0.997,0.587C7.016,8.75,7.321,9.009,7.611,9.29c0.291,0.283,0.546,0.542,0.765,0.778\r\n\tc-0.219,0.255-0.464,0.515-0.737,0.776c-0.273,0.266-0.562,0.502-0.872,0.71c-0.311,0.21-0.637,0.382-0.983,0.519\r\n\tc-0.345,0.137-0.691,0.205-1.036,0.205C4.073,12.278,3.546,12.069,3.164,11.65z M14.256,12.088c-0.336-0.127-0.66-0.296-0.968-0.505\r\n\tc-0.311-0.209-0.603-0.445-0.874-0.709c-0.273-0.264-0.528-0.532-0.764-0.806c0.218-0.236,0.463-0.495,0.736-0.778\r\n\tc0.273-0.281,0.56-0.54,0.859-0.776c0.3-0.237,0.619-0.433,0.955-0.587c0.337-0.154,0.688-0.232,1.051-0.232\r\n\tc0.673,0,1.204,0.227,1.596,0.683c0.392,0.454,0.587,1,0.587,1.638c0,0.637-0.183,1.172-0.546,1.608\r\n\tc-0.364,0.438-0.882,0.655-1.555,0.655C14.952,12.278,14.592,12.215,14.256,12.088z"
+ }
+ }]
+};
+exports.fiveHundredPX = fiveHundredPX;
\ No newline at end of file
diff --git a/dist/entypo/flag.js b/dist/entypo/flag.js
new file mode 100644
index 000000000..285e325b5
--- /dev/null
+++ b/dist/entypo/flag.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flag = void 0;
+var flag = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.926,5.584c-9.339,13.568-6.142-0.26-14.037,6.357L6.684,19H4.665L1,4.59l1.85-0.664\r\n\tc8.849-6.471,4.228,5.82,15.637,1.254C18.851,5.033,19.142,5.27,18.926,5.584z"
+ }
+ }]
+};
+exports.flag = flag;
\ No newline at end of file
diff --git a/dist/entypo/flash.js b/dist/entypo/flash.js
new file mode 100644
index 000000000..d02f088e3
--- /dev/null
+++ b/dist/entypo/flash.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flash = void 0;
+var flash = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.803,18.998c-0.194-0.127,3.153-7.16,3.038-7.469c-0.116-0.309-3.665-1.436-3.838-1.979\r\n\tc-0.174-0.543,7.007-8.707,7.196-8.549c0.188,0.158-3.129,7.238-3.039,7.469c0.091,0.23,3.728,1.404,3.838,1.979\r\n\tC14.109,11.024,6.996,19.125,6.803,18.998z"
+ }
+ }]
+};
+exports.flash = flash;
\ No newline at end of file
diff --git a/dist/entypo/flashlight.js b/dist/entypo/flashlight.js
new file mode 100644
index 000000000..7a6fa35ac
--- /dev/null
+++ b/dist/entypo/flashlight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flashlight = void 0;
+var flashlight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.115,2.884c-1.676-1.676-3.779-2.288-4.449-1.618L9.97,3.962C9.561,4.372,9.204,5.741,9.368,7.126l-8.161,8.161\r\n\tc-0.484,0.484-0.092,1.66,0.876,2.629c0.968,0.969,2.146,1.359,2.629,0.877l8.161-8.162c1.386,0.164,2.755-0.193,3.164-0.601\r\n\tl2.696-2.697C19.403,6.663,18.791,4.559,17.115,2.884z M8.141,11.039C7.768,10.667,7.89,9.943,8.41,9.422\r\n\tc0.521-0.521,1.246-0.643,1.618-0.27c0.372,0.371,0.251,1.097-0.27,1.617C9.237,11.291,8.513,11.412,8.141,11.039z M14.891,5.108\r\n\tc-1.298-1.297-1.623-3.01-1.508-3.125c0.115-0.116,1.76,0.277,3.059,1.575c1.298,1.298,1.688,2.946,1.575,3.059\r\n\tC17.905,6.729,16.188,6.407,14.891,5.108z"
+ }
+ }]
+};
+exports.flashlight = flashlight;
\ No newline at end of file
diff --git a/dist/entypo/flask.js b/dist/entypo/flask.js
new file mode 100644
index 000000000..71cb6fd07
--- /dev/null
+++ b/dist/entypo/flask.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flask = void 0;
+var flask = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M16.432,15C14.387,9.893,12,8.547,12,6V3h0.5C12.776,3,13,2.776,13,2.5v-1\r\n\tC13,1.224,12.776,1,12.5,1h-5C7.224,1,7,1.224,7,1.5v1C7,2.776,7.224,3,7.5,3H8v3c0,2.547-2.387,3.893-4.432,9\r\n\tC2.917,16.625,1.245,19,10,19S17.083,16.625,16.432,15z M14.815,16.751C14.113,16.961,12.716,17.2,10,17.2s-4.113-0.239-4.815-0.449\r\n\tc-0.249-0.074-0.346-0.363-0.258-0.628c0.22-0.67,0.635-1.828,1.411-3.121c1.896-3.159,3.863,0.497,5.5,0.497\r\n\tc1.637,0,1.188-1.561,1.824-0.497c0.774,1.294,1.191,2.451,1.411,3.121C15.161,16.388,15.064,16.676,14.815,16.751z"
+ }
+ }]
+};
+exports.flask = flask;
\ No newline at end of file
diff --git a/dist/entypo/flattr.js b/dist/entypo/flattr.js
new file mode 100644
index 000000000..83878e3f5
--- /dev/null
+++ b/dist/entypo/flattr.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flattr = void 0;
+var flattr = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.598,8.541c0-1.637,0.434-2.678,1.889-2.912c0.508-0.1,1.566-0.064,2.239-0.064v2.5c0,0.024,0.003,0.064,0.009,0.084\r\n\tC9.762,8.25,9.854,8.324,9.963,8.324c0.061,0,0.118-0.031,0.178-0.09L16.377,2H12.19H7.548C3.874,2,2,4.115,2,8.066v8.287\r\n\tl3.598-3.602V8.541z M14.4,7.248v4.209c0,1.637-0.434,2.68-1.889,2.912c-0.508,0.1-1.566,0.065-2.238,0.065v-2.5\r\n\tc0-0.022-0.004-0.062-0.009-0.084c-0.028-0.1-0.12-0.174-0.228-0.176c-0.062,0-0.118,0.033-0.179,0.092l-6.235,6.232L7.809,18h4.643\r\n\tC16.125,18,18,15.885,18,11.934V3.647L14.4,7.248z"
+ }
+ }]
+};
+exports.flattr = flattr;
\ No newline at end of file
diff --git a/dist/entypo/flickr.js b/dist/entypo/flickr.js
new file mode 100644
index 000000000..c9ebebc49
--- /dev/null
+++ b/dist/entypo/flickr.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flickr = void 0;
+var flickr = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5,14c-2.188,0-3.96-1.789-3.96-4c0-2.211,1.772-4,3.96-4c2.187,0,3.96,1.789,3.96,4C8.96,12.211,7.187,14,5,14z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15,14c-2.188,0-3.96-1.789-3.96-4c0-2.211,1.772-4,3.96-4c2.187,0,3.96,1.789,3.96,4C18.96,12.211,17.187,14,15,14z"
+ }
+ }]
+};
+exports.flickr = flickr;
\ No newline at end of file
diff --git a/dist/entypo/flirt.js b/dist/entypo/flirt.js
new file mode 100644
index 000000000..46dc0bd9a
--- /dev/null
+++ b/dist/entypo/flirt.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flirt = void 0;
+var flirt = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.5,9.75C8.329,9.75,9,8.967,9,8S8.329,6.25,7.5,6.25S6,7.034,6,8S6.672,9.75,7.5,9.75z M10,0.4\r\n\tC4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601C19.6,4.698,15.301,0.4,10,0.4z M10,17.599\r\n\tc-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6S17.6,5.802,17.6,10C17.6,14.197,14.197,17.599,10,17.599z M14.341,11.336\r\n\tc-0.363-0.187-0.815-0.043-1.008,0.32c-0.034,0.065-0.869,1.593-3.332,1.593c-2.451,0-3.291-1.513-3.333-1.592\r\n\tc-0.188-0.365-0.632-0.514-1.004-0.329c-0.37,0.185-0.521,0.636-0.335,1.007c0.05,0.099,1.248,2.414,4.672,2.414\r\n\tc3.425,0,4.621-2.316,4.67-2.415C14.855,11.967,14.707,11.524,14.341,11.336z M11.25,8.75h2.5c0.414,0,0.75-0.336,0.75-0.75\r\n\tc0-0.414-0.336-0.75-0.75-0.75h-2.5c-0.414,0-0.75,0.336-0.75,0.75C10.5,8.415,10.836,8.75,11.25,8.75z"
+ }
+ }, {
+ "name": "g",
+ "attribs": {}
+ }, {
+ "name": "g",
+ "attribs": {}
+ }, {
+ "name": "g",
+ "attribs": {}
+ }, {
+ "name": "g",
+ "attribs": {}
+ }, {
+ "name": "g",
+ "attribs": {}
+ }, {
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.flirt = flirt;
\ No newline at end of file
diff --git a/dist/entypo/flower.js b/dist/entypo/flower.js
new file mode 100644
index 000000000..5f1f278bb
--- /dev/null
+++ b/dist/entypo/flower.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flower = void 0;
+var flower = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.6591797,8.7595215c0.4396973-1.0861816-0.3630371-2.5083008-1.2099609-3.4055176\r\n\tc0.3283691-1.1893311,0.3718262-2.8215332-0.5253906-3.5754395c-0.8969727-0.7540283-2.4973145-0.4300537-3.6125488,0.0980225\r\n\tC6.2817383,1.1970215,4.7426758,0.651123,3.748291,1.2713623C2.7543945,1.8916016,2.5678711,3.513916,2.7253418,4.7375488\r\n\tc-0.9645996,0.7692871-1.9592285,2.064209-1.6765137,3.201416s1.7678223,1.815918,2.9804688,2.0440674\r\n\tc0.4333496,1.1551514,1.357666,2.5012207,2.5266113,2.5838623c0.828125,0.0585938,1.619873-0.53125,2.223877-1.2633057\r\n\tc1.2209473,1.5201416,2.0817871,3.1278076,2.5551758,4.706543C10.6123047,14.9285889,9.1147461,14,6,14\r\n\tc0,4.1550293,3.0419922,5.0028076,5,5.0028076l3.2001953,0.0020752c0-2.7229004-0.986084-5.909668-3.2895508-8.9008789\r\n\tC11.692627,9.8570557,12.388916,9.4267578,12.6591797,8.7595215z M8.2827148,8.5396729\r\n\tC7.1357422,9.255127,5.6259766,8.9055176,4.9106445,7.7585449C4.1950684,6.6116943,4.5446777,5.1018066,5.6916504,4.3863525\r\n\tS8.3483887,4.020752,9.0639648,5.1674805C9.7792969,6.3144531,9.4296875,7.8242188,8.2827148,8.5396729z M14.0200195,12.2478027\r\n\tc1.0825195,2.1699219,1.6687012,4.4530029,1.6774902,6.7053223C18.9963379,16.5820312,19,12.2062988,19,8.0028076\r\n\tC19,8.0028076,15.3293457,9.0374756,14.0200195,12.2478027z"
+ }
+ }]
+};
+exports.flower = flower;
\ No newline at end of file
diff --git a/dist/entypo/folder.js b/dist/entypo/folder.js
new file mode 100644
index 000000000..a76390a59
--- /dev/null
+++ b/dist/entypo/folder.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder = void 0;
+var folder = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.405,4.799C18.294,4.359,17.75,4,17.195,4h-6.814C9.827,4,9.051,3.682,8.659,3.293L8.063,2.705\r\n\tC7.671,2.316,6.896,2,6.342,2H3.087C2.532,2,2.028,2.447,1.967,2.994L1.675,6h16.931L18.405,4.799z M19.412,7H0.588\r\n\tc-0.342,0-0.61,0.294-0.577,0.635l0.923,9.669C0.971,17.698,1.303,18,1.7,18H18.3c0.397,0,0.728-0.302,0.766-0.696l0.923-9.669\r\n\tC20.022,7.294,19.754,7,19.412,7z"
+ }
+ }]
+};
+exports.folder = folder;
\ No newline at end of file
diff --git a/dist/entypo/forward.js b/dist/entypo/forward.js
new file mode 100644
index 000000000..f2c756021
--- /dev/null
+++ b/dist/entypo/forward.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.forward = void 0;
+var forward = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12,11.874v4.357l7-6.69l-7-6.572v3.983c-8.775,0-11,9.732-11,9.732C3.484,12.296,7.237,11.874,12,11.874z"
+ }
+ }]
+};
+exports.forward = forward;
\ No newline at end of file
diff --git a/dist/entypo/foursquare.js b/dist/entypo/foursquare.js
new file mode 100644
index 000000000..9a2b89087
--- /dev/null
+++ b/dist/entypo/foursquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.foursquare = void 0;
+var foursquare = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.92,1C4.412,1,4,1.412,4,1.92v16.516c0,0.625,0.765,0.926,1.192,0.47l4.471-4.79C9.731,14.042,9.826,14,9.927,14h3.237\r\n\tc0.486,0,0.905-0.343,1.001-0.82l2.111-10.514C16.449,1.804,15.79,1,14.911,1H4.92z M8.838,12.19L6,15.527V3.343\r\n\tC6,3.154,6.154,3,6.343,3h7.14c0.342,0,0.598,0.313,0.53,0.648l-0.413,2.055C13.566,5.876,13.414,6,13.238,6h-3.71\r\n\tC9.236,6,9,6.236,9,6.528v1.22C9,7.887,9.113,8,9.253,8h3.294c0.306,0,0.536,0.28,0.476,0.581l-0.614,3.058\r\n\tC12.366,11.849,12.181,12,11.967,12H9.25C9.091,12,8.941,12.069,8.838,12.19z"
+ }
+ }]
+};
+exports.foursquare = foursquare;
\ No newline at end of file
diff --git a/dist/entypo/full.js b/dist/entypo/full.js
new file mode 100644
index 000000000..3e8133004
--- /dev/null
+++ b/dist/entypo/full.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.full = void 0;
+var full = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z\r\n\t M12,8H8v4h4V8z M17,8h-4v4h4V8z"
+ }
+ }]
+};
+exports.full = full;
\ No newline at end of file
diff --git a/dist/entypo/fullScreen.js b/dist/entypo/fullScreen.js
new file mode 100644
index 000000000..772199997
--- /dev/null
+++ b/dist/entypo/fullScreen.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fullScreen = void 0;
+var fullScreen = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.987,10.987l-2.931,3.031L2,11.589V18h6.387l-2.43-2.081l3.03-2.932L6.987,10.987z M11.613,2l2.43,2.081l-3.03,2.932l2,2\r\n\tl2.931-3.031L18,8.411V2H11.613z"
+ }
+ }]
+};
+exports.fullScreen = fullScreen;
\ No newline at end of file
diff --git a/dist/entypo/funnel.js b/dist/entypo/funnel.js
new file mode 100644
index 000000000..d02329222
--- /dev/null
+++ b/dist/entypo/funnel.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.funnel = void 0;
+var funnel = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1C5.092,1,2,2.512,2,4.001v2c0,0.918,6,6,6,6v6c-0.001,0.684,1,1,2,1s2.001-0.316,2-1v-6c0,0,6-5.082,6-6v-2\r\n\tC18,2.512,14.908,1,10,1z M10,6.123C6.409,6.122,3.862,4.79,3.862,4.292C3.86,3.797,6.41,2.461,10,2.463\r\n\tc3.59-0.002,6.14,1.334,6.138,1.828C16.138,4.79,13.591,6.122,10,6.123z"
+ }
+ }]
+};
+exports.funnel = funnel;
\ No newline at end of file
diff --git a/dist/entypo/gauge.js b/dist/entypo/gauge.js
new file mode 100644
index 000000000..6a8f50ad1
--- /dev/null
+++ b/dist/entypo/gauge.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gauge = void 0;
+var gauge = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.127,13.6c-0.689,1.197-0.225,2.18,0.732,2.732c0.956,0.553,2.041,0.465,2.732-0.732\r\n\tc0.689-1.195,5.047-11.865,4.668-12.084C15.88,3.297,8.817,12.404,8.127,13.6z M10,6c0.438,0,0.864,0.037,1.281,0.109\r\n\tc0.438-0.549,0.928-1.154,1.405-1.728C11.834,4.135,10.934,4,10,4C4.393,4,0,8.729,0,14.766c0,0.371,0.016,0.742,0.049,1.103\r\n\tc0.049,0.551,0.54,0.955,1.084,0.908c0.551-0.051,0.957-0.535,0.908-1.086C2.014,15.389,2,15.076,2,14.766C2,9.85,5.514,6,10,6z\r\n\t M17.219,7.25C16.94,8,16.645,8.764,16.385,9.424C17.4,10.894,18,12.738,18,14.766c0,0.316-0.015,0.635-0.043,0.943\r\n\tc-0.05,0.551,0.355,1.037,0.905,1.088c0.03,0.002,0.061,0.004,0.092,0.004c0.511,0,0.948-0.391,0.995-0.91\r\n\tC19.982,15.521,20,15.143,20,14.766C20,11.812,18.947,9.176,17.219,7.25z"
+ }
+ }]
+};
+exports.gauge = gauge;
\ No newline at end of file
diff --git a/dist/entypo/github.js b/dist/entypo/github.js
new file mode 100644
index 000000000..8cb642f4e
--- /dev/null
+++ b/dist/entypo/github.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.github = void 0;
+var github = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.18,11.309c-0.718,0-1.3,0.807-1.3,1.799c0,0.994,0.582,1.801,1.3,1.801s1.3-0.807,1.3-1.801\r\n\tC14.479,12.116,13.898,11.309,13.18,11.309z M17.706,6.626c0.149-0.365,0.155-2.439-0.635-4.426c0,0-1.811,0.199-4.551,2.08\r\n\tc-0.575-0.16-1.548-0.238-2.519-0.238c-0.973,0-1.945,0.078-2.52,0.238C4.74,2.399,2.929,2.2,2.929,2.2\r\n\tC2.14,4.187,2.148,6.261,2.295,6.626C1.367,7.634,0.8,8.845,0.8,10.497c0,7.186,5.963,7.301,7.467,7.301\r\n\tc0.342,0,1.018,0.002,1.734,0.002c0.715,0,1.392-0.002,1.732-0.002c1.506,0,7.467-0.115,7.467-7.301\r\n\tC19.2,8.845,18.634,7.634,17.706,6.626z M10.028,16.915H9.972c-3.771,0-6.709-0.449-6.709-4.115c0-0.879,0.31-1.693,1.047-2.369\r\n\tc1.227-1.127,3.305-0.531,5.662-0.531c0.01,0,0.02,0,0.029,0c0.01,0,0.018,0,0.027,0c2.357,0,4.436-0.596,5.664,0.531\r\n\tc0.735,0.676,1.045,1.49,1.045,2.369C16.737,16.466,13.8,16.915,10.028,16.915z M6.821,11.309c-0.718,0-1.3,0.807-1.3,1.799\r\n\tc0,0.994,0.582,1.801,1.3,1.801c0.719,0,1.301-0.807,1.301-1.801C8.122,12.116,7.54,11.309,6.821,11.309z"
+ }
+ }]
+};
+exports.github = github;
\ No newline at end of file
diff --git a/dist/entypo/glass.js b/dist/entypo/glass.js
new file mode 100644
index 000000000..69ed2ab68
--- /dev/null
+++ b/dist/entypo/glass.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.glass = void 0;
+var glass = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.6,4.576c0-2.139,0-2.348,0-2.348C15.6,1.439,13.092,0,10,0C6.907,0,4.4,1.439,4.4,2.228c0,0,0,0.209,0,2.348\r\n\tC4.4,6.717,8.277,8.484,8.277,10c0,1.514-3.877,3.281-3.877,5.422c0,2.141,0,2.35,0,2.35C4.4,18.56,6.907,20,10,20\r\n\tc3.092,0,5.6-1.44,5.6-2.229c0,0,0-0.209,0-2.35c0-2.141-3.877-3.908-3.877-5.422C11.723,8.484,15.6,6.717,15.6,4.576z M5.941,2.328\r\n\tc0.696-0.439,2-1.082,4.114-1.082c2.113,0,4.006,1.082,4.006,1.082c0.142,0.086,0.698,0.383,0.317,0.609\r\n\tC13.54,3.434,11.9,3.957,10,3.957c-1.9,0-3.484-0.576-4.324-1.074C5.295,2.658,5.941,2.328,5.941,2.328z M10.501,10\r\n\tc0,1.193,0.996,1.961,2.051,2.986c0.771,0.748,1.826,1.773,1.826,2.435v1.328c-0.97-0.483-3.872-0.955-3.872-2.504\r\n\tc0-0.783-1.013-0.783-1.013,0c0,1.549-2.902,2.021-3.872,2.504v-1.328c0-0.662,1.056-1.688,1.826-2.435\r\n\tC8.502,11.961,9.498,11.193,9.498,10c0-1.193-0.996-1.961-2.051-2.986c-0.771-0.75-1.826-1.775-1.826-2.438L5.575,3.578\r\n\tC6.601,4.131,8.227,4.656,10,4.656c1.772,0,3.406-0.525,4.433-1.078l-0.055,0.998c0,0.662-1.056,1.688-1.826,2.438\r\n\tC11.498,8.039,10.501,8.807,10.501,10z"
+ }
+ }]
+};
+exports.glass = glass;
\ No newline at end of file
diff --git a/dist/entypo/globe.js b/dist/entypo/globe.js
new file mode 100644
index 000000000..c9b99ba93
--- /dev/null
+++ b/dist/entypo/globe.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.globe = void 0;
+var globe = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.295,0-9.601,4.307-9.601,9.6c0,5.293,4.306,9.6,9.601,9.6c5.293,0,9.6-4.307,9.6-9.6\r\n\tC19.6,4.707,15.293,0.4,10,0.4z M18.188,10c0,1.873-0.636,3.6-1.696,4.98c-0.3-0.234-0.619-0.867-0.319-1.523\r\n\tc0.303-0.66,0.382-2.188,0.312-2.783c-0.066-0.594-0.375-2.025-1.214-2.039c-0.838-0.012-1.413-0.289-1.911-1.283\r\n\tc-1.033-2.068,1.939-2.465,0.906-3.609c-0.289-0.322-1.783,1.322-2.002-0.869C12.25,2.717,12.399,2.482,12.6,2.238\r\n\tC15.844,3.328,18.188,6.395,18.188,10z M8.875,1.893C8.679,2.275,8.162,2.43,7.848,2.717C7.164,3.336,6.87,3.25,6.502,3.844\r\n\tC6.131,4.438,4.935,5.293,4.935,5.723s0.604,0.936,0.906,0.838c0.302-0.1,1.099-0.094,1.567,0.07\r\n\tc0.469,0.166,3.914,0.332,2.816,3.244c-0.348,0.926-1.873,0.77-2.279,2.303c-0.061,0.225-0.272,1.186-0.285,1.5\r\n\tc-0.025,0.486,0.344,2.318-0.125,2.318c-0.471,0-1.738-1.639-1.738-1.936c0-0.297-0.328-1.338-0.328-2.23\r\n\tc0-0.891-1.518-0.877-1.518-2.062c0-1.068,0.823-1.6,0.638-2.113c-0.181-0.51-1.627-0.527-2.23-0.59\r\n\tC3.412,4.334,5.889,2.307,8.875,1.893z M7.424,17.77c0.492-0.26,0.542-0.596,0.988-0.613c0.51-0.023,0.925-0.199,1.5-0.326\r\n\tc0.51-0.111,1.423-0.629,2.226-0.695c0.678-0.055,2.015,0.035,2.375,0.689c-1.295,0.861-2.848,1.363-4.514,1.363\r\n\tC9.1,18.188,8.234,18.039,7.424,17.77z"
+ }
+ }]
+};
+exports.globe = globe;
\ No newline at end of file
diff --git a/dist/entypo/googlePlus.js b/dist/entypo/googlePlus.js
new file mode 100644
index 000000000..e402f725c
--- /dev/null
+++ b/dist/entypo/googlePlus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.googlePlus = void 0;
+var googlePlus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.989,5.589c0,1.494,0.499,2.572,1.482,3.205c0.806,0.52,1.74,0.598,2.226,0.598c0.118,0,0.213-0.006,0.279-0.01\r\n\tc0,0-0.154,1.004,0.59,1.996H6.532c-1.289,0-5.493,0.269-5.493,3.727c0,3.516,3.861,3.695,4.636,3.695\r\n\tc0.061,0,0.097-0.002,0.097-0.002c0.008,0,0.063,0.002,0.158,0.002c0.497,0,1.782-0.062,2.975-0.643\r\n\tc1.548-0.75,2.333-2.059,2.333-3.885c0-1.764-1.196-2.814-2.069-3.582c-0.533-0.469-0.994-0.873-0.994-1.266\r\n\tc0-0.4,0.337-0.701,0.762-1.082c0.689-0.615,1.339-1.492,1.339-3.15c0-1.457-0.189-2.436-1.354-3.057\r\n\tc0.121-0.062,0.551-0.107,0.763-0.137c0.631-0.086,1.554-0.184,1.554-0.699V1.2H6.64C6.594,1.202,1.989,1.372,1.989,5.589z\r\n\t M9.413,14.602c0.088,1.406-1.115,2.443-2.922,2.574c-1.835,0.135-3.345-0.691-3.433-2.096c-0.043-0.676,0.254-1.336,0.835-1.863\r\n\tc0.589-0.533,1.398-0.863,2.278-0.928c0.104-0.006,0.207-0.012,0.31-0.012C8.18,12.278,9.33,13.276,9.413,14.602z M8.212,4.626\r\n\tc0.451,1.588-0.23,3.246-1.316,3.553C6.771,8.214,6.643,8.231,6.512,8.231c-0.994,0-1.979-1.006-2.345-2.393\r\n\tC3.963,5.062,3.98,4.38,4.214,3.726c0.229-0.645,0.643-1.078,1.163-1.225c0.125-0.035,0.254-0.053,0.385-0.053\r\n\tC6.962,2.448,7.734,2.946,8.212,4.626z M16,8V5h-2v3h-3v2h3v3h2v-3h3V8H16z"
+ }
+ }]
+};
+exports.googlePlus = googlePlus;
\ No newline at end of file
diff --git a/dist/entypo/graph.js b/dist/entypo/graph.js
new file mode 100644
index 000000000..2c5407c25
--- /dev/null
+++ b/dist/entypo/graph.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.graph = void 0;
+var graph = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20,2v16H0.32c-0.318,0-0.416-0.209-0.216-0.465l4.469-5.748c0.199-0.256,0.553-0.283,0.789-0.062l1.419,1.334\r\n\tc0.235,0.221,0.572,0.178,0.747-0.096l3.047-4.74c0.175-0.273,0.509-0.312,0.741-0.09l2.171,2.096c0.232,0.225,0.559,0.18,0.724-0.1\r\n\tl5.133-7.785C19.51,2.062,19.75,2,20,2z"
+ }
+ }]
+};
+exports.graph = graph;
\ No newline at end of file
diff --git a/dist/entypo/grid.js b/dist/entypo/grid.js
new file mode 100644
index 000000000..5f59dfc8b
--- /dev/null
+++ b/dist/entypo/grid.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.grid = void 0;
+var grid = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M8,4H5C4.447,4,4,4.447,4,5v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1V5\r\n\tC9,4.448,8.553,4,8,4z M15,4h-3c-0.553,0-1,0.447-1,1v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1V5C16,4.448,15.553,4,15,4z M8,11\r\n\tH5c-0.553,0-1,0.447-1,1v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1v-3C9,11.448,8.553,11,8,11z M15,11h-3c-0.553,0-1,0.447-1,1v3\r\n\tc0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1v-3C16,11.448,15.553,11,15,11z"
+ }
+ }]
+};
+exports.grid = grid;
\ No newline at end of file
diff --git a/dist/entypo/grooveshark.js b/dist/entypo/grooveshark.js
new file mode 100644
index 000000000..1590b5631
--- /dev/null
+++ b/dist/entypo/grooveshark.js
@@ -0,0 +1,14 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.grooveshark = void 0;
+var grooveshark = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.grooveshark = grooveshark;
\ No newline at end of file
diff --git a/dist/entypo/hand.js b/dist/entypo/hand.js
new file mode 100644
index 000000000..d039800e8
--- /dev/null
+++ b/dist/entypo/hand.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hand = void 0;
+var hand = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.924,17.315c-0.057,0.174-0.193,0.367-0.416,0.432c-0.161,0.047-5.488,1.59-5.652,1.633\r\n\tc-0.469,0.125-0.795,0.033-1.009-0.156c-0.326-0.287-4.093-2.85-8.845-3.092c-0.508-0.025-0.259-1.951,1.193-1.951\r\n\tc0.995,0,3.904,0.723,4.255,0.371c0.271-0.272,0.394-1.879-0.737-4.683l0,0L4.438,4.232C4.222,3.697,4.482,3.089,5.016,2.873\r\n\tc0.535-0.216,1.145,0.043,1.359,0.578c0,0,1.791,4.438,1.986,4.919c0.193,0.48,0.431,0.662,0.69,0.562\r\n\tC9.282,8.844,9.33,8.69,9.19,8.223L7.144,2.195C6.958,1.649,7.25,1.057,7.796,0.871c0.547-0.187,1.141,0.106,1.325,0.652\r\n\tl1.946,5.732c0.172,0.504,0.354,0.768,0.642,0.646c0.173-0.073,0.161-0.338,0.115-0.569l-1.366-5.471\r\n\tc-0.14-0.561,0.201-1.127,0.761-1.267c0.56-0.139,1.125,0.2,1.266,0.761l1.26,5.042c0.184,0.741,0.353,1.008,0.646,0.935\r\n\tc0.299-0.073,0.285-0.319,0.244-0.522c-0.095-0.475-0.872-4.328-0.872-4.328c-0.103-0.515,0.23-1.015,0.744-1.118\r\n\tc0.513-0.103,1.014,0.23,1.116,0.743l0.948,4.711l0.001,0.001c0,0,0,0,0,0.001l0.568,2.825c0.124,0.533,0.266,1.035,0.45,1.527\r\n\tC18.675,14.061,18.109,16.736,17.924,17.315z"
+ }
+ }]
+};
+exports.hand = hand;
\ No newline at end of file
diff --git a/dist/entypo/hangouts.js b/dist/entypo/hangouts.js
new file mode 100644
index 000000000..71e977793
--- /dev/null
+++ b/dist/entypo/hangouts.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hangouts = void 0;
+var hangouts = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0C5.25,0,1.4,3.806,1.4,8.5C1.4,13.194,5.25,17,10,17v3c3.368-1.672,8.6-5.305,8.6-11.5C18.6,3.806,14.75,0,10,0z\r\n\t M9,9.741c0,1.328-1.021,2.422-2.32,2.538c-0.123,0.011-0.228-0.088-0.228-0.211v-0.852c0-0.106,0.079-0.194,0.184-0.21\r\n\tC7.167,10.93,7.573,10.519,7.683,10H5.732C5.328,10,5,9.672,5,9.268V6.732C5,6.328,5.328,6,5.732,6h2.536C8.672,6,9,6.328,9,6.732\r\n\tV9.741z M15,9.741c0,1.328-1.021,2.422-2.32,2.538c-0.123,0.011-0.228-0.088-0.228-0.211v-0.852c0-0.106,0.079-0.194,0.184-0.21\r\n\tc0.531-0.077,0.937-0.487,1.047-1.006h-1.951C11.328,10,11,9.672,11,9.268V6.732C11,6.328,11.328,6,11.732,6h2.536\r\n\tC14.672,6,15,6.328,15,6.732V9.741z"
+ }
+ }]
+};
+exports.hangouts = hangouts;
\ No newline at end of file
diff --git a/dist/entypo/happy.js b/dist/entypo/happy.js
new file mode 100644
index 000000000..11b077929
--- /dev/null
+++ b/dist/entypo/happy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.happy = void 0;
+var happy = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6S5.802,2.4,10,2.4c4.197,0,7.601,3.402,7.601,7.6\r\n\tS14.197,17.599,10,17.599z M7.501,9.75C8.329,9.75,9,8.967,9,8s-0.672-1.75-1.5-1.75s-1.5,0.783-1.5,1.75S6.672,9.75,7.501,9.75z\r\n\t M12.5,9.75C13.329,9.75,14,8.967,14,8s-0.672-1.75-1.5-1.75S11,7.034,11,8S11.672,9.75,12.5,9.75z M14.341,11.336\r\n\tc-0.363-0.186-0.815-0.043-1.008,0.32c-0.034,0.066-0.869,1.593-3.332,1.593c-2.451,0-3.291-1.513-3.333-1.592\r\n\tc-0.188-0.365-0.632-0.514-1.004-0.329c-0.37,0.186-0.52,0.636-0.335,1.007c0.05,0.099,1.248,2.414,4.672,2.414\r\n\tc3.425,0,4.621-2.316,4.67-2.415C14.855,11.967,14.707,11.524,14.341,11.336z"
+ }
+ }]
+};
+exports.happy = happy;
\ No newline at end of file
diff --git a/dist/entypo/heart.js b/dist/entypo/heart.js
new file mode 100644
index 000000000..0af23d511
--- /dev/null
+++ b/dist/entypo/heart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heart = void 0;
+var heart = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.19,4.155c-1.672-1.534-4.383-1.534-6.055,0L10,5.197L8.864,4.155c-1.672-1.534-4.382-1.534-6.054,0\r\n\tc-1.881,1.727-1.881,4.52,0,6.246L10,17l7.19-6.599C19.07,8.675,19.07,5.881,17.19,4.155z"
+ }
+ }]
+};
+exports.heart = heart;
\ No newline at end of file
diff --git a/dist/entypo/help.js b/dist/entypo/help.js
new file mode 100644
index 000000000..73bd616a5
--- /dev/null
+++ b/dist/entypo/help.js
@@ -0,0 +1,14 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.help = void 0;
+var help = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.help = help;
\ No newline at end of file
diff --git a/dist/entypo/home.js b/dist/entypo/home.js
new file mode 100644
index 000000000..4756952b3
--- /dev/null
+++ b/dist/entypo/home.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.home = void 0;
+var home = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.672,11H17v6c0,0.445-0.194,1-1,1h-4v-6H8v6H4c-0.806,0-1-0.555-1-1v-6H1.328c-0.598,0-0.47-0.324-0.06-0.748L9.292,2.22\r\n\tC9.487,2.018,9.743,1.918,10,1.908c0.257,0.01,0.513,0.109,0.708,0.312l8.023,8.031C19.142,10.676,19.27,11,18.672,11z"
+ }
+ }]
+};
+exports.home = home;
\ No newline at end of file
diff --git a/dist/entypo/horizontalMiddle.js b/dist/entypo/horizontalMiddle.js
new file mode 100644
index 000000000..321741572
--- /dev/null
+++ b/dist/entypo/horizontalMiddle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.horizontalMiddle = void 0;
+var horizontalMiddle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8,10L5,7v2H1v2h4v2L8,10z M15,13v-2h4V9h-4V7l-3,3L15,13z M10,18c0.553,0,1-0.049,1-0.6V2.6C11,2.047,10.553,2,10,2\r\n\tC9.448,2,9,2.047,9,2.6V17.4C9,17.951,9.448,18,10,18z"
+ }
+ }]
+};
+exports.horizontalMiddle = horizontalMiddle;
\ No newline at end of file
diff --git a/dist/entypo/houzz.js b/dist/entypo/houzz.js
new file mode 100644
index 000000000..611e0b96b
--- /dev/null
+++ b/dist/entypo/houzz.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.houzz = void 0;
+var houzz = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4,10l6,3l-6,3V10z M10,7l6,3V4L10,7z M10,20l6-3v-7l-6,3V20z M10,0L4,3v7l6-3V0z"
+ }
+ }]
+};
+exports.houzz = houzz;
\ No newline at end of file
diff --git a/dist/entypo/icloud.js b/dist/entypo/icloud.js
new file mode 100644
index 000000000..98a1760a2
--- /dev/null
+++ b/dist/entypo/icloud.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.icloud = void 0;
+var icloud = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.909,5c1.884,0,3.417,1.598,3.417,3.561c0,0.136-0.012,0.29-0.037,0.484c0,0-0.163,1.262-0.206,1.594\r\n\tc-0.043,0.332,0.186,0.65,0.528,0.653c0.342,0.002,1.65,0.01,1.65,0.01C17.219,11.308,18,12.137,18,13.15\r\n\tc0,1.02-0.785,1.85-1.75,1.85H4.167C2.972,15,2,13.978,2,12.722c0-0.913,0.519-1.735,1.323-2.095c0,0,0.421-0.188,0.651-0.291\r\n\tc0.23-0.103,0.508-0.431,0.516-0.775c0.008-0.344,0.016-0.714,0.016-0.714c0.012-0.535,0.421-0.97,0.91-0.97\r\n\tc0.032,0,0.094,0.006,0.207,0.035c0,0,0.774,0.197,1.039,0.264c0.265,0.067,0.606-0.066,0.73-0.309\r\n\tc0.124-0.243,0.503-0.981,0.503-0.981C8.493,5.723,9.648,5,10.909,5 M10.909,3C8.828,3,7.023,4.207,6.116,5.974\r\n\tC5.891,5.917,5.659,5.878,5.417,5.878c-1.587,0-2.873,1.304-2.91,2.924C1.033,9.461,0,10.966,0,12.722C0,15.085,1.865,17,4.167,17\r\n\tH16.25c2.071,0,3.75-1.724,3.75-3.85c0-2.118-1.667-3.835-3.728-3.848c0.031-0.243,0.053-0.489,0.053-0.741\r\n\tC16.326,5.49,13.901,3,10.909,3L10.909,3z"
+ }
+ }]
+};
+exports.icloud = icloud;
\ No newline at end of file
diff --git a/dist/entypo/image.js b/dist/entypo/image.js
new file mode 100644
index 000000000..c7da1f70b
--- /dev/null
+++ b/dist/entypo/image.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.image = void 0;
+var image = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M19,2H1C0.447,2,0,2.447,0,3v14c0,0.552,0.447,1,1,1h18c0.553,0,1-0.448,1-1V3\r\n\tC20,2.448,19.553,2,19,2z M18,16H2V4h16V16z M14.315,10.877l-3.231,1.605L7.314,6.381L4,14h12L14.315,10.877z M13.25,9\r\n\tc0.69,0,1.25-0.56,1.25-1.25S13.94,6.5,13.25,6.5S12,7.06,12,7.75S12.56,9,13.25,9z"
+ }
+ }]
+};
+exports.image = image;
\ No newline at end of file
diff --git a/dist/entypo/images.js b/dist/entypo/images.js
new file mode 100644
index 000000000..4cf69c5d9
--- /dev/null
+++ b/dist/entypo/images.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.images = void 0;
+var images = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M12.438,8.375c0.518,0,0.938,0.42,0.938,0.938\r\n\tc0,0.518-0.42,0.938-0.938,0.938S11.5,9.83,11.5,9.312C11.5,8.795,11.92,8.375,12.438,8.375z M5.5,14l2.486-5.714l2.827,4.576\r\n\tl2.424-1.204L14.5,14H5.5z"
+ }
+ }]
+};
+exports.images = images;
\ No newline at end of file
diff --git a/dist/entypo/inTime.js b/dist/entypo/inTime.js
new file mode 100644
index 000000000..e5eae4df0
--- /dev/null
+++ b/dist/entypo/inTime.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inTime = void 0;
+var inTime = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,1.799c-4.445,0-8.061,3.562-8.169,7.996V10H0.459l3.594,3.894L7.547,10H4.875V9.795C4.982,6.492,7.683,3.85,11,3.85\r\n\tc3.386,0,6.131,2.754,6.131,6.15c0,3.396-2.745,6.15-6.131,6.15c-1.357,0-2.611-0.445-3.627-1.193l-1.406,1.504\r\n\tc1.388,1.088,3.135,1.738,5.033,1.738c4.515,0,8.174-3.67,8.174-8.199S15.515,1.799,11,1.799z M10,5v5\r\n\tc0,0.13,0.027,0.26,0.077,0.382c0.051,0.122,0.124,0.233,0.216,0.325l3.2,3.2c0.283-0.183,0.55-0.389,0.787-0.628L12,11V5H10z"
+ }
+ }]
+};
+exports.inTime = inTime;
\ No newline at end of file
diff --git a/dist/entypo/inbox.js b/dist/entypo/inbox.js
new file mode 100644
index 000000000..6fe8ee240
--- /dev/null
+++ b/dist/entypo/inbox.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inbox = void 0;
+var inbox = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.253,9.542c-0.388-0.416-2.265-2.271-3.122-3.118C15.868,6.165,15.492,6,15.098,6H4.902c-0.394,0-0.77,0.165-1.033,0.424\r\n\tC3.011,7.271,1.135,9.125,0.747,9.542c-0.485,0.521-0.723,0.902-0.624,1.449s0.466,2.654,0.556,3.074\r\n\tC0.767,14.484,1.363,15,1.919,15h16.162c0.556,0,1.152-0.516,1.241-0.935c0.089-0.42,0.457-2.527,0.556-3.074\r\n\tS19.739,10.062,19.253,9.542z M14.014,10.003c-0.101,0-0.193,0.052-0.238,0.133L12.966,12H7.034l-0.809-1.864\r\n\tc-0.045-0.081-0.137-0.133-0.238-0.133H2.473L4.495,8h11.01l2.023,2.003H14.014z"
+ }
+ }]
+};
+exports.inbox = inbox;
\ No newline at end of file
diff --git a/dist/entypo/index.js b/dist/entypo/index.js
new file mode 100644
index 000000000..f62b28f9c
--- /dev/null
+++ b/dist/entypo/index.js
@@ -0,0 +1,3352 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fastBackward = exports.facebook = exports.eye = exports.exportIcon = exports.evernote = exports.eraser = exports.erase = exports.empty = exports.email = exports.edit = exports.dropbox = exports.drop = exports.drive = exports.drink = exports.dribbble = exports.download = exports.down = exports.documents = exports.documentInverted = exports.document = exports.direction = exports.database = exports.cycle = exports.cw = exports.cup = exports.cross = exports.crop = exports.credit = exports.copy = exports.controller = exports.cone = exports.computer = exports.compass = exports.commonsSharealike = exports.commonsShare = exports.commonsRemix = exports.commonsPublicDomain = exports.commonsNoncommercialUs = exports.commonsNoncommercialEu = exports.commonsNoderivs = exports.commonsAttribution = exports.commons = exports.colours = exports.cog = exports.code = exports.club = exports.cloud = exports.clock = exports.clipboard = exports.clapperboard = exports.circle = exports.check = exports.chat = exports.chart = exports.ccw = exports.cascade = exports.cart = exports.card = exports.cap = exports.camera = exports.calendar = exports.calculator = exports.cake = exports.bulb = exports.bug = exports.bucket = exports.brush = exports.browser = exports.briefcase = exports.branch = exports.box = exports.bowl = exports.bottom = exports.bookmarks = exports.bookmark = exports.book = exports.boldUp = exports.boldRight = exports.boldLeft = exports.boldDown = exports.block = exports.blackboard = exports.bell = exports.behance = exports.battery = exports.basket = exports.basecamp = exports.baidu = exports.bag = exports.back = exports.attachment = exports.arrows = exports.archive = exports.alternitive = exports.alternative = exports.all = exports.aircraft = exports.air = exports.adjust = exports.address = void 0;
+exports.one = exports.off = exports.notification = exports.note = exports.next = exports.newsletter = exports.news = exports.newIcon = exports.neutral = exports.network = exports.mute = exports.music = exports.mouse = exports.moon = exports.mobileCombo = exports.mobile = exports.mixi = exports.mix = exports.minus = exports.mic = exports.message = exports.merge = exports.menu = exports.megaphone = exports.medium = exports.medal = exports.mask = exports.map = exports.man = exports.mail = exports.magnet = exports.loop = exports.longUp = exports.longRight = exports.longLeft = exports.longDown = exports.login = exports.lock = exports.location = exports.list = exports.linkedin = exports.link = exports.line = exports.lifebuoy = exports.left = exports.leaf = exports.layers = exports.lastfm = exports.laptop = exports.language = exports.landscape = exports.landline = exports.landing = exports.keyboard = exports.key = exports.jumpToStart = exports.inverted = exports.install = exports.instagram = exports.info = exports.infinity = exports.inbox = exports.inTime = exports.images = exports.image = exports.icloud = exports.houzz = exports.horizontalMiddle = exports.home = exports.help = exports.heart = exports.happy = exports.hangouts = exports.hand = exports.grooveshark = exports.grid = exports.graph = exports.googlePlus = exports.globe = exports.glass = exports.github = exports.gauge = exports.funnel = exports.fullScreen = exports.full = exports.foursquare = exports.forward = exports.folder = exports.flower = exports.flirt = exports.flickr = exports.flattr = exports.flask = exports.flashlight = exports.flash = exports.flag = exports.fiveHundredPX = exports.fingerprint = exports.feather = exports.fastForward = void 0;
+exports.unread = exports.uninstall = exports.typing = exports.twoVertical = exports.twoHorizontal = exports.two = exports.twitter = exports.tv = exports.tumblr = exports.trophy = exports.tripadvisor = exports.tree = exports.trash = exports.top = exports.tools = exports.toList = exports.toCloud = exports.ticket = exports.threeVertical = exports.threeHorizontal = exports.thinUp = exports.thinRight = exports.thinLeft = exports.thinDown = exports.thermometer = exports.text = exports.takeOff = exports.tag = exports.tablet = exports.switchIcon = exports.sweden = exports.swarm = exports.swap = exports.suitcase = exports.stumbleupon = exports.store = exports.stopwatch = exports.stop = exports.star = exports.spreadsheet = exports.spotify = exports.soundcloud = exports.sound = exports.smashing = exports.smallUp = exports.smallRight = exports.smallLeft = exports.smallDown = exports.slot = exports.slideshare = exports.skype = exports.single = exports.signal = exports.shuffle = exports.shop = exports.shield = exports.shareable = exports.share = exports.scribd = exports.scissors = exports.save = exports.sad = exports.ruler = exports.rss = exports.rocket = exports.right = exports.ribbon = exports.retweet = exports.reply = exports.renren = exports.record = exports.rdio = exports.rainbow = exports.raft = exports.radio = exports.quote = exports.qq = exports.publish = exports.print = exports.popup = exports.pointer = exports.plus = exports.plug = exports.play = exports.plane = exports.pinterest = exports.pin = exports.picasa = exports.phone = exports.pencil = exports.paypal = exports.paus = exports.parallel = exports.palette = exports.pad = exports.outlined = exports.out = exports.open = exports.onedrive = exports.oneHundredPercent = void 0;
+exports.youtube = exports.youko = exports.yelp = exports.xing = exports.withPlus = exports.withMinus = exports.withLine = exports.withCross = exports.withCircleUp = exports.withCircleRight = exports.withCircleLeft = exports.withCircleDown = exports.withCircle = exports.weibo = exports.water = exports.warning = exports.wallet = exports.volume = exports.voicemail = exports.vk = exports.vinyl = exports.vine = exports.vimeo = exports.video = exports.verticalMiddle = exports.users = exports.user = exports.upload = exports.up = exports.untag = void 0;
+var toList = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.4,9H16V5.6C16,5,15.6,5,15,5s-1,0-1,0.6V9h-3.4C10,9,10,9.4,10,10s0,1,0.6,1H14v3.4c0,0.6,0.4,0.6,1,0.6s1,0,1-0.6V11\r\n\th3.4c0.6,0,0.6-0.4,0.6-1S20,9,19.4,9z M7.4,9H0.6C0,9,0,9.4,0,10s0,1,0.6,1h6.8C8,11,8,10.6,8,10S8,9,7.4,9z M7.4,14H0.6\r\n\tC0,14,0,14.4,0,15s0,1,0.6,1h6.8C8,16,8,15.6,8,15S8,14,7.4,14z M7.4,4H0.6C0,4,0,4.4,0,5s0,1,0.6,1h6.8C8,6,8,5.6,8,5S8,4,7.4,4z"
+ }
+ }]
+};
+exports.toList = toList;
+var user = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.989,19.129C16,17,13.803,15.74,11.672,14.822c-2.123-0.914-2.801-1.684-2.801-3.334c0-0.989,0.648-0.667,0.932-2.481\r\n\tc0.12-0.752,0.692-0.012,0.802-1.729c0-0.684-0.313-0.854-0.313-0.854s0.159-1.013,0.221-1.793c0.064-0.817-0.398-2.56-2.301-3.095\r\n\tC7.88,1.195,7.655,0.654,8.679,0.112c-2.24-0.104-2.761,1.068-3.954,1.93c-1.015,0.756-1.289,1.953-1.24,2.59\r\n\tc0.065,0.78,0.223,1.793,0.223,1.793s-0.314,0.17-0.314,0.854c0.11,1.718,0.684,0.977,0.803,1.729\r\n\tC4.481,10.822,5.13,10.5,5.13,11.489c0,1.65-0.212,2.21-2.336,3.124C0.663,15.53,0,17,0.011,19.129C0.014,19.766,0,20,0,20h16\r\n\tC16,20,15.986,19.766,15.989,19.129z M17,10V7h-2v3h-3v2h3v3h2v-3h3v-2H17z"
+ }
+ }]
+};
+exports.user = user;
+var address = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.799,5.165l-2.375-1.83c-0.135-0.093-0.324-0.176-0.521-0.237C16.705,3.037,16.5,3,16.336,3H9.5l0.801,5h6.035\r\n\tc0.164,0,0.369-0.037,0.566-0.098s0.387-0.145,0.521-0.236l2.375-1.832C19.933,5.743,20,5.622,20,5.5S19.933,5.257,19.799,5.165z\r\n\t M8.5,1h-1C7.224,1,7,1.224,7,1.5V5H3.664c-0.166,0-0.37,0.037-0.567,0.099C2.899,5.159,2.71,5.242,2.576,5.335l-2.375,1.83\r\n\tC0.066,7.256,0,7.378,0,7.5c0,0.121,0.066,0.242,0.201,0.335l2.375,1.832C2.71,9.758,2.899,9.842,3.097,9.902\r\n\tC3.294,9.963,3.498,10,3.664,10H7v8.5C7,18.776,7.224,19,7.5,19h1C8.776,19,9,18.776,9,18.5v-17C9,1.224,8.776,1,8.5,1z"
+ }
+ }]
+};
+exports.address = address;
+var adjust = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,9.199c-0.182,0-0.799,0-0.98,0c-0.553,0-1,0.359-1,0.801c0,0.441,0.447,0.799,1,0.799c0.182,0,0.799,0,0.98,0\r\n\tc0.552,0,1-0.357,1-0.799C20,9.559,19.551,9.199,19,9.199z M10,4.5c-3.051,0-5.5,2.449-5.5,5.5c0,3.051,2.449,5.5,5.5,5.5\r\n\tc3.05,0,5.5-2.449,5.5-5.5C15.5,6.949,13.049,4.5,10,4.5z M10,14c-2.211,0-4-1.791-4-4c0-2.211,1.789-4,4-4V14z M3,10\r\n\tc0-0.441-0.449-0.801-1-0.801c-0.185,0-0.816,0-1,0c-0.553,0-1,0.359-1,0.801c0,0.441,0.447,0.799,1,0.799c0.184,0,0.815,0,1,0\r\n\tC2.551,10.799,3,10.441,3,10z M10,3c0.441,0,0.799-0.447,0.799-1c0-0.184,0-0.816,0-1c0-0.553-0.358-1-0.799-1\r\n\tC9.558,0,9.199,0.447,9.199,1c0,0.184,0,0.816,0,1C9.199,2.553,9.558,3,10,3z M10,17c-0.442,0-0.801,0.447-0.801,1\r\n\tc0,0.184,0,0.816,0,1c0,0.553,0.359,1,0.801,1c0.441,0,0.799-0.447,0.799-1c0-0.184,0-0.816,0-1C10.799,17.447,10.441,17,10,17z\r\n\t M17.365,3.766c0.391-0.391,0.454-0.961,0.142-1.273s-0.883-0.248-1.272,0.143c-0.108,0.107-0.593,0.592-0.7,0.699\r\n\tc-0.391,0.391-0.454,0.961-0.142,1.273s0.883,0.248,1.273-0.143C16.773,4.357,17.257,3.873,17.365,3.766z M3.334,15.533\r\n\tc-0.108,0.109-0.593,0.594-0.7,0.701c-0.391,0.391-0.454,0.959-0.142,1.271s0.883,0.25,1.272-0.141\r\n\tc0.108-0.107,0.593-0.592,0.7-0.699c0.391-0.391,0.454-0.961,0.142-1.274S3.723,15.144,3.334,15.533z M3.765,2.635\r\n\tC3.375,2.244,2.804,2.18,2.492,2.492S2.244,3.375,2.633,3.766c0.108,0.107,0.593,0.592,0.7,0.699\r\n\tc0.391,0.391,0.96,0.455,1.272,0.143s0.249-0.883-0.141-1.273C4.357,3.227,3.873,2.742,3.765,2.635z M15.534,16.666\r\n\tc0.108,0.107,0.593,0.592,0.7,0.699c0.391,0.391,0.96,0.453,1.272,0.143c0.312-0.312,0.249-0.883-0.142-1.273\r\n\tc-0.107-0.107-0.592-0.592-0.699-0.699c-0.391-0.391-0.961-0.455-1.274-0.143S15.143,16.275,15.534,16.666z"
+ }
+ }]
+};
+exports.adjust = adjust;
+var air = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.643,6.357c1.747-1.5,3.127-2.686,6.872-0.57c1.799,1.016,3.25,1.4,4.457,1.398c2.115,0,3.486-1.176,4.671-2.193\r\n\tc0.423-0.363,0.477-1.008,0.122-1.439c-0.357-0.432-0.987-0.488-1.41-0.125c-1.746,1.502-3.127,2.688-6.872,0.57\r\n\tC5.535,1.205,3.217,3.195,1.355,4.795C0.933,5.158,0.879,5.801,1.234,6.234C1.59,6.664,2.22,6.721,2.643,6.357z M17.355,8.535\r\n\tc-1.746,1.5-3.127,2.688-6.872,0.57C5.535,6.31,3.217,8.301,1.355,9.9c-0.422,0.363-0.477,1.008-0.121,1.439\r\n\tc0.355,0.432,0.986,0.488,1.409,0.125C4.39,9.963,5.77,8.777,9.515,10.892c1.799,1.018,3.25,1.4,4.457,1.4\r\n\tc2.115,0,3.486-1.176,4.671-2.195c0.423-0.363,0.477-1.008,0.122-1.438C18.409,8.226,17.778,8.172,17.355,8.535z M17.355,13.641\r\n\tc-1.746,1.502-3.127,2.688-6.872,0.572c-4.948-2.795-7.266-0.805-9.128,0.795c-0.422,0.363-0.477,1.008-0.121,1.439\r\n\tc0.355,0.432,0.986,0.486,1.409,0.123C4.39,15.07,5.77,13.885,9.515,16c1.799,1.016,3.25,1.4,4.457,1.4\r\n\tc2.115,0,3.486-1.178,4.671-2.195c0.423-0.363,0.477-1.008,0.122-1.439C18.409,13.334,17.778,13.279,17.355,13.641z"
+ }
+ }]
+};
+exports.air = air;
+var landing = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.752,16.038c-0.097,0.266-0.822,1.002-6.029-0.878l-5.105-1.843C5.841,12.676,3.34,11.668,2.36,11.1\r\n\tc-0.686-0.397-0.836-1.282-0.836-1.282S1.361,6.862,1.261,6.134c-0.1-0.728,0.095-0.853,0.796-0.492\r\n\tc0.436,0.225,1.865,2.562,2.464,3.567C6.033,9.59,7.383,9.97,8.014,10.158C7.757,8.441,7.274,5.23,7.101,4.225\r\n\tC6.935,3.262,7.651,3.69,7.651,3.69c0.331,0.19,0.983,0.661,1.206,1.002c1.522,2.326,3.672,6.6,3.836,6.928\r\n\tc0.896,0.28,2.277,0.733,3.102,1.03C17.951,13.429,18.882,15.684,18.752,16.038z"
+ }
+ }]
+};
+exports.landing = landing;
+var takeOff = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.87,6.453c0.119,0.257,0.127,1.29-4.884,3.642l-4.913,2.306c-1.71,0.803-4.191,1.859-5.285,2.151\r\n\tc-0.766,0.204-1.497-0.316-1.497-0.316s-2.206-1.975-2.792-2.419c-0.585-0.444-0.535-0.67,0.215-0.91\r\n\tc0.467-0.149,3.13,0.493,4.265,0.78c1.339-0.8,2.562-1.486,3.141-1.798c-1.396-1.033-4.008-2.962-4.841-3.55\r\n\tc-0.799-0.565,0.01-0.768,0.01-0.768c0.368-0.099,1.162-0.228,1.562-0.144c2.721,0.569,7.263,2.071,7.611,2.186\r\n\tc0.832-0.436,2.128-1.092,2.922-1.465C17.459,5.174,19.711,6.111,19.87,6.453z"
+ }
+ }]
+};
+exports.takeOff = takeOff;
+var aircraft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.496,17.414c-0.394-1.096-1.805-4.775-2.39-6.297c-1.103,0.737-2.334,1.435-3.512,1.928\r\n\tc-0.366,1.28-1.094,3.709-1.446,4.033c-0.604,0.557-0.832,0.485-0.925-0.279c-0.093-0.764-0.485-3.236-0.485-3.236\r\n\ts-2.162-1.219-2.84-1.568s-0.667-0.591,0.057-0.974c0.422-0.223,2.927-0.085,4.242,0.005c0.861-0.951,1.931-1.882,2.993-2.679\r\n\tC6.975,7.271,4.04,4.672,3.156,3.923C2.38,3.265,3.235,3.126,3.235,3.126c0.39-0.07,1.222-0.132,1.628-0.009\r\n\tc2.524,0.763,6.442,2.068,7.363,2.376c0.353-0.249,0.737-0.52,1.162-0.821c4.702-3.33,5.887-2.593,6.111-2.27\r\n\ts0.503,1.701-4.199,5.032c-0.425,0.301-0.808,0.573-1.16,0.823c-0.029,0.98-0.157,5.151-0.311,7.811\r\n\tc-0.025,0.428-0.367,1.198-0.565,1.544C13.263,17.612,12.841,18.377,12.496,17.414z"
+ }
+ }]
+};
+exports.aircraft = aircraft;
+var bottom = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,11h-2V3H9v8H7l3,3L13,11z M17.4,15H2.6C2.048,15,2,15.447,2,16c0,0.553,0.048,1,0.6,1H17.4c0.552,0,0.6-0.447,0.6-1\r\n\tC18,15.447,17.952,15,17.4,15z"
+ }
+ }]
+};
+exports.bottom = bottom;
+var horizontalMiddle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8,10L5,7v2H1v2h4v2L8,10z M15,13v-2h4V9h-4V7l-3,3L15,13z M10,18c0.553,0,1-0.049,1-0.6V2.6C11,2.047,10.553,2,10,2\r\n\tC9.448,2,9,2.047,9,2.6V17.4C9,17.951,9.448,18,10,18z"
+ }
+ }]
+};
+exports.horizontalMiddle = horizontalMiddle;
+var left = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6,10l3,3v-2h8V9H9V7L6,10z M4,2C3.447,2,3,2.047,3,2.6V17.4C3,17.951,3.447,18,4,18c0.552,0,1-0.049,1-0.6V2.6\r\n\tC5,2.047,4.552,2,4,2z"
+ }
+ }]
+};
+exports.left = left;
+var right = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,7v2H3v2h8v2l3-3L11,7z M15,2.6V17.4c0,0.551,0.448,0.6,1,0.6c0.553,0,1-0.049,1-0.6V2.6C17,2.047,16.553,2,16,2\r\n\tC15.448,2,15,2.047,15,2.6z"
+ }
+ }]
+};
+exports.right = right;
+var top = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,6L7,9h2v8h2V9h2L10,6z M18,4c0-0.553-0.048-1-0.6-1H2.6C2.048,3,2,3.447,2,4c0,0.553,0.048,1,0.6,1H17.4\r\n\tC17.952,5,18,4.553,18,4z"
+ }
+ }]
+};
+exports.top = top;
+var verticalMiddle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,12l-3,3h2v4h2v-4h2L10,12z M13,5h-2V1H9v4H7l3,3L13,5z M18,10c0-0.553-0.048-1-0.6-1H2.6C2.048,9,2,9.447,2,10\r\n\tc0,0.551,0.048,1,0.6,1H17.4C17.952,11,18,10.551,18,10z"
+ }
+ }]
+};
+exports.verticalMiddle = verticalMiddle;
+var archive = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.981,2H6.018c0,0-0.996,0-0.996,1h9.955C14.977,2,13.981,2,13.981,2z M16.968,5c0-1-0.995-1-0.995-1H4.027\r\n\tc0,0-0.995,0-0.995,1v1h13.936V5z M18.958,6C18.37,5.408,18.37,5.408,18.37,5.408V7H1.63V5.408c0,0,0,0-0.589,0.592\r\n\tC0.452,6.592,0.03,6.75,0.267,8c0.236,1.246,1.379,8.076,1.549,9c0.186,1.014,1.217,1,1.217,1h13.936c0,0,1.03,0.014,1.217-1\r\n\tc0.17-0.924,1.312-7.754,1.549-9C19.97,6.75,19.548,6.592,18.958,6z M14,11.997C14,12.551,13.551,13,12.997,13H7.003\r\n\tC6.449,13,6,12.551,6,11.997V10h1v2h6v-2h1V11.997z"
+ }
+ }]
+};
+exports.archive = archive;
+var graph = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20,2v16H0.32c-0.318,0-0.416-0.209-0.216-0.465l4.469-5.748c0.199-0.256,0.553-0.283,0.789-0.062l1.419,1.334\r\n\tc0.235,0.221,0.572,0.178,0.747-0.096l3.047-4.74c0.175-0.273,0.509-0.312,0.741-0.09l2.171,2.096c0.232,0.225,0.559,0.18,0.724-0.1\r\n\tl5.133-7.785C19.51,2.062,19.75,2,20,2z"
+ }
+ }]
+};
+exports.graph = graph;
+var boldDown = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.5,10H6V3h8v7h3.5L10,17.5L2.5,10z"
+ }
+ }]
+};
+exports.boldDown = boldDown;
+var boldLeft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2.5V6h7v8h-7v3.5L2.5,10L10,2.5z"
+ }
+ }]
+};
+exports.boldLeft = boldLeft;
+var boldRight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.5,10L10,17.5V14H3V6h7V2.5L17.5,10z"
+ }
+ }]
+};
+exports.boldRight = boldRight;
+var boldUp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2.5l7.5,7.5H14v7H6v-7H2.5L10,2.5z"
+ }
+ }]
+};
+exports.boldUp = boldUp;
+var down = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,17.5L3.5,11H7V3h6v8h3.5L10,17.5z"
+ }
+ }]
+};
+exports.down = down;
+var longDown = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,19.25L4.5,14H8V1h4v13h3.5L10,19.25z"
+ }
+ }]
+};
+exports.longDown = longDown;
+var longLeft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.75,10L6,4.5V8h13v4H6v3.5L0.75,10z"
+ }
+ }]
+};
+exports.longLeft = longLeft;
+var longRight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,15.5V12H1V8h13V4.5l5.25,5.5L14,15.5z"
+ }
+ }]
+};
+exports.longRight = longRight;
+var longUp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.75L15.5,6H12v13H8V6H4.5L10,0.75z"
+ }
+ }]
+};
+exports.longUp = longUp;
+var up = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2.5L16.5,9H13v8H7V9H3.5L10,2.5z"
+ }
+ }]
+};
+exports.up = up;
+var withCircleDown = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M12,6H8v4H5.5l4.5,4.5l4.5-4.5H12V6z"
+ }
+ }]
+};
+exports.withCircleDown = withCircleDown;
+var withCircleLeft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,5.5L5.5,10l4.5,4.5V12h4V8h-4V5.5z"
+ }
+ }]
+};
+exports.withCircleLeft = withCircleLeft;
+var withCircleRight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,8H6v4h4v2.5l4.5-4.5L10,5.5V8z"
+ }
+ }]
+};
+exports.withCircleRight = withCircleRight;
+var withCircleUp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,5.5l4.5,4.5H12v4H8v-4H5.5L10,5.5z"
+ }
+ }]
+};
+exports.withCircleUp = withCircleUp;
+var attachment = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.602,19.8c-1.293,0-2.504-0.555-3.378-1.44c-1.695-1.716-2.167-4.711,0.209-7.116c1.391-1.408,6.966-7.053,9.748-9.87\r\n\tc0.988-1,2.245-1.387,3.448-1.06c1.183,0.32,2.151,1.301,2.468,2.498c0.322,1.22-0.059,2.493-1.046,3.493l-9.323,9.44\r\n\tc-0.532,0.539-1.134,0.858-1.738,0.922c-0.599,0.064-1.17-0.13-1.57-0.535c-0.724-0.736-0.828-2.117,0.378-3.337l6.548-6.63\r\n\tc0.269-0.272,0.705-0.272,0.974,0s0.269,0.714,0,0.986l-6.549,6.631c-0.566,0.572-0.618,1.119-0.377,1.364\r\n\tC5.5,15.252,5.66,15.301,5.845,15.28c0.283-0.029,0.606-0.216,0.909-0.521l9.323-9.439c0.64-0.648,0.885-1.41,0.69-2.145\r\n\tc-0.192-0.725-0.778-1.318-1.493-1.513c-0.726-0.197-1.48,0.052-2.12,0.7c-2.782,2.818-8.356,8.462-9.748,9.87\r\n\tc-1.816,1.839-1.381,3.956-0.209,5.143c1.173,1.187,3.262,1.629,5.079-0.212l9.748-9.87c0.269-0.272,0.705-0.272,0.974,0\r\n\tc0.269,0.272,0.269,0.714,0,0.987L9.25,18.15C8.101,19.312,6.814,19.8,5.602,19.8z"
+ }
+ }]
+};
+exports.attachment = attachment;
+var ribbon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.574,16.338c-0.757-1.051-2.851-3.824-4.57-6.106c0.696-0.999,1.251-1.815,1.505-2.242\r\n\tc1.545-2.594,0.874-4.26,0.022-5.67C12.677,0.909,12.542,0.094,10,0.094c-2.543,0-2.678,0.815-3.531,2.227\r\n\tC5.615,3.731,4.945,5.397,6.49,7.991c0.254,0.426,0.809,1.243,1.506,2.242c-1.72,2.281-3.814,5.055-4.571,6.106\r\n\tc-0.176,0.244-0.16,0.664,0.009,1.082c0.13,0.322,0.63,1.762,0.752,2.064c0.156,0.389,0.664,0.67,1.082,0.092\r\n\tc0.241-0.334,2.582-3.525,4.732-6.522c2.149,2.996,4.491,6.188,4.732,6.522c0.417,0.578,0.926,0.297,1.082-0.092\r\n\tc0.122-0.303,0.622-1.742,0.752-2.064C16.733,17.002,16.75,16.582,16.574,16.338z M9.634,7.063C8.566,5.579,7.802,3.852,7.802,3.852\r\n\tS8.222,3.094,10,3.094c1.778,0,2.198,0.758,2.198,0.758s-0.766,1.727-1.833,3.211C10.277,7.184,10.147,7.36,10,7.56\r\n\tC9.851,7.36,9.721,7.184,9.634,7.063z"
+ }
+ }]
+};
+exports.ribbon = ribbon;
+var inTime = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,1.799c-4.445,0-8.061,3.562-8.169,7.996V10H0.459l3.594,3.894L7.547,10H4.875V9.795C4.982,6.492,7.683,3.85,11,3.85\r\n\tc3.386,0,6.131,2.754,6.131,6.15c0,3.396-2.745,6.15-6.131,6.15c-1.357,0-2.611-0.445-3.627-1.193l-1.406,1.504\r\n\tc1.388,1.088,3.135,1.738,5.033,1.738c4.515,0,8.174-3.67,8.174-8.199S15.515,1.799,11,1.799z M10,5v5\r\n\tc0,0.13,0.027,0.26,0.077,0.382c0.051,0.122,0.124,0.233,0.216,0.325l3.2,3.2c0.283-0.183,0.55-0.389,0.787-0.628L12,11V5H10z"
+ }
+ }]
+};
+exports.inTime = inTime;
+var back = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,7v6c0,1.103-0.896,2-2,2H3v-3h13V8H5v2L1,6.5L5,3v2h12C18.104,5,19,5.896,19,7z"
+ }
+ }]
+};
+exports.back = back;
+var battery = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.408,10c0-2.766,1.277-4.32,2.277-4.32c0.363,0,1.315,0,1.315,0C18.332,4.621,17.779,4,15.342,4H5.334\r\n\tC1.6,4,0,7.441,0,10c0,2.559,1.6,6,5.334,6h10.008c2.438,0,2.99-0.621,3.658-1.68c0,0-0.315,0-1.315,0S15.408,12.766,15.408,10z\r\n\t M12.688,11.795c-0.164,0.25-0.676,0.016-0.676,0.016l-2.957-1.338c0,0-0.264,0.67-0.467,1.141\r\n\tc-0.205,0.471-0.361,1.004-1.209,0.408c-0.849-0.598-3.581-3.25-3.581-3.25S3.453,8.488,3.625,8.221\r\n\tc0.163-0.252,0.676-0.016,0.676-0.016l2.956,1.336c0,0,0.265-0.668,0.468-1.139C7.93,7.932,8.086,7.396,8.934,7.994\r\n\tc0.849,0.596,3.58,3.25,3.58,3.25S12.859,11.527,12.688,11.795z M18.874,7.928h-0.749c-0.559,0-1.105,0.754-1.105,1.979\r\n\tc0,1.227,0.547,1.98,1.105,1.98h0.749c0.56,0,1.126-0.754,1.126-1.98C20,8.682,19.434,7.928,18.874,7.928z"
+ }
+ }]
+};
+exports.battery = battery;
+var note = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,1l-0.002,13c0,1.243-1.301,3-3.748,3C12.007,17,11,16.347,11,15.125c0-1.589,1.445-2.55,3-2.55\r\n\tc0.432,0,0.754,0.059,1,0.123V5.364L8,6.637L8,16H7.998c0,1.243-1.301,3-3.748,3C3.007,19,2,18.347,2,17.125\r\n\tc0-1.589,1.445-2.55,3-2.55c0.432,0,0.754,0.059,1,0.123V3L17,1z"
+ }
+ }]
+};
+exports.note = note;
+var bell = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.65,8.512c-2.28-4.907-3.466-6.771-7.191-6.693C6.132,1.846,6.45,0.857,5.438,1.232C4.428,1.607,5.295,2.156,4.261,3.005\r\n\tc-2.902,2.383-2.635,4.587-1.289,9.84c0.567,2.213-1.367,2.321-0.602,4.465c0.559,1.564,4.679,2.219,9.025,0.607\r\n\tc4.347-1.613,7.086-4.814,6.527-6.378C17.157,9.394,15.611,10.578,14.65,8.512z M10.924,16.595c-3.882,1.44-7.072,0.594-7.207,0.217\r\n\tc-0.232-0.65,1.253-2.816,5.691-4.463c4.438-1.647,6.915-1.036,7.174-0.311C16.735,12.467,14.807,15.154,10.924,16.595z\r\n\t M9.676,13.101c-2.029,0.753-3.439,1.614-4.353,2.389c0.643,0.584,1.847,0.726,3.046,0.281c1.527-0.565,2.466-1.866,2.095-2.904\r\n\tc-0.005-0.013-0.011-0.023-0.016-0.036C10.197,12.913,9.94,13.002,9.676,13.101z"
+ }
+ }]
+};
+exports.bell = bell;
+var blackboard = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M2.539,20H6l1.406-3.698L4.44,15.298L2.539,20z M12.594,16.302L14,20h3.461\r\n\tl-1.901-4.702L12.594,16.302z M18,2h-6.5L11,0H9L8.5,2H2C1.447,2,1,2.447,1,3v11c0,0.552,0.447,1,1,1h16c0.553,0,1-0.448,1-1V3\r\n\tC19,2.448,18.553,2,18,2z"
+ }
+ }]
+};
+exports.blackboard = blackboard;
+var block = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M2.399,10c0-4.197,3.402-7.6,7.6-7.6c1.829,0,3.506,0.647,4.817,1.723L4.122,14.817\r\n\tC3.046,13.505,2.399,11.829,2.399,10z M9.999,17.599c-1.828,0-3.505-0.646-4.815-1.722L15.878,5.184\r\n\tC16.953,6.496,17.6,8.171,17.6,10C17.6,14.197,14.196,17.599,9.999,17.599z"
+ }
+ }]
+};
+exports.block = block;
+var book = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,5.95v10.351c0,0.522-0.452,0.771-1,1.16c-0.44,0.313-1-0.075-1-0.587c0,0,0-9.905,0-10.114\r\n\tc0-0.211-0.074-0.412-0.314-0.535c-0.24-0.123-7.738-4.065-7.738-4.065C6.827,2.115,6.299,1.782,5.595,2.144\r\n\tC4.926,2.488,4.562,2.862,4.469,3.038l8.18,4.482C12.866,7.634,13,7.81,13,8.036v10.802c0,0.23-0.142,0.476-0.369,0.585\r\n\tc-0.104,0.052-0.219,0.077-0.333,0.077c-0.135,0-0.271-0.033-0.386-0.104c-0.215-0.131-7.774-4.766-8.273-5.067\r\n\tc-0.24-0.144-0.521-0.439-0.527-0.658L3,3.385c0-0.198-0.023-0.547,0.289-1.032c0.697-1.084,3.129-2.317,4.36-1.678l8.999,4.555\r\n\tC16.865,5.342,17,5.566,17,5.95z"
+ }
+ }]
+};
+exports.book = book;
+var bookmark = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,2v17l-4-4l-4,4V2c0-0.553,0.585-1.02,1-1h6C13.689,0.98,14,1.447,14,2z"
+ }
+ }]
+};
+exports.bookmark = bookmark;
+var bookmarks = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,0h-4c-0.553,0-1,0.447-1,1l0.023,0.222c1.102,0,2,0.897,2,2v11.359L13,13.4l3,3.6V1C16,0.447,15.553,0,15,0z M9.023,3H5\r\n\tC4.447,3,4,3.447,4,4v16l3-3.6l3,3.6V4C10,3.447,9.576,3,9.023,3z"
+ }
+ }]
+};
+exports.bookmarks = bookmarks;
+var bowl = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.949,7.472c-2.176,2.902-4.095,3.002-7.046,3.152H9.802c-3.591-0.002-6.138-1.336-6.138-1.832\r\n\tC3.662,8.321,5.962,7.095,9.269,6.973l0.59-1.473c-0.019,0-0.037-0.002-0.057-0.002c-4.908,0-7.791,1.562-7.791,3.051v2\r\n\tc0,0.918,0.582,8.949,7.582,8.949s8-8.031,8-8.949v-2c0-0.391-0.201-0.787-0.584-1.158L16.949,7.472z M17.589,2.702\r\n\tc-0.441-0.33-1.069-0.242-1.399,0.201l-3.608,4.809l2.336-5.838c0.206-0.512-0.044-1.094-0.557-1.301\r\n\tc-0.508-0.205-1.096,0.043-1.3,0.559L9.802,9.274c2.882-0.147,4.277-0.227,6.067-2.611c1.789-2.387,1.919-2.561,1.919-2.561\r\n\tC18.12,3.661,18.031,3.034,17.589,2.702z"
+ }
+ }]
+};
+exports.bowl = bowl;
+var box = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.399,2H1.6C1.268,2,1,2.267,1,2.6V5h18V2.6C19,2.267,18.73,2,18.399,2z M2,16.6c0,0.77,0.629,1.4,1.399,1.4h13.2\r\n\tc0.77,0,1.4-0.631,1.4-1.4V6H2V16.6z M7,8h6v2H7V8z"
+ }
+ }]
+};
+exports.box = box;
+var briefcase = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9,10h2v2h9c0,0-0.149-4.459-0.2-5.854C19.75,4.82,19.275,4,17.8,4h-3.208c-0.497-0.938-1.032-1.945-1.197-2.256\r\n\tC13.064,1.121,12.951,1,12.216,1H7.783C7.048,1,6.936,1.121,6.604,1.744C6.439,2.055,5.904,3.062,5.408,4H2.199\r\n\tc-1.476,0-1.945,0.82-2,2.146C0.145,7.473,0,12,0,12h9V10z M7.649,2.916C7.879,2.484,7.957,2.4,8.466,2.4h3.067\r\n\tc0.509,0,0.588,0.084,0.816,0.516c0.086,0.16,0.318,0.6,0.575,1.084H7.074C7.331,3.516,7.563,3.076,7.649,2.916z M11,15H9v-2H0.5\r\n\tc0,0,0.124,1.797,0.199,3.322C0.73,16.955,0.917,18,2.499,18H17.5c1.582,0,1.765-1.047,1.8-1.678C19.387,14.754,19.5,13,19.5,13H11\r\n\tV15z"
+ }
+ }]
+};
+exports.briefcase = briefcase;
+var browser = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,2H2C0.9,2,0,2.9,0,4v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M4.5,3.75\r\n\tc0.414,0,0.75,0.336,0.75,0.75c0,0.414-0.336,0.75-0.75,0.75c-0.414,0-0.75-0.336-0.75-0.75C3.75,4.086,4.086,3.75,4.5,3.75z\r\n\t M1.75,4.5c0-0.414,0.336-0.75,0.75-0.75c0.414,0,0.75,0.336,0.75,0.75c0,0.414-0.336,0.75-0.75,0.75\r\n\tC2.086,5.25,1.75,4.914,1.75,4.5z M18,16H2V7h16V16z M18,5H6V4h12.019L18,5z"
+ }
+ }]
+};
+exports.browser = browser;
+var brush = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.763,13.563c-1.515,1.488-0.235,3.016-2.247,5.279c-0.908,1.023,3.738,0.711,6.039-1.551\r\n\tc0.977-0.961,0.701-2.359-0.346-3.389C5.162,12.874,3.739,12.602,2.763,13.563z M19.539,0.659C18.763-0.105,10.16,6.788,7.6,9.305\r\n\tc-1.271,1.25-1.695,1.92-2.084,2.42c-0.17,0.219,0.055,0.285,0.154,0.336c0.504,0.258,0.856,0.496,1.311,0.943\r\n\tc0.456,0.447,0.699,0.793,0.959,1.289c0.053,0.098,0.121,0.318,0.342,0.152c0.51-0.383,1.191-0.801,2.462-2.049\r\n\tC13.305,9.88,20.317,1.422,19.539,0.659z"
+ }
+ }]
+};
+exports.brush = brush;
+var bucket = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,1C6.092,1,3.002,2.592,3.21,3.95c0.06,0.389,0.225,1.945,0.434,3.273c-2.405,0.934-3.202,2.449-3.095,3.684\r\n\tc0.127,1.461,1.441,3.025,4.328,3.295c1.648,0.154,3.631-0.75,4.916-2.295C9.671,11.7,9.6,11.457,9.6,11.2\r\n\tc0-0.774,0.627-1.4,1.4-1.4c0.774,0,1.4,0.627,1.4,1.4c0,0.762-0.61,1.381-1.369,1.398c-1.529,1.973-3.858,3.164-6.064,3.025\r\n\tc0.051,0.324,0.07,0.947,0.096,1.113C5.153,17.315,7.41,18.996,11,19c3.59-0.004,5.847-1.685,5.938-2.263\r\n\tC17.026,16.16,18.579,5.328,18.79,3.95C18.998,2.592,15.907,1,11,1z M1.943,10.785c-0.055-0.643,0.455-1.498,1.924-2.139\r\n\tc0.211,1.34,0.441,2.797,0.643,4.074C2.906,12.407,2.012,11.571,1.943,10.785z M11,6.024C7.41,6.022,4.863,4.69,4.863,4.192\r\n\tC4.861,3.698,7.41,2.402,11,2.404c3.59-0.002,6.139,1.294,6.137,1.788C17.137,4.69,14.59,6.022,11,6.024z"
+ }
+ }]
+};
+exports.bucket = bucket;
+var bug = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1C7.7907715,1,6,2.7908325,6,5h8C14,2.7908325,12.2092285,1,10,1z M19,10h-3V7.5031738\r\n\tc0-0.02771-0.0065918-0.0535278-0.0080566-0.0808716l2.2150879-2.21521c0.390625-0.3905029,0.390625-1.0236816,0-1.4141846\r\n\tc-0.3903809-0.390564-1.0236816-0.390564-1.4140625,0l-2.215332,2.21521C14.550293,6.0066528,14.5246582,6,14.4970703,6H5.5029297\r\n\tC5.4753418,6,5.449707,6.0066528,5.4223633,6.0081177l-2.215332-2.21521c-0.3903809-0.390564-1.0236816-0.390564-1.4140625,0\r\n\tc-0.390625,0.3905029-0.390625,1.0236816,0,1.4141846l2.2150879,2.21521C4.0065918,7.449646,4,7.4754639,4,7.5031738V10H1\r\n\tc-0.5522461,0-1,0.4476929-1,1c0,0.5522461,0.4477539,1,1,1h3c0,0.7799683,0.15625,1.520813,0.4272461,2.2037354\r\n\tc-0.0441895,0.0316162-0.0947266,0.0494995-0.1342773,0.0891724l-2.8286133,2.8283691\r\n\tc-0.3903809,0.390564-0.3903809,1.0237427,0,1.4142456c0.390625,0.3905029,1.0239258,0.3905029,1.4143066,0L5.4802246,15.93396\r\n\tC6.3725586,16.9555054,7.6027832,17.6751099,9,17.9100342V8h2v9.9100342\r\n\tc1.3972168-0.2349243,2.6274414-0.9545288,3.5197754-1.9760132l2.6015625,2.6015015\r\n\tc0.3903809,0.3905029,1.0236816,0.3905029,1.4143066,0c0.3903809-0.3905029,0.3903809-1.0236816,0-1.4142456l-2.8286133-2.8283691\r\n\tc-0.0395508-0.0396729-0.0900879-0.0575562-0.1342773-0.0891724C15.84375,13.520813,16,12.7799683,16,12h3\r\n\tc0.5522461,0,1-0.4477539,1-1C20,10.4476929,19.5522461,10,19,10z"
+ }
+ }]
+};
+exports.bug = bug;
+var cake = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.584,6.036c1.952,0,2.591-1.381,1.839-2.843c-0.871-1.693,1.895-3.155,0.521-3.155c-1.301,0-3.736,1.418-4.19,3.183\r\n\tC7.415,4.545,8.05,6.036,9.584,6.036z M14.796,14.987l-0.444-0.383c-0.487-0.42-1.25-0.418-1.735,0l-0.442,0.382\r\n\tc-0.62,0.534-1.397,0.801-2.174,0.801c-0.777,0-1.554-0.267-2.173-0.8l-0.444-0.384c-0.487-0.418-1.249-0.419-1.734,0.001\r\n\tl-0.444,0.383c-1.193,1.028-2.967,1.056-4.204,0.1V19c0,0.552,0.448,1,1,1h16c0.552,0,1-0.448,1-1v-3.912\r\n\tC17.765,16.042,15.991,16.017,14.796,14.987z M10,7c-7.574,0-9,3.361-9,5v0.469l1.164,1.003c0.486,0.421,1.249,0.417,1.735,0\r\n\tl0.444-0.383c1.237-1.065,3.105-1.066,4.345,0l0.444,0.384c0.484,0.417,1.245,0.42,1.735-0.001l0.442-0.382\r\n\tc1.24-1.067,3.107-1.067,4.346-0.001l0.444,0.383c0.487,0.421,1.25,0.417,1.735,0L19,12.469V12C19,10.361,17.574,7,10,7z"
+ }
+ }]
+};
+exports.cake = cake;
+var calculator = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.6,1H5.398C4.629,1,4,1.629,4,2.4V17.6c0,0.77,0.629,1.4,1.398,1.4H14.6c0.769,0,1.4-0.631,1.4-1.4V2.4\r\n\tC16,1.629,15.369,1,14.6,1z M7,12c0.689,0,1.25,0.447,1.25,1S7.689,14,7,14c-0.69,0-1.25-0.447-1.25-1S6.31,12,7,12z M5.75,10\r\n\tc0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1c0,0.553-0.561,1-1.25,1C6.31,11,5.75,10.553,5.75,10z M7,15\r\n\tc0.689,0,1.25,0.447,1.25,1S7.689,17,7,17c-0.69,0-1.25-0.447-1.25-1S6.31,15,7,15z M10,12c0.689,0,1.25,0.447,1.25,1\r\n\ts-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S9.31,12,10,12z M8.75,10c0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1\r\n\tc0,0.553-0.561,1-1.25,1C9.31,11,8.75,10.553,8.75,10z M10,15c0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1\r\n\tS9.31,15,10,15z M13,12c0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S12.31,12,13,12z M11.75,10\r\n\tc0-0.553,0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1c0,0.553-0.561,1-1.25,1C12.31,11,11.75,10.553,11.75,10z M13,15\r\n\tc0.689,0,1.25,0.447,1.25,1s-0.561,1-1.25,1c-0.69,0-1.25-0.447-1.25-1S12.31,15,13,15z M5,7V4h10v3H5z"
+ }
+ }]
+};
+exports.calculator = calculator;
+var calendar = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,3h-1v2h-3V3H7v2H4V3H3C1.899,3,1,3.9,1,5v12c0,1.1,0.899,2,2,2h14c1.1,0,2-0.9,2-2V5C19,3.9,18.1,3,17,3z M17,17H3V9h14\r\n\tV17z M6.5,1h-2v3.5h2V1z M15.5,1h-2v3.5h2V1z"
+ }
+ }]
+};
+exports.calendar = calendar;
+var camera = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,8c-1.657,0-3,1.344-3,3c0,1.656,1.343,3,3,3c1.656,0,3-1.344,3-3C13,9.344,11.656,8,10,8z M18,5h-2.4\r\n\tc-0.33,0-0.686-0.256-0.789-0.57l-0.621-1.861C14.085,2.256,13.731,2,13.4,2H6.6C6.27,2,5.914,2.256,5.811,2.568L5.189,4.43\r\n\tC5.085,4.744,4.73,5,4.4,5H2C0.9,5,0,5.9,0,7v9c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M10,16\r\n\tc-2.762,0-5-2.238-5-5c0-2.762,2.238-5,5-5c2.761,0,5,2.238,5,5C15,13.762,12.761,16,10,16z M17.5,8.2c-0.387,0-0.7-0.314-0.7-0.701\r\n\tc0-0.385,0.313-0.7,0.7-0.7s0.7,0.314,0.7,0.7C18.2,7.886,17.887,8.2,17.5,8.2z"
+ }
+ }]
+};
+exports.camera = camera;
+var ccw = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.685,10h2.372V9.795c0.108-4.434,3.724-7.996,8.169-7.996c4.515,0,8.174,3.672,8.174,8.201s-3.659,8.199-8.174,8.199\r\n\tc-1.898,0-3.645-0.65-5.033-1.738l1.406-1.504c1.016,0.748,2.27,1.193,3.627,1.193c3.386,0,6.131-2.754,6.131-6.15\r\n\tc0-3.396-2.745-6.15-6.131-6.15c-3.317,0-6.018,2.643-6.125,5.945V10h2.672l-3.494,3.894L0.685,10z"
+ }
+ }]
+};
+exports.ccw = ccw;
+var chat = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.8,12.2V6H2C0.9,6,0,6.9,0,8v6c0,1.1,0.9,2,2,2h1v3l3-3h5c1.1,0,2-0.9,2-2v-1.82c-0.064,0.014-0.132,0.021-0.2,0.021h-7\r\n\tV12.2z M18,1H9C7.9,1,7,1.9,7,3v8h7l3,3v-3h1c1.1,0,2-0.899,2-2V3C20,1.9,19.1,1,18,1z"
+ }
+ }]
+};
+exports.chat = chat;
+var check = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.294,16.998c-0.435,0-0.847-0.203-1.111-0.553L3.61,11.724c-0.465-0.613-0.344-1.486,0.27-1.951\r\n\tc0.615-0.467,1.488-0.344,1.953,0.27l2.351,3.104l5.911-9.492c0.407-0.652,1.267-0.852,1.921-0.445\r\n\tc0.653,0.406,0.854,1.266,0.446,1.92L9.478,16.34c-0.242,0.391-0.661,0.635-1.12,0.656C8.336,16.998,8.316,16.998,8.294,16.998z"
+ }
+ }]
+};
+exports.check = check;
+var smallDown = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.418,7.859c0.271-0.268,0.709-0.268,0.978,0c0.27,0.268,0.272,0.701,0,0.969l-3.908,3.83\r\n\tc-0.27,0.268-0.707,0.268-0.979,0l-3.908-3.83c-0.27-0.267-0.27-0.701,0-0.969c0.271-0.268,0.709-0.268,0.978,0L10,11L13.418,7.859z\r\n\t"
+ }
+ }]
+};
+exports.smallDown = smallDown;
+var smallLeft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.141,13.418c0.268,0.271,0.268,0.709,0,0.978c-0.268,0.27-0.701,0.272-0.969,0l-3.83-3.908\r\n\tc-0.268-0.27-0.268-0.707,0-0.979l3.83-3.908c0.267-0.27,0.701-0.27,0.969,0c0.268,0.271,0.268,0.709,0,0.978L9,10L12.141,13.418z"
+ }
+ }]
+};
+exports.smallLeft = smallLeft;
+var smallRight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,10L7.859,6.58c-0.268-0.27-0.268-0.707,0-0.978c0.268-0.27,0.701-0.27,0.969,0l3.83,3.908\r\n\tc0.268,0.271,0.268,0.709,0,0.979l-3.83,3.908c-0.267,0.272-0.701,0.27-0.969,0c-0.268-0.269-0.268-0.707,0-0.978L11,10z"
+ }
+ }]
+};
+exports.smallRight = smallRight;
+var smallUp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.582,12.141c-0.271,0.268-0.709,0.268-0.978,0c-0.269-0.268-0.272-0.701,0-0.969l3.908-3.83\r\n\tc0.27-0.268,0.707-0.268,0.979,0l3.908,3.83c0.27,0.267,0.27,0.701,0,0.969c-0.271,0.268-0.709,0.268-0.979,0L10,9L6.582,12.141z"
+ }
+ }]
+};
+exports.smallUp = smallUp;
+var thinDown = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.418,6.109c0.272-0.268,0.709-0.268,0.979,0c0.27,0.268,0.271,0.701,0,0.969l-7.908,7.83\r\n\tc-0.27,0.268-0.707,0.268-0.979,0l-7.908-7.83c-0.27-0.268-0.27-0.701,0-0.969c0.271-0.268,0.709-0.268,0.979,0L10,13.25\r\n\tL17.418,6.109z"
+ }
+ }]
+};
+exports.thinDown = thinDown;
+var thinLeft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.891,17.418c0.268,0.272,0.268,0.709,0,0.979c-0.268,0.27-0.701,0.271-0.969,0l-7.83-7.908\r\n\tc-0.268-0.27-0.268-0.707,0-0.979l7.83-7.908c0.268-0.27,0.701-0.27,0.969,0c0.268,0.271,0.268,0.709,0,0.979L6.75,10L13.891,17.418\r\n\tz"
+ }
+ }]
+};
+exports.thinLeft = thinLeft;
+var thinRight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.25,10L6.109,2.58c-0.268-0.27-0.268-0.707,0-0.979c0.268-0.27,0.701-0.27,0.969,0l7.83,7.908\r\n\tc0.268,0.271,0.268,0.709,0,0.979l-7.83,7.908c-0.268,0.271-0.701,0.27-0.969,0c-0.268-0.269-0.268-0.707,0-0.979L13.25,10z"
+ }
+ }]
+};
+exports.thinRight = thinRight;
+var thinUp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.582,13.891c-0.272,0.268-0.709,0.268-0.979,0s-0.271-0.701,0-0.969l7.908-7.83c0.27-0.268,0.707-0.268,0.979,0\r\n\tl7.908,7.83c0.27,0.268,0.27,0.701,0,0.969c-0.271,0.268-0.709,0.268-0.978,0L10,6.75L2.582,13.891z"
+ }
+ }]
+};
+exports.thinUp = thinUp;
+var withCross = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z\r\n\t M14.789,13.061l-1.729,1.729L10,11.729l-3.061,3.06l-1.729-1.729L8.272,10L5.211,6.939L6.94,5.211L10,8.271l3.061-3.061\r\n\tl1.729,1.729L11.728,10L14.789,13.061z"
+ }
+ }]
+};
+exports.withCross = withCross;
+var withMinus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z M15,11H5V9\r\n\th10V11z"
+ }
+ }]
+};
+exports.withMinus = withMinus;
+var withPlus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z M15,11h-4\r\n\tv4H9v-4H5V9h4V5h2v4h4V11z"
+ }
+ }]
+};
+exports.withPlus = withPlus;
+var circle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6S5.802,2.4,10,2.4c4.197,0,7.601,3.402,7.601,7.6\r\n\tS14.197,17.599,10,17.599z"
+ }
+ }]
+};
+exports.circle = circle;
+var clapperboard = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M20,3v14c0,0.552-0.447,1-1,1H1c-0.553,0-1-0.448-1-1V3c0-0.553,0.447-1,1-1h1l3,3\r\n\th2.5l-3-3h3l3,3H13l-3-3h3l3,3h2.5l-3-3H19C19.553,2,20,2.448,20,3z"
+ }
+ }]
+};
+exports.clapperboard = clapperboard;
+var computer = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,0H4C2.9,0,2,0.899,2,2v15c0,0.552,0.447,1,1,1v2h14v-2c0.553,0,1-0.448,1-1V2C18,0.899,17.101,0,16,0z M14,15h-4v-1h4\r\n\tV15z M15,11H5V3h10V11z"
+ }
+ }]
+};
+exports.computer = computer;
+var clipboard = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.6,2l-1.2,3H5.6l-1.2-3C3.629,2,3,2.629,3,3.4V18.6c0,0.77,0.629,1.4,1.399,1.4h11.2c0.77,0,1.4-0.631,1.4-1.4V3.4\r\n\tC17,2.629,16.369,2,15.6,2z M13.6,4l0.9-2h-2.181L11.6,0h-3.2L7.68,2H5.5l0.899,2H13.6z"
+ }
+ }]
+};
+exports.clipboard = clipboard;
+var clock = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.601,3.402,7.601,7.6\r\n\tC17.6,14.197,14.196,17.6,9.999,17.6z M11,9.33V4H9v6.245l-3.546,2.048l1,1.732l4.115-2.377C10.807,11.511,11,11.175,11,10.9v-0.168\r\n\tl4.24-4.166c-0.198-0.271-0.411-0.529-0.647-0.766L11,9.33z"
+ }
+ }]
+};
+exports.clock = clock;
+var cloud = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20,11.32c0,2.584-2.144,4.68-4.787,4.68H3.617C1.619,16,0,14.416,0,12.463c0-1.951,1.619-3.535,3.617-3.535\r\n\tc0.146,0,0.288,0.012,0.429,0.027C4.009,8.709,3.989,8.457,3.989,8.199C3.989,5.328,6.37,3,9.309,3c2.407,0,4.439,1.562,5.096,3.707\r\n\tc0.263-0.043,0.532-0.066,0.809-0.066C17.856,6.641,20,8.734,20,11.32z"
+ }
+ }]
+};
+exports.cloud = cloud;
+var code = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.719,14.75c-0.236,0-0.474-0.083-0.664-0.252L-0.005,10l5.341-4.748C5.748,4.887,6.38,4.922,6.747,5.335\r\n\tc0.367,0.413,0.33,1.045-0.083,1.412L3.005,10l3.378,3.002c0.413,0.367,0.45,0.999,0.083,1.412\r\n\tC6.269,14.637,5.994,14.75,5.719,14.75z M14.664,14.748L20.005,10l-5.06-4.498c-0.413-0.367-1.045-0.33-1.411,0.083\r\n\tc-0.367,0.413-0.33,1.045,0.083,1.412L16.995,10l-3.659,3.252c-0.413,0.367-0.45,0.999-0.083,1.412C13.45,14.887,13.725,15,14,15\r\n\tC14.236,15,14.474,14.917,14.664,14.748z M9.986,16.165l2-12c0.091-0.545-0.277-1.06-0.822-1.151\r\n\tc-0.547-0.092-1.061,0.277-1.15,0.822l-2,12c-0.091,0.545,0.277,1.06,0.822,1.151C8.892,16.996,8.946,17,9.001,17\r\n\tC9.481,17,9.905,16.653,9.986,16.165z"
+ }
+ }]
+};
+exports.code = code;
+var cog = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.783,10c0-1.049,0.646-1.875,1.617-2.443c-0.176-0.584-0.407-1.145-0.692-1.672c-1.089,0.285-1.97-0.141-2.711-0.883\r\n\tc-0.741-0.74-0.968-1.621-0.683-2.711c-0.527-0.285-1.088-0.518-1.672-0.691C12.074,2.57,11.047,3.215,10,3.215\r\n\tc-1.048,0-2.074-0.645-2.643-1.615C6.772,1.773,6.213,2.006,5.686,2.291c0.285,1.09,0.059,1.971-0.684,2.711\r\n\tC4.262,5.744,3.381,6.17,2.291,5.885C2.006,6.412,1.774,6.973,1.6,7.557C2.57,8.125,3.215,8.951,3.215,10\r\n\tc0,1.047-0.645,2.074-1.615,2.643c0.175,0.584,0.406,1.144,0.691,1.672c1.09-0.285,1.971-0.059,2.711,0.682\r\n\tc0.741,0.742,0.969,1.623,0.684,2.711c0.527,0.285,1.087,0.518,1.672,0.693c0.568-0.973,1.595-1.617,2.643-1.617\r\n\tc1.047,0,2.074,0.645,2.643,1.617c0.584-0.176,1.144-0.408,1.672-0.693c-0.285-1.088-0.059-1.969,0.683-2.711\r\n\tc0.741-0.74,1.622-1.166,2.711-0.883c0.285-0.527,0.517-1.086,0.692-1.672C17.429,11.873,16.783,11.047,16.783,10z M10,13.652\r\n\tc-2.018,0-3.653-1.635-3.653-3.652c0-2.018,1.636-3.654,3.653-3.654c2.018,0,3.652,1.637,3.652,3.654\r\n\tC13.652,12.018,12.018,13.652,10,13.652z"
+ }
+ }]
+};
+exports.cog = cog;
+var colours = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.179,5.998C2.756,5.648,2.122,5.708,1.771,6.13L0.494,7.669c-0.35,0.423-0.291,1.058,0.131,1.407l7.888,6.542L4.706,7.264\r\n\tL3.179,5.998z M7.013,2.683l-1.82,0.829C4.694,3.74,4.471,4.337,4.698,4.836l4.25,9.325l0.213-9.179L8.339,3.178\r\n\tC8.109,2.678,7.513,2.455,7.013,2.683z M14.211,2.887c0.013-0.55-0.427-1.01-0.976-1.023l-2-0.046\r\n\tc-0.549-0.013-1.009,0.427-1.022,0.976L9.974,13.037l4.19-8.167L14.211,2.887z M19.191,3.837l-1.779-0.913\r\n\tc-0.489-0.25-1.096-0.055-1.347,0.434L9.674,15.814c-0.251,0.489-0.056,1.096,0.434,1.347l1.779,0.913\r\n\tc0.489,0.251,1.095,0.056,1.346-0.433l6.391-12.456C19.875,4.694,19.68,4.088,19.191,3.837z M12.799,16.293\r\n\tc-0.252,0.492-0.855,0.686-1.346,0.434c-0.492-0.252-0.685-0.854-0.433-1.346c0.252-0.492,0.854-0.685,1.346-0.433\r\n\tC12.858,15.199,13.051,15.802,12.799,16.293z"
+ }
+ }]
+};
+exports.colours = colours;
+var compass = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.454,14.548c0,0,4.568-0.627,6.518-2.576s2.576-6.518,2.576-6.518S9.979,6.081,8.03,8.03S5.454,14.548,5.454,14.548z\r\n\t M9.017,9.015c0.818-0.818,2.385-1.4,3.729-1.762c-0.361,1.342-0.945,2.92-1.76,3.732c-0.543,0.545-1.426,0.545-1.969,0\r\n\tC8.472,10.442,8.472,9.56,9.017,9.015z M10.001,0.4C4.698,0.4,0.4,4.698,0.4,10c0,5.303,4.298,9.601,9.601,9.601\r\n\tc5.301,0,9.6-4.298,9.6-9.601C19.601,4.698,15.302,0.4,10.001,0.4z M10,17.6c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6\r\n\tc4.197,0,7.601,3.402,7.601,7.6C17.601,14.197,14.197,17.6,10,17.6z"
+ }
+ }]
+};
+exports.compass = compass;
+var fastBackward = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.959,4.571L10.756,9.52c0,0-0.279,0.201-0.279,0.481s0.279,0.479,0.279,0.479l7.203,4.951\r\n\tC18.531,15.811,19,15.53,19,14.805V5.196C19,4.469,18.531,4.188,17.959,4.571z M8.883,4.571L1.68,9.52c0,0-0.279,0.201-0.279,0.481\r\n\ts0.279,0.479,0.279,0.479l7.203,4.951c0.572,0.381,1.041,0.1,1.041-0.625V5.196C9.924,4.469,9.455,4.188,8.883,4.571z"
+ }
+ }]
+};
+exports.fastBackward = fastBackward;
+var fastForward = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.244,9.52L2.041,4.571C1.469,4.188,1,4.469,1,5.196v9.609c0,0.725,0.469,1.006,1.041,0.625l7.203-4.951\r\n\tc0,0,0.279-0.199,0.279-0.478C9.523,9.721,9.244,9.52,9.244,9.52z M18.6,10.001c0,0.279-0.279,0.478-0.279,0.478l-7.203,4.951\r\n\tc-0.572,0.381-1.041,0.1-1.041-0.625V5.196c0-0.727,0.469-1.008,1.041-0.625L18.32,9.52C18.32,9.52,18.6,9.721,18.6,10.001z"
+ }
+ }]
+};
+exports.fastForward = fastForward;
+var jumpToStart = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.959,4.571L7.756,9.52c0,0-0.279,0.201-0.279,0.481s0.279,0.479,0.279,0.479l7.203,4.951\r\n\tC15.531,15.811,16,15.53,16,14.805V5.196C16,4.469,15.531,4.188,14.959,4.571z M6,4H5C4.447,4,4,4.048,4,4.6V15.4\r\n\tC4,15.952,4.447,16,5,16h1c0.553,0,1-0.048,1-0.6V4.6C7,4.048,6.553,4,6,4z"
+ }
+ }]
+};
+exports.jumpToStart = jumpToStart;
+var next = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.244,9.52L5.041,4.571C4.469,4.188,4,4.469,4,5.196v9.609c0,0.725,0.469,1.006,1.041,0.625l7.203-4.951\r\n\tc0,0,0.279-0.199,0.279-0.478C12.523,9.721,12.244,9.52,12.244,9.52z M14,4h1c0.553,0,1,0.048,1,0.6V15.4c0,0.552-0.447,0.6-1,0.6\r\n\th-1c-0.553,0-1-0.048-1-0.6V4.6C13,4.048,13.447,4,14,4z"
+ }
+ }]
+};
+exports.next = next;
+var paus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,3h-2c-0.553,0-1,0.048-1,0.6V16.4c0,0.552,0.447,0.6,1,0.6h2c0.553,0,1-0.048,1-0.6V3.6C16,3.048,15.553,3,15,3z M7,3H5\r\n\tC4.447,3,4,3.048,4,3.6V16.4C4,16.952,4.447,17,5,17h2c0.553,0,1-0.048,1-0.6V3.6C8,3.048,7.553,3,7,3z"
+ }
+ }]
+};
+exports.paus = paus;
+var play = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,10.001c0,0.299-0.305,0.514-0.305,0.514l-8.561,5.303C5.51,16.227,5,15.924,5,15.149V4.852\r\n\tc0-0.777,0.51-1.078,1.135-0.67l8.561,5.305C14.695,9.487,15,9.702,15,10.001z"
+ }
+ }]
+};
+exports.play = play;
+var record = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,3c-3.866,0-7,3.133-7,7c0,3.865,3.134,7,7,7s7-3.135,7-7C17,6.133,13.866,3,10,3z"
+ }
+ }]
+};
+exports.record = record;
+var stop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,4.995v9.808C16,15.464,15.464,16,14.804,16H4.997C4.446,16,4,15.554,4,15.003V5.196C4,4.536,4.536,4,5.196,4h9.808\r\n\tC15.554,4,16,4.446,16,4.995z"
+ }
+ }]
+};
+exports.stop = stop;
+var volume = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,13.805C19,14.462,18.462,15,17.805,15H1.533c-0.88,0-0.982-0.371-0.229-0.822l16.323-9.055C18.382,4.67,19,5.019,19,5.9\r\n\tV13.805z"
+ }
+ }]
+};
+exports.volume = volume;
+var copy = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,0H3C2.447,0,2,0.447,2,1v12c0,0.552,0.447,1,1,1h5v2h2v-2H8.001v-2H10v-2H8v2H4V2h6v4h2V1C12,0.448,11.553,0,11,0z M8,7\r\n\tv1h2V6H9C8.447,6,8,6.447,8,7z M12,20h2v-2h-2V20z M12,8h2V6h-2V8z M8,19c0,0.552,0.447,1,1,1h1v-2H8V19z M17,6h-1v2h2V7\r\n\tC18,6.448,17.553,6,17,6z M16,20h1c0.553,0,1-0.448,1-1v-1h-2V20z M16,12h2v-2h-2V12z M16,16h2v-2h-2V16z"
+ }
+ }]
+};
+exports.copy = copy;
+var commonsAttribution = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.6,7.6v3.9h-1.1v4.6h-3v-4.6H7.4V7.6C7.4,7.3,7.7,7,8,7H12C12.3,7,12.6,7.3,12.6,7.6z M10,6.5c0.7,0,1.3-0.6,1.3-1.3\r\n\tc0-0.7-0.6-1.3-1.3-1.3c-0.7,0-1.3,0.6-1.3,1.3C8.7,5.9,9.3,6.5,10,6.5z M19.6,10c0,2.7-0.9,4.9-2.7,6.7c-1.9,1.9-4.2,2.9-6.9,2.9\r\n\tc-2.6,0-4.9-0.9-6.8-2.8c-1.9-1.9-2.8-4.1-2.8-6.8c0-2.6,0.9-4.9,2.8-6.8C5.1,1.3,7.3,0.4,10,0.4c2.7,0,5,0.9,6.8,2.8\r\n\tC18.7,5,19.6,7.3,19.6,10z M17.9,10c0-2.2-0.8-4-2.3-5.6C14,2.9,12.2,2.1,10,2.1c-2.2,0-4,0.8-5.5,2.3C2.9,6,2.1,7.9,2.1,10\r\n\tc0,2.1,0.8,4,2.3,5.5s3.4,2.3,5.6,2.3c2.1,0,4-0.8,5.6-2.4C17.1,14,17.9,12.2,17.9,10z"
+ }
+ }]
+};
+exports.commonsAttribution = commonsAttribution;
+var commonsNoderivs = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1s4,0.8,5.6,2.3\r\n\tc1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M6.6,10.8h7v1.7h-7V10.8z M6.6,7.7h7v1.7h-7V7.7z"
+ }
+ }]
+};
+exports.commonsNoderivs = commonsNoderivs;
+var commonsNoncommercialEu = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-0.9,0.1-1.8,0.4-2.6l2.5,1.1H4.9v1.1h0.9\r\n\tc0,0.2,0,0.3,0,0.5v0.3H4.9v1.1h1c0.1,0.9,0.5,1.5,0.9,2.1c0.9,1.2,2.3,1.8,3.9,1.8c1,0,2-0.3,2.5-0.6l-0.4-1.8\r\n\tc-0.3,0.2-1.1,0.4-1.8,0.4c-0.8,0-1.6-0.2-2.1-0.8c-0.2-0.3-0.4-0.6-0.5-1.1H12l5,2.2C16.6,14.4,16.1,15,15.6,15.5z M9.3,10.5\r\n\tL9.3,10.5L9.3,10.5L9.3,10.5z M12.4,9.7h0.1V8.6H9.8L8.7,8.1C8.8,7.9,8.9,7.7,9,7.5c0.5-0.6,1.2-0.9,2-0.9c0.7,0,1.4,0.2,1.8,0.4\r\n\tl0.5-1.8c-0.6-0.3-1.4-0.5-2.4-0.5C9.3,4.7,8,5.3,7.1,6.4C6.9,6.6,6.7,6.9,6.6,7.1L3.4,5.8c0.3-0.5,0.7-0.9,1.1-1.3\r\n\tC6,2.9,7.8,2.1,10,2.1c2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6c0,0.7-0.1,1.4-0.2,2L12.4,9.7z"
+ }
+ }]
+};
+exports.commonsNoncommercialEu = commonsNoncommercialEu;
+var commonsNoncommercialUs = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10s0.9,4.9,2.8,6.8c1.9,1.9,4.1,2.8,6.8,2.8\r\n\tc2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7S18.7,5,16.8,3.2z M15.6,15.5c-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3\r\n\tC2.9,14,2.1,12.1,2.1,10c0-0.9,0.1-1.8,0.4-2.6l4.9,2.2c0.5,0.2,1,0.4,1.5,0.7l1.1,0.5l0.9,0.4c0.2,0.1,0.3,0.3,0.3,0.6\r\n\tc0,0.7-0.6,1-1.2,1c-0.9,0-1.5-0.3-2.1-0.9l-1.3,1.3c0.8,0.7,1.8,1.1,2.9,1.1v1.5h1.1v-1.5c1.3-0.1,2.4-0.9,2.6-2.1l3.6,1.6\r\n\tC16.6,14.4,16.1,15,15.6,15.5z M12.7,9.9c-0.5-0.2-1-0.4-1.5-0.7l-0.8-0.4L9.1,8.3C9.1,8.2,9,8.1,9,8c0-0.6,0.7-0.7,1.2-0.7\r\n\tc0.6,0,1.2,0.2,1.6,0.6l1.3-1.3c-0.8-0.6-1.7-0.8-2.4-0.9V4.2H9.6v1.5C8.4,5.7,7.4,6.3,7.1,7.4L3.4,5.7c0.3-0.5,0.7-0.9,1.1-1.3\r\n\tC6,2.9,7.8,2.1,10,2.1c2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6c0,0.7-0.1,1.4-0.2,2.1L12.7,9.9z"
+ }
+ }]
+};
+exports.commonsNoncommercialUs = commonsNoncommercialUs;
+var commonsPublicDomain = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M8.1,7.3H5.5v5.3h1.3v-1.7h1c1.8,0,2.2-1.1,2.2-1.8\r\n\tC10.1,8,9.6,7.3,8.1,7.3z M7.9,9.9H6.8V8.3h1.1c0.6,0,0.9,0.3,0.9,0.8C8.8,9.5,8.5,9.9,7.9,9.9z M12.5,7.3h-2.1v5.3h2.1\r\n\tc1.6,0,2.7-0.8,2.7-2.7C15.2,8.1,14.1,7.3,12.5,7.3z M12.5,11.5h-0.8V8.4h0.8c1,0,1.4,0.7,1.4,1.5C13.9,10.8,13.5,11.5,12.5,11.5z"
+ }
+ }]
+};
+exports.commonsPublicDomain = commonsPublicDomain;
+var commonsRemix = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M16.3,10.2l-1.9-0.8V7L8.5,4.6L5.9,5.7v2.7l0,0l-2.3,1\r\n\tv2.5l2.5,1.1l2.5-1L8.7,12l5,2.1l0.1,0l0.1,0l2.3-1l0.2-0.1v-2.7L16.3,10.2z M13.6,13.3L13.6,13.3L13.6,13.3l-4.4-1.8V9.8l4.4,1.8\r\n\tv0.1l0,0V13.3z M13.8,11.1l-1.4-0.6L14,9.9l1.4,0.6L13.8,11.1z M15.9,12.6l-1.7,0.7v-1.7l1.7-0.7V12.6z"
+ }
+ }]
+};
+exports.commonsRemix = commonsRemix;
+var commonsShare = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10c0,2.6,0.9,4.9,2.8,6.8\r\n\tc1.9,1.9,4.1,2.8,6.8,2.8c2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7C19.6,7.3,18.7,5,16.8,3.2z M15.6,15.5\r\n\tc-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3C2.9,14,2.1,12.1,2.1,10c0-2.1,0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1\r\n\tc2.2,0,4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z M13.9,7.2h-2.1V5.2c0-0.3-0.2-0.5-0.5-0.5H6.1\r\n\tc0,0,0,0,0,0c-0.3,0-0.5,0.3-0.5,0.5v7.1c0,0.3,0.2,0.5,0.5,0.5h2.1v2.1c0,0.3,0.2,0.5,0.5,0.5h5.2c0.3,0,0.5-0.2,0.5-0.5V7.8\r\n\tC14.5,7.5,14.2,7.2,13.9,7.2z M8.6,7.2c-0.3,0-0.5,0.3-0.5,0.5v3.9H6.6v-6h4.2v1.6H8.6C8.7,7.2,8.7,7.2,8.6,7.2z M13.4,14.3H9.2v-6\r\n\th4.2V14.3z"
+ }
+ }]
+};
+exports.commonsShare = commonsShare;
+var commonsSharealike = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.8,3.2C15,1.3,12.7,0.4,10,0.4c-2.7,0-4.9,0.9-6.8,2.8C1.3,5.1,0.4,7.4,0.4,10s0.9,4.9,2.8,6.8c1.9,1.9,4.1,2.8,6.8,2.8\r\n\tc2.6,0,4.9-1,6.9-2.9c1.8-1.8,2.7-4.1,2.7-6.7S18.7,5,16.8,3.2z M15.6,15.5c-1.6,1.6-3.5,2.4-5.6,2.4c-2.1,0-4-0.8-5.6-2.3\r\n\tC2.9,14,2.1,12.1,2.1,10s0.8-4,2.4-5.6C6,2.9,7.8,2.1,10,2.1s4,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.6C17.9,12.2,17.1,14,15.6,15.5z\r\n\t M14.9,10.1c0,2.9-2,5.1-5,5.1c-2.1,0-3.9-1.3-4.2-3.8h2.4c0.1,1.3,0.9,1.7,2.1,1.7c1.4,0,2.3-1.3,2.3-3.2c0-2-0.8-3.1-2.2-3.1\r\n\tc-1.1,0-2,0.4-2.2,1.7l0.7,0l-1.9,1.9L5,8.6l0.8,0c0.4-2.4,2.1-3.7,4.2-3.7C13,4.9,14.9,7.2,14.9,10.1z"
+ }
+ }]
+};
+exports.commonsSharealike = commonsSharealike;
+var commons = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.8,10.8l1.1,0.6c-0.2,0.4-0.6,0.8-1,1.1c-0.4,0.3-0.9,0.4-1.4,0.4c-0.8,0-1.5-0.2-2-0.8C5,11.6,4.8,10.9,4.8,10\r\n\tc0-0.9,0.3-1.6,0.8-2.1C6,7.4,6.7,7.1,7.5,7.1c1.1,0,2,0.4,2.4,1.3L8.7,9.1C8.5,8.8,8.4,8.6,8.2,8.5S7.8,8.4,7.7,8.4\r\n\tc-0.8,0-1.2,0.5-1.2,1.6c0,0.5,0.1,0.9,0.3,1.2c0.2,0.3,0.5,0.4,0.9,0.4C8.2,11.6,8.6,11.4,8.8,10.8z M13,11.6\r\n\tc-0.4,0-0.7-0.1-0.9-0.4c-0.2-0.3-0.3-0.7-0.3-1.2c0-1.1,0.4-1.6,1.2-1.6c0.2,0,0.4,0.1,0.5,0.2c0.2,0.1,0.4,0.3,0.5,0.6l1.2-0.6\r\n\tc-0.5-0.9-1.3-1.3-2.4-1.3c-0.8,0-1.4,0.3-1.9,0.8c-0.5,0.5-0.8,1.2-0.8,2.1c0,0.9,0.2,1.6,0.7,2.1c0.5,0.5,1.2,0.8,2,0.8\r\n\tc0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.8-0.6,1-1.1l-1.2-0.6C13.9,11.4,13.5,11.6,13,11.6z M19.6,10c0,2.7-0.9,4.9-2.7,6.7\r\n\tc-1.9,1.9-4.2,2.9-6.9,2.9c-2.6,0-4.9-0.9-6.8-2.8c-1.9-1.9-2.8-4.1-2.8-6.8c0-2.6,0.9-4.9,2.8-6.8C5.1,1.3,7.3,0.4,10,0.4\r\n\tc2.7,0,5,0.9,6.8,2.8C18.7,5,19.6,7.3,19.6,10z M17.9,10c0-2.2-0.8-4-2.3-5.6C14,2.9,12.2,2.1,10,2.1c-2.2,0-4,0.8-5.5,2.3\r\n\tC2.9,6,2.1,7.9,2.1,10c0,2.1,0.8,4,2.3,5.5c1.6,1.6,3.4,2.3,5.6,2.3c2.1,0,4-0.8,5.6-2.4C17.1,14,17.9,12.2,17.9,10z"
+ }
+ }]
+};
+exports.commons = commons;
+var card = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,3H2C0.899,3,0,3.9,0,5v10c0,1.1,0.899,2,2,2h16c1.1,0,2-0.9,2-2V5C20,3.9,19.1,3,18,3z M18,15H2V9h16V15z M18,6H2V5h16\r\n\tV6z M4,11.1v0.6h0.6v-0.6H4z M7.6,12.299V12.9h1.2v-0.601h0.6v-0.6H10v-0.6H8.8v0.6H8.199v0.6H7.6z M10,12.9v-0.601H9.399V12.9H10z\r\n\t M7,12.9v-0.601H5.8V12.9H7z M7.6,11.699h0.6v-0.6H7v1.199h0.6V11.699z M5.199,12.299H5.8v-0.6h0.6v-0.6h-1.2v0.6H4.6v0.6H4V12.9\r\n\th1.199V12.299z"
+ }
+ }]
+};
+exports.card = card;
+var credit = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,16.755V19H9v-2.143c-1.712-0.1-3.066-0.589-4.241-1.797l1.718-1.74c0.859,0.87,2.023,1.16,3.282,1.16\r\n\tc1.565,0,2.405-0.599,2.405-1.702c0-0.483-0.133-0.889-0.42-1.16c-0.267-0.251-0.572-0.387-1.202-0.483L8.9,10.903\r\n\tc-1.164-0.174-2.022-0.541-2.634-1.141C5.618,9.105,5.293,8.216,5.293,7.055c0-2.155,1.382-3.743,3.707-4.1V1h2v1.932\r\n\tc1.382,0.145,2.465,0.62,3.415,1.551l-1.679,1.682c-0.859-0.832-1.889-0.947-2.787-0.947c-1.412,0-2.099,0.792-2.099,1.74\r\n\tc0,0.348,0.115,0.716,0.401,0.986c0.267,0.252,0.706,0.464,1.26,0.541l1.602,0.232c1.241,0.174,2.023,0.522,2.596,1.063\r\n\tc0.726,0.696,1.05,1.702,1.05,2.92C14.759,14.95,13.192,16.362,11,16.755z"
+ }
+ }]
+};
+exports.credit = credit;
+var crop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6,14V1H4v3H1v2h3v8c0,1.0996094,0.8989258,2,2,2h8v3h2v-3h3v-2H6z M14,13h2V6c0-1.0996094-0.8989258-2-2-2H7v2h7V13z"
+ }
+ }]
+};
+exports.crop = crop;
+var cross = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.348,14.849c-0.469,0.469-1.229,0.469-1.697,0L10,11.819l-2.651,3.029c-0.469,0.469-1.229,0.469-1.697,0\r\n\tc-0.469-0.469-0.469-1.229,0-1.697l2.758-3.15L5.651,6.849c-0.469-0.469-0.469-1.228,0-1.697c0.469-0.469,1.228-0.469,1.697,0\r\n\tL10,8.183l2.651-3.031c0.469-0.469,1.228-0.469,1.697,0c0.469,0.469,0.469,1.229,0,1.697l-2.758,3.152l2.758,3.15\r\n\tC14.817,13.62,14.817,14.38,14.348,14.849z"
+ }
+ }]
+};
+exports.cross = cross;
+var cup = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1C5.721,1,3.06,2.41,3.205,3.555l1.442,13.467C4.705,17.482,6.868,18.998,10,19c3.131-0.002,5.295-1.518,5.351-1.979\r\n\tl1.442-13.467C16.938,2.41,14.279,1,10,1z M10,5.291C6.868,5.289,4.647,4.174,4.647,3.756C4.646,3.342,6.869,2.225,10,2.227\r\n\tc3.131-0.002,5.354,1.115,5.351,1.529C15.351,4.174,13.131,5.289,10,5.291z"
+ }
+ }]
+};
+exports.cup = cup;
+var cw = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.315,10h-2.372V9.795c-0.108-4.434-3.724-7.996-8.169-7.996C4.259,1.799,0.6,5.471,0.6,10s3.659,8.199,8.174,8.199\r\n\tc1.898,0,3.645-0.65,5.033-1.738l-1.406-1.504c-1.016,0.748-2.27,1.193-3.627,1.193c-3.386,0-6.131-2.754-6.131-6.15\r\n\ts2.745-6.15,6.131-6.15c3.317,0,6.018,2.643,6.125,5.945V10h-2.672l3.494,3.894L19.315,10z"
+ }
+ }]
+};
+exports.cw = cw;
+var cycle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.516,14.224c-2.262-2.432-2.222-6.244,0.128-8.611c0.962-0.969,2.164-1.547,3.414-1.736L8.989,1.8\r\n\tC7.234,2.013,5.537,2.796,4.192,4.151c-3.149,3.17-3.187,8.289-0.123,11.531l-1.741,1.752l5.51,0.301l-0.015-5.834L5.516,14.224z\r\n\t M12.163,2.265l0.015,5.834l2.307-2.322c2.262,2.434,2.222,6.246-0.128,8.611c-0.961,0.969-2.164,1.547-3.414,1.736l0.069,2.076\r\n\tc1.755-0.213,3.452-0.996,4.798-2.35c3.148-3.172,3.186-8.291,0.122-11.531l1.741-1.754L12.163,2.265z"
+ }
+ }]
+};
+exports.cycle = cycle;
+var database = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.726,12.641c-0.843,1.363-3.535,2.361-6.726,2.361c-3.191,0-5.883-0.998-6.727-2.361C3.095,12.351,3,12.506,3,12.648\r\n\tc0,0.144,0,2.002,0,2.002C3,16.59,6.134,18.6,10,18.6s7-2.01,7-3.949c0,0,0-1.858,0-2.002C17,12.506,16.904,12.351,16.726,12.641z\r\n\t M16.737,7.525c-0.83,1.205-3.532,2.09-6.737,2.09c-3.205,0-5.908-0.885-6.738-2.09C3.091,7.277,3,7.412,3,7.523\r\n\tc0,0.113,0,2.357,0,2.357c0,1.762,3.134,3.189,7,3.189s7-1.428,7-3.189c0,0,0-2.244,0-2.357C17,7.412,16.908,7.277,16.737,7.525z\r\n\t M10,1C6.134,1,3,2.18,3,3.633v1.26c0,1.541,3.134,2.791,7,2.791s7-1.25,7-2.791v-1.26C17,2.18,13.866,1,10,1z"
+ }
+ }]
+};
+exports.database = database;
+var pad = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M6,0H4C3.448,0,3,0.448,3,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1\r\n\tC7,0.448,6.552,0,6,0z M11,0H9C8.448,0,8,0.448,8,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1C12,0.448,11.552,0,11,0z M16,0\r\n\th-2c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1C17,0.448,16.552,0,16,0z M6,5H4C3.448,5,3,5.448,3,6v2\r\n\tc0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V6C7,5.448,6.552,5,6,5z M11,5H9C8.448,5,8,5.448,8,6v2c0,0.552,0.448,1,1,1h2\r\n\tc0.552,0,1-0.448,1-1V6C12,5.448,11.552,5,11,5z M16,5h-2c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V6\r\n\tC17,5.448,16.552,5,16,5z M6,10H4c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C7,10.448,6.552,10,6,10z\r\n\t M11,10H9c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C12,10.448,11.552,10,11,10z M11,16H9\r\n\tc-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C12,16.448,11.552,16,11,16z M16,10h-2c-0.552,0-1,0.448-1,1\r\n\tv2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C17,10.448,16.552,10,16,10z"
+ }
+ }]
+};
+exports.pad = pad;
+var direction = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.06,1.941c-0.586-0.586-1.144-0.033-3.041,0.879C9.944,5.259,1.1,10.216,1.1,10.216L8.699,11.3l1.085,7.599\r\n\tc0,0,4.958-8.843,7.396-13.916C18.092,3.085,18.645,2.527,18.06,1.941z M16.236,3.896l-5.519,10.247l-0.561-4.655L16.236,3.896z"
+ }
+ }]
+};
+exports.direction = direction;
+var landscape = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,3H1C0.448,3,0,3.447,0,4v12c0,0.553,0.448,1,1,1h18c0.552,0,1-0.447,1-1V4C20,3.447,19.553,3,19,3z M18,15H2V5h16V15z"
+ }
+ }]
+};
+exports.landscape = landscape;
+var document = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M15,17H5V3h10V17z"
+ }
+ }]
+};
+exports.document = document;
+var documents = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.398,7.415l-7.444-1.996l-1.303-4.861c-0.109-0.406-0.545-0.642-0.973-0.529L0.602,2.461\r\n\tC0.174,2.575-0.084,2.999,0.025,3.405l3.23,12.051c0.109,0.406,0.544,0.643,0.971,0.527l3.613-0.967l-0.492,1.838\r\n\tc-0.109,0.406,0.149,0.83,0.577,0.943l8.11,2.174c0.428,0.115,0.862-0.121,0.972-0.529l2.97-11.084\r\n\tC20.084,7.952,19.826,7.528,19.398,7.415z M1.633,3.631l7.83-2.096l2.898,10.818l-7.83,2.096L1.633,3.631z M15.678,18.463\r\n\tL8.864,16.6L9.4,14.598l3.901-1.047c0.428-0.113,0.688-0.537,0.578-0.943l-1.508-5.627l5.947,1.631L15.678,18.463z"
+ }
+ }]
+};
+exports.documents = documents;
+var single = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.8,10c0,1.215,0.986,2.2,2.201,2.2S12.2,11.214,12.2,10c0-1.215-0.984-2.199-2.199-2.199S7.8,8.785,7.8,10z"
+ }
+ }]
+};
+exports.single = single;
+var threeHorizontal = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.001,7.8C8.786,7.8,7.8,8.785,7.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,7.8,10.001,7.8z\r\n\t M3.001,7.8C1.786,7.8,0.8,8.785,0.8,10s0.986,2.2,2.201,2.2C4.216,12.2,5.2,11.214,5.2,10S4.216,7.8,3.001,7.8z M17.001,7.8\r\n\tC15.786,7.8,14.8,8.785,14.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S18.216,7.8,17.001,7.8z"
+ }
+ }]
+};
+exports.threeHorizontal = threeHorizontal;
+var threeVertical = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.001,7.8C8.786,7.8,7.8,8.785,7.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,7.8,10.001,7.8z\r\n\t M10.001,5.2C11.216,5.2,12.2,4.214,12.2,3S11.216,0.8,10.001,0.8C8.786,0.8,7.8,1.785,7.8,3S8.786,5.2,10.001,5.2z M10.001,14.8\r\n\tC8.786,14.8,7.8,15.785,7.8,17s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,14.8,10.001,14.8z"
+ }
+ }]
+};
+exports.threeVertical = threeVertical;
+var twoHorizontal = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.001,7.8C12.786,7.8,11.8,8.785,11.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S15.216,7.8,14.001,7.8z\r\n\t M6.001,7.8C4.786,7.8,3.8,8.785,3.8,10s0.986,2.2,2.201,2.2C7.216,12.2,8.2,11.214,8.2,10S7.216,7.8,6.001,7.8z"
+ }
+ }]
+};
+exports.twoHorizontal = twoHorizontal;
+var twoVertical = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.001,8.2C11.216,8.2,12.2,7.214,12.2,6S11.216,3.8,10.001,3.8C8.786,3.8,7.8,4.785,7.8,6S8.786,8.2,10.001,8.2z\r\n\t M10.001,11.8C8.786,11.8,7.8,12.785,7.8,14s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,11.8,10.001,11.8z"
+ }
+ }]
+};
+exports.twoVertical = twoVertical;
+var download = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,7h-3V1H8v6H5l5,5L15,7z M19.338,13.532c-0.21-0.224-1.611-1.723-2.011-2.114C17.062,11.159,16.683,11,16.285,11h-1.757\r\n\tl3.064,2.994h-3.544c-0.102,0-0.194,0.052-0.24,0.133L12.992,16H7.008l-0.816-1.873c-0.046-0.081-0.139-0.133-0.24-0.133H2.408\r\n\tL5.471,11H3.715c-0.397,0-0.776,0.159-1.042,0.418c-0.4,0.392-1.801,1.891-2.011,2.114c-0.489,0.521-0.758,0.936-0.63,1.449\r\n\tl0.561,3.074c0.128,0.514,0.691,0.936,1.252,0.936h16.312c0.561,0,1.124-0.422,1.252-0.936l0.561-3.074\r\n\tC20.096,14.468,19.828,14.053,19.338,13.532z"
+ }
+ }]
+};
+exports.download = download;
+var drink = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.538,2.639C17.932,2.094,18,1,18,1H2c0,0,0.068,1.094,0.462,1.639L9,11v6H7c-2,0-2,2-2,2h10c0,0,0-2-2-2h-2v-6\r\n\tL17.538,2.639z M9.4,6c0-0.885,0.716-1.6,1.6-1.6s1.6,0.715,1.6,1.6c0,0.883-0.716,1.6-1.6,1.6S9.4,6.883,9.4,6z"
+ }
+ }]
+};
+exports.drink = drink;
+var drive = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H5.546C4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927\r\n\tc-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18h14.383c0.755,0,1.399-0.546,1.523-1.291\r\n\tl0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M16.959,15.245C16.887,15.681,16.51,16,16.068,16H3.932\r\n\tc-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867c0.558,0,0.983,0.501,0.891,1.052\r\n\tL16.959,15.245z"
+ }
+ }]
+};
+exports.drive = drive;
+var drop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.203,0.561c-0.027-0.215-0.38-0.215-0.406,0C8.914,7.668,4.399,9.133,4.399,14.073c0,3.053,2.564,5.527,5.601,5.527\r\n\tc3.036,0,5.6-2.475,5.6-5.527C15.6,9.133,11.086,7.668,10.203,0.561z M9.35,8.418C9.291,8.637,9.227,8.862,9.161,9.096\r\n\tc-0.401,1.424-0.856,3.039-0.856,4.906c0,1.012-0.598,1.371-1.156,1.371c-0.639,0-1.156-0.523-1.156-1.166\r\n\tc0-2.207,1.062-3.649,2-4.92c0.295-0.398,0.572-0.775,0.797-1.15C8.893,7.965,9.17,7.973,9.296,8.143\r\n\tC9.355,8.223,9.375,8.325,9.35,8.418z"
+ }
+ }]
+};
+exports.drop = drop;
+var edit = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.561,2.439c-1.442-1.443-2.525-1.227-2.525-1.227L8.984,7.264L2.21,14.037L1.2,18.799l4.763-1.01l6.774-6.771\r\n\tl6.052-6.052C18.788,4.966,19.005,3.883,17.561,2.439z M5.68,17.217l-1.624,0.35c-0.156-0.293-0.345-0.586-0.69-0.932\r\n\tc-0.346-0.346-0.639-0.533-0.932-0.691l0.35-1.623l0.47-0.469c0,0,0.883,0.018,1.881,1.016c0.997,0.996,1.016,1.881,1.016,1.881\r\n\tL5.68,17.217z"
+ }
+ }]
+};
+exports.edit = edit;
+var email = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.608,12.172c0,0.84,0.239,1.175,0.864,1.175c1.393,0,2.28-1.775,2.28-4.727c0-4.512-3.288-6.672-7.393-6.672\r\n\tc-4.223,0-8.064,2.832-8.064,8.184c0,5.112,3.36,7.896,8.52,7.896c1.752,0,2.928-0.192,4.727-0.792l0.386,1.607\r\n\tc-1.776,0.577-3.674,0.744-5.137,0.744c-6.768,0-10.393-3.72-10.393-9.456c0-5.784,4.201-9.72,9.985-9.72\r\n\tc6.024,0,9.215,3.6,9.215,8.016c0,3.744-1.175,6.6-4.871,6.6c-1.681,0-2.784-0.672-2.928-2.161\r\n\tc-0.432,1.656-1.584,2.161-3.145,2.161c-2.088,0-3.84-1.609-3.84-4.848c0-3.264,1.537-5.28,4.297-5.28\r\n\tc1.464,0,2.376,0.576,2.782,1.488l0.697-1.272h2.016v7.057H14.608z M11.657,9.004c0-1.319-0.985-1.872-1.801-1.872\r\n\tc-0.888,0-1.871,0.719-1.871,2.832c0,1.68,0.744,2.616,1.871,2.616c0.792,0,1.801-0.504,1.801-1.896V9.004z"
+ }
+ }]
+};
+exports.email = email;
+var flirt = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.5,9.75C8.329,9.75,9,8.967,9,8S8.329,6.25,7.5,6.25S6,7.034,6,8S6.672,9.75,7.5,9.75z M10,0.4\r\n\tC4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601C19.6,4.698,15.301,0.4,10,0.4z M10,17.599\r\n\tc-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6S17.6,5.802,17.6,10C17.6,14.197,14.197,17.599,10,17.599z M14.341,11.336\r\n\tc-0.363-0.187-0.815-0.043-1.008,0.32c-0.034,0.065-0.869,1.593-3.332,1.593c-2.451,0-3.291-1.513-3.333-1.592\r\n\tc-0.188-0.365-0.632-0.514-1.004-0.329c-0.37,0.185-0.521,0.636-0.335,1.007c0.05,0.099,1.248,2.414,4.672,2.414\r\n\tc3.425,0,4.621-2.316,4.67-2.415C14.855,11.967,14.707,11.524,14.341,11.336z M11.25,8.75h2.5c0.414,0,0.75-0.336,0.75-0.75\r\n\tc0-0.414-0.336-0.75-0.75-0.75h-2.5c-0.414,0-0.75,0.336-0.75,0.75C10.5,8.415,10.836,8.75,11.25,8.75z"
+ }
+ }, {
+ "name": "g",
+ "attribs": {}
+ }, {
+ "name": "g",
+ "attribs": {}
+ }, {
+ "name": "g",
+ "attribs": {}
+ }, {
+ "name": "g",
+ "attribs": {}
+ }, {
+ "name": "g",
+ "attribs": {}
+ }, {
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.flirt = flirt;
+var happy = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6S5.802,2.4,10,2.4c4.197,0,7.601,3.402,7.601,7.6\r\n\tS14.197,17.599,10,17.599z M7.501,9.75C8.329,9.75,9,8.967,9,8s-0.672-1.75-1.5-1.75s-1.5,0.783-1.5,1.75S6.672,9.75,7.501,9.75z\r\n\t M12.5,9.75C13.329,9.75,14,8.967,14,8s-0.672-1.75-1.5-1.75S11,7.034,11,8S11.672,9.75,12.5,9.75z M14.341,11.336\r\n\tc-0.363-0.186-0.815-0.043-1.008,0.32c-0.034,0.066-0.869,1.593-3.332,1.593c-2.451,0-3.291-1.513-3.333-1.592\r\n\tc-0.188-0.365-0.632-0.514-1.004-0.329c-0.37,0.186-0.52,0.636-0.335,1.007c0.05,0.099,1.248,2.414,4.672,2.414\r\n\tc3.425,0,4.621-2.316,4.67-2.415C14.855,11.967,14.707,11.524,14.341,11.336z"
+ }
+ }]
+};
+exports.happy = happy;
+var neutral = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.6,3.402,7.6,7.6\r\n\tC17.6,14.197,14.197,17.599,10,17.599z M12.5,6.251C11.672,6.251,11,7.034,11,8s0.672,1.75,1.5,1.75C13.329,9.75,14,8.967,14,8\r\n\tS13.329,6.251,12.5,6.251z M7.501,9.75C8.329,9.75,9,8.967,9,8s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS6.672,9.75,7.501,9.75z M13,12.25h-6c-0.414,0-0.75,0.336-0.75,0.75c0,0.414,0.336,0.75,0.75,0.75h6c0.414,0,0.75-0.336,0.75-0.75\r\n\tC13.75,12.585,13.415,12.25,13,12.25z"
+ }
+ }]
+};
+exports.neutral = neutral;
+var sad = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.001,0.4C4.698,0.4,0.4,4.698,0.4,10c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10.001,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.6,3.402,7.6,7.6\r\n\tC17.6,14.197,14.197,17.599,10,17.599z M12.501,9.75c0.828,0,1.5-0.783,1.5-1.75s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS11.672,9.75,12.501,9.75z M7.501,9.75c0.828,0,1.5-0.783,1.5-1.75s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS6.672,9.75,7.501,9.75z M10.002,11.25c-3.424,0-4.622,2.315-4.672,2.414c-0.186,0.371-0.035,0.821,0.335,1.007\r\n\tC5.773,14.724,5.887,14.75,6,14.75c0.275,0,0.54-0.151,0.672-0.414c0.008-0.017,0.822-1.586,3.33-1.586\r\n\tc2.463,0,3.298,1.527,3.328,1.585c0.184,0.37,0.635,0.523,1.006,0.336c0.371-0.184,0.521-0.636,0.336-1.006\r\n\tC14.623,13.566,13.426,11.25,10.002,11.25z"
+ }
+ }]
+};
+exports.sad = sad;
+var erase = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,3H8.446c-0.44,0-1.071,0.236-1.402,0.525L0.248,9.473c-0.331,0.289-0.331,0.764,0,1.053l6.796,5.947\r\n\tC7.375,16.762,8.006,17,8.446,17H18c1.1,0,2-0.9,2-2V5C20,3.9,19.1,3,18,3z M15.191,14l-2.557-2.557L10.078,14l-1.443-1.443\r\n\tL11.191,10L8.635,7.443L10.078,6l2.557,2.555L15.19,6l1.444,1.443L14.078,10l2.557,2.555L15.191,14z"
+ }
+ }]
+};
+exports.erase = erase;
+var eraser = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.998,4.18l-3.154-2.425c-0.872-0.671-2.135-0.506-2.807,0.365l-8.4,10.897c-0.671,0.871-0.507,2.132,0.365,2.803\r\n\tl3.153,2.425c0.872,0.671,2.135,0.506,2.807-0.365l8.401-10.897C18.034,6.112,17.87,4.851,16.998,4.18z M8.548,16.467l-0.537,0.681\r\n\tc-0.152,0.197-0.385,0.31-0.639,0.31c-0.124,0-0.309-0.029-0.485-0.164l-3.153-2.425c-0.168-0.129-0.275-0.317-0.303-0.53\r\n\tc-0.028-0.213,0.028-0.422,0.157-0.589l0.537-0.681c0.152-0.197,0.385-0.311,0.64-0.311c0.124,0,0.309,0.029,0.485,0.164\r\n\tl3.154,2.425c0.168,0.129,0.275,0.317,0.303,0.53C8.733,16.09,8.677,16.299,8.548,16.467z"
+ }
+ }]
+};
+exports.eraser = eraser;
+var exportIcon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,15H2V6h2.595c0,0,0.689-0.896,2.17-2H1C0.447,4,0,4.449,0,5v11c0,0.553,0.447,1,1,1h15c0.553,0,1-0.447,1-1v-3.746\r\n\tl-2,1.645V15z M13.361,8.05v3.551L20,6.4l-6.639-4.999v3.131C5.3,4.532,5.3,12.5,5.3,12.5C7.582,8.752,8.986,8.05,13.361,8.05z"
+ }
+ }]
+};
+exports.exportIcon = exportIcon;
+var withLine = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.5214844,1.4776001C18.131958,1.086853,17.4981079,1.086792,17.1074829,1.477478L1.4785156,17.1084595\r\n\tc-0.390625,0.390625-0.390625,1.0244141,0.0001221,1.4140015c0.390625,0.390686,1.0233765,0.390625,1.4140015-0.000061\r\n\tL18.5214233,2.8916016C18.9121704,2.5009766,18.9121704,1.8682251,18.5214844,1.4776001z M3.1083984,13.4973145l2.5593262-2.5584717\r\n\tC5.5981445,10.6357422,5.5546875,10.3234863,5.5546875,10c0-2.3789062,1.9902344-4.3085938,4.4453125-4.3085938\r\n\tc0.2861328,0,0.5644531,0.0314941,0.8354492,0.081665l1.2021484-1.2016602C11.394043,4.467041,10.7192383,4.4003906,10,4.4003906\r\n\tC3.4394531,4.4003906,0,9.2324219,0,10C0,10.4234619,1.057373,12.0908203,3.1083984,13.4973145z M16.8950195,6.5046387\r\n\tL14.3330078,9.065918C14.4018555,9.3674316,14.4443359,9.6784668,14.4443359,10\r\n\tc0,2.3789062-1.9892578,4.3066406-4.4443359,4.3066406c-0.2839355,0-0.5598145-0.0317383-0.8288574-0.0810547L7.967041,15.4291992\r\n\tC8.609375,15.5330811,9.2827148,15.5996094,10,15.5996094c6.5605469,0,10-4.8339844,10-5.5996094\r\n\tC20,9.5756836,18.9438477,7.9101562,16.8950195,6.5046387z"
+ }
+ }]
+};
+exports.withLine = withLine;
+var eye = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,4.4C3.439,4.4,0,9.232,0,10c0,0.766,3.439,5.6,10,5.6c6.56,0,10-4.834,10-5.6C20,9.232,16.56,4.4,10,4.4z M10,14.307\r\n\tc-2.455,0-4.445-1.928-4.445-4.307c0-2.379,1.99-4.309,4.445-4.309c2.455,0,4.444,1.93,4.444,4.309\r\n\tC14.444,12.379,12.455,14.307,10,14.307z M10,10c-0.407-0.447,0.663-2.154,0-2.154c-1.228,0-2.223,0.965-2.223,2.154\r\n\tc0,1.189,0.995,2.154,2.223,2.154c1.227,0,2.223-0.965,2.223-2.154C12.223,9.453,10.346,10.379,10,10z"
+ }
+ }]
+};
+exports.eye = eye;
+var feather = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.254,19.567c0.307-0.982,0.77-2.364,1.391-4.362c2.707-0.429,3.827,0.341,5.546-2.729\r\n\tc-1.395,0.427-3.077-0.792-2.987-1.321c0.091-0.528,3.913,0.381,6.416-3.173c-3.155,0.696-4.164-0.836-3.757-1.067\r\n\tc0.939-0.534,3.726-0.222,5.212-1.669c0.766-0.745,1.125-2.556,0.813-3.202c-0.374-0.781-2.656-1.946-3.914-1.836\r\n\tc-1.258,0.109-3.231,4.79-3.817,4.754C8.573,4.925,8.454,2.864,9.476,0.949c-1.077,0.477-3.051,1.959-3.67,3.226\r\n\tc-1.153,2.357,0.108,7.766-0.296,7.958c-0.405,0.193-1.766-2.481-2.172-3.694c-0.555,1.859-0.568,3.721,1.053,6.194\r\n\tc-0.611,1.623-0.945,3.491-0.996,4.441C3.371,19.833,4.119,19.996,4.254,19.567z"
+ }
+ }]
+};
+exports.feather = feather;
+var fingerprint = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.6795855,7.8502398c-0.3737011,0.09375-0.6062469,0.4970703-0.5193815,0.9003906\r\n\tc0.7166376,3.3271484,0.8731756,6.8144531,0.4515181,10.0849619c-0.0524817,0.4106445,0.2126379,0.7895508,0.5926733,0.8461914\r\n\tc0.0325747,0.0048828,0.0651484,0.0073242,0.096818,0.0073242c0.3411264,0,0.6388206-0.2714844,0.6876822-0.6464844\r\n\tc0.4442797-3.4511728,0.2805023-7.1274424-0.4750433-10.6318369C10.4269867,8.0064898,10.0532856,7.7584429,9.6795855,7.8502398z\r\n\t M8.0689611,12.0733843c-0.3818445,0.0380859-0.6632514,0.4033203-0.6279626,0.815918\r\n\tc0.1692061,1.9672852,0.1248689,3.9091806-0.1321073,5.7714853c-0.0561004,0.409668,0.2063046,0.7915039,0.5854349,0.8520508\r\n\tc0.0343838,0.0058594,0.068768,0.0083008,0.1031523,0.0083008c0.3384123,0,0.6352015-0.2675781,0.6867771-0.6396484\r\n\tc0.2723579-1.980957,0.3203154-4.0439463,0.1411562-6.1308603C8.790122,12.3380327,8.439043,12.0304155,8.0689611,12.0733843z\r\n\t M9.1583948,5.4142046c-0.783596,0.1967773-1.4495621,0.7114258-1.8757439,1.4487305\r\n\tC6.8564687,7.6012163,6.7225518,8.4727983,6.9044256,9.3165483c0.08777,0.409668,0.1673961,0.8198242,0.2370691,1.2294922\r\n\tc0.0678635,0.4077148,0.4388499,0.6767578,0.8080268,0.6025391c0.3782248-0.074707,0.6279626-0.4658203,0.5582891-0.8730469\r\n\tc-0.0732918-0.4321289-0.156538-0.8647461-0.2497368-1.2983398c-0.097723-0.4541016-0.0253363-0.9228516,0.2044945-1.3203125\r\n\tc0.2298307-0.3979492,0.5890541-0.6757812,1.0098076-0.78125c0.8722706-0.2192383,1.7418261,0.3706055,1.9436064,1.309082\r\n\tc0.7464972,3.4614258,0.9419441,6.9296875,0.5809107,10.309083c-0.0443373,0.4116211,0.2298307,0.7836914,0.6107702,0.8310547\r\n\tc0.0271454,0.003418,0.0542908,0.0048828,0.0805311,0.0048828c0.3483658,0,0.6487741-0.2817383,0.6894922-0.6640625\r\n\tc0.3791304-3.5507822,0.1746349-7.1914072-0.6080561-10.8203135C12.3950253,6.1026812,10.7789717,5.0118608,9.1583948,5.4142046z\r\n\t M6.7478876,5.9469194c0.2388787-0.3251953,0.1873026-0.796875-0.1140108-1.0537109\r\n\tc-0.302218-0.2573242-0.7383533-0.2001953-0.9754229,0.1230469C5.5363002,5.1827593,5.4222894,5.3580523,5.3173275,5.5396929\r\n\tc-0.753736,1.3056641-0.9917102,2.8481445-0.6686802,4.34375c0.5935779,2.7563477,0.7320194,5.5878906,0.400846,8.1889658\r\n\tc-0.0524807,0.4101562,0.2135434,0.7885742,0.5935783,0.8452148c0.0325747,0.0043945,0.0642443,0.0068359,0.0959134,0.0068359\r\n\tc0.3420315,0,0.6397257-0.2719727,0.6876826-0.6479492c0.3537941-2.7802744,0.2072091-5.7998056-0.4243727-8.7329111\r\n\tC5.7643209,8.4386187,5.9398608,7.2984819,6.4972453,6.3326616C6.5750618,6.197896,6.6583076,6.069478,6.7478876,5.9469194z\r\n\t M15.10956,12.8189898c-0.3827496,0.0205078-0.6786337,0.3720703-0.6596327,0.7861328\r\n\tc0.0633392,1.3837891,0.0434332,2.7739267-0.058814,4.1313486c-0.0316696,0.4130859,0.253356,0.7749023,0.6361055,0.8085938\r\n\tc0.019002,0.0014648,0.0380039,0.0024414,0.0570049,0.0024414c0.3583193,0,0.6623468-0.296875,0.6913023-0.6889648\r\n\tc0.1076765-1.4223633,0.1284876-2.8784189,0.0624342-4.3276377C15.8189583,13.1168413,15.4841652,12.8082476,15.10956,12.8189898z\r\n\t M14.9403534,11.7843218c0.0289555,0,0.05791-0.0019531,0.0868654-0.0058594\r\n\tc0.3809395-0.0507812,0.6505833-0.4257812,0.6035318-0.8364258c-0.1402512-1.2226562-0.3447466-2.4550781-0.6053419-3.6625977\r\n\tc-0.5528603-2.574707-2.7498236-4.4438477-5.22367-4.4438477c-0.390893,0-0.781786,0.0478516-1.1636305,0.1425781\r\n\tc-0.3157902,0.0791016-0.625248,0.1889648-0.9211321,0.3271484C7.3649917,3.4698689,7.2030244,3.9117634,7.3550382,4.291646\r\n\tC7.507957,4.6720171,7.9178519,4.8473101,8.2689314,4.682271c0.2189732-0.1025391,0.449708-0.184082,0.6822538-0.2426758\r\n\tc0.2777872-0.0688477,0.5637178-0.1040039,0.8505535-0.1040039c1.8341208,0,3.4610329,1.3803711,3.8700228,3.2836914\r\n\tc0.2497368,1.1572266,0.4451838,2.3374023,0.5800056,3.5073242C14.2951994,11.5064898,14.5947027,11.7843218,14.9403534,11.7843218z\r\n\t M17.282093,6.7164507c-0.3157921-1.4726562-1.0152359-2.8251951-2.0205193-3.913574\r\n\tc-0.2705488-0.2929688-0.7103033-0.2920532-0.9826622,0.0009155c-0.2723579,0.2924805-0.2723579,0.7734375-0.0018091,1.0664062\r\n\tc0.822504,0.8906248,1.3934612,2.0072629,1.6513424,3.2074583c0.6469641,3.003418,0.9365149,6.0850124,0.860507,9.0986834\r\n\tC16.7789993,16.5904026,17.0812168,17,17.4648705,17h0.0190029c0.3755093,0,0.684063-0.3749294,0.6949196-0.782156\r\n\tC18.257515,13.0757551,17.9562016,9.8443804,17.282093,6.7164507z M3.3900077,12.8546343\r\n\tc0.0334792,0,0.0678635-0.0024414,0.1022475-0.0078125c0.3791301-0.0600586,0.6415353-0.4414062,0.5863395-0.8510742\r\n\tc-0.0841506-0.6181641-0.1954465-1.2524414-0.332078-1.8867188C3.3673866,8.3546343,3.6460788,6.5435991,4.5319219,5.0108843\r\n\tc0.8831291-1.5297849,2.2675419-2.597656,3.8944526-3.0063474c1.4052248-0.3491211,2.9009333-0.1430664,4.1930523,0.5581055\r\n\tc0.3411264,0.1875,0.7600698,0.0371094,0.9328947-0.3325195c0.1728258-0.3701172,0.0343838-0.8212891-0.3085518-1.0073242\r\n\tc-1.5789547-0.8579102-3.4076462-1.105957-5.1304712-0.6796875c-1.9897542,0.5-3.6809092,1.8046875-4.7612944,3.6738279\r\n\tC2.2698097,6.0909624,1.929588,8.3043413,2.3928685,10.4488726c0.1275833,0.59375,0.2316403,1.1870117,0.3103619,1.7646484\r\n\tC2.7539017,12.5865679,3.0506909,12.8546343,3.3900077,12.8546343z M3.5972173,14h-0.023526\r\n\tc-0.3836544,0-0.684063,0.2493391-0.6713951,0.6634016c0.0271454,0.8476562,0.0036194,1.5799913-0.0696731,2.3895617\r\n\tc-0.0380034,0.4121094,0.2415936,0.777544,0.6234381,0.8180714c0.0226212,0.0024414,0.0461471,0.0025425,0.0687683,0.0025425\r\n\tc0.3528895,0,0.6551077-0.2373772,0.6903965-0.6245842c0.0796266-0.875,0.1058669-1.7228241,0.0769119-2.6368866\r\n\tC4.2785654,14.2068329,3.9700134,14,3.5972173,14z"
+ }
+ }]
+};
+exports.fingerprint = fingerprint;
+var flag = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.926,5.584c-9.339,13.568-6.142-0.26-14.037,6.357L6.684,19H4.665L1,4.59l1.85-0.664\r\n\tc8.849-6.471,4.228,5.82,15.637,1.254C18.851,5.033,19.142,5.27,18.926,5.584z"
+ }
+ }]
+};
+exports.flag = flag;
+var flash = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.803,18.998c-0.194-0.127,3.153-7.16,3.038-7.469c-0.116-0.309-3.665-1.436-3.838-1.979\r\n\tc-0.174-0.543,7.007-8.707,7.196-8.549c0.188,0.158-3.129,7.238-3.039,7.469c0.091,0.23,3.728,1.404,3.838,1.979\r\n\tC14.109,11.024,6.996,19.125,6.803,18.998z"
+ }
+ }]
+};
+exports.flash = flash;
+var flashlight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.115,2.884c-1.676-1.676-3.779-2.288-4.449-1.618L9.97,3.962C9.561,4.372,9.204,5.741,9.368,7.126l-8.161,8.161\r\n\tc-0.484,0.484-0.092,1.66,0.876,2.629c0.968,0.969,2.146,1.359,2.629,0.877l8.161-8.162c1.386,0.164,2.755-0.193,3.164-0.601\r\n\tl2.696-2.697C19.403,6.663,18.791,4.559,17.115,2.884z M8.141,11.039C7.768,10.667,7.89,9.943,8.41,9.422\r\n\tc0.521-0.521,1.246-0.643,1.618-0.27c0.372,0.371,0.251,1.097-0.27,1.617C9.237,11.291,8.513,11.412,8.141,11.039z M14.891,5.108\r\n\tc-1.298-1.297-1.623-3.01-1.508-3.125c0.115-0.116,1.76,0.277,3.059,1.575c1.298,1.298,1.688,2.946,1.575,3.059\r\n\tC17.905,6.729,16.188,6.407,14.891,5.108z"
+ }
+ }]
+};
+exports.flashlight = flashlight;
+var branch = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.4,4c0-1.326-1.074-2.4-2.4-2.4S11.6,2.674,11.6,4c0,0.961,0.568,1.784,1.384,2.167c-0.082,1.584-1.27,2.122-3.335,2.896\r\n\tC8.779,9.39,7.82,9.752,7,10.297V6.176C7.825,5.796,8.4,4.967,8.4,4c0-1.326-1.074-2.4-2.4-2.4S3.6,2.674,3.6,4\r\n\tc0,0.967,0.576,1.796,1.4,2.176v7.649C4.175,14.204,3.6,15.033,3.6,16c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4\r\n\tc0-0.961-0.568-1.784-1.384-2.167c0.082-1.583,1.271-2.122,3.335-2.896c2.03-0.762,4.541-1.711,4.64-4.756\r\n\tC15.82,5.803,16.4,4.971,16.4,4z M6,2.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385\r\n\tC5.235,5.385,4.616,4.764,4.616,4C4.616,3.234,5.235,2.615,6,2.615z M6,17.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C7.384,16.764,6.764,17.385,6,17.385z M14,5.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC15.384,4.764,14.764,5.385,14,5.385z"
+ }
+ }]
+};
+exports.branch = branch;
+var cascade = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,14.6c-0.967,0-1.796,0.576-2.176,1.4H8.5C7.672,16,7,15.328,7,14.5v-3.85C7.456,10.868,7.961,11,8.5,11h3.324\r\n\tc0.38,0.824,1.208,1.4,2.176,1.4c1.326,0,2.4-1.075,2.4-2.4S15.326,7.6,14,7.6c-0.967,0-1.796,0.576-2.176,1.4H8.5\r\n\tC7.672,9,7,8.328,7,7.5V5.176C7.825,4.796,8.4,3.967,8.4,3c0-1.326-1.074-2.4-2.4-2.4S3.6,1.674,3.6,3\r\n\tc0,0.967,0.576,1.796,1.4,2.176V14.5C5,16.433,6.567,18,8.5,18h3.324c0.38,0.824,1.208,1.4,2.176,1.4c1.326,0,2.4-1.075,2.4-2.4\r\n\tS15.326,14.6,14,14.6z M14,8.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tC12.616,9.234,13.235,8.615,14,8.615z M6,1.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385\r\n\tC5.235,4.385,4.616,3.764,4.616,3C4.616,2.234,5.235,1.615,6,1.615z M14,18.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C15.384,17.764,14.764,18.385,14,18.385z"
+ }
+ }]
+};
+exports.cascade = cascade;
+var line = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,13.824V6.176c0.825-0.38,1.4-1.208,1.4-2.176c0-1.326-1.074-2.4-2.4-2.4S7.6,2.674,7.6,4c0,0.967,0.576,1.796,1.4,2.176\r\n\tv7.649C8.175,14.204,7.6,15.033,7.6,16c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C12.4,15.033,11.825,14.204,11,13.824z\r\n\t M10,2.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C9.235,5.385,8.616,4.764,8.616,4\r\n\tC8.616,3.234,9.235,2.615,10,2.615z M10,17.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C11.384,16.764,10.764,17.385,10,17.385z"
+ }
+ }]
+};
+exports.line = line;
+var parallel = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.4,4c0-1.326-1.074-2.4-2.4-2.4S3.6,2.674,3.6,4c0,0.967,0.576,1.796,1.4,2.176v7.649C4.175,14.204,3.6,15.033,3.6,16\r\n\tc0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V6.176C7.825,5.796,8.4,4.967,8.4,4z M7.384,16\r\n\tc0,0.764-0.62,1.385-1.384,1.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tC6.764,14.615,7.384,15.234,7.384,16z M6,5.385C5.235,5.385,4.616,4.764,4.616,4c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C7.384,4.764,6.764,5.385,6,5.385z M15,13.824V6.176c0.825-0.38,1.4-1.208,1.4-2.176\r\n\tc0-1.326-1.074-2.4-2.4-2.4S11.6,2.674,11.6,4c0,0.967,0.576,1.796,1.4,2.176v7.649c-0.825,0.38-1.4,1.208-1.4,2.176\r\n\tc0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C16.4,15.033,15.825,14.204,15,13.824z M12.616,4c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C13.235,5.385,12.616,4.764,12.616,4z M14,17.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC15.384,16.764,14.764,17.385,14,17.385z"
+ }
+ }]
+};
+exports.parallel = parallel;
+var tree = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,14.824V12.5c0-1.933-1.567-3.5-3.5-3.5h-2C11.672,9,11,8.328,11,7.5V5.176c0.825-0.38,1.4-1.208,1.4-2.176\r\n\tc0-1.326-1.074-2.4-2.4-2.4S7.6,1.674,7.6,3c0,0.967,0.576,1.796,1.4,2.176V7.5C9,8.328,8.328,9,7.5,9h-2C3.567,9,2,10.567,2,12.5\r\n\tv2.324C1.175,15.204,0.6,16.033,0.6,17c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V12.5\r\n\tC4,11.672,4.672,11,5.5,11h2c0.539,0,1.044-0.132,1.5-0.35v4.174C8.175,15.204,7.6,16.033,7.6,17c0,1.326,1.074,2.4,2.4,2.4\r\n\ts2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V10.65c0.456,0.218,0.961,0.35,1.5,0.35h2c0.828,0,1.5,0.672,1.5,1.5v2.324\r\n\tc-0.825,0.38-1.4,1.208-1.4,2.176c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C19.4,16.033,18.825,15.204,18,14.824z M10,1.615\r\n\tc0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C9.235,4.385,8.616,3.764,8.616,3\r\n\tC8.616,2.234,9.235,1.615,10,1.615z M3,18.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C4.384,17.764,3.764,18.385,3,18.385z M10,18.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C11.384,17.764,10.764,18.385,10,18.385z M17,18.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC18.384,17.764,17.764,18.385,17,18.385z"
+ }
+ }]
+};
+exports.tree = tree;
+var flower = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.6591797,8.7595215c0.4396973-1.0861816-0.3630371-2.5083008-1.2099609-3.4055176\r\n\tc0.3283691-1.1893311,0.3718262-2.8215332-0.5253906-3.5754395c-0.8969727-0.7540283-2.4973145-0.4300537-3.6125488,0.0980225\r\n\tC6.2817383,1.1970215,4.7426758,0.651123,3.748291,1.2713623C2.7543945,1.8916016,2.5678711,3.513916,2.7253418,4.7375488\r\n\tc-0.9645996,0.7692871-1.9592285,2.064209-1.6765137,3.201416s1.7678223,1.815918,2.9804688,2.0440674\r\n\tc0.4333496,1.1551514,1.357666,2.5012207,2.5266113,2.5838623c0.828125,0.0585938,1.619873-0.53125,2.223877-1.2633057\r\n\tc1.2209473,1.5201416,2.0817871,3.1278076,2.5551758,4.706543C10.6123047,14.9285889,9.1147461,14,6,14\r\n\tc0,4.1550293,3.0419922,5.0028076,5,5.0028076l3.2001953,0.0020752c0-2.7229004-0.986084-5.909668-3.2895508-8.9008789\r\n\tC11.692627,9.8570557,12.388916,9.4267578,12.6591797,8.7595215z M8.2827148,8.5396729\r\n\tC7.1357422,9.255127,5.6259766,8.9055176,4.9106445,7.7585449C4.1950684,6.6116943,4.5446777,5.1018066,5.6916504,4.3863525\r\n\tS8.3483887,4.020752,9.0639648,5.1674805C9.7792969,6.3144531,9.4296875,7.8242188,8.2827148,8.5396729z M14.0200195,12.2478027\r\n\tc1.0825195,2.1699219,1.6687012,4.4530029,1.6774902,6.7053223C18.9963379,16.5820312,19,12.2062988,19,8.0028076\r\n\tC19,8.0028076,15.3293457,9.0374756,14.0200195,12.2478027z"
+ }
+ }]
+};
+exports.flower = flower;
+var images = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M12.438,8.375c0.518,0,0.938,0.42,0.938,0.938\r\n\tc0,0.518-0.42,0.938-0.938,0.938S11.5,9.83,11.5,9.312C11.5,8.795,11.92,8.375,12.438,8.375z M5.5,14l2.486-5.714l2.827,4.576\r\n\tl2.424-1.204L14.5,14H5.5z"
+ }
+ }]
+};
+exports.images = images;
+var music = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M11.942,12.521c-0.128,0.265-0.258,0.279-0.202,0\r\n\tc0.146-0.721,0.047-2.269-1.043-2.441v3.294c0,0.674-0.311,1.262-1.136,1.528c-0.802,0.256-1.699-0.011-1.908-0.586\r\n\tc-0.21-0.576,0.261-1.276,1.052-1.564c0.442-0.161,0.954-0.203,1.299-0.07V8h0.694C10.697,9.633,13.516,9.275,11.942,12.521z"
+ }
+ }]
+};
+exports.music = music;
+var video = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M8,14V9l4.383,2.5L8,14z"
+ }
+ }]
+};
+exports.video = video;
+var folder = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.405,4.799C18.294,4.359,17.75,4,17.195,4h-6.814C9.827,4,9.051,3.682,8.659,3.293L8.063,2.705\r\n\tC7.671,2.316,6.896,2,6.342,2H3.087C2.532,2,2.028,2.447,1.967,2.994L1.675,6h16.931L18.405,4.799z M19.412,7H0.588\r\n\tc-0.342,0-0.61,0.294-0.577,0.635l0.923,9.669C0.971,17.698,1.303,18,1.7,18H18.3c0.397,0,0.728-0.302,0.766-0.696l0.923-9.669\r\n\tC20.022,7.294,19.754,7,19.412,7z"
+ }
+ }]
+};
+exports.folder = folder;
+var forward = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12,11.874v4.357l7-6.69l-7-6.572v3.983c-8.775,0-11,9.732-11,9.732C3.484,12.296,7.237,11.874,12,11.874z"
+ }
+ }]
+};
+exports.forward = forward;
+var funnel = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1C5.092,1,2,2.512,2,4.001v2c0,0.918,6,6,6,6v6c-0.001,0.684,1,1,2,1s2.001-0.316,2-1v-6c0,0,6-5.082,6-6v-2\r\n\tC18,2.512,14.908,1,10,1z M10,6.123C6.409,6.122,3.862,4.79,3.862,4.292C3.86,3.797,6.41,2.461,10,2.463\r\n\tc3.59-0.002,6.14,1.334,6.138,1.828C16.138,4.79,13.591,6.122,10,6.123z"
+ }
+ }]
+};
+exports.funnel = funnel;
+var controller = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M19.444,9.361c-0.882-4.926-2.854-6.379-3.903-6.379\r\n\tc-1.637,0-2.057,1.217-5.541,1.258C6.516,4.199,6.096,2.982,4.459,2.982c-1.049,0-3.022,1.453-3.904,6.379\r\n\tc-0.503,2.812-1.049,7.01,0.252,7.514c1.619,0.627,2.168-0.941,3.946-2.266C6.558,13.266,7.424,12.95,10,12.95\r\n\tc2.576,0,3.442,0.316,5.247,1.659c1.778,1.324,2.327,2.893,3.946,2.266C20.494,16.371,19.948,12.174,19.444,9.361z M6,10\r\n\tc-1.105,0-2-0.896-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C8,9.104,7.104,10,6,10z M13,10c-0.553,0-1-0.447-1-1s0.447-1,1-1\r\n\tc0.553,0,1,0.447,1,1S13.553,10,13,10z M15,8c-0.553,0-1-0.447-1-1s0.447-1,1-1c0.553,0,1,0.447,1,1S15.553,8,15,8z"
+ }
+ }]
+};
+exports.controller = controller;
+var gauge = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.127,13.6c-0.689,1.197-0.225,2.18,0.732,2.732c0.956,0.553,2.041,0.465,2.732-0.732\r\n\tc0.689-1.195,5.047-11.865,4.668-12.084C15.88,3.297,8.817,12.404,8.127,13.6z M10,6c0.438,0,0.864,0.037,1.281,0.109\r\n\tc0.438-0.549,0.928-1.154,1.405-1.728C11.834,4.135,10.934,4,10,4C4.393,4,0,8.729,0,14.766c0,0.371,0.016,0.742,0.049,1.103\r\n\tc0.049,0.551,0.54,0.955,1.084,0.908c0.551-0.051,0.957-0.535,0.908-1.086C2.014,15.389,2,15.076,2,14.766C2,9.85,5.514,6,10,6z\r\n\t M17.219,7.25C16.94,8,16.645,8.764,16.385,9.424C17.4,10.894,18,12.738,18,14.766c0,0.316-0.015,0.635-0.043,0.943\r\n\tc-0.05,0.551,0.355,1.037,0.905,1.088c0.03,0.002,0.061,0.004,0.092,0.004c0.511,0,0.948-0.391,0.995-0.91\r\n\tC19.982,15.521,20,15.143,20,14.766C20,11.812,18.947,9.176,17.219,7.25z"
+ }
+ }]
+};
+exports.gauge = gauge;
+var globe = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.295,0-9.601,4.307-9.601,9.6c0,5.293,4.306,9.6,9.601,9.6c5.293,0,9.6-4.307,9.6-9.6\r\n\tC19.6,4.707,15.293,0.4,10,0.4z M18.188,10c0,1.873-0.636,3.6-1.696,4.98c-0.3-0.234-0.619-0.867-0.319-1.523\r\n\tc0.303-0.66,0.382-2.188,0.312-2.783c-0.066-0.594-0.375-2.025-1.214-2.039c-0.838-0.012-1.413-0.289-1.911-1.283\r\n\tc-1.033-2.068,1.939-2.465,0.906-3.609c-0.289-0.322-1.783,1.322-2.002-0.869C12.25,2.717,12.399,2.482,12.6,2.238\r\n\tC15.844,3.328,18.188,6.395,18.188,10z M8.875,1.893C8.679,2.275,8.162,2.43,7.848,2.717C7.164,3.336,6.87,3.25,6.502,3.844\r\n\tC6.131,4.438,4.935,5.293,4.935,5.723s0.604,0.936,0.906,0.838c0.302-0.1,1.099-0.094,1.567,0.07\r\n\tc0.469,0.166,3.914,0.332,2.816,3.244c-0.348,0.926-1.873,0.77-2.279,2.303c-0.061,0.225-0.272,1.186-0.285,1.5\r\n\tc-0.025,0.486,0.344,2.318-0.125,2.318c-0.471,0-1.738-1.639-1.738-1.936c0-0.297-0.328-1.338-0.328-2.23\r\n\tc0-0.891-1.518-0.877-1.518-2.062c0-1.068,0.823-1.6,0.638-2.113c-0.181-0.51-1.627-0.527-2.23-0.59\r\n\tC3.412,4.334,5.889,2.307,8.875,1.893z M7.424,17.77c0.492-0.26,0.542-0.596,0.988-0.613c0.51-0.023,0.925-0.199,1.5-0.326\r\n\tc0.51-0.111,1.423-0.629,2.226-0.695c0.678-0.055,2.015,0.035,2.375,0.689c-1.295,0.861-2.848,1.363-4.514,1.363\r\n\tC9.1,18.188,8.234,18.039,7.424,17.77z"
+ }
+ }]
+};
+exports.globe = globe;
+var cap = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.302,12.238c0.464,1.879,1.054,2.701,3.022,3.562C8.293,16.66,9.228,17.6,10,17.6c0.771,0,1.648-0.822,3.616-1.684\r\n\tc1.969-0.861,1.443-1.123,1.907-3.002L10,15.6L3.302,12.238z M19.511,7.336l-8.325-4.662c-0.652-0.365-1.72-0.365-2.372,0\r\n\tL0.488,7.336c-0.652,0.365-0.652,0.963,0,1.328l8.325,4.662c0.652,0.365,1.72,0.365,2.372,0l5.382-3.014l-5.836-1.367\r\n\tC10.506,9,10.259,9.031,10,9.031c-1.052,0-1.904-0.506-1.904-1.131c0-0.627,0.853-1.133,1.904-1.133c0.816,0,1.51,0.307,1.78,0.734\r\n\tl6.182,2.029l1.549-0.867C20.162,8.299,20.162,7.701,19.511,7.336z M16.967,16.17c-0.065,0.385,1.283,1.018,1.411-0.107\r\n\tc0.579-5.072-0.416-6.531-0.416-6.531l-1.395,0.781C16.567,10.312,17.75,11.438,16.967,16.17z"
+ }
+ }]
+};
+exports.cap = cap;
+var grid = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M8,4H5C4.447,4,4,4.447,4,5v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1V5\r\n\tC9,4.448,8.553,4,8,4z M15,4h-3c-0.553,0-1,0.447-1,1v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1V5C16,4.448,15.553,4,15,4z M8,11\r\n\tH5c-0.553,0-1,0.447-1,1v3c0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1v-3C9,11.448,8.553,11,8,11z M15,11h-3c-0.553,0-1,0.447-1,1v3\r\n\tc0,0.552,0.447,1,1,1h3c0.553,0,1-0.448,1-1v-3C16,11.448,15.553,11,15,11z"
+ }
+ }]
+};
+exports.grid = grid;
+var hand = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.924,17.315c-0.057,0.174-0.193,0.367-0.416,0.432c-0.161,0.047-5.488,1.59-5.652,1.633\r\n\tc-0.469,0.125-0.795,0.033-1.009-0.156c-0.326-0.287-4.093-2.85-8.845-3.092c-0.508-0.025-0.259-1.951,1.193-1.951\r\n\tc0.995,0,3.904,0.723,4.255,0.371c0.271-0.272,0.394-1.879-0.737-4.683l0,0L4.438,4.232C4.222,3.697,4.482,3.089,5.016,2.873\r\n\tc0.535-0.216,1.145,0.043,1.359,0.578c0,0,1.791,4.438,1.986,4.919c0.193,0.48,0.431,0.662,0.69,0.562\r\n\tC9.282,8.844,9.33,8.69,9.19,8.223L7.144,2.195C6.958,1.649,7.25,1.057,7.796,0.871c0.547-0.187,1.141,0.106,1.325,0.652\r\n\tl1.946,5.732c0.172,0.504,0.354,0.768,0.642,0.646c0.173-0.073,0.161-0.338,0.115-0.569l-1.366-5.471\r\n\tc-0.14-0.561,0.201-1.127,0.761-1.267c0.56-0.139,1.125,0.2,1.266,0.761l1.26,5.042c0.184,0.741,0.353,1.008,0.646,0.935\r\n\tc0.299-0.073,0.285-0.319,0.244-0.522c-0.095-0.475-0.872-4.328-0.872-4.328c-0.103-0.515,0.23-1.015,0.744-1.118\r\n\tc0.513-0.103,1.014,0.23,1.116,0.743l0.948,4.711l0.001,0.001c0,0,0,0,0,0.001l0.568,2.825c0.124,0.533,0.266,1.035,0.45,1.527\r\n\tC18.675,14.061,18.109,16.736,17.924,17.315z"
+ }
+ }]
+};
+exports.hand = hand;
+var outlined = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.19,4.156c-1.672-1.535-4.383-1.535-6.055,0L10,5.197L8.864,4.156c-1.672-1.535-4.382-1.535-6.054,0\r\n\tc-1.881,1.726-1.881,4.519,0,6.245L10,17l7.19-6.599C19.07,8.675,19.07,5.881,17.19,4.156z M16.124,9.375L10,15.09L3.875,9.375\r\n\tC3.258,8.808,3.019,8.068,3.019,7.281s0.138-1.433,0.756-1.999C4.32,4.781,5.053,4.505,5.838,4.505c0.784,0,1.517,0.476,2.062,0.978\r\n\tL10,7.308l2.099-1.826c0.546-0.502,1.278-0.978,2.063-0.978s1.518,0.276,2.063,0.777c0.618,0.566,0.755,1.212,0.755,1.999\r\n\tS16.742,8.808,16.124,9.375z"
+ }
+ }]
+};
+exports.outlined = outlined;
+var heart = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.19,4.155c-1.672-1.534-4.383-1.534-6.055,0L10,5.197L8.864,4.155c-1.672-1.534-4.382-1.534-6.054,0\r\n\tc-1.881,1.727-1.881,4.52,0,6.246L10,17l7.19-6.599C19.07,8.675,19.07,5.881,17.19,4.155z"
+ }
+ }]
+};
+exports.heart = heart;
+var withCircle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.302,0-9.6,4.298-9.6,9.6s4.298,9.6,9.6,9.6c5.301,0,9.6-4.298,9.6-9.601C19.6,4.698,15.301,0.4,10,0.4z\r\n\t M9.849,15.599H9.798c-0.782-0.023-1.334-0.6-1.311-1.371c0.022-0.758,0.587-1.309,1.343-1.309l0.046,0.002\r\n\tc0.804,0.023,1.35,0.594,1.327,1.387C11.18,15.068,10.625,15.599,9.849,15.599z M13.14,9.068c-0.184,0.26-0.588,0.586-1.098,0.983\r\n\tl-0.562,0.387c-0.308,0.24-0.494,0.467-0.563,0.688c-0.056,0.174-0.082,0.221-0.087,0.576v0.09H8.685l0.006-0.182\r\n\tc0.027-0.744,0.045-1.184,0.354-1.547c0.485-0.568,1.555-1.258,1.6-1.287c0.154-0.115,0.283-0.246,0.379-0.387\r\n\tc0.225-0.311,0.324-0.555,0.324-0.793c0-0.334-0.098-0.643-0.293-0.916c-0.188-0.266-0.545-0.398-1.061-0.398\r\n\tc-0.512,0-0.863,0.162-1.072,0.496c-0.216,0.341-0.325,0.7-0.325,1.067v0.092H6.386L6.39,7.841c0.057-1.353,0.541-2.328,1.435-2.897\r\n\tC8.388,4.583,9.089,4.4,9.906,4.4c1.068,0,1.972,0.26,2.682,0.772c0.721,0.519,1.086,1.297,1.086,2.311\r\n\tC13.673,8.05,13.494,8.583,13.14,9.068z"
+ }
+ }]
+};
+exports.withCircle = withCircle;
+var help = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.help = help;
+var home = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.672,11H17v6c0,0.445-0.194,1-1,1h-4v-6H8v6H4c-0.806,0-1-0.555-1-1v-6H1.328c-0.598,0-0.47-0.324-0.06-0.748L9.292,2.22\r\n\tC9.487,2.018,9.743,1.918,10,1.908c0.257,0.01,0.513,0.109,0.708,0.312l8.023,8.031C19.142,10.676,19.27,11,18.672,11z"
+ }
+ }]
+};
+exports.home = home;
+var glass = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.6,4.576c0-2.139,0-2.348,0-2.348C15.6,1.439,13.092,0,10,0C6.907,0,4.4,1.439,4.4,2.228c0,0,0,0.209,0,2.348\r\n\tC4.4,6.717,8.277,8.484,8.277,10c0,1.514-3.877,3.281-3.877,5.422c0,2.141,0,2.35,0,2.35C4.4,18.56,6.907,20,10,20\r\n\tc3.092,0,5.6-1.44,5.6-2.229c0,0,0-0.209,0-2.35c0-2.141-3.877-3.908-3.877-5.422C11.723,8.484,15.6,6.717,15.6,4.576z M5.941,2.328\r\n\tc0.696-0.439,2-1.082,4.114-1.082c2.113,0,4.006,1.082,4.006,1.082c0.142,0.086,0.698,0.383,0.317,0.609\r\n\tC13.54,3.434,11.9,3.957,10,3.957c-1.9,0-3.484-0.576-4.324-1.074C5.295,2.658,5.941,2.328,5.941,2.328z M10.501,10\r\n\tc0,1.193,0.996,1.961,2.051,2.986c0.771,0.748,1.826,1.773,1.826,2.435v1.328c-0.97-0.483-3.872-0.955-3.872-2.504\r\n\tc0-0.783-1.013-0.783-1.013,0c0,1.549-2.902,2.021-3.872,2.504v-1.328c0-0.662,1.056-1.688,1.826-2.435\r\n\tC8.502,11.961,9.498,11.193,9.498,10c0-1.193-0.996-1.961-2.051-2.986c-0.771-0.75-1.826-1.775-1.826-2.438L5.575,3.578\r\n\tC6.601,4.131,8.227,4.656,10,4.656c1.772,0,3.406-0.525,4.433-1.078l-0.055,0.998c0,0.662-1.056,1.688-1.826,2.438\r\n\tC11.498,8.039,10.501,8.807,10.501,10z"
+ }
+ }]
+};
+exports.glass = glass;
+var inverted = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,3H2C1.447,3,1,3.447,1,4v12c0,0.552,0.447,1,1,1h16c0.553,0,1-0.448,1-1V4C19,3.448,18.553,3,18,3z M13.25,6.5\r\n\tc0.69,0,1.25,0.56,1.25,1.25S13.94,9,13.25,9S12,8.44,12,7.75S12.56,6.5,13.25,6.5z M4,14l3.314-7.619l3.769,6.102l3.231-1.605\r\n\tL16,14H4z"
+ }
+ }]
+};
+exports.inverted = inverted;
+var image = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M19,2H1C0.447,2,0,2.447,0,3v14c0,0.552,0.447,1,1,1h18c0.553,0,1-0.448,1-1V3\r\n\tC20,2.448,19.553,2,19,2z M18,16H2V4h16V16z M14.315,10.877l-3.231,1.605L7.314,6.381L4,14h12L14.315,10.877z M13.25,9\r\n\tc0.69,0,1.25-0.56,1.25-1.25S13.94,6.5,13.25,6.5S12,7.06,12,7.75S12.56,9,13.25,9z"
+ }
+ }]
+};
+exports.image = image;
+var inbox = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.253,9.542c-0.388-0.416-2.265-2.271-3.122-3.118C15.868,6.165,15.492,6,15.098,6H4.902c-0.394,0-0.77,0.165-1.033,0.424\r\n\tC3.011,7.271,1.135,9.125,0.747,9.542c-0.485,0.521-0.723,0.902-0.624,1.449s0.466,2.654,0.556,3.074\r\n\tC0.767,14.484,1.363,15,1.919,15h16.162c0.556,0,1.152-0.516,1.241-0.935c0.089-0.42,0.457-2.527,0.556-3.074\r\n\tS19.739,10.062,19.253,9.542z M14.014,10.003c-0.101,0-0.193,0.052-0.238,0.133L12.966,12H7.034l-0.809-1.864\r\n\tc-0.045-0.081-0.137-0.133-0.238-0.133H2.473L4.495,8h11.01l2.023,2.003H14.014z"
+ }
+ }]
+};
+exports.inbox = inbox;
+var infinity = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.902,5.6c-2.079,0-4.358,1.158-5.902,2.916C8.455,6.758,6.175,5.6,4.096,5.6C2.116,5.6,0,6.756,0,10\r\n\tc0,3.244,2.116,4.398,4.096,4.4l0,0c2.079,0,4.358-1.158,5.903-2.916c1.544,1.758,3.823,2.916,5.902,2.916\r\n\tC17.882,14.4,20,13.244,20,10C20,6.756,17.882,5.6,15.902,5.6z M4.096,12.641C2.584,12.641,1.8,11.752,1.8,10\r\n\tc0-1.752,0.784-2.641,2.296-2.641c1.673,0,3.614,1.086,4.807,2.641C7.71,11.555,5.769,12.641,4.096,12.641z M15.902,12.641\r\n\tc-1.673,0-3.614-1.086-4.807-2.641c1.192-1.555,3.135-2.641,4.807-2.641c1.512,0,2.298,0.889,2.298,2.641\r\n\tC18.2,11.752,17.414,12.641,15.902,12.641z"
+ }
+ }]
+};
+exports.infinity = infinity;
+var info = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.432,0c1.34,0,2.01,0.912,2.01,1.957c0,1.305-1.164,2.512-2.679,2.512c-1.269,0-2.009-0.75-1.974-1.99\r\n\tC9.789,1.436,10.67,0,12.432,0z M8.309,20c-1.058,0-1.833-0.652-1.093-3.524l1.214-5.092c0.211-0.814,0.246-1.141,0-1.141\r\n\tc-0.317,0-1.689,0.562-2.502,1.117L5.4,10.48c2.572-2.186,5.531-3.467,6.801-3.467c1.057,0,1.233,1.273,0.705,3.23l-1.391,5.352\r\n\tc-0.246,0.945-0.141,1.271,0.106,1.271c0.317,0,1.357-0.392,2.379-1.207l0.6,0.814C12.098,19.02,9.365,20,8.309,20z"
+ }
+ }]
+};
+exports.info = info;
+var install = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H12.02l0.38,4.065h2.7L10,10.293L4.9,6.065h2.7L7.98,2H5.546\r\n\tC4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927c-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18\r\n\th14.383c0.755,0,1.399-0.546,1.523-1.291l0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M16.959,15.245\r\n\tC16.887,15.681,16.51,16,16.068,16H3.932c-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867\r\n\tc0.558,0,0.983,0.501,0.891,1.052L16.959,15.245z"
+ }
+ }]
+};
+exports.install = install;
+var key = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.691,4.725c-0.503-2.977-3.22-4.967-6.069-4.441C8.772,0.809,6.366,3.1,6.869,6.079c0.107,0.641,0.408,1.644,0.763,2.365\r\n\tl-5.175,7.723c-0.191,0.285-0.299,0.799-0.242,1.141l0.333,1.971c0.058,0.342,0.372,0.572,0.7,0.514l1.516-0.281\r\n\tc0.328-0.059,0.744-0.348,0.924-0.639l2.047-3.311l0.018-0.022l1.386-0.256l2.39-3.879c0.785,0.139,1.912,0.092,2.578-0.031\r\n\tC16.955,10.848,18.194,7.704,17.691,4.725z M15.166,6.252c-0.784,1.17-1.584,0.346-2.703-0.475\r\n\tc-1.119-0.818-2.135-1.322-1.352-2.492c0.784-1.17,2.326-1.455,3.447-0.635C15.678,3.469,15.949,5.082,15.166,6.252z"
+ }
+ }]
+};
+exports.key = key;
+var keyboard = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.6,4h-17.2C0.629,4,0,4.629,0,5.4V14.6C0,15.369,0.629,16,1.399,16h17.2c0.77,0,1.4-0.631,1.4-1.4V5.4\r\n\tC20,4.629,19.369,4,18.6,4z M11,6h2v2h-2V6z M14,9v2h-2V9H14z M8,6h2v2H8V6z M11,9v2H9V9H11z M5,6h2v2H5V6z M8,9v2H6V9H8z M2,6h2v2\r\n\tH2V6z M5,9v2H3V9H5z M4,14H2v-2h2V14z M15,14H5v-2h10V14z M18,14h-2v-2h2V14z M15,11V9h2v2H15z M18,8h-4V6h4V8z"
+ }
+ }]
+};
+exports.keyboard = keyboard;
+var flask = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M16.432,15C14.387,9.893,12,8.547,12,6V3h0.5C12.776,3,13,2.776,13,2.5v-1\r\n\tC13,1.224,12.776,1,12.5,1h-5C7.224,1,7,1.224,7,1.5v1C7,2.776,7.224,3,7.5,3H8v3c0,2.547-2.387,3.893-4.432,9\r\n\tC2.917,16.625,1.245,19,10,19S17.083,16.625,16.432,15z M14.815,16.751C14.113,16.961,12.716,17.2,10,17.2s-4.113-0.239-4.815-0.449\r\n\tc-0.249-0.074-0.346-0.363-0.258-0.628c0.22-0.67,0.635-1.828,1.411-3.121c1.896-3.159,3.863,0.497,5.5,0.497\r\n\tc1.637,0,1.188-1.561,1.824-0.497c0.774,1.294,1.191,2.451,1.411,3.121C15.161,16.388,15.064,16.676,14.815,16.751z"
+ }
+ }]
+};
+exports.flask = flask;
+var landline = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.902,0.25C3.498-0.027,2.115,0.875,1.833,2.273c-1.105,5.455-1.105,9.997,0,15.454C2.08,18.952,3.17,19.8,4.388,19.8\r\n\tc0.17,0,0.342-0.016,0.515-0.05c1.412-0.279,2.329-1.638,2.046-3.036c-0.978-4.832-0.978-8.598,0-13.43\r\n\tC7.231,1.888,6.314,0.529,4.902,0.25z M17,2H8.436c0.073,0.467,0.081,0.951-0.017,1.44c-0.936,4.72-0.936,8.398,0,13.12\r\n\tc0.098,0.49,0.09,0.973,0.017,1.44H17c1.1,0,2-0.9,2-2V4C19,2.9,18.101,2,17,2z M12,14.5c-0.828,0-1.5-0.672-1.5-1.5\r\n\ts0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5S12.828,14.5,12,14.5z M17,9h-7V5h7V9z"
+ }
+ }]
+};
+exports.landline = landline;
+var language = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.753,10.909c-0.624-1.707-2.366-2.726-4.661-2.726c-0.09,0-0.176,0.002-0.262,0.006l-0.016-2.063\r\n\tc0,0,3.41-0.588,3.525-0.607s0.133-0.119,0.109-0.231c-0.023-0.111-0.167-0.883-0.188-0.976c-0.027-0.131-0.102-0.127-0.207-0.109\r\n\tc-0.104,0.018-3.25,0.461-3.25,0.461s-0.012-1.953-0.013-2.078c-0.001-0.125-0.069-0.158-0.194-0.156\r\n\tc-0.125,0.002-0.92,0.014-1.025,0.016c-0.105,0.002-0.164,0.049-0.162,0.148c0.002,0.1,0.033,2.307,0.033,2.307\r\n\ts-3.061,0.527-3.144,0.543c-0.084,0.014-0.17,0.053-0.151,0.143c0.019,0.09,0.19,1.094,0.208,1.172\r\n\tc0.018,0.08,0.072,0.129,0.188,0.107c0.115-0.019,2.924-0.504,2.924-0.504l0.035,2.018c-1.077,0.281-1.801,0.824-2.256,1.303\r\n\tc-0.768,0.807-1.207,1.887-1.207,2.963c0,1.586,0.971,2.529,2.328,2.695c3.162,0.387,5.119-3.06,5.769-4.715\r\n\tc1.097,1.506,0.256,4.354-2.094,5.98c-0.043,0.029-0.098,0.129-0.033,0.207c0.065,0.078,0.541,0.662,0.619,0.756\r\n\tc0.08,0.096,0.206,0.059,0.256,0.023C19.394,15.862,20.545,13.077,19.753,10.909z M12.367,14.097\r\n\tc-0.966-0.121-0.944-0.914-0.944-1.453c0-0.773,0.327-1.58,0.876-2.156c0.335-0.354,0.75-0.621,1.229-0.799l0.082,4.277\r\n\tC13.225,14.097,12.811,14.151,12.367,14.097z M14.794,13.544l0.046-4.109c0.084-0.004,0.166-0.01,0.252-0.01\r\n\tc0.773,0,1.494,0.145,1.885,0.361C17.368,10.003,15.954,12.499,14.794,13.544z M5.844,5.876C5.814,5.782,5.741,5.731,5.648,5.731\r\n\th-1.95c-0.093,0-0.165,0.051-0.194,0.144c-0.412,1.299-3.48,10.99-3.496,11.041c-0.017,0.051-0.011,0.076,0.062,0.076h1.733\r\n\tc0.075,0,0.099-0.023,0.114-0.072c0.015-0.051,1.008-3.318,1.008-3.318h3.496c0,0,0.992,3.268,1.008,3.318\r\n\tc0.016,0.049,0.039,0.072,0.113,0.072h1.734c0.072,0,0.078-0.025,0.062-0.076C9.324,16.866,6.255,7.175,5.844,5.876z M3.226,12.194\r\n\tl1.447-5.25l1.447,5.25H3.226z"
+ }
+ }]
+};
+exports.language = language;
+var laptop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.754,15.631C19.507,15.26,18,13,18,13V4c0-1.102-0.9-2-2-2H4C2.899,2,2,2.898,2,4v9c0,0-1.507,2.26-1.754,2.631\r\n\tC0,16,0,16.213,0,16.5V17c0,0.5,0.5,1,0.999,1h18.002C19.5,18,20,17.5,20,17v-0.5C20,16.213,20,16,19.754,15.631z M7,16l0.6-1h4.8\r\n\tl0.6,1H7z M16,12H4V4h12V12z"
+ }
+ }]
+};
+exports.laptop = laptop;
+var layers = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.248,11.601c0.45,0.313,1.05,0.313,1.5,0l9.088-5.281c0.236-0.164,0.21-0.518-0.048-0.646l-9.205-3.537\r\n\tc-0.368-0.183-0.802-0.183-1.17,0L0.208,5.674C-0.05,5.801-0.076,6.156,0.16,6.32L9.248,11.601z M19.788,10.811l-2.486-1.233\r\n\tl-5.725,3.327c-0.469,0.309-1.014,0.471-1.579,0.471s-1.11-0.163-1.579-0.471L2.698,9.576l-2.49,1.234\r\n\tc-0.258,0.128-0.284,0.482-0.048,0.646l9.088,6.309c0.45,0.313,1.05,0.313,1.5,0l9.088-6.309\r\n\tC20.072,11.293,20.046,10.939,19.788,10.811z"
+ }
+ }]
+};
+exports.layers = layers;
+var leaf = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.025,3.587c-4.356,2.556-4.044,7.806-7.096,10.175c-2.297,1.783-5.538,0.88-7.412,0.113c0,0-1.27,1.603-2.181,3.74\r\n\tc-0.305,0.717-1.644-0.073-1.409-0.68C3.905,9.25,14.037,5.416,14.037,5.416S6.888,5.113,2.11,11.356\r\n\tC1.982,9.93,1.77,6.072,5.47,3.706C10.486,0.495,20.042,2.991,19.025,3.587z"
+ }
+ }]
+};
+exports.leaf = leaf;
+var lifebuoy = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.788,3.212c-3.749-3.749-9.827-3.749-13.575,0c-3.75,3.75-3.75,9.828-0.002,13.576c3.75,3.75,9.828,3.75,13.578,0\r\n\tC20.537,13.039,20.537,6.961,16.788,3.212z M6.748,13.252c-1.797-1.797-1.797-4.709,0-6.505c1.795-1.796,4.709-1.796,6.506,0\r\n\tc1.797,1.797,1.795,4.709,0,6.505C11.457,15.049,8.545,15.049,6.748,13.252z M15.347,12.879c0.968-1.799,0.969-3.959,0-5.759\r\n\tl1.783-0.96c1.289,2.391,1.289,5.29,0.002,7.678L15.347,12.879z M13.839,2.869l-0.961,1.784c-1.799-0.967-3.959-0.967-5.756,0\r\n\tL6.161,2.87C8.551,1.582,11.448,1.582,13.839,2.869z M2.87,6.16l1.784,0.961c-0.968,1.798-0.968,3.957-0.001,5.756l-1.784,0.961\r\n\tC1.581,11.449,1.582,8.551,2.87,6.16z M6.159,17.129l0.961-1.783c1.799,0.969,3.96,0.969,5.759,0l0.961,1.785\r\n\tC11.448,18.418,8.55,18.418,6.159,17.129z"
+ }
+ }]
+};
+exports.lifebuoy = lifebuoy;
+var bulb = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M7.186,19.172C7.975,19.682,8.887,20.027,10,20\r\n\tc1.111,0.027,2.025-0.318,2.814-0.828L12.797,17H7.203L7.186,19.172z M12.697,16c0-4.357,4.63-5.848,4.283-10.188\r\n\tC16.762,3.074,14.907,0.002,10,0.002c-4.907,0-6.762,3.072-6.981,5.811C2.672,10.152,7.303,11.643,7.303,16H12.697z M5,6\r\n\tc0.207-2.598,2.113-4,5-4c2.886,0,4.654,1.371,4.861,3.969c0.113,1.424-0.705,2.373-1.809,3.926C12.238,11.041,11.449,12.238,11,14\r\n\tH9c-0.449-1.762-1.238-2.959-2.053-4.106C5.844,8.342,4.886,7.424,5,6z"
+ }
+ }]
+};
+exports.bulb = bulb;
+var link = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.859,14.691l-0.81,0.805c-0.701,0.695-1.843,0.695-2.545,0c-0.336-0.334-0.521-0.779-0.521-1.252\r\n\tc0-0.473,0.186-0.916,0.521-1.252l2.98-2.955c0.617-0.613,1.779-1.515,2.626-0.675c0.389,0.386,1.016,0.384,1.403-0.005\r\n\tc0.385-0.389,0.383-1.017-0.006-1.402C10.069,6.527,7.941,6.791,6.088,8.63l-2.98,2.956C2.393,12.295,2,13.24,2,14.244\r\n\tc0,1.006,0.394,1.949,1.108,2.658c0.736,0.73,1.702,1.096,2.669,1.096c0.967,0,1.934-0.365,2.669-1.096l0.811-0.805\r\n\tc0.389-0.385,0.391-1.012,0.005-1.4C8.875,14.309,8.248,14.307,7.859,14.691z M16.891,3.207c-1.547-1.534-3.709-1.617-5.139-0.197\r\n\tl-1.009,1.002c-0.389,0.386-0.392,1.013-0.006,1.401c0.386,0.389,1.013,0.391,1.402,0.005l1.01-1.001\r\n\tc0.74-0.736,1.711-0.431,2.346,0.197c0.336,0.335,0.522,0.779,0.522,1.252s-0.186,0.917-0.522,1.251l-3.18,3.154\r\n\tc-1.454,1.441-2.136,0.766-2.427,0.477c-0.389-0.386-1.016-0.383-1.401,0.005c-0.386,0.389-0.384,1.017,0.005,1.401\r\n\tc0.668,0.662,1.43,0.99,2.228,0.99c0.977,0,2.01-0.492,2.993-1.467l3.18-3.153C17.605,7.814,18,6.87,18,5.866\r\n\tC18,4.861,17.605,3.917,16.891,3.207z"
+ }
+ }]
+};
+exports.link = link;
+var list = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.4,9H8.6C8.048,9,8,9.447,8,10s0.048,1,0.6,1H14.4c0.552,0,0.6-0.447,0.6-1S14.952,9,14.4,9z M16.4,14H8.6\r\n\tC8.048,14,8,14.447,8,15s0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1S16.952,14,16.4,14z M8.6,6H16.4C16.952,6,17,5.553,17,5\r\n\ts-0.048-1-0.6-1H8.6C8.048,4,8,4.447,8,5S8.048,6,8.6,6z M5.4,9H3.6C3.048,9,3,9.447,3,10s0.048,1,0.6,1H5.4C5.952,11,6,10.553,6,10\r\n\tS5.952,9,5.4,9z M5.4,14H3.6C3.048,14,3,14.447,3,15s0.048,1,0.6,1H5.4C5.952,16,6,15.553,6,15S5.952,14,5.4,14z M5.4,4H3.6\r\n\tC3.048,4,3,4.447,3,5s0.048,1,0.6,1H5.4C5.952,6,6,5.553,6,5S5.952,4,5.4,4z"
+ }
+ }]
+};
+exports.list = list;
+var pin = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2.009c-2.762,0-5,2.229-5,4.99c0,4.774,5,11,5,11s5-6.227,5-11C15,4.239,12.762,2.009,10,2.009z M10,9.76\r\n\tc-1.492,0-2.7-1.209-2.7-2.7s1.208-2.7,2.7-2.7c1.49,0,2.699,1.209,2.699,2.7S11.49,9.76,10,9.76z"
+ }
+ }]
+};
+exports.pin = pin;
+var location = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.367,18.102L18,14h-1.5l0.833,4H2.667L3.5,14H2l-1.368,4.102C0.285,19.146,0.9,20,2,20h16\r\n\tC19.1,20,19.715,19.146,19.367,18.102z M15,5c0-2.761-2.238-5-5-5S5,2.239,5,5c0,4.775,5,10,5,10S15,9.775,15,5z M7.3,5.06\r\n\tc0-1.491,1.208-2.699,2.7-2.699s2.7,1.208,2.7,2.699c0,1.492-1.209,2.7-2.7,2.7S7.3,6.551,7.3,5.06z"
+ }
+ }]
+};
+exports.location = location;
+var open = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.8,8H14V5.6C14,2.703,12.665,1,10,1C7.334,1,6,2.703,6,5.6V6h2V5.199C8,3.754,8.797,3,10,3c1.203,0,2,0.754,2,2.199V8H4\r\n\tC3.447,8,3,8.646,3,9.199V17c0,0.549,0.428,1.139,0.951,1.307l1.197,0.387C5.672,18.861,6.55,19,7.1,19H12.9\r\n\tc0.549,0,1.428-0.139,1.951-0.307l1.196-0.387C16.571,18.139,17,17.549,17,17V9.199C17,8.646,16.352,8,15.8,8z"
+ }
+ }]
+};
+exports.open = open;
+var lock = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.8,8H14V5.6C14,2.703,12.665,1,10,1C7.334,1,6,2.703,6,5.6V8H4C3.447,8,3,8.646,3,9.199V17\r\n\tc0,0.549,0.428,1.139,0.951,1.307l1.197,0.387C5.672,18.861,6.55,19,7.1,19H12.9c0.549,0,1.428-0.139,1.951-0.307l1.196-0.387\r\n\tC16.571,18.139,17,17.549,17,17V9.199C17,8.646,16.352,8,15.8,8z M12,8H8V5.199C8,3.754,8.797,3,10,3c1.203,0,2,0.754,2,2.199V8z"
+ }
+ }]
+};
+exports.lock = lock;
+var out = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,10l-6-5v3H6v4h7v3L19,10z M3,3h8V1H3C1.9,1,1,1.9,1,3v14c0,1.1,0.9,2,2,2h8v-2H3V3z"
+ }
+ }]
+};
+exports.out = out;
+var login = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,10L8,5v3H1v4h7v3L14,10z M17,17H9v2h8c1.1,0,2-0.9,2-2V3c0-1.1-0.9-2-2-2H9v2h8V17z"
+ }
+ }]
+};
+exports.login = login;
+var loop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20,7v7c0,1.103-0.896,2-2,2H2c-1.104,0-2-0.897-2-2V7c0-1.104,0.896-2,2-2h7V3l4,3.5L9,10V8H3v5h14V8h-3V5h4\r\n\tC19.104,5,20,5.896,20,7z"
+ }
+ }]
+};
+exports.loop = loop;
+var magnet = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.165,17.86c-0.028,0.309,0.217,0.584,0.545,0.611l3.985,0.326c0.329,0.027,0.621-0.203,0.65-0.512l0.311-3.287\r\n\tl-5.18-0.426L12.165,17.86z M2.344,14.999l0.312,3.287c0.028,0.309,0.321,0.539,0.65,0.512l3.985-0.326\r\n\tc0.328-0.027,0.573-0.303,0.546-0.611l-0.312-3.287L2.344,14.999z M1.831,9.583l0.321,3.391l5.181-0.426L7.011,9.161\r\n\tc-0.007-0.082-0.011-0.166-0.011-0.25c0-1.555,1.346-2.82,3-2.82s3,1.266,3,2.82c0,0.084-0.004,0.168-0.012,0.25l-0.321,3.387\r\n\tl5.181,0.426l0.321-3.391c0.021-0.225,0.03-0.449,0.03-0.672C18.2,4.659,14.522,1.2,10,1.2S1.8,4.659,1.8,8.911\r\n\tC1.8,9.134,1.811,9.358,1.831,9.583z"
+ }
+ }]
+};
+exports.magnet = magnet;
+var mail = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.574,5.286c0.488,0.262,7.248,3.894,7.5,4.029C9.326,9.45,9.652,9.514,9.98,9.514c0.328,0,0.654-0.064,0.906-0.199\r\n\ts7.012-3.767,7.5-4.029C18.875,5.023,19.337,4,18.44,4H1.521C0.624,4,1.086,5.023,1.574,5.286z M18.613,7.489\r\n\tc-0.555,0.289-7.387,3.849-7.727,4.027s-0.578,0.199-0.906,0.199s-0.566-0.021-0.906-0.199S1.941,7.777,1.386,7.488\r\n\tC0.996,7.284,1,7.523,1,7.707S1,15,1,15c0,0.42,0.566,1,1,1h16c0.434,0,1-0.58,1-1c0,0,0-7.108,0-7.292S19.004,7.285,18.613,7.489z"
+ }
+ }]
+};
+exports.mail = mail;
+var man = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,4c1.104,0,2-0.896,2-2c0-1.105-0.896-2-2-2S8,0.895,8,2C8,3.104,8.896,4,10,4z M15.978,11.583\r\n\tc-0.385-1.775-1.058-4.688-2.042-5.894C12.979,4.516,11.051,4.467,10,4.467h0c-1.051,0-2.979,0.049-3.936,1.222\r\n\tC5.08,6.895,4.407,9.808,4.022,11.583c-0.213,0.983,1.154,1.344,1.511,0.355c0.531-1.473,0.941-2.71,1.839-3.736\r\n\tC7.844,11.109,6.102,16.168,6,19c0,0.552,0.448,1,1,1c0.426,0,0.79-0.266,0.934-0.642C8.391,17.771,10,13.355,10,13.355l0,0l0,0\r\n\tc0,0,1.609,4.416,2.066,6.003C12.21,19.734,12.574,20,13,20c0.552,0,1-0.448,1-1c-0.102-2.832-1.844-7.891-1.372-10.797\r\n\tc0.898,1.026,1.308,2.263,1.839,3.736C14.823,12.927,16.191,12.566,15.978,11.583z"
+ }
+ }]
+};
+exports.man = man;
+var map = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.447,3.718l-6-3c-0.281-0.141-0.613-0.141-0.895,0l-5.63,2.815L1.316,1.664C1.01,1.562,0.676,1.613,0.415,1.802\r\n\tC0.154,1.99,0,2.292,0,2.613v13.001c0,0.379,0.214,0.725,0.553,0.894l6,3c0.141,0.07,0.294,0.106,0.447,0.106\r\n\ts0.307-0.035,0.447-0.106l5.63-2.814l5.606,1.869c0.305,0.1,0.64,0.049,0.901-0.139c0.261-0.188,0.415-0.49,0.415-0.81V4.612\r\n\tC20,4.233,19.786,3.887,19.447,3.718z M8,5.231l4-2v11.763l-4,2V5.231z M2,4l4,1.333v11.661l-4-2V4z M18,16.227l-4-1.334V3.231l4,2\r\n\tV16.227z"
+ }
+ }]
+};
+exports.map = map;
+var mask = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.581,5.84c-0.043-0.469-0.462-0.803-0.92-0.73C16.919,5.388,12.835,7,10,7C7.165,7,3.081,5.388,1.339,5.11\r\n\tc-0.458-0.073-0.876,0.26-0.92,0.729C0.277,7.371,0,11.45,0,12.068c0,0.83,3.472,2.732,6,2.732c2.452,0,2.95-2.732,4-2.732\r\n\ts1.548,2.732,4,2.732c2.528,0,6-1.902,6-2.732C20,11.45,19.723,7.371,19.581,5.84z M7.66,10.72c-0.353,0.318-1.335,1.07-2.531,0.835\r\n\tc-1.196-0.235-1.919-1.323-2.166-1.758C2.903,9.691,2.922,9.557,3.007,9.48C3.36,9.162,4.342,8.41,5.539,8.645\r\n\tc1.196,0.235,1.919,1.323,2.166,1.758C7.764,10.509,7.745,10.643,7.66,10.72z M17.037,9.797c-0.246,0.436-0.969,1.523-2.166,1.758\r\n\tc-1.196,0.235-2.179-0.517-2.531-0.835c-0.086-0.077-0.104-0.211-0.045-0.317c0.246-0.436,0.969-1.523,2.166-1.758\r\n\tc1.196-0.235,2.179,0.517,2.531,0.835C17.078,9.557,17.097,9.691,17.037,9.797z"
+ }
+ }]
+};
+exports.mask = mask;
+var medal = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,10c0.528,0,1.026,0.104,1.504,0.256L5.427,1.141C5.368,1.053,5.27,1,5.164,1H1.608C1.491,1,1.42,1.131,1.486,1.229\r\n\tl6.231,9.347C8.404,10.22,9.173,10,10,10z M18.392,1h-3.556c-0.106,0-0.204,0.053-0.263,0.141L10.75,6.875l2,3l5.764-8.646\r\n\tC18.579,1.131,18.509,1,18.392,1z M10,11c-2.209,0-4,1.791-4,4c0,2.209,1.791,4,4,4s4-1.791,4-4C14,12.791,12.209,11,10,11z\r\n\t M12.112,15.117c0.062,0.064,0.052,0.158-0.022,0.208c-0.074,0.05-0.095,0.153-0.049,0.229c0.047,0.076,0.018,0.165-0.065,0.199\r\n\ts-0.125,0.13-0.095,0.214s-0.017,0.165-0.104,0.181s-0.149,0.101-0.137,0.189s-0.051,0.158-0.14,0.155\r\n\tc-0.089-0.003-0.167,0.068-0.174,0.156s-0.083,0.144-0.169,0.123s-0.178,0.031-0.203,0.117s-0.111,0.124-0.191,0.085\r\n\tc-0.08-0.039-0.18-0.006-0.222,0.072s-0.134,0.098-0.205,0.043s-0.175-0.044-0.232,0.024s-0.151,0.068-0.209,0\r\n\ts-0.162-0.079-0.232-0.024s-0.162,0.035-0.205-0.043s-0.142-0.111-0.222-0.072c-0.08,0.039-0.166,0-0.191-0.085\r\n\ts-0.116-0.138-0.203-0.117s-0.163-0.034-0.169-0.123S8.589,16.489,8.5,16.491c-0.089,0.003-0.152-0.067-0.14-0.155\r\n\ts-0.05-0.173-0.137-0.189s-0.135-0.097-0.104-0.181s-0.013-0.18-0.095-0.214s-0.111-0.123-0.065-0.199\r\n\tc0.047-0.076,0.025-0.179-0.049-0.229c-0.074-0.05-0.083-0.144-0.022-0.208c0.062-0.064,0.062-0.169,0-0.234\r\n\ts-0.052-0.158,0.022-0.208s0.095-0.153,0.049-0.229c-0.047-0.076-0.018-0.165,0.065-0.199s0.125-0.13,0.095-0.214\r\n\ts0.017-0.165,0.104-0.181s0.149-0.101,0.137-0.189s0.051-0.158,0.14-0.155c0.089,0.003,0.167-0.068,0.174-0.156\r\n\ts0.083-0.144,0.169-0.123s0.178-0.031,0.203-0.117s0.111-0.124,0.191-0.085c0.08,0.039,0.18,0.006,0.222-0.072\r\n\ts0.134-0.098,0.205-0.043s0.175,0.044,0.232-0.024s0.151-0.068,0.209,0s0.162,0.079,0.232,0.024s0.162-0.035,0.205,0.043\r\n\ts0.142,0.111,0.222,0.072c0.08-0.039,0.166,0,0.191,0.085s0.116,0.138,0.203,0.117s0.163,0.034,0.169,0.123s0.085,0.159,0.174,0.156\r\n\tc0.089-0.003,0.152,0.067,0.14,0.155s0.05,0.173,0.137,0.189s0.135,0.097,0.104,0.181s0.013,0.18,0.095,0.214\r\n\ts0.111,0.123,0.065,0.199c-0.047,0.076-0.025,0.179,0.049,0.229s0.083,0.144,0.022,0.208S12.05,15.053,12.112,15.117z"
+ }
+ }]
+};
+exports.medal = medal;
+var megaphone = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.223,7.03c-1.584-3.686-4.132-6.49-5.421-5.967c-2.189,0.891,1.304,5.164-9.447,9.533\r\n\tc-0.929,0.379-1.164,1.888-0.775,2.792c0.388,0.902,1.658,1.801,2.587,1.424c0.161-0.066,0.751-0.256,0.751-0.256\r\n\tc0.663,0.891,1.357,0.363,1.604,0.928c0.296,0.68,0.939,2.158,1.158,2.66c0.219,0.502,0.715,0.967,1.075,0.83\r\n\tc0.359-0.137,1.582-0.602,2.05-0.779c0.468-0.178,0.579-0.596,0.436-0.924c-0.154-0.355-0.786-0.459-0.967-0.873\r\n\tc-0.18-0.412-0.769-1.738-0.938-2.156c-0.23-0.568,0.259-1.031,0.97-1.104c4.894-0.512,5.809,2.512,7.475,1.834\r\n\tC19.068,14.447,18.806,10.713,17.223,7.03z M16.672,13.006c-0.287,0.115-2.213-1.402-3.443-4.267\r\n\tc-1.231-2.863-1.076-5.48-0.79-5.597c0.286-0.115,2.165,1.717,3.395,4.58C17.065,10.585,16.958,12.889,16.672,13.006z"
+ }
+ }]
+};
+exports.megaphone = megaphone;
+var menu = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.4,9H3.6C3.048,9,3,9.447,3,10c0,0.553,0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1C17,9.447,16.952,9,16.4,9z M16.4,13\r\n\tH3.6C3.048,13,3,13.447,3,14c0,0.553,0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1C17,13.447,16.952,13,16.4,13z M3.6,7H16.4\r\n\tC16.952,7,17,6.553,17,6c0-0.553-0.048-1-0.6-1H3.6C3.048,5,3,5.447,3,6C3,6.553,3.048,7,3.6,7z"
+ }
+ }]
+};
+exports.menu = menu;
+var merge = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.8896484,17.7070312L16.8916016,20C13.7548828,18.6341553,11.3964844,16.8476562,10,14.7250977\r\n\tC8.6035156,16.8476562,6.2451172,18.6341553,3.1083984,20l-0.9980469-2.2929688\r\n\tC5.1396484,16.3886719,8.5498047,14.1015625,8.5498047,10V7H5.5L10,0l4.5,7h-3.0498047v3\r\n\tC11.4501953,14.1015625,14.8603516,16.3886719,17.8896484,17.7070312z"
+ }
+ }]
+};
+exports.merge = merge;
+var message = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,6v7c0,1.1-0.9,2-2,2h-4v3l-4-3H4c-1.101,0-2-0.9-2-2V6c0-1.1,0.899-2,2-2h12C17.1,4,18,4.9,18,6z"
+ }
+ }]
+};
+exports.message = message;
+var mic = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.399,7.643V10.4c0,2.236-1.643,4.629-5.399,4.959V18h2.6c0.22,0,0.4,0.18,0.4,0.4V19.6c0,0.221-0.181,0.4-0.4,0.4h-7.2\r\n\tC6.18,20,6,19.82,6,19.6V18.4C6,18.18,6.18,18,6.399,18H9v-2.641c-3.758-0.33-5.4-2.723-5.4-4.959V7.643c0-0.221,0.18-0.4,0.4-0.4\r\n\th0.6c0.22,0,0.4,0.18,0.4,0.4V10.4c0,1.336,1.053,3.6,5,3.6c3.946,0,5-2.264,5-3.6V7.643c0-0.221,0.18-0.4,0.399-0.4H16\r\n\tC16.22,7.242,16.399,7.422,16.399,7.643z M10,12c2.346,0,3-0.965,3-1.6V7.242H7V10.4C7,11.035,7.652,12,10,12z M13,1.6\r\n\tC13,0.963,12.346,0,10,0C7.652,0,7,0.963,7,1.6v4.242h6V1.6z"
+ }
+ }]
+};
+exports.mic = mic;
+var minus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,10c0,0.553-0.048,1-0.601,1H4.601C4.049,11,4,10.553,4,10c0-0.553,0.049-1,0.601-1h10.799C15.952,9,16,9.447,16,10z"
+ }
+ }]
+};
+exports.minus = minus;
+var mobile = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.004,0H5.996C4.894,0,4,0.894,4,1.996v16.007C4,19.106,4.894,20,5.996,20h8.007C15.106,20,16,19.106,16,18.004V1.996\r\n\tC16,0.894,15.106,0,14.004,0z M10,19c-0.69,0-1.25-0.447-1.25-1s0.56-1,1.25-1s1.25,0.447,1.25,1S10.69,19,10,19z M14,16H6V2h8V16z"
+ }
+ }]
+};
+exports.mobile = mobile;
+var moon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.719,1.8c0.686,0.385,1.332,0.867,1.916,1.449c3.42,3.422,3.42,8.966,0,12.386c-3.42,3.42-8.965,3.42-12.386,0\r\n\tc-0.583-0.584-1.065-1.231-1.449-1.916c3.335,1.867,7.633,1.387,10.469-1.449C15.106,9.433,15.587,5.136,13.719,1.8z"
+ }
+ }]
+};
+exports.moon = moon;
+var pointer = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.8601685,11.9953299l2.5251465,6.0802317L11.1703491,19l-2.5252075-6.050354L5,16.6248779V1.1005249\r\n\tl10.9461327,10.8882742L10.8601685,11.9953299z"
+ }
+ }]
+};
+exports.pointer = pointer;
+var mouse = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.402,14.402l-2.627-7.535c-0.722-2.073-2.966-3.22-5.092-2.653L5.707,0.379C5.528,0.033,5.109-0.1,4.769,0.083\r\n\tC4.43,0.266,4.3,0.697,4.48,1.044l1.929,3.742C4.872,5.806,4.073,7.74,4.58,9.56l2.139,7.696c0.602,2.162,3.08,3.264,5.571,2.502\r\n\tC14.749,18.895,16.14,16.521,15.402,14.402z M8.899,8.923c-0.73,0.24-1.511-0.172-1.745-0.921C6.919,7.254,7.322,6.454,8.051,6.214\r\n\tc0.73-0.24,1.512,0.172,1.746,0.92S9.629,8.683,8.899,8.923z"
+ }
+ }]
+};
+exports.mouse = mouse;
+var network = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.274,6.915c0.2,0,0.394,0.029,0.576,0.086c0.69-0.773,1.455-1.477,2.283-2.1C8.098,4.755,8.079,4.602,8.079,4.446\r\n\tc0-0.217,0.036-0.426,0.102-0.621C7.252,3.161,6.244,2.602,5.17,2.171C4.165,2.792,3.288,3.602,2.588,4.552\r\n\tc0.519,0.92,1.136,1.777,1.838,2.557C4.682,6.985,4.969,6.915,5.274,6.915z M3.316,8.872c0-0.275,0.058-0.537,0.159-0.773\r\n\tC2.847,7.407,2.278,6.663,1.78,5.87C1.155,7.112,0.8,8.515,0.8,10.001c0,1.719,0.474,3.328,1.295,4.705\r\n\tc0.294-1.654,0.851-3.219,1.62-4.652C3.465,9.726,3.316,9.315,3.316,8.872z M10.036,2.489c0.517,0,0.985,0.201,1.336,0.529\r\n\tc1.021-0.439,2.096-0.777,3.215-0.992C13.236,1.247,11.67,0.8,10,0.8c-1.139,0-2.229,0.209-3.236,0.588\r\n\tc0.799,0.395,1.561,0.855,2.277,1.375C9.333,2.589,9.672,2.489,10.036,2.489z M12.962,11.708c0.122-0.254,0.295-0.479,0.509-0.656\r\n\tc-0.578-1.777-1.493-3.404-2.672-4.803c-0.234,0.1-0.492,0.154-0.764,0.154c-0.425,0-0.816-0.137-1.137-0.365\r\n\tc-0.71,0.539-1.367,1.143-1.964,1.803C7.122,8.14,7.231,8.493,7.231,8.872c0,0.203-0.031,0.4-0.09,0.586\r\n\tC8.858,10.604,10.835,11.392,12.962,11.708z M15.501,14.351c0.026,0.371,0.041,0.744,0.041,1.121c0,0.664-0.042,1.318-0.122,1.961\r\n\tc1.56-1.139,2.748-2.758,3.347-4.639c-0.71,0.172-1.438,0.295-2.181,0.365C16.413,13.696,16.014,14.128,15.501,14.351z\r\n\t M12.504,13.024c-2.272-0.377-4.377-1.244-6.21-2.484c-0.298,0.182-0.647,0.289-1.021,0.289c-0.139,0-0.272-0.014-0.402-0.041\r\n\tc-0.877,1.662-1.438,3.517-1.599,5.484c0.876,0.94,1.944,1.697,3.145,2.205C7.909,16.184,9.993,14.288,12.504,13.024z M16.176,3.181\r\n\tc-1.475,0.143-2.883,0.514-4.193,1.068c0.006,0.066,0.01,0.131,0.01,0.197c0,0.309-0.074,0.6-0.201,0.859\r\n\tc1.311,1.539,2.327,3.33,2.969,5.291c0.797,0.016,1.477,0.502,1.77,1.195c0.886-0.09,1.748-0.26,2.578-0.504\r\n\tc0.06-0.42,0.092-0.85,0.092-1.287C19.2,7.296,18.034,4.864,16.176,3.181z M13.489,14.069c-2.344,1.098-4.304,2.789-5.723,4.856\r\n\tC8.481,19.104,9.229,19.2,10,19.2c1.387,0,2.702-0.309,3.882-0.859c0.19-0.928,0.29-1.887,0.29-2.869\r\n\tc0-0.355-0.016-0.707-0.043-1.055C13.893,14.341,13.676,14.224,13.489,14.069z"
+ }
+ }]
+};
+exports.network = network;
+var newIcon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.69,12.344l-1.727-1.538c-0.5-0.445-0.5-1.174,0-1.619l1.727-1.539c0.5-0.445,0.367-0.859-0.296-0.924l-2.29-0.217\r\n\tc-0.662-0.062-1.02-0.633-0.791-1.266l1.215-3.383c0.228-0.635-0.051-0.865-0.619-0.514l-2.701,1.67\r\n\tc-0.568,0.354-1.303,0.16-1.631-0.426l-0.978-1.746c-0.329-0.588-0.872-0.59-1.207-0.008l-0.909,1.58\r\n\tC8.146,2.999,7.375,3.247,6.77,2.97l-1.6-0.734C4.562,1.956,4.097,2.278,4.133,2.952l0.086,1.615\r\n\tc0.037,0.674-0.461,1.367-1.104,1.541L1.57,6.522C0.928,6.696,0.81,7.202,1.31,7.647l1.727,1.539c0.5,0.445,0.5,1.174,0,1.619\r\n\tL1.31,12.344c-0.5,0.445-0.368,0.877,0.293,0.957l2.095,0.254c0.661,0.08,1.029,0.67,0.818,1.311l-1.074,3.258\r\n\tc-0.211,0.641,0.09,0.889,0.668,0.555l2.463-1.426c0.578-0.334,1.356-0.15,1.729,0.408l1.022,1.539\r\n\tc0.372,0.559,0.931,0.529,1.24-0.068l0.899-1.733c0.31-0.598,1.052-0.842,1.648-0.543l1.734,0.867\r\n\tc0.598,0.297,1.057-0.01,1.021-0.682l-0.087-1.617c-0.035-0.674,0.461-1.365,1.106-1.539l1.543-0.416\r\n\tC19.072,13.295,19.19,12.789,18.69,12.344z M11,14H9v-2h2V14z M11,11H9V6h2V11z"
+ }
+ }]
+};
+exports.newIcon = newIcon;
+var news = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M14,5h-4v2h4V5z M14,8h-4v1h4V8z M9,5H6v4h3V5z M9,11h5v-1H9V11z M12,13h2v-1h-2\r\n\tV13z M14,14H6v1h8V14z M11,12H6v1h5V12z M8,10H6v1h2V10z M17,1H3C2.447,1,2,1.447,2,2v16c0,0.552,0.447,1,1,1h14\r\n\tc0.553,0,1-0.448,1-1V2C18,1.448,17.553,1,17,1z M16,17H4V3h12V17z"
+ }
+ }]
+};
+exports.news = news;
+var newsletter = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,3H2C1.4472656,3,1,3.4472656,1,4v12c0,0.5517578,0.4472656,1,1,1h16c0.5527344,0,1-0.4482422,1-1V4\r\n\tC19,3.4481812,18.5527344,3,18,3z M4,10h6v1H4V10z M12,14H4v-1h8V14z M17,8h-3V5h3V8z"
+ }
+ }]
+};
+exports.newsletter = newsletter;
+var notification = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,8.38V17H3V5h8.62c-0.073-0.322-0.12-0.655-0.12-1s0.047-0.678,0.12-1H3C1.898,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h12\r\n\tc1.1,0,2-0.9,2-2V8.38c-0.322,0.073-0.655,0.12-1,0.12S15.322,8.453,15,8.38z M16,1c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3\r\n\tS17.657,1,16,1z"
+ }
+ }]
+};
+exports.notification = notification;
+var off = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.8,17.4c0.2,0.2,0.2,0.5,0,0.7l-0.7,0.7c-0.2,0.2-0.5,0.2-0.7,0L1.2,2.6C1,2.4,1,2.1,1.2,1.9l0.7-0.7\r\n\tC2.1,1,2.4,1,2.6,1.2L18.8,17.4z M16,7c1.7,0,3-1.3,3-3c0-1.7-1.3-3-3-3s-3,1.3-3,3C13,5.7,14.3,7,16,7z M15,8.4v3.8l2,2V8.4\r\n\tc-0.3,0.1-0.7,0.1-1,0.1S15.3,8.5,15,8.4z M11.6,5c-0.1-0.3-0.1-0.7-0.1-1c0-0.3,0-0.7,0.1-1H5.8l2,2H11.6z M5,15V7.8l-2-2V15\r\n\tc0,1.1,0.9,2,2,2h9.2l-2-2H5z"
+ }
+ }]
+};
+exports.off = off;
+var phone = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.256,12.253c-0.096-0.667-0.611-1.187-1.274-1.342c-2.577-0.604-3.223-2.088-3.332-3.734C12.193,7.092,11.38,7,10,7\r\n\tS7.807,7.092,7.35,7.177c-0.109,1.646-0.755,3.13-3.332,3.734c-0.663,0.156-1.178,0.675-1.274,1.342l-0.497,3.442\r\n\tC2.072,16.907,2.962,18,4.2,18h11.6c1.237,0,2.128-1.093,1.953-2.305L17.256,12.253z M10,15.492c-1.395,0-2.526-1.12-2.526-2.5\r\n\ts1.131-2.5,2.526-2.5s2.526,1.12,2.526,2.5S11.394,15.492,10,15.492z M19.95,6C19.926,4.5,16.108,2.001,10,2\r\n\tC3.891,2.001,0.073,4.5,0.05,6s0.021,3.452,2.535,3.127c2.941-0.381,2.76-1.408,2.76-2.876C5.345,5.227,7.737,4.98,10,4.98\r\n\ts4.654,0.247,4.655,1.271c0,1.468-0.181,2.495,2.76,2.876C19.928,9.452,19.973,7.5,19.95,6z"
+ }
+ }]
+};
+exports.phone = phone;
+var palette = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.74,2.608C12.212,1.422,8.674,1.647,5.02,3.882c-2.853,1.743-4.718,6.076-4.103,9.182\r\n\tc0.728,3.671,4.351,5.995,9.243,4.651c5.275-1.449,6.549-4.546,6.379-5.334c-0.17-0.788-2.665-1.652-1.718-3.498\r\n\tc1.188-2.313,3.129-1.149,3.982-1.622C19.658,6.789,19.342,3.819,15.74,2.608z M12.094,13.314c-0.798,0.218-1.623-0.256-1.843-1.059\r\n\tc-0.221-0.805,0.248-1.631,1.046-1.849c0.798-0.218,1.622,0.254,1.843,1.059C13.36,12.268,12.892,13.096,12.094,13.314z"
+ }
+ }]
+};
+exports.palette = palette;
+var plane = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.64,2.634C18.296,2.755,1.319,8.738,0.984,8.856c-0.284,0.1-0.347,0.345-0.01,0.479c0.401,0.161,3.796,1.521,3.796,1.521\r\n\tl0,0l2.25,0.901c0,0,10.838-7.958,10.984-8.066c0.148-0.108,0.318,0.095,0.211,0.211c-0.107,0.117-7.871,8.513-7.871,8.513v0.002\r\n\tL9.892,12.92l0.599,0.322l0,0c0,0,4.65,2.504,4.982,2.682c0.291,0.156,0.668,0.027,0.752-0.334\r\n\tc0.099-0.426,2.845-12.261,2.906-12.525C19.21,2.722,18.983,2.513,18.64,2.634z M7,17.162c0,0.246,0.139,0.315,0.331,0.141\r\n\tc0.251-0.229,2.85-2.561,2.85-2.561L7,13.098V17.162z"
+ }
+ }]
+};
+exports.plane = plane;
+var pencil = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.69,2.661c-1.894-1.379-3.242-1.349-3.754-1.266c-0.144,0.023-0.265,0.106-0.35,0.223l-4.62,6.374l-2.263,3.123\r\n\tc-0.277,0.382-0.437,0.836-0.462,1.307l-0.296,5.624c-0.021,0.405,0.382,0.698,0.76,0.553l5.256-2.01\r\n\tc0.443-0.17,0.828-0.465,1.106-0.849l1.844-2.545l5.036-6.949c0.089-0.123,0.125-0.273,0.1-0.423\r\n\tC16.963,5.297,16.56,4.021,14.69,2.661z M8.977,15.465l-2.043,0.789c-0.08,0.031-0.169,0.006-0.221-0.062\r\n\tc-0.263-0.335-0.576-0.667-1.075-1.03c-0.499-0.362-0.911-0.558-1.31-0.706c-0.08-0.03-0.131-0.106-0.126-0.192l0.122-2.186\r\n\tl0.549-0.755c0,0,1.229-0.169,2.833,0.998c1.602,1.166,1.821,2.388,1.821,2.388L8.977,15.465z"
+ }
+ }]
+};
+exports.pencil = pencil;
+var chart = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,0.958v9.039C11,10.551,10.551,11,9.997,11H0.958c0.498,4.555,4.355,8.1,9.042,8.1c5.026,0,9.1-4.074,9.1-9.1\r\n\tC19.1,5.312,15.555,1.456,11,0.958z M9,0.958C4.774,1.42,1.42,4.774,0.958,9H9V0.958z"
+ }
+ }]
+};
+exports.chart = chart;
+var plus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,10c0,0.553-0.048,1-0.601,1H11v4.399C11,15.951,10.553,16,10,16c-0.553,0-1-0.049-1-0.601V11H4.601\r\n\tC4.049,11,4,10.553,4,10c0-0.553,0.049-1,0.601-1H9V4.601C9,4.048,9.447,4,10,4c0.553,0,1,0.048,1,0.601V9h4.399\r\n\tC15.952,9,16,9.447,16,10z"
+ }
+ }]
+};
+exports.plus = plus;
+var popup = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,2H7.979C6.88,2,6,2.88,6,3.98V12c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M16,12H8V4h8V12z M4,10H2v6\r\n\tc0,1.1,0.9,2,2,2h6v-2H4V10z"
+ }
+ }]
+};
+exports.popup = popup;
+var plug = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,14v1.498C0,15.775,0.225,16,0.502,16h0.997C1.775,16,2,15.775,2,15.498V14c0-0.959,0.801-2.273,2-2.779V9.116\r\n\tC1.684,9.652,0,11.97,0,14z M12.065,4.701L9.535,6.599C9.188,6.859,8.766,7,8.332,7H6.005C5.45,7,5,7.45,5,8.005v3.991\r\n\tC5,12.55,5.45,13,6.005,13h2.327c0.434,0,0.856,0.141,1.203,0.401l2.531,1.898C12.672,15.754,13.41,16,14.168,16H16V4h-1.832\r\n\tC13.41,4,12.672,4.246,12.065,4.701z M17,6v2h3V6H17z M17,14h3v-2h-3V14z"
+ }
+ }]
+};
+exports.plug = plug;
+var tag = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.tag = tag;
+var print = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.501,6h17c0.57,0,0.477-0.608,0.193-0.707C18.409,5.194,15.251,4,14.7,4H14V1H6v3H5.301c-0.55,0-3.709,1.194-3.993,1.293\r\n\tC1.024,5.392,0.931,6,1.501,6z M19,7H1C0.45,7,0,7.45,0,8v5c0,0.551,0.45,1,1,1h2.283l-0.882,5h15.199l-0.883-5H19\r\n\tc0.551,0,1-0.449,1-1V8C20,7.45,19.551,7,19,7z M4.603,17l1.198-7.003H14.2L15.399,17H4.603z"
+ }
+ }]
+};
+exports.print = print;
+var empty = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z"
+ }
+ }]
+};
+exports.empty = empty;
+var full = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z\r\n\t M12,8H8v4h4V8z M17,8h-4v4h4V8z"
+ }
+ }]
+};
+exports.full = full;
+var one = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z"
+ }
+ }]
+};
+exports.one = one;
+var two = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z\r\n\t M12,8H8v4h4V8z"
+ }
+ }]
+};
+exports.two = two;
+var publish = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.967,8.193L5,13h3v6h4v-6h3L9.967,8.193z M18,1H2C0.9,1,0,1.9,0,3v12c0,1.1,0.9,2,2,2h4v-2H2V6h16v9h-4v2h4\r\n\tc1.1,0,2-0.9,2-2V3C20,1.9,19.1,1,18,1z M2.5,4.25c-0.414,0-0.75-0.336-0.75-0.75c0-0.414,0.336-0.75,0.75-0.75\r\n\tc0.414,0,0.75,0.336,0.75,0.75C3.25,3.914,2.914,4.25,2.5,4.25z M4.5,4.25c-0.414,0-0.75-0.336-0.75-0.75\r\n\tc0-0.414,0.336-0.75,0.75-0.75c0.414,0,0.75,0.336,0.75,0.75C5.25,3.914,4.914,4.25,4.5,4.25z M18,4H6V3h12.019L18,4z"
+ }
+ }]
+};
+exports.publish = publish;
+var quote = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.315,3.401c-1.61,0-2.916,1.343-2.916,3c0,1.656,1.306,3,2.916,3c2.915,0,0.972,5.799-2.916,5.799v1.4\r\n\tC9.338,16.601,12.057,3.401,5.315,3.401z M13.715,3.401c-1.609,0-2.915,1.343-2.915,3c0,1.656,1.306,3,2.915,3\r\n\tc2.916,0,0.973,5.799-2.915,5.799v1.4C17.738,16.601,20.457,3.401,13.715,3.401z"
+ }
+ }]
+};
+exports.quote = quote;
+var radio = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,8H5.021l8.974-5.265L13,1L1.736,7.571C1.28,7.837,1,8.324,1,8.852V17c0,1.105,0.895,2,2,2h14c1.105,0,2-0.895,2-2v-7\r\n\tC19,8.895,18.105,8,17,8z M15.5,17c-0.828,0-1.5-0.672-1.5-1.5c0-0.828,0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5\r\n\tC17,16.328,16.328,17,15.5,17z M17,12H3v-2h14V12z"
+ }
+ }]
+};
+exports.radio = radio;
+var all = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.225,5.767V3.086L0,9.542l7.225,6.691v-2.777L3,9.542L7.225,5.767z M12.225,6.953V3.086L5,9.542l7.225,6.691v-4.357\r\n\tc3.292,0,5.291,0.422,7.775,4.81C20,16.685,19.632,6.953,12.225,6.953z"
+ }
+ }]
+};
+exports.all = all;
+var reply = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,16.685c0,0-2.225-9.732-11-9.732V2.969L1,9.542l7,6.69v-4.357C12.763,11.874,16.516,12.296,19,16.685z"
+ }
+ }]
+};
+exports.reply = reply;
+var oneHundredPercent = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.1,14.1L1,17l2,2l2.9-3.1L8,18v-6H2L4.1,14.1z M19,3l-2-2l-2.9,3.1L12,2v6h6l-2.1-2.1L19,3z"
+ }
+ }]
+};
+exports.oneHundredPercent = oneHundredPercent;
+var fullScreen = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.987,10.987l-2.931,3.031L2,11.589V18h6.387l-2.43-2.081l3.03-2.932L6.987,10.987z M11.613,2l2.43,2.081l-3.03,2.932l2,2\r\n\tl2.931-3.031L18,8.411V2H11.613z"
+ }
+ }]
+};
+exports.fullScreen = fullScreen;
+var retweet = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5,13V8h2L3.5,4L0,8h2v6c0,1.104,0.895,2,2,2h9.482l-2.638-3H5z M9.156,7L6.518,4H16c1.104,0,2,0.897,2,2v6h2l-3.5,4L13,12\r\n\th2V7H9.156z"
+ }
+ }]
+};
+exports.retweet = retweet;
+var rocket = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11.933,13.069c0,0,7.059-5.094,6.276-10.924c-0.017-0.127-0.059-0.213-0.112-0.268c-0.054-0.055-0.137-0.098-0.263-0.115\r\n\tC12.137,0.961,7.16,8.184,7.16,8.184C2.842,7.667,3.156,8.528,1.186,13.26c-0.377,0.902,0.234,1.213,0.904,0.959\r\n\tc0.67-0.252,2.148-0.811,2.148-0.811l2.59,2.648c0,0-0.546,1.514-0.793,2.199c-0.248,0.686,0.055,1.311,0.938,0.926\r\n\tC11.597,17.165,12.439,17.487,11.933,13.069z M12.942,7.153c-0.598-0.613-0.598-1.604,0-2.217c0.598-0.611,1.567-0.611,2.166,0\r\n\tc0.598,0.611,0.598,1.603,0,2.217C14.509,7.764,13.539,7.764,12.942,7.153z"
+ }
+ }]
+};
+exports.rocket = rocket;
+var rss = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.4,2.4v2.367c7.086,0,12.83,5.746,12.83,12.832h2.369C17.599,9.205,10.794,2.4,2.4,2.4z M2.4,7.137v2.369\r\n\tc4.469,0,8.093,3.623,8.093,8.094h2.368C12.861,11.822,8.177,7.137,2.4,7.137z M4.669,13.059c-1.254,0-2.27,1.018-2.27,2.271\r\n\ts1.016,2.27,2.27,2.27s2.269-1.016,2.269-2.27S5.923,13.059,4.669,13.059z"
+ }
+ }]
+};
+exports.rss = rss;
+var ruler = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.249,0.438L0.438,14.251c-0.584,0.584-0.584,1.538,0.002,2.124l3.185,3.187c0.584,0.584,1.541,0.586,2.124,0.002\r\n\tL19.562,5.751c0.584-0.585,0.584-1.541,0-2.125l-3.186-3.188C15.789-0.148,14.834-0.145,14.249,0.438z M3.929,15.312L3.17,16.071\r\n\tl-1.896-1.897l0.759-0.759L3.929,15.312z M6.965,15.312l-0.759,0.759l-3.415-3.415l0.759-0.76L6.965,15.312z M6.965,12.276\r\n\tl-0.759,0.759l-1.898-1.896l0.76-0.76L6.965,12.276z M8.483,10.758l-0.759,0.759L5.828,9.621l0.759-0.76L8.483,10.758z\r\n\t M11.518,10.758l-0.759,0.759L7.345,8.103l0.759-0.759L11.518,10.758z M11.518,7.723l-0.759,0.759L8.863,6.586l0.759-0.759\r\n\tL11.518,7.723z M13.036,6.206l-0.759,0.759L10.38,5.068l0.759-0.759L13.036,6.206z M16.072,6.206l-0.76,0.759L11.898,3.55\r\n\tl0.759-0.76L16.072,6.206z M16.071,3.171l-0.759,0.759l-1.896-1.898l0.759-0.758L16.071,3.171z"
+ }
+ }]
+};
+exports.ruler = ruler;
+var save = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.173,2H4C2.899,2,2,2.9,2,4v12c0,1.1,0.899,2,2,2h12c1.101,0,2-0.9,2-2V5.127L15.173,2z M14,8c0,0.549-0.45,1-1,1H7\r\n\tC6.45,9,6,8.549,6,8V3h8V8z M13,4h-2v4h2V4z"
+ }
+ }]
+};
+exports.save = save;
+var scissors = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.38,5.59c0-2.038-1.652-3.69-3.69-3.69S1,3.552,1,5.59c0,2.038,1.652,3.69,3.69,3.69c0.96,0,1.826-0.376,2.483-0.976\r\n\tL9,9.991L9.012,10l-0.004,0.003l-1.836,1.693C6.516,11.096,5.65,10.72,4.69,10.72C2.652,10.72,1,12.372,1,14.41\r\n\tc0,2.038,1.652,3.69,3.69,3.69s3.69-1.652,3.69-3.69c0-0.297-0.044-0.582-0.111-0.858l2.844-1.991l4.127,3.065\r\n\tc2.212,1.549,3.76-0.663,3.76-0.663L8.269,6.448C8.335,6.172,8.38,5.887,8.38,5.59z M4.69,7.39c-0.994,0-1.8-0.806-1.8-1.8\r\n\ts0.806-1.8,1.8-1.8s1.8,0.806,1.8,1.8S5.684,7.39,4.69,7.39z M4.69,16.21c-0.994,0-1.8-0.806-1.8-1.8s0.806-1.8,1.8-1.8\r\n\ts1.8,0.806,1.8,1.8S5.684,16.21,4.69,16.21z M19,6.038c0,0-1.548-2.212-3.76-0.663L12.035,7.61l2.354,1.648L19,6.038z"
+ }
+ }]
+};
+exports.scissors = scissors;
+var arrows = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1L5,8h10L10,1z M10,19l5-7H5L10,19z"
+ }
+ }]
+};
+exports.arrows = arrows;
+var alternative = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9,13h2V4h2l-3-4L7,4h2V13z M17,7h-3v2h2v9H4V9h2V7H3C2.447,7,2,7.447,2,8v11c0,0.552,0.447,1,1,1h14c0.553,0,1-0.448,1-1V8\r\n\tC18,7.448,17.553,7,17,7z"
+ }
+ }]
+};
+exports.alternative = alternative;
+var share = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,13.442c-0.633,0-1.204,0.246-1.637,0.642l-5.938-3.463C7.471,10.433,7.5,10.237,7.5,10.037S7.471,9.642,7.425,9.454\r\n\tL13.3,6.025C13.746,6.442,14.342,6.7,15,6.7c1.379,0,2.5-1.121,2.5-2.5S16.379,1.7,15,1.7s-2.5,1.121-2.5,2.5\r\n\tc0,0.2,0.029,0.396,0.075,0.583L6.7,8.212C6.254,7.796,5.658,7.537,5,7.537c-1.379,0-2.5,1.121-2.5,2.5s1.121,2.5,2.5,2.5\r\n\tc0.658,0,1.254-0.258,1.7-0.675l5.938,3.463c-0.042,0.175-0.067,0.358-0.067,0.546c0,1.342,1.087,2.429,2.429,2.429\r\n\ts2.429-1.088,2.429-2.429S16.342,13.442,15,13.442z"
+ }
+ }]
+};
+exports.share = share;
+var shareable = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.8,10c0,1.768,1.433,3.201,3.2,3.201c1.768,0,3.199-1.433,3.199-3.201c0-1.767-1.431-3.2-3.199-3.2S6.8,8.233,6.8,10z\r\n\t M4.529,8.8C5.078,6.284,7.318,4.4,10,4.4c1.546,0,2.945,0.627,3.959,1.64c0.469,0.469,1.229,0.469,1.697,0\r\n\tc0.469-0.469,0.469-1.229,0-1.697C14.209,2.896,12.209,2,10,2C6.418,2,3.386,4.354,2.367,7.601H0V10h3.199\r\n\tC4.198,10,4.444,9.187,4.529,8.8z M16.8,10c-0.999,0-1.245,0.814-1.329,1.199c-0.549,2.516-2.789,4.4-5.471,4.4\r\n\tc-1.547,0-2.946-0.627-3.959-1.641c-0.469-0.469-1.229-0.469-1.698,0c-0.468,0.469-0.468,1.229,0,1.697C5.791,17.104,7.791,18,10,18\r\n\tc3.582,0,6.613-2.356,7.633-5.6H20V10H16.8z"
+ }
+ }]
+};
+exports.shareable = shareable;
+var shield = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.604,3.332C12.99,4,12.075,2.833,10,1C7.925,2.833,7.01,4,2.396,3.332C-0.063,15.58,10,19,10,19\r\n\tS20.063,15.58,17.604,3.332z M12.473,13.309L10,12.009l-2.472,1.3L8,10.556L6,8.606l2.764-0.401L10,5.7l1.236,2.505L14,8.606\r\n\tl-2,1.949L12.473,13.309z"
+ }
+ }]
+};
+exports.shield = shield;
+var shop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.123,7.25L6.914,2H2.8L1.081,6.5C1.028,6.66,1,6.826,1,7c0,1.104,1.15,2,2.571,2C4.881,9,5.964,8.236,6.123,7.25z M10,9\r\n\tc1.42,0,2.571-0.896,2.571-2c0-0.041-0.003-0.082-0.005-0.121L12.057,2H7.943l-0.51,4.875C7.431,6.916,7.429,6.957,7.429,7\r\n\tC7.429,8.104,8.58,9,10,9z M15,10.046V14H5v-3.948C4.562,10.21,4.08,10.3,3.571,10.3c-0.195,0-0.384-0.023-0.571-0.049V16.6\r\n\tc0,0.77,0.629,1.4,1.398,1.4H15.6c0.77,0,1.4-0.631,1.4-1.4v-6.348c-0.188,0.025-0.376,0.049-0.571,0.049\r\n\tC15.923,10.3,15.439,10.208,15,10.046z M18.92,6.5L17.199,2h-4.113l0.79,5.242C14.03,8.232,15.113,9,16.429,9\r\n\tC17.849,9,19,8.104,19,7C19,6.826,18.972,6.66,18.92,6.5z"
+ }
+ }]
+};
+exports.shop = shop;
+var bag = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.121,3.271c-0.295-0.256-1.906-1.731-2.207-1.991C15.615,1.021,15.158,1,14.812,1H5.188C4.843,1,4.386,1.021,4.086,1.28\r\n\tC3.785,1.54,2.174,3.016,1.879,3.271C1.582,3.527,1.336,3.914,1.415,4.463c0.079,0.551,1.89,13.661,1.937,13.973\r\n\tC3.398,18.747,3.67,18.993,4,19h12c0.33-0.007,0.602-0.253,0.648-0.565c0.047-0.311,1.858-13.422,1.938-13.973\r\n\tC18.664,3.914,18.418,3.527,18.121,3.271z M10,11.973c-3.248,0-3.943-4.596-4.087-5.543H7.75c0.276,1.381,0.904,3.744,2.25,3.744\r\n\ts1.975-2.363,2.25-3.744h1.838C13.943,7.377,13.248,11.973,10,11.973z M3.17,4.006L5,2h10l1.83,2.006H3.17z"
+ }
+ }]
+};
+exports.bag = bag;
+var basket = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.399,7h-5.007l-1.812,1.812c-0.453,0.453-1.056,0.702-1.696,0.702c-0.642,0-1.244-0.25-1.698-0.703\r\n\tC7.734,8.359,7.484,7.757,7.483,7.116c0-0.039,0.01-0.077,0.011-0.116H1.6C1.268,7,1,7.268,1,7.6V10h18V7.6\r\n\tC19,7.268,18.73,7,18.399,7z M10.768,7.999l5.055-5.055c0.235-0.234,0.237-0.613,0.002-0.849l-0.92-0.92\r\n\tc-0.234-0.234-0.614-0.233-0.85,0L9,6.231c-0.488,0.488-0.488,1.28,0,1.768C9.488,8.486,10.279,8.487,10.768,7.999z M3.823,17.271\r\n\tC3.92,17.672,4.338,18,4.75,18h10.5c0.412,0,0.83-0.328,0.927-0.729L17.7,11H2.3L3.823,17.271z"
+ }
+ }]
+};
+exports.basket = basket;
+var cart = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,17c0,1.104,0.894,2,2,2c1.104,0,2-0.896,2-2c0-1.106-0.896-2-2-2C13.894,15,13,15.894,13,17z M3,17c0,1.104,0.895,2,2,2\r\n\tc1.103,0,2-0.896,2-2c0-1.106-0.897-2-2-2C3.895,15,3,15.894,3,17z M6.547,12.172L17.615,9.01C17.826,8.949,18,8.721,18,8.5V3H4V1.4\r\n\tC4,1.18,3.819,1,3.601,1H0.399C0.18,1,0,1.18,0,1.4L0,3h2l1.91,8.957L4,12.9v1.649c0,0.219,0.18,0.4,0.4,0.4H17.6\r\n\tc0.22,0,0.4-0.182,0.4-0.4V13H6.752C5.602,13,5.578,12.449,6.547,12.172z"
+ }
+ }]
+};
+exports.cart = cart;
+var shuffle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.093,6.694h0.92v2.862L20,5.532l-3.988-4.025v2.387h-0.92c-3.694,0-5.776,2.738-7.614,5.152\r\n\tc-1.652,2.172-3.08,4.049-5.386,4.049H0v2.799h2.093c3.694,0,5.776-2.736,7.614-5.152C11.359,8.569,12.787,6.694,15.093,6.694z\r\n\t M5.41,8.458c0.158-0.203,0.316-0.412,0.477-0.623C6.277,7.321,6.691,6.78,7.139,6.239C5.817,5.005,4.224,4.095,2.093,4.095H0v2.799\r\n\th2.093C3.42,6.894,4.455,7.517,5.41,8.458z M16.012,13.294h-0.92c-1.407,0-2.487-0.701-3.491-1.738\r\n\tc-0.1,0.131-0.201,0.264-0.303,0.397c-0.441,0.58-0.915,1.201-1.439,1.818c1.356,1.324,3,2.324,5.232,2.324h0.92v2.398L20,14.468\r\n\tl-3.988-4.025V13.294z"
+ }
+ }]
+};
+exports.shuffle = shuffle;
+var signal = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,14c-1.094,0-1.981,0.894-1.981,2c0,1.104,0.887,2,1.981,2c1.094,0,1.98-0.896,1.98-2C11.98,14.895,11.094,14,10,14z\r\n\t M5.8,11.758l1.4,1.414c1.546-1.562,4.054-1.562,5.601,0l1.399-1.414C11.881,9.415,8.119,9.415,5.8,11.758z M3,8.928l1.4,1.414\r\n\tc3.092-3.123,8.106-3.123,11.199,0L17,8.928C13.135,5.024,6.865,5.024,3,8.928z M0.199,6.1l1.4,1.414\r\n\tc4.639-4.686,12.161-4.686,16.801,0L19.8,6.1C14.388,0.633,5.612,0.633,0.199,6.1z"
+ }
+ }]
+};
+exports.signal = signal;
+var mix = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5,1.6C5,1.047,4.552,1,4,1C3.447,1,3,1.047,3,1.6V10h2V1.6z M3,18.4C3,18.951,3.447,19,4,19c0.552,0,1-0.049,1-0.6V15H3\r\n\tV18.4z M6.399,11H1.599C1.046,11,1,11.448,1,12v1c0,0.553,0.046,1,0.599,1h4.801C6.95,14,7,13.553,7,13v-1\r\n\tC7,11.448,6.95,11,6.399,11z M18.399,12h-4.801C13.046,12,13,12.448,13,13v1c0,0.553,0.046,1,0.599,1h4.801\r\n\tC18.95,15,19,14.553,19,14v-1C19,12.448,18.95,12,18.399,12z M13,7c0-0.552-0.05-1-0.601-1H7.599C7.046,6,7,6.448,7,7v1\r\n\tc0,0.553,0.046,1,0.599,1h4.801C12.95,9,13,8.553,13,8V7z M11,1.6C11,1.047,10.552,1,10,1C9.447,1,9,1.047,9,1.6V5h2V1.6z M9,18.4\r\n\tc0,0.551,0.447,0.6,1,0.6c0.552,0,1-0.049,1-0.6V10H9V18.4z M17,1.6C17,1.047,16.552,1,16,1c-0.553,0-1,0.047-1,0.6V11h2V1.6z\r\n\t M15,18.4c0,0.551,0.447,0.6,1,0.6c0.552,0,1-0.049,1-0.6V16h-2V18.4z"
+ }
+ }]
+};
+exports.mix = mix;
+var mute = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.201,9.194c1.389,1.883,1.818,3.517,1.559,3.777c-0.26,0.258-1.893-0.17-3.778-1.559l-5.526,5.527\r\n\tc4.186,1.838,9.627-2.018,10.605-2.996c0.925-0.922,0.097-3.309-1.856-5.754L14.201,9.194z M8.667,7.941\r\n\tc-1.099-1.658-1.431-3.023-1.194-3.26c0.233-0.234,1.6,0.096,3.257,1.197l1.023-1.025C9.489,3.179,7.358,2.519,6.496,3.384\r\n\tC5.568,4.31,2.048,9.261,3.265,13.341L8.667,7.941z M18.521,1.478c-0.39-0.391-1.023-0.391-1.414,0L1.478,17.108\r\n\tc-0.391,0.391-0.391,1.024,0,1.414c0.391,0.391,1.023,0.391,1.414,0L18.521,2.892C18.912,2.501,18.912,1.868,18.521,1.478z"
+ }
+ }]
+};
+exports.mute = mute;
+var sound = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.312,4.566C4.19,5.685-0.715,12.681,3.523,16.918c4.236,4.238,11.23-0.668,12.354-1.789\r\n\tc1.121-1.119-0.335-4.395-3.252-7.312C9.706,4.898,6.434,3.441,5.312,4.566z M14.576,14.156c-0.332,0.328-2.895-0.457-5.364-2.928\r\n\tC6.745,8.759,5.956,6.195,6.288,5.865c0.328-0.332,2.894,0.457,5.36,2.926C14.119,11.258,14.906,13.824,14.576,14.156z\r\n\t M15.434,5.982l1.904-1.906c0.391-0.391,0.391-1.023,0-1.414c-0.39-0.391-1.023-0.391-1.414,0l-1.904,1.906\r\n\tc-0.391,0.391-0.391,1.024,0,1.414C14.41,6.372,15.043,6.372,15.434,5.982z M11.124,3.8c0.483,0.268,1.091,0.095,1.36-0.388\r\n\tl1.087-1.926c0.268-0.483,0.095-1.091-0.388-1.36c-0.482-0.269-1.091-0.095-1.36,0.388l-1.087,1.926\r\n\tC10.468,2.924,10.642,3.533,11.124,3.8z M19.872,6.816c-0.267-0.483-0.877-0.657-1.36-0.388l-1.94,1.061\r\n\tc-0.483,0.268-0.657,0.878-0.388,1.36c0.268,0.483,0.877,0.657,1.36,0.388l1.94-1.061C19.967,7.907,20.141,7.299,19.872,6.816z"
+ }
+ }]
+};
+exports.sound = sound;
+var club = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6,13.5l4,2.5l4-2.5V5H6V13.5z M4.5,10c0-1.105-0.896-2-2-2s-2,0.895-2,2c0,1.105,0.896,2,2,2S4.5,11.105,4.5,10z M17.5,8\r\n\tc-1.104,0-2,0.895-2,2c0,1.105,0.896,2,2,2s2-0.895,2-2C19.5,8.895,18.604,8,17.5,8z M4.485,6.199C5.74,4.384,7.802,3.3,10,3.3\r\n\tc2.158,0,4.198,1.056,5.456,2.823c0.449,0.629,1.323,0.776,1.952,0.329c0.63-0.448,0.777-1.323,0.329-1.953\r\n\tC15.955,1.995,13.062,0.5,10,0.5c-3.117,0-6.04,1.535-7.817,4.107c-0.439,0.636-0.28,1.508,0.355,1.948\r\n\tC3.175,6.993,4.046,6.834,4.485,6.199z M15.456,13.877C14.198,15.645,12.158,16.7,10,16.7c-2.198,0-4.26-1.084-5.515-2.899\r\n\tc-0.439-0.636-1.311-0.794-1.947-0.356c-0.636,0.44-0.795,1.312-0.355,1.948C3.96,17.965,6.883,19.5,10,19.5\r\n\tc3.062,0,5.955-1.495,7.737-3.999c0.448-0.63,0.301-1.504-0.329-1.953C16.779,13.101,15.905,13.248,15.456,13.877z"
+ }
+ }]
+};
+exports.club = club;
+var spreadsheet = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M15,8H9v9H8V8H5V7h3V3h1v4h6V8z"
+ }
+ }]
+};
+exports.spreadsheet = spreadsheet;
+var star = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1.3l2.388,6.722H18.8l-5.232,3.948l1.871,6.928L10,14.744l-5.438,4.154l1.87-6.928L1.199,8.022h6.412L10,1.3z"
+ }
+ }]
+};
+exports.star = star;
+var stopwatch = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.376,6.745c-0.447,0.275,1.197,4.242,1.598,4.888c0.35,0.569,1.093,0.742,1.658,0.394c0.568-0.352,0.745-1.094,0.395-1.66\r\n\tC10.63,9.719,7.822,6.469,7.376,6.745z M7.041,2.402C7.969,2.079,8.963,1.9,10,1.9s2.031,0.179,2.959,0.502\r\n\tc0.329,0.114,0.765-0.115,0.572-0.611c-0.141-0.36-0.277-0.712-0.332-0.855c-0.131-0.339-0.6-0.619-0.804-0.665\r\n\tC11.623,0.097,10.823,0,10,0S8.377,0.097,7.604,0.271C7.4,0.317,6.932,0.597,6.801,0.936C6.746,1.079,6.609,1.431,6.469,1.791\r\n\tC6.276,2.287,6.712,2.517,7.041,2.402z M19.098,3.186c-0.192-0.23-0.396-0.455-0.613-0.672c-0.216-0.217-0.441-0.42-0.67-0.613\r\n\tc-0.153-0.129-0.603-0.234-0.888,0.051c-0.284,0.285-1.648,1.647-1.648,1.647c0.402,0.288,0.793,0.605,1.155,0.966\r\n\tc0.362,0.361,0.677,0.752,0.966,1.155c0,0,1.363-1.362,1.647-1.647C19.333,3.787,19.228,3.338,19.098,3.186z M10,2.9\r\n\tc-4.475,0-8.101,3.626-8.101,8.1c0,4.475,3.626,8.101,8.101,8.101c4.473,0,8.1-3.626,8.1-8.101C18.1,6.527,14.473,2.9,10,2.9z\r\n\t M10,17.101c-3.368,0-6.1-2.731-6.1-6.1c0-3.369,2.731-6.1,6.1-6.1c3.369,0,6.101,2.731,6.101,6.1\r\n\tC16.101,14.369,13.369,17.101,10,17.101z"
+ }
+ }]
+};
+exports.stopwatch = stopwatch;
+var suitcase = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,4h-1v15h1c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M0,6l0,11c0,1.1,0.899,2,2,2h1V4H2C0.899,4,0,4.9,0,6z M13.5,1.906\r\n\tC12.819,1.59,11.611,1,9.981,1C8.348,1,7.181,1.59,6.5,1.906V4H4v15h12V4h-2.5V1.906z M12,4H8V2.664\r\n\tc0.534-0.23,1.078-0.465,1.981-0.465c0.902,0,1.486,0.234,2.019,0.465V4z"
+ }
+ }]
+};
+exports.suitcase = suitcase;
+var swap = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,5H4V3L0,6.5L4,10V8h10V5z M20,13.5L16,10v2H6v3h10v2L20,13.5z"
+ }
+ }]
+};
+exports.swap = swap;
+var sweden = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.sweden = sweden;
+var switchIcon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,3H7c-3.866,0-7,3.134-7,7c0,3.866,3.134,7,7,7h6c3.866,0,7-3.134,7-7C20,6.134,16.866,3,13,3z M13,15\r\n\tc-2.761,0-5-2.239-5-5s2.239-5,5-5s5,2.239,5,5S15.761,15,13,15z"
+ }
+ }]
+};
+exports.switchIcon = switchIcon;
+var mobileCombo = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.00354,5H11.99646C10.8938599,5,10,5.8937988,10,6.9963989V18.00354C10,19.1061401,10.8938599,20,11.99646,20H17.00354\r\n\tC18.1061401,20,19,19.1061401,19,18.00354V6.9963989C19,5.8937988,18.1061401,5,17.00354,5z M14.5,19\r\n\tc-0.6904297,0-1.25-0.4473267-1.25-1c0-0.5527344,0.5595703-1,1.25-1c0.6895142,0,1.25,0.4472656,1.25,1\r\n\tC15.75,18.5526733,15.1895142,19,14.5,19z M17,16h-5V7h5V16z M8,16H3V2h12v1h2V2c0-1.1010742-0.8994141-2-2-2H3\r\n\tC1.9003906,0,1,0.8989258,1,2v16c0,1.0996094,0.9003906,2,2,2h5.5551758C8.2114258,19.4101562,8,18.7338867,8,18.003418V16z"
+ }
+ }]
+};
+exports.mobileCombo = mobileCombo;
+var tablet = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,0H4C2.9,0,2,0.899,2,2v16c0,1.1,0.9,2,2,2h12c1.101,0,2-0.9,2-2V2C18,0.899,17.101,0,16,0z M10,19\r\n\tc-0.69,0-1.25-0.447-1.25-1s0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1S10.689,19,10,19z M16,16H4V2h12V16z"
+ }
+ }]
+};
+exports.tablet = tablet;
+var documentInverted = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M13,15H7v-2h6V15z M13,11H7V9h6V11z M13,7H7V5h6V7z"
+ }
+ }]
+};
+exports.documentInverted = documentInverted;
+var text = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M15.5,11h-11C4.225,11,4,11.225,4,11.5v1C4,12.776,4.225,13,4.5,13h11\r\n\tc0.276,0,0.5-0.224,0.5-0.5v-1C16,11.225,15.776,11,15.5,11z M15.5,7h-11C4.225,7,4,7.225,4,7.5v1C4,8.776,4.225,9,4.5,9h11\r\n\tC15.776,9,16,8.776,16,8.5v-1C16,7.225,15.776,7,15.5,7z M10.5,15h-6C4.225,15,4,15.225,4,15.5v1C4,16.776,4.225,17,4.5,17h6\r\n\tc0.276,0,0.5-0.224,0.5-0.5v-1C11,15.225,10.776,15,10.5,15z M15.5,3h-11C4.225,3,4,3.225,4,3.5v1C4,4.776,4.225,5,4.5,5h11\r\n\tC15.776,5,16,4.776,16,4.5v-1C16,3.225,15.776,3,15.5,3z"
+ }
+ }]
+};
+exports.text = text;
+var thermometer = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,10.123V1c0-0.553-0.447-1-1-1H7.799C7.247,0,7,0.447,7,1v9.123c-1.444,0.969-2.4,2.608-2.4,4.477\r\n\tc0,2.982,2.418,5.4,5.4,5.4c2.982,0,5.4-2.418,5.4-5.4C15.4,12.731,14.444,11.092,13,10.123z M10,17.9c-1.823,0-3.3-1.477-3.3-3.3\r\n\tc0-1.472,0.97-2.703,2.3-3.129V4h2v7.471c1.33,0.426,2.3,1.657,2.3,3.129C13.3,16.422,11.823,17.9,10,17.9z"
+ }
+ }]
+};
+exports.thermometer = thermometer;
+var ticket = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.906,11.541l3.551,3.553l6.518-6.518l-3.553-3.551L4.906,11.541z M19.104,6.664l-1.511-1.512\r\n\tc-0.289,0.156-0.618,0.246-0.969,0.246c-1.118,0-2.024-0.906-2.024-2.023c0-0.352,0.089-0.682,0.246-0.969l-1.511-1.512\r\n\tc-0.394-0.393-1.038-0.393-1.432,0l-11.01,11.01c-0.393,0.392-0.393,1.037,0,1.432l1.512,1.51C2.694,14.69,3.023,14.6,3.375,14.6\r\n\tc1.117,0,2.023,0.906,2.023,2.025c0,0.35-0.089,0.68-0.246,0.969l1.512,1.51c0.394,0.394,1.037,0.394,1.432,0L19.104,8.096\r\n\tC19.498,7.701,19.498,7.057,19.104,6.664z M8.457,16.719l-5.176-5.178l8.142-8.141l5.176,5.176L8.457,16.719z"
+ }
+ }]
+};
+exports.ticket = ticket;
+var slot = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6h0V10l6.792-3.396\r\n\tC17.305,7.627,17.6,8.777,17.6,10C17.6,14.197,14.197,17.599,10,17.599z"
+ }
+ }]
+};
+exports.slot = slot;
+var tools = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.135,6.89c0.933-0.725,1.707-0.225,2.74,0.971c0.116,0.135,0.272-0.023,0.361-0.1c0.088-0.078,1.451-1.305,1.518-1.361\r\n\tC7.82,6.341,7.9,6.231,7.795,6.108C7.688,5.985,7.301,5.483,7.052,5.157c-1.808-2.365,4.946-3.969,3.909-3.994\r\n\tc-0.528-0.014-2.646-0.039-2.963-0.004C6.715,1.294,5.104,2.493,4.293,3.052C3.232,3.778,2.836,4.204,2.771,4.263\r\n\tc-0.3,0.262-0.048,0.867-0.592,1.344C1.604,6.11,1.245,5.729,0.912,6.021C0.747,6.167,0.285,6.513,0.153,6.628\r\n\tC0.02,6.745-0.004,6.942,0.132,7.099c0,0,1.264,1.396,1.37,1.52C1.607,8.741,1.893,8.847,2.069,8.69\r\n\tc0.177-0.156,0.632-0.553,0.708-0.623C2.855,8.001,2.727,7.206,3.135,6.89z M8.843,7.407c-0.12-0.139-0.269-0.143-0.397-0.029\r\n\tL7.012,8.63c-0.113,0.1-0.129,0.283-0.027,0.4l8.294,9.439c0.194,0.223,0.53,0.246,0.751,0.053L17,17.709\r\n\tc0.222-0.195,0.245-0.533,0.052-0.758L8.843,7.407z M19.902,3.39c-0.074-0.494-0.33-0.391-0.463-0.182\r\n\tc-0.133,0.211-0.721,1.102-0.963,1.506c-0.24,0.4-0.832,1.191-1.934,0.41c-1.148-0.811-0.749-1.377-0.549-1.758\r\n\tc0.201-0.383,0.818-1.457,0.907-1.59c0.089-0.135-0.015-0.527-0.371-0.363c-0.357,0.164-2.523,1.025-2.823,2.26\r\n\tc-0.307,1.256,0.257,2.379-0.85,3.494l-1.343,1.4l1.349,1.566l1.654-1.57c0.394-0.396,1.236-0.781,1.998-0.607\r\n\tc1.633,0.369,2.524-0.244,3.061-1.258C20.057,5.792,19.977,3.884,19.902,3.39z M2.739,17.053c-0.208,0.209-0.208,0.549,0,0.758\r\n\tl0.951,0.93c0.208,0.209,0.538,0.121,0.746-0.088l4.907-4.824L7.84,12.115L2.739,17.053z"
+ }
+ }]
+};
+exports.tools = tools;
+var cone = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,12.078c2.39,0,4.392-0.812,4.513-1.873c-0.356-0.996-0.744-2.084-1.125-3.152C13.124,7.814,11.663,8.354,10,8.354\r\n\tS6.876,7.814,6.612,7.053c-0.381,1.068-0.769,2.156-1.124,3.152C5.609,11.266,7.61,12.078,10,12.078z M10,5.373\r\n\tc1.124,0,2.167-0.348,2.473-0.889c-0.421-1.182-0.782-2.197-1.011-2.836C11.31,1.221,10.621,1,10,1S8.69,1.221,8.538,1.648\r\n\tc-0.228,0.639-0.59,1.654-1.011,2.836C7.833,5.025,8.877,5.373,10,5.373z M18.78,13.066l-3.755-1.514l0.433,1.207\r\n\tc-0.022,1.279-2.504,2.299-5.458,2.299c-2.953,0-5.437-1.019-5.458-2.299l0.433-1.207L1.22,13.066\r\n\tc-1.053,0.424-1.098,1.209-0.098,1.744l7.062,3.787c0.998,0.535,2.633,0.535,3.632,0l7.063-3.787\r\n\tC19.878,14.275,19.833,13.49,18.78,13.066z"
+ }
+ }]
+};
+exports.cone = cone;
+var trash = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.389,7.113L4.49,18.021C4.551,18.482,6.777,19.998,10,20c3.225-0.002,5.451-1.518,5.511-1.979l1.102-10.908\r\n\tC14.929,8.055,12.412,8.5,10,8.5C7.59,8.5,5.072,8.055,3.389,7.113z M13.168,1.51l-0.859-0.951C11.977,0.086,11.617,0,10.916,0\r\n\tH9.085c-0.7,0-1.061,0.086-1.392,0.559L6.834,1.51C4.264,1.959,2.4,3.15,2.4,4.029v0.17C2.4,5.746,5.803,7,10,7\r\n\tc4.198,0,7.601-1.254,7.601-2.801v-0.17C17.601,3.15,15.738,1.959,13.168,1.51z M12.07,4.34L11,3H9L7.932,4.34h-1.7\r\n\tc0,0,1.862-2.221,2.111-2.522C8.533,1.588,8.727,1.5,8.979,1.5h2.043c0.253,0,0.447,0.088,0.637,0.318\r\n\tc0.248,0.301,2.111,2.522,2.111,2.522H12.07z"
+ }
+ }]
+};
+exports.trash = trash;
+var trophy = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.trophy = trophy;
+var tv = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,1H2C0.899,1,0,1.9,0,3v11c0,1.1,0.882,2.178,1.961,2.393l4.372,0.875C6.333,17.268,2.57,19,5,19h10\r\n\tc2.43,0-1.334-1.732-1.334-1.732l4.373-0.875C19.117,16.178,20,15.1,20,14V3C20,1.9,19.1,1,18,1z M18,14H2V3h16V14z"
+ }
+ }]
+};
+exports.tv = tv;
+var typing = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,4H4C2.899,4,2,4.9,2,6v7c0,1.1,0.899,2,2,2h4l4,3v-3h4c1.1,0,2-0.9,2-2V6C18,4.9,17.1,4,16,4z M6,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C7.1,10.107,6.607,10.6,6,10.6z M10,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C11.1,10.107,10.607,10.6,10,10.6z M14,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C15.1,10.107,14.607,10.6,14,10.6z"
+ }
+ }]
+};
+exports.typing = typing;
+var uninstall = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H5.546C4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927\r\n\tc-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18h14.383c0.755,0,1.399-0.546,1.523-1.291\r\n\tl0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M5.52,4.786l1.639-1.132l2.868,2.011l2.868-2.011l1.639,1.132l-2.869,2.033\r\n\tl2.928,2.06l-1.639,1.171l-2.927-2.076L7.1,10.05L5.461,8.879l2.928-2.06L5.52,4.786z M16.959,15.245\r\n\tC16.887,15.681,16.51,16,16.068,16H3.932c-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867\r\n\tc0.558,0,0.983,0.501,0.891,1.052L16.959,15.245z"
+ }
+ }]
+};
+exports.uninstall = uninstall;
+var unread = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M17,3c-1.104,0-2,0.895-2,2c0,1.105,0.896,2,2,2s2-0.895,2-2\r\n\tC19,3.895,18.104,3,17,3z M12.5,4h-11C1.224,4,1,4.224,1,4.5v1C1,5.776,1.224,6,1.5,6h11C12.776,6,13,5.776,13,5.5v-1\r\n\tC13,4.224,12.776,4,12.5,4z M12.5,9h-11C1.224,9,1,9.224,1,9.5v1C1,10.776,1.224,11,1.5,11h11c0.276,0,0.5-0.224,0.5-0.5v-1\r\n\tC13,9.224,12.776,9,12.5,9z M12.5,14h-11C1.224,14,1,14.224,1,14.5v1C1,15.776,1.224,16,1.5,16h11c0.276,0,0.5-0.224,0.5-0.5v-1\r\n\tC13,14.224,12.776,14,12.5,14z"
+ }
+ }]
+};
+exports.unread = unread;
+var untag = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1,14.742l4.945-0.709L5.239,19l5.962-5.985L7.132,8.586L1,14.742z M18.664,5.521c0.391-0.393,0.5-0.945,0-1.419\r\n\tl-2.826-2.839c-0.279-0.308-1.021-0.392-1.412,0l-3.766,3.78l4.068,4.429L18.664,5.521z M18.706,15.293l-14.001-14\r\n\tc-0.391-0.391-1.023-0.391-1.414,0c-0.391,0.391-0.391,1.023,0,1.414l14.001,14C17.488,16.903,17.744,17,17.999,17\r\n\tc0.256,0,0.512-0.098,0.707-0.293C19.097,16.317,19.097,15.684,18.706,15.293z"
+ }
+ }]
+};
+exports.untag = untag;
+var toCloud = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.toCloud = toCloud;
+var upload = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8,12h4V6h3l-5-5L5,6h3V12z M19.338,13.532c-0.21-0.224-1.611-1.723-2.011-2.114C17.062,11.159,16.683,11,16.285,11h-1.757\r\n\tl3.064,2.994h-3.544c-0.102,0-0.194,0.052-0.24,0.133L12.992,16H7.008l-0.816-1.873c-0.046-0.081-0.139-0.133-0.24-0.133H2.408\r\n\tL5.471,11H3.715c-0.397,0-0.776,0.159-1.042,0.418c-0.4,0.392-1.801,1.891-2.011,2.114c-0.489,0.521-0.758,0.936-0.63,1.449\r\n\tl0.561,3.074c0.128,0.514,0.691,0.936,1.252,0.936h16.312c0.561,0,1.124-0.422,1.252-0.936l0.561-3.074\r\n\tC20.096,14.468,19.828,14.053,19.338,13.532z"
+ }
+ }]
+};
+exports.upload = upload;
+var users = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.989,19.129c0-2.246-2.187-3.389-4.317-4.307c-2.123-0.914-2.801-1.684-2.801-3.334c0-0.989,0.648-0.667,0.932-2.481\r\n\tc0.12-0.752,0.692-0.012,0.802-1.729c0-0.684-0.313-0.854-0.313-0.854s0.159-1.013,0.221-1.793c0.064-0.817-0.398-2.56-2.301-3.095\r\n\tC7.88,1.195,7.655,0.654,8.679,0.112c-2.24-0.104-2.761,1.068-3.954,1.93c-1.015,0.756-1.289,1.953-1.24,2.59\r\n\tc0.065,0.78,0.223,1.793,0.223,1.793s-0.314,0.17-0.314,0.854c0.11,1.718,0.684,0.977,0.803,1.729\r\n\tC4.481,10.822,5.13,10.5,5.13,11.489c0,1.65-0.212,2.21-2.336,3.124C0.663,15.53,0,17,0.011,19.129C0.014,19.766,0,20,0,20h16\r\n\tC16,20,15.989,19.766,15.989,19.129z M18.528,13.365c-1.135-0.457-1.605-1.002-1.605-2.066c0-0.641,0.418-0.432,0.602-1.603\r\n\tc0.077-0.484,0.447-0.008,0.518-1.115c0-0.441-0.202-0.551-0.202-0.551s0.103-0.656,0.143-1.159c0.05-0.627-0.364-2.247-2.268-2.247\r\n\tc-1.903,0-2.318,1.62-2.269,2.247c0.042,0.502,0.144,1.159,0.144,1.159s-0.202,0.109-0.202,0.551\r\n\tc0.071,1.107,0.441,0.631,0.518,1.115c0.184,1.172,0.602,0.963,0.602,1.603c0,1.064-0.438,1.562-1.809,2.152\r\n\tc-0.069,0.029-0.12,0.068-0.183,0.102c1.64,0.712,4.226,1.941,4.838,4.447H20c0,0,0-1.906,0-2.318\r\n\tC20,14.682,19.727,13.848,18.528,13.365z"
+ }
+ }]
+};
+exports.users = users;
+var vinyl = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.999,0.8C4.918,0.8,0.8,4.919,0.8,10.001c0,5.08,4.118,9.199,9.199,9.199c5.081,0,9.2-4.119,9.2-9.199\r\n\tC19.199,4.919,15.08,0.8,9.999,0.8z M10,13.001c-1.657,0-3-1.344-3-3c0-1.656,1.343-3,3-3c1.656,0,3,1.344,3,3\r\n\tC13,11.657,11.656,13.001,10,13.001z"
+ }
+ }]
+};
+exports.vinyl = vinyl;
+var voicemail = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.4,5.801c-2.541,0-4.601,2.059-4.601,4.6c0,0.965,0.298,1.859,0.806,2.6H8.394c0.508-0.74,0.805-1.635,0.805-2.6\r\n\tc0-2.541-2.059-4.6-4.6-4.6c-2.54,0-4.6,2.059-4.6,4.6C0,12.941,2.059,15,4.6,15H15.4c2.54,0,4.6-2.059,4.6-4.6\r\n\tC20,7.859,17.94,5.801,15.4,5.801z M2,10.4c0-1.436,1.164-2.6,2.6-2.6c1.436,0,2.6,1.164,2.6,2.6c0,1.436-1.164,2.6-2.6,2.6\r\n\tC3.164,13,2,11.836,2,10.4z M15.4,13c-1.437,0-2.601-1.164-2.601-2.6c0-1.436,1.164-2.6,2.601-2.6c1.435,0,2.6,1.164,2.6,2.6\r\n\tC18,11.836,16.836,13,15.4,13z"
+ }
+ }]
+};
+exports.voicemail = voicemail;
+var wallet = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,6H3.5V5.5l11-0.88V5.5H16V4c0-1.1-0.891-1.872-1.979-1.717L3.98,3.717C2.891,3.873,2,4.9,2,6v10c0,1.104,0.895,2,2,2h12\r\n\tc1.104,0,2-0.896,2-2V8C18,6.896,17.104,6,16,6z M14.5,13.006c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5\r\n\tS15.328,13.006,14.5,13.006z"
+ }
+ }]
+};
+exports.wallet = wallet;
+var warning = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.511,17.98L10.604,1.348C10.48,1.133,10.25,1,10,1C9.749,1,9.519,1.133,9.396,1.348L0.49,17.98\r\n\tc-0.121,0.211-0.119,0.471,0.005,0.68C0.62,18.871,0.847,19,1.093,19h17.814c0.245,0,0.474-0.129,0.598-0.34\r\n\tC19.629,18.451,19.631,18.191,19.511,17.98z M11,17H9v-2h2V17z M11,13.5H9V7h2V13.5z"
+ }
+ }]
+};
+exports.warning = warning;
+var water = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.882,9.093c-0.511,4.115-3.121,4.847-3.121,7.708C6.761,18.567,8.244,20,10,20c1.756,0,3.238-1.434,3.238-3.199\r\n\tc0-2.861-2.61-3.593-3.121-7.708C10.101,8.97,9.898,8.97,9.882,9.093z M3.883,0.093C3.372,4.208,0.762,4.939,0.762,7.801\r\n\tC0.762,9.566,2.244,11,4,11c1.756,0,3.238-1.434,3.238-3.199c0-2.861-2.61-3.593-3.121-7.708C4.102-0.03,3.898-0.03,3.883,0.093z\r\n\t M15.883,0.093c-0.511,4.115-3.121,4.847-3.121,7.708C12.762,9.566,14.244,11,16,11c1.756,0,3.238-1.434,3.238-3.199\r\n\tc0-2.861-2.61-3.593-3.121-7.708C16.101-0.03,15.898-0.03,15.883,0.093z"
+ }
+ }]
+};
+exports.water = water;
+var fiveHundredPX = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.398,14.775c0.481-0.174,0.928-0.4,1.337-0.683c0.41-0.282,0.797-0.608,1.16-0.982c0.363-0.373,0.736-0.759,1.118-1.159\r\n\tc0.346,0.4,0.71,0.786,1.092,1.159c0.382,0.374,0.787,0.7,1.214,0.982c0.428,0.282,0.887,0.509,1.379,0.683\r\n\tc0.49,0.173,1.017,0.259,1.582,0.259c0.727,0,1.387-0.132,1.977-0.396c0.591-0.264,1.087-0.627,1.487-1.092\r\n\tc0.399-0.464,0.71-1.005,0.928-1.623C19.891,11.306,20,10.642,20,9.932c0-0.71-0.109-1.364-0.328-1.964\r\n\tc-0.218-0.602-0.528-1.123-0.928-1.569c-0.4-0.446-0.892-0.795-1.473-1.05c-0.583-0.256-1.238-0.383-1.966-0.383\r\n\tc-0.581,0-1.123,0.092-1.623,0.273c-0.5,0.182-0.964,0.423-1.391,0.723c-0.428,0.3-0.828,0.65-1.201,1.051\r\n\tc-0.372,0.399-0.732,0.81-1.078,1.228C9.648,7.804,9.28,7.391,8.908,6.999C8.535,6.608,8.135,6.262,7.707,5.962\r\n\tc-0.428-0.3-0.891-0.541-1.391-0.723c-0.5-0.182-1.051-0.273-1.65-0.273c-0.728,0-1.385,0.133-1.965,0.396\r\n\tC2.117,5.626,1.628,5.979,1.227,6.426c-0.4,0.446-0.706,0.974-0.914,1.583C0.104,8.618,0,9.277,0,9.985\r\n\tc0,0.71,0.108,1.374,0.326,1.992c0.219,0.619,0.537,1.15,0.955,1.597c0.419,0.446,0.919,0.801,1.5,1.064\r\n\tc0.584,0.264,1.246,0.396,1.993,0.396C5.374,15.034,5.916,14.948,6.398,14.775z M3.164,11.65c-0.383-0.418-0.573-0.955-0.573-1.609\r\n\tc0-0.6,0.186-1.142,0.561-1.624c0.372-0.48,0.876-0.723,1.515-0.723c0.345,0,0.689,0.078,1.035,0.232\r\n\tc0.346,0.154,0.678,0.35,0.997,0.587C7.016,8.75,7.321,9.009,7.611,9.29c0.291,0.283,0.546,0.542,0.765,0.778\r\n\tc-0.219,0.255-0.464,0.515-0.737,0.776c-0.273,0.266-0.562,0.502-0.872,0.71c-0.311,0.21-0.637,0.382-0.983,0.519\r\n\tc-0.345,0.137-0.691,0.205-1.036,0.205C4.073,12.278,3.546,12.069,3.164,11.65z M14.256,12.088c-0.336-0.127-0.66-0.296-0.968-0.505\r\n\tc-0.311-0.209-0.603-0.445-0.874-0.709c-0.273-0.264-0.528-0.532-0.764-0.806c0.218-0.236,0.463-0.495,0.736-0.778\r\n\tc0.273-0.281,0.56-0.54,0.859-0.776c0.3-0.237,0.619-0.433,0.955-0.587c0.337-0.154,0.688-0.232,1.051-0.232\r\n\tc0.673,0,1.204,0.227,1.596,0.683c0.392,0.454,0.587,1,0.587,1.638c0,0.637-0.183,1.172-0.546,1.608\r\n\tc-0.364,0.438-0.882,0.655-1.555,0.655C14.952,12.278,14.592,12.215,14.256,12.088z"
+ }
+ }]
+};
+exports.fiveHundredPX = fiveHundredPX;
+var store = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M17.5640259,13.8623047\r\n\tc-0.4133301,0.9155273-0.6115723,1.3251343-1.1437988,2.1346436c-0.7424927,1.1303711-1.7894897,2.5380249-3.086853,2.5500488\r\n\tc-1.1524048,0.0109253-1.4483032-0.749939-3.0129395-0.741333c-1.5640259,0.008606-1.8909302,0.755127-3.0438843,0.7442017\r\n\tc-1.296814-0.0120239-2.2891235-1.2833252-3.0321655-2.4136963c-2.0770874-3.1607666-2.2941895-6.8709106-1.0131836-8.8428955\r\n\tc0.9106445-1.4013062,2.3466187-2.2217407,3.6970215-2.2217407c1.375,0,2.239502,0.7539673,3.3761597,0.7539673\r\n\tc1.1028442,0,1.7749023-0.755127,3.3641357-0.755127c1.201416,0,2.4744263,0.6542969,3.3816528,1.7846069\r\n\tC14.0778809,8.4837646,14.5608521,12.7279663,17.5640259,13.8623047z M12.4625244,3.8076782\r\n\tc0.5775146-0.741333,1.0163574-1.7880859,0.8571167-2.857666c-0.9436035,0.0653076-2.0470581,0.6651611-2.6912842,1.4477539\r\n\tC10.0437012,3.107605,9.56073,4.1605835,9.7486572,5.1849365C10.7787476,5.2164917,11.8443604,4.6011963,12.4625244,3.8076782z"
+ }
+ }]
+};
+exports.store = store;
+var baidu = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.4116364,6.9370399c-0.3587151-0.2830696-0.923996-0.4004283-1.4627256-0.3652954\r\n\tc-0.4163361,0.0265503-0.7609177,0.0346184-1.0045052,0.1825905c-1.1165419,0.6770897-1.2169638,4.3529868,0.1820755,4.9340606\r\n\tC18.100399,12.9238987,19.1828365,8.3379107,17.4116364,6.9370399z M12.933279,10.7750425\r\n\tc-0.9637632-1.1185446-1.6411963-2.6815205-3.5630016-2.375906c-1.7067132,0.2714539-1.9238648,1.6706648-2.8335552,2.6501064\r\n\tc-1.0796924,1.1637497-3.1049521,2.0173635-3.5640316,3.8376598c-0.3346822,1.3286009,0.1159286,2.8923788,0.9135242,3.4726515\r\n\tc1.5661802,1.1375408,4.473722-0.1246262,6.5796628,0.0911503c1.2606802,0.1290321,2.2246733,0.571804,3.197649,0.5484009\r\n\tc2.2625532-0.0532722,4.0896587-1.669405,3.1077557-4.294507C16.2904587,13.418684,14.1704426,12.21099,12.933279,10.7750425z\r\n\t M12.6592512,6.8458877c1.1333075,0.0318718,2.3012905-1.2649717,2.3760777-2.467402\r\n\tc0.0976181-1.5697851-0.929431-3.1436331-2.4671726-2.7416024c-0.9137535,0.2387236-1.66397,1.4105408-1.7361822,2.5593553\r\n\tC10.7485466,5.5281014,11.4487524,6.8116126,12.6592512,6.8458877z M8.2726755,6.4801922\r\n\tC9.4498711,6.321291,9.9402504,4.9083467,9.7355728,3.2816844c-0.1689148-1.338729-0.8955564-2.6371751-2.4675736-2.192801\r\n\tC5.1026068,1.7001691,5.4477601,6.8620238,8.2726755,6.4801922z M4.1614451,10.5923948\r\n\tc2.5823007-0.3854933,1.9797125-5.9385071-0.8224294-5.2997556C0.9296925,5.8418407,1.2518435,11.0266409,4.1614451,10.5923948z"
+ }
+ }]
+};
+exports.baidu = baidu;
+var basecamp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2C5.327,2,0.7,8.481,0.7,14.422C0.7,15.799,5.234,18,10,18s9.3-2.201,9.3-3.578C19.3,8.481,14.673,2,10,2z\r\n\t M10.006,15.615c-5.198,0-6.673-2.068-6.673-2.722c0-1.287,2.13-4.485,2.906-4.485c0.719,0,1.542,1.811,2.314,1.811\r\n\tc1.241,0,2.567-3.954,3.579-3.954s4.601,5.178,4.601,6.749C16.733,13.285,15.649,15.615,10.006,15.615z"
+ }
+ }]
+};
+exports.basecamp = basecamp;
+var behance = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.072,9.301c0,0,1.892-0.147,1.892-2.459c0-2.315-1.548-3.441-3.51-3.441H0v12.926h6.454c0,0,3.941,0.129,3.941-3.816\r\n\tC10.394,12.51,10.566,9.301,8.072,9.301z M2.844,5.697h3.61c0,0,0.878,0,0.878,1.344c0,1.346-0.516,1.541-1.102,1.541H2.844V5.697z\r\n\t M6.271,14.029H2.844v-3.455h3.61c0,0,1.308-0.018,1.308,1.775C7.762,13.861,6.785,14.018,6.271,14.029z M15.649,6.688\r\n\tc-4.771,0-4.767,4.967-4.767,4.967s-0.326,4.941,4.767,4.941c0,0,4.243,0.254,4.243-3.437h-2.182c0,0,0.072,1.391-1.988,1.391\r\n\tc0,0-2.184,0.152-2.184-2.25h6.423C19.962,12.299,20.67,6.688,15.649,6.688z M17.59,10.574h-4.074c0,0,0.266-1.992,2.182-1.992\r\n\tS17.59,10.574,17.59,10.574z M18.097,4.16H12.98v1.594h5.117V4.16z"
+ }
+ }]
+};
+exports.behance = behance;
+var dribbble = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.565,7.421C8.207,5.007,6.754,3.038,6.648,2.893C4.457,3.929,2.822,5.948,2.311,8.38C2.517,8.384,5.793,8.423,9.565,7.421\r\n\tz M10.543,10.061c0.102-0.033,0.206-0.064,0.309-0.094c-0.197-0.447-0.412-0.895-0.637-1.336C6.169,9.843,2.287,9.755,2.15,9.751\r\n\tc-0.003,0.084-0.007,0.166-0.007,0.25c0,2.019,0.763,3.861,2.016,5.252l-0.005-0.006C4.154,15.247,6.304,11.433,10.543,10.061z\r\n\t M5.171,16.194V16.19c-0.058-0.045-0.12-0.086-0.178-0.135C5.099,16.14,5.171,16.194,5.171,16.194z M8.118,2.372\r\n\tC8.111,2.374,8.103,2.376,8.103,2.376c0.006-0.002,0.014-0.002,0.014-0.002L8.118,2.372z M15.189,4.104\r\n\tC13.805,2.886,11.99,2.143,10,2.143c-0.639,0-1.258,0.078-1.852,0.221c0.12,0.16,1.595,2.119,2.938,4.584\r\n\tC14.048,5.839,15.167,4.136,15.189,4.104z M10,19.2c-5.08,0-9.199-4.119-9.199-9.199C0.8,4.919,4.919,0.8,10,0.8\r\n\tc5.082,0,9.2,4.119,9.2,9.201C19.2,15.081,15.082,19.2,10,19.2z M11.336,11.286c-4.611,1.607-6.134,4.838-6.165,4.904\r\n\tc1.334,1.041,3.006,1.666,4.828,1.666c1.088,0,2.125-0.221,3.067-0.621c-0.116-0.689-0.573-3.096-1.679-5.967\r\n\tC11.371,11.274,11.354,11.28,11.336,11.286z M11.69,8.12c0.184,0.373,0.358,0.754,0.523,1.139c0.059,0.135,0.114,0.272,0.17,0.406\r\n\tc2.713-0.342,5.385,0.238,5.473,0.256c-0.019-1.863-0.686-3.572-1.787-4.912C16.051,5.032,14.79,6.852,11.69,8.12z M12.861,10.905\r\n\tc1.031,2.836,1.449,5.142,1.529,5.611c1.764-1.191,3.018-3.08,3.367-5.27C17.601,11.196,15.401,10.499,12.861,10.905z"
+ }
+ }]
+};
+exports.dribbble = dribbble;
+var dropbox = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.109,0.902L0.4,4.457l3.911,3.279L10,4.043L6.109,0.902z M13.452,15.992c-0.102,0-0.203-0.033-0.285-0.102L10,13.262\r\n\tl-3.167,2.629c-0.082,0.068-0.184,0.102-0.285,0.102c-0.085,0-0.17-0.023-0.244-0.072l-2.346-1.533v0.904L10,19.098l6.042-3.807\r\n\tv-0.904l-2.346,1.533C13.622,15.969,13.537,15.992,13.452,15.992z M19.6,4.457l-5.71-3.555L10,4.043l5.688,3.693L19.6,4.457z\r\n\t M10,11.291l3.528,2.928l5.641-3.688l-3.481-2.795L10,11.291z M6.472,14.219L10,11.291L4.311,7.736l-3.48,2.795L6.472,14.219z"
+ }
+ }]
+};
+exports.dropbox = dropbox;
+var evernote = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.3,4.3c0-1.2-1.7-1.3-1.7-1.3l-4.1-0.3c0,0-0.1-1.1-0.9-1.5C9.8,0.9,8.9,1,8.3,1C7.6,1,7.5,1.9,7.5,2.6\r\n\tc0,0.8,0,1.7,0,2.2c0,1-0.4,1.4-1.6,1.4H3.6c-0.6,0-1.1,0.1-1.1,0.6c0,0.5,0.8,5,1.8,6c0.6,0.6,4.3,1,5.1,1s0.5-2.3,0.7-2.3\r\n\ts0.5,1.3,1.7,1.6c1.2,0.3,2.9,0.2,3,1.1c0.1,1.2,0.2,2.6-0.5,2.7l-1.7,0.1c-1.2-0.1-0.9-1.4-0.3-1.4c0.5,0,0.8,0,0.8,0l0.1-1.4\r\n\tc0,0-2.7-0.3-2.8,1.5c-0.1,1.7,0.2,2.4,0.4,2.6c0.2,0.2,0.6,0.5,3.9,0.5C19,19,17.3,5.5,17.3,4.3z M15.4,10.3\r\n\tC15.3,10.5,14.6,10,14,10c-0.6,0-1.3,0.3-1.5,0.1c-0.2-0.2,0.1-2,1.3-2S15.6,10.1,15.4,10.3z M5.3,4.6c-0.5,0-2.9,0-2.9,0l3.5-3.4\r\n\tc0,0-0.1,2.8-0.1,3C5.8,4.4,5.7,4.6,5.3,4.6z"
+ }
+ }]
+};
+exports.evernote = evernote;
+var facebook = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,1H3C1.9,1,1,1.9,1,3v14c0,1.101,0.9,2,2,2h7v-7H8V9.525h2V7.475c0-2.164,1.212-3.684,3.766-3.684l1.803,0.002v2.605\r\n\th-1.197C13.378,6.398,13,7.144,13,7.836v1.69h2.568L15,12h-2v7h4c1.1,0,2-0.899,2-2V3C19,1.9,18.1,1,17,1z"
+ }
+ }]
+};
+exports.facebook = facebook;
+var flattr = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.598,8.541c0-1.637,0.434-2.678,1.889-2.912c0.508-0.1,1.566-0.064,2.239-0.064v2.5c0,0.024,0.003,0.064,0.009,0.084\r\n\tC9.762,8.25,9.854,8.324,9.963,8.324c0.061,0,0.118-0.031,0.178-0.09L16.377,2H12.19H7.548C3.874,2,2,4.115,2,8.066v8.287\r\n\tl3.598-3.602V8.541z M14.4,7.248v4.209c0,1.637-0.434,2.68-1.889,2.912c-0.508,0.1-1.566,0.065-2.238,0.065v-2.5\r\n\tc0-0.022-0.004-0.062-0.009-0.084c-0.028-0.1-0.12-0.174-0.228-0.176c-0.062,0-0.118,0.033-0.179,0.092l-6.235,6.232L7.809,18h4.643\r\n\tC16.125,18,18,15.885,18,11.934V3.647L14.4,7.248z"
+ }
+ }]
+};
+exports.flattr = flattr;
+var flickr = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5,14c-2.188,0-3.96-1.789-3.96-4c0-2.211,1.772-4,3.96-4c2.187,0,3.96,1.789,3.96,4C8.96,12.211,7.187,14,5,14z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15,14c-2.188,0-3.96-1.789-3.96-4c0-2.211,1.772-4,3.96-4c2.187,0,3.96,1.789,3.96,4C18.96,12.211,17.187,14,15,14z"
+ }
+ }]
+};
+exports.flickr = flickr;
+var foursquare = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.92,1C4.412,1,4,1.412,4,1.92v16.516c0,0.625,0.765,0.926,1.192,0.47l4.471-4.79C9.731,14.042,9.826,14,9.927,14h3.237\r\n\tc0.486,0,0.905-0.343,1.001-0.82l2.111-10.514C16.449,1.804,15.79,1,14.911,1H4.92z M8.838,12.19L6,15.527V3.343\r\n\tC6,3.154,6.154,3,6.343,3h7.14c0.342,0,0.598,0.313,0.53,0.648l-0.413,2.055C13.566,5.876,13.414,6,13.238,6h-3.71\r\n\tC9.236,6,9,6.236,9,6.528v1.22C9,7.887,9.113,8,9.253,8h3.294c0.306,0,0.536,0.28,0.476,0.581l-0.614,3.058\r\n\tC12.366,11.849,12.181,12,11.967,12H9.25C9.091,12,8.941,12.069,8.838,12.19z"
+ }
+ }]
+};
+exports.foursquare = foursquare;
+var github = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.18,11.309c-0.718,0-1.3,0.807-1.3,1.799c0,0.994,0.582,1.801,1.3,1.801s1.3-0.807,1.3-1.801\r\n\tC14.479,12.116,13.898,11.309,13.18,11.309z M17.706,6.626c0.149-0.365,0.155-2.439-0.635-4.426c0,0-1.811,0.199-4.551,2.08\r\n\tc-0.575-0.16-1.548-0.238-2.519-0.238c-0.973,0-1.945,0.078-2.52,0.238C4.74,2.399,2.929,2.2,2.929,2.2\r\n\tC2.14,4.187,2.148,6.261,2.295,6.626C1.367,7.634,0.8,8.845,0.8,10.497c0,7.186,5.963,7.301,7.467,7.301\r\n\tc0.342,0,1.018,0.002,1.734,0.002c0.715,0,1.392-0.002,1.732-0.002c1.506,0,7.467-0.115,7.467-7.301\r\n\tC19.2,8.845,18.634,7.634,17.706,6.626z M10.028,16.915H9.972c-3.771,0-6.709-0.449-6.709-4.115c0-0.879,0.31-1.693,1.047-2.369\r\n\tc1.227-1.127,3.305-0.531,5.662-0.531c0.01,0,0.02,0,0.029,0c0.01,0,0.018,0,0.027,0c2.357,0,4.436-0.596,5.664,0.531\r\n\tc0.735,0.676,1.045,1.49,1.045,2.369C16.737,16.466,13.8,16.915,10.028,16.915z M6.821,11.309c-0.718,0-1.3,0.807-1.3,1.799\r\n\tc0,0.994,0.582,1.801,1.3,1.801c0.719,0,1.301-0.807,1.301-1.801C8.122,12.116,7.54,11.309,6.821,11.309z"
+ }
+ }]
+};
+exports.github = github;
+var googlePlus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.989,5.589c0,1.494,0.499,2.572,1.482,3.205c0.806,0.52,1.74,0.598,2.226,0.598c0.118,0,0.213-0.006,0.279-0.01\r\n\tc0,0-0.154,1.004,0.59,1.996H6.532c-1.289,0-5.493,0.269-5.493,3.727c0,3.516,3.861,3.695,4.636,3.695\r\n\tc0.061,0,0.097-0.002,0.097-0.002c0.008,0,0.063,0.002,0.158,0.002c0.497,0,1.782-0.062,2.975-0.643\r\n\tc1.548-0.75,2.333-2.059,2.333-3.885c0-1.764-1.196-2.814-2.069-3.582c-0.533-0.469-0.994-0.873-0.994-1.266\r\n\tc0-0.4,0.337-0.701,0.762-1.082c0.689-0.615,1.339-1.492,1.339-3.15c0-1.457-0.189-2.436-1.354-3.057\r\n\tc0.121-0.062,0.551-0.107,0.763-0.137c0.631-0.086,1.554-0.184,1.554-0.699V1.2H6.64C6.594,1.202,1.989,1.372,1.989,5.589z\r\n\t M9.413,14.602c0.088,1.406-1.115,2.443-2.922,2.574c-1.835,0.135-3.345-0.691-3.433-2.096c-0.043-0.676,0.254-1.336,0.835-1.863\r\n\tc0.589-0.533,1.398-0.863,2.278-0.928c0.104-0.006,0.207-0.012,0.31-0.012C8.18,12.278,9.33,13.276,9.413,14.602z M8.212,4.626\r\n\tc0.451,1.588-0.23,3.246-1.316,3.553C6.771,8.214,6.643,8.231,6.512,8.231c-0.994,0-1.979-1.006-2.345-2.393\r\n\tC3.963,5.062,3.98,4.38,4.214,3.726c0.229-0.645,0.643-1.078,1.163-1.225c0.125-0.035,0.254-0.053,0.385-0.053\r\n\tC6.962,2.448,7.734,2.946,8.212,4.626z M16,8V5h-2v3h-3v2h3v3h2v-3h3V8H16z"
+ }
+ }]
+};
+exports.googlePlus = googlePlus;
+var hangouts = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0C5.25,0,1.4,3.806,1.4,8.5C1.4,13.194,5.25,17,10,17v3c3.368-1.672,8.6-5.305,8.6-11.5C18.6,3.806,14.75,0,10,0z\r\n\t M9,9.741c0,1.328-1.021,2.422-2.32,2.538c-0.123,0.011-0.228-0.088-0.228-0.211v-0.852c0-0.106,0.079-0.194,0.184-0.21\r\n\tC7.167,10.93,7.573,10.519,7.683,10H5.732C5.328,10,5,9.672,5,9.268V6.732C5,6.328,5.328,6,5.732,6h2.536C8.672,6,9,6.328,9,6.732\r\n\tV9.741z M15,9.741c0,1.328-1.021,2.422-2.32,2.538c-0.123,0.011-0.228-0.088-0.228-0.211v-0.852c0-0.106,0.079-0.194,0.184-0.21\r\n\tc0.531-0.077,0.937-0.487,1.047-1.006h-1.951C11.328,10,11,9.672,11,9.268V6.732C11,6.328,11.328,6,11.732,6h2.536\r\n\tC14.672,6,15,6.328,15,6.732V9.741z"
+ }
+ }]
+};
+exports.hangouts = hangouts;
+var grooveshark = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.grooveshark = grooveshark;
+var houzz = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4,10l6,3l-6,3V10z M10,7l6,3V4L10,7z M10,20l6-3v-7l-6,3V20z M10,0L4,3v7l6-3V0z"
+ }
+ }]
+};
+exports.houzz = houzz;
+var icloud = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.909,5c1.884,0,3.417,1.598,3.417,3.561c0,0.136-0.012,0.29-0.037,0.484c0,0-0.163,1.262-0.206,1.594\r\n\tc-0.043,0.332,0.186,0.65,0.528,0.653c0.342,0.002,1.65,0.01,1.65,0.01C17.219,11.308,18,12.137,18,13.15\r\n\tc0,1.02-0.785,1.85-1.75,1.85H4.167C2.972,15,2,13.978,2,12.722c0-0.913,0.519-1.735,1.323-2.095c0,0,0.421-0.188,0.651-0.291\r\n\tc0.23-0.103,0.508-0.431,0.516-0.775c0.008-0.344,0.016-0.714,0.016-0.714c0.012-0.535,0.421-0.97,0.91-0.97\r\n\tc0.032,0,0.094,0.006,0.207,0.035c0,0,0.774,0.197,1.039,0.264c0.265,0.067,0.606-0.066,0.73-0.309\r\n\tc0.124-0.243,0.503-0.981,0.503-0.981C8.493,5.723,9.648,5,10.909,5 M10.909,3C8.828,3,7.023,4.207,6.116,5.974\r\n\tC5.891,5.917,5.659,5.878,5.417,5.878c-1.587,0-2.873,1.304-2.91,2.924C1.033,9.461,0,10.966,0,12.722C0,15.085,1.865,17,4.167,17\r\n\tH16.25c2.071,0,3.75-1.724,3.75-3.85c0-2.118-1.667-3.835-3.728-3.848c0.031-0.243,0.053-0.489,0.053-0.741\r\n\tC16.326,5.49,13.901,3,10.909,3L10.909,3z"
+ }
+ }]
+};
+exports.icloud = icloud;
+var instagram = {
+ "viewBox": "0 0 18 18",
+ "children": [{
+ "name": "title",
+ "attribs": {}
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18.94586,6.28931a6.60561,6.60561,0,0,0-.41833-2.18463,4.41189,4.41189,0,0,0-1.03809-1.59412,4.41189,4.41189,0,0,0-1.59412-1.03809,6.60561,6.60561,0,0,0-2.18463-.41833C12.75073,1.01038,12.44427,1,10,1s-2.75073.01038-3.71069,0.05414a6.60561,6.60561,0,0,0-2.18463.41833A4.41189,4.41189,0,0,0,2.51056,2.51056,4.41189,4.41189,0,0,0,1.47247,4.10468a6.60561,6.60561,0,0,0-.41833,2.18463C1.01038,7.24927,1,7.55573,1,10s0.01038,2.75073.05414,3.71069a6.60561,6.60561,0,0,0,.41833,2.18463,4.41189,4.41189,0,0,0,1.03809,1.59412,4.41109,4.41109,0,0,0,1.59412,1.03809,6.60561,6.60561,0,0,0,2.18463.41833C7.24927,18.98969,7.55573,19,10,19s2.75073-.01031,3.71069-0.05414a6.60561,6.60561,0,0,0,2.18463-.41833,4.60208,4.60208,0,0,0,2.6322-2.6322,6.60561,6.60561,0,0,0,.41833-2.18463C18.98962,12.75073,19,12.44427,19,10S18.98962,7.24927,18.94586,6.28931Zm-1.61993,7.34747a4.97824,4.97824,0,0,1-.30994,1.67114A2.98017,2.98017,0,0,1,15.30792,17.016a4.9786,4.9786,0,0,1-1.67114.30994C12.68787,17.3692,12.40326,17.37836,10,17.37836s-2.68787-.00916-3.63678-0.05243A4.9786,4.9786,0,0,1,4.69208,17.016a2.78769,2.78769,0,0,1-1.03485-.67322A2.78769,2.78769,0,0,1,2.984,15.30792a4.97824,4.97824,0,0,1-.30994-1.67114C2.6308,12.68774,2.62164,12.40314,2.62164,10s0.00916-2.68774.05243-3.63678A4.9786,4.9786,0,0,1,2.984,4.69208a2.78769,2.78769,0,0,1,.67322-1.03485A2.78769,2.78769,0,0,1,4.69208,2.984a4.9786,4.9786,0,0,1,1.67114-.30994C7.31226,2.6308,7.59686,2.62164,10,2.62164s2.68774,0.00916,3.63678.05243a4.9786,4.9786,0,0,1,1.67114.30994,2.78769,2.78769,0,0,1,1.03485.67322A2.78769,2.78769,0,0,1,17.016,4.69208a4.9786,4.9786,0,0,1,.30994,1.67114c0.04327,0.949.05243,1.2337,0.05243,3.63678S17.3692,12.68774,17.32593,13.63678ZM10,5.37836A4.62164,4.62164,0,1,0,14.62164,10,4.62169,4.62169,0,0,0,10,5.37836ZM10,13a3,3,0,1,1,3-3A3,3,0,0,1,10,13Zm5.88422-7.8042a1.08,1.08,0,1,1-1.08-1.08A1.08,1.08,0,0,1,15.88422,5.1958Z",
+ "transform": "translate(-1 -1)"
+ }
+ }]
+};
+exports.instagram = instagram;
+var lastfm = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.574,14.576C8.097,14.924,7.119,15.6,5.193,15.6C2.532,15.6,0,13.707,0,10.195C0,6.547,2.637,4.4,5.354,4.4\r\n\tc3.047,0,4.183,1.108,5.144,4.109l0.756,2.309c0.551,1.688,1.713,2.91,4.026,2.91c1.558,0,2.382-0.346,2.382-1.199\r\n\tc0-0.67-0.389-1.156-1.557-1.434l-1.559-0.369c-1.9-0.461-2.656-1.455-2.656-3.025c0-2.516,2.016-3.301,4.077-3.301\r\n\tc2.337,0,3.757,0.854,3.94,2.932l-2.291,0.277c-0.092-0.992-0.688-1.408-1.787-1.408c-1.008,0-1.627,0.461-1.627,1.246\r\n\tc0,0.693,0.299,1.109,1.307,1.34l1.466,0.324C18.945,9.572,20,10.543,20,12.414c0,2.309-1.924,3.186-4.766,3.186\r\n\tc-3.963,0-5.338-1.801-6.07-4.041L8.43,9.25c-0.549-1.687-0.99-2.902-3.006-2.902c-1.398,0-3.219,0.916-3.219,3.756\r\n\tc0,2.217,1.523,3.604,3.104,3.604c1.34,0,2.146-0.754,2.564-1.131L8.574,14.576z"
+ }
+ }]
+};
+exports.lastfm = lastfm;
+var linkedin = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5,3c0,1.1-0.7,2-2,2C1.8,5,1,4.1,1,3.1C1,2,1.8,1,3,1S5,1.9,5,3z M1,19h4V6H1V19z M14.6,6.2c-2.1,0-3.3,1.2-3.8,2h-0.1\r\n\tl-0.2-1.7H6.9C6.9,7.6,7,8.9,7,10.4V19h4v-7.1c0-0.4,0-0.7,0.1-1c0.3-0.7,0.8-1.6,1.9-1.6c1.4,0,2,1.2,2,2.8V19h4v-7.4\r\n\tC19,7.9,17.1,6.2,14.6,6.2z"
+ }
+ }]
+};
+exports.linkedin = linkedin;
+var medium = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.7502384,5C18.7502384,5,18,5,18,5.7501426s0,8.5002785,0,8.5002785S18,15,18.7502384,15H19v2h-6v-2h1V5.6999512\r\n\th-0.0999756L10.8354492,17H8.1365967L5.0999761,5.6999512H5.0000005V15h1v2h-5v-2h0.2497627c0,0,0.7502373,0,0.7502373-0.7501431\r\n\tc0-0.7501421,0-8.5002775,0-8.5002775S2.0000005,5,1.2497631,5H1.0000005V3h6.6340332l2.3269038,8.6591797h0.0766602L12.3859863,3\r\n\tH19v2H18.7502384z"
+ }
+ }]
+};
+exports.medium = medium;
+var mixi = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.mixi = mixi;
+var onedrive = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.429,9.847c0.487-1.961,2.249-3.394,4.341-3.394c1.236,0,2.394,0.505,3.232,1.382c0.354-0.114,0.768-0.202,1.136-0.21\r\n\tv-0.13c0-2.482-1.845-4.495-4.12-4.495C9.392,3,7.998,4.038,7.328,5.531C6.834,5.197,6.257,4.996,5.634,4.996\r\n\tc-1.785,0-3.231,1.577-3.231,3.523c0,0.21,0.024,0.414,0.057,0.613c-1.377,0.136-2.455,1.544-2.455,3.08\r\n\tc0,0.016,0.004,0.029,0.004,0.045C0.008,12.271,0,12.285,0,12.299c0,0.615,0.214,1.177,0.561,1.631C1.053,14.592,1.823,15,2.701,15\r\n\th1.261c-0.246-0.488-0.398-1.032-0.398-1.615C3.563,11.648,4.794,10.193,6.429,9.847z M17.889,11.777\r\n\tc-0.025,0-0.05,0.007-0.075,0.008c0.007-0.074,0.022-0.146,0.022-0.222c0-1.472-1.193-2.664-2.665-2.664\r\n\tc-0.586,0-1.123,0.194-1.564,0.516c-0.546-1.015-1.604-1.712-2.838-1.712c-1.788,0-3.237,1.449-3.237,3.237\r\n\tc0,0.023,0.006,0.043,0.007,0.066C7.421,10.988,7.303,10.97,7.18,10.97c-1.335,0-2.415,1.081-2.415,2.415\r\n\tc0,0.167,0.017,0.33,0.049,0.487C5.042,15.083,6.102,16,7.38,16h10.706v-0.019C19.158,15.879,20,14.987,20,13.889\r\n\tC20,12.723,19.055,11.777,17.889,11.777z"
+ }
+ }]
+};
+exports.onedrive = onedrive;
+var paypal = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.914,10.677h1.659c3.604,0,5.649-1.623,6.3-4.96c0.021-0.11,0.04-0.216,0.056-0.322c0.036-0.226,0.054-0.429,0.062-0.624\r\n\tC15.997,4.637,16.001,4.558,16,4.484c-0.008-0.391-0.077-0.722-0.216-1.039c-0.129-0.296-0.324-0.587-0.613-0.918\r\n\tC14.318,1.557,12.832,1,11.057,1H5.404C5.006,1,4.667,1.29,4.605,1.683l-1.02,6.571l-1.269,8.185C2.27,16.734,2.498,17,2.796,17\r\n\tl2.772,0l0.849-5.043C6.534,11.217,7.164,10.677,7.914,10.677z M17.017,6.09c-0.792,3.771-3.357,5.772-7.445,5.772H7.914\r\n\tc-0.164,0-0.302,0.118-0.328,0.282L6.481,19h2.907c0.348,0,0.645-0.253,0.699-0.597l0.029-0.15l0.555-3.514l0.036-0.194\r\n\tc0.054-0.344,0.351-0.597,0.699-0.597h0.44c2.85,0,5.081-1.158,5.733-4.506C17.847,8.062,17.711,6.908,17.017,6.09z"
+ }
+ }]
+};
+exports.paypal = paypal;
+var picasa = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.808,1.823C2.719,3.411,0.8,6.544,0.8,10.021c0,0.633,0.08,1.275,0.221,1.918L8.97,4.7\r\n\tC8.122,3.929,5.894,1.901,5.808,1.823z M13.793,1.626C12.593,1.081,11.317,0.8,9.999,0.8c-0.934,0-1.855,0.156-2.749,0.441\r\n\tl6.543,5.951V1.626z M15.192,2.438v10.617h3.485c0.343-0.982,0.522-2.004,0.522-3.035C19.2,6.987,17.677,4.148,15.192,2.438z\r\n\t M1.463,13.429c0.674,1.693,1.857,3.15,3.368,4.184v-7.25l-2.045,1.861C2.088,12.858,1.506,13.39,1.463,13.429z M6.23,18.425\r\n\tc0.935,0.422,1.913,0.682,2.92,0.775h1.689c3.019-0.281,5.727-2.068,7.199-4.744H6.23V18.425z"
+ }
+ }]
+};
+exports.picasa = picasa;
+var pinterest = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.617,13.227C8.091,15.981,7.45,18.621,5.549,20C4.963,15.838,6.41,12.713,7.083,9.395\r\n\tc-1.147-1.93,0.138-5.812,2.555-4.855c2.975,1.176-2.576,7.172,1.15,7.922c3.891,0.781,5.479-6.75,3.066-9.199\r\n\tC10.369-0.275,3.708,3.18,4.528,8.245c0.199,1.238,1.478,1.613,0.511,3.322c-2.231-0.494-2.897-2.254-2.811-4.6\r\n\tc0.138-3.84,3.449-6.527,6.771-6.9c4.201-0.471,8.144,1.543,8.689,5.494c0.613,4.461-1.896,9.293-6.389,8.945\r\n\tC10.081,14.411,9.571,13.807,8.617,13.227z"
+ }
+ }]
+};
+exports.pinterest = pinterest;
+var qq = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.005,13.018c-0.779-0.547-1.751-0.51-2.304,0.277c-0.553,0.785-4.418,5.633-10.751,3.619\r\n\tc0.239,0.209,0.49,0.406,0.755,0.592c4.153,2.926,9.892,1.928,12.816-2.225C18.076,14.494,17.784,13.567,17.005,13.018z\r\n\t M4.785,12.401C4.381,11.53,2.116,5.758,7.025,1.28c-0.3,0.104-0.597,0.221-0.89,0.357C1.526,3.772-0.481,9.24,1.654,13.85\r\n\tc0.403,0.871,1.353,1.084,2.218,0.684C4.736,14.133,5.188,13.272,4.785,12.401z M10.826,0.823c-0.956-0.086-1.614,0.629-1.7,1.578\r\n\tC9.041,3.35,9.561,4.172,10.517,4.258c0.956,0.086,7.087,1.01,8.51,7.502c0.062-0.311,0.106-0.627,0.136-0.949\r\n\tC19.618,5.75,15.886,1.278,10.826,0.823z M6.891,10.53c-0.264,0.619-0.306,1.213-0.094,1.322c0.146,0.076,0.374-0.098,0.588-0.416\r\n\tC7.47,11.783,7.68,12.098,7.98,12.35c-0.314,0.115-0.52,0.305-0.52,0.519c0,0.354,0.556,0.639,1.241,0.639\r\n\tc0.618,0,1.13-0.232,1.225-0.537c0.025,0,0.123,0,0.147,0c0.095,0.305,0.607,0.537,1.226,0.537c0.686,0,1.241-0.285,1.241-0.639\r\n\tc0-0.215-0.205-0.404-0.52-0.519c0.299-0.252,0.51-0.566,0.594-0.914c0.214,0.318,0.442,0.492,0.589,0.416\r\n\tc0.211-0.109,0.17-0.703-0.095-1.322c-0.207-0.488-0.488-0.848-0.702-0.926C12.41,9.573,12.41,9.541,12.41,9.51\r\n\tc0-0.19-0.052-0.363-0.142-0.504c0.002-0.012,0.002-0.023,0.002-0.033c0-0.088-0.021-0.168-0.056-0.238\r\n\tC12.16,7.467,11.335,6.461,10,6.461c-1.336,0-2.161,1.006-2.215,2.273c-0.035,0.07-0.057,0.15-0.057,0.238\r\n\tc0,0.01,0.001,0.021,0.002,0.033C7.642,9.147,7.589,9.321,7.589,9.51c0,0.031,0.001,0.062,0.004,0.094\r\n\tC7.38,9.682,7.098,10.041,6.891,10.53z"
+ }
+ }]
+};
+exports.qq = qq;
+var raft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.6734395,19c-0.877316,0-1.6501045-0.3605442-2.1763153-1.0143661\r\n\tc-0.6450326-0.8027058-0.8514075-1.9354591-0.5816016-3.1901903l0.0580709-0.2699594l1.9735143,0.4313974l-0.0580707,0.269063\r\n\tc-0.13937,0.6448536-0.083086,1.1650429,0.1581311,1.4654961c0.148304,0.1838589,0.3591456,0.2780323,0.6262712,0.2780323\r\n\tc0.7754688,0,1.5446839-1.2412777,2.125392-3.4179964c-0.6360989-0.2161474-1.2203803-0.5354357-1.7403374-0.9524832\r\n\tl-0.213522-0.1713028l1.2579031-1.5892649l0.2153087,0.1722002c0.2742729,0.2206316,0.580708,0.4009037,0.9139452,0.5372286\r\n\tc0.1688519-0.968626,0.3037548-2.0323219,0.4029226-3.168664L8.659173,8.1047468l2.0110369,0.1775808l-0.0241213,0.2744446\r\n\tc-0.1018476,1.1695271-0.240324,2.2673035-0.4109631,3.2682171c1.3874464-0.1399126,2.6516027-0.9273701,3.3547068-2.1112471\r\n\tc1.152482-1.9408398,0.694169-4.3704782-1.0890512-5.7776766c-0.7620678-0.601804-1.8814945-0.9433796-2.9267693-0.8913608\r\n\tc-1.3043594,0.0547094-2.4041319,0.642029-3.2680469,1.765815C5.2660508,6.1621122,5.1561627,8.1881561,6.0450931,9.6267452\r\n\tl0.1447301,0.2340851L4.4745007,10.934391l-0.1447301-0.2349815c-1.338309-2.1677494-1.182858-5.1014323,0.3796935-7.1328573\r\n\tc1.2266345-1.59644,2.8794193-2.4716568,4.7805681-2.5514789c1.5518312-0.0609876,3.1134892,0.4205006,4.2570381,1.3218613\r\n\tc2.5944252,2.0466716,3.2573261,5.5875397,1.5768461,8.4180813c-0.7397337,1.2457609-1.8823881,2.1955528-3.2430325,2.7067728\r\n\tc0.2519379,0.3838625,0.4663534,0.8430634,0.712038,1.5139265l0.1581316,0.4394693\r\n\tc0.4967279,1.3874674,0.7236509,1.5112371,1.2453957,1.5112371c0.2358561,0,0.4940481-0.1004505,0.6566467-0.256506\r\n\tc0.3126888-0.2995567,0.4047089-0.8753519,0.2742729-1.7121372l-0.0428829-0.2726507l1.9949551-0.3148041l0.0428829,0.2726507\r\n\tc0.235857,1.513031-0.0678978,2.7229156-0.8773155,3.4987144c-0.5422916,0.5183945-1.2891722,0.8152599-2.0485592,0.8152599\r\n\tc-0.9309206,0-1.684948-0.3479881-2.239747-1.0332012c-0.3850546-0.4735508-0.5985765-0.9641418-0.9050112-1.8179684\r\n\tl-0.152771-0.4260159c-0.3546791-0.9677296-0.6682615-1.4565268-1.1203203-1.7067556\r\n\tc-0.1375828,0.5264664-0.2894602,1.0188513-0.453846,1.4681864C8.4599457,17.8026695,7.2315245,19,5.6734395,19z"
+ }
+ }]
+};
+exports.raft = raft;
+var rainbow = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,5C4.4771729,5,0,9.4771118,0,15h1.5c0-4.694458,3.8056641-8.5,8.5-8.5s8.5,3.805542,8.5,8.5H20\r\n\tC20,9.4771118,15.5228271,5,10,5z M10,11c-2.2092285,0-4,1.7908325-4,4h1.5c0-1.3807373,1.1192627-2.5,2.5-2.5\r\n\ts2.5,1.1192627,2.5,2.5H14C14,12.7908325,12.2092285,11,10,11z M10,8c-3.8659668,0-7,3.1339722-7,7h1.5\r\n\tc0-3.0375977,2.4624023-5.5,5.5-5.5s5.5,2.4624023,5.5,5.5H17C17,11.1339722,13.8659668,8,10,8z"
+ }
+ }]
+};
+exports.rainbow = rainbow;
+var rdio = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.203,10.001c0,4.307-3.448,7.799-7.701,7.799S0.8,14.308,0.8,10.001C0.8,5.692,4.248,2.2,8.501,2.2\r\n\tc0.611,0,1.204,0.076,1.774,0.213v4.441c-0.902-0.33-2.01-0.281-3.053,0.223c-1.885,0.91-2.841,2.957-2.135,4.57\r\n\tc0.705,1.615,2.807,2.188,4.691,1.277c1.299-0.627,2.443-2.137,2.443-4.029V3.171c0.162,0.09,0.32,0.188,0.475,0.289\r\n\tc1.464,0.92,3.638,2.152,6.178,2.281c0.99,0.049-0.389,2.541-2.738,3.236C16.18,9.311,16.203,9.653,16.203,10.001z"
+ }
+ }]
+};
+exports.rdio = rdio;
+var renren = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.468,0.865C4.117,1.594,0.8,5.377,0.8,9.936c0,2.266,0.82,4.338,2.179,5.941c3.221-1.559,5.472-5.086,5.489-9.191V0.865z\r\n\t M10.002,12.258c-0.573,2.373-2.285,4.4-4.418,5.748C6.894,18.725,8.4,19.135,10,19.135c1.602,0,3.108-0.41,4.418-1.129\r\n\tC12.285,16.658,10.574,14.631,10.002,12.258z M11.535,6.643c0,4.123,2.256,7.668,5.487,9.234c1.358-1.603,2.178-3.676,2.178-5.941\r\n\tc0-4.559-3.315-8.34-7.665-9.07V6.643z"
+ }
+ }]
+};
+exports.renren = renren;
+var scribd = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.643,18.284c0,0.224-0.072,0.492-0.148,0.716h5.737c0.328-0.377,0.513-0.831,0.513-1.342c0-1.385-1.644-2.154-5.241-3.842\r\n\tL4.998,13.58C3.225,12.737,1.912,11.995,1,11.111v4.398c0.176-0.024,0.359-0.042,0.558-0.042\r\n\tC4.559,15.468,4.643,18.256,4.643,18.284z M17,1h-3.738c1.748,1.178,2.467,2.842,2.467,4.142c0,2.194-1.836,2.905-2.727,2.905\r\n\tl-0.271,0.002c-2.046,0-3.09-1.247-3.104-3.707C9.506,4.246,8.939,3.889,7.28,3.889c-1.96,0-2.773,1.543-2.773,2.369\r\n\tc0,0.973,0.543,2.055,4.484,3.382c6.736,2.254,6.736,5.255,6.736,7.903v0.026c0,0.437-0.031,0.924-0.117,1.431H17c1.1,0,2-0.899,2-2\r\n\tV3C19,1.9,18.1,1,17,1z"
+ }
+ }]
+};
+exports.scribd = scribd;
+var weibo = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.688,10.068c-0.274-0.084-0.463-0.142-0.319-0.508c0.311-0.797,0.344-1.484,0.007-1.975\r\n\tc-0.633-0.92-2.364-0.871-4.348-0.025c0-0.002-0.623,0.277-0.464-0.227C9.87,6.336,9.823,5.5,9.348,5.018\r\n\tC8.272,3.92,5.411,5.059,2.956,7.557C1.117,9.428,0.05,11.41,0.05,13.125c0,3.281,4.132,5.475,8.175,5.475\r\n\tc5.299,0,8.825-3.334,8.825-5.822C17.05,11.273,15.806,10.42,14.688,10.068z M8.236,17.129c-3.225,0.32-6.011-1.147-6.22-3.275\r\n\tc-0.209-2.129,2.236-4.115,5.462-4.438c3.226-0.32,6.011,1.146,6.22,3.275C13.907,14.822,11.462,16.809,8.236,17.129z M19.95,7.397\r\n\tc-0.001-3.312-2.686-5.996-6-5.996c-0.387,0-0.699,0.312-0.699,0.699s0.312,0.699,0.699,0.699c2.541,0,4.601,2.061,4.601,4.602\r\n\tc0,0.387,0.313,0.699,0.7,0.699S19.95,7.787,19.95,7.4V7.397z M17.169,7.295c-0.319-1.562-1.551-2.793-3.113-3.113\r\n\tc-0.378-0.078-0.748,0.166-0.826,0.545c-0.077,0.377,0.166,0.748,0.545,0.826c1.016,0.207,1.816,1.008,2.024,2.023\r\n\tc0.078,0.379,0.448,0.621,0.826,0.545C17.002,8.043,17.247,7.672,17.169,7.295z M6.582,11.502c-1.3,0.262-2.177,1.352-1.959,2.434\r\n\tc0.218,1.084,1.447,1.75,2.747,1.488c1.299-0.262,2.176-1.352,1.959-2.434C9.111,11.908,7.88,11.24,6.582,11.502z"
+ }
+ }]
+};
+exports.weibo = weibo;
+var skype = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.671,12.037c0.132-0.623,0.203-1.272,0.203-1.938c0-4.986-3.93-9.029-8.777-9.029c-0.511,0-1.012,0.047-1.5,0.133\r\n\tC7.812,0.695,6.885,0.4,5.89,0.4C3.079,0.4,0.8,2.744,0.8,5.637c0,0.965,0.256,1.871,0.699,2.648\r\n\tC1.383,8.871,1.321,9.479,1.321,10.1c0,4.986,3.93,9.029,8.775,9.029c0.551,0,1.087-0.051,1.607-0.15\r\n\tc0.717,0.396,1.535,0.621,2.406,0.621c2.811,0,5.09-2.344,5.09-5.236C19.2,13.527,19.009,12.738,18.671,12.037z M14.599,14.416\r\n\tc-0.406,0.59-1.006,1.059-1.783,1.391c-0.769,0.33-1.692,0.496-2.742,0.496c-1.26,0-2.317-0.227-3.143-0.678\r\n\tc-0.59-0.328-1.076-0.771-1.445-1.318c-0.372-0.555-0.561-1.104-0.561-1.633c0-0.33,0.123-0.617,0.365-0.852\r\n\tc0.24-0.232,0.549-0.352,0.916-0.352c0.301,0,0.562,0.094,0.773,0.277c0.202,0.176,0.375,0.438,0.514,0.773\r\n\tc0.156,0.367,0.326,0.676,0.505,0.92c0.172,0.234,0.42,0.432,0.735,0.586c0.318,0.154,0.748,0.232,1.275,0.232\r\n\tc0.725,0,1.32-0.158,1.768-0.473c0.438-0.309,0.65-0.676,0.65-1.127c0-0.357-0.111-0.637-0.34-0.857\r\n\tc-0.238-0.228-0.555-0.408-0.936-0.531c-0.399-0.127-0.941-0.266-1.611-0.41c-0.91-0.201-1.683-0.439-2.299-0.707\r\n\tc-0.63-0.275-1.137-0.658-1.508-1.137C5.357,8.533,5.165,7.924,5.165,7.209c0-0.682,0.2-1.297,0.596-1.828\r\n\tc0.393-0.525,0.965-0.935,1.703-1.217C8.192,3.887,9.06,3.746,10.04,3.746c0.783,0,1.473,0.094,2.047,0.277\r\n\tc0.578,0.186,1.066,0.436,1.449,0.744c0.387,0.311,0.674,0.643,0.854,0.986c0.182,0.35,0.275,0.695,0.275,1.031\r\n\tc0,0.322-0.121,0.615-0.361,0.871c-0.24,0.258-0.543,0.387-0.9,0.387c-0.324,0-0.58-0.082-0.756-0.242\r\n\tc-0.164-0.148-0.336-0.383-0.524-0.717c-0.219-0.428-0.484-0.766-0.788-1.002c-0.295-0.232-0.788-0.35-1.466-0.35\r\n\tc-0.629,0-1.141,0.131-1.519,0.387C7.983,6.367,7.806,6.65,7.806,6.984c0,0.207,0.058,0.379,0.176,0.525\r\n\tc0.125,0.158,0.301,0.295,0.523,0.41C8.735,8.039,8.972,8.133,9.21,8.201c0.244,0.07,0.654,0.172,1.215,0.307\r\n\tc0.711,0.156,1.363,0.332,1.939,0.521c0.585,0.193,1.09,0.43,1.502,0.705c0.42,0.283,0.754,0.645,0.989,1.076\r\n\tc0.237,0.434,0.357,0.969,0.357,1.59C15.213,13.145,15.006,13.822,14.599,14.416z"
+ }
+ }]
+};
+exports.skype = skype;
+var slideshare = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,7.08c1.381,0,2.5-1.119,2.5-2.5s-1.119-2.5-2.5-2.5s-2.5,1.119-2.5,2.5S11.62,7.08,13,7.08z M18.845,5.943\r\n\tC15.265,8.498,13.616,8.051,12,8c-1.118-0.057-1.5,0.298-1.5,1.08l0.001,6c0,5,8.421,3.43,5.165-4.949\r\n\tc1.671-0.959,3.076-2.434,3.876-3.412C19.953,6.111,19.514,5.474,18.845,5.943z M7,2.08c-1.381,0-2.5,1.119-2.5,2.5\r\n\ts1.119,2.5,2.5,2.5s2.5-1.119,2.5-2.5S8.38,2.08,7,2.08z M8,8C6.384,8.051,4.735,8.498,1.155,5.943\r\n\tC0.486,5.474,0.047,6.111,0.458,6.718c0.8,0.979,2.205,2.453,3.876,3.412c-3.256,8.379,5.165,9.949,5.165,4.949l0.001-6\r\n\tC9.5,8.298,9.118,7.943,8,8z"
+ }
+ }]
+};
+exports.slideshare = slideshare;
+var smashing = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.023,16.032c-2.508,0-4.253-1.555-4.253-1.555L4.287,17.84c1.023,0.547,2.092,0.936,2.709,1.141l-1.592,0.381\r\n\tc-0.746,0.178-1.496-0.283-1.675-1.029L0.639,5.405C0.46,4.659,0.92,3.909,1.667,3.729L5.383,2.84\r\n\tc-0.91,1.029-1.263,2.252-1.174,3.65c0.139,2.193,2.237,3.879,4.734,4.822C13.644,13.088,12.529,16.032,10.023,16.032z\r\n\t M19.361,14.594L16.27,1.666c-0.178-0.746-0.928-1.207-1.675-1.027l-2.663,0.637c0.679,0.105,2.024,0.4,3.505,1.178l-1.159,3.213\r\n\tc0,0-0.965-1.078-3.553-1.209c-2.46-0.125-3.828,2.537,0.969,4.105c3.674,1.201,4.848,3.516,4.787,5.658\r\n\tc-0.031,1.113-0.421,2.018-0.872,2.701l2.725-0.652C19.08,16.092,19.54,15.342,19.361,14.594z"
+ }
+ }]
+};
+exports.smashing = smashing;
+var soundcloud = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.672,13.055L1,11.654l-0.328-1.447c-0.009-0.043-0.092-0.076-0.191-0.076c-0.102,0-0.184,0.033-0.191,0.076L0,11.654\r\n\tl0.289,1.4c0.008,0.045,0.09,0.076,0.191,0.076C0.58,13.131,0.663,13.1,0.672,13.055z M2.723,13.832L3,11.668L2.723,8.32\r\n\tC2.714,8.236,2.609,8.168,2.484,8.168c-0.127,0-0.233,0.068-0.238,0.152L2,11.668l0.246,2.164c0.006,0.086,0.111,0.152,0.238,0.152\r\n\tC2.609,13.984,2.714,13.918,2.723,13.832z M4.768,13.797L5,11.67L4.768,7.213C4.762,7.107,4.639,7.025,4.486,7.025\r\n\tc-0.152,0-0.275,0.082-0.281,0.188L4,11.67l0.205,2.129c0.006,0.103,0.129,0.186,0.281,0.186\r\n\tC4.639,13.984,4.762,13.902,4.768,13.797z M6.81,13.766L7,11.67L6.81,7.18C6.805,7.057,6.664,6.959,6.49,6.959\r\n\tc-0.176,0-0.316,0.098-0.321,0.221L6,11.67l0.17,2.096c0.004,0.123,0.145,0.221,0.32,0.221C6.664,13.986,6.805,13.891,6.81,13.766z\r\n\t M8.85,13.738L9,11.672L8.85,6.523C8.846,6.381,8.686,6.268,8.492,6.268c-0.194,0-0.354,0.115-0.357,0.256L8,11.67l0.135,2.068\r\n\tc0.003,0.141,0.163,0.256,0.357,0.256C8.686,13.994,8.846,13.881,8.85,13.738z M10.277,13.996c0.008,0,7.1,0.004,7.145,0.004\r\n\tC18.846,14,20,12.883,20,11.506c0-1.377-1.154-2.492-2.578-2.492c-0.353,0-0.689,0.07-0.996,0.193\r\n\tc-0.205-2.246-2.153-4.008-4.529-4.008c-0.581,0-1.148,0.111-1.648,0.297C10.053,5.57,10.002,5.644,10,5.791v7.91\r\n\tC10.002,13.854,10.124,13.98,10.277,13.996z"
+ }
+ }]
+};
+exports.soundcloud = soundcloud;
+var spotify = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.spotify = spotify;
+var stumbleupon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11.051,8.059l1.365,0.66l2.059-0.66V6.865C14.475,4.402,12.467,2.4,10,2.4S5.525,4.402,5.525,6.865v6.27\r\n\tc0,0.578-0.472,1.049-1.051,1.049c-0.58,0-1.051-0.471-1.051-1.049V10.51H0v2.625C0,15.596,2.007,17.6,4.475,17.6\r\n\tc2.467,0,4.474-2.004,4.474-4.465v-6.27c0-0.578,0.472-1.049,1.052-1.049c0.579,0,1.051,0.471,1.051,1.049V8.059z M16.576,10.51\r\n\tv2.625c0,0.578-0.471,1.049-1.051,1.049c-0.58,0-1.051-0.471-1.051-1.049v-2.678l-2.059,0.658l-1.365-0.658v2.678\r\n\tc0,2.461,2.008,4.465,4.475,4.465S20,15.596,20,13.135V10.51H16.576z"
+ }
+ }]
+};
+exports.stumbleupon = stumbleupon;
+var swarm = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.286,18.821c-1.429-0.232-2.733-0.607-3.677-0.923c-0.046-0.015-0.781-0.282-1.007-0.37\r\n\tc-0.278-0.107-0.423-0.431-0.317-0.71c0.086-0.225,0.379-0.949,0.399-0.994c0.4-0.92,1-2.153,1.795-3.379\r\n\tc0.029,1.203,0.297,2.399,0.791,3.506C8.75,17.028,9.439,18.007,10.286,18.821z M10.173,7.027c-2.791-5.689-8.99-5.486-9.968-2.943\r\n\tc-0.751,1.952,2.535,6.602,10.097,3.244c0.002-0.001,0.002-0.001,0.004-0.002C10.28,7.279,10.192,7.079,10.173,7.027z M11.56,6.805\r\n\tc0.001,0,0.002-0.001,0.002-0.001c4.271-1.897,3.674-5.191,2.569-5.614c-1.487-0.569-4.19,1.624-2.647,5.447\r\n\tC11.499,6.664,11.55,6.777,11.56,6.805z M19.413,10.97C18.767,9.52,17.58,8.481,16.2,7.986c-0.139-0.05-0.281-0.073-0.423-0.073\r\n\tc-0.717,0-1.407,0.595-1.472,1.338c-0.109,1.239,0.137,2.501,0.68,3.718c0.535,1.199,1.294,2.213,2.27,2.957\r\n\tc0.254,0.194,0.565,0.285,0.875,0.285c0.559,0,1.117-0.296,1.339-0.826C20.04,14.023,20.066,12.432,19.413,10.97z M16.172,17.339\r\n\tc-1.195-0.912-2.142-2.139-2.815-3.646c-0.682-1.529-0.961-3.075-0.827-4.596c0.037-0.423,0.161-0.831,0.36-1.204\r\n\tc-0.035,0.009-0.111,0.027-0.114,0.028c-0.628,0.157-1.237,0.429-1.778,0.784c-0.784,0.514-1.475,1.277-1.772,2.177\r\n\tc-0.08,0.243-0.141,0.51-0.161,0.765c-0.095,1.218,0.103,2.476,0.636,3.67c0.516,1.155,1.285,2.118,2.213,2.853\r\n\tC12.48,18.617,13.5,18.9,14.334,18.9c0.783,0,1.556-0.233,2.25-0.585c0.217-0.11,0.695-0.408,0.726-0.429\r\n\tC16.895,17.78,16.506,17.594,16.172,17.339z"
+ }
+ }]
+};
+exports.swarm = swarm;
+var tripadvisor = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20,6.0090332h-2.8286133C15.2119141,4.6748047,12.8125,4,10,4S4.7880859,4.6748047,2.8286133,6.0090332H0\r\n\tC0.4279785,6.4293823,0.8271484,7.348877,0.9931641,8.0480957C0.3771973,8.8793335,0,9.8972778,0,11.0090332\r\n\tc0,2.7568359,2.2431641,5,5,5c1.3266602,0,2.5268555-0.5282593,3.4228516-1.3746338L10,17l1.5771484-2.3656006\r\n\tC12.4731445,15.4807739,13.6733398,16.0090332,15,16.0090332c2.7568359,0,5-2.2431641,5-5\r\n\tc0-1.1117554-0.3771973-2.1296997-0.9931641-2.9609375C19.1728516,7.348877,19.5720215,6.4293823,20,6.0090332z M5,14.4090576\r\n\tc-1.8745117,0-3.3999023-1.5254517-3.3999023-3.4000244S3.1254883,7.6090088,5,7.6090088s3.3999023,1.5254517,3.3999023,3.4000244\r\n\tS6.8745117,14.4090576,5,14.4090576z M10,11.0090332c0-2.4172974-1.7250977-4.4382935-4.0085449-4.8997803\r\n\tC7.1948242,5.7042847,8.5290527,5.5,10,5.5s2.8051758,0.2042847,4.0085449,0.6092529\r\n\tC11.7250977,6.5707397,10,8.5917358,10,11.0090332z M15,14.4090576c-1.8745117,0-3.3999023-1.5254517-3.3999023-3.4000244\r\n\tS13.1254883,7.6090088,15,7.6090088s3.3999023,1.5254517,3.3999023,3.4000244S16.8745117,14.4090576,15,14.4090576z M5,8.8590088\r\n\tc-1.1850586,0-2.1499023,0.9644775-2.1499023,2.1500244S3.8149414,13.1590576,5,13.1590576s2.1499023-0.9644775,2.1499023-2.1500244\r\n\tS6.1850586,8.8590088,5,8.8590088z M5,11.6500244c-0.3588867,0-0.6499023-0.2910156-0.6499023-0.6500244\r\n\tS4.6411133,10.3499756,5,10.3499756S5.6499023,10.6409912,5.6499023,11S5.3588867,11.6500244,5,11.6500244z M15,8.8590088\r\n\tc-1.1850586,0-2.1499023,0.9644775-2.1499023,2.1500244S13.8149414,13.1590576,15,13.1590576\r\n\ts2.1499023-0.9644775,2.1499023-2.1500244S16.1850586,8.8590088,15,8.8590088z M15,11.6500244\r\n\tc-0.3588867,0-0.6499023-0.2910156-0.6499023-0.6500244S14.6411133,10.3499756,15,10.3499756S15.6499023,10.6409912,15.6499023,11\r\n\tS15.3588867,11.6500244,15,11.6500244z"
+ }
+ }]
+};
+exports.tripadvisor = tripadvisor;
+var tumblr = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.6,18.196c-0.777,0.371-1.48,0.631-2.109,0.781c-0.63,0.148-1.311,0.223-2.043,0.223c-0.831,0-1.566-0.107-2.205-0.318\r\n\tc-0.639-0.213-1.183-0.516-1.635-0.908c-0.451-0.395-0.764-0.812-0.938-1.254c-0.174-0.443-0.261-1.086-0.261-1.926V8.339H4.4V5.735\r\n\tc0.714-0.234,1.326-0.57,1.835-1.01c0.51-0.438,0.918-0.965,1.227-1.58C7.77,2.532,7.981,1.749,8.098,0.8h2.585v4.652h4.314v2.887\r\n\th-4.314v4.719c0,1.066,0.056,1.752,0.168,2.055c0.111,0.303,0.319,0.545,0.622,0.725c0.403,0.244,0.863,0.367,1.381,0.367\r\n\tc0.92,0,1.836-0.303,2.746-0.908V18.196z"
+ }
+ }]
+};
+exports.tumblr = tumblr;
+var twitter = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.316,6.246c0.008,0.162,0.011,0.326,0.011,0.488c0,4.99-3.797,10.742-10.74,10.742c-2.133,0-4.116-0.625-5.787-1.697\r\n\tc0.296,0.035,0.596,0.053,0.9,0.053c1.77,0,3.397-0.604,4.688-1.615c-1.651-0.031-3.046-1.121-3.526-2.621\r\n\tc0.23,0.043,0.467,0.066,0.71,0.066c0.345,0,0.679-0.045,0.995-0.131c-1.727-0.348-3.028-1.873-3.028-3.703c0-0.016,0-0.031,0-0.047\r\n\tc0.509,0.283,1.092,0.453,1.71,0.473c-1.013-0.678-1.68-1.832-1.68-3.143c0-0.691,0.186-1.34,0.512-1.898\r\n\tC3.942,5.498,6.725,7,9.862,7.158C9.798,6.881,9.765,6.594,9.765,6.297c0-2.084,1.689-3.773,3.774-3.773\r\n\tc1.086,0,2.067,0.457,2.756,1.191c0.859-0.17,1.667-0.484,2.397-0.916c-0.282,0.881-0.881,1.621-1.66,2.088\r\n\tc0.764-0.092,1.49-0.293,2.168-0.594C18.694,5.051,18.054,5.715,17.316,6.246z"
+ }
+ }]
+};
+exports.twitter = twitter;
+var vimeo = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.91,5.84c-1.006,5.773-6.625,10.66-8.315,11.777c-1.69,1.115-3.233-0.447-3.792-1.631\r\n\tC6.162,14.639,4.244,7.33,3.741,6.725C3.238,6.119,1.731,7.33,1.731,7.33L1,6.354c0,0,3.061-3.725,5.391-4.191\r\n\tC8.861,1.67,8.857,6.027,9.451,8.445c0.574,2.342,0.961,3.68,1.463,3.68c0.502,0,1.462-1.305,2.512-3.305\r\n\tc1.053-2.004-0.045-3.772-2.101-2.514C12.148,1.279,19.916,0.07,18.91,5.84z"
+ }
+ }]
+};
+exports.vimeo = vimeo;
+var vine = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.452,9.951c-0.438,0.101-0.863,0.145-1.244,0.145c-2.145,0-3.797-1.496-3.797-4.102c0-1.277,0.493-1.941,1.192-1.941\r\n\tc0.664,0,1.107,0.596,1.107,1.805c0,0.688-0.184,1.44-0.32,1.887c0,0,0.66,1.152,2.469,0.799c0.385-0.852,0.593-1.956,0.593-2.924\r\n\tc0-2.605-1.33-4.119-3.763-4.119c-2.504,0-3.968,1.922-3.968,4.461c0,2.512,1.175,4.668,3.113,5.651\r\n\tc-0.815,1.629-1.852,3.065-2.933,4.146c-1.961-2.371-3.734-5.534-4.463-11.706H2.548c1.335,10.279,5.319,13.553,6.373,14.181\r\n\tc0.596,0.358,1.108,0.341,1.654,0.034c0.855-0.485,3.422-3.054,4.847-6.061c0.597-0.002,1.314-0.069,2.03-0.231V9.951z"
+ }
+ }]
+};
+exports.vine = vine;
+var alternitive = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,17V3c0-1.1-0.903-2-2.005-2H3.005C1.855,1,1,1.853,1,3v14c0,1.148,0.855,2,2.005,2h13.99C18.097,19,19,18.101,19,17z\r\n\t M15.184,11.607c0,0,1.132,1.117,1.411,1.635c0.008,0.011,0.011,0.021,0.014,0.025c0.113,0.19,0.142,0.34,0.085,0.45\r\n\tC16.6,13.9,16.28,13.992,16.171,14c0,0-1.943,0-1.999,0c-0.14,0-0.43-0.036-0.782-0.279c-0.27-0.188-0.537-0.499-0.797-0.802\r\n\tc-0.388-0.45-0.724-0.84-1.062-0.84c-0.043,0-0.086,0.007-0.126,0.021c-0.257,0.082-0.583,0.447-0.583,1.422\r\n\tc0,0.305-0.24,0.479-0.41,0.479c0,0-0.872,0-0.916,0c-0.312,0-1.937-0.109-3.376-1.628c-1.766-1.86-3.352-5.591-3.366-5.624\r\n\tc-0.1-0.241,0.107-0.372,0.332-0.372h2.02c0.271,0,0.358,0.164,0.42,0.311C5.596,6.855,5.86,7.529,6.292,8.287\r\n\tc0.703,1.233,1.136,1.735,1.481,1.735c0.064,0,0.126-0.017,0.184-0.049c0.451-0.249,0.367-1.857,0.347-2.189\r\n\tc0-0.063-0.001-0.719-0.231-1.034C7.907,6.522,7.626,6.435,7.456,6.402c0.045-0.065,0.142-0.166,0.266-0.226\r\n\tC8.031,6.022,8.588,6,9.142,6h0.308c0.601,0.008,0.757,0.047,0.974,0.102c0.439,0.105,0.448,0.39,0.409,1.36\r\n\tc-0.011,0.276-0.023,0.589-0.023,0.956c0,0.079-0.003,0.166-0.003,0.256c-0.014,0.496-0.03,1.057,0.32,1.287\r\n\tc0.046,0.028,0.097,0.044,0.151,0.044c0.122,0,0.487,0,1.476-1.697c0.435-0.749,0.77-1.633,0.793-1.699\r\n\tc0.02-0.036,0.079-0.142,0.148-0.183c0.056-0.033,0.128-0.039,0.166-0.039h2.375c0.26,0,0.436,0.039,0.469,0.138\r\n\tc0.057,0.159-0.011,0.644-1.096,2.11c-0.184,0.243-0.343,0.455-0.483,0.64C14.142,10.563,14.142,10.629,15.184,11.607z"
+ }
+ }]
+};
+exports.alternitive = alternitive;
+var vk = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M17.802,12.298c0,0,1.617,1.597,2.017,2.336c0.011,0.016,0.016,0.028,0.018,0.035\r\n\tc0.163,0.273,0.203,0.487,0.123,0.645c-0.135,0.261-0.592,0.392-0.747,0.403c0,0-2.778,0-2.858,0c-0.199,0-0.613-0.052-1.117-0.4\r\n\tc-0.385-0.269-0.768-0.712-1.139-1.145c-0.554-0.643-1.033-1.201-1.518-1.201c-0.062,0-0.122,0.01-0.18,0.03\r\n\tc-0.367,0.116-0.833,0.639-0.833,2.032c0,0.436-0.344,0.684-0.585,0.684c0,0-1.248,0-1.309,0c-0.446,0-2.768-0.156-4.827-2.327\r\n\tc-2.523-2.658-4.789-7.99-4.811-8.037C-0.105,5.008,0.191,4.82,0.511,4.82h2.886c0.387,0,0.513,0.234,0.601,0.444\r\n\tc0.102,0.241,0.48,1.205,1.1,2.288c1.004,1.762,1.621,2.479,2.114,2.479c0.093,0,0.181-0.023,0.264-0.07\r\n\tc0.644-0.354,0.524-2.654,0.494-3.128c0-0.092-0.001-1.027-0.331-1.479C7.403,5.03,7.001,4.904,6.758,4.858\r\n\tc0.065-0.094,0.203-0.238,0.38-0.323c0.441-0.22,1.238-0.252,2.029-0.252h0.439c0.858,0.012,1.08,0.067,1.392,0.146\r\n\tc0.628,0.15,0.64,0.557,0.585,1.943c-0.016,0.396-0.033,0.842-0.033,1.367c0,0.112-0.005,0.237-0.005,0.364\r\n\tc-0.019,0.711-0.044,1.512,0.458,1.841c0.064,0.04,0.139,0.062,0.217,0.062c0.174,0,0.695,0,2.108-2.425\r\n\tc0.62-1.071,1.1-2.334,1.133-2.429c0.028-0.053,0.112-0.202,0.214-0.262c0.078-0.048,0.182-0.056,0.236-0.056h3.395\r\n\tc0.37,0,0.621,0.056,0.67,0.196c0.082,0.227-0.016,0.92-1.566,3.016c-0.261,0.349-0.49,0.651-0.691,0.915\r\n\tC16.314,10.805,16.314,10.898,17.802,12.298z"
+ }
+ }]
+};
+exports.vk = vk;
+var xing = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.703,1h-2.828c-0.223,0-0.553,0.105-0.69,0.381S13.875,2,13.875,2l-5,10l3,6c0,0,0.172,0.344,0.31,0.619\r\n\tS12.652,19,12.875,19h2.828c0.5,0,0.48-0.381,0.355-0.631S15.875,18,15.875,18l-3-6l5-10c0,0,0.059-0.119,0.184-0.369\r\n\tS18.203,1,17.703,1z M6.815,5.381C6.678,5.105,6.348,5,6.125,5H3.297c-0.5,0-0.48,0.381-0.355,0.631S3.125,6,3.125,6l1.25,2.5\r\n\tL2.125,13c0,0-0.059,0.119-0.184,0.369S1.797,14,2.297,14h2.828c0.223,0,0.553-0.106,0.691-0.381C5.953,13.344,6.125,13,6.125,13\r\n\tl2.25-4.5L7.125,6C7.125,6,6.953,5.656,6.815,5.381z"
+ }
+ }]
+};
+exports.xing = xing;
+var yelp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.538,12.471l4.523,1.466c0,0,0.647,0.119,0.64,0.552c-0.004,0.305-0.197,0.652-0.197,0.652l-1.91,2.756\r\n\tc0,0-0.341,0.286-0.686,0.286c-0.344,0-0.741-0.537-0.741-0.537l-2.417-4.073c0,0-0.272-0.594,0.05-0.921\r\n\tC12.095,12.352,12.538,12.471,12.538,12.471z M11.57,10.6c0.231,0.396,0.87,0.281,0.87,0.281l4.513-1.331\r\n\tc0,0,0.615-0.253,0.703-0.589c0.086-0.337-0.102-0.743-0.102-0.743l-2.157-2.564c0,0-0.187-0.324-0.575-0.357\r\n\tc-0.428-0.037-0.691,0.486-0.691,0.486l-2.55,4.05C11.582,9.832,11.357,10.235,11.57,10.6z M9.438,9.021\r\n\tc0.531-0.132,0.616-0.911,0.616-0.911l-0.036-6.485c0,0-0.08-0.8-0.436-1.017c-0.559-0.342-0.724-0.164-0.884-0.14L4.951,1.873\r\n\tc0,0-0.367,0.123-0.558,0.432C4.12,2.742,4.67,3.384,4.67,3.384l3.894,5.358C8.564,8.742,8.949,9.143,9.438,9.021z M8.513,11.645\r\n\tc0.013-0.5-0.595-0.801-0.595-0.801L3.89,8.791c0,0-0.597-0.248-0.887-0.075C2.782,8.848,2.585,9.088,2.566,9.299l-0.262,3.259\r\n\tc0,0-0.039,0.565,0.106,0.822c0.205,0.364,0.881,0.111,0.881,0.111l4.702-1.049C8.175,12.318,8.495,12.306,8.513,11.645z\r\n\t M9.682,13.404c-0.404-0.209-0.887,0.224-0.887,0.224l-3.148,3.498c0,0-0.393,0.535-0.293,0.863c0.094,0.308,0.25,0.461,0.47,0.569\r\n\tl3.162,1.007c0,0,0.383,0.08,0.674-0.005c0.412-0.121,0.336-0.772,0.336-0.772l0.071-4.736\r\n\tC10.067,14.053,10.051,13.597,9.682,13.404z"
+ }
+ }]
+};
+exports.yelp = yelp;
+var youko = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.418047,12.0796385c-0.5478516-1.0457487-2.1255493-1.7149191-2.8060303-2.6412954\r\n\tc0.4585571-1.0617428,2.9511719-1.7141776,2.7406616-3.5655117c-0.1517944-1.3371668-2.1604614-1.4112105-2.6756592-0.3305092\r\n\tc-0.3861084,0.4457431-0.7995005,0.8636346-1.2400522,1.254293c-0.2116089,0.269928-0.4511719,0.5119433-0.7175293,0.7264161\r\n\tc-0.3097534,0.3260632-0.5610962,0.7093105-0.979187,0.9249573V5.8728313c-0.0095825-1.400774-2.6002808-1.400774-2.6101685,0\r\n\tv7.3295012c0.1132812,0.5230598,0.3482666,0.9234743,0.9133911,0.9899845h0.7833252\r\n\tc0.5371704-0.0944233,0.8428955-0.4238205,0.9134521-0.9899845v-1.5851727c0-0.549428-0.1014404-1.4766083,0.2612305-0.9241543\r\n\tc0.5316772,0.5263948,1.2804565,1.0925589,1.9580078,1.7160301c0.6503305,0.6000061,1.272706,1.5688076,1.9572153,1.7170801\r\n\tC19.3184376,14.4302559,19.9368458,13.068881,19.418047,12.0796385z M8.1933756,4.1556897\r\n\tC7.636735,4.5449276,7.3271646,5.7449384,6.9533243,6.5988774C6.5416422,7.5382848,6.1798868,8.4847937,5.7787027,9.1743431\r\n\tC4.6934977,7.9286342,3.9533243,5.1675968,2.6461954,4.1556897c-0.4216309-0.3260012-1.3457031-0.3167379-1.7619629,0\r\n\tC-0.241744,5.0133343,0.8880777,6.5300832,1.3409586,7.3256645c0.9940186,1.7442522,2.0955811,3.6115799,2.9366455,5.2160816\r\n\tc-0.5467529,1.4587612-3.3081665,5.5814819,0.3916626,5.3487911c0.8953857-0.5855541,1.2750854-1.8037815,1.762146-2.9060354\r\n\tc0.9957275-2.255393,1.8415527-4.204113,2.8713989-6.5365133c0.4280396-0.9695439,1.4592285-2.4023066,1.2398682-3.500052\r\n\tC10.3683634,4.0776324,9.0449381,3.5608718,8.1933756,4.1556897z"
+ }
+ }]
+};
+exports.youko = youko;
+var youtube = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2.3C0.172,2.3,0,3.174,0,10s0.172,7.7,10,7.7s10-0.874,10-7.7S19.828,2.3,10,2.3z M13.205,10.334l-4.49,2.096\r\n\tC8.322,12.612,8,12.408,8,11.974V8.026C8,7.593,8.322,7.388,8.715,7.57l4.49,2.096C13.598,9.85,13.598,10.15,13.205,10.334z"
+ }
+ }]
+};
+exports.youtube = youtube;
\ No newline at end of file
diff --git a/dist/entypo/infinity.js b/dist/entypo/infinity.js
new file mode 100644
index 000000000..721c19c10
--- /dev/null
+++ b/dist/entypo/infinity.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.infinity = void 0;
+var infinity = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.902,5.6c-2.079,0-4.358,1.158-5.902,2.916C8.455,6.758,6.175,5.6,4.096,5.6C2.116,5.6,0,6.756,0,10\r\n\tc0,3.244,2.116,4.398,4.096,4.4l0,0c2.079,0,4.358-1.158,5.903-2.916c1.544,1.758,3.823,2.916,5.902,2.916\r\n\tC17.882,14.4,20,13.244,20,10C20,6.756,17.882,5.6,15.902,5.6z M4.096,12.641C2.584,12.641,1.8,11.752,1.8,10\r\n\tc0-1.752,0.784-2.641,2.296-2.641c1.673,0,3.614,1.086,4.807,2.641C7.71,11.555,5.769,12.641,4.096,12.641z M15.902,12.641\r\n\tc-1.673,0-3.614-1.086-4.807-2.641c1.192-1.555,3.135-2.641,4.807-2.641c1.512,0,2.298,0.889,2.298,2.641\r\n\tC18.2,11.752,17.414,12.641,15.902,12.641z"
+ }
+ }]
+};
+exports.infinity = infinity;
\ No newline at end of file
diff --git a/dist/entypo/info.js b/dist/entypo/info.js
new file mode 100644
index 000000000..dfcfa00f4
--- /dev/null
+++ b/dist/entypo/info.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.info = void 0;
+var info = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.432,0c1.34,0,2.01,0.912,2.01,1.957c0,1.305-1.164,2.512-2.679,2.512c-1.269,0-2.009-0.75-1.974-1.99\r\n\tC9.789,1.436,10.67,0,12.432,0z M8.309,20c-1.058,0-1.833-0.652-1.093-3.524l1.214-5.092c0.211-0.814,0.246-1.141,0-1.141\r\n\tc-0.317,0-1.689,0.562-2.502,1.117L5.4,10.48c2.572-2.186,5.531-3.467,6.801-3.467c1.057,0,1.233,1.273,0.705,3.23l-1.391,5.352\r\n\tc-0.246,0.945-0.141,1.271,0.106,1.271c0.317,0,1.357-0.392,2.379-1.207l0.6,0.814C12.098,19.02,9.365,20,8.309,20z"
+ }
+ }]
+};
+exports.info = info;
\ No newline at end of file
diff --git a/dist/entypo/instagram.js b/dist/entypo/instagram.js
new file mode 100644
index 000000000..46403f3aa
--- /dev/null
+++ b/dist/entypo/instagram.js
@@ -0,0 +1,20 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.instagram = void 0;
+var instagram = {
+ "viewBox": "0 0 18 18",
+ "children": [{
+ "name": "title",
+ "attribs": {}
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18.94586,6.28931a6.60561,6.60561,0,0,0-.41833-2.18463,4.41189,4.41189,0,0,0-1.03809-1.59412,4.41189,4.41189,0,0,0-1.59412-1.03809,6.60561,6.60561,0,0,0-2.18463-.41833C12.75073,1.01038,12.44427,1,10,1s-2.75073.01038-3.71069,0.05414a6.60561,6.60561,0,0,0-2.18463.41833A4.41189,4.41189,0,0,0,2.51056,2.51056,4.41189,4.41189,0,0,0,1.47247,4.10468a6.60561,6.60561,0,0,0-.41833,2.18463C1.01038,7.24927,1,7.55573,1,10s0.01038,2.75073.05414,3.71069a6.60561,6.60561,0,0,0,.41833,2.18463,4.41189,4.41189,0,0,0,1.03809,1.59412,4.41109,4.41109,0,0,0,1.59412,1.03809,6.60561,6.60561,0,0,0,2.18463.41833C7.24927,18.98969,7.55573,19,10,19s2.75073-.01031,3.71069-0.05414a6.60561,6.60561,0,0,0,2.18463-.41833,4.60208,4.60208,0,0,0,2.6322-2.6322,6.60561,6.60561,0,0,0,.41833-2.18463C18.98962,12.75073,19,12.44427,19,10S18.98962,7.24927,18.94586,6.28931Zm-1.61993,7.34747a4.97824,4.97824,0,0,1-.30994,1.67114A2.98017,2.98017,0,0,1,15.30792,17.016a4.9786,4.9786,0,0,1-1.67114.30994C12.68787,17.3692,12.40326,17.37836,10,17.37836s-2.68787-.00916-3.63678-0.05243A4.9786,4.9786,0,0,1,4.69208,17.016a2.78769,2.78769,0,0,1-1.03485-.67322A2.78769,2.78769,0,0,1,2.984,15.30792a4.97824,4.97824,0,0,1-.30994-1.67114C2.6308,12.68774,2.62164,12.40314,2.62164,10s0.00916-2.68774.05243-3.63678A4.9786,4.9786,0,0,1,2.984,4.69208a2.78769,2.78769,0,0,1,.67322-1.03485A2.78769,2.78769,0,0,1,4.69208,2.984a4.9786,4.9786,0,0,1,1.67114-.30994C7.31226,2.6308,7.59686,2.62164,10,2.62164s2.68774,0.00916,3.63678.05243a4.9786,4.9786,0,0,1,1.67114.30994,2.78769,2.78769,0,0,1,1.03485.67322A2.78769,2.78769,0,0,1,17.016,4.69208a4.9786,4.9786,0,0,1,.30994,1.67114c0.04327,0.949.05243,1.2337,0.05243,3.63678S17.3692,12.68774,17.32593,13.63678ZM10,5.37836A4.62164,4.62164,0,1,0,14.62164,10,4.62169,4.62169,0,0,0,10,5.37836ZM10,13a3,3,0,1,1,3-3A3,3,0,0,1,10,13Zm5.88422-7.8042a1.08,1.08,0,1,1-1.08-1.08A1.08,1.08,0,0,1,15.88422,5.1958Z",
+ "transform": "translate(-1 -1)"
+ }
+ }]
+};
+exports.instagram = instagram;
\ No newline at end of file
diff --git a/dist/entypo/install.js b/dist/entypo/install.js
new file mode 100644
index 000000000..788d0f477
--- /dev/null
+++ b/dist/entypo/install.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.install = void 0;
+var install = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H12.02l0.38,4.065h2.7L10,10.293L4.9,6.065h2.7L7.98,2H5.546\r\n\tC4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927c-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18\r\n\th14.383c0.755,0,1.399-0.546,1.523-1.291l0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M16.959,15.245\r\n\tC16.887,15.681,16.51,16,16.068,16H3.932c-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867\r\n\tc0.558,0,0.983,0.501,0.891,1.052L16.959,15.245z"
+ }
+ }]
+};
+exports.install = install;
\ No newline at end of file
diff --git a/dist/entypo/inverted.js b/dist/entypo/inverted.js
new file mode 100644
index 000000000..2b0707269
--- /dev/null
+++ b/dist/entypo/inverted.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inverted = void 0;
+var inverted = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,3H2C1.447,3,1,3.447,1,4v12c0,0.552,0.447,1,1,1h16c0.553,0,1-0.448,1-1V4C19,3.448,18.553,3,18,3z M13.25,6.5\r\n\tc0.69,0,1.25,0.56,1.25,1.25S13.94,9,13.25,9S12,8.44,12,7.75S12.56,6.5,13.25,6.5z M4,14l3.314-7.619l3.769,6.102l3.231-1.605\r\n\tL16,14H4z"
+ }
+ }]
+};
+exports.inverted = inverted;
\ No newline at end of file
diff --git a/dist/entypo/jumpToStart.js b/dist/entypo/jumpToStart.js
new file mode 100644
index 000000000..ab357e61d
--- /dev/null
+++ b/dist/entypo/jumpToStart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.jumpToStart = void 0;
+var jumpToStart = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.959,4.571L7.756,9.52c0,0-0.279,0.201-0.279,0.481s0.279,0.479,0.279,0.479l7.203,4.951\r\n\tC15.531,15.811,16,15.53,16,14.805V5.196C16,4.469,15.531,4.188,14.959,4.571z M6,4H5C4.447,4,4,4.048,4,4.6V15.4\r\n\tC4,15.952,4.447,16,5,16h1c0.553,0,1-0.048,1-0.6V4.6C7,4.048,6.553,4,6,4z"
+ }
+ }]
+};
+exports.jumpToStart = jumpToStart;
\ No newline at end of file
diff --git a/dist/entypo/key.js b/dist/entypo/key.js
new file mode 100644
index 000000000..f3a330068
--- /dev/null
+++ b/dist/entypo/key.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.key = void 0;
+var key = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.691,4.725c-0.503-2.977-3.22-4.967-6.069-4.441C8.772,0.809,6.366,3.1,6.869,6.079c0.107,0.641,0.408,1.644,0.763,2.365\r\n\tl-5.175,7.723c-0.191,0.285-0.299,0.799-0.242,1.141l0.333,1.971c0.058,0.342,0.372,0.572,0.7,0.514l1.516-0.281\r\n\tc0.328-0.059,0.744-0.348,0.924-0.639l2.047-3.311l0.018-0.022l1.386-0.256l2.39-3.879c0.785,0.139,1.912,0.092,2.578-0.031\r\n\tC16.955,10.848,18.194,7.704,17.691,4.725z M15.166,6.252c-0.784,1.17-1.584,0.346-2.703-0.475\r\n\tc-1.119-0.818-2.135-1.322-1.352-2.492c0.784-1.17,2.326-1.455,3.447-0.635C15.678,3.469,15.949,5.082,15.166,6.252z"
+ }
+ }]
+};
+exports.key = key;
\ No newline at end of file
diff --git a/dist/entypo/keyboard.js b/dist/entypo/keyboard.js
new file mode 100644
index 000000000..e134e22e1
--- /dev/null
+++ b/dist/entypo/keyboard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.keyboard = void 0;
+var keyboard = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.6,4h-17.2C0.629,4,0,4.629,0,5.4V14.6C0,15.369,0.629,16,1.399,16h17.2c0.77,0,1.4-0.631,1.4-1.4V5.4\r\n\tC20,4.629,19.369,4,18.6,4z M11,6h2v2h-2V6z M14,9v2h-2V9H14z M8,6h2v2H8V6z M11,9v2H9V9H11z M5,6h2v2H5V6z M8,9v2H6V9H8z M2,6h2v2\r\n\tH2V6z M5,9v2H3V9H5z M4,14H2v-2h2V14z M15,14H5v-2h10V14z M18,14h-2v-2h2V14z M15,11V9h2v2H15z M18,8h-4V6h4V8z"
+ }
+ }]
+};
+exports.keyboard = keyboard;
\ No newline at end of file
diff --git a/dist/entypo/landing.js b/dist/entypo/landing.js
new file mode 100644
index 000000000..3f4a55514
--- /dev/null
+++ b/dist/entypo/landing.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.landing = void 0;
+var landing = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.752,16.038c-0.097,0.266-0.822,1.002-6.029-0.878l-5.105-1.843C5.841,12.676,3.34,11.668,2.36,11.1\r\n\tc-0.686-0.397-0.836-1.282-0.836-1.282S1.361,6.862,1.261,6.134c-0.1-0.728,0.095-0.853,0.796-0.492\r\n\tc0.436,0.225,1.865,2.562,2.464,3.567C6.033,9.59,7.383,9.97,8.014,10.158C7.757,8.441,7.274,5.23,7.101,4.225\r\n\tC6.935,3.262,7.651,3.69,7.651,3.69c0.331,0.19,0.983,0.661,1.206,1.002c1.522,2.326,3.672,6.6,3.836,6.928\r\n\tc0.896,0.28,2.277,0.733,3.102,1.03C17.951,13.429,18.882,15.684,18.752,16.038z"
+ }
+ }]
+};
+exports.landing = landing;
\ No newline at end of file
diff --git a/dist/entypo/landline.js b/dist/entypo/landline.js
new file mode 100644
index 000000000..dd4c31dd4
--- /dev/null
+++ b/dist/entypo/landline.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.landline = void 0;
+var landline = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.902,0.25C3.498-0.027,2.115,0.875,1.833,2.273c-1.105,5.455-1.105,9.997,0,15.454C2.08,18.952,3.17,19.8,4.388,19.8\r\n\tc0.17,0,0.342-0.016,0.515-0.05c1.412-0.279,2.329-1.638,2.046-3.036c-0.978-4.832-0.978-8.598,0-13.43\r\n\tC7.231,1.888,6.314,0.529,4.902,0.25z M17,2H8.436c0.073,0.467,0.081,0.951-0.017,1.44c-0.936,4.72-0.936,8.398,0,13.12\r\n\tc0.098,0.49,0.09,0.973,0.017,1.44H17c1.1,0,2-0.9,2-2V4C19,2.9,18.101,2,17,2z M12,14.5c-0.828,0-1.5-0.672-1.5-1.5\r\n\ts0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5S12.828,14.5,12,14.5z M17,9h-7V5h7V9z"
+ }
+ }]
+};
+exports.landline = landline;
\ No newline at end of file
diff --git a/dist/entypo/landscape.js b/dist/entypo/landscape.js
new file mode 100644
index 000000000..4862b9ade
--- /dev/null
+++ b/dist/entypo/landscape.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.landscape = void 0;
+var landscape = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,3H1C0.448,3,0,3.447,0,4v12c0,0.553,0.448,1,1,1h18c0.552,0,1-0.447,1-1V4C20,3.447,19.553,3,19,3z M18,15H2V5h16V15z"
+ }
+ }]
+};
+exports.landscape = landscape;
\ No newline at end of file
diff --git a/dist/entypo/language.js b/dist/entypo/language.js
new file mode 100644
index 000000000..58653632f
--- /dev/null
+++ b/dist/entypo/language.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.language = void 0;
+var language = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.753,10.909c-0.624-1.707-2.366-2.726-4.661-2.726c-0.09,0-0.176,0.002-0.262,0.006l-0.016-2.063\r\n\tc0,0,3.41-0.588,3.525-0.607s0.133-0.119,0.109-0.231c-0.023-0.111-0.167-0.883-0.188-0.976c-0.027-0.131-0.102-0.127-0.207-0.109\r\n\tc-0.104,0.018-3.25,0.461-3.25,0.461s-0.012-1.953-0.013-2.078c-0.001-0.125-0.069-0.158-0.194-0.156\r\n\tc-0.125,0.002-0.92,0.014-1.025,0.016c-0.105,0.002-0.164,0.049-0.162,0.148c0.002,0.1,0.033,2.307,0.033,2.307\r\n\ts-3.061,0.527-3.144,0.543c-0.084,0.014-0.17,0.053-0.151,0.143c0.019,0.09,0.19,1.094,0.208,1.172\r\n\tc0.018,0.08,0.072,0.129,0.188,0.107c0.115-0.019,2.924-0.504,2.924-0.504l0.035,2.018c-1.077,0.281-1.801,0.824-2.256,1.303\r\n\tc-0.768,0.807-1.207,1.887-1.207,2.963c0,1.586,0.971,2.529,2.328,2.695c3.162,0.387,5.119-3.06,5.769-4.715\r\n\tc1.097,1.506,0.256,4.354-2.094,5.98c-0.043,0.029-0.098,0.129-0.033,0.207c0.065,0.078,0.541,0.662,0.619,0.756\r\n\tc0.08,0.096,0.206,0.059,0.256,0.023C19.394,15.862,20.545,13.077,19.753,10.909z M12.367,14.097\r\n\tc-0.966-0.121-0.944-0.914-0.944-1.453c0-0.773,0.327-1.58,0.876-2.156c0.335-0.354,0.75-0.621,1.229-0.799l0.082,4.277\r\n\tC13.225,14.097,12.811,14.151,12.367,14.097z M14.794,13.544l0.046-4.109c0.084-0.004,0.166-0.01,0.252-0.01\r\n\tc0.773,0,1.494,0.145,1.885,0.361C17.368,10.003,15.954,12.499,14.794,13.544z M5.844,5.876C5.814,5.782,5.741,5.731,5.648,5.731\r\n\th-1.95c-0.093,0-0.165,0.051-0.194,0.144c-0.412,1.299-3.48,10.99-3.496,11.041c-0.017,0.051-0.011,0.076,0.062,0.076h1.733\r\n\tc0.075,0,0.099-0.023,0.114-0.072c0.015-0.051,1.008-3.318,1.008-3.318h3.496c0,0,0.992,3.268,1.008,3.318\r\n\tc0.016,0.049,0.039,0.072,0.113,0.072h1.734c0.072,0,0.078-0.025,0.062-0.076C9.324,16.866,6.255,7.175,5.844,5.876z M3.226,12.194\r\n\tl1.447-5.25l1.447,5.25H3.226z"
+ }
+ }]
+};
+exports.language = language;
\ No newline at end of file
diff --git a/dist/entypo/laptop.js b/dist/entypo/laptop.js
new file mode 100644
index 000000000..e0c5fde7f
--- /dev/null
+++ b/dist/entypo/laptop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.laptop = void 0;
+var laptop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.754,15.631C19.507,15.26,18,13,18,13V4c0-1.102-0.9-2-2-2H4C2.899,2,2,2.898,2,4v9c0,0-1.507,2.26-1.754,2.631\r\n\tC0,16,0,16.213,0,16.5V17c0,0.5,0.5,1,0.999,1h18.002C19.5,18,20,17.5,20,17v-0.5C20,16.213,20,16,19.754,15.631z M7,16l0.6-1h4.8\r\n\tl0.6,1H7z M16,12H4V4h12V12z"
+ }
+ }]
+};
+exports.laptop = laptop;
\ No newline at end of file
diff --git a/dist/entypo/lastfm.js b/dist/entypo/lastfm.js
new file mode 100644
index 000000000..56aafe803
--- /dev/null
+++ b/dist/entypo/lastfm.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lastfm = void 0;
+var lastfm = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.574,14.576C8.097,14.924,7.119,15.6,5.193,15.6C2.532,15.6,0,13.707,0,10.195C0,6.547,2.637,4.4,5.354,4.4\r\n\tc3.047,0,4.183,1.108,5.144,4.109l0.756,2.309c0.551,1.688,1.713,2.91,4.026,2.91c1.558,0,2.382-0.346,2.382-1.199\r\n\tc0-0.67-0.389-1.156-1.557-1.434l-1.559-0.369c-1.9-0.461-2.656-1.455-2.656-3.025c0-2.516,2.016-3.301,4.077-3.301\r\n\tc2.337,0,3.757,0.854,3.94,2.932l-2.291,0.277c-0.092-0.992-0.688-1.408-1.787-1.408c-1.008,0-1.627,0.461-1.627,1.246\r\n\tc0,0.693,0.299,1.109,1.307,1.34l1.466,0.324C18.945,9.572,20,10.543,20,12.414c0,2.309-1.924,3.186-4.766,3.186\r\n\tc-3.963,0-5.338-1.801-6.07-4.041L8.43,9.25c-0.549-1.687-0.99-2.902-3.006-2.902c-1.398,0-3.219,0.916-3.219,3.756\r\n\tc0,2.217,1.523,3.604,3.104,3.604c1.34,0,2.146-0.754,2.564-1.131L8.574,14.576z"
+ }
+ }]
+};
+exports.lastfm = lastfm;
\ No newline at end of file
diff --git a/dist/entypo/layers.js b/dist/entypo/layers.js
new file mode 100644
index 000000000..5ed059445
--- /dev/null
+++ b/dist/entypo/layers.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.layers = void 0;
+var layers = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.248,11.601c0.45,0.313,1.05,0.313,1.5,0l9.088-5.281c0.236-0.164,0.21-0.518-0.048-0.646l-9.205-3.537\r\n\tc-0.368-0.183-0.802-0.183-1.17,0L0.208,5.674C-0.05,5.801-0.076,6.156,0.16,6.32L9.248,11.601z M19.788,10.811l-2.486-1.233\r\n\tl-5.725,3.327c-0.469,0.309-1.014,0.471-1.579,0.471s-1.11-0.163-1.579-0.471L2.698,9.576l-2.49,1.234\r\n\tc-0.258,0.128-0.284,0.482-0.048,0.646l9.088,6.309c0.45,0.313,1.05,0.313,1.5,0l9.088-6.309\r\n\tC20.072,11.293,20.046,10.939,19.788,10.811z"
+ }
+ }]
+};
+exports.layers = layers;
\ No newline at end of file
diff --git a/dist/entypo/leaf.js b/dist/entypo/leaf.js
new file mode 100644
index 000000000..08356e744
--- /dev/null
+++ b/dist/entypo/leaf.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.leaf = void 0;
+var leaf = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.025,3.587c-4.356,2.556-4.044,7.806-7.096,10.175c-2.297,1.783-5.538,0.88-7.412,0.113c0,0-1.27,1.603-2.181,3.74\r\n\tc-0.305,0.717-1.644-0.073-1.409-0.68C3.905,9.25,14.037,5.416,14.037,5.416S6.888,5.113,2.11,11.356\r\n\tC1.982,9.93,1.77,6.072,5.47,3.706C10.486,0.495,20.042,2.991,19.025,3.587z"
+ }
+ }]
+};
+exports.leaf = leaf;
\ No newline at end of file
diff --git a/dist/entypo/left.js b/dist/entypo/left.js
new file mode 100644
index 000000000..83e18a109
--- /dev/null
+++ b/dist/entypo/left.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.left = void 0;
+var left = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6,10l3,3v-2h8V9H9V7L6,10z M4,2C3.447,2,3,2.047,3,2.6V17.4C3,17.951,3.447,18,4,18c0.552,0,1-0.049,1-0.6V2.6\r\n\tC5,2.047,4.552,2,4,2z"
+ }
+ }]
+};
+exports.left = left;
\ No newline at end of file
diff --git a/dist/entypo/lifebuoy.js b/dist/entypo/lifebuoy.js
new file mode 100644
index 000000000..7134676ae
--- /dev/null
+++ b/dist/entypo/lifebuoy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lifebuoy = void 0;
+var lifebuoy = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.788,3.212c-3.749-3.749-9.827-3.749-13.575,0c-3.75,3.75-3.75,9.828-0.002,13.576c3.75,3.75,9.828,3.75,13.578,0\r\n\tC20.537,13.039,20.537,6.961,16.788,3.212z M6.748,13.252c-1.797-1.797-1.797-4.709,0-6.505c1.795-1.796,4.709-1.796,6.506,0\r\n\tc1.797,1.797,1.795,4.709,0,6.505C11.457,15.049,8.545,15.049,6.748,13.252z M15.347,12.879c0.968-1.799,0.969-3.959,0-5.759\r\n\tl1.783-0.96c1.289,2.391,1.289,5.29,0.002,7.678L15.347,12.879z M13.839,2.869l-0.961,1.784c-1.799-0.967-3.959-0.967-5.756,0\r\n\tL6.161,2.87C8.551,1.582,11.448,1.582,13.839,2.869z M2.87,6.16l1.784,0.961c-0.968,1.798-0.968,3.957-0.001,5.756l-1.784,0.961\r\n\tC1.581,11.449,1.582,8.551,2.87,6.16z M6.159,17.129l0.961-1.783c1.799,0.969,3.96,0.969,5.759,0l0.961,1.785\r\n\tC11.448,18.418,8.55,18.418,6.159,17.129z"
+ }
+ }]
+};
+exports.lifebuoy = lifebuoy;
\ No newline at end of file
diff --git a/dist/entypo/line.js b/dist/entypo/line.js
new file mode 100644
index 000000000..4f6845087
--- /dev/null
+++ b/dist/entypo/line.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.line = void 0;
+var line = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,13.824V6.176c0.825-0.38,1.4-1.208,1.4-2.176c0-1.326-1.074-2.4-2.4-2.4S7.6,2.674,7.6,4c0,0.967,0.576,1.796,1.4,2.176\r\n\tv7.649C8.175,14.204,7.6,15.033,7.6,16c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C12.4,15.033,11.825,14.204,11,13.824z\r\n\t M10,2.615c0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C9.235,5.385,8.616,4.764,8.616,4\r\n\tC8.616,3.234,9.235,2.615,10,2.615z M10,17.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C11.384,16.764,10.764,17.385,10,17.385z"
+ }
+ }]
+};
+exports.line = line;
\ No newline at end of file
diff --git a/dist/entypo/link.js b/dist/entypo/link.js
new file mode 100644
index 000000000..a046cba3a
--- /dev/null
+++ b/dist/entypo/link.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.link = void 0;
+var link = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.859,14.691l-0.81,0.805c-0.701,0.695-1.843,0.695-2.545,0c-0.336-0.334-0.521-0.779-0.521-1.252\r\n\tc0-0.473,0.186-0.916,0.521-1.252l2.98-2.955c0.617-0.613,1.779-1.515,2.626-0.675c0.389,0.386,1.016,0.384,1.403-0.005\r\n\tc0.385-0.389,0.383-1.017-0.006-1.402C10.069,6.527,7.941,6.791,6.088,8.63l-2.98,2.956C2.393,12.295,2,13.24,2,14.244\r\n\tc0,1.006,0.394,1.949,1.108,2.658c0.736,0.73,1.702,1.096,2.669,1.096c0.967,0,1.934-0.365,2.669-1.096l0.811-0.805\r\n\tc0.389-0.385,0.391-1.012,0.005-1.4C8.875,14.309,8.248,14.307,7.859,14.691z M16.891,3.207c-1.547-1.534-3.709-1.617-5.139-0.197\r\n\tl-1.009,1.002c-0.389,0.386-0.392,1.013-0.006,1.401c0.386,0.389,1.013,0.391,1.402,0.005l1.01-1.001\r\n\tc0.74-0.736,1.711-0.431,2.346,0.197c0.336,0.335,0.522,0.779,0.522,1.252s-0.186,0.917-0.522,1.251l-3.18,3.154\r\n\tc-1.454,1.441-2.136,0.766-2.427,0.477c-0.389-0.386-1.016-0.383-1.401,0.005c-0.386,0.389-0.384,1.017,0.005,1.401\r\n\tc0.668,0.662,1.43,0.99,2.228,0.99c0.977,0,2.01-0.492,2.993-1.467l3.18-3.153C17.605,7.814,18,6.87,18,5.866\r\n\tC18,4.861,17.605,3.917,16.891,3.207z"
+ }
+ }]
+};
+exports.link = link;
\ No newline at end of file
diff --git a/dist/entypo/linkedin.js b/dist/entypo/linkedin.js
new file mode 100644
index 000000000..ae6b3f909
--- /dev/null
+++ b/dist/entypo/linkedin.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.linkedin = void 0;
+var linkedin = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5,3c0,1.1-0.7,2-2,2C1.8,5,1,4.1,1,3.1C1,2,1.8,1,3,1S5,1.9,5,3z M1,19h4V6H1V19z M14.6,6.2c-2.1,0-3.3,1.2-3.8,2h-0.1\r\n\tl-0.2-1.7H6.9C6.9,7.6,7,8.9,7,10.4V19h4v-7.1c0-0.4,0-0.7,0.1-1c0.3-0.7,0.8-1.6,1.9-1.6c1.4,0,2,1.2,2,2.8V19h4v-7.4\r\n\tC19,7.9,17.1,6.2,14.6,6.2z"
+ }
+ }]
+};
+exports.linkedin = linkedin;
\ No newline at end of file
diff --git a/dist/entypo/list.js b/dist/entypo/list.js
new file mode 100644
index 000000000..1f8937329
--- /dev/null
+++ b/dist/entypo/list.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.list = void 0;
+var list = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.4,9H8.6C8.048,9,8,9.447,8,10s0.048,1,0.6,1H14.4c0.552,0,0.6-0.447,0.6-1S14.952,9,14.4,9z M16.4,14H8.6\r\n\tC8.048,14,8,14.447,8,15s0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1S16.952,14,16.4,14z M8.6,6H16.4C16.952,6,17,5.553,17,5\r\n\ts-0.048-1-0.6-1H8.6C8.048,4,8,4.447,8,5S8.048,6,8.6,6z M5.4,9H3.6C3.048,9,3,9.447,3,10s0.048,1,0.6,1H5.4C5.952,11,6,10.553,6,10\r\n\tS5.952,9,5.4,9z M5.4,14H3.6C3.048,14,3,14.447,3,15s0.048,1,0.6,1H5.4C5.952,16,6,15.553,6,15S5.952,14,5.4,14z M5.4,4H3.6\r\n\tC3.048,4,3,4.447,3,5s0.048,1,0.6,1H5.4C5.952,6,6,5.553,6,5S5.952,4,5.4,4z"
+ }
+ }]
+};
+exports.list = list;
\ No newline at end of file
diff --git a/dist/entypo/location.js b/dist/entypo/location.js
new file mode 100644
index 000000000..73346daa4
--- /dev/null
+++ b/dist/entypo/location.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.location = void 0;
+var location = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.367,18.102L18,14h-1.5l0.833,4H2.667L3.5,14H2l-1.368,4.102C0.285,19.146,0.9,20,2,20h16\r\n\tC19.1,20,19.715,19.146,19.367,18.102z M15,5c0-2.761-2.238-5-5-5S5,2.239,5,5c0,4.775,5,10,5,10S15,9.775,15,5z M7.3,5.06\r\n\tc0-1.491,1.208-2.699,2.7-2.699s2.7,1.208,2.7,2.699c0,1.492-1.209,2.7-2.7,2.7S7.3,6.551,7.3,5.06z"
+ }
+ }]
+};
+exports.location = location;
\ No newline at end of file
diff --git a/dist/entypo/lock.js b/dist/entypo/lock.js
new file mode 100644
index 000000000..7136c97b3
--- /dev/null
+++ b/dist/entypo/lock.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lock = void 0;
+var lock = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.8,8H14V5.6C14,2.703,12.665,1,10,1C7.334,1,6,2.703,6,5.6V8H4C3.447,8,3,8.646,3,9.199V17\r\n\tc0,0.549,0.428,1.139,0.951,1.307l1.197,0.387C5.672,18.861,6.55,19,7.1,19H12.9c0.549,0,1.428-0.139,1.951-0.307l1.196-0.387\r\n\tC16.571,18.139,17,17.549,17,17V9.199C17,8.646,16.352,8,15.8,8z M12,8H8V5.199C8,3.754,8.797,3,10,3c1.203,0,2,0.754,2,2.199V8z"
+ }
+ }]
+};
+exports.lock = lock;
\ No newline at end of file
diff --git a/dist/entypo/login.js b/dist/entypo/login.js
new file mode 100644
index 000000000..23aef63d8
--- /dev/null
+++ b/dist/entypo/login.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.login = void 0;
+var login = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,10L8,5v3H1v4h7v3L14,10z M17,17H9v2h8c1.1,0,2-0.9,2-2V3c0-1.1-0.9-2-2-2H9v2h8V17z"
+ }
+ }]
+};
+exports.login = login;
\ No newline at end of file
diff --git a/dist/entypo/longDown.js b/dist/entypo/longDown.js
new file mode 100644
index 000000000..b0703ad31
--- /dev/null
+++ b/dist/entypo/longDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.longDown = void 0;
+var longDown = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,19.25L4.5,14H8V1h4v13h3.5L10,19.25z"
+ }
+ }]
+};
+exports.longDown = longDown;
\ No newline at end of file
diff --git a/dist/entypo/longLeft.js b/dist/entypo/longLeft.js
new file mode 100644
index 000000000..96f6acd8a
--- /dev/null
+++ b/dist/entypo/longLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.longLeft = void 0;
+var longLeft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.75,10L6,4.5V8h13v4H6v3.5L0.75,10z"
+ }
+ }]
+};
+exports.longLeft = longLeft;
\ No newline at end of file
diff --git a/dist/entypo/longRight.js b/dist/entypo/longRight.js
new file mode 100644
index 000000000..6353b1930
--- /dev/null
+++ b/dist/entypo/longRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.longRight = void 0;
+var longRight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,15.5V12H1V8h13V4.5l5.25,5.5L14,15.5z"
+ }
+ }]
+};
+exports.longRight = longRight;
\ No newline at end of file
diff --git a/dist/entypo/longUp.js b/dist/entypo/longUp.js
new file mode 100644
index 000000000..e48792a59
--- /dev/null
+++ b/dist/entypo/longUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.longUp = void 0;
+var longUp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.75L15.5,6H12v13H8V6H4.5L10,0.75z"
+ }
+ }]
+};
+exports.longUp = longUp;
\ No newline at end of file
diff --git a/dist/entypo/loop.js b/dist/entypo/loop.js
new file mode 100644
index 000000000..3e09de023
--- /dev/null
+++ b/dist/entypo/loop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loop = void 0;
+var loop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20,7v7c0,1.103-0.896,2-2,2H2c-1.104,0-2-0.897-2-2V7c0-1.104,0.896-2,2-2h7V3l4,3.5L9,10V8H3v5h14V8h-3V5h4\r\n\tC19.104,5,20,5.896,20,7z"
+ }
+ }]
+};
+exports.loop = loop;
\ No newline at end of file
diff --git a/dist/entypo/magnet.js b/dist/entypo/magnet.js
new file mode 100644
index 000000000..33d7e2d59
--- /dev/null
+++ b/dist/entypo/magnet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.magnet = void 0;
+var magnet = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.165,17.86c-0.028,0.309,0.217,0.584,0.545,0.611l3.985,0.326c0.329,0.027,0.621-0.203,0.65-0.512l0.311-3.287\r\n\tl-5.18-0.426L12.165,17.86z M2.344,14.999l0.312,3.287c0.028,0.309,0.321,0.539,0.65,0.512l3.985-0.326\r\n\tc0.328-0.027,0.573-0.303,0.546-0.611l-0.312-3.287L2.344,14.999z M1.831,9.583l0.321,3.391l5.181-0.426L7.011,9.161\r\n\tc-0.007-0.082-0.011-0.166-0.011-0.25c0-1.555,1.346-2.82,3-2.82s3,1.266,3,2.82c0,0.084-0.004,0.168-0.012,0.25l-0.321,3.387\r\n\tl5.181,0.426l0.321-3.391c0.021-0.225,0.03-0.449,0.03-0.672C18.2,4.659,14.522,1.2,10,1.2S1.8,4.659,1.8,8.911\r\n\tC1.8,9.134,1.811,9.358,1.831,9.583z"
+ }
+ }]
+};
+exports.magnet = magnet;
\ No newline at end of file
diff --git a/dist/entypo/mail.js b/dist/entypo/mail.js
new file mode 100644
index 000000000..5b20727f2
--- /dev/null
+++ b/dist/entypo/mail.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mail = void 0;
+var mail = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.574,5.286c0.488,0.262,7.248,3.894,7.5,4.029C9.326,9.45,9.652,9.514,9.98,9.514c0.328,0,0.654-0.064,0.906-0.199\r\n\ts7.012-3.767,7.5-4.029C18.875,5.023,19.337,4,18.44,4H1.521C0.624,4,1.086,5.023,1.574,5.286z M18.613,7.489\r\n\tc-0.555,0.289-7.387,3.849-7.727,4.027s-0.578,0.199-0.906,0.199s-0.566-0.021-0.906-0.199S1.941,7.777,1.386,7.488\r\n\tC0.996,7.284,1,7.523,1,7.707S1,15,1,15c0,0.42,0.566,1,1,1h16c0.434,0,1-0.58,1-1c0,0,0-7.108,0-7.292S19.004,7.285,18.613,7.489z"
+ }
+ }]
+};
+exports.mail = mail;
\ No newline at end of file
diff --git a/dist/entypo/man.js b/dist/entypo/man.js
new file mode 100644
index 000000000..aadc5d8d6
--- /dev/null
+++ b/dist/entypo/man.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.man = void 0;
+var man = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,4c1.104,0,2-0.896,2-2c0-1.105-0.896-2-2-2S8,0.895,8,2C8,3.104,8.896,4,10,4z M15.978,11.583\r\n\tc-0.385-1.775-1.058-4.688-2.042-5.894C12.979,4.516,11.051,4.467,10,4.467h0c-1.051,0-2.979,0.049-3.936,1.222\r\n\tC5.08,6.895,4.407,9.808,4.022,11.583c-0.213,0.983,1.154,1.344,1.511,0.355c0.531-1.473,0.941-2.71,1.839-3.736\r\n\tC7.844,11.109,6.102,16.168,6,19c0,0.552,0.448,1,1,1c0.426,0,0.79-0.266,0.934-0.642C8.391,17.771,10,13.355,10,13.355l0,0l0,0\r\n\tc0,0,1.609,4.416,2.066,6.003C12.21,19.734,12.574,20,13,20c0.552,0,1-0.448,1-1c-0.102-2.832-1.844-7.891-1.372-10.797\r\n\tc0.898,1.026,1.308,2.263,1.839,3.736C14.823,12.927,16.191,12.566,15.978,11.583z"
+ }
+ }]
+};
+exports.man = man;
\ No newline at end of file
diff --git a/dist/entypo/map.js b/dist/entypo/map.js
new file mode 100644
index 000000000..c28c068ee
--- /dev/null
+++ b/dist/entypo/map.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map = void 0;
+var map = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.447,3.718l-6-3c-0.281-0.141-0.613-0.141-0.895,0l-5.63,2.815L1.316,1.664C1.01,1.562,0.676,1.613,0.415,1.802\r\n\tC0.154,1.99,0,2.292,0,2.613v13.001c0,0.379,0.214,0.725,0.553,0.894l6,3c0.141,0.07,0.294,0.106,0.447,0.106\r\n\ts0.307-0.035,0.447-0.106l5.63-2.814l5.606,1.869c0.305,0.1,0.64,0.049,0.901-0.139c0.261-0.188,0.415-0.49,0.415-0.81V4.612\r\n\tC20,4.233,19.786,3.887,19.447,3.718z M8,5.231l4-2v11.763l-4,2V5.231z M2,4l4,1.333v11.661l-4-2V4z M18,16.227l-4-1.334V3.231l4,2\r\n\tV16.227z"
+ }
+ }]
+};
+exports.map = map;
\ No newline at end of file
diff --git a/dist/entypo/mask.js b/dist/entypo/mask.js
new file mode 100644
index 000000000..89e88cbb1
--- /dev/null
+++ b/dist/entypo/mask.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mask = void 0;
+var mask = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.581,5.84c-0.043-0.469-0.462-0.803-0.92-0.73C16.919,5.388,12.835,7,10,7C7.165,7,3.081,5.388,1.339,5.11\r\n\tc-0.458-0.073-0.876,0.26-0.92,0.729C0.277,7.371,0,11.45,0,12.068c0,0.83,3.472,2.732,6,2.732c2.452,0,2.95-2.732,4-2.732\r\n\ts1.548,2.732,4,2.732c2.528,0,6-1.902,6-2.732C20,11.45,19.723,7.371,19.581,5.84z M7.66,10.72c-0.353,0.318-1.335,1.07-2.531,0.835\r\n\tc-1.196-0.235-1.919-1.323-2.166-1.758C2.903,9.691,2.922,9.557,3.007,9.48C3.36,9.162,4.342,8.41,5.539,8.645\r\n\tc1.196,0.235,1.919,1.323,2.166,1.758C7.764,10.509,7.745,10.643,7.66,10.72z M17.037,9.797c-0.246,0.436-0.969,1.523-2.166,1.758\r\n\tc-1.196,0.235-2.179-0.517-2.531-0.835c-0.086-0.077-0.104-0.211-0.045-0.317c0.246-0.436,0.969-1.523,2.166-1.758\r\n\tc1.196-0.235,2.179,0.517,2.531,0.835C17.078,9.557,17.097,9.691,17.037,9.797z"
+ }
+ }]
+};
+exports.mask = mask;
\ No newline at end of file
diff --git a/dist/entypo/medal.js b/dist/entypo/medal.js
new file mode 100644
index 000000000..b2c59859f
--- /dev/null
+++ b/dist/entypo/medal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.medal = void 0;
+var medal = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,10c0.528,0,1.026,0.104,1.504,0.256L5.427,1.141C5.368,1.053,5.27,1,5.164,1H1.608C1.491,1,1.42,1.131,1.486,1.229\r\n\tl6.231,9.347C8.404,10.22,9.173,10,10,10z M18.392,1h-3.556c-0.106,0-0.204,0.053-0.263,0.141L10.75,6.875l2,3l5.764-8.646\r\n\tC18.579,1.131,18.509,1,18.392,1z M10,11c-2.209,0-4,1.791-4,4c0,2.209,1.791,4,4,4s4-1.791,4-4C14,12.791,12.209,11,10,11z\r\n\t M12.112,15.117c0.062,0.064,0.052,0.158-0.022,0.208c-0.074,0.05-0.095,0.153-0.049,0.229c0.047,0.076,0.018,0.165-0.065,0.199\r\n\ts-0.125,0.13-0.095,0.214s-0.017,0.165-0.104,0.181s-0.149,0.101-0.137,0.189s-0.051,0.158-0.14,0.155\r\n\tc-0.089-0.003-0.167,0.068-0.174,0.156s-0.083,0.144-0.169,0.123s-0.178,0.031-0.203,0.117s-0.111,0.124-0.191,0.085\r\n\tc-0.08-0.039-0.18-0.006-0.222,0.072s-0.134,0.098-0.205,0.043s-0.175-0.044-0.232,0.024s-0.151,0.068-0.209,0\r\n\ts-0.162-0.079-0.232-0.024s-0.162,0.035-0.205-0.043s-0.142-0.111-0.222-0.072c-0.08,0.039-0.166,0-0.191-0.085\r\n\ts-0.116-0.138-0.203-0.117s-0.163-0.034-0.169-0.123S8.589,16.489,8.5,16.491c-0.089,0.003-0.152-0.067-0.14-0.155\r\n\ts-0.05-0.173-0.137-0.189s-0.135-0.097-0.104-0.181s-0.013-0.18-0.095-0.214s-0.111-0.123-0.065-0.199\r\n\tc0.047-0.076,0.025-0.179-0.049-0.229c-0.074-0.05-0.083-0.144-0.022-0.208c0.062-0.064,0.062-0.169,0-0.234\r\n\ts-0.052-0.158,0.022-0.208s0.095-0.153,0.049-0.229c-0.047-0.076-0.018-0.165,0.065-0.199s0.125-0.13,0.095-0.214\r\n\ts0.017-0.165,0.104-0.181s0.149-0.101,0.137-0.189s0.051-0.158,0.14-0.155c0.089,0.003,0.167-0.068,0.174-0.156\r\n\ts0.083-0.144,0.169-0.123s0.178-0.031,0.203-0.117s0.111-0.124,0.191-0.085c0.08,0.039,0.18,0.006,0.222-0.072\r\n\ts0.134-0.098,0.205-0.043s0.175,0.044,0.232-0.024s0.151-0.068,0.209,0s0.162,0.079,0.232,0.024s0.162-0.035,0.205,0.043\r\n\ts0.142,0.111,0.222,0.072c0.08-0.039,0.166,0,0.191,0.085s0.116,0.138,0.203,0.117s0.163,0.034,0.169,0.123s0.085,0.159,0.174,0.156\r\n\tc0.089-0.003,0.152,0.067,0.14,0.155s0.05,0.173,0.137,0.189s0.135,0.097,0.104,0.181s0.013,0.18,0.095,0.214\r\n\ts0.111,0.123,0.065,0.199c-0.047,0.076-0.025,0.179,0.049,0.229s0.083,0.144,0.022,0.208S12.05,15.053,12.112,15.117z"
+ }
+ }]
+};
+exports.medal = medal;
\ No newline at end of file
diff --git a/dist/entypo/medium.js b/dist/entypo/medium.js
new file mode 100644
index 000000000..2af4cb6ce
--- /dev/null
+++ b/dist/entypo/medium.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.medium = void 0;
+var medium = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.7502384,5C18.7502384,5,18,5,18,5.7501426s0,8.5002785,0,8.5002785S18,15,18.7502384,15H19v2h-6v-2h1V5.6999512\r\n\th-0.0999756L10.8354492,17H8.1365967L5.0999761,5.6999512H5.0000005V15h1v2h-5v-2h0.2497627c0,0,0.7502373,0,0.7502373-0.7501431\r\n\tc0-0.7501421,0-8.5002775,0-8.5002775S2.0000005,5,1.2497631,5H1.0000005V3h6.6340332l2.3269038,8.6591797h0.0766602L12.3859863,3\r\n\tH19v2H18.7502384z"
+ }
+ }]
+};
+exports.medium = medium;
\ No newline at end of file
diff --git a/dist/entypo/megaphone.js b/dist/entypo/megaphone.js
new file mode 100644
index 000000000..f43c1d362
--- /dev/null
+++ b/dist/entypo/megaphone.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.megaphone = void 0;
+var megaphone = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.223,7.03c-1.584-3.686-4.132-6.49-5.421-5.967c-2.189,0.891,1.304,5.164-9.447,9.533\r\n\tc-0.929,0.379-1.164,1.888-0.775,2.792c0.388,0.902,1.658,1.801,2.587,1.424c0.161-0.066,0.751-0.256,0.751-0.256\r\n\tc0.663,0.891,1.357,0.363,1.604,0.928c0.296,0.68,0.939,2.158,1.158,2.66c0.219,0.502,0.715,0.967,1.075,0.83\r\n\tc0.359-0.137,1.582-0.602,2.05-0.779c0.468-0.178,0.579-0.596,0.436-0.924c-0.154-0.355-0.786-0.459-0.967-0.873\r\n\tc-0.18-0.412-0.769-1.738-0.938-2.156c-0.23-0.568,0.259-1.031,0.97-1.104c4.894-0.512,5.809,2.512,7.475,1.834\r\n\tC19.068,14.447,18.806,10.713,17.223,7.03z M16.672,13.006c-0.287,0.115-2.213-1.402-3.443-4.267\r\n\tc-1.231-2.863-1.076-5.48-0.79-5.597c0.286-0.115,2.165,1.717,3.395,4.58C17.065,10.585,16.958,12.889,16.672,13.006z"
+ }
+ }]
+};
+exports.megaphone = megaphone;
\ No newline at end of file
diff --git a/dist/entypo/menu.js b/dist/entypo/menu.js
new file mode 100644
index 000000000..d582d57a7
--- /dev/null
+++ b/dist/entypo/menu.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.menu = void 0;
+var menu = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.4,9H3.6C3.048,9,3,9.447,3,10c0,0.553,0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1C17,9.447,16.952,9,16.4,9z M16.4,13\r\n\tH3.6C3.048,13,3,13.447,3,14c0,0.553,0.048,1,0.6,1H16.4c0.552,0,0.6-0.447,0.6-1C17,13.447,16.952,13,16.4,13z M3.6,7H16.4\r\n\tC16.952,7,17,6.553,17,6c0-0.553-0.048-1-0.6-1H3.6C3.048,5,3,5.447,3,6C3,6.553,3.048,7,3.6,7z"
+ }
+ }]
+};
+exports.menu = menu;
\ No newline at end of file
diff --git a/dist/entypo/merge.js b/dist/entypo/merge.js
new file mode 100644
index 000000000..d7827a891
--- /dev/null
+++ b/dist/entypo/merge.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.merge = void 0;
+var merge = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.8896484,17.7070312L16.8916016,20C13.7548828,18.6341553,11.3964844,16.8476562,10,14.7250977\r\n\tC8.6035156,16.8476562,6.2451172,18.6341553,3.1083984,20l-0.9980469-2.2929688\r\n\tC5.1396484,16.3886719,8.5498047,14.1015625,8.5498047,10V7H5.5L10,0l4.5,7h-3.0498047v3\r\n\tC11.4501953,14.1015625,14.8603516,16.3886719,17.8896484,17.7070312z"
+ }
+ }]
+};
+exports.merge = merge;
\ No newline at end of file
diff --git a/dist/entypo/message.js b/dist/entypo/message.js
new file mode 100644
index 000000000..b5fdee4d5
--- /dev/null
+++ b/dist/entypo/message.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.message = void 0;
+var message = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,6v7c0,1.1-0.9,2-2,2h-4v3l-4-3H4c-1.101,0-2-0.9-2-2V6c0-1.1,0.899-2,2-2h12C17.1,4,18,4.9,18,6z"
+ }
+ }]
+};
+exports.message = message;
\ No newline at end of file
diff --git a/dist/entypo/mic.js b/dist/entypo/mic.js
new file mode 100644
index 000000000..47b3f5c4e
--- /dev/null
+++ b/dist/entypo/mic.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mic = void 0;
+var mic = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.399,7.643V10.4c0,2.236-1.643,4.629-5.399,4.959V18h2.6c0.22,0,0.4,0.18,0.4,0.4V19.6c0,0.221-0.181,0.4-0.4,0.4h-7.2\r\n\tC6.18,20,6,19.82,6,19.6V18.4C6,18.18,6.18,18,6.399,18H9v-2.641c-3.758-0.33-5.4-2.723-5.4-4.959V7.643c0-0.221,0.18-0.4,0.4-0.4\r\n\th0.6c0.22,0,0.4,0.18,0.4,0.4V10.4c0,1.336,1.053,3.6,5,3.6c3.946,0,5-2.264,5-3.6V7.643c0-0.221,0.18-0.4,0.399-0.4H16\r\n\tC16.22,7.242,16.399,7.422,16.399,7.643z M10,12c2.346,0,3-0.965,3-1.6V7.242H7V10.4C7,11.035,7.652,12,10,12z M13,1.6\r\n\tC13,0.963,12.346,0,10,0C7.652,0,7,0.963,7,1.6v4.242h6V1.6z"
+ }
+ }]
+};
+exports.mic = mic;
\ No newline at end of file
diff --git a/dist/entypo/minus.js b/dist/entypo/minus.js
new file mode 100644
index 000000000..4b21de6ce
--- /dev/null
+++ b/dist/entypo/minus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minus = void 0;
+var minus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,10c0,0.553-0.048,1-0.601,1H4.601C4.049,11,4,10.553,4,10c0-0.553,0.049-1,0.601-1h10.799C15.952,9,16,9.447,16,10z"
+ }
+ }]
+};
+exports.minus = minus;
\ No newline at end of file
diff --git a/dist/entypo/mix.js b/dist/entypo/mix.js
new file mode 100644
index 000000000..c87be273a
--- /dev/null
+++ b/dist/entypo/mix.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mix = void 0;
+var mix = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5,1.6C5,1.047,4.552,1,4,1C3.447,1,3,1.047,3,1.6V10h2V1.6z M3,18.4C3,18.951,3.447,19,4,19c0.552,0,1-0.049,1-0.6V15H3\r\n\tV18.4z M6.399,11H1.599C1.046,11,1,11.448,1,12v1c0,0.553,0.046,1,0.599,1h4.801C6.95,14,7,13.553,7,13v-1\r\n\tC7,11.448,6.95,11,6.399,11z M18.399,12h-4.801C13.046,12,13,12.448,13,13v1c0,0.553,0.046,1,0.599,1h4.801\r\n\tC18.95,15,19,14.553,19,14v-1C19,12.448,18.95,12,18.399,12z M13,7c0-0.552-0.05-1-0.601-1H7.599C7.046,6,7,6.448,7,7v1\r\n\tc0,0.553,0.046,1,0.599,1h4.801C12.95,9,13,8.553,13,8V7z M11,1.6C11,1.047,10.552,1,10,1C9.447,1,9,1.047,9,1.6V5h2V1.6z M9,18.4\r\n\tc0,0.551,0.447,0.6,1,0.6c0.552,0,1-0.049,1-0.6V10H9V18.4z M17,1.6C17,1.047,16.552,1,16,1c-0.553,0-1,0.047-1,0.6V11h2V1.6z\r\n\t M15,18.4c0,0.551,0.447,0.6,1,0.6c0.552,0,1-0.049,1-0.6V16h-2V18.4z"
+ }
+ }]
+};
+exports.mix = mix;
\ No newline at end of file
diff --git a/dist/entypo/mixi.js b/dist/entypo/mixi.js
new file mode 100644
index 000000000..9a20bcbf7
--- /dev/null
+++ b/dist/entypo/mixi.js
@@ -0,0 +1,14 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mixi = void 0;
+var mixi = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.mixi = mixi;
\ No newline at end of file
diff --git a/dist/entypo/mobile.js b/dist/entypo/mobile.js
new file mode 100644
index 000000000..a35305123
--- /dev/null
+++ b/dist/entypo/mobile.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mobile = void 0;
+var mobile = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.004,0H5.996C4.894,0,4,0.894,4,1.996v16.007C4,19.106,4.894,20,5.996,20h8.007C15.106,20,16,19.106,16,18.004V1.996\r\n\tC16,0.894,15.106,0,14.004,0z M10,19c-0.69,0-1.25-0.447-1.25-1s0.56-1,1.25-1s1.25,0.447,1.25,1S10.69,19,10,19z M14,16H6V2h8V16z"
+ }
+ }]
+};
+exports.mobile = mobile;
\ No newline at end of file
diff --git a/dist/entypo/mobileCombo.js b/dist/entypo/mobileCombo.js
new file mode 100644
index 000000000..ba0585d16
--- /dev/null
+++ b/dist/entypo/mobileCombo.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mobileCombo = void 0;
+var mobileCombo = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.00354,5H11.99646C10.8938599,5,10,5.8937988,10,6.9963989V18.00354C10,19.1061401,10.8938599,20,11.99646,20H17.00354\r\n\tC18.1061401,20,19,19.1061401,19,18.00354V6.9963989C19,5.8937988,18.1061401,5,17.00354,5z M14.5,19\r\n\tc-0.6904297,0-1.25-0.4473267-1.25-1c0-0.5527344,0.5595703-1,1.25-1c0.6895142,0,1.25,0.4472656,1.25,1\r\n\tC15.75,18.5526733,15.1895142,19,14.5,19z M17,16h-5V7h5V16z M8,16H3V2h12v1h2V2c0-1.1010742-0.8994141-2-2-2H3\r\n\tC1.9003906,0,1,0.8989258,1,2v16c0,1.0996094,0.9003906,2,2,2h5.5551758C8.2114258,19.4101562,8,18.7338867,8,18.003418V16z"
+ }
+ }]
+};
+exports.mobileCombo = mobileCombo;
\ No newline at end of file
diff --git a/dist/entypo/moon.js b/dist/entypo/moon.js
new file mode 100644
index 000000000..32ced2e17
--- /dev/null
+++ b/dist/entypo/moon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.moon = void 0;
+var moon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.719,1.8c0.686,0.385,1.332,0.867,1.916,1.449c3.42,3.422,3.42,8.966,0,12.386c-3.42,3.42-8.965,3.42-12.386,0\r\n\tc-0.583-0.584-1.065-1.231-1.449-1.916c3.335,1.867,7.633,1.387,10.469-1.449C15.106,9.433,15.587,5.136,13.719,1.8z"
+ }
+ }]
+};
+exports.moon = moon;
\ No newline at end of file
diff --git a/dist/entypo/mouse.js b/dist/entypo/mouse.js
new file mode 100644
index 000000000..a72d87d56
--- /dev/null
+++ b/dist/entypo/mouse.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mouse = void 0;
+var mouse = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.402,14.402l-2.627-7.535c-0.722-2.073-2.966-3.22-5.092-2.653L5.707,0.379C5.528,0.033,5.109-0.1,4.769,0.083\r\n\tC4.43,0.266,4.3,0.697,4.48,1.044l1.929,3.742C4.872,5.806,4.073,7.74,4.58,9.56l2.139,7.696c0.602,2.162,3.08,3.264,5.571,2.502\r\n\tC14.749,18.895,16.14,16.521,15.402,14.402z M8.899,8.923c-0.73,0.24-1.511-0.172-1.745-0.921C6.919,7.254,7.322,6.454,8.051,6.214\r\n\tc0.73-0.24,1.512,0.172,1.746,0.92S9.629,8.683,8.899,8.923z"
+ }
+ }]
+};
+exports.mouse = mouse;
\ No newline at end of file
diff --git a/dist/entypo/music.js b/dist/entypo/music.js
new file mode 100644
index 000000000..5c728da5f
--- /dev/null
+++ b/dist/entypo/music.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music = void 0;
+var music = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M11.942,12.521c-0.128,0.265-0.258,0.279-0.202,0\r\n\tc0.146-0.721,0.047-2.269-1.043-2.441v3.294c0,0.674-0.311,1.262-1.136,1.528c-0.802,0.256-1.699-0.011-1.908-0.586\r\n\tc-0.21-0.576,0.261-1.276,1.052-1.564c0.442-0.161,0.954-0.203,1.299-0.07V8h0.694C10.697,9.633,13.516,9.275,11.942,12.521z"
+ }
+ }]
+};
+exports.music = music;
\ No newline at end of file
diff --git a/dist/entypo/mute.js b/dist/entypo/mute.js
new file mode 100644
index 000000000..5aead76ae
--- /dev/null
+++ b/dist/entypo/mute.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mute = void 0;
+var mute = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.201,9.194c1.389,1.883,1.818,3.517,1.559,3.777c-0.26,0.258-1.893-0.17-3.778-1.559l-5.526,5.527\r\n\tc4.186,1.838,9.627-2.018,10.605-2.996c0.925-0.922,0.097-3.309-1.856-5.754L14.201,9.194z M8.667,7.941\r\n\tc-1.099-1.658-1.431-3.023-1.194-3.26c0.233-0.234,1.6,0.096,3.257,1.197l1.023-1.025C9.489,3.179,7.358,2.519,6.496,3.384\r\n\tC5.568,4.31,2.048,9.261,3.265,13.341L8.667,7.941z M18.521,1.478c-0.39-0.391-1.023-0.391-1.414,0L1.478,17.108\r\n\tc-0.391,0.391-0.391,1.024,0,1.414c0.391,0.391,1.023,0.391,1.414,0L18.521,2.892C18.912,2.501,18.912,1.868,18.521,1.478z"
+ }
+ }]
+};
+exports.mute = mute;
\ No newline at end of file
diff --git a/dist/entypo/network.js b/dist/entypo/network.js
new file mode 100644
index 000000000..c445497b5
--- /dev/null
+++ b/dist/entypo/network.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.network = void 0;
+var network = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.274,6.915c0.2,0,0.394,0.029,0.576,0.086c0.69-0.773,1.455-1.477,2.283-2.1C8.098,4.755,8.079,4.602,8.079,4.446\r\n\tc0-0.217,0.036-0.426,0.102-0.621C7.252,3.161,6.244,2.602,5.17,2.171C4.165,2.792,3.288,3.602,2.588,4.552\r\n\tc0.519,0.92,1.136,1.777,1.838,2.557C4.682,6.985,4.969,6.915,5.274,6.915z M3.316,8.872c0-0.275,0.058-0.537,0.159-0.773\r\n\tC2.847,7.407,2.278,6.663,1.78,5.87C1.155,7.112,0.8,8.515,0.8,10.001c0,1.719,0.474,3.328,1.295,4.705\r\n\tc0.294-1.654,0.851-3.219,1.62-4.652C3.465,9.726,3.316,9.315,3.316,8.872z M10.036,2.489c0.517,0,0.985,0.201,1.336,0.529\r\n\tc1.021-0.439,2.096-0.777,3.215-0.992C13.236,1.247,11.67,0.8,10,0.8c-1.139,0-2.229,0.209-3.236,0.588\r\n\tc0.799,0.395,1.561,0.855,2.277,1.375C9.333,2.589,9.672,2.489,10.036,2.489z M12.962,11.708c0.122-0.254,0.295-0.479,0.509-0.656\r\n\tc-0.578-1.777-1.493-3.404-2.672-4.803c-0.234,0.1-0.492,0.154-0.764,0.154c-0.425,0-0.816-0.137-1.137-0.365\r\n\tc-0.71,0.539-1.367,1.143-1.964,1.803C7.122,8.14,7.231,8.493,7.231,8.872c0,0.203-0.031,0.4-0.09,0.586\r\n\tC8.858,10.604,10.835,11.392,12.962,11.708z M15.501,14.351c0.026,0.371,0.041,0.744,0.041,1.121c0,0.664-0.042,1.318-0.122,1.961\r\n\tc1.56-1.139,2.748-2.758,3.347-4.639c-0.71,0.172-1.438,0.295-2.181,0.365C16.413,13.696,16.014,14.128,15.501,14.351z\r\n\t M12.504,13.024c-2.272-0.377-4.377-1.244-6.21-2.484c-0.298,0.182-0.647,0.289-1.021,0.289c-0.139,0-0.272-0.014-0.402-0.041\r\n\tc-0.877,1.662-1.438,3.517-1.599,5.484c0.876,0.94,1.944,1.697,3.145,2.205C7.909,16.184,9.993,14.288,12.504,13.024z M16.176,3.181\r\n\tc-1.475,0.143-2.883,0.514-4.193,1.068c0.006,0.066,0.01,0.131,0.01,0.197c0,0.309-0.074,0.6-0.201,0.859\r\n\tc1.311,1.539,2.327,3.33,2.969,5.291c0.797,0.016,1.477,0.502,1.77,1.195c0.886-0.09,1.748-0.26,2.578-0.504\r\n\tc0.06-0.42,0.092-0.85,0.092-1.287C19.2,7.296,18.034,4.864,16.176,3.181z M13.489,14.069c-2.344,1.098-4.304,2.789-5.723,4.856\r\n\tC8.481,19.104,9.229,19.2,10,19.2c1.387,0,2.702-0.309,3.882-0.859c0.19-0.928,0.29-1.887,0.29-2.869\r\n\tc0-0.355-0.016-0.707-0.043-1.055C13.893,14.341,13.676,14.224,13.489,14.069z"
+ }
+ }]
+};
+exports.network = network;
\ No newline at end of file
diff --git a/dist/entypo/neutral.js b/dist/entypo/neutral.js
new file mode 100644
index 000000000..2a6d920c4
--- /dev/null
+++ b/dist/entypo/neutral.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.neutral = void 0;
+var neutral = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.6,3.402,7.6,7.6\r\n\tC17.6,14.197,14.197,17.599,10,17.599z M12.5,6.251C11.672,6.251,11,7.034,11,8s0.672,1.75,1.5,1.75C13.329,9.75,14,8.967,14,8\r\n\tS13.329,6.251,12.5,6.251z M7.501,9.75C8.329,9.75,9,8.967,9,8s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS6.672,9.75,7.501,9.75z M13,12.25h-6c-0.414,0-0.75,0.336-0.75,0.75c0,0.414,0.336,0.75,0.75,0.75h6c0.414,0,0.75-0.336,0.75-0.75\r\n\tC13.75,12.585,13.415,12.25,13,12.25z"
+ }
+ }]
+};
+exports.neutral = neutral;
\ No newline at end of file
diff --git a/dist/entypo/newIcon.js b/dist/entypo/newIcon.js
new file mode 100644
index 000000000..7c36365c6
--- /dev/null
+++ b/dist/entypo/newIcon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.newIcon = void 0;
+var newIcon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.69,12.344l-1.727-1.538c-0.5-0.445-0.5-1.174,0-1.619l1.727-1.539c0.5-0.445,0.367-0.859-0.296-0.924l-2.29-0.217\r\n\tc-0.662-0.062-1.02-0.633-0.791-1.266l1.215-3.383c0.228-0.635-0.051-0.865-0.619-0.514l-2.701,1.67\r\n\tc-0.568,0.354-1.303,0.16-1.631-0.426l-0.978-1.746c-0.329-0.588-0.872-0.59-1.207-0.008l-0.909,1.58\r\n\tC8.146,2.999,7.375,3.247,6.77,2.97l-1.6-0.734C4.562,1.956,4.097,2.278,4.133,2.952l0.086,1.615\r\n\tc0.037,0.674-0.461,1.367-1.104,1.541L1.57,6.522C0.928,6.696,0.81,7.202,1.31,7.647l1.727,1.539c0.5,0.445,0.5,1.174,0,1.619\r\n\tL1.31,12.344c-0.5,0.445-0.368,0.877,0.293,0.957l2.095,0.254c0.661,0.08,1.029,0.67,0.818,1.311l-1.074,3.258\r\n\tc-0.211,0.641,0.09,0.889,0.668,0.555l2.463-1.426c0.578-0.334,1.356-0.15,1.729,0.408l1.022,1.539\r\n\tc0.372,0.559,0.931,0.529,1.24-0.068l0.899-1.733c0.31-0.598,1.052-0.842,1.648-0.543l1.734,0.867\r\n\tc0.598,0.297,1.057-0.01,1.021-0.682l-0.087-1.617c-0.035-0.674,0.461-1.365,1.106-1.539l1.543-0.416\r\n\tC19.072,13.295,19.19,12.789,18.69,12.344z M11,14H9v-2h2V14z M11,11H9V6h2V11z"
+ }
+ }]
+};
+exports.newIcon = newIcon;
\ No newline at end of file
diff --git a/dist/entypo/news.js b/dist/entypo/news.js
new file mode 100644
index 000000000..957fc076f
--- /dev/null
+++ b/dist/entypo/news.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.news = void 0;
+var news = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M14,5h-4v2h4V5z M14,8h-4v1h4V8z M9,5H6v4h3V5z M9,11h5v-1H9V11z M12,13h2v-1h-2\r\n\tV13z M14,14H6v1h8V14z M11,12H6v1h5V12z M8,10H6v1h2V10z M17,1H3C2.447,1,2,1.447,2,2v16c0,0.552,0.447,1,1,1h14\r\n\tc0.553,0,1-0.448,1-1V2C18,1.448,17.553,1,17,1z M16,17H4V3h12V17z"
+ }
+ }]
+};
+exports.news = news;
\ No newline at end of file
diff --git a/dist/entypo/newsletter.js b/dist/entypo/newsletter.js
new file mode 100644
index 000000000..01cad3c6c
--- /dev/null
+++ b/dist/entypo/newsletter.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.newsletter = void 0;
+var newsletter = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,3H2C1.4472656,3,1,3.4472656,1,4v12c0,0.5517578,0.4472656,1,1,1h16c0.5527344,0,1-0.4482422,1-1V4\r\n\tC19,3.4481812,18.5527344,3,18,3z M4,10h6v1H4V10z M12,14H4v-1h8V14z M17,8h-3V5h3V8z"
+ }
+ }]
+};
+exports.newsletter = newsletter;
\ No newline at end of file
diff --git a/dist/entypo/next.js b/dist/entypo/next.js
new file mode 100644
index 000000000..b7437ca58
--- /dev/null
+++ b/dist/entypo/next.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.next = void 0;
+var next = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.244,9.52L5.041,4.571C4.469,4.188,4,4.469,4,5.196v9.609c0,0.725,0.469,1.006,1.041,0.625l7.203-4.951\r\n\tc0,0,0.279-0.199,0.279-0.478C12.523,9.721,12.244,9.52,12.244,9.52z M14,4h1c0.553,0,1,0.048,1,0.6V15.4c0,0.552-0.447,0.6-1,0.6\r\n\th-1c-0.553,0-1-0.048-1-0.6V4.6C13,4.048,13.447,4,14,4z"
+ }
+ }]
+};
+exports.next = next;
\ No newline at end of file
diff --git a/dist/entypo/note.js b/dist/entypo/note.js
new file mode 100644
index 000000000..f9709e701
--- /dev/null
+++ b/dist/entypo/note.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.note = void 0;
+var note = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,1l-0.002,13c0,1.243-1.301,3-3.748,3C12.007,17,11,16.347,11,15.125c0-1.589,1.445-2.55,3-2.55\r\n\tc0.432,0,0.754,0.059,1,0.123V5.364L8,6.637L8,16H7.998c0,1.243-1.301,3-3.748,3C3.007,19,2,18.347,2,17.125\r\n\tc0-1.589,1.445-2.55,3-2.55c0.432,0,0.754,0.059,1,0.123V3L17,1z"
+ }
+ }]
+};
+exports.note = note;
\ No newline at end of file
diff --git a/dist/entypo/notification.js b/dist/entypo/notification.js
new file mode 100644
index 000000000..085cdc7fb
--- /dev/null
+++ b/dist/entypo/notification.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.notification = void 0;
+var notification = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,8.38V17H3V5h8.62c-0.073-0.322-0.12-0.655-0.12-1s0.047-0.678,0.12-1H3C1.898,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h12\r\n\tc1.1,0,2-0.9,2-2V8.38c-0.322,0.073-0.655,0.12-1,0.12S15.322,8.453,15,8.38z M16,1c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3\r\n\tS17.657,1,16,1z"
+ }
+ }]
+};
+exports.notification = notification;
\ No newline at end of file
diff --git a/dist/entypo/off.js b/dist/entypo/off.js
new file mode 100644
index 000000000..73b7d2871
--- /dev/null
+++ b/dist/entypo/off.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.off = void 0;
+var off = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.8,17.4c0.2,0.2,0.2,0.5,0,0.7l-0.7,0.7c-0.2,0.2-0.5,0.2-0.7,0L1.2,2.6C1,2.4,1,2.1,1.2,1.9l0.7-0.7\r\n\tC2.1,1,2.4,1,2.6,1.2L18.8,17.4z M16,7c1.7,0,3-1.3,3-3c0-1.7-1.3-3-3-3s-3,1.3-3,3C13,5.7,14.3,7,16,7z M15,8.4v3.8l2,2V8.4\r\n\tc-0.3,0.1-0.7,0.1-1,0.1S15.3,8.5,15,8.4z M11.6,5c-0.1-0.3-0.1-0.7-0.1-1c0-0.3,0-0.7,0.1-1H5.8l2,2H11.6z M5,15V7.8l-2-2V15\r\n\tc0,1.1,0.9,2,2,2h9.2l-2-2H5z"
+ }
+ }]
+};
+exports.off = off;
\ No newline at end of file
diff --git a/dist/entypo/one.js b/dist/entypo/one.js
new file mode 100644
index 000000000..662ddd8a7
--- /dev/null
+++ b/dist/entypo/one.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.one = void 0;
+var one = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z"
+ }
+ }]
+};
+exports.one = one;
\ No newline at end of file
diff --git a/dist/entypo/oneHundredPercent.js b/dist/entypo/oneHundredPercent.js
new file mode 100644
index 000000000..040f36e69
--- /dev/null
+++ b/dist/entypo/oneHundredPercent.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.oneHundredPercent = void 0;
+var oneHundredPercent = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.1,14.1L1,17l2,2l2.9-3.1L8,18v-6H2L4.1,14.1z M19,3l-2-2l-2.9,3.1L12,2v6h6l-2.1-2.1L19,3z"
+ }
+ }]
+};
+exports.oneHundredPercent = oneHundredPercent;
\ No newline at end of file
diff --git a/dist/entypo/onedrive.js b/dist/entypo/onedrive.js
new file mode 100644
index 000000000..d6d5f7f6e
--- /dev/null
+++ b/dist/entypo/onedrive.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.onedrive = void 0;
+var onedrive = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.429,9.847c0.487-1.961,2.249-3.394,4.341-3.394c1.236,0,2.394,0.505,3.232,1.382c0.354-0.114,0.768-0.202,1.136-0.21\r\n\tv-0.13c0-2.482-1.845-4.495-4.12-4.495C9.392,3,7.998,4.038,7.328,5.531C6.834,5.197,6.257,4.996,5.634,4.996\r\n\tc-1.785,0-3.231,1.577-3.231,3.523c0,0.21,0.024,0.414,0.057,0.613c-1.377,0.136-2.455,1.544-2.455,3.08\r\n\tc0,0.016,0.004,0.029,0.004,0.045C0.008,12.271,0,12.285,0,12.299c0,0.615,0.214,1.177,0.561,1.631C1.053,14.592,1.823,15,2.701,15\r\n\th1.261c-0.246-0.488-0.398-1.032-0.398-1.615C3.563,11.648,4.794,10.193,6.429,9.847z M17.889,11.777\r\n\tc-0.025,0-0.05,0.007-0.075,0.008c0.007-0.074,0.022-0.146,0.022-0.222c0-1.472-1.193-2.664-2.665-2.664\r\n\tc-0.586,0-1.123,0.194-1.564,0.516c-0.546-1.015-1.604-1.712-2.838-1.712c-1.788,0-3.237,1.449-3.237,3.237\r\n\tc0,0.023,0.006,0.043,0.007,0.066C7.421,10.988,7.303,10.97,7.18,10.97c-1.335,0-2.415,1.081-2.415,2.415\r\n\tc0,0.167,0.017,0.33,0.049,0.487C5.042,15.083,6.102,16,7.38,16h10.706v-0.019C19.158,15.879,20,14.987,20,13.889\r\n\tC20,12.723,19.055,11.777,17.889,11.777z"
+ }
+ }]
+};
+exports.onedrive = onedrive;
\ No newline at end of file
diff --git a/dist/entypo/open.js b/dist/entypo/open.js
new file mode 100644
index 000000000..e1cd018c6
--- /dev/null
+++ b/dist/entypo/open.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.open = void 0;
+var open = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.8,8H14V5.6C14,2.703,12.665,1,10,1C7.334,1,6,2.703,6,5.6V6h2V5.199C8,3.754,8.797,3,10,3c1.203,0,2,0.754,2,2.199V8H4\r\n\tC3.447,8,3,8.646,3,9.199V17c0,0.549,0.428,1.139,0.951,1.307l1.197,0.387C5.672,18.861,6.55,19,7.1,19H12.9\r\n\tc0.549,0,1.428-0.139,1.951-0.307l1.196-0.387C16.571,18.139,17,17.549,17,17V9.199C17,8.646,16.352,8,15.8,8z"
+ }
+ }]
+};
+exports.open = open;
\ No newline at end of file
diff --git a/dist/entypo/out.js b/dist/entypo/out.js
new file mode 100644
index 000000000..42f6d741d
--- /dev/null
+++ b/dist/entypo/out.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.out = void 0;
+var out = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,10l-6-5v3H6v4h7v3L19,10z M3,3h8V1H3C1.9,1,1,1.9,1,3v14c0,1.1,0.9,2,2,2h8v-2H3V3z"
+ }
+ }]
+};
+exports.out = out;
\ No newline at end of file
diff --git a/dist/entypo/outlined.js b/dist/entypo/outlined.js
new file mode 100644
index 000000000..7191faaa7
--- /dev/null
+++ b/dist/entypo/outlined.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.outlined = void 0;
+var outlined = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.19,4.156c-1.672-1.535-4.383-1.535-6.055,0L10,5.197L8.864,4.156c-1.672-1.535-4.382-1.535-6.054,0\r\n\tc-1.881,1.726-1.881,4.519,0,6.245L10,17l7.19-6.599C19.07,8.675,19.07,5.881,17.19,4.156z M16.124,9.375L10,15.09L3.875,9.375\r\n\tC3.258,8.808,3.019,8.068,3.019,7.281s0.138-1.433,0.756-1.999C4.32,4.781,5.053,4.505,5.838,4.505c0.784,0,1.517,0.476,2.062,0.978\r\n\tL10,7.308l2.099-1.826c0.546-0.502,1.278-0.978,2.063-0.978s1.518,0.276,2.063,0.777c0.618,0.566,0.755,1.212,0.755,1.999\r\n\tS16.742,8.808,16.124,9.375z"
+ }
+ }]
+};
+exports.outlined = outlined;
\ No newline at end of file
diff --git a/dist/entypo/pad.js b/dist/entypo/pad.js
new file mode 100644
index 000000000..70076583f
--- /dev/null
+++ b/dist/entypo/pad.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pad = void 0;
+var pad = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M6,0H4C3.448,0,3,0.448,3,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1\r\n\tC7,0.448,6.552,0,6,0z M11,0H9C8.448,0,8,0.448,8,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1C12,0.448,11.552,0,11,0z M16,0\r\n\th-2c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V1C17,0.448,16.552,0,16,0z M6,5H4C3.448,5,3,5.448,3,6v2\r\n\tc0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V6C7,5.448,6.552,5,6,5z M11,5H9C8.448,5,8,5.448,8,6v2c0,0.552,0.448,1,1,1h2\r\n\tc0.552,0,1-0.448,1-1V6C12,5.448,11.552,5,11,5z M16,5h-2c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1V6\r\n\tC17,5.448,16.552,5,16,5z M6,10H4c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C7,10.448,6.552,10,6,10z\r\n\t M11,10H9c-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C12,10.448,11.552,10,11,10z M11,16H9\r\n\tc-0.552,0-1,0.448-1,1v2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C12,16.448,11.552,16,11,16z M16,10h-2c-0.552,0-1,0.448-1,1\r\n\tv2c0,0.552,0.448,1,1,1h2c0.552,0,1-0.448,1-1v-2C17,10.448,16.552,10,16,10z"
+ }
+ }]
+};
+exports.pad = pad;
\ No newline at end of file
diff --git a/dist/entypo/palette.js b/dist/entypo/palette.js
new file mode 100644
index 000000000..fac92e3d3
--- /dev/null
+++ b/dist/entypo/palette.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.palette = void 0;
+var palette = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.74,2.608C12.212,1.422,8.674,1.647,5.02,3.882c-2.853,1.743-4.718,6.076-4.103,9.182\r\n\tc0.728,3.671,4.351,5.995,9.243,4.651c5.275-1.449,6.549-4.546,6.379-5.334c-0.17-0.788-2.665-1.652-1.718-3.498\r\n\tc1.188-2.313,3.129-1.149,3.982-1.622C19.658,6.789,19.342,3.819,15.74,2.608z M12.094,13.314c-0.798,0.218-1.623-0.256-1.843-1.059\r\n\tc-0.221-0.805,0.248-1.631,1.046-1.849c0.798-0.218,1.622,0.254,1.843,1.059C13.36,12.268,12.892,13.096,12.094,13.314z"
+ }
+ }]
+};
+exports.palette = palette;
\ No newline at end of file
diff --git a/dist/entypo/parallel.js b/dist/entypo/parallel.js
new file mode 100644
index 000000000..452ffd64c
--- /dev/null
+++ b/dist/entypo/parallel.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.parallel = void 0;
+var parallel = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.4,4c0-1.326-1.074-2.4-2.4-2.4S3.6,2.674,3.6,4c0,0.967,0.576,1.796,1.4,2.176v7.649C4.175,14.204,3.6,15.033,3.6,16\r\n\tc0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V6.176C7.825,5.796,8.4,4.967,8.4,4z M7.384,16\r\n\tc0,0.764-0.62,1.385-1.384,1.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tC6.764,14.615,7.384,15.234,7.384,16z M6,5.385C5.235,5.385,4.616,4.764,4.616,4c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C7.384,4.764,6.764,5.385,6,5.385z M15,13.824V6.176c0.825-0.38,1.4-1.208,1.4-2.176\r\n\tc0-1.326-1.074-2.4-2.4-2.4S11.6,2.674,11.6,4c0,0.967,0.576,1.796,1.4,2.176v7.649c-0.825,0.38-1.4,1.208-1.4,2.176\r\n\tc0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C16.4,15.033,15.825,14.204,15,13.824z M12.616,4c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C13.235,5.385,12.616,4.764,12.616,4z M14,17.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC15.384,16.764,14.764,17.385,14,17.385z"
+ }
+ }]
+};
+exports.parallel = parallel;
\ No newline at end of file
diff --git a/dist/entypo/paus.js b/dist/entypo/paus.js
new file mode 100644
index 000000000..e29651d40
--- /dev/null
+++ b/dist/entypo/paus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paus = void 0;
+var paus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,3h-2c-0.553,0-1,0.048-1,0.6V16.4c0,0.552,0.447,0.6,1,0.6h2c0.553,0,1-0.048,1-0.6V3.6C16,3.048,15.553,3,15,3z M7,3H5\r\n\tC4.447,3,4,3.048,4,3.6V16.4C4,16.952,4.447,17,5,17h2c0.553,0,1-0.048,1-0.6V3.6C8,3.048,7.553,3,7,3z"
+ }
+ }]
+};
+exports.paus = paus;
\ No newline at end of file
diff --git a/dist/entypo/paypal.js b/dist/entypo/paypal.js
new file mode 100644
index 000000000..965f3c80d
--- /dev/null
+++ b/dist/entypo/paypal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paypal = void 0;
+var paypal = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.914,10.677h1.659c3.604,0,5.649-1.623,6.3-4.96c0.021-0.11,0.04-0.216,0.056-0.322c0.036-0.226,0.054-0.429,0.062-0.624\r\n\tC15.997,4.637,16.001,4.558,16,4.484c-0.008-0.391-0.077-0.722-0.216-1.039c-0.129-0.296-0.324-0.587-0.613-0.918\r\n\tC14.318,1.557,12.832,1,11.057,1H5.404C5.006,1,4.667,1.29,4.605,1.683l-1.02,6.571l-1.269,8.185C2.27,16.734,2.498,17,2.796,17\r\n\tl2.772,0l0.849-5.043C6.534,11.217,7.164,10.677,7.914,10.677z M17.017,6.09c-0.792,3.771-3.357,5.772-7.445,5.772H7.914\r\n\tc-0.164,0-0.302,0.118-0.328,0.282L6.481,19h2.907c0.348,0,0.645-0.253,0.699-0.597l0.029-0.15l0.555-3.514l0.036-0.194\r\n\tc0.054-0.344,0.351-0.597,0.699-0.597h0.44c2.85,0,5.081-1.158,5.733-4.506C17.847,8.062,17.711,6.908,17.017,6.09z"
+ }
+ }]
+};
+exports.paypal = paypal;
\ No newline at end of file
diff --git a/dist/entypo/pencil.js b/dist/entypo/pencil.js
new file mode 100644
index 000000000..10e5c63fa
--- /dev/null
+++ b/dist/entypo/pencil.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pencil = void 0;
+var pencil = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.69,2.661c-1.894-1.379-3.242-1.349-3.754-1.266c-0.144,0.023-0.265,0.106-0.35,0.223l-4.62,6.374l-2.263,3.123\r\n\tc-0.277,0.382-0.437,0.836-0.462,1.307l-0.296,5.624c-0.021,0.405,0.382,0.698,0.76,0.553l5.256-2.01\r\n\tc0.443-0.17,0.828-0.465,1.106-0.849l1.844-2.545l5.036-6.949c0.089-0.123,0.125-0.273,0.1-0.423\r\n\tC16.963,5.297,16.56,4.021,14.69,2.661z M8.977,15.465l-2.043,0.789c-0.08,0.031-0.169,0.006-0.221-0.062\r\n\tc-0.263-0.335-0.576-0.667-1.075-1.03c-0.499-0.362-0.911-0.558-1.31-0.706c-0.08-0.03-0.131-0.106-0.126-0.192l0.122-2.186\r\n\tl0.549-0.755c0,0,1.229-0.169,2.833,0.998c1.602,1.166,1.821,2.388,1.821,2.388L8.977,15.465z"
+ }
+ }]
+};
+exports.pencil = pencil;
\ No newline at end of file
diff --git a/dist/entypo/phone.js b/dist/entypo/phone.js
new file mode 100644
index 000000000..923abd122
--- /dev/null
+++ b/dist/entypo/phone.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phone = void 0;
+var phone = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.256,12.253c-0.096-0.667-0.611-1.187-1.274-1.342c-2.577-0.604-3.223-2.088-3.332-3.734C12.193,7.092,11.38,7,10,7\r\n\tS7.807,7.092,7.35,7.177c-0.109,1.646-0.755,3.13-3.332,3.734c-0.663,0.156-1.178,0.675-1.274,1.342l-0.497,3.442\r\n\tC2.072,16.907,2.962,18,4.2,18h11.6c1.237,0,2.128-1.093,1.953-2.305L17.256,12.253z M10,15.492c-1.395,0-2.526-1.12-2.526-2.5\r\n\ts1.131-2.5,2.526-2.5s2.526,1.12,2.526,2.5S11.394,15.492,10,15.492z M19.95,6C19.926,4.5,16.108,2.001,10,2\r\n\tC3.891,2.001,0.073,4.5,0.05,6s0.021,3.452,2.535,3.127c2.941-0.381,2.76-1.408,2.76-2.876C5.345,5.227,7.737,4.98,10,4.98\r\n\ts4.654,0.247,4.655,1.271c0,1.468-0.181,2.495,2.76,2.876C19.928,9.452,19.973,7.5,19.95,6z"
+ }
+ }]
+};
+exports.phone = phone;
\ No newline at end of file
diff --git a/dist/entypo/picasa.js b/dist/entypo/picasa.js
new file mode 100644
index 000000000..2b576add0
--- /dev/null
+++ b/dist/entypo/picasa.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.picasa = void 0;
+var picasa = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.808,1.823C2.719,3.411,0.8,6.544,0.8,10.021c0,0.633,0.08,1.275,0.221,1.918L8.97,4.7\r\n\tC8.122,3.929,5.894,1.901,5.808,1.823z M13.793,1.626C12.593,1.081,11.317,0.8,9.999,0.8c-0.934,0-1.855,0.156-2.749,0.441\r\n\tl6.543,5.951V1.626z M15.192,2.438v10.617h3.485c0.343-0.982,0.522-2.004,0.522-3.035C19.2,6.987,17.677,4.148,15.192,2.438z\r\n\t M1.463,13.429c0.674,1.693,1.857,3.15,3.368,4.184v-7.25l-2.045,1.861C2.088,12.858,1.506,13.39,1.463,13.429z M6.23,18.425\r\n\tc0.935,0.422,1.913,0.682,2.92,0.775h1.689c3.019-0.281,5.727-2.068,7.199-4.744H6.23V18.425z"
+ }
+ }]
+};
+exports.picasa = picasa;
\ No newline at end of file
diff --git a/dist/entypo/pin.js b/dist/entypo/pin.js
new file mode 100644
index 000000000..765d5e583
--- /dev/null
+++ b/dist/entypo/pin.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pin = void 0;
+var pin = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2.009c-2.762,0-5,2.229-5,4.99c0,4.774,5,11,5,11s5-6.227,5-11C15,4.239,12.762,2.009,10,2.009z M10,9.76\r\n\tc-1.492,0-2.7-1.209-2.7-2.7s1.208-2.7,2.7-2.7c1.49,0,2.699,1.209,2.699,2.7S11.49,9.76,10,9.76z"
+ }
+ }]
+};
+exports.pin = pin;
\ No newline at end of file
diff --git a/dist/entypo/pinterest.js b/dist/entypo/pinterest.js
new file mode 100644
index 000000000..710b03f0c
--- /dev/null
+++ b/dist/entypo/pinterest.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pinterest = void 0;
+var pinterest = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.617,13.227C8.091,15.981,7.45,18.621,5.549,20C4.963,15.838,6.41,12.713,7.083,9.395\r\n\tc-1.147-1.93,0.138-5.812,2.555-4.855c2.975,1.176-2.576,7.172,1.15,7.922c3.891,0.781,5.479-6.75,3.066-9.199\r\n\tC10.369-0.275,3.708,3.18,4.528,8.245c0.199,1.238,1.478,1.613,0.511,3.322c-2.231-0.494-2.897-2.254-2.811-4.6\r\n\tc0.138-3.84,3.449-6.527,6.771-6.9c4.201-0.471,8.144,1.543,8.689,5.494c0.613,4.461-1.896,9.293-6.389,8.945\r\n\tC10.081,14.411,9.571,13.807,8.617,13.227z"
+ }
+ }]
+};
+exports.pinterest = pinterest;
\ No newline at end of file
diff --git a/dist/entypo/plane.js b/dist/entypo/plane.js
new file mode 100644
index 000000000..29ea2318e
--- /dev/null
+++ b/dist/entypo/plane.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plane = void 0;
+var plane = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.64,2.634C18.296,2.755,1.319,8.738,0.984,8.856c-0.284,0.1-0.347,0.345-0.01,0.479c0.401,0.161,3.796,1.521,3.796,1.521\r\n\tl0,0l2.25,0.901c0,0,10.838-7.958,10.984-8.066c0.148-0.108,0.318,0.095,0.211,0.211c-0.107,0.117-7.871,8.513-7.871,8.513v0.002\r\n\tL9.892,12.92l0.599,0.322l0,0c0,0,4.65,2.504,4.982,2.682c0.291,0.156,0.668,0.027,0.752-0.334\r\n\tc0.099-0.426,2.845-12.261,2.906-12.525C19.21,2.722,18.983,2.513,18.64,2.634z M7,17.162c0,0.246,0.139,0.315,0.331,0.141\r\n\tc0.251-0.229,2.85-2.561,2.85-2.561L7,13.098V17.162z"
+ }
+ }]
+};
+exports.plane = plane;
\ No newline at end of file
diff --git a/dist/entypo/play.js b/dist/entypo/play.js
new file mode 100644
index 000000000..4feb7a114
--- /dev/null
+++ b/dist/entypo/play.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.play = void 0;
+var play = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,10.001c0,0.299-0.305,0.514-0.305,0.514l-8.561,5.303C5.51,16.227,5,15.924,5,15.149V4.852\r\n\tc0-0.777,0.51-1.078,1.135-0.67l8.561,5.305C14.695,9.487,15,9.702,15,10.001z"
+ }
+ }]
+};
+exports.play = play;
\ No newline at end of file
diff --git a/dist/entypo/plug.js b/dist/entypo/plug.js
new file mode 100644
index 000000000..25f61e212
--- /dev/null
+++ b/dist/entypo/plug.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plug = void 0;
+var plug = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,14v1.498C0,15.775,0.225,16,0.502,16h0.997C1.775,16,2,15.775,2,15.498V14c0-0.959,0.801-2.273,2-2.779V9.116\r\n\tC1.684,9.652,0,11.97,0,14z M12.065,4.701L9.535,6.599C9.188,6.859,8.766,7,8.332,7H6.005C5.45,7,5,7.45,5,8.005v3.991\r\n\tC5,12.55,5.45,13,6.005,13h2.327c0.434,0,0.856,0.141,1.203,0.401l2.531,1.898C12.672,15.754,13.41,16,14.168,16H16V4h-1.832\r\n\tC13.41,4,12.672,4.246,12.065,4.701z M17,6v2h3V6H17z M17,14h3v-2h-3V14z"
+ }
+ }]
+};
+exports.plug = plug;
\ No newline at end of file
diff --git a/dist/entypo/plus.js b/dist/entypo/plus.js
new file mode 100644
index 000000000..930e9931e
--- /dev/null
+++ b/dist/entypo/plus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plus = void 0;
+var plus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,10c0,0.553-0.048,1-0.601,1H11v4.399C11,15.951,10.553,16,10,16c-0.553,0-1-0.049-1-0.601V11H4.601\r\n\tC4.049,11,4,10.553,4,10c0-0.553,0.049-1,0.601-1H9V4.601C9,4.048,9.447,4,10,4c0.553,0,1,0.048,1,0.601V9h4.399\r\n\tC15.952,9,16,9.447,16,10z"
+ }
+ }]
+};
+exports.plus = plus;
\ No newline at end of file
diff --git a/dist/entypo/pointer.js b/dist/entypo/pointer.js
new file mode 100644
index 000000000..28be5a9ad
--- /dev/null
+++ b/dist/entypo/pointer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pointer = void 0;
+var pointer = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.8601685,11.9953299l2.5251465,6.0802317L11.1703491,19l-2.5252075-6.050354L5,16.6248779V1.1005249\r\n\tl10.9461327,10.8882742L10.8601685,11.9953299z"
+ }
+ }]
+};
+exports.pointer = pointer;
\ No newline at end of file
diff --git a/dist/entypo/popup.js b/dist/entypo/popup.js
new file mode 100644
index 000000000..8c0347381
--- /dev/null
+++ b/dist/entypo/popup.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.popup = void 0;
+var popup = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,2H7.979C6.88,2,6,2.88,6,3.98V12c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M16,12H8V4h8V12z M4,10H2v6\r\n\tc0,1.1,0.9,2,2,2h6v-2H4V10z"
+ }
+ }]
+};
+exports.popup = popup;
\ No newline at end of file
diff --git a/dist/entypo/print.js b/dist/entypo/print.js
new file mode 100644
index 000000000..5c625846a
--- /dev/null
+++ b/dist/entypo/print.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.print = void 0;
+var print = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.501,6h17c0.57,0,0.477-0.608,0.193-0.707C18.409,5.194,15.251,4,14.7,4H14V1H6v3H5.301c-0.55,0-3.709,1.194-3.993,1.293\r\n\tC1.024,5.392,0.931,6,1.501,6z M19,7H1C0.45,7,0,7.45,0,8v5c0,0.551,0.45,1,1,1h2.283l-0.882,5h15.199l-0.883-5H19\r\n\tc0.551,0,1-0.449,1-1V8C20,7.45,19.551,7,19,7z M4.603,17l1.198-7.003H14.2L15.399,17H4.603z"
+ }
+ }]
+};
+exports.print = print;
\ No newline at end of file
diff --git a/dist/entypo/publish.js b/dist/entypo/publish.js
new file mode 100644
index 000000000..9ef35092c
--- /dev/null
+++ b/dist/entypo/publish.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.publish = void 0;
+var publish = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.967,8.193L5,13h3v6h4v-6h3L9.967,8.193z M18,1H2C0.9,1,0,1.9,0,3v12c0,1.1,0.9,2,2,2h4v-2H2V6h16v9h-4v2h4\r\n\tc1.1,0,2-0.9,2-2V3C20,1.9,19.1,1,18,1z M2.5,4.25c-0.414,0-0.75-0.336-0.75-0.75c0-0.414,0.336-0.75,0.75-0.75\r\n\tc0.414,0,0.75,0.336,0.75,0.75C3.25,3.914,2.914,4.25,2.5,4.25z M4.5,4.25c-0.414,0-0.75-0.336-0.75-0.75\r\n\tc0-0.414,0.336-0.75,0.75-0.75c0.414,0,0.75,0.336,0.75,0.75C5.25,3.914,4.914,4.25,4.5,4.25z M18,4H6V3h12.019L18,4z"
+ }
+ }]
+};
+exports.publish = publish;
\ No newline at end of file
diff --git a/dist/entypo/qq.js b/dist/entypo/qq.js
new file mode 100644
index 000000000..ef6105802
--- /dev/null
+++ b/dist/entypo/qq.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.qq = void 0;
+var qq = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.005,13.018c-0.779-0.547-1.751-0.51-2.304,0.277c-0.553,0.785-4.418,5.633-10.751,3.619\r\n\tc0.239,0.209,0.49,0.406,0.755,0.592c4.153,2.926,9.892,1.928,12.816-2.225C18.076,14.494,17.784,13.567,17.005,13.018z\r\n\t M4.785,12.401C4.381,11.53,2.116,5.758,7.025,1.28c-0.3,0.104-0.597,0.221-0.89,0.357C1.526,3.772-0.481,9.24,1.654,13.85\r\n\tc0.403,0.871,1.353,1.084,2.218,0.684C4.736,14.133,5.188,13.272,4.785,12.401z M10.826,0.823c-0.956-0.086-1.614,0.629-1.7,1.578\r\n\tC9.041,3.35,9.561,4.172,10.517,4.258c0.956,0.086,7.087,1.01,8.51,7.502c0.062-0.311,0.106-0.627,0.136-0.949\r\n\tC19.618,5.75,15.886,1.278,10.826,0.823z M6.891,10.53c-0.264,0.619-0.306,1.213-0.094,1.322c0.146,0.076,0.374-0.098,0.588-0.416\r\n\tC7.47,11.783,7.68,12.098,7.98,12.35c-0.314,0.115-0.52,0.305-0.52,0.519c0,0.354,0.556,0.639,1.241,0.639\r\n\tc0.618,0,1.13-0.232,1.225-0.537c0.025,0,0.123,0,0.147,0c0.095,0.305,0.607,0.537,1.226,0.537c0.686,0,1.241-0.285,1.241-0.639\r\n\tc0-0.215-0.205-0.404-0.52-0.519c0.299-0.252,0.51-0.566,0.594-0.914c0.214,0.318,0.442,0.492,0.589,0.416\r\n\tc0.211-0.109,0.17-0.703-0.095-1.322c-0.207-0.488-0.488-0.848-0.702-0.926C12.41,9.573,12.41,9.541,12.41,9.51\r\n\tc0-0.19-0.052-0.363-0.142-0.504c0.002-0.012,0.002-0.023,0.002-0.033c0-0.088-0.021-0.168-0.056-0.238\r\n\tC12.16,7.467,11.335,6.461,10,6.461c-1.336,0-2.161,1.006-2.215,2.273c-0.035,0.07-0.057,0.15-0.057,0.238\r\n\tc0,0.01,0.001,0.021,0.002,0.033C7.642,9.147,7.589,9.321,7.589,9.51c0,0.031,0.001,0.062,0.004,0.094\r\n\tC7.38,9.682,7.098,10.041,6.891,10.53z"
+ }
+ }]
+};
+exports.qq = qq;
\ No newline at end of file
diff --git a/dist/entypo/quote.js b/dist/entypo/quote.js
new file mode 100644
index 000000000..394956d98
--- /dev/null
+++ b/dist/entypo/quote.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quote = void 0;
+var quote = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.315,3.401c-1.61,0-2.916,1.343-2.916,3c0,1.656,1.306,3,2.916,3c2.915,0,0.972,5.799-2.916,5.799v1.4\r\n\tC9.338,16.601,12.057,3.401,5.315,3.401z M13.715,3.401c-1.609,0-2.915,1.343-2.915,3c0,1.656,1.306,3,2.915,3\r\n\tc2.916,0,0.973,5.799-2.915,5.799v1.4C17.738,16.601,20.457,3.401,13.715,3.401z"
+ }
+ }]
+};
+exports.quote = quote;
\ No newline at end of file
diff --git a/dist/entypo/radio.js b/dist/entypo/radio.js
new file mode 100644
index 000000000..87739e786
--- /dev/null
+++ b/dist/entypo/radio.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.radio = void 0;
+var radio = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,8H5.021l8.974-5.265L13,1L1.736,7.571C1.28,7.837,1,8.324,1,8.852V17c0,1.105,0.895,2,2,2h14c1.105,0,2-0.895,2-2v-7\r\n\tC19,8.895,18.105,8,17,8z M15.5,17c-0.828,0-1.5-0.672-1.5-1.5c0-0.828,0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5\r\n\tC17,16.328,16.328,17,15.5,17z M17,12H3v-2h14V12z"
+ }
+ }]
+};
+exports.radio = radio;
\ No newline at end of file
diff --git a/dist/entypo/raft.js b/dist/entypo/raft.js
new file mode 100644
index 000000000..c2c92faef
--- /dev/null
+++ b/dist/entypo/raft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.raft = void 0;
+var raft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.6734395,19c-0.877316,0-1.6501045-0.3605442-2.1763153-1.0143661\r\n\tc-0.6450326-0.8027058-0.8514075-1.9354591-0.5816016-3.1901903l0.0580709-0.2699594l1.9735143,0.4313974l-0.0580707,0.269063\r\n\tc-0.13937,0.6448536-0.083086,1.1650429,0.1581311,1.4654961c0.148304,0.1838589,0.3591456,0.2780323,0.6262712,0.2780323\r\n\tc0.7754688,0,1.5446839-1.2412777,2.125392-3.4179964c-0.6360989-0.2161474-1.2203803-0.5354357-1.7403374-0.9524832\r\n\tl-0.213522-0.1713028l1.2579031-1.5892649l0.2153087,0.1722002c0.2742729,0.2206316,0.580708,0.4009037,0.9139452,0.5372286\r\n\tc0.1688519-0.968626,0.3037548-2.0323219,0.4029226-3.168664L8.659173,8.1047468l2.0110369,0.1775808l-0.0241213,0.2744446\r\n\tc-0.1018476,1.1695271-0.240324,2.2673035-0.4109631,3.2682171c1.3874464-0.1399126,2.6516027-0.9273701,3.3547068-2.1112471\r\n\tc1.152482-1.9408398,0.694169-4.3704782-1.0890512-5.7776766c-0.7620678-0.601804-1.8814945-0.9433796-2.9267693-0.8913608\r\n\tc-1.3043594,0.0547094-2.4041319,0.642029-3.2680469,1.765815C5.2660508,6.1621122,5.1561627,8.1881561,6.0450931,9.6267452\r\n\tl0.1447301,0.2340851L4.4745007,10.934391l-0.1447301-0.2349815c-1.338309-2.1677494-1.182858-5.1014323,0.3796935-7.1328573\r\n\tc1.2266345-1.59644,2.8794193-2.4716568,4.7805681-2.5514789c1.5518312-0.0609876,3.1134892,0.4205006,4.2570381,1.3218613\r\n\tc2.5944252,2.0466716,3.2573261,5.5875397,1.5768461,8.4180813c-0.7397337,1.2457609-1.8823881,2.1955528-3.2430325,2.7067728\r\n\tc0.2519379,0.3838625,0.4663534,0.8430634,0.712038,1.5139265l0.1581316,0.4394693\r\n\tc0.4967279,1.3874674,0.7236509,1.5112371,1.2453957,1.5112371c0.2358561,0,0.4940481-0.1004505,0.6566467-0.256506\r\n\tc0.3126888-0.2995567,0.4047089-0.8753519,0.2742729-1.7121372l-0.0428829-0.2726507l1.9949551-0.3148041l0.0428829,0.2726507\r\n\tc0.235857,1.513031-0.0678978,2.7229156-0.8773155,3.4987144c-0.5422916,0.5183945-1.2891722,0.8152599-2.0485592,0.8152599\r\n\tc-0.9309206,0-1.684948-0.3479881-2.239747-1.0332012c-0.3850546-0.4735508-0.5985765-0.9641418-0.9050112-1.8179684\r\n\tl-0.152771-0.4260159c-0.3546791-0.9677296-0.6682615-1.4565268-1.1203203-1.7067556\r\n\tc-0.1375828,0.5264664-0.2894602,1.0188513-0.453846,1.4681864C8.4599457,17.8026695,7.2315245,19,5.6734395,19z"
+ }
+ }]
+};
+exports.raft = raft;
\ No newline at end of file
diff --git a/dist/entypo/rainbow.js b/dist/entypo/rainbow.js
new file mode 100644
index 000000000..e7013ffc9
--- /dev/null
+++ b/dist/entypo/rainbow.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rainbow = void 0;
+var rainbow = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,5C4.4771729,5,0,9.4771118,0,15h1.5c0-4.694458,3.8056641-8.5,8.5-8.5s8.5,3.805542,8.5,8.5H20\r\n\tC20,9.4771118,15.5228271,5,10,5z M10,11c-2.2092285,0-4,1.7908325-4,4h1.5c0-1.3807373,1.1192627-2.5,2.5-2.5\r\n\ts2.5,1.1192627,2.5,2.5H14C14,12.7908325,12.2092285,11,10,11z M10,8c-3.8659668,0-7,3.1339722-7,7h1.5\r\n\tc0-3.0375977,2.4624023-5.5,5.5-5.5s5.5,2.4624023,5.5,5.5H17C17,11.1339722,13.8659668,8,10,8z"
+ }
+ }]
+};
+exports.rainbow = rainbow;
\ No newline at end of file
diff --git a/dist/entypo/rdio.js b/dist/entypo/rdio.js
new file mode 100644
index 000000000..6a1221150
--- /dev/null
+++ b/dist/entypo/rdio.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rdio = void 0;
+var rdio = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.203,10.001c0,4.307-3.448,7.799-7.701,7.799S0.8,14.308,0.8,10.001C0.8,5.692,4.248,2.2,8.501,2.2\r\n\tc0.611,0,1.204,0.076,1.774,0.213v4.441c-0.902-0.33-2.01-0.281-3.053,0.223c-1.885,0.91-2.841,2.957-2.135,4.57\r\n\tc0.705,1.615,2.807,2.188,4.691,1.277c1.299-0.627,2.443-2.137,2.443-4.029V3.171c0.162,0.09,0.32,0.188,0.475,0.289\r\n\tc1.464,0.92,3.638,2.152,6.178,2.281c0.99,0.049-0.389,2.541-2.738,3.236C16.18,9.311,16.203,9.653,16.203,10.001z"
+ }
+ }]
+};
+exports.rdio = rdio;
\ No newline at end of file
diff --git a/dist/entypo/record.js b/dist/entypo/record.js
new file mode 100644
index 000000000..d1c3d9ee5
--- /dev/null
+++ b/dist/entypo/record.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.record = void 0;
+var record = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,3c-3.866,0-7,3.133-7,7c0,3.865,3.134,7,7,7s7-3.135,7-7C17,6.133,13.866,3,10,3z"
+ }
+ }]
+};
+exports.record = record;
\ No newline at end of file
diff --git a/dist/entypo/renren.js b/dist/entypo/renren.js
new file mode 100644
index 000000000..f21fe75a9
--- /dev/null
+++ b/dist/entypo/renren.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.renren = void 0;
+var renren = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.468,0.865C4.117,1.594,0.8,5.377,0.8,9.936c0,2.266,0.82,4.338,2.179,5.941c3.221-1.559,5.472-5.086,5.489-9.191V0.865z\r\n\t M10.002,12.258c-0.573,2.373-2.285,4.4-4.418,5.748C6.894,18.725,8.4,19.135,10,19.135c1.602,0,3.108-0.41,4.418-1.129\r\n\tC12.285,16.658,10.574,14.631,10.002,12.258z M11.535,6.643c0,4.123,2.256,7.668,5.487,9.234c1.358-1.603,2.178-3.676,2.178-5.941\r\n\tc0-4.559-3.315-8.34-7.665-9.07V6.643z"
+ }
+ }]
+};
+exports.renren = renren;
\ No newline at end of file
diff --git a/dist/entypo/reply.js b/dist/entypo/reply.js
new file mode 100644
index 000000000..9db55efd2
--- /dev/null
+++ b/dist/entypo/reply.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.reply = void 0;
+var reply = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,16.685c0,0-2.225-9.732-11-9.732V2.969L1,9.542l7,6.69v-4.357C12.763,11.874,16.516,12.296,19,16.685z"
+ }
+ }]
+};
+exports.reply = reply;
\ No newline at end of file
diff --git a/dist/entypo/retweet.js b/dist/entypo/retweet.js
new file mode 100644
index 000000000..3477bd07d
--- /dev/null
+++ b/dist/entypo/retweet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.retweet = void 0;
+var retweet = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5,13V8h2L3.5,4L0,8h2v6c0,1.104,0.895,2,2,2h9.482l-2.638-3H5z M9.156,7L6.518,4H16c1.104,0,2,0.897,2,2v6h2l-3.5,4L13,12\r\n\th2V7H9.156z"
+ }
+ }]
+};
+exports.retweet = retweet;
\ No newline at end of file
diff --git a/dist/entypo/ribbon.js b/dist/entypo/ribbon.js
new file mode 100644
index 000000000..8f1402485
--- /dev/null
+++ b/dist/entypo/ribbon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ribbon = void 0;
+var ribbon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.574,16.338c-0.757-1.051-2.851-3.824-4.57-6.106c0.696-0.999,1.251-1.815,1.505-2.242\r\n\tc1.545-2.594,0.874-4.26,0.022-5.67C12.677,0.909,12.542,0.094,10,0.094c-2.543,0-2.678,0.815-3.531,2.227\r\n\tC5.615,3.731,4.945,5.397,6.49,7.991c0.254,0.426,0.809,1.243,1.506,2.242c-1.72,2.281-3.814,5.055-4.571,6.106\r\n\tc-0.176,0.244-0.16,0.664,0.009,1.082c0.13,0.322,0.63,1.762,0.752,2.064c0.156,0.389,0.664,0.67,1.082,0.092\r\n\tc0.241-0.334,2.582-3.525,4.732-6.522c2.149,2.996,4.491,6.188,4.732,6.522c0.417,0.578,0.926,0.297,1.082-0.092\r\n\tc0.122-0.303,0.622-1.742,0.752-2.064C16.733,17.002,16.75,16.582,16.574,16.338z M9.634,7.063C8.566,5.579,7.802,3.852,7.802,3.852\r\n\tS8.222,3.094,10,3.094c1.778,0,2.198,0.758,2.198,0.758s-0.766,1.727-1.833,3.211C10.277,7.184,10.147,7.36,10,7.56\r\n\tC9.851,7.36,9.721,7.184,9.634,7.063z"
+ }
+ }]
+};
+exports.ribbon = ribbon;
\ No newline at end of file
diff --git a/dist/entypo/right.js b/dist/entypo/right.js
new file mode 100644
index 000000000..a8fab577e
--- /dev/null
+++ b/dist/entypo/right.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.right = void 0;
+var right = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,7v2H3v2h8v2l3-3L11,7z M15,2.6V17.4c0,0.551,0.448,0.6,1,0.6c0.553,0,1-0.049,1-0.6V2.6C17,2.047,16.553,2,16,2\r\n\tC15.448,2,15,2.047,15,2.6z"
+ }
+ }]
+};
+exports.right = right;
\ No newline at end of file
diff --git a/dist/entypo/rocket.js b/dist/entypo/rocket.js
new file mode 100644
index 000000000..0ef6650d4
--- /dev/null
+++ b/dist/entypo/rocket.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rocket = void 0;
+var rocket = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11.933,13.069c0,0,7.059-5.094,6.276-10.924c-0.017-0.127-0.059-0.213-0.112-0.268c-0.054-0.055-0.137-0.098-0.263-0.115\r\n\tC12.137,0.961,7.16,8.184,7.16,8.184C2.842,7.667,3.156,8.528,1.186,13.26c-0.377,0.902,0.234,1.213,0.904,0.959\r\n\tc0.67-0.252,2.148-0.811,2.148-0.811l2.59,2.648c0,0-0.546,1.514-0.793,2.199c-0.248,0.686,0.055,1.311,0.938,0.926\r\n\tC11.597,17.165,12.439,17.487,11.933,13.069z M12.942,7.153c-0.598-0.613-0.598-1.604,0-2.217c0.598-0.611,1.567-0.611,2.166,0\r\n\tc0.598,0.611,0.598,1.603,0,2.217C14.509,7.764,13.539,7.764,12.942,7.153z"
+ }
+ }]
+};
+exports.rocket = rocket;
\ No newline at end of file
diff --git a/dist/entypo/rss.js b/dist/entypo/rss.js
new file mode 100644
index 000000000..dca755648
--- /dev/null
+++ b/dist/entypo/rss.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rss = void 0;
+var rss = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.4,2.4v2.367c7.086,0,12.83,5.746,12.83,12.832h2.369C17.599,9.205,10.794,2.4,2.4,2.4z M2.4,7.137v2.369\r\n\tc4.469,0,8.093,3.623,8.093,8.094h2.368C12.861,11.822,8.177,7.137,2.4,7.137z M4.669,13.059c-1.254,0-2.27,1.018-2.27,2.271\r\n\ts1.016,2.27,2.27,2.27s2.269-1.016,2.269-2.27S5.923,13.059,4.669,13.059z"
+ }
+ }]
+};
+exports.rss = rss;
\ No newline at end of file
diff --git a/dist/entypo/ruler.js b/dist/entypo/ruler.js
new file mode 100644
index 000000000..051dcf2c9
--- /dev/null
+++ b/dist/entypo/ruler.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ruler = void 0;
+var ruler = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.249,0.438L0.438,14.251c-0.584,0.584-0.584,1.538,0.002,2.124l3.185,3.187c0.584,0.584,1.541,0.586,2.124,0.002\r\n\tL19.562,5.751c0.584-0.585,0.584-1.541,0-2.125l-3.186-3.188C15.789-0.148,14.834-0.145,14.249,0.438z M3.929,15.312L3.17,16.071\r\n\tl-1.896-1.897l0.759-0.759L3.929,15.312z M6.965,15.312l-0.759,0.759l-3.415-3.415l0.759-0.76L6.965,15.312z M6.965,12.276\r\n\tl-0.759,0.759l-1.898-1.896l0.76-0.76L6.965,12.276z M8.483,10.758l-0.759,0.759L5.828,9.621l0.759-0.76L8.483,10.758z\r\n\t M11.518,10.758l-0.759,0.759L7.345,8.103l0.759-0.759L11.518,10.758z M11.518,7.723l-0.759,0.759L8.863,6.586l0.759-0.759\r\n\tL11.518,7.723z M13.036,6.206l-0.759,0.759L10.38,5.068l0.759-0.759L13.036,6.206z M16.072,6.206l-0.76,0.759L11.898,3.55\r\n\tl0.759-0.76L16.072,6.206z M16.071,3.171l-0.759,0.759l-1.896-1.898l0.759-0.758L16.071,3.171z"
+ }
+ }]
+};
+exports.ruler = ruler;
\ No newline at end of file
diff --git a/dist/entypo/sad.js b/dist/entypo/sad.js
new file mode 100644
index 000000000..5ceb4ba73
--- /dev/null
+++ b/dist/entypo/sad.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sad = void 0;
+var sad = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.001,0.4C4.698,0.4,0.4,4.698,0.4,10c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10.001,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6c4.197,0,7.6,3.402,7.6,7.6\r\n\tC17.6,14.197,14.197,17.599,10,17.599z M12.501,9.75c0.828,0,1.5-0.783,1.5-1.75s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS11.672,9.75,12.501,9.75z M7.501,9.75c0.828,0,1.5-0.783,1.5-1.75s-0.672-1.75-1.5-1.75c-0.828,0-1.5,0.783-1.5,1.75\r\n\tS6.672,9.75,7.501,9.75z M10.002,11.25c-3.424,0-4.622,2.315-4.672,2.414c-0.186,0.371-0.035,0.821,0.335,1.007\r\n\tC5.773,14.724,5.887,14.75,6,14.75c0.275,0,0.54-0.151,0.672-0.414c0.008-0.017,0.822-1.586,3.33-1.586\r\n\tc2.463,0,3.298,1.527,3.328,1.585c0.184,0.37,0.635,0.523,1.006,0.336c0.371-0.184,0.521-0.636,0.336-1.006\r\n\tC14.623,13.566,13.426,11.25,10.002,11.25z"
+ }
+ }]
+};
+exports.sad = sad;
\ No newline at end of file
diff --git a/dist/entypo/save.js b/dist/entypo/save.js
new file mode 100644
index 000000000..769c1f727
--- /dev/null
+++ b/dist/entypo/save.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.save = void 0;
+var save = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.173,2H4C2.899,2,2,2.9,2,4v12c0,1.1,0.899,2,2,2h12c1.101,0,2-0.9,2-2V5.127L15.173,2z M14,8c0,0.549-0.45,1-1,1H7\r\n\tC6.45,9,6,8.549,6,8V3h8V8z M13,4h-2v4h2V4z"
+ }
+ }]
+};
+exports.save = save;
\ No newline at end of file
diff --git a/dist/entypo/scissors.js b/dist/entypo/scissors.js
new file mode 100644
index 000000000..10be19947
--- /dev/null
+++ b/dist/entypo/scissors.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.scissors = void 0;
+var scissors = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.38,5.59c0-2.038-1.652-3.69-3.69-3.69S1,3.552,1,5.59c0,2.038,1.652,3.69,3.69,3.69c0.96,0,1.826-0.376,2.483-0.976\r\n\tL9,9.991L9.012,10l-0.004,0.003l-1.836,1.693C6.516,11.096,5.65,10.72,4.69,10.72C2.652,10.72,1,12.372,1,14.41\r\n\tc0,2.038,1.652,3.69,3.69,3.69s3.69-1.652,3.69-3.69c0-0.297-0.044-0.582-0.111-0.858l2.844-1.991l4.127,3.065\r\n\tc2.212,1.549,3.76-0.663,3.76-0.663L8.269,6.448C8.335,6.172,8.38,5.887,8.38,5.59z M4.69,7.39c-0.994,0-1.8-0.806-1.8-1.8\r\n\ts0.806-1.8,1.8-1.8s1.8,0.806,1.8,1.8S5.684,7.39,4.69,7.39z M4.69,16.21c-0.994,0-1.8-0.806-1.8-1.8s0.806-1.8,1.8-1.8\r\n\ts1.8,0.806,1.8,1.8S5.684,16.21,4.69,16.21z M19,6.038c0,0-1.548-2.212-3.76-0.663L12.035,7.61l2.354,1.648L19,6.038z"
+ }
+ }]
+};
+exports.scissors = scissors;
\ No newline at end of file
diff --git a/dist/entypo/scribd.js b/dist/entypo/scribd.js
new file mode 100644
index 000000000..e721df05f
--- /dev/null
+++ b/dist/entypo/scribd.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.scribd = void 0;
+var scribd = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.643,18.284c0,0.224-0.072,0.492-0.148,0.716h5.737c0.328-0.377,0.513-0.831,0.513-1.342c0-1.385-1.644-2.154-5.241-3.842\r\n\tL4.998,13.58C3.225,12.737,1.912,11.995,1,11.111v4.398c0.176-0.024,0.359-0.042,0.558-0.042\r\n\tC4.559,15.468,4.643,18.256,4.643,18.284z M17,1h-3.738c1.748,1.178,2.467,2.842,2.467,4.142c0,2.194-1.836,2.905-2.727,2.905\r\n\tl-0.271,0.002c-2.046,0-3.09-1.247-3.104-3.707C9.506,4.246,8.939,3.889,7.28,3.889c-1.96,0-2.773,1.543-2.773,2.369\r\n\tc0,0.973,0.543,2.055,4.484,3.382c6.736,2.254,6.736,5.255,6.736,7.903v0.026c0,0.437-0.031,0.924-0.117,1.431H17c1.1,0,2-0.899,2-2\r\n\tV3C19,1.9,18.1,1,17,1z"
+ }
+ }]
+};
+exports.scribd = scribd;
\ No newline at end of file
diff --git a/dist/entypo/share.js b/dist/entypo/share.js
new file mode 100644
index 000000000..41aa44138
--- /dev/null
+++ b/dist/entypo/share.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.share = void 0;
+var share = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,13.442c-0.633,0-1.204,0.246-1.637,0.642l-5.938-3.463C7.471,10.433,7.5,10.237,7.5,10.037S7.471,9.642,7.425,9.454\r\n\tL13.3,6.025C13.746,6.442,14.342,6.7,15,6.7c1.379,0,2.5-1.121,2.5-2.5S16.379,1.7,15,1.7s-2.5,1.121-2.5,2.5\r\n\tc0,0.2,0.029,0.396,0.075,0.583L6.7,8.212C6.254,7.796,5.658,7.537,5,7.537c-1.379,0-2.5,1.121-2.5,2.5s1.121,2.5,2.5,2.5\r\n\tc0.658,0,1.254-0.258,1.7-0.675l5.938,3.463c-0.042,0.175-0.067,0.358-0.067,0.546c0,1.342,1.087,2.429,2.429,2.429\r\n\ts2.429-1.088,2.429-2.429S16.342,13.442,15,13.442z"
+ }
+ }]
+};
+exports.share = share;
\ No newline at end of file
diff --git a/dist/entypo/shareable.js b/dist/entypo/shareable.js
new file mode 100644
index 000000000..7132c1208
--- /dev/null
+++ b/dist/entypo/shareable.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shareable = void 0;
+var shareable = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.8,10c0,1.768,1.433,3.201,3.2,3.201c1.768,0,3.199-1.433,3.199-3.201c0-1.767-1.431-3.2-3.199-3.2S6.8,8.233,6.8,10z\r\n\t M4.529,8.8C5.078,6.284,7.318,4.4,10,4.4c1.546,0,2.945,0.627,3.959,1.64c0.469,0.469,1.229,0.469,1.697,0\r\n\tc0.469-0.469,0.469-1.229,0-1.697C14.209,2.896,12.209,2,10,2C6.418,2,3.386,4.354,2.367,7.601H0V10h3.199\r\n\tC4.198,10,4.444,9.187,4.529,8.8z M16.8,10c-0.999,0-1.245,0.814-1.329,1.199c-0.549,2.516-2.789,4.4-5.471,4.4\r\n\tc-1.547,0-2.946-0.627-3.959-1.641c-0.469-0.469-1.229-0.469-1.698,0c-0.468,0.469-0.468,1.229,0,1.697C5.791,17.104,7.791,18,10,18\r\n\tc3.582,0,6.613-2.356,7.633-5.6H20V10H16.8z"
+ }
+ }]
+};
+exports.shareable = shareable;
\ No newline at end of file
diff --git a/dist/entypo/shield.js b/dist/entypo/shield.js
new file mode 100644
index 000000000..8859fd01b
--- /dev/null
+++ b/dist/entypo/shield.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shield = void 0;
+var shield = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.604,3.332C12.99,4,12.075,2.833,10,1C7.925,2.833,7.01,4,2.396,3.332C-0.063,15.58,10,19,10,19\r\n\tS20.063,15.58,17.604,3.332z M12.473,13.309L10,12.009l-2.472,1.3L8,10.556L6,8.606l2.764-0.401L10,5.7l1.236,2.505L14,8.606\r\n\tl-2,1.949L12.473,13.309z"
+ }
+ }]
+};
+exports.shield = shield;
\ No newline at end of file
diff --git a/dist/entypo/shop.js b/dist/entypo/shop.js
new file mode 100644
index 000000000..b726c6d41
--- /dev/null
+++ b/dist/entypo/shop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shop = void 0;
+var shop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.123,7.25L6.914,2H2.8L1.081,6.5C1.028,6.66,1,6.826,1,7c0,1.104,1.15,2,2.571,2C4.881,9,5.964,8.236,6.123,7.25z M10,9\r\n\tc1.42,0,2.571-0.896,2.571-2c0-0.041-0.003-0.082-0.005-0.121L12.057,2H7.943l-0.51,4.875C7.431,6.916,7.429,6.957,7.429,7\r\n\tC7.429,8.104,8.58,9,10,9z M15,10.046V14H5v-3.948C4.562,10.21,4.08,10.3,3.571,10.3c-0.195,0-0.384-0.023-0.571-0.049V16.6\r\n\tc0,0.77,0.629,1.4,1.398,1.4H15.6c0.77,0,1.4-0.631,1.4-1.4v-6.348c-0.188,0.025-0.376,0.049-0.571,0.049\r\n\tC15.923,10.3,15.439,10.208,15,10.046z M18.92,6.5L17.199,2h-4.113l0.79,5.242C14.03,8.232,15.113,9,16.429,9\r\n\tC17.849,9,19,8.104,19,7C19,6.826,18.972,6.66,18.92,6.5z"
+ }
+ }]
+};
+exports.shop = shop;
\ No newline at end of file
diff --git a/dist/entypo/shuffle.js b/dist/entypo/shuffle.js
new file mode 100644
index 000000000..a9a4bda68
--- /dev/null
+++ b/dist/entypo/shuffle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shuffle = void 0;
+var shuffle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.093,6.694h0.92v2.862L20,5.532l-3.988-4.025v2.387h-0.92c-3.694,0-5.776,2.738-7.614,5.152\r\n\tc-1.652,2.172-3.08,4.049-5.386,4.049H0v2.799h2.093c3.694,0,5.776-2.736,7.614-5.152C11.359,8.569,12.787,6.694,15.093,6.694z\r\n\t M5.41,8.458c0.158-0.203,0.316-0.412,0.477-0.623C6.277,7.321,6.691,6.78,7.139,6.239C5.817,5.005,4.224,4.095,2.093,4.095H0v2.799\r\n\th2.093C3.42,6.894,4.455,7.517,5.41,8.458z M16.012,13.294h-0.92c-1.407,0-2.487-0.701-3.491-1.738\r\n\tc-0.1,0.131-0.201,0.264-0.303,0.397c-0.441,0.58-0.915,1.201-1.439,1.818c1.356,1.324,3,2.324,5.232,2.324h0.92v2.398L20,14.468\r\n\tl-3.988-4.025V13.294z"
+ }
+ }]
+};
+exports.shuffle = shuffle;
\ No newline at end of file
diff --git a/dist/entypo/signal.js b/dist/entypo/signal.js
new file mode 100644
index 000000000..7049bee51
--- /dev/null
+++ b/dist/entypo/signal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.signal = void 0;
+var signal = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,14c-1.094,0-1.981,0.894-1.981,2c0,1.104,0.887,2,1.981,2c1.094,0,1.98-0.896,1.98-2C11.98,14.895,11.094,14,10,14z\r\n\t M5.8,11.758l1.4,1.414c1.546-1.562,4.054-1.562,5.601,0l1.399-1.414C11.881,9.415,8.119,9.415,5.8,11.758z M3,8.928l1.4,1.414\r\n\tc3.092-3.123,8.106-3.123,11.199,0L17,8.928C13.135,5.024,6.865,5.024,3,8.928z M0.199,6.1l1.4,1.414\r\n\tc4.639-4.686,12.161-4.686,16.801,0L19.8,6.1C14.388,0.633,5.612,0.633,0.199,6.1z"
+ }
+ }]
+};
+exports.signal = signal;
\ No newline at end of file
diff --git a/dist/entypo/single.js b/dist/entypo/single.js
new file mode 100644
index 000000000..3e5ecbafc
--- /dev/null
+++ b/dist/entypo/single.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.single = void 0;
+var single = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.8,10c0,1.215,0.986,2.2,2.201,2.2S12.2,11.214,12.2,10c0-1.215-0.984-2.199-2.199-2.199S7.8,8.785,7.8,10z"
+ }
+ }]
+};
+exports.single = single;
\ No newline at end of file
diff --git a/dist/entypo/skype.js b/dist/entypo/skype.js
new file mode 100644
index 000000000..b20ad1ef4
--- /dev/null
+++ b/dist/entypo/skype.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skype = void 0;
+var skype = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.671,12.037c0.132-0.623,0.203-1.272,0.203-1.938c0-4.986-3.93-9.029-8.777-9.029c-0.511,0-1.012,0.047-1.5,0.133\r\n\tC7.812,0.695,6.885,0.4,5.89,0.4C3.079,0.4,0.8,2.744,0.8,5.637c0,0.965,0.256,1.871,0.699,2.648\r\n\tC1.383,8.871,1.321,9.479,1.321,10.1c0,4.986,3.93,9.029,8.775,9.029c0.551,0,1.087-0.051,1.607-0.15\r\n\tc0.717,0.396,1.535,0.621,2.406,0.621c2.811,0,5.09-2.344,5.09-5.236C19.2,13.527,19.009,12.738,18.671,12.037z M14.599,14.416\r\n\tc-0.406,0.59-1.006,1.059-1.783,1.391c-0.769,0.33-1.692,0.496-2.742,0.496c-1.26,0-2.317-0.227-3.143-0.678\r\n\tc-0.59-0.328-1.076-0.771-1.445-1.318c-0.372-0.555-0.561-1.104-0.561-1.633c0-0.33,0.123-0.617,0.365-0.852\r\n\tc0.24-0.232,0.549-0.352,0.916-0.352c0.301,0,0.562,0.094,0.773,0.277c0.202,0.176,0.375,0.438,0.514,0.773\r\n\tc0.156,0.367,0.326,0.676,0.505,0.92c0.172,0.234,0.42,0.432,0.735,0.586c0.318,0.154,0.748,0.232,1.275,0.232\r\n\tc0.725,0,1.32-0.158,1.768-0.473c0.438-0.309,0.65-0.676,0.65-1.127c0-0.357-0.111-0.637-0.34-0.857\r\n\tc-0.238-0.228-0.555-0.408-0.936-0.531c-0.399-0.127-0.941-0.266-1.611-0.41c-0.91-0.201-1.683-0.439-2.299-0.707\r\n\tc-0.63-0.275-1.137-0.658-1.508-1.137C5.357,8.533,5.165,7.924,5.165,7.209c0-0.682,0.2-1.297,0.596-1.828\r\n\tc0.393-0.525,0.965-0.935,1.703-1.217C8.192,3.887,9.06,3.746,10.04,3.746c0.783,0,1.473,0.094,2.047,0.277\r\n\tc0.578,0.186,1.066,0.436,1.449,0.744c0.387,0.311,0.674,0.643,0.854,0.986c0.182,0.35,0.275,0.695,0.275,1.031\r\n\tc0,0.322-0.121,0.615-0.361,0.871c-0.24,0.258-0.543,0.387-0.9,0.387c-0.324,0-0.58-0.082-0.756-0.242\r\n\tc-0.164-0.148-0.336-0.383-0.524-0.717c-0.219-0.428-0.484-0.766-0.788-1.002c-0.295-0.232-0.788-0.35-1.466-0.35\r\n\tc-0.629,0-1.141,0.131-1.519,0.387C7.983,6.367,7.806,6.65,7.806,6.984c0,0.207,0.058,0.379,0.176,0.525\r\n\tc0.125,0.158,0.301,0.295,0.523,0.41C8.735,8.039,8.972,8.133,9.21,8.201c0.244,0.07,0.654,0.172,1.215,0.307\r\n\tc0.711,0.156,1.363,0.332,1.939,0.521c0.585,0.193,1.09,0.43,1.502,0.705c0.42,0.283,0.754,0.645,0.989,1.076\r\n\tc0.237,0.434,0.357,0.969,0.357,1.59C15.213,13.145,15.006,13.822,14.599,14.416z"
+ }
+ }]
+};
+exports.skype = skype;
\ No newline at end of file
diff --git a/dist/entypo/slideshare.js b/dist/entypo/slideshare.js
new file mode 100644
index 000000000..d096f6f16
--- /dev/null
+++ b/dist/entypo/slideshare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.slideshare = void 0;
+var slideshare = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,7.08c1.381,0,2.5-1.119,2.5-2.5s-1.119-2.5-2.5-2.5s-2.5,1.119-2.5,2.5S11.62,7.08,13,7.08z M18.845,5.943\r\n\tC15.265,8.498,13.616,8.051,12,8c-1.118-0.057-1.5,0.298-1.5,1.08l0.001,6c0,5,8.421,3.43,5.165-4.949\r\n\tc1.671-0.959,3.076-2.434,3.876-3.412C19.953,6.111,19.514,5.474,18.845,5.943z M7,2.08c-1.381,0-2.5,1.119-2.5,2.5\r\n\ts1.119,2.5,2.5,2.5s2.5-1.119,2.5-2.5S8.38,2.08,7,2.08z M8,8C6.384,8.051,4.735,8.498,1.155,5.943\r\n\tC0.486,5.474,0.047,6.111,0.458,6.718c0.8,0.979,2.205,2.453,3.876,3.412c-3.256,8.379,5.165,9.949,5.165,4.949l0.001-6\r\n\tC9.5,8.298,9.118,7.943,8,8z"
+ }
+ }]
+};
+exports.slideshare = slideshare;
\ No newline at end of file
diff --git a/dist/entypo/slot.js b/dist/entypo/slot.js
new file mode 100644
index 000000000..d344b8941
--- /dev/null
+++ b/dist/entypo/slot.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.slot = void 0;
+var slot = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4C4.698,0.4,0.4,4.698,0.4,10C0.4,15.302,4.698,19.6,10,19.6c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M10,17.599c-4.197,0-7.6-3.402-7.6-7.6c0-4.197,3.402-7.6,7.6-7.6h0V10l6.792-3.396\r\n\tC17.305,7.627,17.6,8.777,17.6,10C17.6,14.197,14.197,17.599,10,17.599z"
+ }
+ }]
+};
+exports.slot = slot;
\ No newline at end of file
diff --git a/dist/entypo/smallDown.js b/dist/entypo/smallDown.js
new file mode 100644
index 000000000..69d42f449
--- /dev/null
+++ b/dist/entypo/smallDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.smallDown = void 0;
+var smallDown = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.418,7.859c0.271-0.268,0.709-0.268,0.978,0c0.27,0.268,0.272,0.701,0,0.969l-3.908,3.83\r\n\tc-0.27,0.268-0.707,0.268-0.979,0l-3.908-3.83c-0.27-0.267-0.27-0.701,0-0.969c0.271-0.268,0.709-0.268,0.978,0L10,11L13.418,7.859z\r\n\t"
+ }
+ }]
+};
+exports.smallDown = smallDown;
\ No newline at end of file
diff --git a/dist/entypo/smallLeft.js b/dist/entypo/smallLeft.js
new file mode 100644
index 000000000..05b9b26ce
--- /dev/null
+++ b/dist/entypo/smallLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.smallLeft = void 0;
+var smallLeft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.141,13.418c0.268,0.271,0.268,0.709,0,0.978c-0.268,0.27-0.701,0.272-0.969,0l-3.83-3.908\r\n\tc-0.268-0.27-0.268-0.707,0-0.979l3.83-3.908c0.267-0.27,0.701-0.27,0.969,0c0.268,0.271,0.268,0.709,0,0.978L9,10L12.141,13.418z"
+ }
+ }]
+};
+exports.smallLeft = smallLeft;
\ No newline at end of file
diff --git a/dist/entypo/smallRight.js b/dist/entypo/smallRight.js
new file mode 100644
index 000000000..a42ef28fd
--- /dev/null
+++ b/dist/entypo/smallRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.smallRight = void 0;
+var smallRight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11,10L7.859,6.58c-0.268-0.27-0.268-0.707,0-0.978c0.268-0.27,0.701-0.27,0.969,0l3.83,3.908\r\n\tc0.268,0.271,0.268,0.709,0,0.979l-3.83,3.908c-0.267,0.272-0.701,0.27-0.969,0c-0.268-0.269-0.268-0.707,0-0.978L11,10z"
+ }
+ }]
+};
+exports.smallRight = smallRight;
\ No newline at end of file
diff --git a/dist/entypo/smallUp.js b/dist/entypo/smallUp.js
new file mode 100644
index 000000000..d65feb264
--- /dev/null
+++ b/dist/entypo/smallUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.smallUp = void 0;
+var smallUp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.582,12.141c-0.271,0.268-0.709,0.268-0.978,0c-0.269-0.268-0.272-0.701,0-0.969l3.908-3.83\r\n\tc0.27-0.268,0.707-0.268,0.979,0l3.908,3.83c0.27,0.267,0.27,0.701,0,0.969c-0.271,0.268-0.709,0.268-0.979,0L10,9L6.582,12.141z"
+ }
+ }]
+};
+exports.smallUp = smallUp;
\ No newline at end of file
diff --git a/dist/entypo/smashing.js b/dist/entypo/smashing.js
new file mode 100644
index 000000000..b4e866781
--- /dev/null
+++ b/dist/entypo/smashing.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.smashing = void 0;
+var smashing = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.023,16.032c-2.508,0-4.253-1.555-4.253-1.555L4.287,17.84c1.023,0.547,2.092,0.936,2.709,1.141l-1.592,0.381\r\n\tc-0.746,0.178-1.496-0.283-1.675-1.029L0.639,5.405C0.46,4.659,0.92,3.909,1.667,3.729L5.383,2.84\r\n\tc-0.91,1.029-1.263,2.252-1.174,3.65c0.139,2.193,2.237,3.879,4.734,4.822C13.644,13.088,12.529,16.032,10.023,16.032z\r\n\t M19.361,14.594L16.27,1.666c-0.178-0.746-0.928-1.207-1.675-1.027l-2.663,0.637c0.679,0.105,2.024,0.4,3.505,1.178l-1.159,3.213\r\n\tc0,0-0.965-1.078-3.553-1.209c-2.46-0.125-3.828,2.537,0.969,4.105c3.674,1.201,4.848,3.516,4.787,5.658\r\n\tc-0.031,1.113-0.421,2.018-0.872,2.701l2.725-0.652C19.08,16.092,19.54,15.342,19.361,14.594z"
+ }
+ }]
+};
+exports.smashing = smashing;
\ No newline at end of file
diff --git a/dist/entypo/sound.js b/dist/entypo/sound.js
new file mode 100644
index 000000000..d57cf26e6
--- /dev/null
+++ b/dist/entypo/sound.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sound = void 0;
+var sound = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.312,4.566C4.19,5.685-0.715,12.681,3.523,16.918c4.236,4.238,11.23-0.668,12.354-1.789\r\n\tc1.121-1.119-0.335-4.395-3.252-7.312C9.706,4.898,6.434,3.441,5.312,4.566z M14.576,14.156c-0.332,0.328-2.895-0.457-5.364-2.928\r\n\tC6.745,8.759,5.956,6.195,6.288,5.865c0.328-0.332,2.894,0.457,5.36,2.926C14.119,11.258,14.906,13.824,14.576,14.156z\r\n\t M15.434,5.982l1.904-1.906c0.391-0.391,0.391-1.023,0-1.414c-0.39-0.391-1.023-0.391-1.414,0l-1.904,1.906\r\n\tc-0.391,0.391-0.391,1.024,0,1.414C14.41,6.372,15.043,6.372,15.434,5.982z M11.124,3.8c0.483,0.268,1.091,0.095,1.36-0.388\r\n\tl1.087-1.926c0.268-0.483,0.095-1.091-0.388-1.36c-0.482-0.269-1.091-0.095-1.36,0.388l-1.087,1.926\r\n\tC10.468,2.924,10.642,3.533,11.124,3.8z M19.872,6.816c-0.267-0.483-0.877-0.657-1.36-0.388l-1.94,1.061\r\n\tc-0.483,0.268-0.657,0.878-0.388,1.36c0.268,0.483,0.877,0.657,1.36,0.388l1.94-1.061C19.967,7.907,20.141,7.299,19.872,6.816z"
+ }
+ }]
+};
+exports.sound = sound;
\ No newline at end of file
diff --git a/dist/entypo/soundcloud.js b/dist/entypo/soundcloud.js
new file mode 100644
index 000000000..c49ddcb9e
--- /dev/null
+++ b/dist/entypo/soundcloud.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.soundcloud = void 0;
+var soundcloud = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.672,13.055L1,11.654l-0.328-1.447c-0.009-0.043-0.092-0.076-0.191-0.076c-0.102,0-0.184,0.033-0.191,0.076L0,11.654\r\n\tl0.289,1.4c0.008,0.045,0.09,0.076,0.191,0.076C0.58,13.131,0.663,13.1,0.672,13.055z M2.723,13.832L3,11.668L2.723,8.32\r\n\tC2.714,8.236,2.609,8.168,2.484,8.168c-0.127,0-0.233,0.068-0.238,0.152L2,11.668l0.246,2.164c0.006,0.086,0.111,0.152,0.238,0.152\r\n\tC2.609,13.984,2.714,13.918,2.723,13.832z M4.768,13.797L5,11.67L4.768,7.213C4.762,7.107,4.639,7.025,4.486,7.025\r\n\tc-0.152,0-0.275,0.082-0.281,0.188L4,11.67l0.205,2.129c0.006,0.103,0.129,0.186,0.281,0.186\r\n\tC4.639,13.984,4.762,13.902,4.768,13.797z M6.81,13.766L7,11.67L6.81,7.18C6.805,7.057,6.664,6.959,6.49,6.959\r\n\tc-0.176,0-0.316,0.098-0.321,0.221L6,11.67l0.17,2.096c0.004,0.123,0.145,0.221,0.32,0.221C6.664,13.986,6.805,13.891,6.81,13.766z\r\n\t M8.85,13.738L9,11.672L8.85,6.523C8.846,6.381,8.686,6.268,8.492,6.268c-0.194,0-0.354,0.115-0.357,0.256L8,11.67l0.135,2.068\r\n\tc0.003,0.141,0.163,0.256,0.357,0.256C8.686,13.994,8.846,13.881,8.85,13.738z M10.277,13.996c0.008,0,7.1,0.004,7.145,0.004\r\n\tC18.846,14,20,12.883,20,11.506c0-1.377-1.154-2.492-2.578-2.492c-0.353,0-0.689,0.07-0.996,0.193\r\n\tc-0.205-2.246-2.153-4.008-4.529-4.008c-0.581,0-1.148,0.111-1.648,0.297C10.053,5.57,10.002,5.644,10,5.791v7.91\r\n\tC10.002,13.854,10.124,13.98,10.277,13.996z"
+ }
+ }]
+};
+exports.soundcloud = soundcloud;
\ No newline at end of file
diff --git a/dist/entypo/spotify.js b/dist/entypo/spotify.js
new file mode 100644
index 000000000..a931eb5e2
--- /dev/null
+++ b/dist/entypo/spotify.js
@@ -0,0 +1,14 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spotify = void 0;
+var spotify = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.spotify = spotify;
\ No newline at end of file
diff --git a/dist/entypo/spreadsheet.js b/dist/entypo/spreadsheet.js
new file mode 100644
index 000000000..e8d5e720f
--- /dev/null
+++ b/dist/entypo/spreadsheet.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spreadsheet = void 0;
+var spreadsheet = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M16,1H4C3.447,1,3,1.447,3,2v16c0,0.552,0.447,1,1,1h12c0.553,0,1-0.448,1-1V2\r\n\tC17,1.448,16.553,1,16,1z M15,8H9v9H8V8H5V7h3V3h1v4h6V8z"
+ }
+ }]
+};
+exports.spreadsheet = spreadsheet;
\ No newline at end of file
diff --git a/dist/entypo/star.js b/dist/entypo/star.js
new file mode 100644
index 000000000..f81a36005
--- /dev/null
+++ b/dist/entypo/star.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.star = void 0;
+var star = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1.3l2.388,6.722H18.8l-5.232,3.948l1.871,6.928L10,14.744l-5.438,4.154l1.87-6.928L1.199,8.022h6.412L10,1.3z"
+ }
+ }]
+};
+exports.star = star;
\ No newline at end of file
diff --git a/dist/entypo/stop.js b/dist/entypo/stop.js
new file mode 100644
index 000000000..460b23b31
--- /dev/null
+++ b/dist/entypo/stop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stop = void 0;
+var stop = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,4.995v9.808C16,15.464,15.464,16,14.804,16H4.997C4.446,16,4,15.554,4,15.003V5.196C4,4.536,4.536,4,5.196,4h9.808\r\n\tC15.554,4,16,4.446,16,4.995z"
+ }
+ }]
+};
+exports.stop = stop;
\ No newline at end of file
diff --git a/dist/entypo/stopwatch.js b/dist/entypo/stopwatch.js
new file mode 100644
index 000000000..a30a56708
--- /dev/null
+++ b/dist/entypo/stopwatch.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stopwatch = void 0;
+var stopwatch = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.376,6.745c-0.447,0.275,1.197,4.242,1.598,4.888c0.35,0.569,1.093,0.742,1.658,0.394c0.568-0.352,0.745-1.094,0.395-1.66\r\n\tC10.63,9.719,7.822,6.469,7.376,6.745z M7.041,2.402C7.969,2.079,8.963,1.9,10,1.9s2.031,0.179,2.959,0.502\r\n\tc0.329,0.114,0.765-0.115,0.572-0.611c-0.141-0.36-0.277-0.712-0.332-0.855c-0.131-0.339-0.6-0.619-0.804-0.665\r\n\tC11.623,0.097,10.823,0,10,0S8.377,0.097,7.604,0.271C7.4,0.317,6.932,0.597,6.801,0.936C6.746,1.079,6.609,1.431,6.469,1.791\r\n\tC6.276,2.287,6.712,2.517,7.041,2.402z M19.098,3.186c-0.192-0.23-0.396-0.455-0.613-0.672c-0.216-0.217-0.441-0.42-0.67-0.613\r\n\tc-0.153-0.129-0.603-0.234-0.888,0.051c-0.284,0.285-1.648,1.647-1.648,1.647c0.402,0.288,0.793,0.605,1.155,0.966\r\n\tc0.362,0.361,0.677,0.752,0.966,1.155c0,0,1.363-1.362,1.647-1.647C19.333,3.787,19.228,3.338,19.098,3.186z M10,2.9\r\n\tc-4.475,0-8.101,3.626-8.101,8.1c0,4.475,3.626,8.101,8.101,8.101c4.473,0,8.1-3.626,8.1-8.101C18.1,6.527,14.473,2.9,10,2.9z\r\n\t M10,17.101c-3.368,0-6.1-2.731-6.1-6.1c0-3.369,2.731-6.1,6.1-6.1c3.369,0,6.101,2.731,6.101,6.1\r\n\tC16.101,14.369,13.369,17.101,10,17.101z"
+ }
+ }]
+};
+exports.stopwatch = stopwatch;
\ No newline at end of file
diff --git a/dist/entypo/store.js b/dist/entypo/store.js
new file mode 100644
index 000000000..af49df16a
--- /dev/null
+++ b/dist/entypo/store.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.store = void 0;
+var store = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M17.5640259,13.8623047\r\n\tc-0.4133301,0.9155273-0.6115723,1.3251343-1.1437988,2.1346436c-0.7424927,1.1303711-1.7894897,2.5380249-3.086853,2.5500488\r\n\tc-1.1524048,0.0109253-1.4483032-0.749939-3.0129395-0.741333c-1.5640259,0.008606-1.8909302,0.755127-3.0438843,0.7442017\r\n\tc-1.296814-0.0120239-2.2891235-1.2833252-3.0321655-2.4136963c-2.0770874-3.1607666-2.2941895-6.8709106-1.0131836-8.8428955\r\n\tc0.9106445-1.4013062,2.3466187-2.2217407,3.6970215-2.2217407c1.375,0,2.239502,0.7539673,3.3761597,0.7539673\r\n\tc1.1028442,0,1.7749023-0.755127,3.3641357-0.755127c1.201416,0,2.4744263,0.6542969,3.3816528,1.7846069\r\n\tC14.0778809,8.4837646,14.5608521,12.7279663,17.5640259,13.8623047z M12.4625244,3.8076782\r\n\tc0.5775146-0.741333,1.0163574-1.7880859,0.8571167-2.857666c-0.9436035,0.0653076-2.0470581,0.6651611-2.6912842,1.4477539\r\n\tC10.0437012,3.107605,9.56073,4.1605835,9.7486572,5.1849365C10.7787476,5.2164917,11.8443604,4.6011963,12.4625244,3.8076782z"
+ }
+ }]
+};
+exports.store = store;
\ No newline at end of file
diff --git a/dist/entypo/stumbleupon.js b/dist/entypo/stumbleupon.js
new file mode 100644
index 000000000..fc19dc50f
--- /dev/null
+++ b/dist/entypo/stumbleupon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stumbleupon = void 0;
+var stumbleupon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M11.051,8.059l1.365,0.66l2.059-0.66V6.865C14.475,4.402,12.467,2.4,10,2.4S5.525,4.402,5.525,6.865v6.27\r\n\tc0,0.578-0.472,1.049-1.051,1.049c-0.58,0-1.051-0.471-1.051-1.049V10.51H0v2.625C0,15.596,2.007,17.6,4.475,17.6\r\n\tc2.467,0,4.474-2.004,4.474-4.465v-6.27c0-0.578,0.472-1.049,1.052-1.049c0.579,0,1.051,0.471,1.051,1.049V8.059z M16.576,10.51\r\n\tv2.625c0,0.578-0.471,1.049-1.051,1.049c-0.58,0-1.051-0.471-1.051-1.049v-2.678l-2.059,0.658l-1.365-0.658v2.678\r\n\tc0,2.461,2.008,4.465,4.475,4.465S20,15.596,20,13.135V10.51H16.576z"
+ }
+ }]
+};
+exports.stumbleupon = stumbleupon;
\ No newline at end of file
diff --git a/dist/entypo/suitcase.js b/dist/entypo/suitcase.js
new file mode 100644
index 000000000..d4d54fe8d
--- /dev/null
+++ b/dist/entypo/suitcase.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.suitcase = void 0;
+var suitcase = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,4h-1v15h1c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M0,6l0,11c0,1.1,0.899,2,2,2h1V4H2C0.899,4,0,4.9,0,6z M13.5,1.906\r\n\tC12.819,1.59,11.611,1,9.981,1C8.348,1,7.181,1.59,6.5,1.906V4H4v15h12V4h-2.5V1.906z M12,4H8V2.664\r\n\tc0.534-0.23,1.078-0.465,1.981-0.465c0.902,0,1.486,0.234,2.019,0.465V4z"
+ }
+ }]
+};
+exports.suitcase = suitcase;
\ No newline at end of file
diff --git a/dist/entypo/swap.js b/dist/entypo/swap.js
new file mode 100644
index 000000000..5e29de32f
--- /dev/null
+++ b/dist/entypo/swap.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.swap = void 0;
+var swap = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,5H4V3L0,6.5L4,10V8h10V5z M20,13.5L16,10v2H6v3h10v2L20,13.5z"
+ }
+ }]
+};
+exports.swap = swap;
\ No newline at end of file
diff --git a/dist/entypo/swarm.js b/dist/entypo/swarm.js
new file mode 100644
index 000000000..225d5f195
--- /dev/null
+++ b/dist/entypo/swarm.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.swarm = void 0;
+var swarm = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.286,18.821c-1.429-0.232-2.733-0.607-3.677-0.923c-0.046-0.015-0.781-0.282-1.007-0.37\r\n\tc-0.278-0.107-0.423-0.431-0.317-0.71c0.086-0.225,0.379-0.949,0.399-0.994c0.4-0.92,1-2.153,1.795-3.379\r\n\tc0.029,1.203,0.297,2.399,0.791,3.506C8.75,17.028,9.439,18.007,10.286,18.821z M10.173,7.027c-2.791-5.689-8.99-5.486-9.968-2.943\r\n\tc-0.751,1.952,2.535,6.602,10.097,3.244c0.002-0.001,0.002-0.001,0.004-0.002C10.28,7.279,10.192,7.079,10.173,7.027z M11.56,6.805\r\n\tc0.001,0,0.002-0.001,0.002-0.001c4.271-1.897,3.674-5.191,2.569-5.614c-1.487-0.569-4.19,1.624-2.647,5.447\r\n\tC11.499,6.664,11.55,6.777,11.56,6.805z M19.413,10.97C18.767,9.52,17.58,8.481,16.2,7.986c-0.139-0.05-0.281-0.073-0.423-0.073\r\n\tc-0.717,0-1.407,0.595-1.472,1.338c-0.109,1.239,0.137,2.501,0.68,3.718c0.535,1.199,1.294,2.213,2.27,2.957\r\n\tc0.254,0.194,0.565,0.285,0.875,0.285c0.559,0,1.117-0.296,1.339-0.826C20.04,14.023,20.066,12.432,19.413,10.97z M16.172,17.339\r\n\tc-1.195-0.912-2.142-2.139-2.815-3.646c-0.682-1.529-0.961-3.075-0.827-4.596c0.037-0.423,0.161-0.831,0.36-1.204\r\n\tc-0.035,0.009-0.111,0.027-0.114,0.028c-0.628,0.157-1.237,0.429-1.778,0.784c-0.784,0.514-1.475,1.277-1.772,2.177\r\n\tc-0.08,0.243-0.141,0.51-0.161,0.765c-0.095,1.218,0.103,2.476,0.636,3.67c0.516,1.155,1.285,2.118,2.213,2.853\r\n\tC12.48,18.617,13.5,18.9,14.334,18.9c0.783,0,1.556-0.233,2.25-0.585c0.217-0.11,0.695-0.408,0.726-0.429\r\n\tC16.895,17.78,16.506,17.594,16.172,17.339z"
+ }
+ }]
+};
+exports.swarm = swarm;
\ No newline at end of file
diff --git a/dist/entypo/sweden.js b/dist/entypo/sweden.js
new file mode 100644
index 000000000..eb73da09c
--- /dev/null
+++ b/dist/entypo/sweden.js
@@ -0,0 +1,14 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sweden = void 0;
+var sweden = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.sweden = sweden;
\ No newline at end of file
diff --git a/dist/entypo/switchIcon.js b/dist/entypo/switchIcon.js
new file mode 100644
index 000000000..74915e357
--- /dev/null
+++ b/dist/entypo/switchIcon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.switchIcon = void 0;
+var switchIcon = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,3H7c-3.866,0-7,3.134-7,7c0,3.866,3.134,7,7,7h6c3.866,0,7-3.134,7-7C20,6.134,16.866,3,13,3z M13,15\r\n\tc-2.761,0-5-2.239-5-5s2.239-5,5-5s5,2.239,5,5S15.761,15,13,15z"
+ }
+ }]
+};
+exports.switchIcon = switchIcon;
\ No newline at end of file
diff --git a/dist/entypo/tablet.js b/dist/entypo/tablet.js
new file mode 100644
index 000000000..21b8273db
--- /dev/null
+++ b/dist/entypo/tablet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tablet = void 0;
+var tablet = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,0H4C2.9,0,2,0.899,2,2v16c0,1.1,0.9,2,2,2h12c1.101,0,2-0.9,2-2V2C18,0.899,17.101,0,16,0z M10,19\r\n\tc-0.69,0-1.25-0.447-1.25-1s0.56-1,1.25-1c0.689,0,1.25,0.447,1.25,1S10.689,19,10,19z M16,16H4V2h12V16z"
+ }
+ }]
+};
+exports.tablet = tablet;
\ No newline at end of file
diff --git a/dist/entypo/tag.js b/dist/entypo/tag.js
new file mode 100644
index 000000000..b84cbc2b2
--- /dev/null
+++ b/dist/entypo/tag.js
@@ -0,0 +1,14 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tag = void 0;
+var tag = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.tag = tag;
\ No newline at end of file
diff --git a/dist/entypo/takeOff.js b/dist/entypo/takeOff.js
new file mode 100644
index 000000000..1a35ad2e3
--- /dev/null
+++ b/dist/entypo/takeOff.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.takeOff = void 0;
+var takeOff = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.87,6.453c0.119,0.257,0.127,1.29-4.884,3.642l-4.913,2.306c-1.71,0.803-4.191,1.859-5.285,2.151\r\n\tc-0.766,0.204-1.497-0.316-1.497-0.316s-2.206-1.975-2.792-2.419c-0.585-0.444-0.535-0.67,0.215-0.91\r\n\tc0.467-0.149,3.13,0.493,4.265,0.78c1.339-0.8,2.562-1.486,3.141-1.798c-1.396-1.033-4.008-2.962-4.841-3.55\r\n\tc-0.799-0.565,0.01-0.768,0.01-0.768c0.368-0.099,1.162-0.228,1.562-0.144c2.721,0.569,7.263,2.071,7.611,2.186\r\n\tc0.832-0.436,2.128-1.092,2.922-1.465C17.459,5.174,19.711,6.111,19.87,6.453z"
+ }
+ }]
+};
+exports.takeOff = takeOff;
\ No newline at end of file
diff --git a/dist/entypo/text.js b/dist/entypo/text.js
new file mode 100644
index 000000000..e15198e45
--- /dev/null
+++ b/dist/entypo/text.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.text = void 0;
+var text = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M15.5,11h-11C4.225,11,4,11.225,4,11.5v1C4,12.776,4.225,13,4.5,13h11\r\n\tc0.276,0,0.5-0.224,0.5-0.5v-1C16,11.225,15.776,11,15.5,11z M15.5,7h-11C4.225,7,4,7.225,4,7.5v1C4,8.776,4.225,9,4.5,9h11\r\n\tC15.776,9,16,8.776,16,8.5v-1C16,7.225,15.776,7,15.5,7z M10.5,15h-6C4.225,15,4,15.225,4,15.5v1C4,16.776,4.225,17,4.5,17h6\r\n\tc0.276,0,0.5-0.224,0.5-0.5v-1C11,15.225,10.776,15,10.5,15z M15.5,3h-11C4.225,3,4,3.225,4,3.5v1C4,4.776,4.225,5,4.5,5h11\r\n\tC15.776,5,16,4.776,16,4.5v-1C16,3.225,15.776,3,15.5,3z"
+ }
+ }]
+};
+exports.text = text;
\ No newline at end of file
diff --git a/dist/entypo/thermometer.js b/dist/entypo/thermometer.js
new file mode 100644
index 000000000..dc4b4b48e
--- /dev/null
+++ b/dist/entypo/thermometer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometer = void 0;
+var thermometer = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,10.123V1c0-0.553-0.447-1-1-1H7.799C7.247,0,7,0.447,7,1v9.123c-1.444,0.969-2.4,2.608-2.4,4.477\r\n\tc0,2.982,2.418,5.4,5.4,5.4c2.982,0,5.4-2.418,5.4-5.4C15.4,12.731,14.444,11.092,13,10.123z M10,17.9c-1.823,0-3.3-1.477-3.3-3.3\r\n\tc0-1.472,0.97-2.703,2.3-3.129V4h2v7.471c1.33,0.426,2.3,1.657,2.3,3.129C13.3,16.422,11.823,17.9,10,17.9z"
+ }
+ }]
+};
+exports.thermometer = thermometer;
\ No newline at end of file
diff --git a/dist/entypo/thinDown.js b/dist/entypo/thinDown.js
new file mode 100644
index 000000000..a4d85b0ed
--- /dev/null
+++ b/dist/entypo/thinDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thinDown = void 0;
+var thinDown = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.418,6.109c0.272-0.268,0.709-0.268,0.979,0c0.27,0.268,0.271,0.701,0,0.969l-7.908,7.83\r\n\tc-0.27,0.268-0.707,0.268-0.979,0l-7.908-7.83c-0.27-0.268-0.27-0.701,0-0.969c0.271-0.268,0.709-0.268,0.979,0L10,13.25\r\n\tL17.418,6.109z"
+ }
+ }]
+};
+exports.thinDown = thinDown;
\ No newline at end of file
diff --git a/dist/entypo/thinLeft.js b/dist/entypo/thinLeft.js
new file mode 100644
index 000000000..d9a167c33
--- /dev/null
+++ b/dist/entypo/thinLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thinLeft = void 0;
+var thinLeft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.891,17.418c0.268,0.272,0.268,0.709,0,0.979c-0.268,0.27-0.701,0.271-0.969,0l-7.83-7.908\r\n\tc-0.268-0.27-0.268-0.707,0-0.979l7.83-7.908c0.268-0.27,0.701-0.27,0.969,0c0.268,0.271,0.268,0.709,0,0.979L6.75,10L13.891,17.418\r\n\tz"
+ }
+ }]
+};
+exports.thinLeft = thinLeft;
\ No newline at end of file
diff --git a/dist/entypo/thinRight.js b/dist/entypo/thinRight.js
new file mode 100644
index 000000000..6efec0d12
--- /dev/null
+++ b/dist/entypo/thinRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thinRight = void 0;
+var thinRight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.25,10L6.109,2.58c-0.268-0.27-0.268-0.707,0-0.979c0.268-0.27,0.701-0.27,0.969,0l7.83,7.908\r\n\tc0.268,0.271,0.268,0.709,0,0.979l-7.83,7.908c-0.268,0.271-0.701,0.27-0.969,0c-0.268-0.269-0.268-0.707,0-0.979L13.25,10z"
+ }
+ }]
+};
+exports.thinRight = thinRight;
\ No newline at end of file
diff --git a/dist/entypo/thinUp.js b/dist/entypo/thinUp.js
new file mode 100644
index 000000000..9c97eab4e
--- /dev/null
+++ b/dist/entypo/thinUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thinUp = void 0;
+var thinUp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.582,13.891c-0.272,0.268-0.709,0.268-0.979,0s-0.271-0.701,0-0.969l7.908-7.83c0.27-0.268,0.707-0.268,0.979,0\r\n\tl7.908,7.83c0.27,0.268,0.27,0.701,0,0.969c-0.271,0.268-0.709,0.268-0.978,0L10,6.75L2.582,13.891z"
+ }
+ }]
+};
+exports.thinUp = thinUp;
\ No newline at end of file
diff --git a/dist/entypo/threeHorizontal.js b/dist/entypo/threeHorizontal.js
new file mode 100644
index 000000000..7abd16ff0
--- /dev/null
+++ b/dist/entypo/threeHorizontal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.threeHorizontal = void 0;
+var threeHorizontal = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.001,7.8C8.786,7.8,7.8,8.785,7.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,7.8,10.001,7.8z\r\n\t M3.001,7.8C1.786,7.8,0.8,8.785,0.8,10s0.986,2.2,2.201,2.2C4.216,12.2,5.2,11.214,5.2,10S4.216,7.8,3.001,7.8z M17.001,7.8\r\n\tC15.786,7.8,14.8,8.785,14.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S18.216,7.8,17.001,7.8z"
+ }
+ }]
+};
+exports.threeHorizontal = threeHorizontal;
\ No newline at end of file
diff --git a/dist/entypo/threeVertical.js b/dist/entypo/threeVertical.js
new file mode 100644
index 000000000..4a631d709
--- /dev/null
+++ b/dist/entypo/threeVertical.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.threeVertical = void 0;
+var threeVertical = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.001,7.8C8.786,7.8,7.8,8.785,7.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,7.8,10.001,7.8z\r\n\t M10.001,5.2C11.216,5.2,12.2,4.214,12.2,3S11.216,0.8,10.001,0.8C8.786,0.8,7.8,1.785,7.8,3S8.786,5.2,10.001,5.2z M10.001,14.8\r\n\tC8.786,14.8,7.8,15.785,7.8,17s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,14.8,10.001,14.8z"
+ }
+ }]
+};
+exports.threeVertical = threeVertical;
\ No newline at end of file
diff --git a/dist/entypo/ticket.js b/dist/entypo/ticket.js
new file mode 100644
index 000000000..34d80a25c
--- /dev/null
+++ b/dist/entypo/ticket.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ticket = void 0;
+var ticket = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.906,11.541l3.551,3.553l6.518-6.518l-3.553-3.551L4.906,11.541z M19.104,6.664l-1.511-1.512\r\n\tc-0.289,0.156-0.618,0.246-0.969,0.246c-1.118,0-2.024-0.906-2.024-2.023c0-0.352,0.089-0.682,0.246-0.969l-1.511-1.512\r\n\tc-0.394-0.393-1.038-0.393-1.432,0l-11.01,11.01c-0.393,0.392-0.393,1.037,0,1.432l1.512,1.51C2.694,14.69,3.023,14.6,3.375,14.6\r\n\tc1.117,0,2.023,0.906,2.023,2.025c0,0.35-0.089,0.68-0.246,0.969l1.512,1.51c0.394,0.394,1.037,0.394,1.432,0L19.104,8.096\r\n\tC19.498,7.701,19.498,7.057,19.104,6.664z M8.457,16.719l-5.176-5.178l8.142-8.141l5.176,5.176L8.457,16.719z"
+ }
+ }]
+};
+exports.ticket = ticket;
\ No newline at end of file
diff --git a/dist/entypo/toCloud.js b/dist/entypo/toCloud.js
new file mode 100644
index 000000000..aafd25fc5
--- /dev/null
+++ b/dist/entypo/toCloud.js
@@ -0,0 +1,14 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toCloud = void 0;
+var toCloud = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.toCloud = toCloud;
\ No newline at end of file
diff --git a/dist/entypo/toList.js b/dist/entypo/toList.js
new file mode 100644
index 000000000..8d056c9fc
--- /dev/null
+++ b/dist/entypo/toList.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toList = void 0;
+var toList = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.4,9H16V5.6C16,5,15.6,5,15,5s-1,0-1,0.6V9h-3.4C10,9,10,9.4,10,10s0,1,0.6,1H14v3.4c0,0.6,0.4,0.6,1,0.6s1,0,1-0.6V11\r\n\th3.4c0.6,0,0.6-0.4,0.6-1S20,9,19.4,9z M7.4,9H0.6C0,9,0,9.4,0,10s0,1,0.6,1h6.8C8,11,8,10.6,8,10S8,9,7.4,9z M7.4,14H0.6\r\n\tC0,14,0,14.4,0,15s0,1,0.6,1h6.8C8,16,8,15.6,8,15S8,14,7.4,14z M7.4,4H0.6C0,4,0,4.4,0,5s0,1,0.6,1h6.8C8,6,8,5.6,8,5S8,4,7.4,4z"
+ }
+ }]
+};
+exports.toList = toList;
\ No newline at end of file
diff --git a/dist/entypo/tools.js b/dist/entypo/tools.js
new file mode 100644
index 000000000..521c2403d
--- /dev/null
+++ b/dist/entypo/tools.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tools = void 0;
+var tools = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.135,6.89c0.933-0.725,1.707-0.225,2.74,0.971c0.116,0.135,0.272-0.023,0.361-0.1c0.088-0.078,1.451-1.305,1.518-1.361\r\n\tC7.82,6.341,7.9,6.231,7.795,6.108C7.688,5.985,7.301,5.483,7.052,5.157c-1.808-2.365,4.946-3.969,3.909-3.994\r\n\tc-0.528-0.014-2.646-0.039-2.963-0.004C6.715,1.294,5.104,2.493,4.293,3.052C3.232,3.778,2.836,4.204,2.771,4.263\r\n\tc-0.3,0.262-0.048,0.867-0.592,1.344C1.604,6.11,1.245,5.729,0.912,6.021C0.747,6.167,0.285,6.513,0.153,6.628\r\n\tC0.02,6.745-0.004,6.942,0.132,7.099c0,0,1.264,1.396,1.37,1.52C1.607,8.741,1.893,8.847,2.069,8.69\r\n\tc0.177-0.156,0.632-0.553,0.708-0.623C2.855,8.001,2.727,7.206,3.135,6.89z M8.843,7.407c-0.12-0.139-0.269-0.143-0.397-0.029\r\n\tL7.012,8.63c-0.113,0.1-0.129,0.283-0.027,0.4l8.294,9.439c0.194,0.223,0.53,0.246,0.751,0.053L17,17.709\r\n\tc0.222-0.195,0.245-0.533,0.052-0.758L8.843,7.407z M19.902,3.39c-0.074-0.494-0.33-0.391-0.463-0.182\r\n\tc-0.133,0.211-0.721,1.102-0.963,1.506c-0.24,0.4-0.832,1.191-1.934,0.41c-1.148-0.811-0.749-1.377-0.549-1.758\r\n\tc0.201-0.383,0.818-1.457,0.907-1.59c0.089-0.135-0.015-0.527-0.371-0.363c-0.357,0.164-2.523,1.025-2.823,2.26\r\n\tc-0.307,1.256,0.257,2.379-0.85,3.494l-1.343,1.4l1.349,1.566l1.654-1.57c0.394-0.396,1.236-0.781,1.998-0.607\r\n\tc1.633,0.369,2.524-0.244,3.061-1.258C20.057,5.792,19.977,3.884,19.902,3.39z M2.739,17.053c-0.208,0.209-0.208,0.549,0,0.758\r\n\tl0.951,0.93c0.208,0.209,0.538,0.121,0.746-0.088l4.907-4.824L7.84,12.115L2.739,17.053z"
+ }
+ }]
+};
+exports.tools = tools;
\ No newline at end of file
diff --git a/dist/entypo/top.js b/dist/entypo/top.js
new file mode 100644
index 000000000..46d1f07a5
--- /dev/null
+++ b/dist/entypo/top.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.top = void 0;
+var top = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,6L7,9h2v8h2V9h2L10,6z M18,4c0-0.553-0.048-1-0.6-1H2.6C2.048,3,2,3.447,2,4c0,0.553,0.048,1,0.6,1H17.4\r\n\tC17.952,5,18,4.553,18,4z"
+ }
+ }]
+};
+exports.top = top;
\ No newline at end of file
diff --git a/dist/entypo/trash.js b/dist/entypo/trash.js
new file mode 100644
index 000000000..296ec07b7
--- /dev/null
+++ b/dist/entypo/trash.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trash = void 0;
+var trash = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.389,7.113L4.49,18.021C4.551,18.482,6.777,19.998,10,20c3.225-0.002,5.451-1.518,5.511-1.979l1.102-10.908\r\n\tC14.929,8.055,12.412,8.5,10,8.5C7.59,8.5,5.072,8.055,3.389,7.113z M13.168,1.51l-0.859-0.951C11.977,0.086,11.617,0,10.916,0\r\n\tH9.085c-0.7,0-1.061,0.086-1.392,0.559L6.834,1.51C4.264,1.959,2.4,3.15,2.4,4.029v0.17C2.4,5.746,5.803,7,10,7\r\n\tc4.198,0,7.601-1.254,7.601-2.801v-0.17C17.601,3.15,15.738,1.959,13.168,1.51z M12.07,4.34L11,3H9L7.932,4.34h-1.7\r\n\tc0,0,1.862-2.221,2.111-2.522C8.533,1.588,8.727,1.5,8.979,1.5h2.043c0.253,0,0.447,0.088,0.637,0.318\r\n\tc0.248,0.301,2.111,2.522,2.111,2.522H12.07z"
+ }
+ }]
+};
+exports.trash = trash;
\ No newline at end of file
diff --git a/dist/entypo/tree.js b/dist/entypo/tree.js
new file mode 100644
index 000000000..478f2b033
--- /dev/null
+++ b/dist/entypo/tree.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tree = void 0;
+var tree = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,14.824V12.5c0-1.933-1.567-3.5-3.5-3.5h-2C11.672,9,11,8.328,11,7.5V5.176c0.825-0.38,1.4-1.208,1.4-2.176\r\n\tc0-1.326-1.074-2.4-2.4-2.4S7.6,1.674,7.6,3c0,0.967,0.576,1.796,1.4,2.176V7.5C9,8.328,8.328,9,7.5,9h-2C3.567,9,2,10.567,2,12.5\r\n\tv2.324C1.175,15.204,0.6,16.033,0.6,17c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V12.5\r\n\tC4,11.672,4.672,11,5.5,11h2c0.539,0,1.044-0.132,1.5-0.35v4.174C8.175,15.204,7.6,16.033,7.6,17c0,1.326,1.074,2.4,2.4,2.4\r\n\ts2.4-1.075,2.4-2.4c0-0.967-0.576-1.796-1.4-2.176V10.65c0.456,0.218,0.961,0.35,1.5,0.35h2c0.828,0,1.5,0.672,1.5,1.5v2.324\r\n\tc-0.825,0.38-1.4,1.208-1.4,2.176c0,1.326,1.074,2.4,2.4,2.4s2.4-1.075,2.4-2.4C19.4,16.033,18.825,15.204,18,14.824z M10,1.615\r\n\tc0.764,0,1.384,0.619,1.384,1.385c0,0.764-0.62,1.385-1.384,1.385C9.235,4.385,8.616,3.764,8.616,3\r\n\tC8.616,2.234,9.235,1.615,10,1.615z M3,18.385c-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385\r\n\tc0.764,0,1.384,0.619,1.384,1.385C4.384,17.764,3.764,18.385,3,18.385z M10,18.385c-0.766,0-1.385-0.621-1.385-1.385\r\n\tc0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385C11.384,17.764,10.764,18.385,10,18.385z M17,18.385\r\n\tc-0.766,0-1.385-0.621-1.385-1.385c0-0.766,0.619-1.385,1.385-1.385c0.764,0,1.384,0.619,1.384,1.385\r\n\tC18.384,17.764,17.764,18.385,17,18.385z"
+ }
+ }]
+};
+exports.tree = tree;
\ No newline at end of file
diff --git a/dist/entypo/tripadvisor.js b/dist/entypo/tripadvisor.js
new file mode 100644
index 000000000..6b0092ca9
--- /dev/null
+++ b/dist/entypo/tripadvisor.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tripadvisor = void 0;
+var tripadvisor = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20,6.0090332h-2.8286133C15.2119141,4.6748047,12.8125,4,10,4S4.7880859,4.6748047,2.8286133,6.0090332H0\r\n\tC0.4279785,6.4293823,0.8271484,7.348877,0.9931641,8.0480957C0.3771973,8.8793335,0,9.8972778,0,11.0090332\r\n\tc0,2.7568359,2.2431641,5,5,5c1.3266602,0,2.5268555-0.5282593,3.4228516-1.3746338L10,17l1.5771484-2.3656006\r\n\tC12.4731445,15.4807739,13.6733398,16.0090332,15,16.0090332c2.7568359,0,5-2.2431641,5-5\r\n\tc0-1.1117554-0.3771973-2.1296997-0.9931641-2.9609375C19.1728516,7.348877,19.5720215,6.4293823,20,6.0090332z M5,14.4090576\r\n\tc-1.8745117,0-3.3999023-1.5254517-3.3999023-3.4000244S3.1254883,7.6090088,5,7.6090088s3.3999023,1.5254517,3.3999023,3.4000244\r\n\tS6.8745117,14.4090576,5,14.4090576z M10,11.0090332c0-2.4172974-1.7250977-4.4382935-4.0085449-4.8997803\r\n\tC7.1948242,5.7042847,8.5290527,5.5,10,5.5s2.8051758,0.2042847,4.0085449,0.6092529\r\n\tC11.7250977,6.5707397,10,8.5917358,10,11.0090332z M15,14.4090576c-1.8745117,0-3.3999023-1.5254517-3.3999023-3.4000244\r\n\tS13.1254883,7.6090088,15,7.6090088s3.3999023,1.5254517,3.3999023,3.4000244S16.8745117,14.4090576,15,14.4090576z M5,8.8590088\r\n\tc-1.1850586,0-2.1499023,0.9644775-2.1499023,2.1500244S3.8149414,13.1590576,5,13.1590576s2.1499023-0.9644775,2.1499023-2.1500244\r\n\tS6.1850586,8.8590088,5,8.8590088z M5,11.6500244c-0.3588867,0-0.6499023-0.2910156-0.6499023-0.6500244\r\n\tS4.6411133,10.3499756,5,10.3499756S5.6499023,10.6409912,5.6499023,11S5.3588867,11.6500244,5,11.6500244z M15,8.8590088\r\n\tc-1.1850586,0-2.1499023,0.9644775-2.1499023,2.1500244S13.8149414,13.1590576,15,13.1590576\r\n\ts2.1499023-0.9644775,2.1499023-2.1500244S16.1850586,8.8590088,15,8.8590088z M15,11.6500244\r\n\tc-0.3588867,0-0.6499023-0.2910156-0.6499023-0.6500244S14.6411133,10.3499756,15,10.3499756S15.6499023,10.6409912,15.6499023,11\r\n\tS15.3588867,11.6500244,15,11.6500244z"
+ }
+ }]
+};
+exports.tripadvisor = tripadvisor;
\ No newline at end of file
diff --git a/dist/entypo/trophy.js b/dist/entypo/trophy.js
new file mode 100644
index 000000000..5a6f5801d
--- /dev/null
+++ b/dist/entypo/trophy.js
@@ -0,0 +1,14 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trophy = void 0;
+var trophy = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "g",
+ "attribs": {}
+ }]
+};
+exports.trophy = trophy;
\ No newline at end of file
diff --git a/dist/entypo/tumblr.js b/dist/entypo/tumblr.js
new file mode 100644
index 000000000..0bc5ab5c1
--- /dev/null
+++ b/dist/entypo/tumblr.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tumblr = void 0;
+var tumblr = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.6,18.196c-0.777,0.371-1.48,0.631-2.109,0.781c-0.63,0.148-1.311,0.223-2.043,0.223c-0.831,0-1.566-0.107-2.205-0.318\r\n\tc-0.639-0.213-1.183-0.516-1.635-0.908c-0.451-0.395-0.764-0.812-0.938-1.254c-0.174-0.443-0.261-1.086-0.261-1.926V8.339H4.4V5.735\r\n\tc0.714-0.234,1.326-0.57,1.835-1.01c0.51-0.438,0.918-0.965,1.227-1.58C7.77,2.532,7.981,1.749,8.098,0.8h2.585v4.652h4.314v2.887\r\n\th-4.314v4.719c0,1.066,0.056,1.752,0.168,2.055c0.111,0.303,0.319,0.545,0.622,0.725c0.403,0.244,0.863,0.367,1.381,0.367\r\n\tc0.92,0,1.836-0.303,2.746-0.908V18.196z"
+ }
+ }]
+};
+exports.tumblr = tumblr;
\ No newline at end of file
diff --git a/dist/entypo/tv.js b/dist/entypo/tv.js
new file mode 100644
index 000000000..6120b1a43
--- /dev/null
+++ b/dist/entypo/tv.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tv = void 0;
+var tv = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,1H2C0.899,1,0,1.9,0,3v11c0,1.1,0.882,2.178,1.961,2.393l4.372,0.875C6.333,17.268,2.57,19,5,19h10\r\n\tc2.43,0-1.334-1.732-1.334-1.732l4.373-0.875C19.117,16.178,20,15.1,20,14V3C20,1.9,19.1,1,18,1z M18,14H2V3h16V14z"
+ }
+ }]
+};
+exports.tv = tv;
\ No newline at end of file
diff --git a/dist/entypo/twitter.js b/dist/entypo/twitter.js
new file mode 100644
index 000000000..6c684f47e
--- /dev/null
+++ b/dist/entypo/twitter.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twitter = void 0;
+var twitter = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.316,6.246c0.008,0.162,0.011,0.326,0.011,0.488c0,4.99-3.797,10.742-10.74,10.742c-2.133,0-4.116-0.625-5.787-1.697\r\n\tc0.296,0.035,0.596,0.053,0.9,0.053c1.77,0,3.397-0.604,4.688-1.615c-1.651-0.031-3.046-1.121-3.526-2.621\r\n\tc0.23,0.043,0.467,0.066,0.71,0.066c0.345,0,0.679-0.045,0.995-0.131c-1.727-0.348-3.028-1.873-3.028-3.703c0-0.016,0-0.031,0-0.047\r\n\tc0.509,0.283,1.092,0.453,1.71,0.473c-1.013-0.678-1.68-1.832-1.68-3.143c0-0.691,0.186-1.34,0.512-1.898\r\n\tC3.942,5.498,6.725,7,9.862,7.158C9.798,6.881,9.765,6.594,9.765,6.297c0-2.084,1.689-3.773,3.774-3.773\r\n\tc1.086,0,2.067,0.457,2.756,1.191c0.859-0.17,1.667-0.484,2.397-0.916c-0.282,0.881-0.881,1.621-1.66,2.088\r\n\tc0.764-0.092,1.49-0.293,2.168-0.594C18.694,5.051,18.054,5.715,17.316,6.246z"
+ }
+ }]
+};
+exports.twitter = twitter;
\ No newline at end of file
diff --git a/dist/entypo/two.js b/dist/entypo/two.js
new file mode 100644
index 000000000..bea3af419
--- /dev/null
+++ b/dist/entypo/two.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.two = void 0;
+var two = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,5H2C0.9,5,0,5.9,0,7v6c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C20,5.9,19.1,5,18,5z M18,13H2V7h16V13z M7,8H3v4h4V8z\r\n\t M12,8H8v4h4V8z"
+ }
+ }]
+};
+exports.two = two;
\ No newline at end of file
diff --git a/dist/entypo/twoHorizontal.js b/dist/entypo/twoHorizontal.js
new file mode 100644
index 000000000..488c71ef0
--- /dev/null
+++ b/dist/entypo/twoHorizontal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twoHorizontal = void 0;
+var twoHorizontal = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.001,7.8C12.786,7.8,11.8,8.785,11.8,10s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S15.216,7.8,14.001,7.8z\r\n\t M6.001,7.8C4.786,7.8,3.8,8.785,3.8,10s0.986,2.2,2.201,2.2C7.216,12.2,8.2,11.214,8.2,10S7.216,7.8,6.001,7.8z"
+ }
+ }]
+};
+exports.twoHorizontal = twoHorizontal;
\ No newline at end of file
diff --git a/dist/entypo/twoVertical.js b/dist/entypo/twoVertical.js
new file mode 100644
index 000000000..2a21ebb3a
--- /dev/null
+++ b/dist/entypo/twoVertical.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twoVertical = void 0;
+var twoVertical = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.001,8.2C11.216,8.2,12.2,7.214,12.2,6S11.216,3.8,10.001,3.8C8.786,3.8,7.8,4.785,7.8,6S8.786,8.2,10.001,8.2z\r\n\t M10.001,11.8C8.786,11.8,7.8,12.785,7.8,14s0.986,2.2,2.201,2.2c1.215,0,2.199-0.985,2.199-2.2S11.216,11.8,10.001,11.8z"
+ }
+ }]
+};
+exports.twoVertical = twoVertical;
\ No newline at end of file
diff --git a/dist/entypo/typing.js b/dist/entypo/typing.js
new file mode 100644
index 000000000..b23cd43dd
--- /dev/null
+++ b/dist/entypo/typing.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.typing = void 0;
+var typing = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,4H4C2.899,4,2,4.9,2,6v7c0,1.1,0.899,2,2,2h4l4,3v-3h4c1.1,0,2-0.9,2-2V6C18,4.9,17.1,4,16,4z M6,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C7.1,10.107,6.607,10.6,6,10.6z M10,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C11.1,10.107,10.607,10.6,10,10.6z M14,10.6\r\n\tc-0.607,0-1.1-0.492-1.1-1.1c0-0.608,0.492-1.1,1.1-1.1s1.1,0.492,1.1,1.1C15.1,10.107,14.607,10.6,14,10.6z"
+ }
+ }]
+};
+exports.typing = typing;
\ No newline at end of file
diff --git a/dist/entypo/uninstall.js b/dist/entypo/uninstall.js
new file mode 100644
index 000000000..17ccbc64b
--- /dev/null
+++ b/dist/entypo/uninstall.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.uninstall = void 0;
+var uninstall = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.059,10.898l-3.171-7.927C15.654,2.384,15.086,2,14.454,2H5.546C4.914,2,4.346,2.384,4.112,2.971l-3.171,7.927\r\n\tc-0.288,0.721-0.373,1.507-0.246,2.272l0.59,3.539C1.409,17.454,2.053,18,2.808,18h14.383c0.755,0,1.399-0.546,1.523-1.291\r\n\tl0.59-3.539C19.433,12.405,19.348,11.619,19.059,10.898z M5.52,4.786l1.639-1.132l2.868,2.011l2.868-2.011l1.639,1.132l-2.869,2.033\r\n\tl2.928,2.06l-1.639,1.171l-2.927-2.076L7.1,10.05L5.461,8.879l2.928-2.06L5.52,4.786z M16.959,15.245\r\n\tC16.887,15.681,16.51,16,16.068,16H3.932c-0.442,0-0.819-0.319-0.891-0.755l-0.365-2.193C2.583,12.501,3.008,12,3.567,12h12.867\r\n\tc0.558,0,0.983,0.501,0.891,1.052L16.959,15.245z"
+ }
+ }]
+};
+exports.uninstall = uninstall;
\ No newline at end of file
diff --git a/dist/entypo/unread.js b/dist/entypo/unread.js
new file mode 100644
index 000000000..70d9e081b
--- /dev/null
+++ b/dist/entypo/unread.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.unread = void 0;
+var unread = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M17,3c-1.104,0-2,0.895-2,2c0,1.105,0.896,2,2,2s2-0.895,2-2\r\n\tC19,3.895,18.104,3,17,3z M12.5,4h-11C1.224,4,1,4.224,1,4.5v1C1,5.776,1.224,6,1.5,6h11C12.776,6,13,5.776,13,5.5v-1\r\n\tC13,4.224,12.776,4,12.5,4z M12.5,9h-11C1.224,9,1,9.224,1,9.5v1C1,10.776,1.224,11,1.5,11h11c0.276,0,0.5-0.224,0.5-0.5v-1\r\n\tC13,9.224,12.776,9,12.5,9z M12.5,14h-11C1.224,14,1,14.224,1,14.5v1C1,15.776,1.224,16,1.5,16h11c0.276,0,0.5-0.224,0.5-0.5v-1\r\n\tC13,14.224,12.776,14,12.5,14z"
+ }
+ }]
+};
+exports.unread = unread;
\ No newline at end of file
diff --git a/dist/entypo/untag.js b/dist/entypo/untag.js
new file mode 100644
index 000000000..d0d6b844f
--- /dev/null
+++ b/dist/entypo/untag.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.untag = void 0;
+var untag = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1,14.742l4.945-0.709L5.239,19l5.962-5.985L7.132,8.586L1,14.742z M18.664,5.521c0.391-0.393,0.5-0.945,0-1.419\r\n\tl-2.826-2.839c-0.279-0.308-1.021-0.392-1.412,0l-3.766,3.78l4.068,4.429L18.664,5.521z M18.706,15.293l-14.001-14\r\n\tc-0.391-0.391-1.023-0.391-1.414,0c-0.391,0.391-0.391,1.023,0,1.414l14.001,14C17.488,16.903,17.744,17,17.999,17\r\n\tc0.256,0,0.512-0.098,0.707-0.293C19.097,16.317,19.097,15.684,18.706,15.293z"
+ }
+ }]
+};
+exports.untag = untag;
\ No newline at end of file
diff --git a/dist/entypo/up.js b/dist/entypo/up.js
new file mode 100644
index 000000000..7b5c05f22
--- /dev/null
+++ b/dist/entypo/up.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.up = void 0;
+var up = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2.5L16.5,9H13v8H7V9H3.5L10,2.5z"
+ }
+ }]
+};
+exports.up = up;
\ No newline at end of file
diff --git a/dist/entypo/upload.js b/dist/entypo/upload.js
new file mode 100644
index 000000000..bd93d712d
--- /dev/null
+++ b/dist/entypo/upload.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.upload = void 0;
+var upload = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8,12h4V6h3l-5-5L5,6h3V12z M19.338,13.532c-0.21-0.224-1.611-1.723-2.011-2.114C17.062,11.159,16.683,11,16.285,11h-1.757\r\n\tl3.064,2.994h-3.544c-0.102,0-0.194,0.052-0.24,0.133L12.992,16H7.008l-0.816-1.873c-0.046-0.081-0.139-0.133-0.24-0.133H2.408\r\n\tL5.471,11H3.715c-0.397,0-0.776,0.159-1.042,0.418c-0.4,0.392-1.801,1.891-2.011,2.114c-0.489,0.521-0.758,0.936-0.63,1.449\r\n\tl0.561,3.074c0.128,0.514,0.691,0.936,1.252,0.936h16.312c0.561,0,1.124-0.422,1.252-0.936l0.561-3.074\r\n\tC20.096,14.468,19.828,14.053,19.338,13.532z"
+ }
+ }]
+};
+exports.upload = upload;
\ No newline at end of file
diff --git a/dist/entypo/user.js b/dist/entypo/user.js
new file mode 100644
index 000000000..a32f5c3aa
--- /dev/null
+++ b/dist/entypo/user.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user = void 0;
+var user = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.989,19.129C16,17,13.803,15.74,11.672,14.822c-2.123-0.914-2.801-1.684-2.801-3.334c0-0.989,0.648-0.667,0.932-2.481\r\n\tc0.12-0.752,0.692-0.012,0.802-1.729c0-0.684-0.313-0.854-0.313-0.854s0.159-1.013,0.221-1.793c0.064-0.817-0.398-2.56-2.301-3.095\r\n\tC7.88,1.195,7.655,0.654,8.679,0.112c-2.24-0.104-2.761,1.068-3.954,1.93c-1.015,0.756-1.289,1.953-1.24,2.59\r\n\tc0.065,0.78,0.223,1.793,0.223,1.793s-0.314,0.17-0.314,0.854c0.11,1.718,0.684,0.977,0.803,1.729\r\n\tC4.481,10.822,5.13,10.5,5.13,11.489c0,1.65-0.212,2.21-2.336,3.124C0.663,15.53,0,17,0.011,19.129C0.014,19.766,0,20,0,20h16\r\n\tC16,20,15.986,19.766,15.989,19.129z M17,10V7h-2v3h-3v2h3v3h2v-3h3v-2H17z"
+ }
+ }]
+};
+exports.user = user;
\ No newline at end of file
diff --git a/dist/entypo/users.js b/dist/entypo/users.js
new file mode 100644
index 000000000..faeb540d4
--- /dev/null
+++ b/dist/entypo/users.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.users = void 0;
+var users = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.989,19.129c0-2.246-2.187-3.389-4.317-4.307c-2.123-0.914-2.801-1.684-2.801-3.334c0-0.989,0.648-0.667,0.932-2.481\r\n\tc0.12-0.752,0.692-0.012,0.802-1.729c0-0.684-0.313-0.854-0.313-0.854s0.159-1.013,0.221-1.793c0.064-0.817-0.398-2.56-2.301-3.095\r\n\tC7.88,1.195,7.655,0.654,8.679,0.112c-2.24-0.104-2.761,1.068-3.954,1.93c-1.015,0.756-1.289,1.953-1.24,2.59\r\n\tc0.065,0.78,0.223,1.793,0.223,1.793s-0.314,0.17-0.314,0.854c0.11,1.718,0.684,0.977,0.803,1.729\r\n\tC4.481,10.822,5.13,10.5,5.13,11.489c0,1.65-0.212,2.21-2.336,3.124C0.663,15.53,0,17,0.011,19.129C0.014,19.766,0,20,0,20h16\r\n\tC16,20,15.989,19.766,15.989,19.129z M18.528,13.365c-1.135-0.457-1.605-1.002-1.605-2.066c0-0.641,0.418-0.432,0.602-1.603\r\n\tc0.077-0.484,0.447-0.008,0.518-1.115c0-0.441-0.202-0.551-0.202-0.551s0.103-0.656,0.143-1.159c0.05-0.627-0.364-2.247-2.268-2.247\r\n\tc-1.903,0-2.318,1.62-2.269,2.247c0.042,0.502,0.144,1.159,0.144,1.159s-0.202,0.109-0.202,0.551\r\n\tc0.071,1.107,0.441,0.631,0.518,1.115c0.184,1.172,0.602,0.963,0.602,1.603c0,1.064-0.438,1.562-1.809,2.152\r\n\tc-0.069,0.029-0.12,0.068-0.183,0.102c1.64,0.712,4.226,1.941,4.838,4.447H20c0,0,0-1.906,0-2.318\r\n\tC20,14.682,19.727,13.848,18.528,13.365z"
+ }
+ }]
+};
+exports.users = users;
\ No newline at end of file
diff --git a/dist/entypo/verticalMiddle.js b/dist/entypo/verticalMiddle.js
new file mode 100644
index 000000000..81ae63d1b
--- /dev/null
+++ b/dist/entypo/verticalMiddle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.verticalMiddle = void 0;
+var verticalMiddle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,12l-3,3h2v4h2v-4h2L10,12z M13,5h-2V1H9v4H7l3,3L13,5z M18,10c0-0.553-0.048-1-0.6-1H2.6C2.048,9,2,9.447,2,10\r\n\tc0,0.551,0.048,1,0.6,1H17.4C17.952,11,18,10.551,18,10z"
+ }
+ }]
+};
+exports.verticalMiddle = verticalMiddle;
\ No newline at end of file
diff --git a/dist/entypo/video.js b/dist/entypo/video.js
new file mode 100644
index 000000000..0a4f35836
--- /dev/null
+++ b/dist/entypo/video.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.video = void 0;
+var video = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.405,2.799C18.293,2.359,17.749,2,17.195,2H2.805c-0.555,0-1.099,0.359-1.21,0.799L1.394,4h17.211L18.405,2.799z\r\n\t M19.412,5H0.587C0.245,5-0.022,5.294,0.01,5.635l0.923,11.669C0.971,17.698,1.303,18,1.699,18H18.3\r\n\tc0.397,0,0.728-0.302,0.766-0.696l0.923-11.669C20.022,5.294,19.754,5,19.412,5z M8,14V9l4.383,2.5L8,14z"
+ }
+ }]
+};
+exports.video = video;
\ No newline at end of file
diff --git a/dist/entypo/vimeo.js b/dist/entypo/vimeo.js
new file mode 100644
index 000000000..9510aa155
--- /dev/null
+++ b/dist/entypo/vimeo.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vimeo = void 0;
+var vimeo = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.91,5.84c-1.006,5.773-6.625,10.66-8.315,11.777c-1.69,1.115-3.233-0.447-3.792-1.631\r\n\tC6.162,14.639,4.244,7.33,3.741,6.725C3.238,6.119,1.731,7.33,1.731,7.33L1,6.354c0,0,3.061-3.725,5.391-4.191\r\n\tC8.861,1.67,8.857,6.027,9.451,8.445c0.574,2.342,0.961,3.68,1.463,3.68c0.502,0,1.462-1.305,2.512-3.305\r\n\tc1.053-2.004-0.045-3.772-2.101-2.514C12.148,1.279,19.916,0.07,18.91,5.84z"
+ }
+ }]
+};
+exports.vimeo = vimeo;
\ No newline at end of file
diff --git a/dist/entypo/vine.js b/dist/entypo/vine.js
new file mode 100644
index 000000000..56f50049a
--- /dev/null
+++ b/dist/entypo/vine.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vine = void 0;
+var vine = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.452,9.951c-0.438,0.101-0.863,0.145-1.244,0.145c-2.145,0-3.797-1.496-3.797-4.102c0-1.277,0.493-1.941,1.192-1.941\r\n\tc0.664,0,1.107,0.596,1.107,1.805c0,0.688-0.184,1.44-0.32,1.887c0,0,0.66,1.152,2.469,0.799c0.385-0.852,0.593-1.956,0.593-2.924\r\n\tc0-2.605-1.33-4.119-3.763-4.119c-2.504,0-3.968,1.922-3.968,4.461c0,2.512,1.175,4.668,3.113,5.651\r\n\tc-0.815,1.629-1.852,3.065-2.933,4.146c-1.961-2.371-3.734-5.534-4.463-11.706H2.548c1.335,10.279,5.319,13.553,6.373,14.181\r\n\tc0.596,0.358,1.108,0.341,1.654,0.034c0.855-0.485,3.422-3.054,4.847-6.061c0.597-0.002,1.314-0.069,2.03-0.231V9.951z"
+ }
+ }]
+};
+exports.vine = vine;
\ No newline at end of file
diff --git a/dist/entypo/vinyl.js b/dist/entypo/vinyl.js
new file mode 100644
index 000000000..41a9ca795
--- /dev/null
+++ b/dist/entypo/vinyl.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vinyl = void 0;
+var vinyl = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.999,0.8C4.918,0.8,0.8,4.919,0.8,10.001c0,5.08,4.118,9.199,9.199,9.199c5.081,0,9.2-4.119,9.2-9.199\r\n\tC19.199,4.919,15.08,0.8,9.999,0.8z M10,13.001c-1.657,0-3-1.344-3-3c0-1.656,1.343-3,3-3c1.656,0,3,1.344,3,3\r\n\tC13,11.657,11.656,13.001,10,13.001z"
+ }
+ }]
+};
+exports.vinyl = vinyl;
\ No newline at end of file
diff --git a/dist/entypo/vk.js b/dist/entypo/vk.js
new file mode 100644
index 000000000..cf1dd6877
--- /dev/null
+++ b/dist/entypo/vk.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vk = void 0;
+var vk = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M17.802,12.298c0,0,1.617,1.597,2.017,2.336c0.011,0.016,0.016,0.028,0.018,0.035\r\n\tc0.163,0.273,0.203,0.487,0.123,0.645c-0.135,0.261-0.592,0.392-0.747,0.403c0,0-2.778,0-2.858,0c-0.199,0-0.613-0.052-1.117-0.4\r\n\tc-0.385-0.269-0.768-0.712-1.139-1.145c-0.554-0.643-1.033-1.201-1.518-1.201c-0.062,0-0.122,0.01-0.18,0.03\r\n\tc-0.367,0.116-0.833,0.639-0.833,2.032c0,0.436-0.344,0.684-0.585,0.684c0,0-1.248,0-1.309,0c-0.446,0-2.768-0.156-4.827-2.327\r\n\tc-2.523-2.658-4.789-7.99-4.811-8.037C-0.105,5.008,0.191,4.82,0.511,4.82h2.886c0.387,0,0.513,0.234,0.601,0.444\r\n\tc0.102,0.241,0.48,1.205,1.1,2.288c1.004,1.762,1.621,2.479,2.114,2.479c0.093,0,0.181-0.023,0.264-0.07\r\n\tc0.644-0.354,0.524-2.654,0.494-3.128c0-0.092-0.001-1.027-0.331-1.479C7.403,5.03,7.001,4.904,6.758,4.858\r\n\tc0.065-0.094,0.203-0.238,0.38-0.323c0.441-0.22,1.238-0.252,2.029-0.252h0.439c0.858,0.012,1.08,0.067,1.392,0.146\r\n\tc0.628,0.15,0.64,0.557,0.585,1.943c-0.016,0.396-0.033,0.842-0.033,1.367c0,0.112-0.005,0.237-0.005,0.364\r\n\tc-0.019,0.711-0.044,1.512,0.458,1.841c0.064,0.04,0.139,0.062,0.217,0.062c0.174,0,0.695,0,2.108-2.425\r\n\tc0.62-1.071,1.1-2.334,1.133-2.429c0.028-0.053,0.112-0.202,0.214-0.262c0.078-0.048,0.182-0.056,0.236-0.056h3.395\r\n\tc0.37,0,0.621,0.056,0.67,0.196c0.082,0.227-0.016,0.92-1.566,3.016c-0.261,0.349-0.49,0.651-0.691,0.915\r\n\tC16.314,10.805,16.314,10.898,17.802,12.298z"
+ }
+ }]
+};
+exports.vk = vk;
\ No newline at end of file
diff --git a/dist/entypo/voicemail.js b/dist/entypo/voicemail.js
new file mode 100644
index 000000000..0ed7d1d70
--- /dev/null
+++ b/dist/entypo/voicemail.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.voicemail = void 0;
+var voicemail = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.4,5.801c-2.541,0-4.601,2.059-4.601,4.6c0,0.965,0.298,1.859,0.806,2.6H8.394c0.508-0.74,0.805-1.635,0.805-2.6\r\n\tc0-2.541-2.059-4.6-4.6-4.6c-2.54,0-4.6,2.059-4.6,4.6C0,12.941,2.059,15,4.6,15H15.4c2.54,0,4.6-2.059,4.6-4.6\r\n\tC20,7.859,17.94,5.801,15.4,5.801z M2,10.4c0-1.436,1.164-2.6,2.6-2.6c1.436,0,2.6,1.164,2.6,2.6c0,1.436-1.164,2.6-2.6,2.6\r\n\tC3.164,13,2,11.836,2,10.4z M15.4,13c-1.437,0-2.601-1.164-2.601-2.6c0-1.436,1.164-2.6,2.601-2.6c1.435,0,2.6,1.164,2.6,2.6\r\n\tC18,11.836,16.836,13,15.4,13z"
+ }
+ }]
+};
+exports.voicemail = voicemail;
\ No newline at end of file
diff --git a/dist/entypo/volume.js b/dist/entypo/volume.js
new file mode 100644
index 000000000..fac674568
--- /dev/null
+++ b/dist/entypo/volume.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume = void 0;
+var volume = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,13.805C19,14.462,18.462,15,17.805,15H1.533c-0.88,0-0.982-0.371-0.229-0.822l16.323-9.055C18.382,4.67,19,5.019,19,5.9\r\n\tV13.805z"
+ }
+ }]
+};
+exports.volume = volume;
\ No newline at end of file
diff --git a/dist/entypo/wallet.js b/dist/entypo/wallet.js
new file mode 100644
index 000000000..bdf4d3489
--- /dev/null
+++ b/dist/entypo/wallet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wallet = void 0;
+var wallet = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,6H3.5V5.5l11-0.88V5.5H16V4c0-1.1-0.891-1.872-1.979-1.717L3.98,3.717C2.891,3.873,2,4.9,2,6v10c0,1.104,0.895,2,2,2h12\r\n\tc1.104,0,2-0.896,2-2V8C18,6.896,17.104,6,16,6z M14.5,13.006c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5\r\n\tS15.328,13.006,14.5,13.006z"
+ }
+ }]
+};
+exports.wallet = wallet;
\ No newline at end of file
diff --git a/dist/entypo/warning.js b/dist/entypo/warning.js
new file mode 100644
index 000000000..d6e5a386b
--- /dev/null
+++ b/dist/entypo/warning.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.warning = void 0;
+var warning = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.511,17.98L10.604,1.348C10.48,1.133,10.25,1,10,1C9.749,1,9.519,1.133,9.396,1.348L0.49,17.98\r\n\tc-0.121,0.211-0.119,0.471,0.005,0.68C0.62,18.871,0.847,19,1.093,19h17.814c0.245,0,0.474-0.129,0.598-0.34\r\n\tC19.629,18.451,19.631,18.191,19.511,17.98z M11,17H9v-2h2V17z M11,13.5H9V7h2V13.5z"
+ }
+ }]
+};
+exports.warning = warning;
\ No newline at end of file
diff --git a/dist/entypo/water.js b/dist/entypo/water.js
new file mode 100644
index 000000000..ad32af704
--- /dev/null
+++ b/dist/entypo/water.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.water = void 0;
+var water = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.882,9.093c-0.511,4.115-3.121,4.847-3.121,7.708C6.761,18.567,8.244,20,10,20c1.756,0,3.238-1.434,3.238-3.199\r\n\tc0-2.861-2.61-3.593-3.121-7.708C10.101,8.97,9.898,8.97,9.882,9.093z M3.883,0.093C3.372,4.208,0.762,4.939,0.762,7.801\r\n\tC0.762,9.566,2.244,11,4,11c1.756,0,3.238-1.434,3.238-3.199c0-2.861-2.61-3.593-3.121-7.708C4.102-0.03,3.898-0.03,3.883,0.093z\r\n\t M15.883,0.093c-0.511,4.115-3.121,4.847-3.121,7.708C12.762,9.566,14.244,11,16,11c1.756,0,3.238-1.434,3.238-3.199\r\n\tc0-2.861-2.61-3.593-3.121-7.708C16.101-0.03,15.898-0.03,15.883,0.093z"
+ }
+ }]
+};
+exports.water = water;
\ No newline at end of file
diff --git a/dist/entypo/weibo.js b/dist/entypo/weibo.js
new file mode 100644
index 000000000..a7aa9224d
--- /dev/null
+++ b/dist/entypo/weibo.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weibo = void 0;
+var weibo = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.688,10.068c-0.274-0.084-0.463-0.142-0.319-0.508c0.311-0.797,0.344-1.484,0.007-1.975\r\n\tc-0.633-0.92-2.364-0.871-4.348-0.025c0-0.002-0.623,0.277-0.464-0.227C9.87,6.336,9.823,5.5,9.348,5.018\r\n\tC8.272,3.92,5.411,5.059,2.956,7.557C1.117,9.428,0.05,11.41,0.05,13.125c0,3.281,4.132,5.475,8.175,5.475\r\n\tc5.299,0,8.825-3.334,8.825-5.822C17.05,11.273,15.806,10.42,14.688,10.068z M8.236,17.129c-3.225,0.32-6.011-1.147-6.22-3.275\r\n\tc-0.209-2.129,2.236-4.115,5.462-4.438c3.226-0.32,6.011,1.146,6.22,3.275C13.907,14.822,11.462,16.809,8.236,17.129z M19.95,7.397\r\n\tc-0.001-3.312-2.686-5.996-6-5.996c-0.387,0-0.699,0.312-0.699,0.699s0.312,0.699,0.699,0.699c2.541,0,4.601,2.061,4.601,4.602\r\n\tc0,0.387,0.313,0.699,0.7,0.699S19.95,7.787,19.95,7.4V7.397z M17.169,7.295c-0.319-1.562-1.551-2.793-3.113-3.113\r\n\tc-0.378-0.078-0.748,0.166-0.826,0.545c-0.077,0.377,0.166,0.748,0.545,0.826c1.016,0.207,1.816,1.008,2.024,2.023\r\n\tc0.078,0.379,0.448,0.621,0.826,0.545C17.002,8.043,17.247,7.672,17.169,7.295z M6.582,11.502c-1.3,0.262-2.177,1.352-1.959,2.434\r\n\tc0.218,1.084,1.447,1.75,2.747,1.488c1.299-0.262,2.176-1.352,1.959-2.434C9.111,11.908,7.88,11.24,6.582,11.502z"
+ }
+ }]
+};
+exports.weibo = weibo;
\ No newline at end of file
diff --git a/dist/entypo/withCircle.js b/dist/entypo/withCircle.js
new file mode 100644
index 000000000..55524e007
--- /dev/null
+++ b/dist/entypo/withCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.withCircle = void 0;
+var withCircle = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.302,0-9.6,4.298-9.6,9.6s4.298,9.6,9.6,9.6c5.301,0,9.6-4.298,9.6-9.601C19.6,4.698,15.301,0.4,10,0.4z\r\n\t M9.849,15.599H9.798c-0.782-0.023-1.334-0.6-1.311-1.371c0.022-0.758,0.587-1.309,1.343-1.309l0.046,0.002\r\n\tc0.804,0.023,1.35,0.594,1.327,1.387C11.18,15.068,10.625,15.599,9.849,15.599z M13.14,9.068c-0.184,0.26-0.588,0.586-1.098,0.983\r\n\tl-0.562,0.387c-0.308,0.24-0.494,0.467-0.563,0.688c-0.056,0.174-0.082,0.221-0.087,0.576v0.09H8.685l0.006-0.182\r\n\tc0.027-0.744,0.045-1.184,0.354-1.547c0.485-0.568,1.555-1.258,1.6-1.287c0.154-0.115,0.283-0.246,0.379-0.387\r\n\tc0.225-0.311,0.324-0.555,0.324-0.793c0-0.334-0.098-0.643-0.293-0.916c-0.188-0.266-0.545-0.398-1.061-0.398\r\n\tc-0.512,0-0.863,0.162-1.072,0.496c-0.216,0.341-0.325,0.7-0.325,1.067v0.092H6.386L6.39,7.841c0.057-1.353,0.541-2.328,1.435-2.897\r\n\tC8.388,4.583,9.089,4.4,9.906,4.4c1.068,0,1.972,0.26,2.682,0.772c0.721,0.519,1.086,1.297,1.086,2.311\r\n\tC13.673,8.05,13.494,8.583,13.14,9.068z"
+ }
+ }]
+};
+exports.withCircle = withCircle;
\ No newline at end of file
diff --git a/dist/entypo/withCircleDown.js b/dist/entypo/withCircleDown.js
new file mode 100644
index 000000000..243d96497
--- /dev/null
+++ b/dist/entypo/withCircleDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.withCircleDown = void 0;
+var withCircleDown = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M12,6H8v4H5.5l4.5,4.5l4.5-4.5H12V6z"
+ }
+ }]
+};
+exports.withCircleDown = withCircleDown;
\ No newline at end of file
diff --git a/dist/entypo/withCircleLeft.js b/dist/entypo/withCircleLeft.js
new file mode 100644
index 000000000..292129f6b
--- /dev/null
+++ b/dist/entypo/withCircleLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.withCircleLeft = void 0;
+var withCircleLeft = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,5.5L5.5,10l4.5,4.5V12h4V8h-4V5.5z"
+ }
+ }]
+};
+exports.withCircleLeft = withCircleLeft;
\ No newline at end of file
diff --git a/dist/entypo/withCircleRight.js b/dist/entypo/withCircleRight.js
new file mode 100644
index 000000000..fbf0d5299
--- /dev/null
+++ b/dist/entypo/withCircleRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.withCircleRight = void 0;
+var withCircleRight = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,8H6v4h4v2.5l4.5-4.5L10,5.5V8z"
+ }
+ }]
+};
+exports.withCircleRight = withCircleRight;
\ No newline at end of file
diff --git a/dist/entypo/withCircleUp.js b/dist/entypo/withCircleUp.js
new file mode 100644
index 000000000..e87aad242
--- /dev/null
+++ b/dist/entypo/withCircleUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.withCircleUp = void 0;
+var withCircleUp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,0.4c-5.303,0-9.601,4.298-9.601,9.6c0,5.303,4.298,9.601,9.601,9.601c5.301,0,9.6-4.298,9.6-9.601\r\n\tC19.6,4.698,15.301,0.4,10,0.4z M9.999,17.6c-4.197,0-7.6-3.402-7.6-7.6s3.402-7.6,7.6-7.6S17.6,5.803,17.6,10\r\n\tS14.196,17.6,9.999,17.6z M10,5.5l4.5,4.5H12v4H8v-4H5.5L10,5.5z"
+ }
+ }]
+};
+exports.withCircleUp = withCircleUp;
\ No newline at end of file
diff --git a/dist/entypo/withCross.js b/dist/entypo/withCross.js
new file mode 100644
index 000000000..441dbad07
--- /dev/null
+++ b/dist/entypo/withCross.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.withCross = void 0;
+var withCross = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z\r\n\t M14.789,13.061l-1.729,1.729L10,11.729l-3.061,3.06l-1.729-1.729L8.272,10L5.211,6.939L6.94,5.211L10,8.271l3.061-3.061\r\n\tl1.729,1.729L11.728,10L14.789,13.061z"
+ }
+ }]
+};
+exports.withCross = withCross;
\ No newline at end of file
diff --git a/dist/entypo/withLine.js b/dist/entypo/withLine.js
new file mode 100644
index 000000000..ddf9d582e
--- /dev/null
+++ b/dist/entypo/withLine.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.withLine = void 0;
+var withLine = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.5214844,1.4776001C18.131958,1.086853,17.4981079,1.086792,17.1074829,1.477478L1.4785156,17.1084595\r\n\tc-0.390625,0.390625-0.390625,1.0244141,0.0001221,1.4140015c0.390625,0.390686,1.0233765,0.390625,1.4140015-0.000061\r\n\tL18.5214233,2.8916016C18.9121704,2.5009766,18.9121704,1.8682251,18.5214844,1.4776001z M3.1083984,13.4973145l2.5593262-2.5584717\r\n\tC5.5981445,10.6357422,5.5546875,10.3234863,5.5546875,10c0-2.3789062,1.9902344-4.3085938,4.4453125-4.3085938\r\n\tc0.2861328,0,0.5644531,0.0314941,0.8354492,0.081665l1.2021484-1.2016602C11.394043,4.467041,10.7192383,4.4003906,10,4.4003906\r\n\tC3.4394531,4.4003906,0,9.2324219,0,10C0,10.4234619,1.057373,12.0908203,3.1083984,13.4973145z M16.8950195,6.5046387\r\n\tL14.3330078,9.065918C14.4018555,9.3674316,14.4443359,9.6784668,14.4443359,10\r\n\tc0,2.3789062-1.9892578,4.3066406-4.4443359,4.3066406c-0.2839355,0-0.5598145-0.0317383-0.8288574-0.0810547L7.967041,15.4291992\r\n\tC8.609375,15.5330811,9.2827148,15.5996094,10,15.5996094c6.5605469,0,10-4.8339844,10-5.5996094\r\n\tC20,9.5756836,18.9438477,7.9101562,16.8950195,6.5046387z"
+ }
+ }]
+};
+exports.withLine = withLine;
\ No newline at end of file
diff --git a/dist/entypo/withMinus.js b/dist/entypo/withMinus.js
new file mode 100644
index 000000000..cc489c47d
--- /dev/null
+++ b/dist/entypo/withMinus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.withMinus = void 0;
+var withMinus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z M15,11H5V9\r\n\th10V11z"
+ }
+ }]
+};
+exports.withMinus = withMinus;
\ No newline at end of file
diff --git a/dist/entypo/withPlus.js b/dist/entypo/withPlus.js
new file mode 100644
index 000000000..96dee8839
--- /dev/null
+++ b/dist/entypo/withPlus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.withPlus = void 0;
+var withPlus = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,1.6c-4.639,0-8.4,3.761-8.4,8.4c0,4.639,3.761,8.4,8.4,8.4s8.4-3.761,8.4-8.4C18.4,5.361,14.639,1.6,10,1.6z M15,11h-4\r\n\tv4H9v-4H5V9h4V5h2v4h4V11z"
+ }
+ }]
+};
+exports.withPlus = withPlus;
\ No newline at end of file
diff --git a/dist/entypo/xing.js b/dist/entypo/xing.js
new file mode 100644
index 000000000..4bf6f9daa
--- /dev/null
+++ b/dist/entypo/xing.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.xing = void 0;
+var xing = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.703,1h-2.828c-0.223,0-0.553,0.105-0.69,0.381S13.875,2,13.875,2l-5,10l3,6c0,0,0.172,0.344,0.31,0.619\r\n\tS12.652,19,12.875,19h2.828c0.5,0,0.48-0.381,0.355-0.631S15.875,18,15.875,18l-3-6l5-10c0,0,0.059-0.119,0.184-0.369\r\n\tS18.203,1,17.703,1z M6.815,5.381C6.678,5.105,6.348,5,6.125,5H3.297c-0.5,0-0.48,0.381-0.355,0.631S3.125,6,3.125,6l1.25,2.5\r\n\tL2.125,13c0,0-0.059,0.119-0.184,0.369S1.797,14,2.297,14h2.828c0.223,0,0.553-0.106,0.691-0.381C5.953,13.344,6.125,13,6.125,13\r\n\tl2.25-4.5L7.125,6C7.125,6,6.953,5.656,6.815,5.381z"
+ }
+ }]
+};
+exports.xing = xing;
\ No newline at end of file
diff --git a/dist/entypo/yelp.js b/dist/entypo/yelp.js
new file mode 100644
index 000000000..540d5d24c
--- /dev/null
+++ b/dist/entypo/yelp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yelp = void 0;
+var yelp = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.538,12.471l4.523,1.466c0,0,0.647,0.119,0.64,0.552c-0.004,0.305-0.197,0.652-0.197,0.652l-1.91,2.756\r\n\tc0,0-0.341,0.286-0.686,0.286c-0.344,0-0.741-0.537-0.741-0.537l-2.417-4.073c0,0-0.272-0.594,0.05-0.921\r\n\tC12.095,12.352,12.538,12.471,12.538,12.471z M11.57,10.6c0.231,0.396,0.87,0.281,0.87,0.281l4.513-1.331\r\n\tc0,0,0.615-0.253,0.703-0.589c0.086-0.337-0.102-0.743-0.102-0.743l-2.157-2.564c0,0-0.187-0.324-0.575-0.357\r\n\tc-0.428-0.037-0.691,0.486-0.691,0.486l-2.55,4.05C11.582,9.832,11.357,10.235,11.57,10.6z M9.438,9.021\r\n\tc0.531-0.132,0.616-0.911,0.616-0.911l-0.036-6.485c0,0-0.08-0.8-0.436-1.017c-0.559-0.342-0.724-0.164-0.884-0.14L4.951,1.873\r\n\tc0,0-0.367,0.123-0.558,0.432C4.12,2.742,4.67,3.384,4.67,3.384l3.894,5.358C8.564,8.742,8.949,9.143,9.438,9.021z M8.513,11.645\r\n\tc0.013-0.5-0.595-0.801-0.595-0.801L3.89,8.791c0,0-0.597-0.248-0.887-0.075C2.782,8.848,2.585,9.088,2.566,9.299l-0.262,3.259\r\n\tc0,0-0.039,0.565,0.106,0.822c0.205,0.364,0.881,0.111,0.881,0.111l4.702-1.049C8.175,12.318,8.495,12.306,8.513,11.645z\r\n\t M9.682,13.404c-0.404-0.209-0.887,0.224-0.887,0.224l-3.148,3.498c0,0-0.393,0.535-0.293,0.863c0.094,0.308,0.25,0.461,0.47,0.569\r\n\tl3.162,1.007c0,0,0.383,0.08,0.674-0.005c0.412-0.121,0.336-0.772,0.336-0.772l0.071-4.736\r\n\tC10.067,14.053,10.051,13.597,9.682,13.404z"
+ }
+ }]
+};
+exports.yelp = yelp;
\ No newline at end of file
diff --git a/dist/entypo/youko.js b/dist/entypo/youko.js
new file mode 100644
index 000000000..200c41de3
--- /dev/null
+++ b/dist/entypo/youko.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.youko = void 0;
+var youko = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.418047,12.0796385c-0.5478516-1.0457487-2.1255493-1.7149191-2.8060303-2.6412954\r\n\tc0.4585571-1.0617428,2.9511719-1.7141776,2.7406616-3.5655117c-0.1517944-1.3371668-2.1604614-1.4112105-2.6756592-0.3305092\r\n\tc-0.3861084,0.4457431-0.7995005,0.8636346-1.2400522,1.254293c-0.2116089,0.269928-0.4511719,0.5119433-0.7175293,0.7264161\r\n\tc-0.3097534,0.3260632-0.5610962,0.7093105-0.979187,0.9249573V5.8728313c-0.0095825-1.400774-2.6002808-1.400774-2.6101685,0\r\n\tv7.3295012c0.1132812,0.5230598,0.3482666,0.9234743,0.9133911,0.9899845h0.7833252\r\n\tc0.5371704-0.0944233,0.8428955-0.4238205,0.9134521-0.9899845v-1.5851727c0-0.549428-0.1014404-1.4766083,0.2612305-0.9241543\r\n\tc0.5316772,0.5263948,1.2804565,1.0925589,1.9580078,1.7160301c0.6503305,0.6000061,1.272706,1.5688076,1.9572153,1.7170801\r\n\tC19.3184376,14.4302559,19.9368458,13.068881,19.418047,12.0796385z M8.1933756,4.1556897\r\n\tC7.636735,4.5449276,7.3271646,5.7449384,6.9533243,6.5988774C6.5416422,7.5382848,6.1798868,8.4847937,5.7787027,9.1743431\r\n\tC4.6934977,7.9286342,3.9533243,5.1675968,2.6461954,4.1556897c-0.4216309-0.3260012-1.3457031-0.3167379-1.7619629,0\r\n\tC-0.241744,5.0133343,0.8880777,6.5300832,1.3409586,7.3256645c0.9940186,1.7442522,2.0955811,3.6115799,2.9366455,5.2160816\r\n\tc-0.5467529,1.4587612-3.3081665,5.5814819,0.3916626,5.3487911c0.8953857-0.5855541,1.2750854-1.8037815,1.762146-2.9060354\r\n\tc0.9957275-2.255393,1.8415527-4.204113,2.8713989-6.5365133c0.4280396-0.9695439,1.4592285-2.4023066,1.2398682-3.500052\r\n\tC10.3683634,4.0776324,9.0449381,3.5608718,8.1933756,4.1556897z"
+ }
+ }]
+};
+exports.youko = youko;
\ No newline at end of file
diff --git a/dist/entypo/youtube.js b/dist/entypo/youtube.js
new file mode 100644
index 000000000..eb36c9152
--- /dev/null
+++ b/dist/entypo/youtube.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.youtube = void 0;
+var youtube = {
+ "viewBox": "0 0 20 20",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,2.3C0.172,2.3,0,3.174,0,10s0.172,7.7,10,7.7s10-0.874,10-7.7S19.828,2.3,10,2.3z M13.205,10.334l-4.49,2.096\r\n\tC8.322,12.612,8,12.408,8,11.974V8.026C8,7.593,8.322,7.388,8.715,7.57l4.49,2.096C13.598,9.85,13.598,10.15,13.205,10.334z"
+ }
+ }]
+};
+exports.youtube = youtube;
\ No newline at end of file
diff --git a/dist/fa/addressBook.js b/dist/fa/addressBook.js
new file mode 100644
index 000000000..b2c5ea3ec
--- /dev/null
+++ b/dist/fa/addressBook.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.addressBook = void 0;
+var addressBook = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1201 1238q0-57-5.5-107t-21-100.5-39.5-86-64-58-91-22.5q-6 4-33.5 20.5t-42.5 24.5-40.5 20-49 17-46.5 5-46.5-5-49-17-40.5-20-42.5-24.5-33.5-20.5q-51 0-91 22.5t-64 58-39.5 86-21 100.5-5.5 107q0 73 42 121.5t103 48.5h576q61 0 103-48.5t42-121.5zM1028 644q0-108-76.5-184t-183.5-76-183.5 76-76.5 184q0 107 76.5 183t183.5 76 183.5-76 76.5-183zM1664 1184v192q0 14-9 23t-23 9h-96v224q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h1216q66 0 113 47t47 113v224h96q14 0 23 9t9 23v192q0 14-9 23t-23 9h-96v128h96q14 0 23 9t9 23v192q0 14-9 23t-23 9h-96v128h96q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.addressBook = addressBook;
\ No newline at end of file
diff --git a/dist/fa/addressBookO.js b/dist/fa/addressBookO.js
new file mode 100644
index 000000000..56c39f895
--- /dev/null
+++ b/dist/fa/addressBookO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.addressBookO = void 0;
+var addressBookO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1028 644q0 107-76.5 183t-183.5 76-183.5-76-76.5-183q0-108 76.5-184t183.5-76 183.5 76 76.5 184zM980 864q46 0 82.5 17t60 47.5 39.5 67 24 81 11.5 82.5 3.5 79q0 67-39.5 118.5t-105.5 51.5h-576q-66 0-105.5-51.5t-39.5-118.5q0-48 4.5-93.5t18.5-98.5 36.5-91.5 63-64.5 93.5-26h5q7 4 32 19.5t35.5 21 33 17 37 16 35 9 39.5 4.5 39.5-4.5 35-9 37-16 33-17 35.5-21 32-19.5zM1664 608q0 13-9.5 22.5t-22.5 9.5h-96v128h96q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-96v128h96q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-96v224q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h1216q66 0 113 47t47 113v224h96q13 0 22.5 9.5t9.5 22.5v192zM1408 1632v-1472q0-13-9.5-22.5t-22.5-9.5h-1216q-13 0-22.5 9.5t-9.5 22.5v1472q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5-9.5t9.5-22.5z"
+ }
+ }]
+};
+exports.addressBookO = addressBookO;
\ No newline at end of file
diff --git a/dist/fa/addressCard.js b/dist/fa/addressCard.js
new file mode 100644
index 000000000..a8427c711
--- /dev/null
+++ b/dist/fa/addressCard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.addressCard = void 0;
+var addressCard = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1131q0-64-9-117.5t-29.5-103-60.5-78-97-28.5q-6 4-30 18t-37.5 21.5-35.5 17.5-43 14.5-42 4.5-42-4.5-43-14.5-35.5-17.5-37.5-21.5-30-18q-57 0-97 28.5t-60.5 78-29.5 103-9 117.5 37 106.5 91 42.5h512q54 0 91-42.5t37-106.5zM867 611q0-94-66.5-160.5t-160.5-66.5-160.5 66.5-66.5 160.5 66.5 160.5 160.5 66.5 160.5-66.5 66.5-160.5zM1792 1120v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM1792 860v-56q0-15-10.5-25.5t-25.5-10.5h-568q-15 0-25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5-10.5t10.5-25.5zM1792 608v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM2048 288v1216q0 66-47 113t-113 47h-352v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-768v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-352q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.addressCard = addressCard;
\ No newline at end of file
diff --git a/dist/fa/addressCardO.js b/dist/fa/addressCardO.js
new file mode 100644
index 000000000..d13d20e5d
--- /dev/null
+++ b/dist/fa/addressCardO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.addressCardO = void 0;
+var addressCardO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1131q0 64-37 106.5t-91 42.5h-512q-54 0-91-42.5t-37-106.5 9-117.5 29.5-103 60.5-78 97-28.5q6 4 30 18t37.5 21.5 35.5 17.5 43 14.5 42 4.5 42-4.5 43-14.5 35.5-17.5 37.5-21.5 30-18q57 0 97 28.5t60.5 78 29.5 103 9 117.5zM867 611q0 94-66.5 160.5t-160.5 66.5-160.5-66.5-66.5-160.5 66.5-160.5 160.5-66.5 160.5 66.5 66.5 160.5zM1792 1056v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1792 804v56q0 15-10.5 25.5t-25.5 10.5h-568q-15 0-25.5-10.5t-10.5-25.5v-56q0-15 10.5-25.5t25.5-10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 544v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1920 1504v-1216q0-13-9.5-22.5t-22.5-9.5h-1728q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h352v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h768v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h352q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.addressCardO = addressCardO;
\ No newline at end of file
diff --git a/dist/fa/adjust.js b/dist/fa/adjust.js
new file mode 100644
index 000000000..0f7f2a6a1
--- /dev/null
+++ b/dist/fa/adjust.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.adjust = void 0;
+var adjust = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 1440v-1088q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.adjust = adjust;
\ No newline at end of file
diff --git a/dist/fa/adn.js b/dist/fa/adn.js
new file mode 100644
index 000000000..da26103bf
--- /dev/null
+++ b/dist/fa/adn.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.adn = void 0;
+var adn = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 622l201 306h-402zM1133 1152h94l-459-691-459 691h94l104-160h522zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.adn = adn;
\ No newline at end of file
diff --git a/dist/fa/alignCenter.js b/dist/fa/alignCenter.js
new file mode 100644
index 000000000..bb1edf904
--- /dev/null
+++ b/dist/fa/alignCenter.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignCenter = void 0;
+var alignCenter = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1408 960v128q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h896q26 0 45 19t19 45zM1664 576v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1280 192v128q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h640q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.alignCenter = alignCenter;
\ No newline at end of file
diff --git a/dist/fa/alignJustify.js b/dist/fa/alignJustify.js
new file mode 100644
index 000000000..2f39d6f6c
--- /dev/null
+++ b/dist/fa/alignJustify.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignJustify = void 0;
+var alignJustify = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 960v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 576v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 192v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.alignJustify = alignJustify;
\ No newline at end of file
diff --git a/dist/fa/alignLeft.js b/dist/fa/alignLeft.js
new file mode 100644
index 000000000..ab017b8ef
--- /dev/null
+++ b/dist/fa/alignLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignLeft = void 0;
+var alignLeft = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1408 960v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zM1664 576v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zM1280 192v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.alignLeft = alignLeft;
\ No newline at end of file
diff --git a/dist/fa/alignRight.js b/dist/fa/alignRight.js
new file mode 100644
index 000000000..98fdad964
--- /dev/null
+++ b/dist/fa/alignRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignRight = void 0;
+var alignRight = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 960v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zM1792 576v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zM1792 192v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.alignRight = alignRight;
\ No newline at end of file
diff --git a/dist/fa/amazon.js b/dist/fa/amazon.js
new file mode 100644
index 000000000..c3a7e3ef3
--- /dev/null
+++ b/dist/fa/amazon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.amazon = void 0;
+var amazon = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1551 1476q15-6 26-3t11 17.5-15 33.5q-13 16-44 43.5t-95.5 68-141 74-188 58-229.5 24.5q-119 0-238-31t-209-76.5-172.5-104-132.5-105-84-87.5q-8-9-10-16.5t1-12 8-7 11.5-2 11.5 4.5q192 117 300 166 389 176 799 90 190-40 391-135zM1758 1361q11 16 2.5 69.5t-28.5 102.5q-34 83-85 124-17 14-26 9t0-24q21-45 44.5-121.5t6.5-98.5q-5-7-15.5-11.5t-27-6-29.5-2.5-35 0-31.5 2-31 3-22.5 2q-6 1-13 1.5t-11 1-8.5 1-7 0.5h-5.5-4.5t-3-0.5-2-1.5l-1.5-3q-6-16 47-40t103-30q46-7 108-1t76 24zM1364 918q0 31 13.5 64t32 58 37.5 46 33 32l13 11-227 224q-40-37-79-75.5t-58-58.5l-19-20q-11-11-25-33-38 59-97.5 102.5t-127.5 63.5-140 23-137.5-21-117.5-65.5-83-113-31-162.5q0-84 28-154t72-116.5 106.5-83 122.5-57 130-34.5 119.5-18.5 99.5-6.5v-127q0-65-21-97-34-53-121-53-6 0-16.5 1t-40.5 12-56 29.5-56 59.5-48 96l-294-27q0-60 22-119t67-113 108-95 151.5-65.5 190.5-24.5q100 0 181 25t129.5 61.5 81 83 45 86 12.5 73.5v589zM692 939q0 86 70 133 66 44 139 22 84-25 114-123 14-45 14-101v-162q-59 2-111 12t-106.5 33.5-87 71-32.5 114.5z"
+ }
+ }]
+};
+exports.amazon = amazon;
\ No newline at end of file
diff --git a/dist/fa/ambulance.js b/dist/fa/ambulance.js
new file mode 100644
index 000000000..b43312d62
--- /dev/null
+++ b/dist/fa/ambulance.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ambulance = void 0;
+var ambulance = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1408q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM256 896h384v-256h-158q-14 2-22 9l-195 195q-7 12-9 22v30zM1536 1408q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 736v-192q0-14-9-23t-23-9h-224v-224q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v224h-224q-14 0-23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23-9t9-23v-224h224q14 0 23-9t9-23zM1920 192v1152q0 26-19 45t-45 19h-192q0 106-75 181t-181 75-181-75-75-181h-384q0 106-75 181t-181 75-181-75-75-181h-128q-26 0-45-19t-19-45 19-45 45-19v-416q0-26 13-58t32-51l198-198q19-19 51-32t58-13h160v-320q0-26 19-45t45-19h1152q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.ambulance = ambulance;
\ No newline at end of file
diff --git a/dist/fa/americanSignLanguageInterpreting.js b/dist/fa/americanSignLanguageInterpreting.js
new file mode 100644
index 000000000..034353b93
--- /dev/null
+++ b/dist/fa/americanSignLanguageInterpreting.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.americanSignLanguageInterpreting = void 0;
+var americanSignLanguageInterpreting = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1032 960q-59-2-84-55-17-34-48-53.5t-68-19.5q-53 0-90.5 37.5t-37.5 90.5q0 56 36 89l10 8q34 31 82 31 37 0 68-19.5t48-53.5q25-53 84-55zM1600 832q0-56-36-89l-10-8q-34-31-82-31-37 0-68 19.5t-48 53.5q-25 53-84 55 59 2 84 55 17 34 48 53.5t68 19.5q53 0 90.5-37.5t37.5-90.5zM1174 611q-17 35-55 48t-73-4q-62-31-134-31-51 0-99 17 3 0 9.5-0.5t9.5-0.5q92 0 170.5 50t118.5 133q17 36 3.5 73.5t-49.5 54.5q-18 9-39 9 21 0 39 9 36 17 49.5 54.5t-3.5 73.5q-40 83-118.5 133t-170.5 50h-6q-16-2-44-4l-290-27-239 120q-14 7-29 7-40 0-57-35l-160-320q-11-23-4-47.5t29-37.5l209-119 148-267q17-155 91.5-291.5t195.5-236.5q31-25 70.5-21.5t64.5 34.5 21.5 70-34.5 65q-70 59-117 128 123-84 267-101 40-5 71.5 19t35.5 64q5 40-19 71.5t-64 35.5q-84 10-159 55 46-10 99-10 115 0 218 50 36 18 49 55.5t-5 73.5zM2137 451l160 320q11 23 4 47.5t-29 37.5l-209 119-148 267q-17 155-91.5 291.5t-195.5 236.5q-26 22-61 22-45 0-74-35-25-31-21.5-70t34.5-65q70-59 117-128-123 84-267 101-4 1-12 1-36 0-63.5-24t-31.5-60q-5-40 19-71.5t64-35.5q84-10 159-55-46 10-99 10-115 0-218-50-36-18-49-55.5t5-73.5q17-35 55-48t73 4q62 31 134 31 51 0 99-17-3 0-9.5 0.5t-9.5 0.5q-92 0-170.5-50t-118.5-133q-17-36-3.5-73.5t49.5-54.5q18-9 39-9-21 0-39-9-36-17-49.5-54.5t3.5-73.5q40-83 118.5-133t170.5-50h6 1q14 2 42 4l291 27 239-120q14-7 29-7 40 0 57 35z"
+ }
+ }]
+};
+exports.americanSignLanguageInterpreting = americanSignLanguageInterpreting;
\ No newline at end of file
diff --git a/dist/fa/anchor.js b/dist/fa/anchor.js
new file mode 100644
index 000000000..651ae2d2d
--- /dev/null
+++ b/dist/fa/anchor.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.anchor = void 0;
+var anchor = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 256q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1792 1184v352q0 22-20 30-8 2-12 2-12 0-23-9l-93-93q-119 143-318.5 226.5t-429.5 83.5-429.5-83.5-318.5-226.5l-93 93q-9 9-23 9-4 0-12-2-20-8-20-30v-352q0-14 9-23t23-9h352q22 0 30 20 8 19-7 35l-100 100q67 91 189.5 153.5t271.5 82.5v-647h-192q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h192v-163q-58-34-93-92.5t-35-128.5q0-106 75-181t181-75 181 75 75 181q0 70-35 128.5t-93 92.5v163h192q26 0 45 19t19 45v128q0 26-19 45t-45 19h-192v647q149-20 271.5-82.5t189.5-153.5l-100-100q-15-16-7-35 8-20 30-20h352q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.anchor = anchor;
\ No newline at end of file
diff --git a/dist/fa/android.js b/dist/fa/android.js
new file mode 100644
index 000000000..9f571816e
--- /dev/null
+++ b/dist/fa/android.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.android = void 0;
+var android = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M493 483q16 0 27.5-11.5t11.5-27.5-11.5-27.5-27.5-11.5-27 11.5-11 27.5 11 27.5 27 11.5zM915 483q16 0 27-11.5t11-27.5-11-27.5-27-11.5-27.5 11.5-11.5 27.5 11.5 27.5 27.5 11.5zM103 667q42 0 72 30t30 72v430q0 43-29.5 73t-72.5 30-73-30-30-73v-430q0-42 30-72t73-30zM1163 686v666q0 46-32 78t-77 32h-75v227q0 43-30 73t-73 30-73-30-30-73v-227h-138v227q0 43-30 73t-73 30q-42 0-72-30t-30-73l-1-227h-74q-46 0-78-32t-32-78v-666h918zM931 281q107 55 171 153.5t64 215.5h-925q0-117 64-215.5t172-153.5l-71-131q-7-13 5-20 13-6 20 6l72 132q95-42 201-42t201 42l72-132q7-12 20-6 12 7 5 20zM1408 769v430q0 43-30 73t-73 30q-42 0-72-30t-30-73v-430q0-43 30-72.5t72-29.5q43 0 73 29.5t30 72.5z"
+ }
+ }]
+};
+exports.android = android;
\ No newline at end of file
diff --git a/dist/fa/angellist.js b/dist/fa/angellist.js
new file mode 100644
index 000000000..2eb58257b
--- /dev/null
+++ b/dist/fa/angellist.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angellist = void 0;
+var angellist = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M953 378l-114 328 117 21q165-451 165-518 0-56-38-56-57 0-130 225zM654 1065l33 88q37-42 71-67l-33-5.5t-38.5-7-32.5-8.5zM362 169q0 98 159 521 17-10 49-10 15 0 75 5l-121-351q-75-220-123-220-19 0-29 17.5t-10 37.5zM283 928q0 36 51.5 119t117.5 153 100 70q14 0 25.5-13t11.5-27q0-24-32-102-13-32-32-72t-47.5-89-61.5-81-62-32q-20 0-45.5 27t-25.5 47zM125 1263q0 41 25 104 59 145 183.5 227t281.5 82q227 0 382-170 152-169 152-427 0-43-1-67t-11.5-62-30.5-56q-56-49-211.5-75.5t-270.5-26.5q-37 0-49 11-12 5-12 35 0 34 21.5 60t55.5 40 77.5 23.5 87.5 11.5 85 4 70 0h23q24 0 40 19 15 19 19 55-28 28-96 54-61 22-93 46-64 46-108.5 114t-44.5 137q0 31 18.5 88.5t18.5 87.5l-3 12q-4 12-4 14-137-10-146-216-8 2-41 2 2 7 2 21 0 53-40.5 89.5t-94.5 36.5q-82 0-166.5-78t-84.5-159q0-34 33-67 52 64 60 76 77 104 133 104 12 0 26.5-8.5t14.5-20.5q0-34-87.5-145t-116.5-111q-43 0-70 44.5t-27 90.5zM11 1272q0-101 42.5-163t136.5-88q-28-74-28-104 0-62 61-123t122-61q29 0 70 15-163-462-163-567 0-80 41-130.5t119-50.5q131 0 325 581 6 17 8 23 6-16 29-79.5t43.5-118.5 54-127.5 64.5-123 70.5-86.5 76.5-36q71 0 112 49t41 122q0 108-159 550 61 15 100.5 46t58.5 78 26 93.5 7 110.5q0 150-47 280t-132 225-211 150-278 55q-111 0-223-42-149-57-258-191.5t-109-286.5z"
+ }
+ }]
+};
+exports.angellist = angellist;
\ No newline at end of file
diff --git a/dist/fa/angleDoubleDown.js b/dist/fa/angleDoubleDown.js
new file mode 100644
index 000000000..d55dd008b
--- /dev/null
+++ b/dist/fa/angleDoubleDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angleDoubleDown = void 0;
+var angleDoubleDown = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1075 864q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23zM1075 480q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"
+ }
+ }]
+};
+exports.angleDoubleDown = angleDoubleDown;
\ No newline at end of file
diff --git a/dist/fa/angleDoubleLeft.js b/dist/fa/angleDoubleLeft.js
new file mode 100644
index 000000000..a2cf9496d
--- /dev/null
+++ b/dist/fa/angleDoubleLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angleDoubleLeft = void 0;
+var angleDoubleLeft = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M627 1376q0 13-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23zM1011 1376q0 13-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23z"
+ }
+ }]
+};
+exports.angleDoubleLeft = angleDoubleLeft;
\ No newline at end of file
diff --git a/dist/fa/angleDoubleRight.js b/dist/fa/angleDoubleRight.js
new file mode 100644
index 000000000..bbb96f525
--- /dev/null
+++ b/dist/fa/angleDoubleRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angleDoubleRight = void 0;
+var angleDoubleRight = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M595 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23zM979 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z"
+ }
+ }]
+};
+exports.angleDoubleRight = angleDoubleRight;
\ No newline at end of file
diff --git a/dist/fa/angleDoubleUp.js b/dist/fa/angleDoubleUp.js
new file mode 100644
index 000000000..98ce07c8f
--- /dev/null
+++ b/dist/fa/angleDoubleUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angleDoubleUp = void 0;
+var angleDoubleUp = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1075 1312q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23zM1075 928q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"
+ }
+ }]
+};
+exports.angleDoubleUp = angleDoubleUp;
\ No newline at end of file
diff --git a/dist/fa/angleDown.js b/dist/fa/angleDown.js
new file mode 100644
index 000000000..abe93b2b1
--- /dev/null
+++ b/dist/fa/angleDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angleDown = void 0;
+var angleDown = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1075 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"
+ }
+ }]
+};
+exports.angleDown = angleDown;
\ No newline at end of file
diff --git a/dist/fa/angleLeft.js b/dist/fa/angleLeft.js
new file mode 100644
index 000000000..6c822f033
--- /dev/null
+++ b/dist/fa/angleLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angleLeft = void 0;
+var angleLeft = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M627 544q0 13-10 23l-393 393 393 393q10 10 10 23t-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23z"
+ }
+ }]
+};
+exports.angleLeft = angleLeft;
\ No newline at end of file
diff --git a/dist/fa/angleRight.js b/dist/fa/angleRight.js
new file mode 100644
index 000000000..2f64c1dab
--- /dev/null
+++ b/dist/fa/angleRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angleRight = void 0;
+var angleRight = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M595 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z"
+ }
+ }]
+};
+exports.angleRight = angleRight;
\ No newline at end of file
diff --git a/dist/fa/angleUp.js b/dist/fa/angleUp.js
new file mode 100644
index 000000000..2ff4ba45b
--- /dev/null
+++ b/dist/fa/angleUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angleUp = void 0;
+var angleUp = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1075 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"
+ }
+ }]
+};
+exports.angleUp = angleUp;
\ No newline at end of file
diff --git a/dist/fa/apple.js b/dist/fa/apple.js
new file mode 100644
index 000000000..501ec7989
--- /dev/null
+++ b/dist/fa/apple.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.apple = void 0;
+var apple = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1393 1215q-39 125-123 250-129 196-257 196-49 0-140-32-86-32-151-32-61 0-142 33-81 34-132 34-152 0-301-259-147-261-147-503 0-228 113-374 113-144 284-144 72 0 177 30 104 30 138 30 45 0 143-34 102-34 173-34 119 0 213 65 52 36 104 100-79 67-114 118-65 94-65 207 0 124 69 223t158 126zM1017 42q0 61-29 136-30 75-93 138-54 54-108 72-37 11-104 17 3-149 78-257 74-107 250-148 1 3 2.5 11t2.5 11q0 4 0.5 10t0.5 10z"
+ }
+ }]
+};
+exports.apple = apple;
\ No newline at end of file
diff --git a/dist/fa/archive.js b/dist/fa/archive.js
new file mode 100644
index 000000000..b79659dbe
--- /dev/null
+++ b/dist/fa/archive.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.archive = void 0;
+var archive = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 832q0-26-19-45t-45-19h-256q-26 0-45 19t-19 45 19 45 45 19h256q26 0 45-19t19-45zM1664 640v960q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-960q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1728 192v256q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1536q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.archive = archive;
\ No newline at end of file
diff --git a/dist/fa/areaChart.js b/dist/fa/areaChart.js
new file mode 100644
index 000000000..637f910ed
--- /dev/null
+++ b/dist/fa/areaChart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.areaChart = void 0;
+var areaChart = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2048 1536v128h-2048v-1536h128v1408h1920zM1664 512l256 896h-1664v-576l448-576 576 576z"
+ }
+ }]
+};
+exports.areaChart = areaChart;
\ No newline at end of file
diff --git a/dist/fa/arrowCircleDown.js b/dist/fa/arrowCircleDown.js
new file mode 100644
index 000000000..3f64eee17
--- /dev/null
+++ b/dist/fa/arrowCircleDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowCircleDown = void 0;
+var arrowCircleDown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1284 897q0-27-18-45l-91-91q-18-18-45-18t-45 18l-189 189v-502q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v502l-189-189q-19-19-45-19t-45 19l-91 91q-18 18-18 45t18 45l362 362 91 91q18 18 45 18t45-18l91-91 362-362q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleDown = arrowCircleDown;
\ No newline at end of file
diff --git a/dist/fa/arrowCircleLeft.js b/dist/fa/arrowCircleLeft.js
new file mode 100644
index 000000000..306c577c7
--- /dev/null
+++ b/dist/fa/arrowCircleLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowCircleLeft = void 0;
+var arrowCircleLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 960v-128q0-26-19-45t-45-19h-502l189-189q19-19 19-45t-19-45l-91-91q-18-18-45-18t-45 18l-362 362-91 91q-18 18-18 45t18 45l91 91 362 362q18 18 45 18t45-18l91-91q18-18 18-45t-18-45l-189-189h502q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleLeft = arrowCircleLeft;
\ No newline at end of file
diff --git a/dist/fa/arrowCircleODown.js b/dist/fa/arrowCircleODown.js
new file mode 100644
index 000000000..d94049efe
--- /dev/null
+++ b/dist/fa/arrowCircleODown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowCircleODown = void 0;
+var arrowCircleODown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1120 928q0 12-10 24l-319 319q-11 9-23 9t-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-352q0-14 9-23t23-9h192q14 0 23 9t9 23v352h192q14 0 23 9t9 23zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleODown = arrowCircleODown;
\ No newline at end of file
diff --git a/dist/fa/arrowCircleOLeft.js b/dist/fa/arrowCircleOLeft.js
new file mode 100644
index 000000000..984d2a280
--- /dev/null
+++ b/dist/fa/arrowCircleOLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowCircleOLeft = void 0;
+var arrowCircleOLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 800v192q0 13-9.5 22.5t-22.5 9.5h-352v192q0 14-9 23t-23 9q-12 0-24-10l-319-319q-9-9-9-23t9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h352q13 0 22.5 9.5t9.5 22.5zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleOLeft = arrowCircleOLeft;
\ No newline at end of file
diff --git a/dist/fa/arrowCircleORight.js b/dist/fa/arrowCircleORight.js
new file mode 100644
index 000000000..56a858c2c
--- /dev/null
+++ b/dist/fa/arrowCircleORight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowCircleORight = void 0;
+var arrowCircleORight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 896q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-352q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h352v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleORight = arrowCircleORight;
\ No newline at end of file
diff --git a/dist/fa/arrowCircleOUp.js b/dist/fa/arrowCircleOUp.js
new file mode 100644
index 000000000..1d0fff0b2
--- /dev/null
+++ b/dist/fa/arrowCircleOUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowCircleOUp = void 0;
+var arrowCircleOUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1118 876q-8 20-30 20h-192v352q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-352h-192q-14 0-23-9t-9-23q0-12 10-24l319-319q11-9 23-9t23 9l320 320q15 16 7 35zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleOUp = arrowCircleOUp;
\ No newline at end of file
diff --git a/dist/fa/arrowCircleRight.js b/dist/fa/arrowCircleRight.js
new file mode 100644
index 000000000..467af4676
--- /dev/null
+++ b/dist/fa/arrowCircleRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowCircleRight = void 0;
+var arrowCircleRight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1285 896q0-27-18-45l-91-91-362-362q-18-18-45-18t-45 18l-91 91q-18 18-18 45t18 45l189 189h-502q-26 0-45 19t-19 45v128q0 26 19 45t45 19h502l-189 189q-19 19-19 45t19 45l91 91q18 18 45 18t45-18l362-362 91-91q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleRight = arrowCircleRight;
\ No newline at end of file
diff --git a/dist/fa/arrowCircleUp.js b/dist/fa/arrowCircleUp.js
new file mode 100644
index 000000000..73efca80c
--- /dev/null
+++ b/dist/fa/arrowCircleUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowCircleUp = void 0;
+var arrowCircleUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1284 895q0-27-18-45l-362-362-91-91q-18-18-45-18t-45 18l-91 91-362 362q-18 18-18 45t18 45l91 91q18 18 45 18t45-18l189-189v502q0 26 19 45t45 19h128q26 0 45-19t19-45v-502l189 189q19 19 45 19t45-19l91-91q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleUp = arrowCircleUp;
\ No newline at end of file
diff --git a/dist/fa/arrowDown.js b/dist/fa/arrowDown.js
new file mode 100644
index 000000000..924118d20
--- /dev/null
+++ b/dist/fa/arrowDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDown = void 0;
+var arrowDown = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1611 832q0 53-37 90l-651 652q-39 37-91 37-53 0-90-37l-651-652q-38-36-38-90 0-53 38-91l74-75q39-37 91-37 53 0 90 37l294 294v-704q0-52 38-90t90-38h128q52 0 90 38t38 90v704l294-294q37-37 90-37 52 0 91 37l75 75q37 39 37 91z"
+ }
+ }]
+};
+exports.arrowDown = arrowDown;
\ No newline at end of file
diff --git a/dist/fa/arrowLeft.js b/dist/fa/arrowLeft.js
new file mode 100644
index 000000000..bb242aa82
--- /dev/null
+++ b/dist/fa/arrowLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowLeft = void 0;
+var arrowLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896v128q0 53-32.5 90.5t-84.5 37.5h-704l293 294q38 36 38 90t-38 90l-75 76q-37 37-90 37-52 0-91-37l-651-652q-37-37-37-90 0-52 37-91l651-650q38-38 91-38 52 0 90 38l75 74q38 38 38 91t-38 91l-293 293h704q52 0 84.5 37.5t32.5 90.5z"
+ }
+ }]
+};
+exports.arrowLeft = arrowLeft;
\ No newline at end of file
diff --git a/dist/fa/arrowRight.js b/dist/fa/arrowRight.js
new file mode 100644
index 000000000..4fc0c9448
--- /dev/null
+++ b/dist/fa/arrowRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowRight = void 0;
+var arrowRight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1472 960q0 54-37 91l-651 651q-39 37-91 37-51 0-90-37l-75-75q-38-38-38-91t38-91l293-293h-704q-52 0-84.5-37.5t-32.5-90.5v-128q0-53 32.5-90.5t84.5-37.5h704l-293-294q-38-36-38-90t38-90l75-75q38-38 90-38 53 0 91 38l651 651q37 35 37 90z"
+ }
+ }]
+};
+exports.arrowRight = arrowRight;
\ No newline at end of file
diff --git a/dist/fa/arrowUp.js b/dist/fa/arrowUp.js
new file mode 100644
index 000000000..caac4a786
--- /dev/null
+++ b/dist/fa/arrowUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUp = void 0;
+var arrowUp = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1611 971q0 51-37 90l-75 75q-38 38-91 38-54 0-90-38l-294-293v704q0 52-37.5 84.5t-90.5 32.5h-128q-53 0-90.5-32.5t-37.5-84.5v-704l-294 293q-36 38-90 38t-90-38l-75-75q-38-38-38-90 0-53 38-91l651-651q35-37 90-37 54 0 91 37l651 651q37 39 37 91z"
+ }
+ }]
+};
+exports.arrowUp = arrowUp;
\ No newline at end of file
diff --git a/dist/fa/arrows.js b/dist/fa/arrows.js
new file mode 100644
index 000000000..19702acf1
--- /dev/null
+++ b/dist/fa/arrows.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows = void 0;
+var arrows = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-384v384h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-384h-384v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h384v-384h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45t-19 45-45 19h-128v384h384v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z"
+ }
+ }]
+};
+exports.arrows = arrows;
\ No newline at end of file
diff --git a/dist/fa/arrowsAlt.js b/dist/fa/arrowsAlt.js
new file mode 100644
index 000000000..685b87475
--- /dev/null
+++ b/dist/fa/arrowsAlt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowsAlt = void 0;
+var arrowsAlt = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1283 541l-355 355 355 355 144-144q29-31 70-14 39 17 39 59v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l144-144-355-355-355 355 144 144q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l144 144 355-355-355-355-144 144q-19 19-45 19-12 0-24-5-40-17-40-59v-448q0-26 19-45t45-19h448q42 0 59 40 17 39-14 69l-144 144 355 355 355-355-144-144q-31-30-14-69 17-40 59-40h448q26 0 45 19t19 45v448q0 42-39 59-13 5-25 5-26 0-45-19z"
+ }
+ }]
+};
+exports.arrowsAlt = arrowsAlt;
\ No newline at end of file
diff --git a/dist/fa/arrowsH.js b/dist/fa/arrowsH.js
new file mode 100644
index 000000000..1f072f3eb
--- /dev/null
+++ b/dist/fa/arrowsH.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowsH = void 0;
+var arrowsH = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-1024v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h1024v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z"
+ }
+ }]
+};
+exports.arrowsH = arrowsH;
\ No newline at end of file
diff --git a/dist/fa/arrowsV.js b/dist/fa/arrowsV.js
new file mode 100644
index 000000000..fbc313931
--- /dev/null
+++ b/dist/fa/arrowsV.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowsV = void 0;
+var arrowsV = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 320q0 26-19 45t-45 19h-128v1024h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-1024h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45z"
+ }
+ }]
+};
+exports.arrowsV = arrowsV;
\ No newline at end of file
diff --git a/dist/fa/aslInterpreting.js b/dist/fa/aslInterpreting.js
new file mode 100644
index 000000000..86231f8f1
--- /dev/null
+++ b/dist/fa/aslInterpreting.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.aslInterpreting = void 0;
+var aslInterpreting = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1032 960q-59-2-84-55-17-34-48-53.5t-68-19.5q-53 0-90.5 37.5t-37.5 90.5q0 56 36 89l10 8q34 31 82 31 37 0 68-19.5t48-53.5q25-53 84-55zM1600 832q0-56-36-89l-10-8q-34-31-82-31-37 0-68 19.5t-48 53.5q-25 53-84 55 59 2 84 55 17 34 48 53.5t68 19.5q53 0 90.5-37.5t37.5-90.5zM1174 611q-17 35-55 48t-73-4q-62-31-134-31-51 0-99 17 3 0 9.5-0.5t9.5-0.5q92 0 170.5 50t118.5 133q17 36 3.5 73.5t-49.5 54.5q-18 9-39 9 21 0 39 9 36 17 49.5 54.5t-3.5 73.5q-40 83-118.5 133t-170.5 50h-6q-16-2-44-4l-290-27-239 120q-14 7-29 7-40 0-57-35l-160-320q-11-23-4-47.5t29-37.5l209-119 148-267q17-155 91.5-291.5t195.5-236.5q31-25 70.5-21.5t64.5 34.5 21.5 70-34.5 65q-70 59-117 128 123-84 267-101 40-5 71.5 19t35.5 64q5 40-19 71.5t-64 35.5q-84 10-159 55 46-10 99-10 115 0 218 50 36 18 49 55.5t-5 73.5zM2137 451l160 320q11 23 4 47.5t-29 37.5l-209 119-148 267q-17 155-91.5 291.5t-195.5 236.5q-26 22-61 22-45 0-74-35-25-31-21.5-70t34.5-65q70-59 117-128-123 84-267 101-4 1-12 1-36 0-63.5-24t-31.5-60q-5-40 19-71.5t64-35.5q84-10 159-55-46 10-99 10-115 0-218-50-36-18-49-55.5t5-73.5q17-35 55-48t73 4q62 31 134 31 51 0 99-17-3 0-9.5 0.5t-9.5 0.5q-92 0-170.5-50t-118.5-133q-17-36-3.5-73.5t49.5-54.5q18-9 39-9-21 0-39-9-36-17-49.5-54.5t3.5-73.5q40-83 118.5-133t170.5-50h6 1q14 2 42 4l291 27 239-120q14-7 29-7 40 0 57 35z"
+ }
+ }]
+};
+exports.aslInterpreting = aslInterpreting;
\ No newline at end of file
diff --git a/dist/fa/assistiveListeningSystems.js b/dist/fa/assistiveListeningSystems.js
new file mode 100644
index 000000000..c9ba415b2
--- /dev/null
+++ b/dist/fa/assistiveListeningSystems.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.assistiveListeningSystems = void 0;
+var assistiveListeningSystems = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128 1728q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM320 1536q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM365 1171l256 256-90 90-256-256zM704 1152q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1411 832q0 59-11.5 108.5t-37.5 93.5-44 67.5-53 64.5q-31 35-45.5 54t-33.5 50-26.5 64-7.5 74q0 159-112.5 271.5t-271.5 112.5q-26 0-45-19t-19-45 19-45 45-19q106 0 181-75t75-181q0-57 11.5-105.5t37-91 43.5-66.5 52-63q40-46 59.5-72t37.5-74.5 18-103.5q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5q0 26-19 45t-45 19-45-19-19-45q0-117 45.5-223.5t123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5zM896 960q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1184 832q0 26-19 45t-45 19-45-19-19-45q0-93-65.5-158.5t-158.5-65.5q-92 0-158 65.5t-66 158.5q0 26-19 45t-45 19-45-19-19-45q0-146 103-249t249-103 249 103 103 249zM1578 543q10 25-1 49t-36 34q-9 4-23 4-19 0-35.5-11t-23.5-30q-68-178-224-295-21-16-25-42t12-47q17-21 43-25t47 12q183 137 266 351zM1788 462q9 25-1.5 49t-35.5 34q-11 4-23 4-44 0-60-41-92-238-297-393-22-16-25.5-42t12.5-47q16-22 42-25.5t47 12.5q235 175 341 449z"
+ }
+ }]
+};
+exports.assistiveListeningSystems = assistiveListeningSystems;
\ No newline at end of file
diff --git a/dist/fa/asterisk.js b/dist/fa/asterisk.js
new file mode 100644
index 000000000..811d4c9d2
--- /dev/null
+++ b/dist/fa/asterisk.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.asterisk = void 0;
+var asterisk = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1482 1050q46 26 59.5 77.5t-12.5 97.5l-64 110q-26 46-77.5 59.5t-97.5-12.5l-266-153v307q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-307l-266 153q-46 26-97.5 12.5t-77.5-59.5l-64-110q-26-46-12.5-97.5t59.5-77.5l266-154-266-154q-46-26-59.5-77.5t12.5-97.5l64-110q26-46 77.5-59.5t97.5 12.5l266 153v-307q0-52 38-90t90-38h128q52 0 90 38t38 90v307l266-153q46-26 97.5-12.5t77.5 59.5l64 110q26 46 12.5 97.5t-59.5 77.5l-266 154z"
+ }
+ }]
+};
+exports.asterisk = asterisk;
\ No newline at end of file
diff --git a/dist/fa/at.js b/dist/fa/at.js
new file mode 100644
index 000000000..154739657
--- /dev/null
+++ b/dist/fa/at.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.at = void 0;
+var at = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M972 775q0-108-53.5-169t-147.5-61q-63 0-124 30.5t-110 84.5-79.5 137-30.5 180q0 112 53.5 173t150.5 61q96 0 176-66.5t122.5-166 42.5-203.5zM1536 896q0 111-37 197t-98.5 135-131.5 74.5-145 27.5q-6 0-15.5 0.5t-16.5 0.5q-95 0-142-53-28-33-33-83-52 66-131.5 110t-173.5 44q-161 0-249.5-95.5t-88.5-269.5q0-157 66-290t179-210.5 246-77.5q87 0 155 35.5t106 99.5l2-19 11-56q1-6 5.5-12t9.5-6h118q5 0 13 11 5 5 3 16l-120 614q-5 24-5 48 0 39 12.5 52t44.5 13q28-1 57-5.5t73-24 77-50 57-89.5 24-137q0-292-174-466t-466-174q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51q228 0 405-144 11-9 24-8t21 12l41 49q8 12 7 24-2 13-12 22-102 83-227.5 128t-258.5 45q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q344 0 556 212t212 556z"
+ }
+ }]
+};
+exports.at = at;
\ No newline at end of file
diff --git a/dist/fa/audioDescription.js b/dist/fa/audioDescription.js
new file mode 100644
index 000000000..99ad75392
--- /dev/null
+++ b/dist/fa/audioDescription.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.audioDescription = void 0;
+var audioDescription = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M504 994h171l-1-265zM1530 895q0-87-50.5-140t-146.5-53h-54v388h52q91 0 145-57t54-138zM956 518l1 756q0 14-9.5 24t-23.5 10h-216q-14 0-23.5-10t-9.5-24v-62h-291l-55 81q-10 15-28 15h-267q-21 0-30.5-18t3.5-35l556-757q9-14 27-14h332q14 0 24 10t10 24zM1783 895q0 193-125.5 303t-324.5 110h-270q-14 0-24-10t-10-24v-756q0-14 10-24t24-10h268q200 0 326 109t126 302zM1939 896q0 11-0.5 29t-8 71.5-21.5 102-44.5 108-73.5 102.5h-51q38-45 66.5-104.5t41.5-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-20-91.5-41-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 10.5 70.5zM2123 896q0 11-0.5 29t-8 71.5-21.5 102-45 108-74 102.5h-51q38-45 66.5-104.5t41.5-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-19.5-91.5-40.5-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 10.5 70.5zM2304 896q0 11-0.5 29t-8 71.5-21.5 102-44.5 108-73.5 102.5h-51q38-45 66-104.5t41-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-19.5-91.5-40.5-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 9.5 70.5z"
+ }
+ }]
+};
+exports.audioDescription = audioDescription;
\ No newline at end of file
diff --git a/dist/fa/automobile.js b/dist/fa/automobile.js
new file mode 100644
index 000000000..4fb60321e
--- /dev/null
+++ b/dist/fa/automobile.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.automobile = void 0;
+var automobile = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM516 768h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1888 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM2048 992v384q0 14-9 23t-23 9h-96v128q0 80-56 136t-136 56-136-56-56-136v-128h-1024v128q0 80-56 136t-136 56-136-56-56-136v-128h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h768q98 0 179 63.5t104 157.5l105 419h28q93 0 158.5 65.5t65.5 158.5z"
+ }
+ }]
+};
+exports.automobile = automobile;
\ No newline at end of file
diff --git a/dist/fa/backward.js b/dist/fa/backward.js
new file mode 100644
index 000000000..0d16871f1
--- /dev/null
+++ b/dist/fa/backward.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.backward = void 0;
+var backward = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1619 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v710q0 26-13 32t-32-13l-710-710q-19-19-19-45t19-45l710-710q19-19 32-13t13 32v710q4-10 13-19z"
+ }
+ }]
+};
+exports.backward = backward;
\ No newline at end of file
diff --git a/dist/fa/balanceScale.js b/dist/fa/balanceScale.js
new file mode 100644
index 000000000..d54eaa1e9
--- /dev/null
+++ b/dist/fa/balanceScale.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.balanceScale = void 0;
+var balanceScale = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1728 448l-384 704h768zM448 448l-384 704h768zM1269 256q-14 40-45.5 71.5t-71.5 45.5v1291h608q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1344q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h608v-1291q-40-14-71.5-45.5t-45.5-71.5h-491q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h491q21-57 70-92.5t111-35.5 111 35.5 70 92.5h491q14 0 23 9t9 23v64q0 14-9 23t-23 9h-491zM1088 272q33 0 56.5-23.5t23.5-56.5-23.5-56.5-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5zM2176 1152q0 73-46.5 131t-117.5 91-144.5 49.5-139.5 16.5-139.5-16.5-144.5-49.5-117.5-91-46.5-131q0-11 35-81t92-174.5 107-195.5 102-184 56-100q18-33 56-33t56 33q4 7 56 100t102 184 107 195.5 92 174.5 35 81zM896 1152q0 73-46.5 131t-117.5 91-144.5 49.5-139.5 16.5-139.5-16.5-144.5-49.5-117.5-91-46.5-131q0-11 35-81t92-174.5 107-195.5 102-184 56-100q18-33 56-33t56 33q4 7 56 100t102 184 107 195.5 92 174.5 35 81z"
+ }
+ }]
+};
+exports.balanceScale = balanceScale;
\ No newline at end of file
diff --git a/dist/fa/ban.js b/dist/fa/ban.js
new file mode 100644
index 000000000..2e4bcb7c4
--- /dev/null
+++ b/dist/fa/ban.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ban = void 0;
+var ban = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1312 893q0-161-87-295l-754 753q137 89 297 89 111 0 211.5-43.5t173.5-116.5 116-174.5 43-212.5zM313 1192l755-754q-135-91-300-91-148 0-273 73t-198 199-73 274q0 162 89 299zM1536 893q0 157-61 300t-163.5 246-245 164-298.5 61-298.5-61-245-164-163.5-246-61-300 61-299.5 163.5-245.5 245-164 298.5-61 298.5 61 245 164 163.5 245.5 61 299.5z"
+ }
+ }]
+};
+exports.ban = ban;
\ No newline at end of file
diff --git a/dist/fa/bandcamp.js b/dist/fa/bandcamp.js
new file mode 100644
index 000000000..28ac84382
--- /dev/null
+++ b/dist/fa/bandcamp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bandcamp = void 0;
+var bandcamp = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1070 1178l306-564h-654l-306 564h654zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.bandcamp = bandcamp;
\ No newline at end of file
diff --git a/dist/fa/bank.js b/dist/fa/bank.js
new file mode 100644
index 000000000..202f8a637
--- /dev/null
+++ b/dist/fa/bank.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bank = void 0;
+var bank = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z"
+ }
+ }]
+};
+exports.bank = bank;
\ No newline at end of file
diff --git a/dist/fa/barChart.js b/dist/fa/barChart.js
new file mode 100644
index 000000000..e87197781
--- /dev/null
+++ b/dist/fa/barChart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.barChart = void 0;
+var barChart = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 896v512h-256v-512h256zM1024 384v1024h-256v-1024h256zM2048 1536v128h-2048v-1536h128v1408h1920zM1408 640v768h-256v-768h256zM1792 256v1152h-256v-1152h256z"
+ }
+ }]
+};
+exports.barChart = barChart;
\ No newline at end of file
diff --git a/dist/fa/barChartO.js b/dist/fa/barChartO.js
new file mode 100644
index 000000000..46241dad5
--- /dev/null
+++ b/dist/fa/barChartO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.barChartO = void 0;
+var barChartO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 896v512h-256v-512h256zM1024 384v1024h-256v-1024h256zM2048 1536v128h-2048v-1536h128v1408h1920zM1408 640v768h-256v-768h256zM1792 256v1152h-256v-1152h256z"
+ }
+ }]
+};
+exports.barChartO = barChartO;
\ No newline at end of file
diff --git a/dist/fa/barcode.js b/dist/fa/barcode.js
new file mode 100644
index 000000000..b02421876
--- /dev/null
+++ b/dist/fa/barcode.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.barcode = void 0;
+var barcode = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63 1536h-63v-1408h63v1408zM126 1535h-32v-1407h32v1407zM220 1535h-31v-1407h31v1407zM377 1535h-31v-1407h31v1407zM534 1535h-62v-1407h62v1407zM660 1535h-31v-1407h31v1407zM723 1535h-31v-1407h31v1407zM786 1535h-31v-1407h31v1407zM943 1535h-63v-1407h63v1407zM1100 1535h-63v-1407h63v1407zM1226 1535h-63v-1407h63v1407zM1352 1535h-63v-1407h63v1407zM1446 1535h-63v-1407h63v1407zM1635 1535h-94v-1407h94v1407zM1698 1535h-32v-1407h32v1407zM1792 1536h-63v-1408h63v1408z"
+ }
+ }]
+};
+exports.barcode = barcode;
\ No newline at end of file
diff --git a/dist/fa/bars.js b/dist/fa/bars.js
new file mode 100644
index 000000000..001096630
--- /dev/null
+++ b/dist/fa/bars.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bars = void 0;
+var bars = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.bars = bars;
\ No newline at end of file
diff --git a/dist/fa/bath.js b/dist/fa/bath.js
new file mode 100644
index 000000000..b65e79acf
--- /dev/null
+++ b/dist/fa/bath.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bath = void 0;
+var bath = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z"
+ }
+ }]
+};
+exports.bath = bath;
\ No newline at end of file
diff --git a/dist/fa/bathtub.js b/dist/fa/bathtub.js
new file mode 100644
index 000000000..11ba1b936
--- /dev/null
+++ b/dist/fa/bathtub.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bathtub = void 0;
+var bathtub = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z"
+ }
+ }]
+};
+exports.bathtub = bathtub;
\ No newline at end of file
diff --git a/dist/fa/battery.js b/dist/fa/battery.js
new file mode 100644
index 000000000..527db2690
--- /dev/null
+++ b/dist/fa/battery.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery = void 0;
+var battery = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.battery = battery;
\ No newline at end of file
diff --git a/dist/fa/battery0.js b/dist/fa/battery0.js
new file mode 100644
index 000000000..effe57f84
--- /dev/null
+++ b/dist/fa/battery0.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery0 = void 0;
+var battery0 = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.battery0 = battery0;
\ No newline at end of file
diff --git a/dist/fa/battery1.js b/dist/fa/battery1.js
new file mode 100644
index 000000000..d4758500c
--- /dev/null
+++ b/dist/fa/battery1.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery1 = void 0;
+var battery1 = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h512v768h-512zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.battery1 = battery1;
\ No newline at end of file
diff --git a/dist/fa/battery2.js b/dist/fa/battery2.js
new file mode 100644
index 000000000..2cf7a3050
--- /dev/null
+++ b/dist/fa/battery2.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery2 = void 0;
+var battery2 = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h896v768h-896zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.battery2 = battery2;
\ No newline at end of file
diff --git a/dist/fa/battery3.js b/dist/fa/battery3.js
new file mode 100644
index 000000000..53821d383
--- /dev/null
+++ b/dist/fa/battery3.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery3 = void 0;
+var battery3 = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h1280v768h-1280zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.battery3 = battery3;
\ No newline at end of file
diff --git a/dist/fa/battery4.js b/dist/fa/battery4.js
new file mode 100644
index 000000000..4bfe3cb51
--- /dev/null
+++ b/dist/fa/battery4.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery4 = void 0;
+var battery4 = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.battery4 = battery4;
\ No newline at end of file
diff --git a/dist/fa/batteryEmpty.js b/dist/fa/batteryEmpty.js
new file mode 100644
index 000000000..3b5a0ddaf
--- /dev/null
+++ b/dist/fa/batteryEmpty.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryEmpty = void 0;
+var batteryEmpty = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.batteryEmpty = batteryEmpty;
\ No newline at end of file
diff --git a/dist/fa/batteryFull.js b/dist/fa/batteryFull.js
new file mode 100644
index 000000000..6795ea5e6
--- /dev/null
+++ b/dist/fa/batteryFull.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryFull = void 0;
+var batteryFull = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.batteryFull = batteryFull;
\ No newline at end of file
diff --git a/dist/fa/batteryHalf.js b/dist/fa/batteryHalf.js
new file mode 100644
index 000000000..3f34d06df
--- /dev/null
+++ b/dist/fa/batteryHalf.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryHalf = void 0;
+var batteryHalf = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h896v768h-896zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.batteryHalf = batteryHalf;
\ No newline at end of file
diff --git a/dist/fa/batteryQuarter.js b/dist/fa/batteryQuarter.js
new file mode 100644
index 000000000..ef12e4770
--- /dev/null
+++ b/dist/fa/batteryQuarter.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryQuarter = void 0;
+var batteryQuarter = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h512v768h-512zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.batteryQuarter = batteryQuarter;
\ No newline at end of file
diff --git a/dist/fa/batteryThreeQuarters.js b/dist/fa/batteryThreeQuarters.js
new file mode 100644
index 000000000..0923aafc4
--- /dev/null
+++ b/dist/fa/batteryThreeQuarters.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryThreeQuarters = void 0;
+var batteryThreeQuarters = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h1280v768h-1280zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.batteryThreeQuarters = batteryThreeQuarters;
\ No newline at end of file
diff --git a/dist/fa/bed.js b/dist/fa/bed.js
new file mode 100644
index 000000000..8aad210ed
--- /dev/null
+++ b/dist/fa/bed.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bed = void 0;
+var bed = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1024h1728q26 0 45 19t19 45v448h-256v-256h-1536v256h-256v-1216q0-26 19-45t45-19h128q26 0 45 19t19 45v704zM832 704q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM2048 960v-64q0-159-112.5-271.5t-271.5-112.5h-704q-26 0-45 19t-19 45v384h1152z"
+ }
+ }]
+};
+exports.bed = bed;
\ No newline at end of file
diff --git a/dist/fa/beer.js b/dist/fa/beer.js
new file mode 100644
index 000000000..faf879e19
--- /dev/null
+++ b/dist/fa/beer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.beer = void 0;
+var beer = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 896v-384h-256v256q0 53 37.5 90.5t90.5 37.5h128zM1664 1344v192h-1152v-192l128-192h-128q-159 0-271.5-112.5t-112.5-271.5v-320l-64-64 32-128h480l32-128h960l32 192-64 32v800z"
+ }
+ }]
+};
+exports.beer = beer;
\ No newline at end of file
diff --git a/dist/fa/behance.js b/dist/fa/behance.js
new file mode 100644
index 000000000..4ce3fecd1
--- /dev/null
+++ b/dist/fa/behance.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.behance = void 0;
+var behance = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1848 339h-511v124h511v-124zM1596 765q-90 0-146 52.5t-62 142.5h408q-18-195-200-195zM1612 1350q63 0 122-32t76-87h221q-100 307-427 307-214 0-340.5-132t-126.5-347q0-208 130.5-345.5t336.5-137.5q138 0 240.5 68t153 179 50.5 248q0 17-2 47h-658q0 111 57.5 171.5t166.5 60.5zM277 1300h296q205 0 205-167 0-180-199-180h-302v347zM277 763h281q78 0 123.5-36.5t45.5-113.5q0-144-190-144h-260v294zM0 254h594q87 0 155 14t126.5 47.5 90 96.5 31.5 154q0 181-172 263 114 32 172 115t58 204q0 75-24.5 136.5t-66 103.5-98.5 71-121 42-134 13h-611v-1260z"
+ }
+ }]
+};
+exports.behance = behance;
\ No newline at end of file
diff --git a/dist/fa/behanceSquare.js b/dist/fa/behanceSquare.js
new file mode 100644
index 000000000..88aa1170a
--- /dev/null
+++ b/dist/fa/behanceSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.behanceSquare = void 0;
+var behanceSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM499 495h-371v787h382q117 0 197-57.5t80-170.5q0-158-143-200 107-52 107-164 0-57-19.5-96.5t-56.5-60.5-79-29.5-97-8.5zM477 813h-176v-184h163q119 0 119 90 0 94-106 94zM486 1148h-185v-217h189q124 0 124 113 0 104-128 104zM1136 1180q-68 0-104-38t-36-107h411q1-10 1-30 0-132-74.5-220.5t-203.5-88.5q-128 0-210 86t-82 216q0 135 79 217t213 82q205 0 267-191h-138q-11 34-47.5 54t-75.5 20zM1126 814q113 0 124 122h-254q4-56 39-89t91-33zM964 548h319v77h-319v-77z"
+ }
+ }]
+};
+exports.behanceSquare = behanceSquare;
\ No newline at end of file
diff --git a/dist/fa/bell.js b/dist/fa/bell.js
new file mode 100644
index 000000000..41fe5f2a4
--- /dev/null
+++ b/dist/fa/bell.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bell = void 0;
+var bell = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M912 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM1728 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-181-75-75-181h-448q-52 0-90-38t-38-90q50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 190 28 307 158.5t117 282.5q0 139 19.5 260t50 206 74.5 158.5 85 119.5 91 88z"
+ }
+ }]
+};
+exports.bell = bell;
\ No newline at end of file
diff --git a/dist/fa/bellO.js b/dist/fa/bellO.js
new file mode 100644
index 000000000..21bbec3de
--- /dev/null
+++ b/dist/fa/bellO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bellO = void 0;
+var bellO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M912 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM246 1408h1300q-266-300-266-832 0-51-24-105t-69-103-121.5-80.5-169.5-31.5-169.5 31.5-121.5 80.5-69 103-24 105q0 532-266 832zM1728 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-181-75-75-181h-448q-52 0-90-38t-38-90q50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 190 28 307 158.5t117 282.5q0 139 19.5 260t50 206 74.5 158.5 85 119.5 91 88z"
+ }
+ }]
+};
+exports.bellO = bellO;
\ No newline at end of file
diff --git a/dist/fa/bellSlash.js b/dist/fa/bellSlash.js
new file mode 100644
index 000000000..a9028a970
--- /dev/null
+++ b/dist/fa/bellSlash.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bellSlash = void 0;
+var bellSlash = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1558 852q61 356 298 556 0 52-38 90t-90 38h-448q0 106-75 181t-181 75-180.5-74.5-75.5-180.5zM1024 1712q16 0 16-16t-16-16q-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5zM2026 112q8 10 7.5 23.5t-10.5 22.5l-1872 1622q-10 8-23.5 7t-21.5-11l-84-96q-8-10-7.5-23.5t10.5-21.5l186-161q-19-32-19-66 50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 124 18 219 82.5t148 157.5l418-363q10-8 23.5-7t21.5 11z"
+ }
+ }]
+};
+exports.bellSlash = bellSlash;
\ No newline at end of file
diff --git a/dist/fa/bellSlashO.js b/dist/fa/bellSlashO.js
new file mode 100644
index 000000000..de0111219
--- /dev/null
+++ b/dist/fa/bellSlashO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bellSlashO = void 0;
+var bellSlashO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1040 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM503 1221l877-760q-42-88-132.5-146.5t-223.5-58.5q-93 0-169.5 31.5t-121.5 80.5-69 103-24 105q0 384-137 645zM1856 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-180.5-74.5-75.5-180.5l149-129h757q-166-187-227-459l111-97q61 356 298 556zM1942 16l84 96q8 10 7.5 23.5t-10.5 22.5l-1872 1622q-10 8-23.5 7t-21.5-11l-84-96q-8-10-7.5-23.5t10.5-21.5l186-161q-19-32-19-66 50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 124 18 219 82.5t148 157.5l418-363q10-8 23.5-7t21.5 11z"
+ }
+ }]
+};
+exports.bellSlashO = bellSlashO;
\ No newline at end of file
diff --git a/dist/fa/bicycle.js b/dist/fa/bicycle.js
new file mode 100644
index 000000000..992365e66
--- /dev/null
+++ b/dist/fa/bicycle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bicycle = void 0;
+var bicycle = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M762 1152h-314q-40 0-57.5-35t6.5-67l188-251q-65-31-137-31-132 0-226 94t-94 226 94 226 226 94q115 0 203-72.5t111-183.5zM576 1024h186q-18-85-75-148zM1056 1024l288-384h-480l-99 132q105 103 126 252h165zM2176 1088q0-132-94-226t-226-94q-60 0-121 24l174 260q15 23 10 49t-27 40q-15 11-36 11-35 0-53-29l-174-260q-93 95-93 225 0 132 94 226t226 94 226-94 94-226zM2304 1088q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-97 39.5-183.5t109.5-149.5l-65-98-353 469q-18 26-51 26h-197q-23 164-149 274t-294 110q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q114 0 215 55l137-183h-224q-26 0-45-19t-19-45 19-45 45-19h384v128h435l-85-128h-222q-26 0-45-19t-19-45 19-45 45-19h256q33 0 53 28l267 400q91-44 192-44 185 0 316.5 131.5t131.5 316.5z"
+ }
+ }]
+};
+exports.bicycle = bicycle;
\ No newline at end of file
diff --git a/dist/fa/binoculars.js b/dist/fa/binoculars.js
new file mode 100644
index 000000000..b52bf94e3
--- /dev/null
+++ b/dist/fa/binoculars.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.binoculars = void 0;
+var binoculars = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 320v768q0 26-19 45t-45 19v576q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-512l249-873q7-23 31-23h424zM1024 320v704h-256v-704h256zM1792 1216v512q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-576q-26 0-45-19t-19-45v-768h424q24 0 31 23zM736 32v224h-352v-224q0-14 9-23t23-9h288q14 0 23 9t9 23zM1408 32v224h-352v-224q0-14 9-23t23-9h288q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.binoculars = binoculars;
\ No newline at end of file
diff --git a/dist/fa/birthdayCake.js b/dist/fa/birthdayCake.js
new file mode 100644
index 000000000..d3daa0a50
--- /dev/null
+++ b/dist/fa/birthdayCake.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.birthdayCake = void 0;
+var birthdayCake = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1408v384h-1792v-384q45 0 85-14t59-27.5 47-37.5q30-27 51.5-38t56.5-11q24 0 44 7t31 15 33 27q29 25 47 38t58 27 86 14q45 0 85-14.5t58-27 48-37.5q21-19 32.5-27t31-15 43.5-7q35 0 56.5 11t51.5 38q28 24 47 37.5t59 27.5 85 14 85-14 59-27.5 47-37.5q30-27 51.5-38t56.5-11q34 0 55.5 11t51.5 38q28 24 47 37.5t59 27.5 85 14zM1792 1088v192q-24 0-44-7t-31-15-33-27q-29-25-47-38t-58-27-85-14q-46 0-86 14t-58 27-47 38q-22 19-33 27t-31 15-44 7q-35 0-56.5-11t-51.5-38q-29-25-47-38t-58-27-86-14q-45 0-85 14.5t-58 27-48 37.5q-21 19-32.5 27t-31 15-43.5 7q-35 0-56.5-11t-51.5-38q-28-24-47-37.5t-59-27.5-85-14q-46 0-86 14t-58 27-47 38q-30 27-51.5 38t-56.5 11v-192q0-80 56-136t136-56h64v-448h256v448h256v-448h256v448h256v-448h256v448h64q80 0 136 56t56 136zM512 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150zM1024 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150zM1536 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150z"
+ }
+ }]
+};
+exports.birthdayCake = birthdayCake;
\ No newline at end of file
diff --git a/dist/fa/bitbucket.js b/dist/fa/bitbucket.js
new file mode 100644
index 000000000..47fc1fc4b
--- /dev/null
+++ b/dist/fa/bitbucket.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bitbucket = void 0;
+var bitbucket = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M815 859q8 63-50.5 101t-111.5 6q-39-17-53.5-58t-0.5-82 52-58q36-18 72.5-12t64 35.5 27.5 67.5zM926 838q-14-107-113-164t-197-13q-63 28-100.5 88.5t-34.5 129.5q4 91 77.5 155t165.5 56q91-8 152-84t50-168zM1165 296q-20-27-56-44.5t-58-22-71-12.5q-291-47-566 2-43 7-66 12t-55 22-50 43q30 28 76 45.5t73.5 22 87.5 11.5q228 29 448 1 63-8 89.5-12t72.5-21.5 75-46.5zM1222 1331q-8 26-15.5 76.5t-14 84-28.5 70-58 56.5q-86 48-189.5 71.5t-202 22-201.5-18.5q-46-8-81.5-18t-76.5-27-73-43.5-52-61.5q-25-96-57-292l6-16 18-9q223 148 506.5 148t507.5-148q21 6 24 23t-5 45-8 37zM1403 370q-26 167-111 655-5 30-27 56t-43.5 40-54.5 31q-252 126-610 88-248-27-394-139-15-12-25.5-26.5t-17-35-9-34-6-39.5-5.5-35q-9-50-26.5-150t-28-161.5-23.5-147.5-22-158q3-26 17.5-48.5t31.5-37.5 45-30 46-22.5 48-18.5q125-46 313-64 379-37 676 50 155 46 215 122 16 20 16.5 51t-5.5 54z"
+ }
+ }]
+};
+exports.bitbucket = bitbucket;
\ No newline at end of file
diff --git a/dist/fa/bitbucketSquare.js b/dist/fa/bitbucketSquare.js
new file mode 100644
index 000000000..33927341f
--- /dev/null
+++ b/dist/fa/bitbucketSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bitbucketSquare = void 0;
+var bitbucketSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M848 870q0-43-41-66t-77-1q-43 20-42.5 72.5t43.5 70.5q39 23 81-4t36-72zM928 854q8 66-36 121t-110 61-119-40-56-113q-2-49 25.5-93t72.5-64q70-31 141.5 10t81.5 118zM1100 463q-20 21-53.5 34t-53 16-63.5 8q-155 20-324 0-44-6-63-9.5t-52.5-16-54.5-32.5q13-19 36-31t40-15.5 47-8.5q198-35 408-1 33 5 51 8.5t43 16 39 31.5zM1142 1209q0-7 5.5-26.5t3-32-17.5-16.5q-161 106-365 106t-366-106l-12 6-5 12q26 154 41 210 47 81 204 108 249 46 428-53 34-19 49-51.5t22.5-85.5 12.5-71zM1272 516q9-53-8-75-43-55-155-88-216-63-487-36-132 12-226 46-38 15-59.5 25t-47 34-29.5 54q8 68 19 138t29 171 24 137q1 5 5 31t7 36 12 27 22 28q105 80 284 100 259 28 440-63 24-13 39.5-23t31-29 19.5-40q48-267 80-473zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.bitbucketSquare = bitbucketSquare;
\ No newline at end of file
diff --git a/dist/fa/bitcoin.js b/dist/fa/bitcoin.js
new file mode 100644
index 000000000..70d7f101b
--- /dev/null
+++ b/dist/fa/bitcoin.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bitcoin = void 0;
+var bitcoin = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1167 640q18 182-131 258 117 28 175 103t45 214q-7 71-32.5 125t-64.5 89-97 58.5-121.5 34.5-145.5 15v255h-154v-251q-80 0-122-1v252h-154v-255q-18 0-54-0.5t-55-0.5h-200l31-183h111q50 0 58-51v-402h16q-6-1-16-1v-287q-13-68-89-68h-111v-164l212 1q64 0 97-1v-252h154v247q82-2 122-2v-245h154v252q79 7 140 22.5t113 45 82.5 78 36.5 114.5zM952 1185q0-36-15-64t-37-46-57.5-30.5-65.5-18.5-74-9-69-3-64.5 1-47.5 1v338q8 0 37 0.5t48 0.5 53-1.5 58.5-4 57-8.5 55.5-14 47.5-21 39.5-30 24.5-40 9.5-51zM881 709q0-33-12.5-58.5t-30.5-42-48-28-55-16.5-61.5-8-58-2.5-54 1-39.5 0.5v307q5 0 34.5 0.5t46.5 0 50-2 55-5.5 51.5-11 48.5-18.5 37-27 27-38.5 9-51z"
+ }
+ }]
+};
+exports.bitcoin = bitcoin;
\ No newline at end of file
diff --git a/dist/fa/blackTie.js b/dist/fa/blackTie.js
new file mode 100644
index 000000000..d29a6f520
--- /dev/null
+++ b/dist/fa/blackTie.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.blackTie = void 0;
+var blackTie = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 128h1536v1536h-1536v-1536zM1085 1243l-221-631 221-297h-634l221 297-221 631 317 304z"
+ }
+ }]
+};
+exports.blackTie = blackTie;
\ No newline at end of file
diff --git a/dist/fa/blind.js b/dist/fa/blind.js
new file mode 100644
index 000000000..a410920be
--- /dev/null
+++ b/dist/fa/blind.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.blind = void 0;
+var blind = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M366 311q-64 0-110-45.5t-46-110.5q0-64 46-109.5t110-45.5 109.5 45.5 45.5 109.5q0 65-45.5 110.5t-109.5 45.5zM917 953q0 50-30 67.5t-63.5 6.5-47.5-34l-367-438q-7-12-14-15.5t-11-1.5l-3 3q-7 8 4 21l122 139 1 354-161 457q-67 192-92 234-15 26-28 32-50 26-103 1-29-13-41.5-43t-9.5-57q2-17 197-618l5-416-85 164 35 222q4 24-1 42t-14 27.5-19 16-17 7.5l-7 2q-19 3-34.5-3t-24-16-14-22-7.5-19.5-2-9.5l-46-299 211-381q23-34 113-34 75 0 107 40l424 521q7 5 14 17l3 3-1 1q7 13 7 29zM514 1103q43 113 88.5 225t69.5 168l24 55q36 93 42 125 11 70-36 97-35 22-66 16t-51-22-29-35h-1q-6-16-8-25l-124-351zM1338 1695q31 49 31 57 0 5-3 7-9 5-14.5-0.5t-15.5-26-16-30.5q-114-172-423-661 3 1 7-1t7-4l3-2q11-9 11-17z"
+ }
+ }]
+};
+exports.blind = blind;
\ No newline at end of file
diff --git a/dist/fa/bluetooth.js b/dist/fa/bluetooth.js
new file mode 100644
index 000000000..a791e2ab6
--- /dev/null
+++ b/dist/fa/bluetooth.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bluetooth = void 0;
+var bluetooth = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M841 1053l148 148-149 149zM840 442l149 149-148 148zM710 1666l464-464-306-306 306-306-464-464v611l-255-255-93 93 320 321-320 321 93 93 255-255v611zM1429 896q0 209-32 365.5t-87.5 257-140.5 162.5-181.5 86.5-219.5 24.5-219.5-24.5-181.5-86.5-140.5-162.5-87.5-257-32-365.5 32-365.5 87.5-257 140.5-162.5 181.5-86.5 219.5-24.5 219.5 24.5 181.5 86.5 140.5 162.5 87.5 257 32 365.5z"
+ }
+ }]
+};
+exports.bluetooth = bluetooth;
\ No newline at end of file
diff --git a/dist/fa/bluetoothB.js b/dist/fa/bluetoothB.js
new file mode 100644
index 000000000..def607200
--- /dev/null
+++ b/dist/fa/bluetoothB.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bluetoothB = void 0;
+var bluetoothB = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M596 1423l173-172-173-172v344zM596 713l173-172-173-172v344zM628 896l356 356-539 540v-711l-297 296-108-108 372-373-372-373 108-108 297 296v-711l539 540z"
+ }
+ }]
+};
+exports.bluetoothB = bluetoothB;
\ No newline at end of file
diff --git a/dist/fa/bold.js b/dist/fa/bold.js
new file mode 100644
index 000000000..3e9f831af
--- /dev/null
+++ b/dist/fa/bold.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bold = void 0;
+var bold = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M555 1521q74 32 140 32 376 0 376-335 0-114-41-180-27-44-61.5-74t-67.5-46.5-80.5-25-84-10.5-94.5-2q-73 0-101 10 0 53-0.5 159t-0.5 158q0 8-1 67.5t-0.5 96.5 4.5 83.5 12 66.5zM541 775q42 7 109 7 82 0 143-13t110-44.5 74.5-89.5 25.5-142q0-70-29-122.5t-79-82-108-43.5-124-14q-50 0-130 13 0 50 4 151t4 152q0 27-0.5 80t-0.5 79q0 46 1 69zM0 1664l2-94q15-4 85-16t106-27q7-12 12.5-27t8.5-33.5 5.5-32.5 3-37.5 0.5-34v-35.5-30q0-982-22-1025-4-8-22-14.5t-44.5-11-49.5-7-48.5-4.5-30.5-3l-4-83q98-2 340-11.5t373-9.5q23 0 68 0.5t68 0.5q70 0 136.5 13t128.5 42 108 71 74 104.5 28 137.5q0 52-16.5 95.5t-39 72-64.5 57.5-73 45-84 40q154 35 256.5 134t102.5 248q0 100-35 179.5t-93.5 130.5-138 85.5-163.5 48.5-176 14q-44 0-132-3t-132-3q-106 0-307 11t-231 12z"
+ }
+ }]
+};
+exports.bold = bold;
\ No newline at end of file
diff --git a/dist/fa/bolt.js b/dist/fa/bolt.js
new file mode 100644
index 000000000..0477bdae9
--- /dev/null
+++ b/dist/fa/bolt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bolt = void 0;
+var bolt = {
+ "viewBox": "0 0 896 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M885 566q18 20 7 44l-540 1157q-13 25-42 25-4 0-14-2-17-5-25.5-19t-4.5-30l197-808-406 101q-4 1-12 1-18 0-31-11-18-15-13-39l201-825q4-14 16-23t28-9h328q19 0 32 12.5t13 29.5q0 8-5 18l-171 463 396-98q8-2 12-2 19 0 34 15z"
+ }
+ }]
+};
+exports.bolt = bolt;
\ No newline at end of file
diff --git a/dist/fa/bomb.js b/dist/fa/bomb.js
new file mode 100644
index 000000000..a4e8cb175
--- /dev/null
+++ b/dist/fa/bomb.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bomb = void 0;
+var bomb = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M571 589q-10-25-34-35t-49 0q-108 44-191 127t-127 191q-10 25 0 49t35 34q13 5 24 5 42 0 60-40 34-84 98.5-148.5t148.5-98.5q25-11 35-35t0-49zM1513 233l46 46-244 243 68 68q19 19 19 45.5t-19 45.5l-64 64q89 161 89 343 0 143-55.5 273.5t-150 225-225 150-273.5 55.5-273.5-55.5-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5q182 0 343 89l64-64q19-19 45.5-19t45.5 19l68 68zM1521 177q-10 10-22 10-13 0-23-10l-91-90q-9-10-9-23t9-23q10-9 23-9t23 9l90 91q10 9 10 22.5t-10 22.5zM1751 407q-11 9-23 9t-23-9l-90-91q-10-9-10-22.5t10-22.5q9-10 22.5-10t22.5 10l91 90q9 10 9 23t-9 23zM1792 224q0 14-9 23t-23 9h-96q-14 0-23-9t-9-23 9-23 23-9h96q14 0 23 9t9 23zM1600 32v96q0 14-9 23t-23 9-23-9-9-23v-96q0-14 9-23t23-9 23 9 9 23zM1751 87l-91 90q-10 10-22 10-13 0-23-10-10-9-10-22.5t10-22.5l90-91q10-9 23-9t23 9q9 10 9 23t-9 23z"
+ }
+ }]
+};
+exports.bomb = bomb;
\ No newline at end of file
diff --git a/dist/fa/book.js b/dist/fa/book.js
new file mode 100644
index 000000000..1569a62e6
--- /dev/null
+++ b/dist/fa/book.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.book = void 0;
+var book = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1639 478q40 57 18 129l-275 906q-19 64-76.5 107.5t-122.5 43.5h-923q-77 0-148.5-53.5t-99.5-131.5q-24-67-2-127 0-4 3-27t4-37q1-8-3-21.5t-3-19.5q2-11 8-21t16.5-23.5 16.5-23.5q23-38 45-91.5t30-91.5q3-10 0.5-30t-0.5-28q3-11 17-28t17-23q21-36 42-92t25-90q1-9-2.5-32t0.5-28q4-13 22-30.5t22-22.5q19-26 42.5-84.5t27.5-96.5q1-8-3-25.5t-2-26.5q2-8 9-18t18-23 17-21q8-12 16.5-30.5t15-35 16-36 19.5-32 26.5-23.5 36-11.5 47.5 5.5l-1 3q38-9 51-9h761q74 0 114 56t18 130l-274 906q-36 119-71.5 153.5t-128.5 34.5h-869q-27 0-38 15-11 16-1 43 24 70 144 70h923q29 0 56-15.5t35-41.5l300-987q7-22 5-57 38 15 59 43zM575 480q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5zM492 736q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5z"
+ }
+ }]
+};
+exports.book = book;
\ No newline at end of file
diff --git a/dist/fa/bookmark.js b/dist/fa/bookmark.js
new file mode 100644
index 000000000..665466c1b
--- /dev/null
+++ b/dist/fa/bookmark.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookmark = void 0;
+var bookmark = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1164 128q23 0 44 9 33 13 52.5 41t19.5 62v1289q0 34-19.5 62t-52.5 41q-19 8-44 8-48 0-83-32l-441-424-441 424q-36 33-83 33-23 0-44-9-33-13-52.5-41t-19.5-62v-1289q0-34 19.5-62t52.5-41q21-9 44-9h1048z"
+ }
+ }]
+};
+exports.bookmark = bookmark;
\ No newline at end of file
diff --git a/dist/fa/bookmarkO.js b/dist/fa/bookmarkO.js
new file mode 100644
index 000000000..dcfb32c27
--- /dev/null
+++ b/dist/fa/bookmarkO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookmarkO = void 0;
+var bookmarkO = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 256h-1024v1242l423-406 89-85 89 85 423 406v-1242zM1164 128q23 0 44 9 33 13 52.5 41t19.5 62v1289q0 34-19.5 62t-52.5 41q-19 8-44 8-48 0-83-32l-441-424-441 424q-36 33-83 33-23 0-44-9-33-13-52.5-41t-19.5-62v-1289q0-34 19.5-62t52.5-41q21-9 44-9h1048z"
+ }
+ }]
+};
+exports.bookmarkO = bookmarkO;
\ No newline at end of file
diff --git a/dist/fa/braille.js b/dist/fa/braille.js
new file mode 100644
index 000000000..9182b470e
--- /dev/null
+++ b/dist/fa/braille.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.braille = void 0;
+var braille = {
+ "viewBox": "0 0 2176 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM704 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM704 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1472 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1472 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 160q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136z"
+ }
+ }]
+};
+exports.braille = braille;
\ No newline at end of file
diff --git a/dist/fa/briefcase.js b/dist/fa/briefcase.js
new file mode 100644
index 000000000..b6e140f91
--- /dev/null
+++ b/dist/fa/briefcase.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.briefcase = void 0;
+var briefcase = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 256h512v-128h-512v128zM1792 896v480q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-480h672v160q0 26 19 45t45 19h320q26 0 45-19t19-45v-160h672zM1024 896v128h-256v-128h256zM1792 416v384h-1792v-384q0-66 47-113t113-47h352v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h352q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.briefcase = briefcase;
\ No newline at end of file
diff --git a/dist/fa/btc.js b/dist/fa/btc.js
new file mode 100644
index 000000000..12e55afed
--- /dev/null
+++ b/dist/fa/btc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.btc = void 0;
+var btc = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1167 640q18 182-131 258 117 28 175 103t45 214q-7 71-32.5 125t-64.5 89-97 58.5-121.5 34.5-145.5 15v255h-154v-251q-80 0-122-1v252h-154v-255q-18 0-54-0.5t-55-0.5h-200l31-183h111q50 0 58-51v-402h16q-6-1-16-1v-287q-13-68-89-68h-111v-164l212 1q64 0 97-1v-252h154v247q82-2 122-2v-245h154v252q79 7 140 22.5t113 45 82.5 78 36.5 114.5zM952 1185q0-36-15-64t-37-46-57.5-30.5-65.5-18.5-74-9-69-3-64.5 1-47.5 1v338q8 0 37 0.5t48 0.5 53-1.5 58.5-4 57-8.5 55.5-14 47.5-21 39.5-30 24.5-40 9.5-51zM881 709q0-33-12.5-58.5t-30.5-42-48-28-55-16.5-61.5-8-58-2.5-54 1-39.5 0.5v307q5 0 34.5 0.5t46.5 0 50-2 55-5.5 51.5-11 48.5-18.5 37-27 27-38.5 9-51z"
+ }
+ }]
+};
+exports.btc = btc;
\ No newline at end of file
diff --git a/dist/fa/bug.js b/dist/fa/bug.js
new file mode 100644
index 000000000..f3d78bfde
--- /dev/null
+++ b/dist/fa/bug.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bug = void 0;
+var bug = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1632 960q0 26-19 45t-45 19h-224q0 171-67 290l208 209q19 19 19 45t-19 45q-18 19-45 19t-45-19l-198-197q-5 5-15 13t-42 28.5-65 36.5-82 29-97 13v-896h-128v896q-51 0-101.5-13.5t-87-33-66-39-43.5-32.5l-15-14-183 207q-20 21-48 21-24 0-43-16-19-18-20.5-44.5t15.5-46.5l202-227q-58-114-58-274h-224q-26 0-45-19t-19-45 19-45 45-19h224v-294l-173-173q-19-19-19-45t19-45 45-19 45 19l173 173h844l173-173q19-19 45-19t45 19 19 45-19 45l-173 173v294h224q26 0 45 19t19 45zM1152 384h-640q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5z"
+ }
+ }]
+};
+exports.bug = bug;
\ No newline at end of file
diff --git a/dist/fa/building.js b/dist/fa/building.js
new file mode 100644
index 000000000..a44ee98d0
--- /dev/null
+++ b/dist/fa/building.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.building = void 0;
+var building = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1344 0q26 0 45 19t19 45v1664q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h1280zM512 288v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 544v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 800v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 1056v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM384 1376v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 1632v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM896 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 1376v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23z"
+ }
+ }]
+};
+exports.building = building;
\ No newline at end of file
diff --git a/dist/fa/buildingO.js b/dist/fa/buildingO.js
new file mode 100644
index 000000000..e31cacd9d
--- /dev/null
+++ b/dist/fa/buildingO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.buildingO = void 0;
+var buildingO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1664h384v-1536h-1152v1536h384v-224q0-13 9.5-22.5t22.5-9.5h320q13 0 22.5 9.5t9.5 22.5v224zM1408 64v1664q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h1280q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.buildingO = buildingO;
\ No newline at end of file
diff --git a/dist/fa/bullhorn.js b/dist/fa/bullhorn.js
new file mode 100644
index 000000000..e2783274f
--- /dev/null
+++ b/dist/fa/bullhorn.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bullhorn = void 0;
+var bullhorn = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 640q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5v384q0 52-38 90t-90 38q-417-347-812-380-58 19-91 66t-31 100.5 40 92.5q-20 33-23 65.5t6 58 33.5 55 48 50 61.5 50.5q-29 58-111.5 83t-168.5 11.5-132-55.5q-7-23-29.5-87.5t-32-94.5-23-89-15-101 3.5-98.5 22-110.5h-122q-66 0-113-47t-47-113v-192q0-66 47-113t113-47h480q435 0 896-384 52 0 90 38t38 90v384zM1536 1244v-954q-394 302-768 343v270q377 42 768 341z"
+ }
+ }]
+};
+exports.bullhorn = bullhorn;
\ No newline at end of file
diff --git a/dist/fa/bullseye.js b/dist/fa/bullseye.js
new file mode 100644
index 000000000..80ac2e802
--- /dev/null
+++ b/dist/fa/bullseye.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bullseye = void 0;
+var bullseye = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 896q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1152 896q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM1280 896q0 212-150 362t-362 150-362-150-150-362 150-362 362-150 362 150 150 362zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.bullseye = bullseye;
\ No newline at end of file
diff --git a/dist/fa/bus.js b/dist/fa/bus.js
new file mode 100644
index 000000000..5fe72e6c2
--- /dev/null
+++ b/dist/fa/bus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bus = void 0;
+var bus = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1216q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1408 1216q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1362 820l-72-384q-5-23-22.5-37.5t-40.5-14.5h-918q-23 0-40.5 14.5t-22.5 37.5l-72 384q-5 30 14 53t49 23h1062q30 0 49-23t14-53zM1136 208q0-20-14-34t-34-14h-640q-20 0-34 14t-14 34 14 34 34 14h640q20 0 34-14t14-34zM1536 933v603h-128v128q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-128h-768v128q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-128h-128v-603q0-112 25-223l103-454q9-78 97.5-137t230-89 312.5-30 312.5 30 230 89 97.5 137l105 454q23 102 23 223z"
+ }
+ }]
+};
+exports.bus = bus;
\ No newline at end of file
diff --git a/dist/fa/buysellads.js b/dist/fa/buysellads.js
new file mode 100644
index 000000000..39dc9ed43
--- /dev/null
+++ b/dist/fa/buysellads.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.buysellads = void 0;
+var buysellads = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M915 1086h-294l147-551zM1001 1408h311l-324-1024h-440l-324 1024h311l383-314zM1536 416v960q0 118-85 203t-203 85h-960q-118 0-203-85t-85-203v-960q0-118 85-203t203-85h960q118 0 203 85t85 203z"
+ }
+ }]
+};
+exports.buysellads = buysellads;
\ No newline at end of file
diff --git a/dist/fa/cab.js b/dist/fa/cab.js
new file mode 100644
index 000000000..930229b5a
--- /dev/null
+++ b/dist/fa/cab.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cab = void 0;
+var cab = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1824 896q93 0 158.5 65.5t65.5 158.5v384q0 14-9 23t-23 9h-96v64q0 80-56 136t-136 56-136-56-56-136v-64h-1024v64q0 80-56 136t-136 56-136-56-56-136v-64h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h128v-224q0-14 9-23t23-9h448q14 0 23 9t9 23v224h128q98 0 179 63.5t104 157.5l105 419h28zM320 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM516 896h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1728 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47z"
+ }
+ }]
+};
+exports.cab = cab;
\ No newline at end of file
diff --git a/dist/fa/calculator.js b/dist/fa/calculator.js
new file mode 100644
index 000000000..fa63dc61c
--- /dev/null
+++ b/dist/fa/calculator.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calculator = void 0;
+var calculator = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1152 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM384 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1152 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1536 1536v-384q0-52-38-90t-90-38-90 38-38 90v384q0 52 38 90t90 38 90-38 38-90zM1152 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1536 448v-256q0-26-19-45t-45-19h-1280q-26 0-45 19t-19 45v256q0 26 19 45t45 19h1280q26 0 45-19t19-45zM1536 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 128v1536q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1536q0-52 38-90t90-38h1408q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calculator = calculator;
\ No newline at end of file
diff --git a/dist/fa/calendar.js b/dist/fa/calendar.js
new file mode 100644
index 000000000..a3c5a2760
--- /dev/null
+++ b/dist/fa/calendar.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendar = void 0;
+var calendar = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128 1664h288v-288h-288v288zM480 1664h320v-288h-320v288zM128 1312h288v-320h-288v320zM480 1312h320v-320h-320v320zM128 928h288v-288h-288v288zM864 1664h320v-288h-320v288zM480 928h320v-288h-320v288zM1248 1664h288v-288h-288v288zM864 1312h320v-320h-320v320zM512 448v-288q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v288q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1248 1312h288v-320h-288v320zM864 928h320v-288h-320v288zM1248 928h288v-288h-288v288zM1280 448v-288q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v288q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calendar = calendar;
\ No newline at end of file
diff --git a/dist/fa/calendarCheckO.js b/dist/fa/calendarCheckO.js
new file mode 100644
index 000000000..97e347b39
--- /dev/null
+++ b/dist/fa/calendarCheckO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendarCheckO = void 0;
+var calendarCheckO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1303 964l-512 512q-10 9-23 9t-23-9l-288-288q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l220 220 444-444q10-9 23-9t22 9l46 46q9 9 9 22t-9 23zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calendarCheckO = calendarCheckO;
\ No newline at end of file
diff --git a/dist/fa/calendarMinusO.js b/dist/fa/calendarMinusO.js
new file mode 100644
index 000000000..fb5c1757e
--- /dev/null
+++ b/dist/fa/calendarMinusO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendarMinusO = void 0;
+var calendarMinusO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 1120v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calendarMinusO = calendarMinusO;
\ No newline at end of file
diff --git a/dist/fa/calendarO.js b/dist/fa/calendarO.js
new file mode 100644
index 000000000..02e14c00f
--- /dev/null
+++ b/dist/fa/calendarO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendarO = void 0;
+var calendarO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calendarO = calendarO;
\ No newline at end of file
diff --git a/dist/fa/calendarPlusO.js b/dist/fa/calendarPlusO.js
new file mode 100644
index 000000000..815f2e0ec
--- /dev/null
+++ b/dist/fa/calendarPlusO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendarPlusO = void 0;
+var calendarPlusO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 256q52 0 90 38t38 90v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128zM1152 160v288q0 14 9 23t23 9h64q14 0 23-9t9-23v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM384 160v288q0 14 9 23t23 9h64q14 0 23-9t9-23v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM1536 1664v-1024h-1408v1024h1408zM896 1088h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h64q14 0 23 9t9 23v224z"
+ }
+ }]
+};
+exports.calendarPlusO = calendarPlusO;
\ No newline at end of file
diff --git a/dist/fa/calendarTimesO.js b/dist/fa/calendarTimesO.js
new file mode 100644
index 000000000..585e8a7e4
--- /dev/null
+++ b/dist/fa/calendarTimesO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendarTimesO = void 0;
+var calendarTimesO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1111 1385l-46 46q-9 9-22 9t-23-9l-188-189-188 189q-10 9-23 9t-22-9l-46-46q-9-9-9-22t9-23l189-188-189-188q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l188 188 188-188q10-9 23-9t22 9l46 46q9 9 9 22t-9 23l-188 188 188 188q9 10 9 23t-9 22zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calendarTimesO = calendarTimesO;
\ No newline at end of file
diff --git a/dist/fa/camera.js b/dist/fa/camera.js
new file mode 100644
index 000000000..8b6adf630
--- /dev/null
+++ b/dist/fa/camera.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.camera = void 0;
+var camera = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 672q119 0 203.5 84.5t84.5 203.5-84.5 203.5-203.5 84.5-203.5-84.5-84.5-203.5 84.5-203.5 203.5-84.5zM1664 256q106 0 181 75t75 181v896q0 106-75 181t-181 75h-1408q-106 0-181-75t-75-181v-896q0-106 75-181t181-75h224l51-136q19-49 69.5-84.5t103.5-35.5h512q53 0 103.5 35.5t69.5 84.5l51 136h224zM960 1408q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.camera = camera;
\ No newline at end of file
diff --git a/dist/fa/cameraRetro.js b/dist/fa/cameraRetro.js
new file mode 100644
index 000000000..25510d111
--- /dev/null
+++ b/dist/fa/cameraRetro.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cameraRetro = void 0;
+var cameraRetro = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M928 832q0-14-9-23t-23-9q-66 0-113 47t-47 113q0 14 9 23t23 9 23-9 9-23q0-40 28-68t68-28q14 0 23-9t9-23zM1152 962q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM128 1536h1536v-128h-1536v128zM1280 962q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM256 320h384v-128h-384v128zM128 512h1536v-118-138h-828l-64 128h-644v128zM1792 256v1280q0 53-37.5 90.5t-90.5 37.5h-1536q-53 0-90.5-37.5t-37.5-90.5v-1280q0-53 37.5-90.5t90.5-37.5h1536q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.cameraRetro = cameraRetro;
\ No newline at end of file
diff --git a/dist/fa/car.js b/dist/fa/car.js
new file mode 100644
index 000000000..4e718d974
--- /dev/null
+++ b/dist/fa/car.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.car = void 0;
+var car = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM516 768h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1888 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM2048 992v384q0 14-9 23t-23 9h-96v128q0 80-56 136t-136 56-136-56-56-136v-128h-1024v128q0 80-56 136t-136 56-136-56-56-136v-128h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h768q98 0 179 63.5t104 157.5l105 419h28q93 0 158.5 65.5t65.5 158.5z"
+ }
+ }]
+};
+exports.car = car;
\ No newline at end of file
diff --git a/dist/fa/caretDown.js b/dist/fa/caretDown.js
new file mode 100644
index 000000000..e6780b536
--- /dev/null
+++ b/dist/fa/caretDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.caretDown = void 0;
+var caretDown = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 704q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.caretDown = caretDown;
\ No newline at end of file
diff --git a/dist/fa/caretLeft.js b/dist/fa/caretLeft.js
new file mode 100644
index 000000000..034e09cd9
--- /dev/null
+++ b/dist/fa/caretLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.caretLeft = void 0;
+var caretLeft = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 448v896q0 26-19 45t-45 19-45-19l-448-448q-19-19-19-45t19-45l448-448q19-19 45-19t45 19 19 45z"
+ }
+ }]
+};
+exports.caretLeft = caretLeft;
\ No newline at end of file
diff --git a/dist/fa/caretRight.js b/dist/fa/caretRight.js
new file mode 100644
index 000000000..6e374a6d9
--- /dev/null
+++ b/dist/fa/caretRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.caretRight = void 0;
+var caretRight = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M576 896q0 26-19 45l-448 448q-19 19-45 19t-45-19-19-45v-896q0-26 19-45t45-19 45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.caretRight = caretRight;
\ No newline at end of file
diff --git a/dist/fa/caretSquareODown.js b/dist/fa/caretSquareODown.js
new file mode 100644
index 000000000..456ea3f35
--- /dev/null
+++ b/dist/fa/caretSquareODown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.caretSquareODown = void 0;
+var caretSquareODown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1145 675q18 35-5 66l-320 448q-19 27-52 27t-52-27l-320-448q-23-31-5-66 17-35 57-35h640q40 0 57 35zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.caretSquareODown = caretSquareODown;
\ No newline at end of file
diff --git a/dist/fa/caretSquareOLeft.js b/dist/fa/caretSquareOLeft.js
new file mode 100644
index 000000000..0aa055618
--- /dev/null
+++ b/dist/fa/caretSquareOLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.caretSquareOLeft = void 0;
+var caretSquareOLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 576v640q0 26-19 45t-45 19q-20 0-37-12l-448-320q-27-19-27-52t27-52l448-320q17-12 37-12 26 0 45 19t19 45zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.caretSquareOLeft = caretSquareOLeft;
\ No newline at end of file
diff --git a/dist/fa/caretSquareORight.js b/dist/fa/caretSquareORight.js
new file mode 100644
index 000000000..60f53e1ba
--- /dev/null
+++ b/dist/fa/caretSquareORight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.caretSquareORight = void 0;
+var caretSquareORight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 896q0 33-27 52l-448 320q-31 23-66 5-35-17-35-57v-640q0-40 35-57 35-18 66 5l448 320q27 19 27 52zM1280 1376v-960q0-14-9-23t-23-9h-960q-14 0-23 9t-9 23v960q0 14 9 23t23 9h960q14 0 23-9t9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.caretSquareORight = caretSquareORight;
\ No newline at end of file
diff --git a/dist/fa/caretSquareOUp.js b/dist/fa/caretSquareOUp.js
new file mode 100644
index 000000000..d7d85473c
--- /dev/null
+++ b/dist/fa/caretSquareOUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.caretSquareOUp = void 0;
+var caretSquareOUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1145 1117q-17 35-57 35h-640q-40 0-57-35-18-35 5-66l320-448q19-27 52-27t52 27l320 448q23 31 5 66zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.caretSquareOUp = caretSquareOUp;
\ No newline at end of file
diff --git a/dist/fa/caretUp.js b/dist/fa/caretUp.js
new file mode 100644
index 000000000..4aeefd908
--- /dev/null
+++ b/dist/fa/caretUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.caretUp = void 0;
+var caretUp = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1216q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.caretUp = caretUp;
\ No newline at end of file
diff --git a/dist/fa/cartArrowDown.js b/dist/fa/cartArrowDown.js
new file mode 100644
index 000000000..8727e44ca
--- /dev/null
+++ b/dist/fa/cartArrowDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cartArrowDown = void 0;
+var cartArrowDown = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 704q0-26-19-45t-45-19-45 19l-147 146v-293q0-26-19-45t-45-19-45 19-19 45v293l-147-146q-19-19-45-19t-45 19-19 45 19 45l256 256q19 19 45 19t45-19l256-256q19-19 19-45zM640 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1536 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1664 448v512q0 24-16 42.5t-41 21.5l-1044 122q1 7 4.5 21.5t6 26.5 2.5 22q0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-14 11-39.5t29.5-59.5 20.5-38l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t20 15.5 13 24.5 7.5 26.5 5.5 29.5 4.5 25.5h1201q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.cartArrowDown = cartArrowDown;
\ No newline at end of file
diff --git a/dist/fa/cartPlus.js b/dist/fa/cartPlus.js
new file mode 100644
index 000000000..73d683483
--- /dev/null
+++ b/dist/fa/cartPlus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cartPlus = void 0;
+var cartPlus = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1216 704q0-26-19-45t-45-19h-128v-128q0-26-19-45t-45-19-45 19-19 45v128h-128q-26 0-45 19t-19 45 19 45 45 19h128v128q0 26 19 45t45 19 45-19 19-45v-128h128q26 0 45-19t19-45zM640 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1536 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1664 448v512q0 24-16 42.5t-41 21.5l-1044 122q1 7 4.5 21.5t6 26.5 2.5 22q0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-14 11-39.5t29.5-59.5 20.5-38l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t20 15.5 13 24.5 7.5 26.5 5.5 29.5 4.5 25.5h1201q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.cartPlus = cartPlus;
\ No newline at end of file
diff --git a/dist/fa/cc.js b/dist/fa/cc.js
new file mode 100644
index 000000000..4e56c8ca7
--- /dev/null
+++ b/dist/fa/cc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cc = void 0;
+var cc = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M785 1008h207q-14 158-98.5 248.5t-214.5 90.5q-162 0-254.5-116t-92.5-316q0-194 93-311.5t233-117.5q148 0 232 87t97 247h-203q-5-64-35.5-99t-81.5-35q-57 0-88.5 60.5t-31.5 177.5q0 48 5 84t18 69.5 40 51.5 66 18q95 0 109-139zM1497 1008h206q-14 158-98 248.5t-214 90.5q-162 0-254.5-116t-92.5-316q0-194 93-311.5t233-117.5q148 0 232 87t97 247h-204q-4-64-35-99t-81-35q-57 0-88.5 60.5t-31.5 177.5q0 48 5 84t18 69.5 39.5 51.5 65.5 18q49 0 76.5-38t33.5-101zM1856 889q0-207-15.5-307t-60.5-161q-6-8-13.5-14t-21.5-15-16-11q-86-63-697-63-625 0-710 63-5 4-17.5 11.5t-21 14-14.5 14.5q-45 60-60 159.5t-15 308.5q0 208 15 307.5t60 160.5q6 8 15 15t20.5 14 17.5 12q44 33 239.5 49t470.5 16q610 0 697-65 5-4 17-11t20.5-14 13.5-16q46-60 61-159t15-309zM2048 128v1536h-2048v-1536h2048z"
+ }
+ }]
+};
+exports.cc = cc;
\ No newline at end of file
diff --git a/dist/fa/ccAmex.js b/dist/fa/ccAmex.js
new file mode 100644
index 000000000..165db3d5d
--- /dev/null
+++ b/dist/fa/ccAmex.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ccAmex = void 0;
+var ccAmex = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M119 682h89l-45-108zM740 1208l74-79-70-79h-163v49h142v55h-142v54h159zM898 1130l99 110v-217zM1186 1083q0-33-40-33h-84v69h83q41 0 41-36zM1475 1079q0-29-42-29h-82v61h81q43 0 43-32zM1197 613q0-29-42-29h-82v60h81q43 0 43-31zM1656 682h89l-44-108zM699 527v271h-66v-212l-94 212h-57l-94-212v212h-132l-25-60h-135l-25 60h-70l116-271h96l110 257v-257h106l85 184 77-184h108zM1255 1083q0 20-5.5 35t-14 25-22.5 16.5-26 10-31.5 4.5-31.5 1-32.5-0.5-29.5-0.5v91h-126l-80-90-83 90h-256v-271h260l80 89 82-89h207q109 0 109 89zM964 742v56h-217v-271h217v57h-152v49h148v55h-148v54h152zM2304 1301v229q0 55-38.5 94.5t-93.5 39.5h-2040q-55 0-93.5-39.5t-38.5-94.5v-678h111l25-61h55l25 61h218v-46l19 46h113l20-47v47h541v-99l10-1q10 0 10 14v86h279v-23q23 12 55 18t52.5 6.5 63-0.5 51.5-1l25-61h56l25 61h227v-58l34 58h182v-378h-180v44l-25-44h-185v44l-23-44h-249q-69 0-109 22v-22h-172v22q-24-22-73-22h-628l-43 97-43-97h-198v44l-22-44h-169l-78 179v-391q0-55 38.5-94.5t93.5-39.5h2040q55 0 93.5 39.5t38.5 94.5v678h-120q-51 0-81 22v-22h-177q-55 0-78 22v-22h-316v22q-31-22-87-22h-209v22q-23-22-91-22h-234l-54 58-50-58h-349v378h343l55-59 52 59h211v-89h21q59 0 90-13v102h174v-99h8q8 0 10 2t2 10v87h529q57 0 88-24v24h168q60 0 95-17zM1546 1067q0 23-12 43t-34 29q25 9 34 26t9 46v54h-65v-45q0-33-12-43.5t-46-10.5h-69v99h-65v-271h154q48 0 77 15t29 58zM1269 600q0 24-12.5 44t-33.5 29q26 9 34.5 25.5t8.5 46.5v53h-65q0-9 0.5-26.5t0-25-3-18.5-8.5-16-17.5-8.5-29.5-3.5h-70v98h-64v-271l153 1q49 0 78 14.5t29 57.5zM1798 1209v56h-216v-271h216v56h-151v49h148v55h-148v54zM1372 527v271h-66v-271h66zM2065 1179q0 86-102 86h-126v-58h126q34 0 34-25 0-16-17-21t-41.5-5-49.5-3.5-42-22.5-17-55q0-39 26-60t66-21h130v57h-119q-36 0-36 25 0 16 17.5 20.5t42 4 49 2.5 42 21.5 17.5 54.5zM2304 1129v101q-24 35-88 35h-125v-58h125q33 0 33-25 0-13-12.5-19t-31-5.5-40-2-40-8-31-24-12.5-48.5q0-39 26.5-60t66.5-21h129v57h-118q-36 0-36 25 0 20 29 22t68.5 5 56.5 26zM2139 528v270h-92l-122-203v203h-132l-26-60h-134l-25 60h-75q-129 0-129-133 0-138 133-138h63v59q-7 0-28-1t-28.5-0.5-23 2-21.5 6.5-14.5 13.5-11.5 23-3 33.5q0 38 13.5 58t49.5 20h29l92-213h97l109 256v-256h99l114 188v-188h66z"
+ }
+ }]
+};
+exports.ccAmex = ccAmex;
\ No newline at end of file
diff --git a/dist/fa/ccDinersClub.js b/dist/fa/ccDinersClub.js
new file mode 100644
index 000000000..c1ea5ba9a
--- /dev/null
+++ b/dist/fa/ccDinersClub.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ccDinersClub = void 0;
+var ccDinersClub = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M858 1241v-693q-106 41-172 135.5t-66 211.5 66 211.5 172 134.5zM1362 895q0-117-66-211.5t-172-135.5v694q106-41 172-135.5t66-211.5zM1577 895q0 159-78.5 294t-213.5 213.5-294 78.5q-119 0-227.5-46.5t-187-125-125-187-46.5-227.5q0-159 78.5-294t213.5-213.5 294-78.5 294 78.5 213.5 213.5 78.5 294zM1960 902q0-139-55.5-261.5t-147.5-205.5-213.5-131-252.5-48h-301q-176 0-323.5 81t-235 230-87.5 335q0 171 87 317.5t236 231.5 323 85h301q129 0 251.5-50.5t214.5-135 147.5-202.5 55.5-246zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccDinersClub = ccDinersClub;
\ No newline at end of file
diff --git a/dist/fa/ccDiscover.js b/dist/fa/ccDiscover.js
new file mode 100644
index 000000000..9b2936224
--- /dev/null
+++ b/dist/fa/ccDiscover.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ccDiscover = void 0;
+var ccDiscover = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M313 777q0 51-36 84-29 26-89 26h-17v-220h17q61 0 89 27 36 31 36 83zM2089 712q0 52-64 52h-19v-101h20q63 0 63 49zM380 777q0-74-50-120.5t-129-46.5h-95v333h95q74 0 119-38 60-51 60-128zM410 943h65v-333h-65v333zM730 842q0-40-20.5-62t-75.5-42q-29-10-39.5-19t-10.5-23q0-16 13.5-26.5t34.5-10.5q29 0 53 27l34-44q-41-37-98-37-44 0-74 27.5t-30 67.5q0 35 18 55.5t64 36.5q37 13 45 19 19 12 19 34 0 20-14 33.5t-36 13.5q-48 0-71-44l-42 40q44 64 115 64 51 0 83-30.5t32-79.5zM1008 932v-77q-37 37-78 37-49 0-80.5-32.5t-31.5-82.5q0-48 31.5-81.5t77.5-33.5q43 0 81 38v-77q-40-20-80-20-74 0-125.5 50.5t-51.5 123.5 51 123.5 125 50.5q42 0 81-19zM2240 1536v-527q-65 40-144.5 84t-237.5 117-329.5 137.5-417.5 134.5-504 118h1569q26 0 45-19t19-45zM1389 779q0-75-53-128t-128-53-128 53-53 128 53 128 128 53 128-53 53-128zM1541 952l144-342h-71l-90 224-89-224h-71l142 342h35zM1714 943h184v-56h-119v-90h115v-56h-115v-74h119v-57h-184v333zM2105 943h80l-105-140q76-16 76-94 0-47-31-73t-87-26h-97v333h65v-133h9zM2304 262v1268q0 56-38.5 95t-93.5 39h-2040q-55 0-93.5-39t-38.5-95v-1268q0-56 38.5-95t93.5-39h2040q55 0 93.5 39t38.5 95z"
+ }
+ }]
+};
+exports.ccDiscover = ccDiscover;
\ No newline at end of file
diff --git a/dist/fa/ccJcb.js b/dist/fa/ccJcb.js
new file mode 100644
index 000000000..fc949f8c7
--- /dev/null
+++ b/dist/fa/ccJcb.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ccJcb = void 0;
+var ccJcb = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1951 998q0 26-15.5 44.5t-38.5 23.5q-8 2-18 2h-153v-140h153q10 0 18 2 23 5 38.5 23.5t15.5 44.5zM1933 785q0 25-15 42t-38 21q-3 1-15 1h-139v-129h139q3 0 8.5 0.5t6.5 0.5q23 4 38 21.5t15 42.5zM728 949v-308h-228v308q0 58-38 94.5t-105 36.5q-108 0-229-59v112q53 15 121 23t109 9l42 1q328 0 328-217zM1442 1133v-113q-99 52-200 59-108 8-169-41t-61-142 61-142 169-41q101 7 200 58v-112q-48-12-100-19.5t-80-9.5l-28-2q-127-6-218.5 14t-140.5 60-71 88-22 106 22 106 71 88 140.5 60 218.5 14q101-4 208-31zM2176 1018q0-54-43-88.5t-109-39.5v-3q57-8 89-41.5t32-79.5q0-55-41-88t-107-36q-3 0-12-0.5t-14-0.5h-455v510h491q74 0 121.5-36.5t47.5-96.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccJcb = ccJcb;
\ No newline at end of file
diff --git a/dist/fa/ccMastercard.js b/dist/fa/ccMastercard.js
new file mode 100644
index 000000000..150f5cae1
--- /dev/null
+++ b/dist/fa/ccMastercard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ccMastercard = void 0;
+var ccMastercard = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1119 341q-128-85-281-85-103 0-197.5 40.5t-162.5 108.5-108.5 162-40.5 197q0 104 40.5 198t108.5 162 162 108.5 198 40.5q153 0 281-85-131-107-178-265.5t0.5-316.5 177.5-265zM1152 365q-126 99-172 249.5t-0.5 300.5 172.5 249q127-99 172.5-249t-0.5-300.5-172-249.5zM1185 341q130 107 177.5 265.5t0.5 317-178 264.5q128 85 281 85 104 0 198-40.5t162-108.5 108.5-162 40.5-198q0-103-40.5-197t-108.5-162-162.5-108.5-197.5-40.5q-153 0-281 85zM1926 1063h7v-3h-17v3h7v17h3v-17zM1955 1080h4v-20h-5l-6 13-6-13h-5v20h3v-15l6 13h4l5-13v15zM1947 1520v2h-2-3v-3h3 2v1zM1947 1529h3l-4-5h2l1-1q1-1 1-3t-1-3l-1-1h-3-6v13h3v-5h1zM685 1461q0-19 11-31t30-12q18 0 29 12.5t11 30.5q0 19-11 31t-29 12q-19 0-30-12t-11-31zM1158 1417q30 0 35 32h-70q5-32 35-32zM1514 1461q0-19 11-31t29-12 29.5 12.5 11.5 30.5q0 19-11 31t-30 12q-18 0-29-12t-11-31zM1786 1461q0-18 11.5-30.5t29.5-12.5 29.5 12.5 11.5 30.5q0 19-11.5 31t-29.5 12-29.5-12.5-11.5-30.5zM1944 1533q-2 0-4-1-1 0-3-2t-2-3q-1-2-1-4 0-3 1-4 0-2 2-4l1-1q2 0 2-1 2-1 4-1 3 0 4 1l4 2 2 4v1q1 2 1 3l-1 1v3t-1 1l-1 2q-2 2-4 2-1 1-4 1zM599 1529h30v-85q0-24-14.5-38.5t-39.5-15.5q-32 0-47 24-14-24-45-24-24 0-39 20v-16h-30v135h30v-75q0-36 33-36 30 0 30 36v75h29v-75q0-36 33-36 30 0 30 36v75zM765 1529h29v-68-67h-29v16q-17-20-43-20-29 0-48 20t-19 51 19 51 48 20q28 0 43-20v17zM943 1488q0-34-47-40l-14-2q-23-4-23-14 0-15 25-15 23 0 43 11l12-24q-22-14-55-14-26 0-41 12t-15 32q0 33 47 39l13 2q24 4 24 14 0 17-31 17-25 0-45-14l-13 23q25 17 58 17 29 0 45.5-12t16.5-32zM1073 1522l-8-25q-13 7-26 7-19 0-19-22v-61h48v-27h-48v-41h-30v41h-28v27h28v61q0 50 47 50 21 0 36-10zM1159 1390q-29 0-48 20t-19 51q0 32 19.5 51.5t49.5 19.5q33 0 55-19l-14-22q-18 15-39 15-34 0-41-33h101v-12q0-32-18-51.5t-46-19.5zM1318 1390q-23 0-35 20v-16h-30v135h30v-76q0-35 29-35 10 0 18 4l9-28q-9-4-21-4zM1348 1461q0 31 19.5 51t52.5 20q29 0 48-16l-14-24q-18 13-35 12-18 0-29.5-12t-11.5-31 11.5-31 29.5-12q19 0 35 12l14-24q-20-16-48-16-33 0-52.5 20t-19.5 51zM1593 1529h30v-68-67h-30v16q-15-20-42-20-29 0-48.5 20t-19.5 51 19.5 51 48.5 20q28 0 42-20v17zM1726 1390q-23 0-35 20v-16h-29v135h29v-76q0-35 29-35 10 0 18 4l9-28q-8-4-21-4zM1866 1529h29v-68-122h-29v71q-15-20-43-20t-47.5 20.5-19.5 50.5 19.5 50.5 47.5 20.5q29 0 43-20v17zM1944 1509l-2 1h-3q-2 1-4 3-3 1-3 4-1 2-1 6 0 3 1 5 0 2 3 4 2 2 4 3t5 1q4 0 6-1 0-1 2-2l2-1q1-1 3-4 1-2 1-5 0-4-1-6-1-1-3-4 0-1-2-2l-2-1q-1 0-3-0.5t-3-0.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccMastercard = ccMastercard;
\ No newline at end of file
diff --git a/dist/fa/ccPaypal.js b/dist/fa/ccPaypal.js
new file mode 100644
index 000000000..557dae322
--- /dev/null
+++ b/dist/fa/ccPaypal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ccPaypal = void 0;
+var ccPaypal = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M745 906q0 37-25.5 61.5t-62.5 24.5q-29 0-46.5-16t-17.5-44q0-37 25-62.5t62-25.5q28 0 46.5 16.5t18.5 45.5zM1530 757q0 42-22 57t-66 15l-32 1 17-107q2-11 13-11h18q22 0 35 2t25 12.5 12 30.5zM1881 906q0 36-25.5 61t-61.5 25q-29 0-47-16t-18-44q0-37 25-62.5t62-25.5q28 0 46.5 16.5t18.5 45.5zM513 735q0-59-38.5-85.5t-100.5-26.5h-160q-19 0-21 19l-65 408q-1 6 3 11t10 5h76q20 0 22-19l18-110q1-8 7-13t15-6.5 17-1.5 19 1 14 1q86 0 135-48.5t49-134.5zM822 1047l41-261q1-6-3-11t-10-5h-76q-14 0-17 33-27-40-95-40-72 0-122.5 54t-50.5 127q0 59 34.5 94t92.5 35q28 0 58-12t48-32q-4 12-4 21 0 16 13 16h69q19 0 22-19zM1269 784q0-5-4-9.5t-9-4.5h-77q-11 0-18 10l-106 156-44-150q-5-16-22-16h-75q-5 0-9 4.5t-4 9.5q0 2 19.5 59t42 123 23.5 70q-82 112-82 120 0 13 13 13h77q11 0 18-10l255-368q2-2 2-7zM1649 735q0-59-38.5-85.5t-100.5-26.5h-159q-20 0-22 19l-65 408q-1 6 3 11t10 5h82q12 0 16-13l18-116q1-8 7-13t15-6.5 17-1.5 19 1 14 1q86 0 135-48.5t49-134.5zM1958 1047l41-261q1-6-3-11t-10-5h-76q-14 0-17 33-26-40-95-40-72 0-122.5 54t-50.5 127q0 59 34.5 94t92.5 35q29 0 59-12t47-32q0 1-2 9t-2 12q0 16 13 16h69q19 0 22-19zM2176 638v-1q0-14-13-14h-74q-11 0-13 11l-65 416-1 2q0 5 4 9.5t10 4.5h66q19 0 21-19zM392 772q-5 35-26 46t-60 11l-33 1 17-107q2-11 13-11h19q40 0 58 11.5t12 48.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccPaypal = ccPaypal;
\ No newline at end of file
diff --git a/dist/fa/ccStripe.js b/dist/fa/ccStripe.js
new file mode 100644
index 000000000..29b494a86
--- /dev/null
+++ b/dist/fa/ccStripe.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ccStripe = void 0;
+var ccStripe = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1597 903q0 69-21 106-19 35-52 35-23 0-41-9v-224q29-30 57-30 57 0 57 122zM2035 867h-110q6-98 56-98 51 0 54 98zM476 1002q0-59-33-91.5t-101-57.5q-36-13-52-24t-16-25q0-26 38-26 58 0 124 33l18-112q-67-32-149-32-77 0-123 38-48 39-48 109 0 58 32.5 90.5t99.5 56.5q39 14 54.5 25.5t15.5 27.5q0 31-48 31-29 0-70-12.5t-72-30.5l-18 113q72 41 168 41 81 0 129-37 51-41 51-117zM771 787l19-111h-96v-135l-129 21-18 114-46 8-17 103h62v219q0 84 44 120 38 30 111 30 32 0 79-11v-118q-32 7-44 7-42 0-42-50v-197h77zM1087 812v-139q-15-3-28-3-32 0-55.5 16t-33.5 46l-10-56h-131v471h150v-306q26-31 82-31 16 0 26 2zM1124 1147h150v-471h-150v471zM1746 898q0-122-45-179-40-52-111-52-64 0-117 56l-8-47h-132v645l150-25v-151q36 11 68 11 83 0 134-56 61-65 61-202zM1278 550q0-33-23-56t-56-23-56 23-23 56 23 56.5 56 23.5 56-23.5 23-56.5zM2176 907q0-113-48-176-50-64-144-64-96 0-151.5 66t-55.5 180q0 128 63 188 55 55 161 55 101 0 160-40l-16-103q-57 31-128 31-43 0-63-19-23-19-28-66h248q2-14 2-52zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccStripe = ccStripe;
\ No newline at end of file
diff --git a/dist/fa/ccVisa.js b/dist/fa/ccVisa.js
new file mode 100644
index 000000000..e04860305
--- /dev/null
+++ b/dist/fa/ccVisa.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ccVisa = void 0;
+var ccVisa = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1975 990h-138q14-37 66-179l3-9q4-10 10-26t9-26l12 55zM531 925l-58-295q-11-54-75-54h-268l-2 13q311 79 403 336zM710 576l-162 438-17-89q-26-70-85-129.5t-131-88.5l135 510h175l261-641h-176zM849 1218h166l104-642h-166zM1617 592q-69-27-149-27-123 0-201 59t-79 153q-1 102 145 174 48 23 67 41t19 39q0 30-30 46t-69 16q-86 0-156-33l-22-11-23 144q74 34 185 34 130 1 208.5-59t80.5-160q0-106-140-174-49-25-71-42t-22-38q0-22 24.5-38.5t70.5-16.5q70-1 124 24l15 8zM2042 576h-128q-65 0-87 54l-246 588h174l35-96h212q5 22 20 96h154zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccVisa = ccVisa;
\ No newline at end of file
diff --git a/dist/fa/certificate.js b/dist/fa/certificate.js
new file mode 100644
index 000000000..f96ab89d9
--- /dev/null
+++ b/dist/fa/certificate.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.certificate = void 0;
+var certificate = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1376 896l138 135q30 28 20 70-12 41-52 51l-188 48 53 186q12 41-19 70-29 31-70 19l-186-53-48 188q-10 40-51 52-12 2-19 2-31 0-51-22l-135-138-135 138q-28 30-70 20-41-11-51-52l-48-188-186 53q-41 12-70-19-31-29-19-70l53-186-188-48q-40-10-52-51-10-42 20-70l138-135-138-135q-30-28-20-70 12-41 52-51l188-48-53-186q-12-41 19-70 29-31 70-19l186 53 48-188q10-41 51-51 41-12 70 19l135 139 135-139q29-30 70-19 41 10 51 51l48 188 186-53q41-12 70 19 31 29 19 70l-53 186 188 48q40 10 52 51 10 42-20 70z"
+ }
+ }]
+};
+exports.certificate = certificate;
\ No newline at end of file
diff --git a/dist/fa/chain.js b/dist/fa/chain.js
new file mode 100644
index 000000000..829058609
--- /dev/null
+++ b/dist/fa/chain.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chain = void 0;
+var chain = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1456 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zM753 511q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z"
+ }
+ }]
+};
+exports.chain = chain;
\ No newline at end of file
diff --git a/dist/fa/chainBroken.js b/dist/fa/chainBroken.js
new file mode 100644
index 000000000..89bfe1d51
--- /dev/null
+++ b/dist/fa/chainBroken.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chainBroken = void 0;
+var chainBroken = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M439 1271l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zM608 1312v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM384 1088q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zM1031 492l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zM1664 576q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1120 32v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM1527 183l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z"
+ }
+ }]
+};
+exports.chainBroken = chainBroken;
\ No newline at end of file
diff --git a/dist/fa/check.js b/dist/fa/check.js
new file mode 100644
index 000000000..79adf4f0c
--- /dev/null
+++ b/dist/fa/check.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.check = void 0;
+var check = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z"
+ }
+ }]
+};
+exports.check = check;
\ No newline at end of file
diff --git a/dist/fa/checkCircle.js b/dist/fa/checkCircle.js
new file mode 100644
index 000000000..43d9d916c
--- /dev/null
+++ b/dist/fa/checkCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkCircle = void 0;
+var checkCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1284 734q0-28-18-46l-91-90q-19-19-45-19t-45 19l-408 407-226-226q-19-19-45-19t-45 19l-91 90q-18 18-18 46 0 27 18 45l362 362q19 19 45 19 27 0 46-19l543-543q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.checkCircle = checkCircle;
\ No newline at end of file
diff --git a/dist/fa/checkCircleO.js b/dist/fa/checkCircleO.js
new file mode 100644
index 000000000..0cb617609
--- /dev/null
+++ b/dist/fa/checkCircleO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkCircleO = void 0;
+var checkCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1171 813l-422 422q-19 19-45 19t-45-19l-294-294q-19-19-19-45t19-45l102-102q19-19 45-19t45 19l147 147 275-275q19-19 45-19t45 19l102 102q19 19 19 45t-19 45zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.checkCircleO = checkCircleO;
\ No newline at end of file
diff --git a/dist/fa/checkSquare.js b/dist/fa/checkSquare.js
new file mode 100644
index 000000000..a8b6bd17f
--- /dev/null
+++ b/dist/fa/checkSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkSquare = void 0;
+var checkSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M685 1299l614-614q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-467 467-211-211q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l358 358q19 19 45 19t45-19zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.checkSquare = checkSquare;
\ No newline at end of file
diff --git a/dist/fa/checkSquareO.js b/dist/fa/checkSquareO.js
new file mode 100644
index 000000000..ca8527c04
--- /dev/null
+++ b/dist/fa/checkSquareO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkSquareO = void 0;
+var checkSquareO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 930v318q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-10 10-23 10-3 0-9-2-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-254q0-13 9-22l64-64q10-10 23-10 6 0 12 3 20 8 20 29zM1639 441l-814 814q-24 24-57 24t-57-24l-430-430q-24-24-24-57t24-57l110-110q24-24 57-24t57 24l263 263 647-647q24-24 57-24t57 24l110 110q24 24 24 57t-24 57z"
+ }
+ }]
+};
+exports.checkSquareO = checkSquareO;
\ No newline at end of file
diff --git a/dist/fa/chevronCircleDown.js b/dist/fa/chevronCircleDown.js
new file mode 100644
index 000000000..33147e262
--- /dev/null
+++ b/dist/fa/chevronCircleDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronCircleDown = void 0;
+var chevronCircleDown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M813 1299l454-454q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-307 307-307-307q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l454 454q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.chevronCircleDown = chevronCircleDown;
\ No newline at end of file
diff --git a/dist/fa/chevronCircleLeft.js b/dist/fa/chevronCircleLeft.js
new file mode 100644
index 000000000..76e475aef
--- /dev/null
+++ b/dist/fa/chevronCircleLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronCircleLeft = void 0;
+var chevronCircleLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M909 1395l102-102q19-19 19-45t-19-45l-307-307 307-307q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-454 454q-19 19-19 45t19 45l454 454q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.chevronCircleLeft = chevronCircleLeft;
\ No newline at end of file
diff --git a/dist/fa/chevronCircleRight.js b/dist/fa/chevronCircleRight.js
new file mode 100644
index 000000000..8df62e61a
--- /dev/null
+++ b/dist/fa/chevronCircleRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronCircleRight = void 0;
+var chevronCircleRight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M717 1395l454-454q19-19 19-45t-19-45l-454-454q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l307 307-307 307q-19 19-19 45t19 45l102 102q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.chevronCircleRight = chevronCircleRight;
\ No newline at end of file
diff --git a/dist/fa/chevronCircleUp.js b/dist/fa/chevronCircleUp.js
new file mode 100644
index 000000000..191cbf518
--- /dev/null
+++ b/dist/fa/chevronCircleUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronCircleUp = void 0;
+var chevronCircleUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1165 1139l102-102q19-19 19-45t-19-45l-454-454q-19-19-45-19t-45 19l-454 454q-19 19-19 45t19 45l102 102q19 19 45 19t45-19l307-307 307 307q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.chevronCircleUp = chevronCircleUp;
\ No newline at end of file
diff --git a/dist/fa/chevronDown.js b/dist/fa/chevronDown.js
new file mode 100644
index 000000000..26a2cde5c
--- /dev/null
+++ b/dist/fa/chevronDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronDown = void 0;
+var chevronDown = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1683 808l-742 741q-19 19-45 19t-45-19l-742-741q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z"
+ }
+ }]
+};
+exports.chevronDown = chevronDown;
\ No newline at end of file
diff --git a/dist/fa/chevronLeft.js b/dist/fa/chevronLeft.js
new file mode 100644
index 000000000..2411226a0
--- /dev/null
+++ b/dist/fa/chevronLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronLeft = void 0;
+var chevronLeft = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1171 301l-531 531 531 531q19 19 19 45t-19 45l-166 166q-19 19-45 19t-45-19l-742-742q-19-19-19-45t19-45l742-742q19-19 45-19t45 19l166 166q19 19 19 45t-19 45z"
+ }
+ }]
+};
+exports.chevronLeft = chevronLeft;
\ No newline at end of file
diff --git a/dist/fa/chevronRight.js b/dist/fa/chevronRight.js
new file mode 100644
index 000000000..15c5cfb47
--- /dev/null
+++ b/dist/fa/chevronRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronRight = void 0;
+var chevronRight = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1107 877l-742 742q-19 19-45 19t-45-19l-166-166q-19-19-19-45t19-45l531-531-531-531q-19-19-19-45t19-45l166-166q19-19 45-19t45 19l742 742q19 19 19 45t-19 45z"
+ }
+ }]
+};
+exports.chevronRight = chevronRight;
\ No newline at end of file
diff --git a/dist/fa/chevronUp.js b/dist/fa/chevronUp.js
new file mode 100644
index 000000000..6d826a396
--- /dev/null
+++ b/dist/fa/chevronUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronUp = void 0;
+var chevronUp = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1683 1331l-166 165q-19 19-45 19t-45-19l-531-531-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-45.5t19-45.5l742-741q19-19 45-19t45 19l742 741q19 19 19 45.5t-19 45.5z"
+ }
+ }]
+};
+exports.chevronUp = chevronUp;
\ No newline at end of file
diff --git a/dist/fa/child.js b/dist/fa/child.js
new file mode 100644
index 000000000..84baa28d7
--- /dev/null
+++ b/dist/fa/child.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.child = void 0;
+var child = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1188 548l-292 292v824q0 46-33 79t-79 33-79-33-33-79v-384h-64v384q0 46-33 79t-79 33-79-33-33-79v-824l-292-292q-28-28-28-68t28-68q29-28 68.5-28t67.5 28l228 228h368l228-228q28-28 68-28t68 28q28 29 28 68.5t-28 67.5zM864 384q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z"
+ }
+ }]
+};
+exports.child = child;
\ No newline at end of file
diff --git a/dist/fa/chrome.js b/dist/fa/chrome.js
new file mode 100644
index 000000000..fdb467d10
--- /dev/null
+++ b/dist/fa/chrome.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chrome = void 0;
+var chrome = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M893 0q240-2 451 120 232 134 352 372l-742-39q-160-9-294 74.5t-185 229.5l-276-424q128-159 311-245.5t383-87.5zM146 405l337 663q72 143 211 217t293 45l-230 451q-212-33-385-157.5t-272.5-316-99.5-411.5q0-267 146-491zM1732 574q58 150 59.5 310.5t-48.5 306-153 272-246 209.5q-230 133-498 119l405-623q88-131 82.5-290.5t-106.5-277.5zM896 594q125 0 213.5 88.5t88.5 213.5-88.5 213.5-213.5 88.5-213.5-88.5-88.5-213.5 88.5-213.5 213.5-88.5z"
+ }
+ }]
+};
+exports.chrome = chrome;
\ No newline at end of file
diff --git a/dist/fa/circle.js b/dist/fa/circle.js
new file mode 100644
index 000000000..463cf1962
--- /dev/null
+++ b/dist/fa/circle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle = void 0;
+var circle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.circle = circle;
\ No newline at end of file
diff --git a/dist/fa/circleO.js b/dist/fa/circleO.js
new file mode 100644
index 000000000..7442168bc
--- /dev/null
+++ b/dist/fa/circleO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleO = void 0;
+var circleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.circleO = circleO;
\ No newline at end of file
diff --git a/dist/fa/circleONotch.js b/dist/fa/circleONotch.js
new file mode 100644
index 000000000..cbb3a33c0
--- /dev/null
+++ b/dist/fa/circleONotch.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleONotch = void 0;
+var circleONotch = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1760 896q0 176-68.5 336t-184 275.5-275.5 184-336 68.5-336-68.5-275.5-184-184-275.5-68.5-336q0-213 97-398.5t265-305.5 374-151v228q-221 45-366.5 221t-145.5 406q0 130 51 248.5t136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5q0-230-145.5-406t-366.5-221v-228q206 31 374 151t265 305.5 97 398.5z"
+ }
+ }]
+};
+exports.circleONotch = circleONotch;
\ No newline at end of file
diff --git a/dist/fa/circleThin.js b/dist/fa/circleThin.js
new file mode 100644
index 000000000..5235608bc
--- /dev/null
+++ b/dist/fa/circleThin.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleThin = void 0;
+var circleThin = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.circleThin = circleThin;
\ No newline at end of file
diff --git a/dist/fa/clipboard.js b/dist/fa/clipboard.js
new file mode 100644
index 000000000..f6f5232e2
--- /dev/null
+++ b/dist/fa/clipboard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clipboard = void 0;
+var clipboard = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 1664h896v-640h-416q-40 0-68-28t-28-68v-416h-384v1152zM1024 224v-64q0-13-9.5-22.5t-22.5-9.5h-704q-13 0-22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h704q13 0 22.5-9.5t9.5-22.5zM1280 896h299l-299-299v299zM1792 1024v672q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-544q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1088q40 0 68 28t28 68v328q21 13 36 28l408 408q28 28 48 76t20 88z"
+ }
+ }]
+};
+exports.clipboard = clipboard;
\ No newline at end of file
diff --git a/dist/fa/clockO.js b/dist/fa/clockO.js
new file mode 100644
index 000000000..66912ea9c
--- /dev/null
+++ b/dist/fa/clockO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clockO = void 0;
+var clockO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 544v448q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-352q0-14 9-23t23-9h64q14 0 23 9t9 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.clockO = clockO;
\ No newline at end of file
diff --git a/dist/fa/clone.js b/dist/fa/clone.js
new file mode 100644
index 000000000..adc65d2f6
--- /dev/null
+++ b/dist/fa/clone.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clone = void 0;
+var clone = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1632v-1088q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5v1088q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5-9.5t9.5-22.5zM1792 544v1088q0 66-47 113t-113 47h-1088q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1088q66 0 113 47t47 113zM1408 160v160h-128v-160q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5v1088q0 13 9.5 22.5t22.5 9.5h160v128h-160q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1088q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.clone = clone;
\ No newline at end of file
diff --git a/dist/fa/close.js b/dist/fa/close.js
new file mode 100644
index 000000000..7428cbcd5
--- /dev/null
+++ b/dist/fa/close.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.close = void 0;
+var close = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z"
+ }
+ }]
+};
+exports.close = close;
\ No newline at end of file
diff --git a/dist/fa/cloud.js b/dist/fa/cloud.js
new file mode 100644
index 000000000..25ab2df19
--- /dev/null
+++ b/dist/fa/cloud.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud = void 0;
+var cloud = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-132 71-241.5t187-163.5q-2-28-2-43 0-212 150-362t362-150q158 0 286.5 88t187.5 230q70-62 166-62 106 0 181 75t75 181q0 75-41 138 129 30 213 134.5t84 239.5z"
+ }
+ }]
+};
+exports.cloud = cloud;
\ No newline at end of file
diff --git a/dist/fa/cloudDownload.js b/dist/fa/cloudDownload.js
new file mode 100644
index 000000000..0354cc9b3
--- /dev/null
+++ b/dist/fa/cloudDownload.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudDownload = void 0;
+var cloudDownload = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 928q0-14-9-23t-23-9h-224v-352q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v352h-224q-13 0-22.5 9.5t-9.5 22.5q0 14 9 23l352 352q9 9 23 9t23-9l351-351q10-12 10-24zM1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-130 70-240t188-165q-2-30-2-43 0-212 150-362t362-150q156 0 285.5 87t188.5 231q71-62 166-62 106 0 181 75t75 181q0 76-41 138 130 31 213.5 135.5t83.5 238.5z"
+ }
+ }]
+};
+exports.cloudDownload = cloudDownload;
\ No newline at end of file
diff --git a/dist/fa/cloudUpload.js b/dist/fa/cloudUpload.js
new file mode 100644
index 000000000..4fca205b8
--- /dev/null
+++ b/dist/fa/cloudUpload.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudUpload = void 0;
+var cloudUpload = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 864q0-14-9-23l-352-352q-9-9-23-9t-23 9l-351 351q-10 12-10 24 0 14 9 23t23 9h224v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5v-352h224q13 0 22.5-9.5t9.5-22.5zM1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-130 70-240t188-165q-2-30-2-43 0-212 150-362t362-150q156 0 285.5 87t188.5 231q71-62 166-62 106 0 181 75t75 181q0 76-41 138 130 31 213.5 135.5t83.5 238.5z"
+ }
+ }]
+};
+exports.cloudUpload = cloudUpload;
\ No newline at end of file
diff --git a/dist/fa/cny.js b/dist/fa/cny.js
new file mode 100644
index 000000000..ffa4e7205
--- /dev/null
+++ b/dist/fa/cny.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cny = void 0;
+var cny = {
+ "viewBox": "0 0 1027 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z"
+ }
+ }]
+};
+exports.cny = cny;
\ No newline at end of file
diff --git a/dist/fa/code.js b/dist/fa/code.js
new file mode 100644
index 000000000..de6aa026e
--- /dev/null
+++ b/dist/fa/code.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.code = void 0;
+var code = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M617 1399l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23t-10 23zM1208 332l-373 1291q-4 13-15.5 19.5t-23.5 2.5l-62-17q-13-4-19.5-15.5t-2.5-24.5l373-1291q4-13 15.5-19.5t23.5-2.5l62 17q13 4 19.5 15.5t2.5 24.5zM1865 983l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23z"
+ }
+ }]
+};
+exports.code = code;
\ No newline at end of file
diff --git a/dist/fa/codeFork.js b/dist/fa/codeFork.js
new file mode 100644
index 000000000..f134c4dc3
--- /dev/null
+++ b/dist/fa/codeFork.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.codeFork = void 0;
+var codeFork = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288 1472q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM288 320q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM928 448q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1024 448q0 52-26 96.5t-70 69.5q-2 287-226 414-67 38-203 81-128 40-169.5 71t-41.5 100v26q44 25 70 69.5t26 96.5q0 80-56 136t-136 56-136-56-56-136q0-52 26-96.5t70-69.5v-820q-44-25-70-69.5t-26-96.5q0-80 56-136t136-56 136 56 56 136q0 52-26 96.5t-70 69.5v497q54-26 154-57 55-17 87.5-29.5t70.5-31 59-39.5 40.5-51 28-69.5 8.5-91.5q-44-25-70-69.5t-26-96.5q0-80 56-136t136-56 136 56 56 136z"
+ }
+ }]
+};
+exports.codeFork = codeFork;
\ No newline at end of file
diff --git a/dist/fa/codepen.js b/dist/fa/codepen.js
new file mode 100644
index 000000000..ed2b9b0bc
--- /dev/null
+++ b/dist/fa/codepen.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.codepen = void 0;
+var codepen = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M216 1169l603 402v-359l-334-223zM154 1025l193-129-193-129v258zM973 1571l603-402-269-180-334 223v359zM896 1078l272-182-272-182-272 182zM485 803l334-223v-359l-603 402zM1445 896l193 129v-258zM1307 803l269-180-603-402v359zM1792 623v546q0 41-34 64l-819 546q-21 13-43 13t-43-13l-819-546q-34-23-34-64v-546q0-41 34-64l819-546q21-13 43-13t43 13l819 546q34 23 34 64z"
+ }
+ }]
+};
+exports.codepen = codepen;
\ No newline at end of file
diff --git a/dist/fa/codiepie.js b/dist/fa/codiepie.js
new file mode 100644
index 000000000..588b748b8
--- /dev/null
+++ b/dist/fa/codiepie.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.codiepie = void 0;
+var codiepie = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1584 1290l-218-111q-74 120-196.5 189t-263.5 69q-147 0-271-72t-196-196-72-270q0-110 42.5-209.5t115-172 172-115 209.5-42.5q131 0 247.5 60.5t192.5 168.5l215-125q-110-169-286.5-265t-378.5-96q-161 0-308 63t-253 169-169 253-63 308 63 308 169 253 253 169 308 63q213 0 397.5-107t290.5-292zM1030 893l693 352q-116 253-334.5 400t-492.5 147q-182 0-348-71t-286-191-191-286-71-348 71-348 191-286 286-191 348-71q260 0 470.5 133.5t335.5 366.5zM1543 896h-39v160h-96v-352h136q32 0 54.5 20t28.5 48 1 56-27.5 48-57.5 20z"
+ }
+ }]
+};
+exports.codiepie = codiepie;
\ No newline at end of file
diff --git a/dist/fa/coffee.js b/dist/fa/coffee.js
new file mode 100644
index 000000000..16075fe67
--- /dev/null
+++ b/dist/fa/coffee.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.coffee = void 0;
+var coffee = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 640q0-80-56-136t-136-56h-64v384h64q80 0 136-56t56-136zM0 1408h1792q0 106-75 181t-181 75h-1280q-106 0-181-75t-75-181zM1856 640q0 159-112.5 271.5t-271.5 112.5h-64v32q0 92-66 158t-158 66h-704q-92 0-158-66t-66-158v-736q0-26 19-45t45-19h1152q159 0 271.5 112.5t112.5 271.5z"
+ }
+ }]
+};
+exports.coffee = coffee;
\ No newline at end of file
diff --git a/dist/fa/cog.js b/dist/fa/cog.js
new file mode 100644
index 000000000..e74b7aa69
--- /dev/null
+++ b/dist/fa/cog.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cog = void 0;
+var cog = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1536 787v222q0 12-8 23t-20 13l-185 28q-19 54-39 91 35 50 107 138 10 12 10 25t-9 23q-27 37-99 108t-94 71q-12 0-26-9l-138-108q-44 23-91 38-16 136-29 186-7 28-36 28h-222q-14 0-24.5-8.5t-11.5-21.5l-28-184q-49-16-90-37l-141 107q-10 9-25 9-14 0-25-11-126-114-165-168-7-10-7-23 0-12 8-23 15-21 51-66.5t54-70.5q-27-50-41-99l-183-27q-13-2-21-12.5t-8-23.5v-222q0-12 8-23t19-13l186-28q14-46 39-92-40-57-107-138-10-12-10-24 0-10 9-23 26-36 98.5-107.5t94.5-71.5q13 0 26 10l138 107q44-23 91-38 16-136 29-186 7-28 36-28h222q14 0 24.5 8.5t11.5 21.5l28 184q49 16 90 37l142-107q9-9 24-9 13 0 25 10 129 119 165 170 7 8 7 22 0 12-8 23-15 21-51 66.5t-54 70.5q26 50 41 98l183 28q13 2 21 12.5t8 23.5z"
+ }
+ }]
+};
+exports.cog = cog;
\ No newline at end of file
diff --git a/dist/fa/cogs.js b/dist/fa/cogs.js
new file mode 100644
index 000000000..b4fc8da4b
--- /dev/null
+++ b/dist/fa/cogs.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cogs = void 0;
+var cogs = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1664 1408q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1664 384q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1280 805v185q0 10-7 19.5t-16 10.5l-155 24q-11 35-32 76 34 48 90 115 7 11 7 20 0 12-7 19-23 30-82.5 89.5t-78.5 59.5q-11 0-21-7l-115-90q-37 19-77 31-11 108-23 155-7 24-30 24h-186q-11 0-20-7.5t-10-17.5l-23-153q-34-10-75-31l-118 89q-7 7-20 7-11 0-21-8-144-133-144-160 0-9 7-19 10-14 41-53t47-61q-23-44-35-82l-152-24q-10-1-17-9.5t-7-19.5v-185q0-10 7-19.5t16-10.5l155-24q11-35 32-76-34-48-90-115-7-11-7-20 0-12 7-20 22-30 82-89t79-59q11 0 21 7l115 90q34-18 77-32 11-108 23-154 7-24 30-24h186q11 0 20 7.5t10 17.5l23 153q34 10 75 31l118-89q8-7 20-7 11 0 21 8 144 133 144 160 0 8-7 19-12 16-42 54t-45 60q23 48 34 82l152 23q10 2 17 10.5t7 19.5zM1920 1338v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31zM1920 314v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31z"
+ }
+ }]
+};
+exports.cogs = cogs;
\ No newline at end of file
diff --git a/dist/fa/columns.js b/dist/fa/columns.js
new file mode 100644
index 000000000..ec8ce4d3f
--- /dev/null
+++ b/dist/fa/columns.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.columns = void 0;
+var columns = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160 1536h608v-1152h-640v1120q0 13 9.5 22.5t22.5 9.5zM1536 1504v-1120h-640v1152h608q13 0 22.5-9.5t9.5-22.5zM1664 288v1216q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1344q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.columns = columns;
\ No newline at end of file
diff --git a/dist/fa/comment.js b/dist/fa/comment.js
new file mode 100644
index 000000000..ae0557aea
--- /dev/null
+++ b/dist/fa/comment.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.comment = void 0;
+var comment = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22-17 2-30.5-9t-17.5-29v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-130 71-248.5t191-204.5 286-136.5 348-50.5q244 0 450 85.5t326 233 120 321.5z"
+ }
+ }]
+};
+exports.comment = comment;
\ No newline at end of file
diff --git a/dist/fa/commentO.js b/dist/fa/commentO.js
new file mode 100644
index 000000000..cdc774fce
--- /dev/null
+++ b/dist/fa/commentO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commentO = void 0;
+var commentO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 384q-204 0-381.5 69.5t-282 187.5-104.5 255q0 112 71.5 213.5t201.5 175.5l87 50-27 96q-24 91-70 172 152-63 275-171l43-38 57 6q69 8 130 8 204 0 381.5-69.5t282-187.5 104.5-255-104.5-255-282-187.5-381.5-69.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22h-5q-15 0-27-10.5t-16-27.5v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-174 120-321.5t326-233 450-85.5 450 85.5 326 233 120 321.5z"
+ }
+ }]
+};
+exports.commentO = commentO;
\ No newline at end of file
diff --git a/dist/fa/commenting.js b/dist/fa/commenting.js
new file mode 100644
index 000000000..93bb9c2da
--- /dev/null
+++ b/dist/fa/commenting.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commenting = void 0;
+var commenting = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1408 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-110 0-211-18-173 173-435 229-52 10-86 13-12 1-22-6t-13-18q-4-15 20-37 5-5 23.5-21.5t25.5-23.5 23.5-25.5 24-31.5 20.5-37 20-48 14.5-57.5 12.5-72.5q-146-90-229.5-216.5t-83.5-269.5q0-174 120-321.5t326-233 450-85.5 450 85.5 326 233 120 321.5z"
+ }
+ }]
+};
+exports.commenting = commenting;
\ No newline at end of file
diff --git a/dist/fa/commentingO.js b/dist/fa/commentingO.js
new file mode 100644
index 000000000..18ebe766d
--- /dev/null
+++ b/dist/fa/commentingO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commentingO = void 0;
+var commentingO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1024 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM896 384q-204 0-381.5 69.5t-282 187.5-104.5 255q0 112 71.5 213.5t201.5 175.5l87 50-27 96q-24 91-70 172 152-63 275-171l43-38 57 6q69 8 130 8 204 0 381.5-69.5t282-187.5 104.5-255-104.5-255-282-187.5-381.5-69.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22h-5q-15 0-27-10.5t-16-27.5v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-130 71-248.5t191-204.5 286-136.5 348-50.5 348 50.5 286 136.5 191 204.5 71 248.5z"
+ }
+ }]
+};
+exports.commentingO = commentingO;
\ No newline at end of file
diff --git a/dist/fa/comments.js b/dist/fa/comments.js
new file mode 100644
index 000000000..2cfc12fda
--- /dev/null
+++ b/dist/fa/comments.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.comments = void 0;
+var comments = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 768q0 139-94 257t-256.5 186.5-353.5 68.5q-86 0-176-16-124 88-278 128-36 9-86 16h-3q-11 0-20.5-8t-11.5-21q-1-3-1-6.5t0.5-6.5 2-6l2.5-5t3.5-5.5 4-5 4.5-5 4-4.5q5-6 23-25t26-29.5 22.5-29 25-38.5 20.5-44q-124-72-195-177t-71-224q0-139 94-257t256.5-186.5 353.5-68.5 353.5 68.5 256.5 186.5 94 257zM1792 1024q0 120-71 224.5t-195 176.5q10 24 20.5 44t25 38.5 22.5 29 26 29.5 23 25q1 1 4 4.5t4.5 5 4 5 3.5 5.5l2.5 5t2 6 0.5 6.5-1 6.5q-3 14-13 22t-22 7q-50-7-86-16-154-40-278-128-90 16-176 16-271 0-472-132 58 4 88 4 161 0 309-45t264-129q125-92 192-212t67-254q0-77-23-152 129 71 204 178t75 230z"
+ }
+ }]
+};
+exports.comments = comments;
\ No newline at end of file
diff --git a/dist/fa/commentsO.js b/dist/fa/commentsO.js
new file mode 100644
index 000000000..5c2b63761
--- /dev/null
+++ b/dist/fa/commentsO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.commentsO = void 0;
+var commentsO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 384q-153 0-286 52t-211.5 141-78.5 191q0 82 53 158t149 132l97 56-35 84q34-20 62-39l44-31 53 10q78 14 153 14 153 0 286-52t211.5-141 78.5-191-78.5-191-211.5-141-286-52zM704 256q191 0 353.5 68.5t256.5 186.5 94 257-94 257-256.5 186.5-353.5 68.5q-86 0-176-16-124 88-278 128-36 9-86 16h-3q-11 0-20.5-8t-11.5-21q-1-3-1-6.5t0.5-6.5 2-6l2.5-5t3.5-5.5 4-5 4.5-5 4-4.5q5-6 23-25t26-29.5 22.5-29 25-38.5 20.5-44q-124-72-195-177t-71-224q0-139 94-257t256.5-186.5 353.5-68.5zM1526 1425q10 24 20.5 44t25 38.5 22.5 29 26 29.5 23 25q1 1 4 4.5t4.5 5 4 5 3.5 5.5l2.5 5t2 6 0.5 6.5-1 6.5q-3 14-13 22t-22 7q-50-7-86-16-154-40-278-128-90 16-176 16-271 0-472-132 58 4 88 4 161 0 309-45t264-129q125-92 192-212t67-254q0-77-23-152 129 71 204 178t75 230q0 120-71 224.5t-195 176.5z"
+ }
+ }]
+};
+exports.commentsO = commentsO;
\ No newline at end of file
diff --git a/dist/fa/compass.js b/dist/fa/compass.js
new file mode 100644
index 000000000..22a4c0060
--- /dev/null
+++ b/dist/fa/compass.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.compass = void 0;
+var compass = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1088l256-128-256-128v256zM1024 497v542l-512 256v-542zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.compass = compass;
\ No newline at end of file
diff --git a/dist/fa/compress.js b/dist/fa/compress.js
new file mode 100644
index 000000000..1e0549324
--- /dev/null
+++ b/dist/fa/compress.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.compress = void 0;
+var compress = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 960v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45zM1523 288q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23z"
+ }
+ }]
+};
+exports.compress = compress;
\ No newline at end of file
diff --git a/dist/fa/connectdevelop.js b/dist/fa/connectdevelop.js
new file mode 100644
index 000000000..0e7c3b9ef
--- /dev/null
+++ b/dist/fa/connectdevelop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.connectdevelop = void 0;
+var connectdevelop = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2048 895q0 21-13 36.5t-33 19.5l-205 356q3 9 3 18 0 20-12.5 35.5t-32.5 19.5l-193 337q3 8 3 16 0 23-16.5 40t-40.5 17q-25 0-41-18h-400q-17 20-43 20t-43-20h-399q-17 20-43 20-23 0-40-16.5t-17-40.5q0-8 4-20l-193-335q-20-4-32.5-19.5t-12.5-35.5q0-9 3-18l-206-356q-20-5-32.5-20.5t-12.5-35.5q0-21 13.5-36.5t33.5-19.5l199-344q0-1-0.5-3t-0.5-3q0-36 34-51l209-363q-4-10-4-18 0-24 17-40.5t40-16.5q26 0 44 21h396q16-21 43-21t43 21h398q18-21 44-21 23 0 40 16.5t17 40.5q0 6-4 18l207 358q23 1 39 17.5t16 38.5q0 13-7 27l187 324q19 4 31.5 19.5t12.5 35.5zM1063 1694h389l-342-354h-143l-342 354h360q18-16 39-16t39 16zM112 882q1 4 1 13 0 10-2 15l208 360 15 6 188-199v-347l-187-194q-13 8-29 10zM986 98h-388l190 200 554-200h-280q-16 16-38 16t-38-16zM1689 1310q1-6 5-11l-64-68-17 79h76zM1583 1310l22-105-252-266-296 307 63 64h463zM1495 1678l16-28 65-310h-427l333 343q8-4 13-5zM578 1694h5l342-354h-373v335l4 6q14 5 22 13zM552 1310h402l64-66-309-321-157 166v221zM359 1310h163v-189l-168 177q4 8 5 12zM358 485q0 1 0.5 2t0.5 2q0 16-8 29l171 177v-269zM552 415v311l153 157 297-314-223-236zM556 111l-4 8v264l205-74-191-201q-6 2-10 3zM1447 98h-16l-621 224 213 225zM1023 590l-297 315 311 319 296-307zM688 902l-136-141v284zM1038 1266l-42 44h85zM1374 918l238 251 132-624-3-5-1-1zM1718 518q-8-13-8-29v-2l-216-376q-5-1-13-5l-437 463 310 327zM522 394v-223l-163 282zM522 1340h-163l163 283v-283zM1607 1340l-48 227 130-227h-82zM1729 1270l207-361q-2-10-2-14 0-1 3-16l-171-296-129 612 77 82q5-3 15-7z"
+ }
+ }]
+};
+exports.connectdevelop = connectdevelop;
\ No newline at end of file
diff --git a/dist/fa/contao.js b/dist/fa/contao.js
new file mode 100644
index 000000000..428af12fa
--- /dev/null
+++ b/dist/fa/contao.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.contao = void 0;
+var contao = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M138 128h197q-70 64-126 149-36 56-59 115t-30 125.5-8.5 120 10.5 132 21 126 28 136.5q4 19 6 28 51 238 81 329 57 171 152 275h-272q-48 0-82-34t-34-82v-1304q0-48 34-82t82-34zM1346 128h308q48 0 82 34t34 82v1304q0 48-34 82t-82 34h-178q212-210 196-565l-469 101q-2 45-12 82t-31 72-59.5 59.5-93.5 36.5q-123 26-199-40-32-27-53-61t-51.5-129-64.5-258q-35-163-45.5-263t-5.5-139 23-77q20-41 62.5-73t102.5-45q45-12 83.5-6.5t67 17 54 35 43 48 34.5 56.5l468-100q-68-175-180-287z"
+ }
+ }]
+};
+exports.contao = contao;
\ No newline at end of file
diff --git a/dist/fa/copy.js b/dist/fa/copy.js
new file mode 100644
index 000000000..26f59f9be
--- /dev/null
+++ b/dist/fa/copy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.copy = void 0;
+var copy = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1696 384q40 0 68 28t28 68v1216q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-288h-544q-40 0-68-28t-28-68v-672q0-40 20-88t48-76l408-408q28-28 76-48t88-20h416q40 0 68 28t28 68v328q68-40 128-40h416zM1152 597l-299 299h299v-299zM512 213l-299 299h299v-299zM708 860l316-316v-416h-384v416q0 40-28 68t-68 28h-416v640h512v-256q0-40 20-88t48-76zM1664 1664v-1152h-384v416q0 40-28 68t-68 28h-416v640h896z"
+ }
+ }]
+};
+exports.copy = copy;
\ No newline at end of file
diff --git a/dist/fa/copyright.js b/dist/fa/copyright.js
new file mode 100644
index 000000000..b92acb60e
--- /dev/null
+++ b/dist/fa/copyright.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.copyright = void 0;
+var copyright = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1150 1074v109q0 50-36.5 89t-94 60.5-118 32.5-117.5 11q-205 0-342.5-139t-137.5-346q0-203 136-339t339-136q34 0 75.5 4.5t93 18 92.5 34 69 56.5 28 81v109q0 16-16 16h-118q-16 0-16-16v-70q0-43-65.5-67.5t-137.5-24.5q-140 0-228.5 91.5t-88.5 237.5q0 151 91.5 249.5t233.5 98.5q68 0 138-24t70-66v-70q0-7 4.5-11.5t10.5-4.5h119q6 0 11 4.5t5 11.5zM768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.copyright = copyright;
\ No newline at end of file
diff --git a/dist/fa/creativeCommons.js b/dist/fa/creativeCommons.js
new file mode 100644
index 000000000..7242bfeb8
--- /dev/null
+++ b/dist/fa/creativeCommons.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.creativeCommons = void 0;
+var creativeCommons = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M605 1233q153 0 257-104 14-18 3-36l-45-82q-6-13-24-17-16-2-27 11l-4 3q-4 4-11.5 10t-17.5 13.5-23.5 14.5-28.5 13-33.5 9.5-37.5 3.5q-76 0-125-50t-49-127q0-76 48-125.5t122-49.5q37 0 71.5 14t50.5 28l16 14q11 11 26 10 16-2 24-14l53-78q13-20-2-39-3-4-11-12t-30-23.5-48.5-28-67.5-22.5-86-10q-148 0-246 96.5t-98 240.5q0 146 97 241.5t247 95.5zM1235 1233q153 0 257-104 14-18 4-36l-45-82q-8-14-25-17-16-2-27 11l-4 3q-4 4-11.5 10t-17.5 13.5-23.5 14.5-28.5 13-33.5 9.5-37.5 3.5q-76 0-125-50t-49-127q0-76 48-125.5t122-49.5q37 0 71.5 14t50.5 28l16 14q11 11 26 10 16-2 24-14l53-78q13-20-2-39-3-4-11-12t-30-23.5-48.5-28-67.5-22.5-86-10q-147 0-245.5 96.5t-98.5 240.5q0 146 97 241.5t247 95.5zM896 160q-150 0-286 58.5t-234.5 157-157 234.5-58.5 286 58.5 286 157 234.5 234.5 157 286 58.5 286-58.5 234.5-157 157-234.5 58.5-286-58.5-286-157-234.5-234.5-157-286-58.5zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71z"
+ }
+ }]
+};
+exports.creativeCommons = creativeCommons;
\ No newline at end of file
diff --git a/dist/fa/creditCard.js b/dist/fa/creditCard.js
new file mode 100644
index 000000000..950082a53
--- /dev/null
+++ b/dist/fa/creditCard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.creditCard = void 0;
+var creditCard = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1760 128q66 0 113 47t47 113v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600zM160 256q-13 0-22.5 9.5t-9.5 22.5v224h1664v-224q0-13-9.5-22.5t-22.5-9.5h-1600zM1760 1536q13 0 22.5-9.5t9.5-22.5v-608h-1664v608q0 13 9.5 22.5t22.5 9.5h1600zM256 1408v-128h256v128h-256zM640 1408v-128h384v128h-384z"
+ }
+ }]
+};
+exports.creditCard = creditCard;
\ No newline at end of file
diff --git a/dist/fa/creditCardAlt.js b/dist/fa/creditCardAlt.js
new file mode 100644
index 000000000..ef2d3698b
--- /dev/null
+++ b/dist/fa/creditCardAlt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.creditCardAlt = void 0;
+var creditCardAlt = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 1504v-608h2304v608q0 66-47 113t-113 47h-1984q-66 0-113-47t-47-113zM640 1280v128h384v-128h-384zM256 1280v128h256v-128h-256zM2144 128q66 0 113 47t47 113v224h-2304v-224q0-66 47-113t113-47h1984z"
+ }
+ }]
+};
+exports.creditCardAlt = creditCardAlt;
\ No newline at end of file
diff --git a/dist/fa/crop.js b/dist/fa/crop.js
new file mode 100644
index 000000000..bc92dc21b
--- /dev/null
+++ b/dist/fa/crop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crop = void 0;
+var crop = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M557 1280h595v-595zM512 1235l595-595h-595v595zM1664 1312v192q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-224h-864q-14 0-23-9t-9-23v-864h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h192q14 0 23 9t9 23v224h851l246-247q10-9 23-9t23 9q9 10 9 23t-9 23l-247 246v851h224q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.crop = crop;
\ No newline at end of file
diff --git a/dist/fa/crosshairs.js b/dist/fa/crosshairs.js
new file mode 100644
index 000000000..286cac569
--- /dev/null
+++ b/dist/fa/crosshairs.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crosshairs = void 0;
+var crosshairs = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1197 1024h-109q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h109q-32-108-112.5-188.5t-188.5-112.5v109q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-109q-108 32-188.5 112.5t-112.5 188.5h109q26 0 45 19t19 45v128q0 26-19 45t-45 19h-109q32 108 112.5 188.5t188.5 112.5v-109q0-26 19-45t45-19h128q26 0 45 19t19 45v109q108-32 188.5-112.5t112.5-188.5zM1536 832v128q0 26-19 45t-45 19h-143q-37 161-154.5 278.5t-278.5 154.5v143q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-143q-161-37-278.5-154.5t-154.5-278.5h-143q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h143q37-161 154.5-278.5t278.5-154.5v-143q0-26 19-45t45-19h128q26 0 45 19t19 45v143q161 37 278.5 154.5t154.5 278.5h143q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.crosshairs = crosshairs;
\ No newline at end of file
diff --git a/dist/fa/css3.js b/dist/fa/css3.js
new file mode 100644
index 000000000..66677547a
--- /dev/null
+++ b/dist/fa/css3.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.css3 = void 0;
+var css3 = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M275 128h1505l-266 1333-804 267-698-267 71-356h297l-29 147 422 161 486-161 68-339h-1208l58-297h1209l38-191h-1208z"
+ }
+ }]
+};
+exports.css3 = css3;
\ No newline at end of file
diff --git a/dist/fa/cube.js b/dist/fa/cube.js
new file mode 100644
index 000000000..71429291d
--- /dev/null
+++ b/dist/fa/cube.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cube = void 0;
+var cube = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1629l640-349v-636l-640 233v752zM832 764l698-254-698-254-698 254zM1664 512v768q0 35-18 65t-49 47l-704 384q-28 16-61 16t-61-16l-704-384q-31-17-49-47t-18-65v-768q0-40 23-73t61-47l704-256q22-8 44-8t44 8l704 256q38 14 61 47t23 73z"
+ }
+ }]
+};
+exports.cube = cube;
\ No newline at end of file
diff --git a/dist/fa/cubes.js b/dist/fa/cubes.js
new file mode 100644
index 000000000..4d373529a
--- /dev/null
+++ b/dist/fa/cubes.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cubes = void 0;
+var cubes = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1632l384-192v-314l-384 164v342zM576 1178l404-173-404-173-404 173zM1664 1632l384-192v-314l-384 164v342zM1600 1178l404-173-404-173-404 173zM1152 885l384-165v-266l-384 164v267zM1088 506l441-189-441-189-441 189zM2176 1024v416q0 36-19 67t-52 47l-448 224q-25 14-57 14t-57-14l-448-224q-4-2-7-4-2 2-7 4l-448 224q-25 14-57 14t-57-14l-448-224q-33-16-52-47t-19-67v-416q0-38 21.5-70t56.5-48l434-186v-400q0-38 21.5-70t56.5-48l448-192q23-10 50-10t50 10l448 192q35 16 56.5 48t21.5 70v400l434 186q36 16 57 48t21 70z"
+ }
+ }]
+};
+exports.cubes = cubes;
\ No newline at end of file
diff --git a/dist/fa/cut.js b/dist/fa/cut.js
new file mode 100644
index 000000000..ef9ad7197
--- /dev/null
+++ b/dist/fa/cut.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cut = void 0;
+var cut = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1260 960l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zM579 700q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zM494 1445q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zM672 832l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zM896 1056l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zM1600 1472l128-64-520-408-177 138q-2 3-13 7z"
+ }
+ }]
+};
+exports.cut = cut;
\ No newline at end of file
diff --git a/dist/fa/cutlery.js b/dist/fa/cutlery.js
new file mode 100644
index 000000000..35be383c8
--- /dev/null
+++ b/dist/fa/cutlery.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cutlery = void 0;
+var cutlery = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 64v640q0 61-35.5 111t-92.5 70v779q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-779q-57-20-92.5-70t-35.5-111v-640q0-26 19-45t45-19 45 19 19 45v416q0 26 19 45t45 19 45-19 19-45v-416q0-26 19-45t45-19 45 19 19 45v416q0 26 19 45t45 19 45-19 19-45v-416q0-26 19-45t45-19 45 19 19 45zM1408 64v1600q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-512h-224q-13 0-22.5-9.5t-9.5-22.5v-800q0-132 94-226t226-94h256q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.cutlery = cutlery;
\ No newline at end of file
diff --git a/dist/fa/dashboard.js b/dist/fa/dashboard.js
new file mode 100644
index 000000000..e89fd0765
--- /dev/null
+++ b/dist/fa/dashboard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dashboard = void 0;
+var dashboard = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM576 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1004 1185l101-382q6-26-7.5-48.5t-38.5-29.5-48 6.5-30 39.5l-101 382q-60 5-107 43.5t-63 98.5q-20 77 20 146t117 89 146-20 89-117q16-60-6-117t-72-91zM1664 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1472 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 1152q0 261-141 483-19 29-54 29h-1402q-35 0-54-29-141-221-141-483 0-182 71-348t191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.dashboard = dashboard;
\ No newline at end of file
diff --git a/dist/fa/dashcube.js b/dist/fa/dashcube.js
new file mode 100644
index 000000000..ccee8ac0c
--- /dev/null
+++ b/dist/fa/dashcube.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dashcube = void 0;
+var dashcube = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 680q0-131 91.5-226.5t222.5-95.5h742l352-358v1470q0 132-91.5 227t-222.5 95h-780q-131 0-222.5-95t-91.5-227v-790zM1232 1434l-176-180v-425q0-46-32-79t-78-33h-484q-46 0-78 33t-32 79v492q0 46 32.5 79.5t77.5 33.5h770z"
+ }
+ }]
+};
+exports.dashcube = dashcube;
\ No newline at end of file
diff --git a/dist/fa/database.js b/dist/fa/database.js
new file mode 100644
index 000000000..fdfb118dc
--- /dev/null
+++ b/dist/fa/database.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.database = void 0;
+var database = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 768q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 1536q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 1152q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 0q208 0 385 34.5t280 93.5 103 128v128q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-128q0-69 103-128t280-93.5 385-34.5z"
+ }
+ }]
+};
+exports.database = database;
\ No newline at end of file
diff --git a/dist/fa/deaf.js b/dist/fa/deaf.js
new file mode 100644
index 000000000..f13569b2e
--- /dev/null
+++ b/dist/fa/deaf.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.deaf = void 0;
+var deaf = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z"
+ }
+ }]
+};
+exports.deaf = deaf;
\ No newline at end of file
diff --git a/dist/fa/deafness.js b/dist/fa/deafness.js
new file mode 100644
index 000000000..ca228b5d8
--- /dev/null
+++ b/dist/fa/deafness.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.deafness = void 0;
+var deafness = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z"
+ }
+ }]
+};
+exports.deafness = deafness;
\ No newline at end of file
diff --git a/dist/fa/dedent.js b/dist/fa/dedent.js
new file mode 100644
index 000000000..95aea936a
--- /dev/null
+++ b/dist/fa/dedent.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dedent = void 0;
+var dedent = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.dedent = dedent;
\ No newline at end of file
diff --git a/dist/fa/delicious.js b/dist/fa/delicious.js
new file mode 100644
index 000000000..08cd104e7
--- /dev/null
+++ b/dist/fa/delicious.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.delicious = void 0;
+var delicious = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1472 1376v-480h-704v-704h-480q-93 0-158.5 65.5t-65.5 158.5v480h704v704h480q93 0 158.5-65.5t65.5-158.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.delicious = delicious;
\ No newline at end of file
diff --git a/dist/fa/desktop.js b/dist/fa/desktop.js
new file mode 100644
index 000000000..c5f809274
--- /dev/null
+++ b/dist/fa/desktop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.desktop = void 0;
+var desktop = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 992v-832q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v832q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 160v1088q0 66-47 113t-113 47h-544q0 37 16 77.5t32 71 16 43.5q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45q0-14 16-44t32-70 16-78h-544q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.desktop = desktop;
\ No newline at end of file
diff --git a/dist/fa/deviantart.js b/dist/fa/deviantart.js
new file mode 100644
index 000000000..1210eb7c1
--- /dev/null
+++ b/dist/fa/deviantart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.deviantart = void 0;
+var deviantart = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 303l-303 582 24 31h279v415h-507l-44 30-142 273-30 30h-301v-303l303-583-24-30h-279v-415h507l44-30 142-273 30-30h301v303z"
+ }
+ }]
+};
+exports.deviantart = deviantart;
\ No newline at end of file
diff --git a/dist/fa/diamond.js b/dist/fa/diamond.js
new file mode 100644
index 000000000..ee76eccea
--- /dev/null
+++ b/dist/fa/diamond.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.diamond = void 0;
+var diamond = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M212 768l623 665-300-665h-323zM1024 1540l349-772h-698zM538 640l204-384h-262l-288 384h346zM1213 1433l623-665h-323zM683 640h682l-204-384h-274zM1510 640h346l-288-384h-262zM1651 154l384 512q14 18 13 41.5t-17 40.5l-960 1024q-18 20-47 20t-47-20l-960-1024q-16-17-17-40.5t13-41.5l384-512q18-26 51-26h1152q33 0 51 26z"
+ }
+ }]
+};
+exports.diamond = diamond;
\ No newline at end of file
diff --git a/dist/fa/digg.js b/dist/fa/digg.js
new file mode 100644
index 000000000..15d91790e
--- /dev/null
+++ b/dist/fa/digg.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.digg = void 0;
+var digg = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M328 282h204v983h-532v-697h328v-286zM328 1101v-369h-123v369h123zM614 568v697h205v-697h-205zM614 282v204h205v-204h-205zM901 568h533v942h-533v-163h328v-82h-328v-697zM1229 1101v-369h-123v369h123zM1516 568h532v942h-532v-163h327v-82h-327v-697zM1843 1101v-369h-123v369h123z"
+ }
+ }]
+};
+exports.digg = digg;
\ No newline at end of file
diff --git a/dist/fa/dollar.js b/dist/fa/dollar.js
new file mode 100644
index 000000000..aab0736c3
--- /dev/null
+++ b/dist/fa/dollar.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dollar = void 0;
+var dollar = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M978 1185q0 153-99.5 263.5t-258.5 136.5v175q0 14-9 23t-23 9h-135q-13 0-22.5-9.5t-9.5-22.5v-175q-66-9-127.5-31t-101.5-44.5-74-48-46.5-37.5-17.5-18q-17-21-2-41l103-135q7-10 23-12 15-2 24 9l2 2q113 99 243 125 37 8 74 8 81 0 142.5-43t61.5-122q0-28-15-53t-33.5-42-58.5-37.5-66-32-80-32.5q-39-16-61.5-25t-61.5-26.5-62.5-31-56.5-35.5-53.5-42.5-43.5-49-35.5-58-21-66.5-8.5-78q0-138 98-242t255-134v-180q0-13 9.5-22.5t22.5-9.5h135q14 0 23 9t9 23v176q57 6 110.5 23t87 33.5 63.5 37.5 39 29 15 14q17 18 5 38l-81 146q-8 15-23 16-14 3-27-7-3-3-14.5-12t-39-26.5-58.5-32-74.5-26-85.5-11.5q-95 0-155 43t-60 111q0 26 8.5 48t29.5 41.5 39.5 33 56 31 60.5 27 70 27.5q53 20 81 31.5t76 35 75.5 42.5 62 50 53 63.5 31.5 76.5 13 94z"
+ }
+ }]
+};
+exports.dollar = dollar;
\ No newline at end of file
diff --git a/dist/fa/dotCircleO.js b/dist/fa/dotCircleO.js
new file mode 100644
index 000000000..a08051e6d
--- /dev/null
+++ b/dist/fa/dotCircleO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dotCircleO = void 0;
+var dotCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 896q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.dotCircleO = dotCircleO;
\ No newline at end of file
diff --git a/dist/fa/download.js b/dist/fa/download.js
new file mode 100644
index 000000000..cfafae167
--- /dev/null
+++ b/dist/fa/download.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.download = void 0;
+var download = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 1120v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h465l135 136q58 56 136 56t136-56l136-136h464q40 0 68 28t28 68zM1339 551q17 41-14 70l-448 448q-18 19-45 19t-45-19l-448-448q-31-29-14-70 17-39 59-39h256v-448q0-26 19-45t45-19h256q26 0 45 19t19 45v448h256q42 0 59 39z"
+ }
+ }]
+};
+exports.download = download;
\ No newline at end of file
diff --git a/dist/fa/dribbble.js b/dist/fa/dribbble.js
new file mode 100644
index 000000000..7b40df2d6
--- /dev/null
+++ b/dist/fa/dribbble.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dribbble = void 0;
+var dribbble = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1500q-42-241-140-498h-2l-2 1q-16 6-43 16.5t-101 49-137 82-131 114.5-103 148l-15-11q184 150 418 150 132 0 256-52zM839 893q-21-49-53-111-311 93-673 93-1 7-1 21 0 124 44 236.5t124 201.5q50-89 123.5-166.5t142.5-124.5 130.5-81 99.5-48l37-13q4-1 13-3.5t13-4.5zM732 681q-120-213-244-378-138 65-234 186t-128 272q302 0 606-80zM1416 1000q-210-60-409-29 87 239 128 469 111-75 185-189.5t96-250.5zM611 259q-1 0-2 1 1-1 2-1zM1201 404q-185-164-433-164-76 0-155 19 131 170 246 382 69-26 130-60.5t96.5-61.5 65.5-57 37.5-40.5zM1424 889q-3-232-149-410l-1 1q-9 12-19 24.5t-43.5 44.5-71 60.5-100 65-131.5 64.5q25 53 44 95 2 5 6.5 17t7.5 17q36-5 74.5-7t73.5-2 69 1.5 64 4 56.5 5.5 48 6.5 36.5 6 25 4.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.dribbble = dribbble;
\ No newline at end of file
diff --git a/dist/fa/driversLicense.js b/dist/fa/driversLicense.js
new file mode 100644
index 000000000..369946bd4
--- /dev/null
+++ b/dist/fa/driversLicense.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.driversLicense = void 0;
+var driversLicense = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1212q0-54-7.5-100.5t-24.5-90-51-68.5-81-25q-64 64-156 64t-156-64q-47 0-81 25t-51 68.5-24.5 90-7.5 100.5q0 55 31.5 93.5t75.5 38.5h426q44 0 75.5-38.5t31.5-93.5zM768 768q0-80-56-136t-136-56-136 56-56 136 56 136 136 56 136-56 56-136zM1792 1248v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1408 992v-64q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23-9t9-23zM1792 992v-64q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v64q0 14 9 23t23 9h192q14 0 23-9t9-23zM1792 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM128 384h1792v-96q0-14-9-23t-23-9h-1728q-14 0-23 9t-9 23v96zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.driversLicense = driversLicense;
\ No newline at end of file
diff --git a/dist/fa/driversLicenseO.js b/dist/fa/driversLicenseO.js
new file mode 100644
index 000000000..f5eaca062
--- /dev/null
+++ b/dist/fa/driversLicenseO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.driversLicenseO = void 0;
+var driversLicenseO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1212q0 55-31.5 93.5t-75.5 38.5h-426q-44 0-75.5-38.5t-31.5-93.5q0-54 7.5-100.5t24.5-90 51-68.5 81-25q64 64 156 64t156-64q47 0 81 25t51 68.5 24.5 90 7.5 100.5zM768 768q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1184v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1408 928v64q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h320q14 0 23 9t9 23zM1792 928v64q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 672v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1920 1504v-1120h-1792v1120q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.driversLicenseO = driversLicenseO;
\ No newline at end of file
diff --git a/dist/fa/dropbox.js b/dist/fa/dropbox.js
new file mode 100644
index 000000000..e13217963
--- /dev/null
+++ b/dist/fa/dropbox.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dropbox = void 0;
+var dropbox = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M402 707l494 305-342 285-490-319zM1388 1262v108l-490 293v1l-1-1-1 1v-1l-489-293v-108l147 96 342-284v-2l1 1 1-1v2l343 284zM554 118l342 285-494 304-338-270zM1390 707l338 271-489 319-343-285zM1239 118l489 319-338 270-494-304z"
+ }
+ }]
+};
+exports.dropbox = dropbox;
\ No newline at end of file
diff --git a/dist/fa/drupal.js b/dist/fa/drupal.js
new file mode 100644
index 000000000..ddd1b2b35
--- /dev/null
+++ b/dist/fa/drupal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.drupal = void 0;
+var drupal = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1167 1586q-5-19-24-5-30 22-87 39t-131 17q-129 0-193-49-5-4-13-4-11 0-26 12-7 6-7.5 16t7.5 20q34 32 87.5 46t102.5 12.5 99-4.5q41-4 84.5-20.5t65-30 28.5-20.5q12-12 7-29zM1128 1471q-19-47-39-61-23-15-76-15-47 0-71 10-29 12-78 56-26 24-12 44 9 8 17.5 4.5t31.5-23.5q3-2 10.5-8.5t10.5-8.5 10-7 11.5-7 12.5-5 15-4.5 16.5-2.5 20.5-1q27 0 44.5 7.5t23 14.5 13.5 22q10 17 12.5 20t12.5-1q23-12 14-34zM1483 1190q0-22-5-44.5t-16.5-45-34-36.5-52.5-14q-33 0-97 41.5t-129 83.5-101 42q-27 1-63.5-19t-76-49-83.5-58-100-49-111-19q-115 1-197 78.5t-84 178.5q-2 112 74 164 29 20 62.5 28.5t103.5 8.5q57 0 132-32.5t134-71 120-70.5 93-31q26 1 65 31.5t71.5 67 68 67.5 55.5 32q35 3 58.5-14t55.5-63q28-41 42.5-101t14.5-106zM1536 1030q0 164-62 304.5t-166 236-242.5 149.5-290.5 54-293-57.5-247.5-157-170.5-241.5-64-302q0-89 19.5-172.5t49-145.5 70.5-118.5 78.5-94 78.5-69.5 64.5-46.5 42.5-24.5q14-8 51-26.5t54.5-28.5 48-30 60.5-44q36-28 58-72.5t30-125.5q129 155 186 193 44 29 130 68t129 66q21 13 39 25t60.5 46.5 76 70.5 75 95 69 122 47 148.5 19.5 177.5z"
+ }
+ }]
+};
+exports.drupal = drupal;
\ No newline at end of file
diff --git a/dist/fa/edge.js b/dist/fa/edge.js
new file mode 100644
index 000000000..a2207e4ec
--- /dev/null
+++ b/dist/fa/edge.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.edge = void 0;
+var edge = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M69 795h1q16-126 58.5-241.5t115-217 167.5-176 223.5-117.5 276.5-43q231 0 414 105.5t294 303.5q104 187 104 442v188h-1125q1 111 53.5 192.5t136.5 122.5 189.5 57 213 3 208-46.5 173.5-84.5v377q-92 55-229.5 92t-312.5 38-316-53q-189-73-311.5-249t-124.5-372q-3-242 111-412t325-268q-48 60-78 125.5t-46 159.5h635q8-77-8-140t-47-101.5-70.5-66.5-80.5-41-75-20.5-56-8.5l-22-1q-135 5-259.5 44.5t-223.5 104.5-176 140.5-138 163.5z"
+ }
+ }]
+};
+exports.edge = edge;
\ No newline at end of file
diff --git a/dist/fa/edit.js b/dist/fa/edit.js
new file mode 100644
index 000000000..934a32ad4
--- /dev/null
+++ b/dist/fa/edit.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.edit = void 0;
+var edit = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M888 1184l116-116-152-152-116 116v56h96v96h56zM1328 464q-16-16-33 1l-350 350q-17 17-1 33t33-1l350-350q17-17 1-33zM1408 1058v190q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-14 14-32 8-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-126q0-13 9-22l64-64q15-15 35-7t20 29zM1312 320l288 288-672 672h-288v-288zM1756 452l-92 92-288-288 92-92q28-28 68-28t68 28l152 152q28 28 28 68t-28 68z"
+ }
+ }]
+};
+exports.edit = edit;
\ No newline at end of file
diff --git a/dist/fa/eercast.js b/dist/fa/eercast.js
new file mode 100644
index 000000000..d19b1a2c3
--- /dev/null
+++ b/dist/fa/eercast.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eercast = void 0;
+var eercast = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1341 784q29-44-6.5-129.5t-121.5-142.5q-58-39-125.5-53.5t-118-4.5-68.5 37q-12 23-4.5 28t42.5 10q23 3 38.5 5t44.5 9.5 56 17.5q36 13 67.5 31.5t53 37 40 38.5 30.5 38 22 34.5 16.5 28.5 12 18.5 10.5 6 11-9.5zM1704 1358q-52 127-148.5 220t-214.5 141.5-253 60.5-266-13.5-251-91-210-161.5-141.5-235.5-46.5-303.5q1-41 8.5-84.5t12.5-64 24-80.5 23-73q-51 208 1 397t173 318 291 206 346 83 349-74.5 289-244.5q20-27 18-14 0 4-4 14zM1465 909q0 104-40.5 199t-108.5 164-162 109.5-198 40.5-198-40.5-162-109.5-108.5-164-40.5-199 40.5-199 108.5-164 162-109.5 198-40.5 198 40.5 162 109.5 108.5 164 40.5 199zM1752 621q-65-147-180.5-251t-253-153.5-292-53.5-301 36.5-275.5 129-220 211.5-131 297-10 373q-49-161-51.5-311.5t35.5-272.5 109-227 165.5-180.5 207-126 232-71 242.5-9 236 54 216 124.5 178 197q33 50 62 121t31 112zM1690 963q12-244-136.5-416t-396.5-240q-8 0-10-5t24-8q125 4 230 50t173 120 116 168.5 58.5 199-1 208-61.5 197.5-122.5 167-185 117.5-248.5 46.5q108-30 201.5-80t174-123 129.5-176.5 55-225.5z"
+ }
+ }]
+};
+exports.eercast = eercast;
\ No newline at end of file
diff --git a/dist/fa/eject.js b/dist/fa/eject.js
new file mode 100644
index 000000000..0b721ee8b
--- /dev/null
+++ b/dist/fa/eject.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eject = void 0;
+var eject = {
+ "viewBox": "0 0 1538 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 979l710-710q19-19 45-19t45 19l710 710q19 19 13 32t-32 13h-1472q-26 0-32-13t13-32zM1473 1536h-1408q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1408q26 0 45 19t19 45v256q0 26-19 45t-45 19z"
+ }
+ }]
+};
+exports.eject = eject;
\ No newline at end of file
diff --git a/dist/fa/ellipsisH.js b/dist/fa/ellipsisH.js
new file mode 100644
index 000000000..42595e77d
--- /dev/null
+++ b/dist/fa/ellipsisH.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ellipsisH = void 0;
+var ellipsisH = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM896 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM1408 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.ellipsisH = ellipsisH;
\ No newline at end of file
diff --git a/dist/fa/ellipsisV.js b/dist/fa/ellipsisV.js
new file mode 100644
index 000000000..b5b841416
--- /dev/null
+++ b/dist/fa/ellipsisV.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ellipsisV = void 0;
+var ellipsisV = {
+ "viewBox": "0 0 384 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1248v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM384 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM384 224v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.ellipsisV = ellipsisV;
\ No newline at end of file
diff --git a/dist/fa/empire.js b/dist/fa/empire.js
new file mode 100644
index 000000000..0013e29e6
--- /dev/null
+++ b/dist/fa/empire.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.empire = void 0;
+var empire = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M874 1638v66q-208-6-385-109.5t-283-275.5l58-34q29 49 73 99l65-57q148 168 368 212l-17 86q65 12 121 13zM276 1108l-83 28q22 60 49 112l-57 33q-98-180-98-385t98-385l57 33q-30 56-49 112l82 28q-35 100-35 212 0 109 36 212zM1528 1285l58 34q-106 172-283 275.5t-385 109.5v-66q56-1 121-13l-17-86q220-44 368-212l65 57q44-50 73-99zM1377 731l-233 80q14 42 14 85t-14 85l232 80q-31 92-98 169l-185-162q-57 67-147 85l48 241q-52 10-98 10t-98-10l48-241q-90-18-147-85l-185 162q-67-77-98-169l232-80q-14-42-14-85t14-85l-233-80q33-93 99-169l185 162q59-68 147-86l-48-240q44-10 98-10t98 10l-48 240q88 18 147 86l185-162q66 76 99 169zM874 88v66q-65 2-121 13l17 86q-220 42-368 211l-65-56q-38 42-73 98l-57-33q106-172 282-275.5t385-109.5zM1705 896q0 205-98 385l-57-33q27-52 49-112l-83-28q36-103 36-212 0-112-35-212l82-28q-19-56-49-112l57-33q98 180 98 385zM1585 473l-57 33q-35-56-73-98l-65 56q-148-169-368-211l17-86q-56-11-121-13v-66q209 6 385 109.5t282 275.5zM1748 896q0-173-67.5-331t-181.5-272-272-181.5-331-67.5-331 67.5-272 181.5-181.5 272-67.5 331 67.5 331 181.5 272 272 181.5 331 67.5 331-67.5 272-181.5 181.5-272 67.5-331zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.empire = empire;
\ No newline at end of file
diff --git a/dist/fa/envelope.js b/dist/fa/envelope.js
new file mode 100644
index 000000000..a5ae71684
--- /dev/null
+++ b/dist/fa/envelope.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.envelope = void 0;
+var envelope = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 710v794q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-794q44 49 101 87 362 246 497 345 57 42 92.5 65.5t94.5 48 110 24.5h1 1q51 0 110-24.5t94.5-48 92.5-65.5q170-123 498-345 57-39 100-87zM1792 416q0 79-49 151t-122 123q-376 261-468 325-10 7-42.5 30.5t-54 38-52 32.5-57.5 27-50 9h-1-1q-23 0-50-9t-57.5-27-52-32.5-54-38-42.5-30.5q-91-64-262-182.5t-205-142.5q-62-42-117-115.5t-55-136.5q0-78 41.5-130t118.5-52h1472q65 0 112.5 47t47.5 113z"
+ }
+ }]
+};
+exports.envelope = envelope;
\ No newline at end of file
diff --git a/dist/fa/envelopeO.js b/dist/fa/envelopeO.js
new file mode 100644
index 000000000..98c40b769
--- /dev/null
+++ b/dist/fa/envelopeO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.envelopeO = void 0;
+var envelopeO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1504v-768q-32 36-69 66-268 206-426 338-51 43-83 67t-86.5 48.5-102.5 24.5h-1-1q-48 0-102.5-24.5t-86.5-48.5-83-67q-158-132-426-338-37-30-69-66v768q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1664 453v-11-13.5t-0.5-13-3-12.5-5.5-9-9-7.5-14-2.5h-1472q-13 0-22.5 9.5t-9.5 22.5q0 168 147 284 193 152 401 317 6 5 35 29.5t46 37.5 44.5 31.5 50.5 27.5 43 9h1 1q20 0 43-9t50.5-27.5 44.5-31.5 46-37.5 35-29.5q208-165 401-317 54-43 100.5-115.5t46.5-131.5zM1792 416v1088q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.envelopeO = envelopeO;
\ No newline at end of file
diff --git a/dist/fa/envelopeOpen.js b/dist/fa/envelopeOpen.js
new file mode 100644
index 000000000..1d0b6c1da
--- /dev/null
+++ b/dist/fa/envelopeOpen.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.envelopeOpen = void 0;
+var envelopeOpen = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 654v978q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-978q0-15 11-24 8-7 39-34.5t41.5-36 45.5-37.5 70-55.5 96-73 143.5-107 192.5-140.5q5-4 52.5-40t71.5-52.5 64-35 69-18.5 69 18.5 65 35.5 71 52 52 40q110 80 192.5 140.5t143.5 107 96 73 70 55.5 45.5 37.5 41.5 36 39 34.5q11 9 11 24zM1228 1239q263-191 345-252 11-8 12.5-20.5t-6.5-23.5l-38-52q-8-11-21-12.5t-24 6.5q-231 169-343 250-5 3-52 39t-71.5 52.5-64.5 35-69 18.5-69-18.5-64.5-35-71.5-52.5-52-39q-186-134-343-250-11-8-24-6.5t-21 12.5l-38 52q-8 11-6.5 23.5t12.5 20.5q82 61 345 252 10 8 50 38t65 47 64 39.5 77.5 33.5 75.5 11 75.5-11 79-34.5 64.5-39.5 65-47.5 48-36.5z"
+ }
+ }]
+};
+exports.envelopeOpen = envelopeOpen;
\ No newline at end of file
diff --git a/dist/fa/envelopeOpenO.js b/dist/fa/envelopeOpenO.js
new file mode 100644
index 000000000..683f86536
--- /dev/null
+++ b/dist/fa/envelopeOpenO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.envelopeOpenO = void 0;
+var envelopeOpenO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1474 913l39 51q8 11 6.5 23.5t-11.5 20.5q-43 34-126.5 98.5t-146.5 113-67 51.5q-39 32-60 48t-60.5 41-76.5 36.5-74 11.5h-1-1q-37 0-74-11.5t-76-36.5-61-41.5-60-47.5q-5-4-65-50.5t-143.5-111-122.5-94.5q-11-8-12.5-20.5t6.5-23.5l37-52q8-11 21.5-13t24.5 7q94 73 306 236 5 4 43.5 35t60.5 46.5 56.5 32.5 58.5 17h1 1q24 0 58.5-17t56.5-32.5 60.5-46.5 43.5-35q258-198 313-242 11-8 24-6.5t21 12.5zM1664 1632v-928q-90-83-159-139-91-74-389-304-3-2-43-35t-61-48-56-32.5-59-17.5h-1-1q-24 0-59 17.5t-56 32.5-61 48-43 35q-215 166-315.5 245.5t-129.5 104-82 74.5q-14 12-21 19v928q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1792 704v928q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-928q0-56 41-94 123-114 350-290.5t233-181.5q36-30 59-47.5t61.5-42 76-36.5 74.5-12h1 1q37 0 74.5 12t76 36.5 61.5 42 59 47.5q43 36 156 122t226 177 201 173q41 38 41 94z"
+ }
+ }]
+};
+exports.envelopeOpenO = envelopeOpenO;
\ No newline at end of file
diff --git a/dist/fa/envelopeSquare.js b/dist/fa/envelopeSquare.js
new file mode 100644
index 000000000..866329400
--- /dev/null
+++ b/dist/fa/envelopeSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.envelopeSquare = void 0;
+var envelopeSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM1280 1184v-436q-31 35-64 55-34 22-132.5 85t-151.5 99q-98 69-164 69v0 0q-66 0-164-69-47-32-142-92.5t-142-92.5q-12-8-33-27t-31-27v436q0 40 28 68t68 28h832q40 0 68-28t28-68zM1280 611q0-41-27.5-70t-68.5-29h-832q-40 0-68 28t-28 68q0 37 30.5 76.5t67.5 64.5q47 32 137.5 89t129.5 83q3 2 17 11.5t21 14 21 13 23.5 13 21.5 9.5 22.5 7.5 20.5 2.5 20.5-2.5 22.5-7.5 21.5-9.5 23.5-13 21-13 21-14 17-11.5l267-174q35-23 66.5-62.5t31.5-73.5z"
+ }
+ }]
+};
+exports.envelopeSquare = envelopeSquare;
\ No newline at end of file
diff --git a/dist/fa/envira.js b/dist/fa/envira.js
new file mode 100644
index 000000000..48d7a5eb5
--- /dev/null
+++ b/dist/fa/envira.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.envira = void 0;
+var envira = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 816q-104-196-160-278-139-202-347-318-34-19-70-36-89-40-94-32t34 38l39 31q62 43 112.5 93.5t94.5 116.5 70.5 113 70.5 131q9 17 13 25 44 84 84 153t98 154 115.5 150 131 123.5 148.5 90.5q153 66 154 60 1-3-49-37-53-36-81-57-77-58-179-211t-185-310zM549 1359q-76-60-132.5-125t-98-143.5-71-154.5-58.5-186-52-209-60.5-252-76.5-289q273 0 497.5 36t379 92 271 144.5 185.5 172.5 110 198.5 56 199.5 12.5 198.5-9.5 173-20 143.5-13 107l323 327h-104l-281-285q-22 2-91.5 14t-121.5 19-138 6-160.5-17-167.5-59-179-111z"
+ }
+ }]
+};
+exports.envira = envira;
\ No newline at end of file
diff --git a/dist/fa/eraser.js b/dist/fa/eraser.js
new file mode 100644
index 000000000..8d0c4eeee
--- /dev/null
+++ b/dist/fa/eraser.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eraser = void 0;
+var eraser = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1408l336-384h-768l-336 384h768zM1909 331q15 34 9.5 71.5t-30.5 65.5l-896 1024q-38 44-96 44h-768q-38 0-69.5-20.5t-47.5-54.5q-15-34-9.5-71.5t30.5-65.5l896-1024q38-44 96-44h768q38 0 69.5 20.5t47.5 54.5z"
+ }
+ }]
+};
+exports.eraser = eraser;
\ No newline at end of file
diff --git a/dist/fa/etsy.js b/dist/fa/etsy.js
new file mode 100644
index 000000000..c2fcf3c2c
--- /dev/null
+++ b/dist/fa/etsy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.etsy = void 0;
+var etsy = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M518 183v655q103 1 191.5-1.5t125.5-5.5l37-3q68-2 90.5-24.5t39.5-94.5l33-142h103l-14 322 7 319h-103l-29-127q-15-68-45-93t-84-26q-87-8-352-8v556q0 78 43.5 115.5t133.5 37.5h357q35 0 59.5-2t55-7.5 54-18 48.5-32 46-50.5 39-73l93-216h89q-6 37-31.5 252t-30.5 276q-146-5-263.5-8t-162.5-4h-44-628l-376 12v-102l127-25q67-13 91.5-37t25.5-79l8-643q3-402-8-645-2-61-25.5-84t-91.5-36l-127-24v-102l376 12h702q139 0 374-27-6 68-14 194.5t-12 219.5l-5 92h-93l-32-124q-31-121-74-179.5t-113-58.5h-548q-28 0-35.5 8.5t-7.5 30.5z"
+ }
+ }]
+};
+exports.etsy = etsy;
\ No newline at end of file
diff --git a/dist/fa/eur.js b/dist/fa/eur.js
new file mode 100644
index 000000000..7592f8d9b
--- /dev/null
+++ b/dist/fa/eur.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eur = void 0;
+var eur = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M976 1307l35 159q3 12-3 22.5t-17 14.5l-5 1q-4 2-10.5 3.5t-16 4.5-21.5 5.5-25.5 5-30 5-33.5 4.5-36.5 3-38.5 1q-234 0-409-130.5t-238-351.5h-95q-13 0-22.5-9.5t-9.5-22.5v-113q0-13 9.5-22.5t22.5-9.5h66q-2-57 1-105h-67q-14 0-23-9t-9-23v-114q0-14 9-23t23-9h98q67-210 243.5-338t400.5-128q102 0 194 23 11 3 20 15 6 11 3 24l-43 159q-3 13-14 19.5t-24 2.5l-4-1q-4-1-11.5-2.5l-17.5-3.5t-22.5-3.5-26-3-29-2.5-29.5-1q-126 0-226 64t-150 176h468q16 0 25 12 10 12 7 26l-24 114q-5 26-32 26h-488q-3 37 0 105h459q15 0 25 12 9 12 6 27l-24 112q-2 11-11 18.5t-20 7.5h-387q48 117 149.5 185.5t228.5 68.5q18 0 36-1.5t33.5-3.5 29.5-4.5 24.5-5 18.5-4.5l12-3 5-2q13-5 26 2 12 7 15 21z"
+ }
+ }]
+};
+exports.eur = eur;
\ No newline at end of file
diff --git a/dist/fa/euro.js b/dist/fa/euro.js
new file mode 100644
index 000000000..0d1e5c5aa
--- /dev/null
+++ b/dist/fa/euro.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.euro = void 0;
+var euro = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M976 1307l35 159q3 12-3 22.5t-17 14.5l-5 1q-4 2-10.5 3.5t-16 4.5-21.5 5.5-25.5 5-30 5-33.5 4.5-36.5 3-38.5 1q-234 0-409-130.5t-238-351.5h-95q-13 0-22.5-9.5t-9.5-22.5v-113q0-13 9.5-22.5t22.5-9.5h66q-2-57 1-105h-67q-14 0-23-9t-9-23v-114q0-14 9-23t23-9h98q67-210 243.5-338t400.5-128q102 0 194 23 11 3 20 15 6 11 3 24l-43 159q-3 13-14 19.5t-24 2.5l-4-1q-4-1-11.5-2.5l-17.5-3.5t-22.5-3.5-26-3-29-2.5-29.5-1q-126 0-226 64t-150 176h468q16 0 25 12 10 12 7 26l-24 114q-5 26-32 26h-488q-3 37 0 105h459q15 0 25 12 9 12 6 27l-24 112q-2 11-11 18.5t-20 7.5h-387q48 117 149.5 185.5t228.5 68.5q18 0 36-1.5t33.5-3.5 29.5-4.5 24.5-5 18.5-4.5l12-3 5-2q13-5 26 2 12 7 15 21z"
+ }
+ }]
+};
+exports.euro = euro;
\ No newline at end of file
diff --git a/dist/fa/exchange.js b/dist/fa/exchange.js
new file mode 100644
index 000000000..122846867
--- /dev/null
+++ b/dist/fa/exchange.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.exchange = void 0;
+var exchange = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1184v192q0 13-9.5 22.5t-22.5 9.5h-1376v192q0 13-9.5 22.5t-22.5 9.5q-12 0-24-10l-319-320q-9-9-9-22 0-14 9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h1376q13 0 22.5 9.5t9.5 22.5zM1792 640q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-1376q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1376v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z"
+ }
+ }]
+};
+exports.exchange = exchange;
\ No newline at end of file
diff --git a/dist/fa/exclamation.js b/dist/fa/exclamation.js
new file mode 100644
index 000000000..d6b87dba2
--- /dev/null
+++ b/dist/fa/exclamation.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.exclamation = void 0;
+var exclamation = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1248v224q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-224q0-26 19-45t45-19h256q26 0 45 19t19 45zM542 192l-28 768q-1 26-20.5 45t-45.5 19h-256q-26 0-45.5-19t-20.5-45l-28-768q-1-26 17.5-45t44.5-19h320q26 0 44.5 19t17.5 45z"
+ }
+ }]
+};
+exports.exclamation = exclamation;
\ No newline at end of file
diff --git a/dist/fa/exclamationCircle.js b/dist/fa/exclamationCircle.js
new file mode 100644
index 000000000..474b6b630
--- /dev/null
+++ b/dist/fa/exclamationCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.exclamationCircle = void 0;
+var exclamationCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM896 1375v-190q0-14-9-23.5t-22-9.5h-192q-13 0-23 10t-10 23v190q0 13 10 23t23 10h192q13 0 22-9.5t9-23.5zM894 1031l18-621q0-12-10-18-10-8-24-8h-220q-14 0-24 8-10 6-10 18l17 621q0 10 10 17.5t24 7.5h185q14 0 23.5-7.5t10.5-17.5z"
+ }
+ }]
+};
+exports.exclamationCircle = exclamationCircle;
\ No newline at end of file
diff --git a/dist/fa/exclamationTriangle.js b/dist/fa/exclamationTriangle.js
new file mode 100644
index 000000000..68c534f47
--- /dev/null
+++ b/dist/fa/exclamationTriangle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.exclamationTriangle = void 0;
+var exclamationTriangle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zM1022 1001l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zM1008 67l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z"
+ }
+ }]
+};
+exports.exclamationTriangle = exclamationTriangle;
\ No newline at end of file
diff --git a/dist/fa/expand.js b/dist/fa/expand.js
new file mode 100644
index 000000000..c9efd7081
--- /dev/null
+++ b/dist/fa/expand.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.expand = void 0;
+var expand = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M755 1056q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23zM1536 192v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.expand = expand;
\ No newline at end of file
diff --git a/dist/fa/expeditedssl.js b/dist/fa/expeditedssl.js
new file mode 100644
index 000000000..194d6fed5
--- /dev/null
+++ b/dist/fa/expeditedssl.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.expeditedssl = void 0;
+var expeditedssl = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 64q-169 0-323 66t-265.5 177.5-177.5 265.5-66 323 66 323 177.5 265.5 265.5 177.5 323 66 323-66 265.5-177.5 177.5-265.5 66-323-66-323-177.5-265.5-265.5-177.5-323-66zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM496 832q16 0 16 16v480q0 16-16 16h-32q-16 0-16-16v-480q0-16 16-16h32zM896 896q53 0 90.5 37.5t37.5 90.5q0 35-17.5 64t-46.5 46v114q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-114q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5zM896 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM544 608v96q0 14 9 23t23 9h64q14 0 23-9t9-23v-96q0-93 65.5-158.5t158.5-65.5 158.5 65.5 65.5 158.5v96q0 14 9 23t23 9h64q14 0 23-9t9-23v-96q0-146-103-249t-249-103-249 103-103 249zM1408 1344v-512q0-26-19-45t-45-19h-896q-26 0-45 19t-19 45v512q0 26 19 45t45 19h896q26 0 45-19t19-45z"
+ }
+ }]
+};
+exports.expeditedssl = expeditedssl;
\ No newline at end of file
diff --git a/dist/fa/externalLink.js b/dist/fa/externalLink.js
new file mode 100644
index 000000000..ae0425541
--- /dev/null
+++ b/dist/fa/externalLink.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.externalLink = void 0;
+var externalLink = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 928v320q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h704q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-320q0-14 9-23t23-9h64q14 0 23 9t9 23zM1792 64v512q0 26-19 45t-45 19-45-19l-176-176-652 652q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l652-652-176-176q-19-19-19-45t19-45 45-19h512q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.externalLink = externalLink;
\ No newline at end of file
diff --git a/dist/fa/externalLinkSquare.js b/dist/fa/externalLinkSquare.js
new file mode 100644
index 000000000..0e2ead5f7
--- /dev/null
+++ b/dist/fa/externalLinkSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.externalLinkSquare = void 0;
+var externalLinkSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 928v-480q0-26-19-45t-45-19h-480q-42 0-59 39-17 41 14 70l144 144-534 534q-19 19-19 45t19 45l102 102q19 19 45 19t45-19l534-534 144 144q18 19 45 19 12 0 25-5 39-17 39-59zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.externalLinkSquare = externalLinkSquare;
\ No newline at end of file
diff --git a/dist/fa/eye.js b/dist/fa/eye.js
new file mode 100644
index 000000000..92d618b7d
--- /dev/null
+++ b/dist/fa/eye.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eye = void 0;
+var eye = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-121 61-225-229 117-381 353 133 205 333.5 326.5t434.5 121.5 434.5-121.5 333.5-326.5zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zM1792 960q0 34-20 69-140 230-376.5 368.5t-499.5 138.5-499.5-139-376.5-368q-20-35-20-69t20-69q140-229 376.5-368t499.5-139 499.5 139 376.5 368q20 35 20 69z"
+ }
+ }]
+};
+exports.eye = eye;
\ No newline at end of file
diff --git a/dist/fa/eyeSlash.js b/dist/fa/eyeSlash.js
new file mode 100644
index 000000000..b801b1f62
--- /dev/null
+++ b/dist/fa/eyeSlash.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eyeSlash = void 0;
+var eyeSlash = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M555 1335l78-141q-87-63-136-159t-49-203q0-121 61-225-229 117-381 353 167 258 427 375zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zM1307 385q0 7-1 9-106 189-316 567t-315 566l-49 89q-10 16-28 16-12 0-134-70-16-10-16-28 0-12 44-87-143-65-263.5-173t-208.5-245q-20-31-20-69t20-69q153-235 380-371t496-136q89 0 180 17l54-97q10-16 28-16 5 0 18 6t31 15.5 33 18.5 31.5 18.5 19.5 11.5q16 10 16 27zM1344 832q0 139-79 253.5t-209 164.5l280-502q8 45 8 84zM1792 960q0 35-20 69-39 64-109 145-150 172-347.5 267t-419.5 95l74-132q212-18 392.5-137t301.5-307q-115-179-282-294l63-112q95 64 182.5 153t144.5 184q20 34 20 69z"
+ }
+ }]
+};
+exports.eyeSlash = eyeSlash;
\ No newline at end of file
diff --git a/dist/fa/eyedropper.js b/dist/fa/eyedropper.js
new file mode 100644
index 000000000..84d1aec31
--- /dev/null
+++ b/dist/fa/eyedropper.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eyedropper = void 0;
+var eyedropper = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1698 94q94 94 94 226.5t-94 225.5l-225 223 104 104q10 10 10 23t-10 23l-210 210q-10 10-23 10t-23-10l-105-105-603 603q-37 37-90 37h-203l-256 128-64-64 128-256v-203q0-53 37-90l603-603-105-105q-10-10-10-23t10-23l210-210q10-10 23-10t23 10l104 104 223-225q93-94 225.5-94t226.5 94zM512 1472l576-576-192-192-576 576v192h192z"
+ }
+ }]
+};
+exports.eyedropper = eyedropper;
\ No newline at end of file
diff --git a/dist/fa/fa.js b/dist/fa/fa.js
new file mode 100644
index 000000000..70bd8cbea
--- /dev/null
+++ b/dist/fa/fa.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fa = void 0;
+var fa = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 512v839q0 48-49 62-174 52-338 52-73 0-215.5-29.5t-227.5-29.5q-164 0-370 48v338h-160v-1368q-63-25-101-81t-38-124q0-91 64-155t155-64 155 64 64 155q0 68-38 124t-101 81v68q190-44 343-44 99 0 198 15 14 2 111.5 22.5t149.5 20.5q77 0 165-18 11-2 80-21t89-19q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.fa = fa;
\ No newline at end of file
diff --git a/dist/fa/facebook.js b/dist/fa/facebook.js
new file mode 100644
index 000000000..5ca3605d9
--- /dev/null
+++ b/dist/fa/facebook.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.facebook = void 0;
+var facebook = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M959 12v264h-157q-86 0-116 36t-30 108v189h293l-39 296h-254v759h-306v-759h-255v-296h255v-218q0-186 104-288.5t277-102.5q147 0 228 12z"
+ }
+ }]
+};
+exports.facebook = facebook;
\ No newline at end of file
diff --git a/dist/fa/facebookF.js b/dist/fa/facebookF.js
new file mode 100644
index 000000000..5ec59514c
--- /dev/null
+++ b/dist/fa/facebookF.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.facebookF = void 0;
+var facebookF = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M959 12v264h-157q-86 0-116 36t-30 108v189h293l-39 296h-254v759h-306v-759h-255v-296h255v-218q0-186 104-288.5t277-102.5q147 0 228 12z"
+ }
+ }]
+};
+exports.facebookF = facebookF;
\ No newline at end of file
diff --git a/dist/fa/facebookOfficial.js b/dist/fa/facebookOfficial.js
new file mode 100644
index 000000000..ac775d6df
--- /dev/null
+++ b/dist/fa/facebookOfficial.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.facebookOfficial = void 0;
+var facebookOfficial = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1451 128q35 0 60 25t25 60v1366q0 35-25 60t-60 25h-391v-595h199l30-232h-229v-148q0-56 23.5-84t91.5-28l122-1v-207q-63-9-178-9-136 0-217.5 80t-81.5 226v171h-200v232h200v595h-735q-35 0-60-25t-25-60v-1366q0-35 25-60t60-25h1366z"
+ }
+ }]
+};
+exports.facebookOfficial = facebookOfficial;
\ No newline at end of file
diff --git a/dist/fa/facebookSquare.js b/dist/fa/facebookSquare.js
new file mode 100644
index 000000000..385fcc141
--- /dev/null
+++ b/dist/fa/facebookSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.facebookSquare = void 0;
+var facebookSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-188v-595h199l30-232h-229v-148q0-56 23.5-84t91.5-28l122-1v-207q-63-9-178-9-136 0-217.5 80t-81.5 226v171h-200v232h200v595h-532q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960z"
+ }
+ }]
+};
+exports.facebookSquare = facebookSquare;
\ No newline at end of file
diff --git a/dist/fa/fastBackward.js b/dist/fa/fastBackward.js
new file mode 100644
index 000000000..052ea42c7
--- /dev/null
+++ b/dist/fa/fastBackward.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fastBackward = void 0;
+var fastBackward = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1747 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v710q0 26-13 32t-32-13l-710-710q-9-9-13-19v678q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h128q26 0 45 19t19 45v678q4-10 13-19l710-710q19-19 32-13t13 32v710q4-10 13-19z"
+ }
+ }]
+};
+exports.fastBackward = fastBackward;
\ No newline at end of file
diff --git a/dist/fa/fastForward.js b/dist/fa/fastForward.js
new file mode 100644
index 000000000..c2f7dad60
--- /dev/null
+++ b/dist/fa/fastForward.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fastForward = void 0;
+var fastForward = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-710q0-26 13-32t32 13l710 710q9 9 13 19v-678q0-26 19-45t45-19h128q26 0 45 19t19 45v1408q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-678q-4 10-13 19l-710 710q-19 19-32 13t-13-32v-710q-4 10-13 19z"
+ }
+ }]
+};
+exports.fastForward = fastForward;
\ No newline at end of file
diff --git a/dist/fa/fax.js b/dist/fa/fax.js
new file mode 100644
index 000000000..149ef7594
--- /dev/null
+++ b/dist/fa/fax.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fax = void 0;
+var fax = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288 384q66 0 113 47t47 113v1088q0 66-47 113t-113 47h-128q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h128zM1664 547q58 34 93 93t35 128v768q0 106-75 181t-181 75h-864q-66 0-113-47t-47-113v-1536q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v163zM928 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM928 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM928 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1536 640v-256h-160q-40 0-68-28t-28-68v-160h-640v512h896z"
+ }
+ }]
+};
+exports.fax = fax;
\ No newline at end of file
diff --git a/dist/fa/feed.js b/dist/fa/feed.js
new file mode 100644
index 000000000..2137663f9
--- /dev/null
+++ b/dist/fa/feed.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.feed = void 0;
+var feed = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1467q2 28-17 48-18 21-47 21h-135q-25 0-43-16.5t-20-41.5q-22-229-184.5-391.5t-391.5-184.5q-25-2-41.5-20t-16.5-43v-135q0-29 21-47 17-17 43-17h5q160 13 306 80.5t259 181.5q114 113 181.5 259t80.5 306zM1408 1469q2 27-18 47-18 20-46 20h-143q-26 0-44.5-17.5t-19.5-42.5q-12-215-101-408.5t-231.5-336-336-231.5-408.5-102q-25-1-42.5-19.5t-17.5-43.5v-143q0-28 20-46 18-18 44-18h3q262 13 501.5 120t425.5 294q187 186 294 425.5t120 501.5z"
+ }
+ }]
+};
+exports.feed = feed;
\ No newline at end of file
diff --git a/dist/fa/female.js b/dist/fa/female.js
new file mode 100644
index 000000000..14825ee2a
--- /dev/null
+++ b/dist/fa/female.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.female = void 0;
+var female = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1056q0 40-28 68t-68 28q-51 0-80-43l-227-341h-45v132l247 411q9 15 9 33 0 26-19 45t-45 19h-192v272q0 46-33 79t-79 33h-160q-46 0-79-33t-33-79v-272h-192q-26 0-45-19t-19-45q0-18 9-33l247-411v-132h-45l-227 341q-29 43-80 43-40 0-68-28t-28-68q0-29 16-53l256-384q73-107 176-107h384q103 0 176 107l256 384q16 24 16 53zM864 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z"
+ }
+ }]
+};
+exports.female = female;
\ No newline at end of file
diff --git a/dist/fa/fighterJet.js b/dist/fa/fighterJet.js
new file mode 100644
index 000000000..b33cc6060
--- /dev/null
+++ b/dist/fa/fighterJet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fighterJet = void 0;
+var fighterJet = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 960q-1 32-288 96l-352 32-224 64h-64l-293 352h69q26 0 45 4.5t19 11.5-19 11.5-45 4.5h-96-160-64v-32h64v-416h-160l-192 224h-96l-32-32v-192h32v-32h128v-8l-192-24v-128l192-24v-8h-128v-32h-32v-192l32-32h96l192 224h160v-416h-64v-32h64 160 96q26 0 45 4.5t19 11.5-19 11.5-45 4.5h-69l293 352h64l224 64 352 32q128 28 200 52t80 34z"
+ }
+ }]
+};
+exports.fighterJet = fighterJet;
\ No newline at end of file
diff --git a/dist/fa/file.js b/dist/fa/file.js
new file mode 100644
index 000000000..b31304464
--- /dev/null
+++ b/dist/fa/file.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.file = void 0;
+var file = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 512v-472q22 14 36 28l408 408q14 14 28 36h-472zM896 544q0 40 28 68t68 28h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544z"
+ }
+ }]
+};
+exports.file = file;
\ No newline at end of file
diff --git a/dist/fa/fileArchiveO.js b/dist/fa/fileArchiveO.js
new file mode 100644
index 000000000..854984d2d
--- /dev/null
+++ b/dist/fa/fileArchiveO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileArchiveO = void 0;
+var fileArchiveO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 384v-128h-128v128h128zM768 512v-128h-128v128h128zM640 640v-128h-128v128h128zM768 768v-128h-128v128h128zM1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-128v128h-128v-128h-512v1536h1280zM781 943l107 349q8 27 8 52 0 83-72.5 137.5t-183.5 54.5-183.5-54.5-72.5-137.5q0-25 8-52 21-63 120-396v-128h128v128h79q22 0 39 13t23 34zM640 1408q53 0 90.5-19t37.5-45-37.5-45-90.5-19-90.5 19-37.5 45 37.5 45 90.5 19z"
+ }
+ }]
+};
+exports.fileArchiveO = fileArchiveO;
\ No newline at end of file
diff --git a/dist/fa/fileAudioO.js b/dist/fa/fileAudioO.js
new file mode 100644
index 000000000..4df6c351d
--- /dev/null
+++ b/dist/fa/fileAudioO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileAudioO = void 0;
+var fileAudioO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM620 850q20 8 20 30v544q0 22-20 30-8 2-12 2-12 0-23-9l-166-167h-131q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h131l166-167q16-15 35-7zM1037 1539q31 0 50-24 129-159 129-363t-129-363q-16-21-43-24t-47 14q-21 17-23.5 43.5t14.5 47.5q100 123 100 282t-100 282q-17 21-14.5 47.5t23.5 42.5q18 15 40 15zM826 1391q27 0 47-20 87-93 87-219t-87-219q-18-19-45-20t-46 17-20 44.5 18 46.5q52 57 52 131t-52 131q-19 20-18 46.5t20 44.5q20 17 44 17z"
+ }
+ }]
+};
+exports.fileAudioO = fileAudioO;
\ No newline at end of file
diff --git a/dist/fa/fileCodeO.js b/dist/fa/fileCodeO.js
new file mode 100644
index 000000000..3c9ca0f61
--- /dev/null
+++ b/dist/fa/fileCodeO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileCodeO = void 0;
+var fileCodeO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM480 768q8-11 21-12.5t24 6.5l51 38q11 8 12.5 21t-6.5 24l-182 243 182 243q8 11 6.5 24t-12.5 21l-51 38q-11 8-24 6.5t-21-12.5l-226-301q-14-19 0-38zM1282 1069q14 19 0 38l-226 301q-8 11-21 12.5t-24-6.5l-51-38q-11-8-12.5-21t6.5-24l182-243-182-243q-8-11-6.5-24t12.5-21l51-38q11-8 24-6.5t21 12.5zM662 1530q-13-2-20.5-13t-5.5-24l138-831q2-13 13-20.5t24-5.5l63 10q13 2 20.5 13t5.5 24l-138 831q-2 13-13 20.5t-24 5.5z"
+ }
+ }]
+};
+exports.fileCodeO = fileCodeO;
\ No newline at end of file
diff --git a/dist/fa/fileExcelO.js b/dist/fa/fileExcelO.js
new file mode 100644
index 000000000..674ed6355
--- /dev/null
+++ b/dist/fa/fileExcelO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileExcelO = void 0;
+var fileExcelO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM429 1430v106h281v-106h-75l103-161q5-7 10-16.5t7.5-13.5 3.5-4h2q1 4 5 10 2 4 4.5 7.5t6 8 6.5 8.5l107 161h-76v106h291v-106h-68l-192-273 195-282h67v-107h-279v107h74l-103 159q-4 7-10 16.5t-9 13.5l-2 3h-2q-1-4-5-10-6-11-17-23l-106-159h76v-107h-290v107h68l189 272-194 283h-68z"
+ }
+ }]
+};
+exports.fileExcelO = fileExcelO;
\ No newline at end of file
diff --git a/dist/fa/fileImageO.js b/dist/fa/fileImageO.js
new file mode 100644
index 000000000..f1a256a16
--- /dev/null
+++ b/dist/fa/fileImageO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileImageO = void 0;
+var fileImageO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z"
+ }
+ }]
+};
+exports.fileImageO = fileImageO;
\ No newline at end of file
diff --git a/dist/fa/fileMovieO.js b/dist/fa/fileMovieO.js
new file mode 100644
index 000000000..93c0e8dff
--- /dev/null
+++ b/dist/fa/fileMovieO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileMovieO = void 0;
+var fileMovieO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM768 768q52 0 90 38t38 90v384q0 52-38 90t-90 38h-384q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h384zM1260 770q20 8 20 30v576q0 22-20 30-8 2-12 2-14 0-23-9l-265-266v-90l265-266q9-9 23-9 4 0 12 2z"
+ }
+ }]
+};
+exports.fileMovieO = fileMovieO;
\ No newline at end of file
diff --git a/dist/fa/fileO.js b/dist/fa/fileO.js
new file mode 100644
index 000000000..490db446e
--- /dev/null
+++ b/dist/fa/fileO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileO = void 0;
+var fileO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280z"
+ }
+ }]
+};
+exports.fileO = fileO;
\ No newline at end of file
diff --git a/dist/fa/filePdfO.js b/dist/fa/filePdfO.js
new file mode 100644
index 000000000..a2d9680d4
--- /dev/null
+++ b/dist/fa/filePdfO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filePdfO = void 0;
+var filePdfO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM894 1071q33 26 84 56 59-7 117-7 147 0 177 49 16 22 2 52 0 1-1 2l-2 2v1q-6 38-71 38-48 0-115-20t-130-53q-221 24-392 83-153 262-242 262-15 0-28-7l-24-12q-1-1-6-5-10-10-6-36 9-40 56-91.5t132-96.5q14-9 23 6 2 2 2 4 52-85 107-197 68-136 104-262-24-82-30.5-159.5t6.5-127.5q11-40 42-40h21 1q23 0 35 15 18 21 9 68-2 6-4 8 1 3 1 8v30q-2 123-14 192 55 164 146 238zM318 1482q52-24 137-158-51 40-87.5 84t-49.5 74zM716 562q-15 42-2 132 1-7 7-44 0-3 7-43 1-4 4-8-1-1-1-2-1-2-1-3-1-22-13-36 0 1-1 2v2zM592 1223q135-54 284-81-2-1-13-9.5t-16-13.5q-76-67-127-176-27 86-83 197-30 56-45 83zM1238 1207q-24-24-140-24 76 28 124 28 14 0 18-1 0-1-2-3z"
+ }
+ }]
+};
+exports.filePdfO = filePdfO;
\ No newline at end of file
diff --git a/dist/fa/filePhotoO.js b/dist/fa/filePhotoO.js
new file mode 100644
index 000000000..6c17134ac
--- /dev/null
+++ b/dist/fa/filePhotoO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filePhotoO = void 0;
+var filePhotoO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z"
+ }
+ }]
+};
+exports.filePhotoO = filePhotoO;
\ No newline at end of file
diff --git a/dist/fa/filePictureO.js b/dist/fa/filePictureO.js
new file mode 100644
index 000000000..cfc8689af
--- /dev/null
+++ b/dist/fa/filePictureO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filePictureO = void 0;
+var filePictureO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z"
+ }
+ }]
+};
+exports.filePictureO = filePictureO;
\ No newline at end of file
diff --git a/dist/fa/filePowerpointO.js b/dist/fa/filePowerpointO.js
new file mode 100644
index 000000000..0d401d12a
--- /dev/null
+++ b/dist/fa/filePowerpointO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filePowerpointO = void 0;
+var filePowerpointO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM416 1430v106h327v-106h-93v-167h137q76 0 118-15 67-23 106.5-87t39.5-146q0-81-37-141t-100-87q-48-19-130-19h-368v107h92v555h-92zM769 1150h-119v-268h120q52 0 83 18 56 33 56 115 0 89-62 120-31 15-78 15z"
+ }
+ }]
+};
+exports.filePowerpointO = filePowerpointO;
\ No newline at end of file
diff --git a/dist/fa/fileSoundO.js b/dist/fa/fileSoundO.js
new file mode 100644
index 000000000..01b52cf38
--- /dev/null
+++ b/dist/fa/fileSoundO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileSoundO = void 0;
+var fileSoundO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM620 850q20 8 20 30v544q0 22-20 30-8 2-12 2-12 0-23-9l-166-167h-131q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h131l166-167q16-15 35-7zM1037 1539q31 0 50-24 129-159 129-363t-129-363q-16-21-43-24t-47 14q-21 17-23.5 43.5t14.5 47.5q100 123 100 282t-100 282q-17 21-14.5 47.5t23.5 42.5q18 15 40 15zM826 1391q27 0 47-20 87-93 87-219t-87-219q-18-19-45-20t-46 17-20 44.5 18 46.5q52 57 52 131t-52 131q-19 20-18 46.5t20 44.5q20 17 44 17z"
+ }
+ }]
+};
+exports.fileSoundO = fileSoundO;
\ No newline at end of file
diff --git a/dist/fa/fileText.js b/dist/fa/fileText.js
new file mode 100644
index 000000000..5bc94eb36
--- /dev/null
+++ b/dist/fa/fileText.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileText = void 0;
+var fileText = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 476q14 14 28 36h-472v-472q22 14 36 28zM992 640h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544q0 40 28 68t68 28zM1152 1376v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1152 1120v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1152 864v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23z"
+ }
+ }]
+};
+exports.fileText = fileText;
\ No newline at end of file
diff --git a/dist/fa/fileTextO.js b/dist/fa/fileTextO.js
new file mode 100644
index 000000000..d751b2d7a
--- /dev/null
+++ b/dist/fa/fileTextO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileTextO = void 0;
+var fileTextO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM384 800q0-14 9-23t23-9h704q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64zM1120 1024q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704zM1120 1280q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704z"
+ }
+ }]
+};
+exports.fileTextO = fileTextO;
\ No newline at end of file
diff --git a/dist/fa/fileVideoO.js b/dist/fa/fileVideoO.js
new file mode 100644
index 000000000..701a6fe2d
--- /dev/null
+++ b/dist/fa/fileVideoO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileVideoO = void 0;
+var fileVideoO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM768 768q52 0 90 38t38 90v384q0 52-38 90t-90 38h-384q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h384zM1260 770q20 8 20 30v576q0 22-20 30-8 2-12 2-14 0-23-9l-265-266v-90l265-266q9-9 23-9 4 0 12 2z"
+ }
+ }]
+};
+exports.fileVideoO = fileVideoO;
\ No newline at end of file
diff --git a/dist/fa/fileWordO.js b/dist/fa/fileWordO.js
new file mode 100644
index 000000000..00da92e72
--- /dev/null
+++ b/dist/fa/fileWordO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileWordO = void 0;
+var fileWordO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM233 768v107h70l164 661h159l128-485q7-20 10-46 2-16 2-24h4l3 24q1 3 3.5 20t5.5 26l128 485h159l164-661h70v-107h-300v107h90l-99 438q-5 20-7 46l-2 21h-4q0-3-0.5-6.5t-1.5-8-1-6.5q-1-5-4-21t-5-25l-144-545h-114l-144 545q-2 9-4.5 24.5t-3.5 21.5l-4 21h-4l-2-21q-2-26-7-46l-99-438h90v-107h-300z"
+ }
+ }]
+};
+exports.fileWordO = fileWordO;
\ No newline at end of file
diff --git a/dist/fa/fileZipO.js b/dist/fa/fileZipO.js
new file mode 100644
index 000000000..c9bf0f083
--- /dev/null
+++ b/dist/fa/fileZipO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileZipO = void 0;
+var fileZipO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 384v-128h-128v128h128zM768 512v-128h-128v128h128zM640 640v-128h-128v128h128zM768 768v-128h-128v128h128zM1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-128v128h-128v-128h-512v1536h1280zM781 943l107 349q8 27 8 52 0 83-72.5 137.5t-183.5 54.5-183.5-54.5-72.5-137.5q0-25 8-52 21-63 120-396v-128h128v128h79q22 0 39 13t23 34zM640 1408q53 0 90.5-19t37.5-45-37.5-45-90.5-19-90.5 19-37.5 45 37.5 45 90.5 19z"
+ }
+ }]
+};
+exports.fileZipO = fileZipO;
\ No newline at end of file
diff --git a/dist/fa/filesO.js b/dist/fa/filesO.js
new file mode 100644
index 000000000..22c297c60
--- /dev/null
+++ b/dist/fa/filesO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filesO = void 0;
+var filesO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1696 384q40 0 68 28t28 68v1216q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-288h-544q-40 0-68-28t-28-68v-672q0-40 20-88t48-76l408-408q28-28 76-48t88-20h416q40 0 68 28t28 68v328q68-40 128-40h416zM1152 597l-299 299h299v-299zM512 213l-299 299h299v-299zM708 860l316-316v-416h-384v416q0 40-28 68t-68 28h-416v640h512v-256q0-40 20-88t48-76zM1664 1664v-1152h-384v416q0 40-28 68t-68 28h-416v640h896z"
+ }
+ }]
+};
+exports.filesO = filesO;
\ No newline at end of file
diff --git a/dist/fa/film.js b/dist/fa/film.js
new file mode 100644
index 000000000..11dbdc8ba
--- /dev/null
+++ b/dist/fa/film.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.film = void 0;
+var film = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1600v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM384 1216v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM384 832v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1408 1600v-512q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v512q0 26 19 45t45 19h768q26 0 45-19t19-45zM384 448v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 1600v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1408 832v-512q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v512q0 26 19 45t45 19h768q26 0 45-19t19-45zM1792 1216v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 832v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 448v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1920 288v1344q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1344q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.film = film;
\ No newline at end of file
diff --git a/dist/fa/filter.js b/dist/fa/filter.js
new file mode 100644
index 000000000..d3e7366f7
--- /dev/null
+++ b/dist/fa/filter.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filter = void 0;
+var filter = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1403 295q17 41-14 70l-493 493v742q0 42-39 59-13 5-25 5-27 0-45-19l-256-256q-19-19-19-45v-486l-493-493q-31-29-14-70 17-39 59-39h1280q42 0 59 39z"
+ }
+ }]
+};
+exports.filter = filter;
\ No newline at end of file
diff --git a/dist/fa/fire.js b/dist/fa/fire.js
new file mode 100644
index 000000000..54d825413
--- /dev/null
+++ b/dist/fa/fire.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fire = void 0;
+var fire = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 1696v64q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1152 640q0 78-24.5 144t-64 112.5-87.5 88-96 77.5-87.5 72-64 81.5-24.5 96.5q0 96 67 224l-4-1 1 1q-90-41-160-83t-138.5-100-113.5-122.5-72.5-150.5-27.5-184q0-78 24.5-144t64-112.5 87.5-88 96-77.5 87.5-72 64-81.5 24.5-96.5q0-94-66-224l3 1-1-1q90 41 160 83t138.5 100 113.5 122.5 72.5 150.5 27.5 184z"
+ }
+ }]
+};
+exports.fire = fire;
\ No newline at end of file
diff --git a/dist/fa/fireExtinguisher.js b/dist/fa/fireExtinguisher.js
new file mode 100644
index 000000000..aecb91f49
--- /dev/null
+++ b/dist/fa/fireExtinguisher.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fireExtinguisher = void 0;
+var fireExtinguisher = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 192q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 160v320q0 16-12 25-8 7-20 7-4 0-7-1l-448-96q-11-2-18-11t-7-20h-256v102q111 23 183.5 111t72.5 203v800q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-800q0-106 62.5-190.5t161.5-114.5v-111h-32q-59 0-115 23.5t-91.5 53-66 66.5-40.5 53.5-14 24.5q-17 35-57 35-16 0-29-7-23-12-31.5-37t3.5-49q5-10 14.5-26t37.5-53.5 60.5-70 85-67 108.5-52.5q-25-42-25-86 0-66 47-113t113-47 113 47 47 113q0 33-14 64h302q0-11 7-20t18-11l448-96q3-1 7-1 12 0 20 7 12 9 12 25z"
+ }
+ }]
+};
+exports.fireExtinguisher = fireExtinguisher;
\ No newline at end of file
diff --git a/dist/fa/firefox.js b/dist/fa/firefox.js
new file mode 100644
index 000000000..13fc561c8
--- /dev/null
+++ b/dist/fa/firefox.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.firefox = void 0;
+var firefox = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M903 1792q-283 0-504.5-150.5t-329.5-398.5q-58-131-67-301t26-332.5 111-312 179-242.5l-11 281q11-14 68-15.5t70 15.5q42-81 160.5-138t234.5-59q-54 45-119.5 148.5t-58.5 163.5q25 8 62.5 13.5t63 7.5 68 4 50.5 3q15 5 9.5 45.5t-30.5 75.5q-5 7-16.5 18.5t-56.5 35.5-101 34l15 189-139-67q-18 43-7.5 81.5t36 66.5 65.5 41.5 81 6.5q51-9 98-34.5t83.5-45 73.5-17.5q61 4 89.5 33t19.5 65q-1 2-2.5 5.5t-8.5 12.5-18 15.5-31.5 10.5-46.5 1q-60 95-144.5 135.5t-209.5 29.5q74 61 162.5 82.5t168.5 6 154.5-52 128-87.5 80.5-104q43-91 39-192.5t-37.5-188.5-78.5-125q87 38 137 79.5t77 112.5q15-170-57.5-343t-209.5-284q265 77 412 279.5t151 517.5q2 127-40.5 255t-123.5 238-189 196-247.5 135.5-288.5 49.5z"
+ }
+ }]
+};
+exports.firefox = firefox;
\ No newline at end of file
diff --git a/dist/fa/firstOrder.js b/dist/fa/firstOrder.js
new file mode 100644
index 000000000..12e20e611
--- /dev/null
+++ b/dist/fa/firstOrder.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.firstOrder = void 0;
+var firstOrder = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1322 896q0 45-5 76l-236-14 224 78q-19 73-58 141l-214-103 177 158q-44 61-107 108l-157-178 103 215q-61 37-140 59l-79-228 14 240q-38 6-76 6t-76-6l14-238-78 226q-74-19-140-59l103-215-157 178q-59-43-108-108l178-158-214 104q-39-69-58-141l224-79-237 14q-5-42-5-76 0-35 5-77l238 14-225-79q19-73 58-140l214 104-177-159q46-61 107-108l158 178-103-215q67-39 140-58l77 224-13-236q36-6 75-6 38 0 76 6l-14 237 78-225q74 19 140 59l-103 214 158-178q61 47 107 108l-177 159 213-104q37 62 58 141l-224 78 237-14q5 31 5 77zM1352 896q0-160-78.5-295.5t-213-214-292.5-78.5q-119 0-227 46.5t-186.5 125-124.5 187.5-46 229q0 119 46 228t124.5 187.5 186.5 125 227 46.5q158 0 292.5-78.5t213-214 78.5-294.5zM1425 513v766l-657 383-657-383v-766l657-383zM768 1719l708-412v-823l-708-411-708 411v823zM1536 448v896l-768 448-768-448v-896l768-448z"
+ }
+ }]
+};
+exports.firstOrder = firstOrder;
\ No newline at end of file
diff --git a/dist/fa/fiveHundredPX.js b/dist/fa/fiveHundredPX.js
new file mode 100644
index 000000000..ab5998086
--- /dev/null
+++ b/dist/fa/fiveHundredPX.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fiveHundredPX = void 0;
+var fiveHundredPX = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1401 1547l-6 6q-113 113-259 175-154 64-317 64-165 0-317-64-148-63-259-175-113-112-175-258-42-103-54-189-4-28 48-36 51-8 56 20 1 1 1 4 18 90 46 159 50 124 152 226 98 98 226 152 132 56 276 56 143 0 276-56 128-55 225-152l6-6q10-10 25-6 12 3 33 22 36 37 17 58zM929 932l-66 66 63 63q21 21-7 49-17 17-32 17-10 0-19-10l-62-61-66 66q-5 5-15 5-15 0-31-16l-2-2q-18-15-18-29 0-7 8-17l66-65-66-66q-16-16 14-45 18-18 31-18 6 0 13 5l65 66 65-65q18-17 48 13 27 27 11 44zM1400 989q0 118-46 228-45 105-126 186-80 80-187 126t-228 46-228-46-187-126q-82-82-125-186-15-33-15-40h-1q-9-27 43-44 50-16 60 12 37 99 97 167h1v-339-2q3-136 102-232 105-103 253-103 147 0 251 103t104 249q0 147-104.5 251t-250.5 104q-58 0-112-16-28-11-13-61 16-51 44-43l14 3q14 3 33 6t30 3q104 0 176-71.5t72-174.5q0-101-72-171-71-71-175-71-107 0-178 80-64 72-64 160v413q110 67 242 67 96 0 185-36.5t156-103.5 103.5-155 36.5-183q0-198-141-339-140-140-339-140-200 0-340 140-53 53-77 87l-2 2q-8 11-13 15.5t-21.5 9.5-38.5-3q-21-5-36.5-16.5t-15.5-26.5v-680q0-15 10.5-26.5t27.5-11.5h877q30 0 30 55t-30 55h-811v483h1q40-42 102-84t108-61q109-46 231-46 121 0 228 46t187 126q81 81 126 186 46 112 46 229zM1369 408q9 8 9 18t-5.5 18-16.5 21q-26 26-39 26-9 0-16-7-106-91-207-133-128-56-276-56-133 0-262 49-27 10-45-37-9-25-8-38 3-16 16-20 130-57 299-57 164 0 316 64 137 58 235 152z"
+ }
+ }]
+};
+exports.fiveHundredPX = fiveHundredPX;
\ No newline at end of file
diff --git a/dist/fa/flag.js b/dist/fa/flag.js
new file mode 100644
index 000000000..7f5cb9820
--- /dev/null
+++ b/dist/fa/flag.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flag = void 0;
+var flag = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320 256q0 72-64 110v1266q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-1266q-64-38-64-110 0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 25-12.5 38.5t-39.5 27.5q-215 116-369 116-61 0-123.5-22t-108.5-48-115.5-48-142.5-22q-192 0-464 146-17 9-33 9-26 0-45-19t-19-45v-742q0-32 31-55 21-14 79-43 236-120 421-120 107 0 200 29t219 88q38 19 88 19 54 0 117.5-21t110-47 88-47 54.5-21q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.flag = flag;
\ No newline at end of file
diff --git a/dist/fa/flagCheckered.js b/dist/fa/flagCheckered.js
new file mode 100644
index 000000000..b82800c37
--- /dev/null
+++ b/dist/fa/flagCheckered.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flagCheckered = void 0;
+var flagCheckered = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M832 1000v-192q-181 16-384 117v185q205-96 384-110zM832 582v-197q-172 8-384 126v189q215-111 384-118zM1664 1045v-184q-235 116-384 71v-224q-20-6-39-15-5-3-33-17t-34.5-17-31.5-15-34.5-15.5-32.5-13-36-12.5-35-8.5-39.5-7.5-39.5-4-44-2q-23 0-49 3v222h19q102 0 192.5 29t197.5 82q19 9 39 15v188q42 17 91 17 120 0 293-92zM1664 618v-189q-169 91-306 91-45 0-78-8v196q148 42 384-90zM320 256q0 35-17.5 64t-46.5 46v1266q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-1266q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 39-35 57-10 5-17 9-218 116-369 116-88 0-158-35l-28-14q-64-33-99-48t-91-29-114-14q-102 0-235.5 44t-228.5 102q-15 9-33 9-16 0-32-8-32-19-32-56v-742q0-35 31-55 35-21 78.5-42.5t114-52 152.5-49.5 155-19q112 0 209 31t209 86q38 19 89 19 122 0 310-112 22-12 31-17 31-16 62 2 31 20 31 55z"
+ }
+ }]
+};
+exports.flagCheckered = flagCheckered;
\ No newline at end of file
diff --git a/dist/fa/flagO.js b/dist/fa/flagO.js
new file mode 100644
index 000000000..3f139380b
--- /dev/null
+++ b/dist/fa/flagO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flagO = void 0;
+var flagO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1045v-616q-169 91-306 91-82 0-145-32-100-49-184-76.5t-178-27.5q-173 0-403 127v599q245-113 433-113 55 0 103.5 7.5t98 26 77 31 82.5 39.5l28 14q44 22 101 22 120 0 293-92zM320 256q0 35-17.5 64t-46.5 46v1266q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-1266q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 39-35 57-10 5-17 9-218 116-369 116-88 0-158-35l-28-14q-64-33-99-48t-91-29-114-14q-102 0-235.5 44t-228.5 102q-15 9-33 9-16 0-32-8-32-19-32-56v-742q0-35 31-55 35-21 78.5-42.5t114-52 152.5-49.5 155-19q112 0 209 31t209 86q38 19 89 19 122 0 310-112 22-12 31-17 31-16 62 2 31 20 31 55z"
+ }
+ }]
+};
+exports.flagO = flagO;
\ No newline at end of file
diff --git a/dist/fa/flash.js b/dist/fa/flash.js
new file mode 100644
index 000000000..3e6212318
--- /dev/null
+++ b/dist/fa/flash.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flash = void 0;
+var flash = {
+ "viewBox": "0 0 896 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M885 566q18 20 7 44l-540 1157q-13 25-42 25-4 0-14-2-17-5-25.5-19t-4.5-30l197-808-406 101q-4 1-12 1-18 0-31-11-18-15-13-39l201-825q4-14 16-23t28-9h328q19 0 32 12.5t13 29.5q0 8-5 18l-171 463 396-98q8-2 12-2 19 0 34 15z"
+ }
+ }]
+};
+exports.flash = flash;
\ No newline at end of file
diff --git a/dist/fa/flask.js b/dist/fa/flask.js
new file mode 100644
index 000000000..4f01fc905
--- /dev/null
+++ b/dist/fa/flask.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flask = void 0;
+var flask = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1527 1448q56 89 21.5 152.5t-140.5 63.5h-1152q-106 0-140.5-63.5t21.5-152.5l503-793v-399h-64q-26 0-45-19t-19-45 19-45 45-19h512q26 0 45 19t19 45-19 45-45 19h-64v399zM748 723l-272 429h712l-272-429-20-31v-37-399h-128v399 37z"
+ }
+ }]
+};
+exports.flask = flask;
\ No newline at end of file
diff --git a/dist/fa/flickr.js b/dist/fa/flickr.js
new file mode 100644
index 000000000..2213f8a08
--- /dev/null
+++ b/dist/fa/flickr.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flickr = void 0;
+var flickr = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM698 896q0-88-62-150t-150-62-150 62-62 150 62 150 150 62 150-62 62-150zM1262 896q0-88-62-150t-150-62-150 62-62 150 62 150 150 62 150-62 62-150z"
+ }
+ }]
+};
+exports.flickr = flickr;
\ No newline at end of file
diff --git a/dist/fa/floppyO.js b/dist/fa/floppyO.js
new file mode 100644
index 000000000..bb8551ff9
--- /dev/null
+++ b/dist/fa/floppyO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.floppyO = void 0;
+var floppyO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1536h768v-384h-768v384zM1280 1536h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zM896 608v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zM1536 640v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z"
+ }
+ }]
+};
+exports.floppyO = floppyO;
\ No newline at end of file
diff --git a/dist/fa/folder.js b/dist/fa/folder.js
new file mode 100644
index 000000000..93435afdc
--- /dev/null
+++ b/dist/fa/folder.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder = void 0;
+var folder = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.folder = folder;
\ No newline at end of file
diff --git a/dist/fa/folderO.js b/dist/fa/folderO.js
new file mode 100644
index 000000000..86d80d8f7
--- /dev/null
+++ b/dist/fa/folderO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folderO = void 0;
+var folderO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 1312v-704q0-40-28-68t-68-28h-704q-40 0-68-28t-28-68v-64q0-40-28-68t-68-28h-320q-40 0-68 28t-28 68v960q0 40 28 68t68 28h1216q40 0 68-28t28-68zM1664 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.folderO = folderO;
\ No newline at end of file
diff --git a/dist/fa/folderOpen.js b/dist/fa/folderOpen.js
new file mode 100644
index 000000000..f59b0407f
--- /dev/null
+++ b/dist/fa/folderOpen.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folderOpen = void 0;
+var folderOpen = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1879 952q0 31-31 66l-336 396q-43 51-120.5 86.5t-143.5 35.5h-1088q-34 0-60.5-13t-26.5-43q0-31 31-66l336-396q43-51 120.5-86.5t143.5-35.5h1088q34 0 60.5 13t26.5 43zM1536 608v160h-832q-94 0-197 47.5t-164 119.5l-337 396-5 6q0-4-0.5-12.5t-0.5-12.5v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h544q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.folderOpen = folderOpen;
\ No newline at end of file
diff --git a/dist/fa/folderOpenO.js b/dist/fa/folderOpenO.js
new file mode 100644
index 000000000..6388e5ae6
--- /dev/null
+++ b/dist/fa/folderOpenO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folderOpenO = void 0;
+var folderOpenO = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1781 931q0-35-53-35h-1088q-40 0-85.5 21.5t-71.5 52.5l-294 363q-18 24-18 40 0 35 53 35h1088q40 0 86-22t71-53l294-363q18-22 18-39zM640 768h768v-160q0-40-28-68t-68-28h-576q-40 0-68-28t-28-68v-64q0-40-28-68t-68-28h-320q-40 0-68 28t-28 68v853l256-315q44-53 116-87.5t140-34.5zM1909 931q0 62-46 120l-295 363q-43 53-116 87.5t-140 34.5h-1088q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h544q92 0 158 66t66 158v160h192q54 0 99 24.5t67 70.5q15 32 15 68z"
+ }
+ }]
+};
+exports.folderOpenO = folderOpenO;
\ No newline at end of file
diff --git a/dist/fa/font.js b/dist/fa/font.js
new file mode 100644
index 000000000..5359e54b3
--- /dev/null
+++ b/dist/fa/font.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.font = void 0;
+var font = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M725 559l-170 450q33 0 136.5 2t160.5 2q19 0 57-2-87-253-184-452zM0 1664l2-79q23-7 56-12.5t57-10.5 49.5-14.5 44.5-29 31-50.5l237-616 280-724h75 53q8 14 11 21l205 480q33 78 106 257.5t114 274.5q15 34 58 144.5t72 168.5q20 45 35 57 19 15 88 29.5t84 20.5q6 38 6 57 0 5-0.5 13.5t-0.5 12.5q-63 0-190-8t-191-8q-76 0-215 7t-178 8q0-43 4-78l131-28q1 0 12.5-2.5t15.5-3.5 14.5-4.5 15-6.5 11-8 9-11 2.5-14q0-16-31-96.5t-72-177.5-42-100l-450-2q-26 58-76.5 195.5t-50.5 162.5q0 22 14 37.5t43.5 24.5 48.5 13.5 57 8.5 41 4q1 19 1 58 0 9-2 27-58 0-174.5-10t-174.5-10q-8 0-26.5 4t-21.5 4q-80 14-188 14z"
+ }
+ }]
+};
+exports.font = font;
\ No newline at end of file
diff --git a/dist/fa/fontAwesome.js b/dist/fa/fontAwesome.js
new file mode 100644
index 000000000..83cf04aa8
--- /dev/null
+++ b/dist/fa/fontAwesome.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fontAwesome = void 0;
+var fontAwesome = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 512v839q0 48-49 62-174 52-338 52-73 0-215.5-29.5t-227.5-29.5q-164 0-370 48v338h-160v-1368q-63-25-101-81t-38-124q0-91 64-155t155-64 155 64 64 155q0 68-38 124t-101 81v68q190-44 343-44 99 0 198 15 14 2 111.5 22.5t149.5 20.5q77 0 165-18 11-2 80-21t89-19q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.fontAwesome = fontAwesome;
\ No newline at end of file
diff --git a/dist/fa/fonticons.js b/dist/fa/fonticons.js
new file mode 100644
index 000000000..fa01455e4
--- /dev/null
+++ b/dist/fa/fonticons.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fonticons = void 0;
+var fonticons = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 128h1536v1536h-1536v-1536zM908 448l-12 33 75 83-31 114 25 25 107-57 107 57 25-25-31-114 75-83-12-33h-95l-53-96h-32l-53 96h-95zM641 611q32 0 44.5 16t11.5 63l174-21q0-55-17.5-92.5t-50.5-56-69-25.5-85-7q-133 0-199 57.5t-66 182.5v72h-96v128h76q20 0 20 8v382q0 14-5 20t-18 7l-73 7v88h448v-86l-149-14q-6-1-8.5-1.5t-3.5-2.5-0.5-4 1-7 0.5-10v-387h191l38-128h-231q-6 0-2-6t4-9v-80q0-27 1.5-40.5t7.5-28 19.5-20 36.5-5.5zM1248 1440v-86l-54-9q-7-1-9.5-2.5t-2.5-3 1-7.5 1-12v-520h-275l-23 101 83 22q23 7 23 27v370q0 14-6 18.5t-20 6.5l-70 9v86h352z"
+ }
+ }]
+};
+exports.fonticons = fonticons;
\ No newline at end of file
diff --git a/dist/fa/fortAwesome.js b/dist/fa/fortAwesome.js
new file mode 100644
index 000000000..c5740390d
--- /dev/null
+++ b/dist/fa/fortAwesome.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fortAwesome = void 0;
+var fortAwesome = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1008v-224q0-16-16-16h-96q-16 0-16 16v224q0 16 16 16h96q16 0 16-16zM1152 1008v-224q0-16-16-16h-96q-16 0-16 16v224q0 16 16 16h96q16 0 16-16zM1664 1040v752h-640v-320q0-80-56-136t-136-56-136 56-56 136v320h-640v-752q0-16 16-16h96q16 0 16 16v112h128v-624q0-16 16-16h96q16 0 16 16v112h128v-112q0-16 16-16h96q16 0 16 16v112h128v-112q0-6 2.5-9.5t8.5-5 9.5-2 11.5 0 9 0.5v-391q-32-15-32-50 0-23 16.5-39t38.5-16 38.5 16 16.5 39q0 35-32 50v17q45-10 83-10 21 0 59.5 7.5t54.5 7.5q17 0 47-7.5t37-7.5q16 0 16 16v210q0 15-35 21.5t-62 6.5q-18 0-54.5-7.5t-55.5-7.5q-40 0-90 12v133q1 0 9-0.5t11.5 0 9.5 2 8.5 5 2.5 9.5v112h128v-112q0-16 16-16h96q16 0 16 16v112h128v-112q0-16 16-16h96q16 0 16 16v624h128v-112q0-16 16-16h96q16 0 16 16z"
+ }
+ }]
+};
+exports.fortAwesome = fortAwesome;
\ No newline at end of file
diff --git a/dist/fa/forumbee.js b/dist/fa/forumbee.js
new file mode 100644
index 000000000..80b1452c6
--- /dev/null
+++ b/dist/fa/forumbee.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.forumbee = void 0;
+var forumbee = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M934 150q-317 121-556 362.5t-358 560.5q-20-89-20-176 0-208 102.5-384.5t278.5-279 384-102.5q82 0 169 19zM1203 269q93 65 164 155-389 113-674.5 400.5t-396.5 676.5q-93-72-155-162 112-386 395-671t667-399zM470 1603q115-356 379.5-622t619.5-384q40 92 54 195-292 120-516 345t-343 518q-103-14-194-52zM1536 1661q-193-50-367-115-135 84-290 107 109-205 274-370.5t369-275.5q-21 152-101 284 65 175 115 370z"
+ }
+ }]
+};
+exports.forumbee = forumbee;
\ No newline at end of file
diff --git a/dist/fa/forward.js b/dist/fa/forward.js
new file mode 100644
index 000000000..57c3b2c1c
--- /dev/null
+++ b/dist/fa/forward.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.forward = void 0;
+var forward = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-710q0-26 13-32t32 13l710 710q19 19 19 45t-19 45l-710 710q-19 19-32 13t-13-32v-710q-4 10-13 19z"
+ }
+ }]
+};
+exports.forward = forward;
\ No newline at end of file
diff --git a/dist/fa/foursquare.js b/dist/fa/foursquare.js
new file mode 100644
index 000000000..56a8fd346
--- /dev/null
+++ b/dist/fa/foursquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.foursquare = void 0;
+var foursquare = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1000 434l37-194q5-23-9-40t-35-17h-712q-23 0-38.5 17t-15.5 37v1101q0 7 6 1l291-352q23-26 38-33.5t48-7.5h239q22 0 37-14.5t18-29.5q24-130 37-191 4-21-11.5-40t-36.5-19h-294q-29 0-48-19t-19-48v-42q0-29 19-47.5t48-18.5h346q18 0 35-13.5t20-29.5zM1227 212q-15 73-53.5 266.5t-69.5 350-35 173.5q-6 22-9 32.5t-14 32.5-24.5 33-38.5 21-58 10h-271q-13 0-22 10-8 9-426 494-22 25-58.5 28.5t-48.5-5.5q-55-22-55-98v-1410q0-55 38-102.5t120-47.5h888q95 0 127 53t10 159zM1227 212l-158 790q4-17 35-173.5t69.5-350 53.5-266.5z"
+ }
+ }]
+};
+exports.foursquare = foursquare;
\ No newline at end of file
diff --git a/dist/fa/freeCodeCamp.js b/dist/fa/freeCodeCamp.js
new file mode 100644
index 000000000..1ec9929fa
--- /dev/null
+++ b/dist/fa/freeCodeCamp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.freeCodeCamp = void 0;
+var freeCodeCamp = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M453 1637q0 21-16 37.5t-37 16.5q-1 0-13-3-63-15-162-140-225-284-225-676 0-341 213-614 39-51 95-103.5t94-52.5q19 0 35 13.5t16 32.5q0 27-63 90-98 102-147 184-119 199-119 449 0 281 123 491 50 85 136 173 2 3 14.5 16t19.5 21 17 20.5 14.5 23.5 4.5 21zM1796 1503q0 29-17.5 48.5t-46.5 19.5h-1081q-26 0-45-19t-19-45q0-29 17.5-48.5t46.5-19.5h1081q26 0 45 19t19 45zM1581 892q0 134-67 233-25 38-69.5 78.5t-83.5 60.5q-16 10-27 10-7 0-15-6t-8-12q0-9 19-30t42-46 42-67.5 19-88.5q0-76-35-130-29-42-46-42-3 0-3 5 0 12 7.5 35.5t7.5 36.5q0 22-21.5 35t-44.5 13q-66 0-66-76 0-15 1.5-44t1.5-44q0-25-10-46-13-25-42-53.5t-51-28.5q-5 0-7 0.5t-3.5 2.5-1.5 6q0 2 16 26t16 54q0 37-19 68t-46 54-53.5 46-45.5 54-19 68q0 98 42 160 29 43 79 63 16 5 17 10 1 2 1 5 0 16-18 16-6 0-33-11-119-43-195-139.5t-76-218.5q0-55 24.5-115.5t60-115 70.5-108.5 59.5-113.5 24.5-111.5q0-53-25-94-29-48-56-64-19-9-19-21 0-20 41-20 50 0 110 29 41 19 71 44.5t49.5 51 33.5 62.5 22 69 16 80q0 1 3 17.5t4.5 25 5.5 25 9 27 11 21.5 14.5 16.5 18.5 5.5q23 0 37-14t14-37q0-25-20-67t-20-52 10-10q27 0 93 70 72 76 102.5 156t30.5 186zM2304 921q0 274-138 503-19 32-48 72t-68 86.5-81 77-74 30.5q-16 0-31-15.5t-15-31.5q0-15 29-50.5t68.5-77 48.5-52.5q183-230 183-531 0-131-20.5-235t-72.5-211q-58-119-163-228-2-3-13-13.5t-16.5-16.5-15-17.5-15-20-9.5-18.5-4-19q0-19 16-35.5t35-16.5q70 0 196 169 98 131 146 273t60 314q2 42 2 64z"
+ }
+ }]
+};
+exports.freeCodeCamp = freeCodeCamp;
\ No newline at end of file
diff --git a/dist/fa/frownO.js b/dist/fa/frownO.js
new file mode 100644
index 000000000..9059188a9
--- /dev/null
+++ b/dist/fa/frownO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.frownO = void 0;
+var frownO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1134 1229q8 25-4 48.5t-37 31.5-49-4-32-38q-25-80-92.5-129.5t-151.5-49.5-151.5 49.5-92.5 129.5q-8 26-31.5 38t-48.5 4q-26-8-38-31.5t-4-48.5q37-121 138-195t228-74 228 74 138 195zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.frownO = frownO;
\ No newline at end of file
diff --git a/dist/fa/futbolO.js b/dist/fa/futbolO.js
new file mode 100644
index 000000000..ab4b79dce
--- /dev/null
+++ b/dist/fa/futbolO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.futbolO = void 0;
+var futbolO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M609 816l287-208 287 208-109 336h-355zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM1515 1350q149-203 149-454v-3l-102 89-240-224 63-323 134 12q-150-206-389-282l53 124-287 159-287-159 53-124q-239 76-389 282l135-12 62 323-240 224-102-89v3q0 251 149 454l30-132 326 40 139 298-116 69q117 39 240 39t240-39l-116-69 139-298 326-40z"
+ }
+ }]
+};
+exports.futbolO = futbolO;
\ No newline at end of file
diff --git a/dist/fa/gamepad.js b/dist/fa/gamepad.js
new file mode 100644
index 000000000..ce5a08e79
--- /dev/null
+++ b/dist/fa/gamepad.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gamepad = void 0;
+var gamepad = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M832 1088v-128q0-14-9-23t-23-9h-192v-192q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v192h-192q-14 0-23 9t-9 23v128q0 14 9 23t23 9h192v192q0 14 9 23t23 9h128q14 0 23-9t9-23v-192h192q14 0 23-9t9-23zM1408 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1920 1024q0 212-150 362t-362 150q-192 0-338-128h-220q-146 128-338 128-212 0-362-150t-150-362 150-362 362-150h896q212 0 362 150t150 362z"
+ }
+ }]
+};
+exports.gamepad = gamepad;
\ No newline at end of file
diff --git a/dist/fa/gavel.js b/dist/fa/gavel.js
new file mode 100644
index 000000000..8fb752dc3
--- /dev/null
+++ b/dist/fa/gavel.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gavel = void 0;
+var gavel = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1771 1536q0 53-37 90l-107 108q-39 37-91 37-53 0-90-37l-363-364q-38-36-38-90 0-53 43-96l-256-256-126 126q-14 14-34 14t-34-14q2 2 12.5 12t12.5 13 10 11.5 10 13.5 6 13.5 5.5 16.5 1.5 18q0 38-28 68-3 3-16.5 18t-19 20.5-18.5 16.5-22 15.5-22 9-26 4.5q-40 0-68-28l-408-408q-28-28-28-68 0-13 4.5-26t9-22 15.5-22 16.5-18.5 20.5-19 18-16.5q30-28 68-28 10 0 18 1.5t16.5 5.5 13.5 6 13.5 10 11.5 10 13 12.5 12 12.5q-14-14-14-34t14-34l348-348q14-14 34-14t34 14q-2-2-12.5-12t-12.5-13-10-11.5-10-13.5-6-13.5-5.5-16.5-1.5-18q0-38 28-68 3-3 16.5-18t19-20.5 18.5-16.5 22-15.5 22-9 26-4.5q40 0 68 28l408 408q28 28 28 68 0 13-4.5 26t-9 22-15.5 22-16.5 18.5-20.5 19-18 16.5q-30 28-68 28-10 0-18-1.5t-16.5-5.5-13.5-6-13.5-10-11.5-10-13-12.5-12-12.5q14 14 14 34t-14 34l-126 126 256 256q43-43 96-43 52 0 91 37l363 363q37 39 37 91z"
+ }
+ }]
+};
+exports.gavel = gavel;
\ No newline at end of file
diff --git a/dist/fa/gbp.js b/dist/fa/gbp.js
new file mode 100644
index 000000000..219971e89
--- /dev/null
+++ b/dist/fa/gbp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gbp = void 0;
+var gbp = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1020 1137v367q0 14-9 23t-23 9h-956q-14 0-23-9t-9-23v-150q0-13 9.5-22.5t22.5-9.5h97v-383h-95q-14 0-23-9.5t-9-22.5v-131q0-14 9-23t23-9h95v-223q0-171 123.5-282t314.5-111q185 0 335 125 9 8 10 20.5t-7 22.5l-103 127q-9 11-22 12-13 2-23-7-5-5-26-19t-69-32-93-18q-85 0-137 47t-52 123v215h305q13 0 22.5 9t9.5 23v131q0 13-9.5 22.5t-22.5 9.5h-305v379h414v-181q0-13 9-22.5t23-9.5h162q14 0 23 9.5t9 22.5z"
+ }
+ }]
+};
+exports.gbp = gbp;
\ No newline at end of file
diff --git a/dist/fa/ge.js b/dist/fa/ge.js
new file mode 100644
index 000000000..a49047b7a
--- /dev/null
+++ b/dist/fa/ge.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ge = void 0;
+var ge = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M874 1638v66q-208-6-385-109.5t-283-275.5l58-34q29 49 73 99l65-57q148 168 368 212l-17 86q65 12 121 13zM276 1108l-83 28q22 60 49 112l-57 33q-98-180-98-385t98-385l57 33q-30 56-49 112l82 28q-35 100-35 212 0 109 36 212zM1528 1285l58 34q-106 172-283 275.5t-385 109.5v-66q56-1 121-13l-17-86q220-44 368-212l65 57q44-50 73-99zM1377 731l-233 80q14 42 14 85t-14 85l232 80q-31 92-98 169l-185-162q-57 67-147 85l48 241q-52 10-98 10t-98-10l48-241q-90-18-147-85l-185 162q-67-77-98-169l232-80q-14-42-14-85t14-85l-233-80q33-93 99-169l185 162q59-68 147-86l-48-240q44-10 98-10t98 10l-48 240q88 18 147 86l185-162q66 76 99 169zM874 88v66q-65 2-121 13l17 86q-220 42-368 211l-65-56q-38 42-73 98l-57-33q106-172 282-275.5t385-109.5zM1705 896q0 205-98 385l-57-33q27-52 49-112l-83-28q36-103 36-212 0-112-35-212l82-28q-19-56-49-112l57-33q98 180 98 385zM1585 473l-57 33q-35-56-73-98l-65 56q-148-169-368-211l17-86q-56-11-121-13v-66q209 6 385 109.5t282 275.5zM1748 896q0-173-67.5-331t-181.5-272-272-181.5-331-67.5-331 67.5-272 181.5-181.5 272-67.5 331 67.5 331 181.5 272 272 181.5 331 67.5 331-67.5 272-181.5 181.5-272 67.5-331zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.ge = ge;
\ No newline at end of file
diff --git a/dist/fa/gear.js b/dist/fa/gear.js
new file mode 100644
index 000000000..f45ef4e12
--- /dev/null
+++ b/dist/fa/gear.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gear = void 0;
+var gear = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1536 787v222q0 12-8 23t-20 13l-185 28q-19 54-39 91 35 50 107 138 10 12 10 25t-9 23q-27 37-99 108t-94 71q-12 0-26-9l-138-108q-44 23-91 38-16 136-29 186-7 28-36 28h-222q-14 0-24.5-8.5t-11.5-21.5l-28-184q-49-16-90-37l-141 107q-10 9-25 9-14 0-25-11-126-114-165-168-7-10-7-23 0-12 8-23 15-21 51-66.5t54-70.5q-27-50-41-99l-183-27q-13-2-21-12.5t-8-23.5v-222q0-12 8-23t19-13l186-28q14-46 39-92-40-57-107-138-10-12-10-24 0-10 9-23 26-36 98.5-107.5t94.5-71.5q13 0 26 10l138 107q44-23 91-38 16-136 29-186 7-28 36-28h222q14 0 24.5 8.5t11.5 21.5l28 184q49 16 90 37l142-107q9-9 24-9 13 0 25 10 129 119 165 170 7 8 7 22 0 12-8 23-15 21-51 66.5t-54 70.5q26 50 41 98l183 28q13 2 21 12.5t8 23.5z"
+ }
+ }]
+};
+exports.gear = gear;
\ No newline at end of file
diff --git a/dist/fa/gears.js b/dist/fa/gears.js
new file mode 100644
index 000000000..82b4ea2c5
--- /dev/null
+++ b/dist/fa/gears.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gears = void 0;
+var gears = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1664 1408q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1664 384q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1280 805v185q0 10-7 19.5t-16 10.5l-155 24q-11 35-32 76 34 48 90 115 7 11 7 20 0 12-7 19-23 30-82.5 89.5t-78.5 59.5q-11 0-21-7l-115-90q-37 19-77 31-11 108-23 155-7 24-30 24h-186q-11 0-20-7.5t-10-17.5l-23-153q-34-10-75-31l-118 89q-7 7-20 7-11 0-21-8-144-133-144-160 0-9 7-19 10-14 41-53t47-61q-23-44-35-82l-152-24q-10-1-17-9.5t-7-19.5v-185q0-10 7-19.5t16-10.5l155-24q11-35 32-76-34-48-90-115-7-11-7-20 0-12 7-20 22-30 82-89t79-59q11 0 21 7l115 90q34-18 77-32 11-108 23-154 7-24 30-24h186q11 0 20 7.5t10 17.5l23 153q34 10 75 31l118-89q8-7 20-7 11 0 21 8 144 133 144 160 0 8-7 19-12 16-42 54t-45 60q23 48 34 82l152 23q10 2 17 10.5t7 19.5zM1920 1338v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31zM1920 314v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31z"
+ }
+ }]
+};
+exports.gears = gears;
\ No newline at end of file
diff --git a/dist/fa/genderless.js b/dist/fa/genderless.js
new file mode 100644
index 000000000..62da52b16
--- /dev/null
+++ b/dist/fa/genderless.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.genderless = void 0;
+var genderless = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 960q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1152 960q0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5z"
+ }
+ }]
+};
+exports.genderless = genderless;
\ No newline at end of file
diff --git a/dist/fa/getPocket.js b/dist/fa/getPocket.js
new file mode 100644
index 000000000..0a9d934d2
--- /dev/null
+++ b/dist/fa/getPocket.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.getPocket = void 0;
+var getPocket = {
+ "viewBox": "0 0 1720 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1565 128q65 0 110 45.5t45 110.5v519q0 176-68 336t-182.5 275-274 182.5-334.5 67.5q-176 0-335.5-67.5t-274.5-182.5-183-275-68-336v-519q0-64 46-110t110-46h1409zM861 1192q47 0 82-33l404-388q37-35 37-85 0-49-34.5-83.5t-83.5-34.5q-47 0-82 33l-323 310-323-310q-35-33-81-33-49 0-83.5 34.5t-34.5 83.5q0 51 36 85l405 388q33 33 81 33z"
+ }
+ }]
+};
+exports.getPocket = getPocket;
\ No newline at end of file
diff --git a/dist/fa/gg.js b/dist/fa/gg.js
new file mode 100644
index 000000000..b501df71c
--- /dev/null
+++ b/dist/fa/gg.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gg = void 0;
+var gg = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M736 800l384 384-384 384-672-672 672-672 168 168-96 96-72-72-480 480 480 480 193-193-289-287zM1312 224l672 672-672 672-168-168 96-96 72 72 480-480-480-480-193 193 289 287-96 96-384-384z"
+ }
+ }]
+};
+exports.gg = gg;
\ No newline at end of file
diff --git a/dist/fa/ggCircle.js b/dist/fa/ggCircle.js
new file mode 100644
index 000000000..402675386
--- /dev/null
+++ b/dist/fa/ggCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ggCircle = void 0;
+var ggCircle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M717 1354l271-271-279-279-88 88 192 191-96 96-279-279 279-279 40 40 87-87-127-128-454 454zM1075 1346l454-454-454-454-271 271 279 279 88-88-192-191 96-96 279 279-279 279-40-40-87 88zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.ggCircle = ggCircle;
\ No newline at end of file
diff --git a/dist/fa/gift.js b/dist/fa/gift.js
new file mode 100644
index 000000000..04812babb
--- /dev/null
+++ b/dist/fa/gift.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gift = void 0;
+var gift = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M928 1356v-56-468-192h-320v192 468 56q0 25 18 38.5t46 13.5h192q28 0 46-13.5t18-38.5zM472 512h195l-126-161q-26-31-69-31-40 0-68 28t-28 68 28 68 68 28zM1160 416q0-40-28-68t-68-28q-43 0-69 31l-125 161h194q40 0 68-28t28-68zM1536 672v320q0 14-9 23t-23 9h-96v416q0 40-28 68t-68 28h-1088q-40 0-68-28t-28-68v-416h-96q-14 0-23-9t-9-23v-320q0-14 9-23t23-9h440q-93 0-158.5-65.5t-65.5-158.5 65.5-158.5 158.5-65.5q107 0 168 77l128 165 128-165q61-77 168-77 93 0 158.5 65.5t65.5 158.5-65.5 158.5-158.5 65.5h440q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.gift = gift;
\ No newline at end of file
diff --git a/dist/fa/git.js b/dist/fa/git.js
new file mode 100644
index 000000000..b6a9888cf
--- /dev/null
+++ b/dist/fa/git.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.git = void 0;
+var git = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M595 1514q0-100-165-100-158 0-158 104 0 101 172 101 151 0 151-105zM536 759q0-61-30-102t-89-41q-124 0-124 145 0 135 124 135 119 0 119-137zM805 435v202q-36 12-79 22 16 43 16 84 0 127-73 216.5t-197 112.5q-40 8-59.5 27t-19.5 58q0 31 22.5 51.5t58 32 78.5 22 86 25.5 78.5 37.5 58 64 22.5 98.5q0 304-363 304-69 0-130-12.5t-116-41-87.5-82-32.5-127.5q0-165 182-225v-4q-67-41-67-126 0-109 63-137v-4q-72-24-119.5-108.5t-47.5-165.5q0-139 95-231.5t235-92.5q96 0 178 47 98 0 218-47zM1123 1316h-222q4-45 4-134v-609q0-94-4-128h222q-4 33-4 124v613q0 89 4 134zM1724 1094v196q-71 39-174 39-62 0-107-20t-70-50-39.5-78-18.5-92-4-103v-351h2v-4q-7 0-19-1t-18-1q-21 0-59 6v-190h96v-76q0-54-6-89h227q-6 41-6 165h171v190q-15 0-43.5-2t-42.5-2h-85v365q0 131 87 131 61 0 109-33zM1148 147q0 58-39 101.5t-96 43.5q-58 0-98-43.5t-40-101.5q0-59 39.5-103t98.5-44q58 0 96.5 44.5t38.5 102.5z"
+ }
+ }]
+};
+exports.git = git;
\ No newline at end of file
diff --git a/dist/fa/gitSquare.js b/dist/fa/gitSquare.js
new file mode 100644
index 000000000..3e6d02d5a
--- /dev/null
+++ b/dist/fa/gitSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gitSquare = void 0;
+var gitSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M582 1308q0 66-93 66-107 0-107-63 0-64 98-64 102 0 102 61zM546 842q0 85-74 85-77 0-77-84 0-90 77-90 36 0 55 25.5t19 63.5zM712 767v-125q-78 29-135 29-50-29-110-29-86 0-145 57t-59 143q0 50 29.5 102t73.5 67v3q-38 17-38 85 0 53 41 77v3q-113 37-113 139 0 45 20 78.5t54 51 72 25.5 81 8q224 0 224-188 0-67-48-99t-126-46q-27-5-51.5-20.5t-24.5-39.5q0-44 49-52 77-15 122-70t45-134q0-24-10-52 37-9 49-13zM771 1186h137q-2-27-2-82v-387q0-46 2-69h-137q3 23 3 71v392q0 50-3 75zM1280 1170v-121q-30 21-68 21-53 0-53-82v-225h52q9 0 26.5 1t26.5 1v-117h-105q0-82 3-102h-140q4 24 4 55v47h-60v117q36-3 37-3 3 0 11 0.5t12 0.5v2h-2v217q0 37 2.5 64t11.5 56.5 24.5 48.5 43.5 31 66 12q64 0 108-24zM924 464q0-36-24-63.5t-60-27.5-60.5 27-24.5 64q0 36 25 62.5t60 26.5 59.5-27 24.5-62zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.gitSquare = gitSquare;
\ No newline at end of file
diff --git a/dist/fa/github.js b/dist/fa/github.js
new file mode 100644
index 000000000..dd45cf0f0
--- /dev/null
+++ b/dist/fa/github.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.github = void 0;
+var github = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5q0 251-146.5 451.5t-378.5 277.5q-27 5-40-7t-13-30q0-3 0.5-76.5t0.5-134.5q0-97-52-142 57-6 102.5-18t94-39 81-66.5 53-105 20.5-150.5q0-119-79-206 37-91-8-204-28-9-81 11t-92 44l-38 24q-93-26-192-26t-192 26q-16-11-42.5-27t-83.5-38.5-85-13.5q-45 113-8 204-79 87-79 206 0 85 20.5 150t52.5 105 80.5 67 94 39 102.5 18q-39 36-49 103-21 10-45 15t-57 5-65.5-21.5-55.5-62.5q-19-32-48.5-52t-49.5-24l-20-3q-21 0-29 4.5t-5 11.5 9 14 13 12l7 5q22 10 43.5 38t31.5 51l10 23q13 38 44 61.5t67 30 69.5 7 55.5-3.5l23-4q0 38 0.5 88.5t0.5 54.5q0 18-13 30t-40 7q-232-77-378.5-277.5t-146.5-451.5q0-209 103-385.5t279.5-279.5 385.5-103zM291 1231q3-7-7-12-10-3-13 2-3 7 7 12 9 6 13-2zM322 1265q7-5-2-16-10-9-16-3-7 5 2 16 10 10 16 3zM352 1310q9-7 0-19-8-13-17-6-9 5 0 18t17 7zM394 1352q8-8-4-19-12-12-20-3-9 8 4 19 12 12 20 3zM451 1377q3-11-13-16-15-4-19 7t13 15q15 6 19-6zM514 1382q0-13-17-11-16 0-16 11 0 13 17 11 16 0 16-11zM572 1372q-2-11-18-9-16 3-14 15t18 8 14-14z"
+ }
+ }]
+};
+exports.github = github;
\ No newline at end of file
diff --git a/dist/fa/githubAlt.js b/dist/fa/githubAlt.js
new file mode 100644
index 000000000..56d23c1b5
--- /dev/null
+++ b/dist/fa/githubAlt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.githubAlt = void 0;
+var githubAlt = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1216q0 40-12.5 82t-43 76-72.5 34-72.5-34-43-76-12.5-82 12.5-82 43-76 72.5-34 72.5 34 43 76 12.5 82zM1280 1216q0 40-12.5 82t-43 76-72.5 34-72.5-34-43-76-12.5-82 12.5-82 43-76 72.5-34 72.5 34 43 76 12.5 82zM1440 1216q0-120-69-204t-187-84q-41 0-195 21-71 11-157 11t-157-11q-152-21-195-21-118 0-187 84t-69 204q0 88 32 153.5t81 103 122 60 140 29.5 149 7h168q82 0 149-7t140-29.5 122-60 81-103 32-153.5zM1664 1040q0 207-61 331-38 77-105.5 133t-141 86-170 47.5-171.5 22-167 4.5q-78 0-142-3t-147.5-12.5-152.5-30-137-51.5-121-81-86-115q-62-123-62-331 0-237 136-396-27-82-27-170 0-116 51-218 108 0 190 39.5t189 123.5q147-35 309-35 148 0 280 32 105-82 187-121t189-39q51 102 51 218 0 87-27 168 136 160 136 398z"
+ }
+ }]
+};
+exports.githubAlt = githubAlt;
\ No newline at end of file
diff --git a/dist/fa/githubSquare.js b/dist/fa/githubSquare.js
new file mode 100644
index 000000000..72e39b4f0
--- /dev/null
+++ b/dist/fa/githubSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.githubSquare = void 0;
+var githubSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M519 1200q4-6-3-13-9-7-14-2-4 6 3 13 9 7 14 2zM491 1159q-5-7-12-4-6 4 0 12 7 8 12 5 6-4 0-13zM450 1119q2-4-5-8-7-2-8 2-3 5 4 8 8 2 9-2zM471 1142q2-1 1.5-4.5t-3.5-5.5q-6-7-10-3t1 11q6 6 11 2zM557 1217q2-7-9-11-9-3-13 4-2 7 9 11 9 3 13-4zM599 1220q0-8-12-8-10 0-10 8t11 8 11-8zM638 1213q-2-7-13-5t-9 9q2 8 12 6t10-10zM1280 896q0-212-150-362t-362-150-362 150-150 362q0 167 98 300.5t252 185.5q18 3 26.5-5t8.5-20q0-52-1-95-6 1-15.5 2.5t-35.5 2-48-4-43.5-20-29.5-41.5q-23-59-57-74-2-1-4.5-3.5l-8-8t-7-9.5 4-7.5 19.5-3.5q6 0 15 2t30 15.5 33 35.5q16 28 37.5 42t43.5 14 38-3.5 30-9.5q7-47 33-69-49-6-86-18.5t-73-39-55.5-76-19.5-119.5q0-79 53-137-24-62 5-136 19-6 54.5 7.5t60.5 29.5l26 16q58-17 128-17t128 17q11-7 28.5-18t55.5-26 57-9q29 74 5 136 53 58 53 137 0 57-14 100.5t-35.5 70-53.5 44.5-62.5 26-68.5 12q35 31 35 95 0 40-0.5 89t-0.5 51q0 12 8.5 20t26.5 5q154-52 252-185.5t98-300.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.githubSquare = githubSquare;
\ No newline at end of file
diff --git a/dist/fa/gitlab.js b/dist/fa/gitlab.js
new file mode 100644
index 000000000..7b2db52c0
--- /dev/null
+++ b/dist/fa/gitlab.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gitlab = void 0;
+var gitlab = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M104 706l792 1015-868-630q-18-13-25-34.5t0-42.5l101-308v0zM566 706h660l-330 1015v0zM368 94l198 612h-462l198-612q8-23 33-23t33 23zM1688 706l101 308q7 21 0 42.5t-25 34.5l-868 630 792-1015v0zM1688 706h-462l198-612q8-23 33-23t33 23z"
+ }
+ }]
+};
+exports.gitlab = gitlab;
\ No newline at end of file
diff --git a/dist/fa/gittip.js b/dist/fa/gittip.js
new file mode 100644
index 000000000..c5193a866
--- /dev/null
+++ b/dist/fa/gittip.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gittip = void 0;
+var gittip = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M773 1302l350-473q16-22 24.5-59t-6-85-61.5-79q-40-26-83-25.5t-73.5 17.5-54.5 45q-36 40-96 40-59 0-95-40-24-28-54.5-45t-73.5-17.5-84 25.5q-46 31-60.5 79t-6 85 24.5 59zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.gittip = gittip;
\ No newline at end of file
diff --git a/dist/fa/glass.js b/dist/fa/glass.js
new file mode 100644
index 000000000..9f30f4935
--- /dev/null
+++ b/dist/fa/glass.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.glass = void 0;
+var glass = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1699 186q0 35-43 78l-632 632v768h320q26 0 45 19t19 45-19 45-45 19h-896q-26 0-45-19t-19-45 19-45 45-19h320v-768l-632-632q-43-43-43-78 0-23 18-36.5t38-17.5 43-4h1408q23 0 43 4t38 17.5 18 36.5z"
+ }
+ }]
+};
+exports.glass = glass;
\ No newline at end of file
diff --git a/dist/fa/glide.js b/dist/fa/glide.js
new file mode 100644
index 000000000..304c6267c
--- /dev/null
+++ b/dist/fa/glide.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.glide = void 0;
+var glide = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M866 515q0 27-13 94-11 50-31.5 150t-30.5 150q-2 11-4.5 12.5t-13.5 2.5q-20 2-31 2-58 0-84-49.5t-26-113.5q0-88 35-174t103-124q28-14 51-14 28 0 36.5 16.5t8.5 47.5zM1352 939q0-14-39-75.5t-52-66.5q-21-8-34-8-91 0-226 77l-2-2q3-22 27.5-135t24.5-178q0-233-242-233-24 0-68 6-94 17-168.5 89.5t-111.5 166.5-37 189q0 146 80.5 225t227.5 79q25 0 25 3t-1 5q-4 34-26 117-14 52-51.5 101t-82.5 49q-42 0-42-47 0-24 10.5-47.5t25-39.5 29.5-28.5 26-20 11-8.5q0-3-7-10-24-22-58.5-36.5t-65.5-14.5q-35 0-63.5 34t-41 75-12.5 75q0 88 51.5 142t138.5 54q82 0 155-53t117.5-126 65.5-153q6-22 15.5-66.5t14.5-66.5q3-12 14-18 118-60 227-60 48 0 127 18 1 1 4 1 5 0 9.5-4.5t4.5-8.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.glide = glide;
\ No newline at end of file
diff --git a/dist/fa/glideG.js b/dist/fa/glideG.js
new file mode 100644
index 000000000..6e8a08b5f
--- /dev/null
+++ b/dist/fa/glideG.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.glideG = void 0;
+var glideG = {
+ "viewBox": "0 0 1535 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M744 305q0-24-2-38.5t-8.5-30-21-23-37.5-7.5q-39 0-78 23-105 58-159 190.5t-54 269.5q0 44 8.5 85.5t26.5 80.5 52.5 62.5 81.5 23.5q4 0 18 0.5t20 0 16-3 15-8.5 7-16q16-77 48-231.5t48-231.5q19-91 19-146zM1498 961q0 7-7.5 13.5t-15.5 6.5l-6-1q-22-3-62-11t-72-12.5-63-4.5q-167 0-351 93-15 8-21 27-10 36-24.5 105.5t-22.5 100.5q-23 91-70 179.5t-112.5 164.5-154.5 123-185 47q-135 0-214.5-83.5t-79.5-219.5q0-53 19.5-117t63-116.5 97.5-52.5q38 0 120 33.5t83 61.5q0 1-16.5 12.5t-39.5 31-46 44.5-39 61-16 74q0 33 16.5 53t48.5 20q45 0 85-31.5t66.5-78 48-105.5 32.5-107 16-90v-9q0-2-3.5-3.5t-8.5-1.5h-10t-10 0.5-6 0.5q-227 0-352-122.5t-125-348.5q0-108 34.5-221t96-210 156-167.5 204.5-89.5q52-9 106-9 374 0 374 360 0 98-38 273t-43 211l3 3q101-57 182.5-88t167.5-31q22 0 53 13 19 7 80 102.5t61 116.5z"
+ }
+ }]
+};
+exports.glideG = glideG;
\ No newline at end of file
diff --git a/dist/fa/globe.js b/dist/fa/globe.js
new file mode 100644
index 000000000..2277afa1c
--- /dev/null
+++ b/dist/fa/globe.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.globe = void 0;
+var globe = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM1042 649q-2 1-9.5 9.5t-13.5 9.5q2 0 4.5-5t5-11 3.5-7q6-7 22-15 14-6 52-12 34-8 51 11-2-2 9.5-13t14.5-12q3-2 15-4.5t15-7.5l2-22q-12 1-17.5-7t-6.5-21q0 2-6 8 0-7-4.5-8t-11.5 1-9 1q-10-3-15-7.5t-8-16.5-4-15q-2-5-9.5-11t-9.5-10q-1-2-2.5-5.5t-3-6.5-4-5.5-5.5-2.5-7 5-7.5 10-4.5 5q-3-2-6-1.5t-4.5 1-4.5 3-5 3.5q-3 2-8.5 3t-8.5 2q15-5-1-11-10-4-16-3 9-4 7.5-12t-8.5-14h5q-1-4-8.5-8.5t-17.5-8.5-13-6q-8-5-34-9.5t-33-0.5q-5 6-4.5 10.5t4 14 3.5 12.5q1 6-5.5 13t-6.5 12q0 7 14 15.5t10 21.5q-3 8-16 16t-16 12q-5 8-1.5 18.5t10.5 16.5q2 2 1.5 4t-3.5 4.5-5.5 4-6.5 3.5l-3 2q-11 5-20.5-6t-13.5-26q-7-25-16-30-23-8-29 1-5-13-41-26-25-9-58-4 6-1 0-15-7-15-19-12 3-6 4-17.5t1-13.5q3-13 12-23 1-1 7-8.5t9.5-13.5 0.5-6q35 4 50-11 5-5 11.5-17t10.5-17q9-6 14-5.5t14.5 5.5 14.5 5q14 1 15.5-11t-7.5-20q12 1 3-17-4-7-8-9-12-4-27 5-8 4 2 8-1-1-9.5 10.5t-16.5 17.5-16-5q-1-1-5.5-13.5t-9.5-13.5q-8 0-16 15 3-8-11-15t-24-8q19-12-8-27-7-4-20.5-5t-19.5 4q-5 7-5.5 11.5t5 8 10.5 5.5 11.5 4 8.5 3q14 10 8 14-2 1-8.5 3.5t-11.5 4.5-6 4q-3 4 0 14t-2 14q-5-5-9-17.5t-7-16.5q7 9-25 6l-10-1q-4 0-16 2t-20.5 1-13.5-8q-4-8 0-20 1-4 4-2-4-3-11-9.5t-10-8.5q-46 15-94 41 6 1 12-1 5-2 13-6.5t10-5.5q34-14 42-7l5-5q14 16 20 25-7-4-30-1-20 6-22 12 7 12 5 18-4-3-11.5-10t-14.5-11-15-5q-16 0-22 1-146 80-235 222 7 7 12 8 4 1 5 9t2.5 11 11.5-3q9 8 3 19 1-1 44 27 19 17 21 21 3 11-10 18-1-2-9-9t-9-4q-3 5 0.5 18.5t10.5 12.5q-7 0-9.5 16t-2.5 35.5-1 23.5l2 1q-3 12 5.5 34.5t21.5 19.5q-13 3 20 43 6 8 8 9 3 2 12 7.5t15 10 10 10.5q4 5 10 22.5t14 23.5q-2 6 9.5 20t10.5 23q-1 0-2.5 1t-2.5 1q3 7 15.5 14t15.5 13q1 3 2 10t3 11 8 2q2-20-24-62-15-25-17-29-3-5-5.5-15.5t-4.5-14.5q2 0 6 1.5t8.5 3.5 7.5 4 2 3q-3 7 2 17.5t12 18.5 17 19 12 13q6 6 14 19.5t0 13.5q9 0 20 10.5t17 19.5q5 8 8 26t5 24q2 7 8.5 13.5t12.5 9.5l16 8t13 7q5 2 18.5 10.5t21.5 11.5q10 4 16 4t14.5-2.5 13.5-3.5q15-2 29 15t21 21q36 19 55 11-2 1 0.5 7.5t8 15.5 9 14.5 5.5 8.5q5 6 18 15t18 15q6-4 7-9-3 8 7 20t18 10q14-3 14-32-31 15-49-18 0-1-2.5-5.5t-4-8.5-2.5-8.5 0-7.5 5-3q9 0 10-3.5t-2-12.5-4-13q-1-8-11-20t-12-15q-5 9-16 8t-16-9q0 1-1.5 5.5t-1.5 6.5q-13 0-15-1 1-3 2.5-17.5t3.5-22.5q1-4 5.5-12t7.5-14.5 4-12.5-4.5-9.5-17.5-2.5q-19 1-26 20-1 3-3 10.5t-5 11.5-9 7q-7 3-24 2t-24-5q-13-8-22.5-29t-9.5-37q0-10 2.5-26.5t3-25-5.5-24.5q3-2 9-9.5t10-10.5q2-1 4.5-1.5t4.5 0 4-1.5 3-6q-1-1-4-3-3-3-4-3 7 3 28.5-1.5t27.5 1.5q15 11 22-2 0-1-2.5-9.5t-0.5-13.5q5 27 29 9 3 3 15.5 5t17.5 5q3 2 7 5.5t5.5 4.5 5-0.5 8.5-6.5q10 14 12 24 11 40 19 44 7 3 11 2t4.5-9.5 0-14-1.5-12.5l-1-8v-18l-1-8q-15-3-18.5-12t1.5-18.5 15-18.5q1-1 8-3.5t15.5-6.5 12.5-8q21-19 15-35 7 0 11-9-1 0-5-3t-7.5-5-4.5-2q9-5 2-16 5-3 7.5-11t7.5-10q9 12 21 2 8-8 1-16 5-7 20.5-10.5t18.5-9.5q7 2 8-2t1-12 3-12q4-5 15-9t13-5l17-11q3-4 0-4 18 2 31-11 10-11-6-20 3-6-3-9.5t-15-5.5q3-1 11.5-0.5t10.5-1.5q15-10-7-16-17-5-43 12zM879 1526q206-36 351-189-3-3-12.5-4.5t-12.5-3.5q-18-7-24-8 1-7-2.5-13t-8-9-12.5-8-11-7q-2-2-7-6t-7-5.5-7.5-4.5-8.5-2-10 1l-3 1q-3 1-5.5 2.5t-5.5 3-4 3 0 2.5q-21-17-36-22-5-1-11-5.5t-10.5-7-10-1.5-11.5 7q-5 5-6 15t-2 13q-7-5 0-17.5t2-18.5q-3-6-10.5-4.5t-12 4.5-11.5 8.5-9 6.5-8.5 5.5-8.5 7.5q-3 4-6 12t-5 11q-2-4-11.5-6.5t-9.5-5.5q2 10 4 35t5 38q7 31-12 48-27 25-29 40-4 22 12 26 0 7-8 20.5t-7 21.5q0 6 2 16z"
+ }
+ }]
+};
+exports.globe = globe;
\ No newline at end of file
diff --git a/dist/fa/google.js b/dist/fa/google.js
new file mode 100644
index 000000000..d0c4a0c5c
--- /dev/null
+++ b/dist/fa/google.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.google = void 0;
+var google = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 786h725q12 67 12 128 0 217-91 387.5t-259.5 266.5-386.5 96q-157 0-299-60.5t-245-163.5-163.5-245-60.5-299 60.5-299 163.5-245 245-163.5 299-60.5q300 0 515 201l-209 201q-123-119-306-119-129 0-238.5 65t-173.5 176.5-64 243.5 64 243.5 173.5 176.5 238.5 65q87 0 160-24t120-60 82-82 51.5-87 22.5-78h-436v-264z"
+ }
+ }]
+};
+exports.google = google;
\ No newline at end of file
diff --git a/dist/fa/googlePlus.js b/dist/fa/googlePlus.js
new file mode 100644
index 000000000..0ee1bad67
--- /dev/null
+++ b/dist/fa/googlePlus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.googlePlus = void 0;
+var googlePlus = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1437 913q0 208-87 370.5t-248 254-369 91.5q-149 0-285-58t-234-156-156-234-58-285 58-285 156-234 234-156 285-58q286 0 491 192l-199 191q-117-113-292-113-123 0-227.5 62t-165.5 168.5-61 232.5 61 232.5 165.5 168.5 227.5 62q83 0 152.5-23t114.5-57.5 78.5-78.5 49-83 21.5-74h-416v-252h692q12 63 12 122zM2304 791v210h-209v209h-210v-209h-209v-210h209v-209h210v209h209z"
+ }
+ }]
+};
+exports.googlePlus = googlePlus;
\ No newline at end of file
diff --git a/dist/fa/googlePlusCircle.js b/dist/fa/googlePlusCircle.js
new file mode 100644
index 000000000..017867f2f
--- /dev/null
+++ b/dist/fa/googlePlusCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.googlePlusCircle = void 0;
+var googlePlusCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M917 905q0-33-6-64h-362v132h217q-12 76-74.5 120.5t-142.5 44.5q-99 0-169-71.5t-70-170.5 70-170.5 169-71.5q93 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.googlePlusCircle = googlePlusCircle;
\ No newline at end of file
diff --git a/dist/fa/googlePlusOfficial.js b/dist/fa/googlePlusOfficial.js
new file mode 100644
index 000000000..c973b8c0c
--- /dev/null
+++ b/dist/fa/googlePlusOfficial.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.googlePlusOfficial = void 0;
+var googlePlusOfficial = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M917 905q0-33-6-64h-362v132h217q-12 76-74.5 120.5t-142.5 44.5q-99 0-169-71.5t-70-170.5 70-170.5 169-71.5q93 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.googlePlusOfficial = googlePlusOfficial;
\ No newline at end of file
diff --git a/dist/fa/googlePlusSquare.js b/dist/fa/googlePlusSquare.js
new file mode 100644
index 000000000..3b0afce5b
--- /dev/null
+++ b/dist/fa/googlePlusSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.googlePlusSquare = void 0;
+var googlePlusSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M917 905q0-26-6-64h-362v132h217q-3 24-16.5 50t-37.5 53-66.5 44.5-96.5 17.5q-99 0-169-71t-70-171 70-171 169-71q92 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.googlePlusSquare = googlePlusSquare;
\ No newline at end of file
diff --git a/dist/fa/googleWallet.js b/dist/fa/googleWallet.js
new file mode 100644
index 000000000..058f08d86
--- /dev/null
+++ b/dist/fa/googleWallet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.googleWallet = void 0;
+var googleWallet = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M441 672q33 0 52 26 266 364 362 774h-446q-127-441-367-749-12-16-3-33.5t29-17.5h373zM1000 1029q-49 199-125 393-79-310-256-594 40-221 44-449 211 340 337 650zM1099 320q235 324 384.5 698.5t184.5 773.5h-451q-41-665-553-1472h435zM1792 896q0 424-101 812-67-560-359-1083-25-301-106-584-4-16 5.5-28.5t25.5-12.5h359q21 0 38.5 13t22.5 33q115 409 115 850z"
+ }
+ }]
+};
+exports.googleWallet = googleWallet;
\ No newline at end of file
diff --git a/dist/fa/graduationCap.js b/dist/fa/graduationCap.js
new file mode 100644
index 000000000..a67533b8a
--- /dev/null
+++ b/dist/fa/graduationCap.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.graduationCap = void 0;
+var graduationCap = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1774 836l18 316q4 69-82 128t-235 93.5-323 34.5-323-34.5-235-93.5-82-128l18-316 574 181q22 7 48 7t48-7zM2304 512q0 23-22 31l-1120 352q-4 1-10 1t-10-1l-652-206q-43 34-71 111.5t-34 178.5q63 36 63 109 0 69-58 107l58 433q2 14-8 25-9 11-24 11h-192q-15 0-24-11-10-11-8-25l58-433q-58-38-58-107 0-73 65-111 11-207 98-330l-333-104q-22-8-22-31t22-31l1120-352q4-1 10-1t10 1l1120 352q22 8 22 31z"
+ }
+ }]
+};
+exports.graduationCap = graduationCap;
\ No newline at end of file
diff --git a/dist/fa/gratipay.js b/dist/fa/gratipay.js
new file mode 100644
index 000000000..992f85a7b
--- /dev/null
+++ b/dist/fa/gratipay.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gratipay = void 0;
+var gratipay = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M773 1302l350-473q16-22 24.5-59t-6-85-61.5-79q-40-26-83-25.5t-73.5 17.5-54.5 45q-36 40-96 40-59 0-95-40-24-28-54.5-45t-73.5-17.5-84 25.5q-46 31-60.5 79t-6 85 24.5 59zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.gratipay = gratipay;
\ No newline at end of file
diff --git a/dist/fa/grav.js b/dist/fa/grav.js
new file mode 100644
index 000000000..e01d70399
--- /dev/null
+++ b/dist/fa/grav.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.grav = void 0;
+var grav = {
+ "viewBox": "0 0 1794 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1291 476q-15-17-35-8.5t-26 28.5 5 38q14 17 40 14.5t34-20.5-18-52zM895 722q-8 8-19.5 8t-18.5-8q-8-8-8-19t8-18q7-8 18.5-8t19.5 8q7 7 7 18t-7 19zM1060 796l-35 35q-12 13-29.5 13t-30.5-13l-38-38q-12-13-12-30t12-30l35-35q12-12 29.5-12t30.5 12l38 39q12 12 12 29.5t-12 29.5zM951 666q-7 8-18.5 8t-19.5-8q-7-8-7-19t7-19q8-8 19-8t19 8 8 19-8 19zM1354 568q-34 64-107.5 85.5t-127.5-16.5q-38-28-61-66.5t-21-87.5 39-92 75.5-53 70.5 5 70 51q2 2 13 12.5t14.5 13.5 13 13.5 12.5 15.5 10 15.5 8.5 18 4 18.5 1 21-5 22-9.5 24zM1555 1050q3-20-8.5-34.5t-27.5-21.5-33-17-23-20q-40-71-84-98.5t-113-11.5q19-13 40-18.5t33-4.5l12 1q2-45-34-90 6-20 6.5-40.5t-2.5-30.5l-3-10q43-24 71-65t34-91q10-84-43-150.5t-137-76.5q-60-7-114 18.5t-82 74.5q-30 51-33.5 101t14.5 87 43.5 64 56.5 42q-45-4-88-36t-57-88q-28-108 32-222-16-21-29-32-50 0-89 19 19-24 42-37t36-14l13-1q0-50-13-78-10-21-32.5-28.5t-47 3.5-37.5 40q2-4 4-7-7 28-6.5 75.5t19 117 48.5 122.5q-25 14-47 36-35 16-85.5 70.5t-84.5 101.5l-33 46q-90 34-181 125.5t-75 162.5q1 16 11 27-15 12-30 30-21 25-21 54t21.5 40 63.5-6q41-19 77-49.5t55-60.5q-2-2-6.5-5t-20.5-7.5-33-3.5q23-5 51-12.5t40-10 27.5-6 26-4 23.5-0.5q14 7 22-34 7-37 7-90 0-102-40-150 106 103 101 219-1 29-15 50t-27 27l-13 6q-4 7-19 32t-26 45.5-26.5 52-25 61-17 63-6.5 66.5 10 63q-35-54-37-80-22 24-34.5 39t-33.5 42-30.5 46-16.5 41-0.5 38 25.5 27q45 25 144-64t190.5-221.5 122.5-228.5q86-52 145-115.5t86-119.5q47 93 154 178 104 83 167 80 39-2 46-43zM1794 896q0 182-71 348t-191 286-286.5 191-348.5 71-348.5-71-286.5-191-191-286-71-348 71-348 191-286 286.5-191 348.5-71 348.5 71 286.5 191 191 286 71 348z"
+ }
+ }]
+};
+exports.grav = grav;
\ No newline at end of file
diff --git a/dist/fa/group.js b/dist/fa/group.js
new file mode 100644
index 000000000..3428b0435
--- /dev/null
+++ b/dist/fa/group.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.group = void 0;
+var group = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M593 896q-162 5-265 128h-134q-82 0-138-40.5t-56-118.5q0-353 124-353 6 0 43.5 21t97.5 42.5 119 21.5q67 0 133-23-5 37-5 66 0 139 81 256zM1664 1533q0 120-73 189.5t-194 69.5h-874q-121 0-194-69.5t-73-189.5q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q10 0 43 21.5t73 48 107 48 135 21.5 135-21.5 107-48 73-48 43-21.5q61 0 111.5 20t85.5 53.5 62 81 43 97.5 26.5 108.5 14 109 3.5 103.5zM640 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1344 640q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1920 865q0 78-56 118.5t-138 40.5h-134q-103-123-265-128 81-117 81-256 0-29-5-66 66 23 133 23 59 0 119-21.5t97.5-42.5 43.5-21q124 0 124 353zM1792 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181z"
+ }
+ }]
+};
+exports.group = group;
\ No newline at end of file
diff --git a/dist/fa/hSquare.js b/dist/fa/hSquare.js
new file mode 100644
index 000000000..bba36713c
--- /dev/null
+++ b/dist/fa/hSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hSquare = void 0;
+var hSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1344v-896q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v320h-512v-320q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v896q0 26 19 45t45 19h128q26 0 45-19t19-45v-320h512v320q0 26 19 45t45 19h128q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.hSquare = hSquare;
\ No newline at end of file
diff --git a/dist/fa/hackerNews.js b/dist/fa/hackerNews.js
new file mode 100644
index 000000000..fe68c0c74
--- /dev/null
+++ b/dist/fa/hackerNews.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hackerNews = void 0;
+var hackerNews = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.hackerNews = hackerNews;
\ No newline at end of file
diff --git a/dist/fa/handGrabO.js b/dist/fa/handGrabO.js
new file mode 100644
index 000000000..781a12a47
--- /dev/null
+++ b/dist/fa/handGrabO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handGrabO = void 0;
+var handGrabO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 384q-53 0-90.5 37.5t-37.5 90.5v128h-32v-93q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v429l-32-30v-172q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v224q0 47 35 82l310 296q39 39 39 102 0 26 19 45t45 19h640q26 0 45-19t19-45v-25q0-41 10-77l108-436q10-36 10-77v-246q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v32h-32v-125q0-40-25-72.5t-64-40.5q-14-2-23-2-46 0-79 33t-33 79v128h-32v-122q0-51-32.5-89.5t-82.5-43.5q-5-1-13-1zM768 256q84 0 149 50 57-34 123-34 59 0 111 27t86 76q27-7 59-7 100 0 170 71.5t70 171.5v246q0 51-13 108l-109 436q-6 24-6 71 0 80-56 136t-136 56h-640q-84 0-138-58.5t-54-142.5l-308-296q-76-73-76-175v-224q0-99 70.5-169.5t169.5-70.5q11 0 16 1 6-95 75.5-160t164.5-65q52 0 98 21 72-69 174-69z"
+ }
+ }]
+};
+exports.handGrabO = handGrabO;
\ No newline at end of file
diff --git a/dist/fa/handLizardO.js b/dist/fa/handLizardO.js
new file mode 100644
index 000000000..86cfd83e9
--- /dev/null
+++ b/dist/fa/handLizardO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handLizardO = void 0;
+var handLizardO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1151 0q61 0 116 28t91 77l572 781q118 159 118 359v355q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-177l-286-143h-546q-80 0-136-56t-56-136v-32q0-119 84.5-203.5t203.5-84.5h420l42-128h-686q-100 0-173.5-67.5t-81.5-166.5q-65-79-65-182v-32q0-80 56-136t136-56h959zM1920 1600v-355q0-157-93-284l-573-781q-39-52-103-52h-959q-26 0-45 19t-19 45q0 32 1.5 49.5t9.5 40.5 25 43q10-31 35.5-50t56.5-19h832v32h-832q-26 0-45 19t-19 45q0 44 3 58 8 44 44 73t81 29h640 91q40 0 68 28t28 68q0 15-5 30l-64 192q-10 29-35 47.5t-56 18.5h-443q-66 0-113 47t-47 113v32q0 26 19 45t45 19h561q16 0 29 7l317 158q24 13 38.5 36t14.5 50v197q0 26 19 45t45 19h384q26 0 45-19t19-45z"
+ }
+ }]
+};
+exports.handLizardO = handLizardO;
\ No newline at end of file
diff --git a/dist/fa/handODown.js b/dist/fa/handODown.js
new file mode 100644
index 000000000..7783cea22
--- /dev/null
+++ b/dist/fa/handODown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handODown = void 0;
+var handODown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 960q0-84-32-183t-64-194-32-167v-32h-640v32q0 35-12 67.5t-37 62.5-46 50-54 49q-9 8-14 12-81 72-145 112-22 14-68 38-3 1-22.5 10.5t-36 18.5-35.5 20-30.5 21.5-11.5 18.5q0 71 30.5 115.5t97.5 44.5q43 0 84.5-15t68-33 55-33 48.5-15v576q0 50 38.5 89t89.5 39q52 0 90-38t38-90v-331q46 35 103 35 69 0 119-53 32 18 69 18t73.5-17.5 52.5-47.5q24 4 56 4 85 0 126-48.5t41-135.5zM1280 192q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 956q0 142-77.5 230t-217.5 87l-5-1q-76 61-178 61-22 0-43-3-54 30-119 37v169q0 105-76 180.5t-181 75.5q-103 0-179-76t-76-180v-374q-54 22-128 22-121 0-188.5-81.5t-67.5-206.5q0-38 17.5-69.5t49.5-55 63-40.5 72-37 62-33q55-35 129-100 3-2 17-14t21.5-19 21.5-20.5 22.5-24 18-22.5 14-23.5 4.5-21.5v-288q0-53 37.5-90.5t90.5-37.5h640q53 0 90.5 37.5t37.5 90.5v288q0 59 59 223 69 190 69 317z"
+ }
+ }]
+};
+exports.handODown = handODown;
\ No newline at end of file
diff --git a/dist/fa/handOLeft.js b/dist/fa/handOLeft.js
new file mode 100644
index 000000000..51530b82d
--- /dev/null
+++ b/dist/fa/handOLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handOLeft = void 0;
+var handOLeft = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1376 1408h32v-640h-32q-35 0-67.5-12t-62.5-37-50-46-49-54q-8-9-12-14-72-81-112-145-14-22-38-68-1-3-10.5-22.5t-18.5-36-20-35.5-21.5-30.5-18.5-11.5q-71 0-115.5 30.5t-44.5 97.5q0 43 15 84.5t33 68 33 55 15 48.5h-576q-50 0-89 38.5t-39 89.5q0 52 38 90t90 38h331q-15 17-25 47.5t-10 55.5q0 69 53 119-18 32-18 69t17.5 73.5 47.5 52.5q-4 24-4 56 0 85 48.5 126t135.5 41q84 0 183-32t194-64 167-32zM1664 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1792 768v640q0 53-37.5 90.5t-90.5 37.5h-288q-59 0-223 59-190 69-317 69-142 0-230-77.5t-87-217.5l1-5q-61-76-61-178 0-22 3-43-33-57-37-119h-169q-105 0-180.5-76t-75.5-181q0-103 76-179t180-76h374q-22-60-22-128 0-122 81.5-189t206.5-67q38 0 69.5 17.5t55 49.5 40.5 63 37 72 33 62q35 55 100 129 2 3 14 17t19 21.5 20.5 21.5 24 22.5 22.5 18 23.5 14 21.5 4.5h288q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.handOLeft = handOLeft;
\ No newline at end of file
diff --git a/dist/fa/handORight.js b/dist/fa/handORight.js
new file mode 100644
index 000000000..152346a37
--- /dev/null
+++ b/dist/fa/handORight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handORight = void 0;
+var handORight = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 768q0-51-39-89.5t-89-38.5h-576q0-20 15-48.5t33-55 33-68 15-84.5q0-67-44.5-97.5t-115.5-30.5q-24 0-90 139-24 44-37 65-40 64-112 145-71 81-101 106-69 57-140 57h-32v640h32q72 0 167 32t193.5 64 179.5 32q189 0 189-167 0-26-5-56 30-16 47.5-52.5t17.5-73.5-18-69q53-50 53-119 0-25-10-55.5t-25-47.5h331q52 0 90-38t38-90zM1792 767q0 105-75.5 181t-180.5 76h-169q-4 62-37 119 3 21 3 43 0 101-60 178 1 139-85 219.5t-227 80.5q-133 0-322-69-164-59-223-59h-288q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h288q10 0 21.5-4.5t23.5-14 22.5-18 24-22.5 20.5-21.5 19-21.5 14-17q65-74 100-129 13-21 33-62t37-72 40.5-63 55-49.5 69.5-17.5q125 0 206.5 67t81.5 189q0 68-22 128h374q104 0 180 76t76 179z"
+ }
+ }]
+};
+exports.handORight = handORight;
\ No newline at end of file
diff --git a/dist/fa/handOUp.js b/dist/fa/handOUp.js
new file mode 100644
index 000000000..68ceed7af
--- /dev/null
+++ b/dist/fa/handOUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handOUp = void 0;
+var handOUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1600q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 836q0-189-167-189-26 0-56 5-16-30-52.5-47.5t-73.5-17.5-69 18q-50-53-119-53-25 0-55.5 10t-47.5 25v-331q0-52-38-90t-90-38q-51 0-89.5 39t-38.5 89v576q-20 0-48.5-15t-55-33-68-33-84.5-15q-67 0-97.5 44.5t-30.5 115.5q0 24 139 90 44 24 65 37 64 40 145 112 81 71 106 101 57 69 57 140v32h640v-32q0-72 32-167t64-193.5 32-179.5zM1536 831q0 133-69 322-59 164-59 223v288q0 53-37.5 90.5t-90.5 37.5h-640q-53 0-90.5-37.5t-37.5-90.5v-288q0-10-4.5-21.5t-14-23.5-18-22.5-22.5-24-21.5-20.5-21.5-19-17-14q-74-65-129-100-21-13-62-33t-72-37-63-40.5-49.5-55-17.5-69.5q0-125 67-206.5t189-81.5q68 0 128 22v-374q0-104 76-180t179-76q105 0 181 75.5t76 180.5v169q62 4 119 37 21-3 43-3 101 0 178 60 139-1 219.5 85t80.5 227z"
+ }
+ }]
+};
+exports.handOUp = handOUp;
\ No newline at end of file
diff --git a/dist/fa/handPaperO.js b/dist/fa/handPaperO.js
new file mode 100644
index 000000000..e97d14b9d
--- /dev/null
+++ b/dist/fa/handPaperO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handPaperO = void 0;
+var handPaperO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M880 128q-46 0-79 33t-33 79v656h-32v-528q0-46-33-79t-79-33-79 33-33 79v528 256l-154-205q-38-51-102-51-53 0-90.5 37.5t-37.5 90.5q0 43 26 77l384 512q38 51 102 51h688q34 0 61-22t34-56l76-405q5-32 5-59v-498q0-46-33-79t-79-33-79 33-33 79v272h-32v-528q0-46-33-79t-79-33-79 33-33 79v528h-32v-656q0-46-33-79t-79-33zM880 0q68 0 125.5 35.5t88.5 96.5q19-4 42-4 99 0 169.5 70.5t70.5 169.5v17q105-6 180.5 64t75.5 175v498q0 40-8 83l-76 404q-14 79-76.5 131t-143.5 52h-688q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-106 75-181t181-75q78 0 128 34v-434q0-99 70.5-169.5t169.5-70.5q23 0 42 4 31-61 88.5-96.5t125.5-35.5z"
+ }
+ }]
+};
+exports.handPaperO = handPaperO;
\ No newline at end of file
diff --git a/dist/fa/handPeaceO.js b/dist/fa/handPeaceO.js
new file mode 100644
index 000000000..b7e65715a
--- /dev/null
+++ b/dist/fa/handPeaceO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handPeaceO = void 0;
+var handPeaceO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1288 647q60 0 107 23 141 63 141 226v177q0 94-23 186l-85 339q-21 86-90.5 140t-157.5 54h-668q-106 0-181-75t-75-181v-401l-239-628q-17-45-17-91 0-106 75-181t181-75q80 0 145.5 45.5t93.5 119.5l17 44v-113q0-106 75-181t181-75 181 75 75 181v261q27-5 48-5 69 0 127.5 36.5t88.5 98.5zM1072 640q-33 0-60.5 18t-41.5 48l-74 163-71 155h55q50 0 90 31.5t50 80.5l154-338q10-20 10-46 0-46-33-79t-79-33zM1293 775q-22 0-40.5 8t-29 16-23.5 29.5-17 30.5-17 37l-132 290q-10 20-10 46 0 46 33 79t79 33q33 0 60.5-18t41.5-48l160-352q9-18 9-38 0-50-32-81.5t-82-31.5zM128 416q0 22 8 46l248 650v69l102-111q43-46 106-46h198l106-233v-535q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5v640h-64l-200-526q-14-37-47-59.5t-73-22.5q-53 0-90.5 37.5t-37.5 90.5zM1180 1664q44 0 78.5-27t45.5-70l85-339q19-73 19-155v-91l-141 310q-17 38-53 61t-78 23q-53 0-93.5-34.5t-48.5-86.5q-44 57-114 57h-208v-32h208q46 0 81-33t35-79-31-79-77-33h-296q-49 0-82 36l-126 136v308q0 53 37.5 90.5t90.5 37.5h668z"
+ }
+ }]
+};
+exports.handPeaceO = handPeaceO;
\ No newline at end of file
diff --git a/dist/fa/handPointerO.js b/dist/fa/handPointerO.js
new file mode 100644
index 000000000..88f22f5d1
--- /dev/null
+++ b/dist/fa/handPointerO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handPointerO = void 0;
+var handPointerO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 128q-53 0-90.5 37.5t-37.5 90.5v512 384l-151-202q-41-54-107-54-52 0-89 38t-37 90q0 43 26 77l384 512q38 51 102 51h718q22 0 39.5-13.5t22.5-34.5l92-368q24-96 24-194v-217q0-41-28-71t-68-30-68 28-28 68h-32v-61q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v64h-32v-90q0-55-37-94.5t-91-39.5q-53 0-90.5 37.5t-37.5 90.5v96h-32v-570q0-55-37-94.5t-91-39.5zM640 0q107 0 181.5 77.5t74.5 184.5v220q22-2 32-2 99 0 173 69 47-21 99-21 113 0 184 87 27-7 56-7 94 0 159 67.5t65 161.5v217q0 116-28 225l-92 368q-16 64-68 104.5t-118 40.5h-718q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-105 74.5-180.5t179.5-75.5q71 0 130 35v-547q0-106 75-181t181-75zM768 1408v-384h-32v384h32zM1024 1408v-384h-32v384h32zM1280 1408v-384h-32v384h32z"
+ }
+ }]
+};
+exports.handPointerO = handPointerO;
\ No newline at end of file
diff --git a/dist/fa/handRockO.js b/dist/fa/handRockO.js
new file mode 100644
index 000000000..bebb2061f
--- /dev/null
+++ b/dist/fa/handRockO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handRockO = void 0;
+var handRockO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 384q-53 0-90.5 37.5t-37.5 90.5v128h-32v-93q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v429l-32-30v-172q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v224q0 47 35 82l310 296q39 39 39 102 0 26 19 45t45 19h640q26 0 45-19t19-45v-25q0-41 10-77l108-436q10-36 10-77v-246q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v32h-32v-125q0-40-25-72.5t-64-40.5q-14-2-23-2-46 0-79 33t-33 79v128h-32v-122q0-51-32.5-89.5t-82.5-43.5q-5-1-13-1zM768 256q84 0 149 50 57-34 123-34 59 0 111 27t86 76q27-7 59-7 100 0 170 71.5t70 171.5v246q0 51-13 108l-109 436q-6 24-6 71 0 80-56 136t-136 56h-640q-84 0-138-58.5t-54-142.5l-308-296q-76-73-76-175v-224q0-99 70.5-169.5t169.5-70.5q11 0 16 1 6-95 75.5-160t164.5-65q52 0 98 21 72-69 174-69z"
+ }
+ }]
+};
+exports.handRockO = handRockO;
\ No newline at end of file
diff --git a/dist/fa/handScissorsO.js b/dist/fa/handScissorsO.js
new file mode 100644
index 000000000..8586722d2
--- /dev/null
+++ b/dist/fa/handScissorsO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handScissorsO = void 0;
+var handScissorsO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1073 1664h-177q-163 0-226-141-23-49-23-102v-5q-62-30-98.5-88.5t-36.5-127.5q0-38 5-48h-261q-106 0-181-75t-75-181 75-181 181-75h113l-44-17q-74-28-119.5-93.5t-45.5-145.5q0-106 75-181t181-75q46 0 91 17l628 239h401q106 0 181 75t75 181v668q0 88-54 157.5t-140 90.5l-339 85q-92 23-186 23zM1024 953l-155 71-163 74q-30 14-48 41.5t-18 60.5q0 46 33 79t79 33q26 0 46-10l338-154q-49-10-80.5-50t-31.5-90v-55zM1344 1264q0-46-33-79t-79-33q-26 0-46 10l-290 132q-28 13-37 17t-30.5 17-29.5 23.5-16 29-8 40.5q0 50 31.5 82t81.5 32q20 0 38-9l352-160q30-14 48-41.5t18-60.5zM1112 512l-650-248q-24-8-46-8-53 0-90.5 37.5t-37.5 90.5q0 40 22.5 73t59.5 47l526 200v64h-640q-53 0-90.5 37.5t-37.5 90.5 37.5 90.5 90.5 37.5h535l233-106v-198q0-63 46-106l111-102h-69zM1073 1536q82 0 155-19l339-85q43-11 70-45.5t27-78.5v-668q0-53-37.5-90.5t-90.5-37.5h-308l-136 126q-36 33-36 82v296q0 46 33 77t79 31 79-35 33-81v-208h32v208q0 70-57 114 52 8 86.5 48.5t34.5 93.5q0 42-23 78t-61 53l-310 141h91z"
+ }
+ }]
+};
+exports.handScissorsO = handScissorsO;
\ No newline at end of file
diff --git a/dist/fa/handSpockO.js b/dist/fa/handSpockO.js
new file mode 100644
index 000000000..e2b82be88
--- /dev/null
+++ b/dist/fa/handSpockO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handSpockO = void 0;
+var handSpockO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M459 1792q-77 0-137.5-47.5t-79.5-122.5l-101-401q-13-57-13-108 0-45-5-67l-116-477q-7-27-7-57 0-93 62-161t155-78q17-85 82.5-139t152.5-54q83 0 148 51.5t85 132.5l83 348 103-428q20-81 85-132.5t148-51.5q89 0 155.5 57.5t80.5 144.5q92 10 152 79t60 162q0 24-7 59l-123 512q10-7 37.5-28.5t38.5-29.5 35-23 41-20.5 41.5-11 49.5-5.5q105 0 180 74t75 179q0 62-28.5 118t-78.5 94l-507 380q-68 51-153 51h-694zM1104 128q-38 0-68.5 24t-39.5 62l-164 682h-127l-145-602q-9-38-39.5-62t-68.5-24q-48 0-80 33t-32 80q0 15 3 28l132 547h-26l-99-408q-9-37-40-62.5t-69-25.5q-47 0-80 33t-33 79q0 14 3 26l116 478q7 28 9 86t10 88l100 401q8 32 34 52.5t59 20.5h694q42 0 76-26l507-379q56-43 56-110 0-52-37.5-88.5t-89.5-36.5q-43 0-77 26l-307 230v-227q0-4 32-138t68-282 39-161q4-18 4-29 0-47-32-81t-79-34q-39 0-69.5 24t-39.5 62l-116 482h-26l150-624q3-14 3-28 0-48-31.5-82t-79.5-34z"
+ }
+ }]
+};
+exports.handSpockO = handSpockO;
\ No newline at end of file
diff --git a/dist/fa/handStopO.js b/dist/fa/handStopO.js
new file mode 100644
index 000000000..1952ed651
--- /dev/null
+++ b/dist/fa/handStopO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handStopO = void 0;
+var handStopO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M880 128q-46 0-79 33t-33 79v656h-32v-528q0-46-33-79t-79-33-79 33-33 79v528 256l-154-205q-38-51-102-51-53 0-90.5 37.5t-37.5 90.5q0 43 26 77l384 512q38 51 102 51h688q34 0 61-22t34-56l76-405q5-32 5-59v-498q0-46-33-79t-79-33-79 33-33 79v272h-32v-528q0-46-33-79t-79-33-79 33-33 79v528h-32v-656q0-46-33-79t-79-33zM880 0q68 0 125.5 35.5t88.5 96.5q19-4 42-4 99 0 169.5 70.5t70.5 169.5v17q105-6 180.5 64t75.5 175v498q0 40-8 83l-76 404q-14 79-76.5 131t-143.5 52h-688q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-106 75-181t181-75q78 0 128 34v-434q0-99 70.5-169.5t169.5-70.5q23 0 42 4 31-61 88.5-96.5t125.5-35.5z"
+ }
+ }]
+};
+exports.handStopO = handStopO;
\ No newline at end of file
diff --git a/dist/fa/handshakeO.js b/dist/fa/handshakeO.js
new file mode 100644
index 000000000..d9ddf8392
--- /dev/null
+++ b/dist/fa/handshakeO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.handshakeO = void 0;
+var handshakeO = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192 1152q40 0 56-32t0-64-56-32-56 32 0 64 56 32zM1665 1094q-10-13-38.5-50t-41.5-54-38-49-42.5-53-40.5-47-45-49l-125 140q-83 94-208.5 92t-205.5-98q-57-69-56.5-158t58.5-157l177-206q-22-11-51-16.5t-47.5-6-56.5 0.5-49 1q-92 0-158 66l-158 158h-155v544q5 0 21-0.5t22 0 19.5 2 20.5 4.5 17.5 8.5 18.5 13.5l297 292q115 111 227 111 78 0 125-47 57 20 112.5-8t72.5-85q74 6 127-44 20-18 36-45.5t14-50.5q10 10 43 10 43 0 77-21t49.5-53 12-71.5-30.5-73.5zM1824 1152h96v-512h-93l-157-180q-66-76-169-76h-167q-89 0-146 67l-209 243q-28 33-28 75t27 75q43 51 110 52t111-49l193-218q25-23 53.5-21.5t47 27 8.5 56.5q16 19 56 63t60 68q29 36 82.5 105.5t64.5 84.5q52 66 60 140zM2112 1152q40 0 56-32t0-64-56-32-56 32 0 64 56 32zM2304 576v640q0 26-19 45t-45 19h-434q-27 65-82 106.5t-125 51.5q-33 48-80.5 81.5t-102.5 45.5q-42 53-104.5 81.5t-128.5 24.5q-60 34-126 39.5t-127.5-14-117-53.5-103.5-81l-287-282h-358q-26 0-45-19t-19-45v-672q0-26 19-45t45-19h421q14-14 47-48t47.5-48 44-40 50.5-37.5 51-25.5 62-19.5 68-5.5h117q99 0 181 56 82-56 181-56h167q35 0 67 6t56.5 14.5 51.5 26.5 44.5 31 43 39.5 39 42 41 48 41.5 48.5h355q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.handshakeO = handshakeO;
\ No newline at end of file
diff --git a/dist/fa/hardOfHearing.js b/dist/fa/hardOfHearing.js
new file mode 100644
index 000000000..79a6be784
--- /dev/null
+++ b/dist/fa/hardOfHearing.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hardOfHearing = void 0;
+var hardOfHearing = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z"
+ }
+ }]
+};
+exports.hardOfHearing = hardOfHearing;
\ No newline at end of file
diff --git a/dist/fa/hashtag.js b/dist/fa/hashtag.js
new file mode 100644
index 000000000..995477eb6
--- /dev/null
+++ b/dist/fa/hashtag.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hashtag = void 0;
+var hashtag = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M991 1024l64-256h-254l-64 256h254zM1759 520l-56 224q-7 24-31 24h-327l-64 256h311q15 0 25 12 10 14 6 28l-56 224q-5 24-31 24h-327l-81 328q-7 24-31 24h-224q-16 0-26-12-9-12-6-28l78-312h-254l-81 328q-7 24-31 24h-225q-15 0-25-12-9-12-6-28l78-312h-311q-15 0-25-12-9-12-6-28l56-224q7-24 31-24h327l64-256h-311q-15 0-25-12-10-14-6-28l56-224q5-24 31-24h327l81-328q7-24 32-24h224q15 0 25 12 9 12 6 28l-78 312h254l81-328q7-24 32-24h224q15 0 25 12 9 12 6 28l-78 312h311q15 0 25 12 9 12 6 28z"
+ }
+ }]
+};
+exports.hashtag = hashtag;
\ No newline at end of file
diff --git a/dist/fa/hddO.js b/dist/fa/hddO.js
new file mode 100644
index 000000000..45efdeded
--- /dev/null
+++ b/dist/fa/hddO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hddO = void 0;
+var hddO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1040 1216q0 33-23.5 56.5t-56.5 23.5-56.5-23.5-23.5-56.5 23.5-56.5 56.5-23.5 56.5 23.5 23.5 56.5zM1296 1216q0 33-23.5 56.5t-56.5 23.5-56.5-23.5-23.5-56.5 23.5-56.5 56.5-23.5 56.5 23.5 23.5 56.5zM1408 1376v-320q0-13-9.5-22.5t-22.5-9.5h-1216q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5-9.5t9.5-22.5zM178 896h1180l-157-482q-4-13-16-21.5t-26-8.5h-782q-14 0-26 8.5t-16 21.5zM1536 1056v320q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-320q0-25 16-75l197-606q17-53 63-86t101-33h782q55 0 101 33t63 86l197 606q16 50 16 75z"
+ }
+ }]
+};
+exports.hddO = hddO;
\ No newline at end of file
diff --git a/dist/fa/header.js b/dist/fa/header.js
new file mode 100644
index 000000000..80a05bcbd
--- /dev/null
+++ b/dist/fa/header.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.header = void 0;
+var header = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1682 1664q-44 0-132.5-3.5t-133.5-3.5q-44 0-132 3.5t-132 3.5q-24 0-37-20.5t-13-45.5q0-31 17-46t39-17 51-7 45-15q33-21 33-140l-1-391q0-21-1-31-13-4-50-4h-675q-38 0-51 4-1 10-1 31l-1 371q0 142 37 164 16 10 48 13t57 3.5 45 15 20 45.5q0 26-12.5 48t-36.5 22q-47 0-139.5-3.5t-138.5-3.5q-43 0-128 3.5t-127 3.5q-23 0-35.5-21t-12.5-45q0-30 15.5-45t36-17.5 47.5-7.5 42-15q33-23 33-143l-1-57v-813q0-3 0.5-26t0-36.5-1.5-38.5-3.5-42-6.5-36.5-11-31.5-16-18q-15-10-45-12t-53-2-41-14-18-45q0-26 12-48t36-22q46 0 138.5 3.5t138.5 3.5q42 0 126.5-3.5t126.5-3.5q25 0 37.5 22t12.5 48q0 30-17 43.5t-38.5 14.5-49.5 4-43 13q-35 21-35 160l1 320q0 21 1 32 13 3 39 3h699q25 0 38-3 1-11 1-32l1-320q0-139-35-160-18-11-58.5-12.5t-66-13-25.5-49.5q0-26 12.5-48t37.5-22q44 0 132 3.5t132 3.5q43 0 129-3.5t129-3.5q25 0 37.5 22t12.5 48q0 30-17.5 44t-40 14.5-51.5 3-44 12.5q-35 23-35 161l1 943q0 119 34 140 16 10 46 13.5t53.5 4.5 41.5 15.5 18 44.5q0 26-12 48t-36 22z"
+ }
+ }]
+};
+exports.header = header;
\ No newline at end of file
diff --git a/dist/fa/headphones.js b/dist/fa/headphones.js
new file mode 100644
index 000000000..ff0a099ed
--- /dev/null
+++ b/dist/fa/headphones.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.headphones = void 0;
+var headphones = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 886q0 166-60 314l-20 49-185 33q-22 83-90.5 136.5t-156.5 53.5v32q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23v32q71 0 130 35.5t93 95.5l68-12q29-95 29-193 0-148-88-279t-236.5-209-315.5-78-315.5 78-236.5 209-88 279q0 98 29 193l68 12q34-60 93-95.5t130-35.5v-32q0-14 9-23t23-9h64q14 0 23 9t9 23v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-32q-88 0-156.5-53.5t-90.5-136.5l-185-33-20-49q-60-148-60-314 0-151 67-291t179-242.5 266-163.5 320-61 320 61 266 163.5 179 242.5 67 291z"
+ }
+ }]
+};
+exports.headphones = headphones;
\ No newline at end of file
diff --git a/dist/fa/heart.js b/dist/fa/heart.js
new file mode 100644
index 000000000..5e7ead3d9
--- /dev/null
+++ b/dist/fa/heart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heart = void 0;
+var heart = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1664q-26 0-44-18l-624-602q-10-8-27.5-26t-55.5-65.5-68-97.5-53.5-121-23.5-138q0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344q0 221-229 450l-623 600q-18 18-44 18z"
+ }
+ }]
+};
+exports.heart = heart;
\ No newline at end of file
diff --git a/dist/fa/heartO.js b/dist/fa/heartO.js
new file mode 100644
index 000000000..009ff2de8
--- /dev/null
+++ b/dist/fa/heartO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heartO = void 0;
+var heartO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 596q0-81-21.5-143t-55-98.5-81.5-59.5-94-31-98-8-112 25.5-110.5 64-86.5 72-60 61.5q-18 22-49 22t-49-22q-24-28-60-61.5t-86.5-72-110.5-64-112-25.5-98 8-94 31-81.5 59.5-55 98.5-21.5 143q0 168 187 355l581 560 580-559q188-188 188-356zM1792 596q0 221-229 450l-623 600q-18 18-44 18t-44-18l-624-602q-10-8-27.5-26t-55.5-65.5-68-97.5-53.5-121-23.5-138q0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344z"
+ }
+ }]
+};
+exports.heartO = heartO;
\ No newline at end of file
diff --git a/dist/fa/heartbeat.js b/dist/fa/heartbeat.js
new file mode 100644
index 000000000..a1a0d90ee
--- /dev/null
+++ b/dist/fa/heartbeat.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heartbeat = void 0;
+var heartbeat = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1024h305q-5 6-10 10.5t-9 7.5l-3 4-623 600q-18 18-44 18t-44-18l-624-602q-5-2-21-20h369q22 0 39.5-13.5t22.5-34.5l70-281 190 667q6 20 23 33t39 13q21 0 38-13t23-33l146-485 56 112q18 35 57 35zM1792 596q0 145-103 300h-369l-111-221q-8-17-25.5-27t-36.5-8q-45 5-56 46l-129 430-196-686q-6-20-23.5-33t-39.5-13-39 13.5-22 34.5l-116 464h-423q-103-155-103-300 0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344z"
+ }
+ }]
+};
+exports.heartbeat = heartbeat;
\ No newline at end of file
diff --git a/dist/fa/history.js b/dist/fa/history.js
new file mode 100644
index 000000000..6347296e2
--- /dev/null
+++ b/dist/fa/history.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.history = void 0;
+var history = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298zM896 608v448q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-352q0-14 9-23t23-9h64q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.history = history;
\ No newline at end of file
diff --git a/dist/fa/home.js b/dist/fa/home.js
new file mode 100644
index 000000000..513cb32cf
--- /dev/null
+++ b/dist/fa/home.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.home = void 0;
+var home = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 992v480q0 26-19 45t-45 19h-384v-384h-256v384h-384q-26 0-45-19t-19-45v-480q0-1 0.5-3t0.5-3l575-474 575 474q1 2 1 6zM1631 923l-62 74q-8 9-21 11h-3q-13 0-21-7l-692-577-692 577q-12 8-24 7-13-2-21-11l-62-74q-8-10-7-23.5t11-21.5l719-599q32-26 76-26t76 26l244 204v-195q0-14 9-23t23-9h192q14 0 23 9t9 23v408l219 182q10 8 11 21.5t-7 23.5z"
+ }
+ }]
+};
+exports.home = home;
\ No newline at end of file
diff --git a/dist/fa/hospitalO.js b/dist/fa/hospitalO.js
new file mode 100644
index 000000000..95adf084c
--- /dev/null
+++ b/dist/fa/hospitalO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hospitalO = void 0;
+var hospitalO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1664h384v-1152h-256v32q0 40-28 68t-68 28h-448q-40 0-68-28t-28-68v-32h-256v1152h384v-224q0-13 9.5-22.5t22.5-9.5h320q13 0 22.5 9.5t9.5 22.5v224zM896 480v-320q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v96h-128v-96q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5v-96h128v96q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1408 448v1280q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1280q0-26 19-45t45-19h320v-288q0-40 28-68t68-28h448q40 0 68 28t28 68v288h320q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.hospitalO = hospitalO;
\ No newline at end of file
diff --git a/dist/fa/hotel.js b/dist/fa/hotel.js
new file mode 100644
index 000000000..b8a5571c5
--- /dev/null
+++ b/dist/fa/hotel.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hotel = void 0;
+var hotel = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1024h1728q26 0 45 19t19 45v448h-256v-256h-1536v256h-256v-1216q0-26 19-45t45-19h128q26 0 45 19t19 45v704zM832 704q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM2048 960v-64q0-159-112.5-271.5t-271.5-112.5h-704q-26 0-45 19t-19 45v384h1152z"
+ }
+ }]
+};
+exports.hotel = hotel;
\ No newline at end of file
diff --git a/dist/fa/hourglass.js b/dist/fa/hourglass.js
new file mode 100644
index 000000000..edb8a6d0c
--- /dev/null
+++ b/dist/fa/hourglass.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hourglass = void 0;
+var hourglass = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1504 1600q14 0 23 9t9 23v128q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h1472zM130 1536q3-55 16-107t30-95 46-87 53.5-76 64.5-69.5 66-60 70.5-55 66.5-47.5 65-43q-43-28-65-43t-66.5-47.5-70.5-55-66-60-64.5-69.5-53.5-76-46-87-30-95-16-107h1276q-3 55-16 107t-30 95-46 87-53.5 76-64.5 69.5-66 60-70.5 55-66.5 47.5-65 43q43 28 65 43t66.5 47.5 70.5 55 66 60 64.5 69.5 53.5 76 46 87 30 95 16 107h-1276zM1504 0q14 0 23 9t9 23v128q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h1472z"
+ }
+ }]
+};
+exports.hourglass = hourglass;
\ No newline at end of file
diff --git a/dist/fa/hourglass1.js b/dist/fa/hourglass1.js
new file mode 100644
index 000000000..bd69273fb
--- /dev/null
+++ b/dist/fa/hourglass1.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hourglass1 = void 0;
+var hourglass1 = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 66 9 128h1006q9-61 9-128zM1280 1664q0-130-34-249.5t-90.5-208-126.5-152-146-94.5h-230q-76 31-146 94.5t-126.5 152-90.5 208-34 249.5h1024z"
+ }
+ }]
+};
+exports.hourglass1 = hourglass1;
\ No newline at end of file
diff --git a/dist/fa/hourglass2.js b/dist/fa/hourglass2.js
new file mode 100644
index 000000000..8a6df7b74
--- /dev/null
+++ b/dist/fa/hourglass2.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hourglass2 = void 0;
+var hourglass2 = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 206 85 384h854q85-178 85-384zM1223 1344q-54-141-145.5-241.5t-194.5-142.5h-230q-103 42-194.5 142.5t-145.5 241.5h910z"
+ }
+ }]
+};
+exports.hourglass2 = hourglass2;
\ No newline at end of file
diff --git a/dist/fa/hourglass3.js b/dist/fa/hourglass3.js
new file mode 100644
index 000000000..d24d55d87
--- /dev/null
+++ b/dist/fa/hourglass3.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hourglass3 = void 0;
+var hourglass3 = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-137 51-244 196h700q-107-145-244-196-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z"
+ }
+ }]
+};
+exports.hourglass3 = hourglass3;
\ No newline at end of file
diff --git a/dist/fa/hourglassEnd.js b/dist/fa/hourglassEnd.js
new file mode 100644
index 000000000..52b1b4342
--- /dev/null
+++ b/dist/fa/hourglassEnd.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hourglassEnd = void 0;
+var hourglassEnd = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-137 51-244 196h700q-107-145-244-196-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z"
+ }
+ }]
+};
+exports.hourglassEnd = hourglassEnd;
\ No newline at end of file
diff --git a/dist/fa/hourglassHalf.js b/dist/fa/hourglassHalf.js
new file mode 100644
index 000000000..f189eedfd
--- /dev/null
+++ b/dist/fa/hourglassHalf.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hourglassHalf = void 0;
+var hourglassHalf = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 206 85 384h854q85-178 85-384zM1223 1344q-54-141-145.5-241.5t-194.5-142.5h-230q-103 42-194.5 142.5t-145.5 241.5h910z"
+ }
+ }]
+};
+exports.hourglassHalf = hourglassHalf;
\ No newline at end of file
diff --git a/dist/fa/hourglassO.js b/dist/fa/hourglassO.js
new file mode 100644
index 000000000..7dcf0582c
--- /dev/null
+++ b/dist/fa/hourglassO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hourglassO = void 0;
+var hourglassO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-77 29-149 92.5t-129.5 152.5-92.5 210-35 253h1024q0-132-35-253t-92.5-210-129.5-152.5-149-92.5q-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z"
+ }
+ }]
+};
+exports.hourglassO = hourglassO;
\ No newline at end of file
diff --git a/dist/fa/hourglassStart.js b/dist/fa/hourglassStart.js
new file mode 100644
index 000000000..28186ec6d
--- /dev/null
+++ b/dist/fa/hourglassStart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hourglassStart = void 0;
+var hourglassStart = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 66 9 128h1006q9-61 9-128zM1280 1664q0-130-34-249.5t-90.5-208-126.5-152-146-94.5h-230q-76 31-146 94.5t-126.5 152-90.5 208-34 249.5h1024z"
+ }
+ }]
+};
+exports.hourglassStart = hourglassStart;
\ No newline at end of file
diff --git a/dist/fa/houzz.js b/dist/fa/houzz.js
new file mode 100644
index 000000000..c652aae76
--- /dev/null
+++ b/dist/fa/houzz.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.houzz = void 0;
+var houzz = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1191l512-295v591l-512 296v-592zM0 896v591l512-296zM512 9v591l-512 296v-591zM512 600l512-295v591z"
+ }
+ }]
+};
+exports.houzz = houzz;
\ No newline at end of file
diff --git a/dist/fa/html5.js b/dist/fa/html5.js
new file mode 100644
index 000000000..b30f80d6c
--- /dev/null
+++ b/dist/fa/html5.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.html5 = void 0;
+var html5 = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1130 597l16-175h-884l47 534h612l-22 228-197 53-196-53-13-140h-175l22 278 362 100h4v-1l359-99 50-544h-644l-15-181h674zM0 128h1408l-128 1438-578 162-574-162z"
+ }
+ }]
+};
+exports.html5 = html5;
\ No newline at end of file
diff --git a/dist/fa/iCursor.js b/dist/fa/iCursor.js
new file mode 100644
index 000000000..827174c8e
--- /dev/null
+++ b/dist/fa/iCursor.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iCursor = void 0;
+var iCursor = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M832 128q-320 0-320 224v416h128v128h-128v544q0 224 320 224h64v128h-64q-272 0-384-146-112 146-384 146h-64v-128h64q320 0 320-224v-544h-128v-128h128v-416q0-224-320-224h-64v-128h64q272 0 384 146 112-146 384-146h64v128h-64z"
+ }
+ }]
+};
+exports.iCursor = iCursor;
\ No newline at end of file
diff --git a/dist/fa/idBadge.js b/dist/fa/idBadge.js
new file mode 100644
index 000000000..aa14573fd
--- /dev/null
+++ b/dist/fa/idBadge.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.idBadge = void 0;
+var idBadge = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1258q0 64-37 107t-91 43h-512q-54 0-91-43t-37-107 9-118 29.5-104 61-78.5 96.5-28.5q80 75 188 75t188-75q56 0 96.5 28.5t61 78.5 29.5 104 9 118zM870 739q0 94-67.5 160.5t-162.5 66.5-162.5-66.5-67.5-160.5 67.5-160.5 162.5-66.5 162.5 66.5 67.5 160.5zM1152 1632v-1376h-1024v1376q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1280 160v1472q0 66-47 113t-113 47h-960q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h352v96q0 14 9 23t23 9h192q14 0 23-9t9-23v-96h352q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.idBadge = idBadge;
\ No newline at end of file
diff --git a/dist/fa/idCard.js b/dist/fa/idCard.js
new file mode 100644
index 000000000..a4db3f879
--- /dev/null
+++ b/dist/fa/idCard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.idCard = void 0;
+var idCard = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1212q0-54-7.5-100.5t-24.5-90-51-68.5-81-25q-64 64-156 64t-156-64q-47 0-81 25t-51 68.5-24.5 90-7.5 100.5q0 55 31.5 93.5t75.5 38.5h426q44 0 75.5-38.5t31.5-93.5zM768 768q0-80-56-136t-136-56-136 56-56 136 56 136 136 56 136-56 56-136zM1792 1248v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1408 992v-64q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23-9t9-23zM1792 992v-64q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v64q0 14 9 23t23 9h192q14 0 23-9t9-23zM1792 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM128 384h1792v-96q0-14-9-23t-23-9h-1728q-14 0-23 9t-9 23v96zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.idCard = idCard;
\ No newline at end of file
diff --git a/dist/fa/idCardO.js b/dist/fa/idCardO.js
new file mode 100644
index 000000000..dae1c5071
--- /dev/null
+++ b/dist/fa/idCardO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.idCardO = void 0;
+var idCardO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1212q0 55-31.5 93.5t-75.5 38.5h-426q-44 0-75.5-38.5t-31.5-93.5q0-54 7.5-100.5t24.5-90 51-68.5 81-25q64 64 156 64t156-64q47 0 81 25t51 68.5 24.5 90 7.5 100.5zM768 768q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1184v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1408 928v64q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h320q14 0 23 9t9 23zM1792 928v64q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 672v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1920 1504v-1120h-1792v1120q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.idCardO = idCardO;
\ No newline at end of file
diff --git a/dist/fa/ils.js b/dist/fa/ils.js
new file mode 100644
index 000000000..11750188d
--- /dev/null
+++ b/dist/fa/ils.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ils = void 0;
+var ils = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.ils = ils;
\ No newline at end of file
diff --git a/dist/fa/image.js b/dist/fa/image.js
new file mode 100644
index 000000000..686bfea1f
--- /dev/null
+++ b/dist/fa/image.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.image = void 0;
+var image = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.image = image;
\ No newline at end of file
diff --git a/dist/fa/imdb.js b/dist/fa/imdb.js
new file mode 100644
index 000000000..028b8b1d2
--- /dev/null
+++ b/dist/fa/imdb.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.imdb = void 0;
+var imdb = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M922 797v182q0 4 0.5 15t0 15l-1.5 12t-3.5 11.5-6.5 7.5-11 5.5-16 1.5v-309q9 0 16 1t11 5 6.5 5.5 3.5 9.5 1 10.5v13.5 14zM1238 893v121q0 1 0.5 12.5t0 15.5-2.5 11.5-7.5 10.5-13.5 3q-9 0-14-9-4-10-4-165v-7-8.5-9t1.5-8.5l3.5-7t5-5.5 8-1.5q6 0 10 1.5t6.5 4.5 4 6 2 8.5 0.5 8v9.5 9zM180 1129h122v-472h-122v472zM614 1129h106v-472h-159l-28 221q-20-148-32-221h-158v472h107v-312l45 312h76l43-319v319zM1039 824q0-67-5-90-3-16-11-28.5t-17-20.5-25-14-26.5-8.5-31-4-29-1.5h-29.5-12-91v472h56q169 1 197-24.5t25-180.5q-1-62-1-100zM1356 1021v-133q0-29-2-45t-9.5-33.5-24.5-25-46-7.5q-46 0-77 34v-154h-117v472h110l7-30q30 36 77 36 50 0 66-30.5t16-83.5zM1536 288v1216q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1216q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.imdb = imdb;
\ No newline at end of file
diff --git a/dist/fa/inbox.js b/dist/fa/inbox.js
new file mode 100644
index 000000000..c8a09815a
--- /dev/null
+++ b/dist/fa/inbox.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inbox = void 0;
+var inbox = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1023 960h316q-1-3-2.5-8.5t-2.5-7.5l-212-496h-708l-212 496q-1 3-2.5 8.5t-2.5 7.5h316l95 192h320zM1536 990v482q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-482q0-62 25-123l238-552q10-25 36.5-42t52.5-17h832q26 0 52.5 17t36.5 42l238 552q25 61 25 123z"
+ }
+ }]
+};
+exports.inbox = inbox;
\ No newline at end of file
diff --git a/dist/fa/indent.js b/dist/fa/indent.js
new file mode 100644
index 000000000..6ff70aee7
--- /dev/null
+++ b/dist/fa/indent.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.indent = void 0;
+var indent = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352 832q0 14-9 23l-288 288q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-576q0-13 9.5-22.5t22.5-9.5q14 0 23 9l288 288q9 9 9 23zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.indent = indent;
\ No newline at end of file
diff --git a/dist/fa/index.js b/dist/fa/index.js
new file mode 100644
index 000000000..083822fb8
--- /dev/null
+++ b/dist/fa/index.js
@@ -0,0 +1,7873 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.building = exports.bug = exports.btc = exports.briefcase = exports.braille = exports.bookmarkO = exports.bookmark = exports.book = exports.bomb = exports.bolt = exports.bold = exports.bluetoothB = exports.bluetooth = exports.blind = exports.blackTie = exports.bitcoin = exports.bitbucketSquare = exports.bitbucket = exports.birthdayCake = exports.binoculars = exports.bicycle = exports.bellSlashO = exports.bellSlash = exports.bellO = exports.bell = exports.behanceSquare = exports.behance = exports.beer = exports.bed = exports.batteryThreeQuarters = exports.batteryQuarter = exports.batteryHalf = exports.batteryFull = exports.batteryEmpty = exports.battery4 = exports.battery3 = exports.battery2 = exports.battery1 = exports.battery0 = exports.battery = exports.bathtub = exports.bath = exports.bars = exports.barcode = exports.barChartO = exports.barChart = exports.bank = exports.bandcamp = exports.ban = exports.balanceScale = exports.backward = exports.automobile = exports.audioDescription = exports.at = exports.asterisk = exports.assistiveListeningSystems = exports.aslInterpreting = exports.arrowsV = exports.arrowsH = exports.arrowsAlt = exports.arrows = exports.arrowUp = exports.arrowRight = exports.arrowLeft = exports.arrowDown = exports.arrowCircleUp = exports.arrowCircleRight = exports.arrowCircleOUp = exports.arrowCircleORight = exports.arrowCircleOLeft = exports.arrowCircleODown = exports.arrowCircleLeft = exports.arrowCircleDown = exports.areaChart = exports.archive = exports.apple = exports.angleUp = exports.angleRight = exports.angleLeft = exports.angleDown = exports.angleDoubleUp = exports.angleDoubleRight = exports.angleDoubleLeft = exports.angleDoubleDown = exports.angellist = exports.android = exports.anchor = exports.americanSignLanguageInterpreting = exports.ambulance = exports.amazon = exports.alignRight = exports.alignLeft = exports.alignJustify = exports.alignCenter = exports.adn = exports.adjust = exports.addressCardO = exports.addressCard = exports.addressBookO = exports.addressBook = void 0;
+exports.deafness = exports.deaf = exports.database = exports.dashcube = exports.dashboard = exports.cutlery = exports.cut = exports.cubes = exports.cube = exports.css3 = exports.crosshairs = exports.crop = exports.creditCardAlt = exports.creditCard = exports.creativeCommons = exports.copyright = exports.copy = exports.contao = exports.connectdevelop = exports.compress = exports.compass = exports.commentsO = exports.comments = exports.commentingO = exports.commenting = exports.commentO = exports.comment = exports.columns = exports.cogs = exports.cog = exports.coffee = exports.codiepie = exports.codepen = exports.codeFork = exports.code = exports.cny = exports.cloudUpload = exports.cloudDownload = exports.cloud = exports.close = exports.clone = exports.clockO = exports.clipboard = exports.circleThin = exports.circleONotch = exports.circleO = exports.circle = exports.chrome = exports.child = exports.chevronUp = exports.chevronRight = exports.chevronLeft = exports.chevronDown = exports.chevronCircleUp = exports.chevronCircleRight = exports.chevronCircleLeft = exports.chevronCircleDown = exports.checkSquareO = exports.checkSquare = exports.checkCircleO = exports.checkCircle = exports.check = exports.chainBroken = exports.chain = exports.certificate = exports.ccVisa = exports.ccStripe = exports.ccPaypal = exports.ccMastercard = exports.ccJcb = exports.ccDiscover = exports.ccDinersClub = exports.ccAmex = exports.cc = exports.cartPlus = exports.cartArrowDown = exports.caretUp = exports.caretSquareOUp = exports.caretSquareORight = exports.caretSquareOLeft = exports.caretSquareODown = exports.caretRight = exports.caretLeft = exports.caretDown = exports.car = exports.cameraRetro = exports.camera = exports.calendarTimesO = exports.calendarPlusO = exports.calendarO = exports.calendarMinusO = exports.calendarCheckO = exports.calendar = exports.calculator = exports.cab = exports.buysellads = exports.bus = exports.bullseye = exports.bullhorn = exports.buildingO = void 0;
+exports.futbolO = exports.frownO = exports.freeCodeCamp = exports.foursquare = exports.forward = exports.forumbee = exports.fortAwesome = exports.fonticons = exports.fontAwesome = exports.font = exports.folderOpenO = exports.folderOpen = exports.folderO = exports.folder = exports.floppyO = exports.flickr = exports.flask = exports.flash = exports.flagO = exports.flagCheckered = exports.flag = exports.fiveHundredPX = exports.firstOrder = exports.firefox = exports.fireExtinguisher = exports.fire = exports.filter = exports.film = exports.filesO = exports.fileZipO = exports.fileWordO = exports.fileVideoO = exports.fileTextO = exports.fileText = exports.fileSoundO = exports.filePowerpointO = exports.filePictureO = exports.filePhotoO = exports.filePdfO = exports.fileO = exports.fileMovieO = exports.fileImageO = exports.fileExcelO = exports.fileCodeO = exports.fileAudioO = exports.fileArchiveO = exports.file = exports.fighterJet = exports.female = exports.feed = exports.fax = exports.fastForward = exports.fastBackward = exports.facebookSquare = exports.facebookOfficial = exports.facebookF = exports.facebook = exports.fa = exports.eyedropper = exports.eyeSlash = exports.eye = exports.externalLinkSquare = exports.externalLink = exports.expeditedssl = exports.expand = exports.exclamationTriangle = exports.exclamationCircle = exports.exclamation = exports.exchange = exports.euro = exports.eur = exports.etsy = exports.eraser = exports.envira = exports.envelopeSquare = exports.envelopeOpenO = exports.envelopeOpen = exports.envelopeO = exports.envelope = exports.empire = exports.ellipsisV = exports.ellipsisH = exports.eject = exports.eercast = exports.edit = exports.edge = exports.drupal = exports.dropbox = exports.driversLicenseO = exports.driversLicense = exports.dribbble = exports.download = exports.dotCircleO = exports.dollar = exports.digg = exports.diamond = exports.deviantart = exports.desktop = exports.delicious = exports.dedent = void 0;
+exports.leaf = exports.lastfmSquare = exports.lastfm = exports.laptop = exports.language = exports.krw = exports.keyboardO = exports.key = exports.jsfiddle = exports.jpy = exports.joomla = exports.italic = exports.ioxhost = exports.intersex = exports.internetExplorer = exports.institution = exports.instagram = exports.inr = exports.infoCircle = exports.info = exports.industry = exports.indent = exports.inbox = exports.imdb = exports.image = exports.ils = exports.idCardO = exports.idCard = exports.idBadge = exports.iCursor = exports.html5 = exports.houzz = exports.hourglassStart = exports.hourglassO = exports.hourglassHalf = exports.hourglassEnd = exports.hourglass3 = exports.hourglass2 = exports.hourglass1 = exports.hourglass = exports.hotel = exports.hospitalO = exports.home = exports.history = exports.heartbeat = exports.heartO = exports.heart = exports.headphones = exports.header = exports.hddO = exports.hashtag = exports.hardOfHearing = exports.handshakeO = exports.handStopO = exports.handSpockO = exports.handScissorsO = exports.handRockO = exports.handPointerO = exports.handPeaceO = exports.handPaperO = exports.handOUp = exports.handORight = exports.handOLeft = exports.handODown = exports.handLizardO = exports.handGrabO = exports.hackerNews = exports.hSquare = exports.group = exports.grav = exports.gratipay = exports.graduationCap = exports.googleWallet = exports.googlePlusSquare = exports.googlePlusOfficial = exports.googlePlusCircle = exports.googlePlus = exports.google = exports.globe = exports.glideG = exports.glide = exports.glass = exports.gittip = exports.gitlab = exports.githubSquare = exports.githubAlt = exports.github = exports.gitSquare = exports.git = exports.gift = exports.ggCircle = exports.gg = exports.getPocket = exports.genderless = exports.gears = exports.gear = exports.ge = exports.gbp = exports.gavel = exports.gamepad = void 0;
+exports.pieChart = exports.pictureO = exports.photo = exports.phoneSquare = exports.phone = exports.percent = exports.pencilSquareO = exports.pencilSquare = exports.pencil = exports.paypal = exports.paw = exports.pauseCircleO = exports.pauseCircle = exports.pause = exports.paste = exports.paragraph = exports.paperclip = exports.paperPlaneO = exports.paperPlane = exports.paintBrush = exports.pagelines = exports.outdent = exports.optinMonster = exports.opera = exports.openid = exports.opencart = exports.odnoklassnikiSquare = exports.odnoklassniki = exports.objectUngroup = exports.objectGroup = exports.newspaperO = exports.neuter = exports.navicon = exports.music = exports.mousePointer = exports.motorcycle = exports.mortarBoard = exports.moonO = exports.money = exports.modx = exports.mobilePhone = exports.mobile = exports.mixcloud = exports.minusSquareO = exports.minusSquare = exports.minusCircle = exports.minus = exports.microphoneSlash = exports.microphone = exports.microchip = exports.mercury = exports.mehO = exports.meetup = exports.medkit = exports.medium = exports.meanpath = exports.maxcdn = exports.marsStrokeV = exports.marsStrokeH = exports.marsStroke = exports.marsDouble = exports.mars = exports.mapSigns = exports.mapPin = exports.mapO = exports.mapMarker = exports.map = exports.male = exports.mailReplyAll = exports.mailReply = exports.mailForward = exports.magnet = exports.magic = exports.lowVision = exports.longArrowUp = exports.longArrowRight = exports.longArrowLeft = exports.longArrowDown = exports.lock = exports.locationArrow = exports.listUl = exports.listOl = exports.listAlt = exports.list = exports.linux = exports.linode = exports.linkedinSquare = exports.linkedin = exports.link = exports.lineChart = exports.lightbulbO = exports.lifeSaver = exports.lifeRing = exports.lifeBuoy = exports.lifeBouy = exports.levelUp = exports.levelDown = exports.lemonO = exports.legal = exports.leanpub = void 0;
+exports.snowflakeO = exports.snapchatSquare = exports.snapchatGhost = exports.snapchat = exports.smileO = exports.slideshare = exports.sliders = exports.slack = exports.skype = exports.skyatlas = exports.sitemap = exports.simplybuilt = exports.signing = exports.signal = exports.signOut = exports.signLanguage = exports.signIn = exports.shower = exports.shoppingCart = exports.shoppingBasket = exports.shoppingBag = exports.shirtsinbulk = exports.ship = exports.shield = exports.sheqel = exports.shekel = exports.shareSquareO = exports.shareSquare = exports.shareAltSquare = exports.shareAlt = exports.share = exports.server = exports.sendO = exports.send = exports.sellsy = exports.searchPlus = exports.searchMinus = exports.search = exports.scribd = exports.scissors = exports.save = exports.safari = exports.s15 = exports.rupee = exports.ruble = exports.rub = exports.rssSquare = exports.rss = exports.rouble = exports.rotateRight = exports.rotateLeft = exports.rocket = exports.road = exports.rmb = exports.retweet = exports.resistance = exports.replyAll = exports.reply = exports.repeat = exports.reorder = exports.renren = exports.remove = exports.registered = exports.refresh = exports.redditSquare = exports.redditAlien = exports.reddit = exports.recycle = exports.rebel = exports.ravelry = exports.random = exports.ra = exports.quoteRight = exports.quoteLeft = exports.quora = exports.questionCircleO = exports.questionCircle = exports.question = exports.qrcode = exports.qq = exports.puzzlePiece = exports.productHunt = exports.print = exports.powerOff = exports.podcast = exports.plusSquareO = exports.plusSquare = exports.plusCircle = exports.plus = exports.plug = exports.playCircleO = exports.playCircle = exports.play = exports.plane = exports.pinterestSquare = exports.pinterestP = exports.pinterest = exports.piedPiperPp = exports.piedPiperAlt = exports.piedPiper = void 0;
+exports.trashO = exports.trash = exports.transgenderAlt = exports.transgender = exports.train = exports.trademark = exports.toggleUp = exports.toggleRight = exports.toggleOn = exports.toggleOff = exports.toggleLeft = exports.toggleDown = exports.tint = exports.timesRectangleO = exports.timesRectangle = exports.timesCircleO = exports.timesCircle = exports.times = exports.ticket = exports.thumbsUp = exports.thumbsOUp = exports.thumbsODown = exports.thumbsDown = exports.thumbTack = exports.thermometerThreeQuarters = exports.thermometerQuarter = exports.thermometerHalf = exports.thermometerFull = exports.thermometerEmpty = exports.thermometer4 = exports.thermometer3 = exports.thermometer2 = exports.thermometer1 = exports.thermometer0 = exports.thermometer = exports.themeisle = exports.thList = exports.thLarge = exports.th = exports.textWidth = exports.textHeight = exports.terminal = exports.tencentWeibo = exports.television = exports.telegram = exports.taxi = exports.tasks = exports.tags = exports.tag = exports.tachometer = exports.tablet = exports.table = exports.support = exports.superscript = exports.superpowers = exports.sunO = exports.suitcase = exports.subway = exports.subscript = exports.stumbleuponCircle = exports.stumbleupon = exports.strikethrough = exports.streetView = exports.stopCircleO = exports.stopCircle = exports.stop = exports.stickyNoteO = exports.stickyNote = exports.stethoscope = exports.stepForward = exports.stepBackward = exports.steamSquare = exports.steam = exports.starO = exports.starHalfO = exports.starHalfFull = exports.starHalfEmpty = exports.starHalf = exports.star = exports.stackOverflow = exports.stackExchange = exports.squareO = exports.square = exports.spotify = exports.spoon = exports.spinner = exports.spaceShuttle = exports.soundcloud = exports.sortUp = exports.sortNumericDesc = exports.sortNumericAsc = exports.sortDown = exports.sortDesc = exports.sortAsc = exports.sortAmountDesc = exports.sortAmountAsc = exports.sortAlphaDesc = exports.sortAlphaAsc = exports.sort = exports.soccerBallO = void 0;
+exports.youtubeSquare = exports.youtubePlay = exports.youtube = exports.yoast = exports.yen = exports.yelp = exports.ycSquare = exports.yc = exports.yahoo = exports.yCombinatorSquare = exports.yCombinator = exports.xingSquare = exports.xing = exports.wrench = exports.wpforms = exports.wpexplorer = exports.wpbeginner = exports.wordpress = exports.won = exports.windows = exports.windowRestore = exports.windowMinimize = exports.windowMaximize = exports.windowCloseO = exports.windowClose = exports.wikipediaW = exports.wifi = exports.wheelchairAlt = exports.wheelchair = exports.whatsapp = exports.weixin = exports.weibo = exports.wechat = exports.warning = exports.volumeUp = exports.volumeOff = exports.volumeDown = exports.volumeControlPhone = exports.vk = exports.vine = exports.vimeoSquare = exports.vimeo = exports.videoCamera = exports.viadeoSquare = exports.viadeo = exports.viacoin = exports.venusMars = exports.venusDouble = exports.venus = exports.vcardO = exports.vcard = exports.users = exports.userTimes = exports.userSecret = exports.userPlus = exports.userO = exports.userMd = exports.userCircleO = exports.userCircle = exports.user = exports.usd = exports.usb = exports.upload = exports.unsorted = exports.unlockAlt = exports.unlock = exports.unlink = exports.university = exports.universalAccess = exports.undo = exports.underline = exports.umbrella = exports.twitterSquare = exports.twitter = exports.twitch = exports.tv = exports.turkishLira = exports.tumblrSquare = exports.tumblr = exports.tty = exports.tryIcon = exports.truck = exports.trophy = exports.tripadvisor = exports.trello = exports.tree = void 0;
+var glass = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1699 186q0 35-43 78l-632 632v768h320q26 0 45 19t19 45-19 45-45 19h-896q-26 0-45-19t-19-45 19-45 45-19h320v-768l-632-632q-43-43-43-78 0-23 18-36.5t38-17.5 43-4h1408q23 0 43 4t38 17.5 18 36.5z"
+ }
+ }]
+};
+exports.glass = glass;
+var music = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 224v1120q0 50-34 89t-86 60.5-103.5 32-96.5 10.5-96.5-10.5-103.5-32-86-60.5-34-89 34-89 86-60.5 103.5-32 96.5-10.5q105 0 192 39v-537l-768 237v709q0 50-34 89t-86 60.5-103.5 32-96.5 10.5-96.5-10.5-103.5-32-86-60.5-34-89 34-89 86-60.5 103.5-32 96.5-10.5q105 0 192 39v-967q0-31 19-56.5t49-35.5l832-256q12-4 28-4 40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.music = music;
+var search = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 52-38 90t-90 38q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z"
+ }
+ }]
+};
+exports.search = search;
+var envelopeO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1504v-768q-32 36-69 66-268 206-426 338-51 43-83 67t-86.5 48.5-102.5 24.5h-1-1q-48 0-102.5-24.5t-86.5-48.5-83-67q-158-132-426-338-37-30-69-66v768q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1664 453v-11-13.5t-0.5-13-3-12.5-5.5-9-9-7.5-14-2.5h-1472q-13 0-22.5 9.5t-9.5 22.5q0 168 147 284 193 152 401 317 6 5 35 29.5t46 37.5 44.5 31.5 50.5 27.5 43 9h1 1q20 0 43-9t50.5-27.5 44.5-31.5 46-37.5 35-29.5q208-165 401-317 54-43 100.5-115.5t46.5-131.5zM1792 416v1088q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.envelopeO = envelopeO;
+var heart = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1664q-26 0-44-18l-624-602q-10-8-27.5-26t-55.5-65.5-68-97.5-53.5-121-23.5-138q0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344q0 221-229 450l-623 600q-18 18-44 18z"
+ }
+ }]
+};
+exports.heart = heart;
+var star = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z"
+ }
+ }]
+};
+exports.star = star;
+var starO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1137 1004l306-297-422-62-189-382-189 382-422 62 306 297-73 421 378-199 377 199zM1664 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 50-41 50-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z"
+ }
+ }]
+};
+exports.starO = starO;
+var user = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1399q0 109-62.5 187t-150.5 78h-854q-88 0-150.5-78t-62.5-187q0-85 8.5-160.5t31.5-152 58.5-131 94-89 134.5-34.5q131 128 313 128t313-128q76 0 134.5 34.5t94 89 58.5 131 31.5 152 8.5 160.5zM1024 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z"
+ }
+ }]
+};
+exports.user = user;
+var film = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1600v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM384 1216v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM384 832v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1408 1600v-512q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v512q0 26 19 45t45 19h768q26 0 45-19t19-45zM384 448v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 1600v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1408 832v-512q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v512q0 26 19 45t45 19h768q26 0 45-19t19-45zM1792 1216v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 832v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1792 448v-128q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v128q0 26 19 45t45 19h128q26 0 45-19t19-45zM1920 288v1344q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1344q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.film = film;
+var thLarge = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 1024v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM768 256v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM1664 1024v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM1664 256v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.thLarge = thLarge;
+var th = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.th = th;
+var thList = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 1248v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zM512 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 736v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zM1792 224v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.thList = thList;
+var check = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z"
+ }
+ }]
+};
+exports.check = check;
+var close = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z"
+ }
+ }]
+};
+exports.close = close;
+var remove = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z"
+ }
+ }]
+};
+exports.remove = remove;
+var times = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z"
+ }
+ }]
+};
+exports.times = times;
+var searchPlus = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 800v64q0 13-9.5 22.5t-22.5 9.5h-224v224q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-224h-224q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h224v-224q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5v224h224q13 0 22.5 9.5t9.5 22.5zM1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 53-37.5 90.5t-90.5 37.5q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z"
+ }
+ }]
+};
+exports.searchPlus = searchPlus;
+var searchMinus = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 800v64q0 13-9.5 22.5t-22.5 9.5h-576q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h576q13 0 22.5 9.5t9.5 22.5zM1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 53-37.5 90.5t-90.5 37.5q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z"
+ }
+ }]
+};
+exports.searchMinus = searchMinus;
+var powerOff = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61-298-61-245-164-164-245-61-298q0-182 80.5-343t226.5-270q43-32 95.5-25t83.5 50q32 42 24.5 94.5t-49.5 84.5q-98 74-151.5 181t-53.5 228q0 104 40.5 198.5t109.5 163.5 163.5 109.5 198.5 40.5 198.5-40.5 163.5-109.5 109.5-163.5 40.5-198.5q0-121-53.5-228t-151.5-181q-42-32-49.5-84.5t24.5-94.5q31-43 84-50t95 25q146 109 226.5 270t80.5 343zM896 128v640q0 52-38 90t-90 38-90-38-38-90v-640q0-52 38-90t90-38 90 38 38 90z"
+ }
+ }]
+};
+exports.powerOff = powerOff;
+var signal = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1440v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM640 1312v320q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-320q0-14 9-23t23-9h192q14 0 23 9t9 23zM1024 1056v576q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23zM1408 672v960q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 160v1472q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-1472q0-14 9-23t23-9h192q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.signal = signal;
+var cog = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1536 787v222q0 12-8 23t-20 13l-185 28q-19 54-39 91 35 50 107 138 10 12 10 25t-9 23q-27 37-99 108t-94 71q-12 0-26-9l-138-108q-44 23-91 38-16 136-29 186-7 28-36 28h-222q-14 0-24.5-8.5t-11.5-21.5l-28-184q-49-16-90-37l-141 107q-10 9-25 9-14 0-25-11-126-114-165-168-7-10-7-23 0-12 8-23 15-21 51-66.5t54-70.5q-27-50-41-99l-183-27q-13-2-21-12.5t-8-23.5v-222q0-12 8-23t19-13l186-28q14-46 39-92-40-57-107-138-10-12-10-24 0-10 9-23 26-36 98.5-107.5t94.5-71.5q13 0 26 10l138 107q44-23 91-38 16-136 29-186 7-28 36-28h222q14 0 24.5 8.5t11.5 21.5l28 184q49 16 90 37l142-107q9-9 24-9 13 0 25 10 129 119 165 170 7 8 7 22 0 12-8 23-15 21-51 66.5t-54 70.5q26 50 41 98l183 28q13 2 21 12.5t8 23.5z"
+ }
+ }]
+};
+exports.cog = cog;
+var gear = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1536 787v222q0 12-8 23t-20 13l-185 28q-19 54-39 91 35 50 107 138 10 12 10 25t-9 23q-27 37-99 108t-94 71q-12 0-26-9l-138-108q-44 23-91 38-16 136-29 186-7 28-36 28h-222q-14 0-24.5-8.5t-11.5-21.5l-28-184q-49-16-90-37l-141 107q-10 9-25 9-14 0-25-11-126-114-165-168-7-10-7-23 0-12 8-23 15-21 51-66.5t54-70.5q-27-50-41-99l-183-27q-13-2-21-12.5t-8-23.5v-222q0-12 8-23t19-13l186-28q14-46 39-92-40-57-107-138-10-12-10-24 0-10 9-23 26-36 98.5-107.5t94.5-71.5q13 0 26 10l138 107q44-23 91-38 16-136 29-186 7-28 36-28h222q14 0 24.5 8.5t11.5 21.5l28 184q49 16 90 37l142-107q9-9 24-9 13 0 25 10 129 119 165 170 7 8 7 22 0 12-8 23-15 21-51 66.5t-54 70.5q26 50 41 98l183 28q13 2 21 12.5t8 23.5z"
+ }
+ }]
+};
+exports.gear = gear;
+var trashO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM768 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM1024 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM1152 1460v-948h-896v948q0 22 7 40.5t14.5 27 10.5 8.5h832q3 0 10.5-8.5t14.5-27 7-40.5zM480 384h448l-48-117q-7-9-17-11h-317q-10 2-17 11zM1408 416v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.trashO = trashO;
+var home = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 992v480q0 26-19 45t-45 19h-384v-384h-256v384h-384q-26 0-45-19t-19-45v-480q0-1 0.5-3t0.5-3l575-474 575 474q1 2 1 6zM1631 923l-62 74q-8 9-21 11h-3q-13 0-21-7l-692-577-692 577q-12 8-24 7-13-2-21-11l-62-74q-8-10-7-23.5t11-21.5l719-599q32-26 76-26t76 26l244 204v-195q0-14 9-23t23-9h192q14 0 23 9t9 23v408l219 182q10 8 11 21.5t-7 23.5z"
+ }
+ }]
+};
+exports.home = home;
+var fileO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280z"
+ }
+ }]
+};
+exports.fileO = fileO;
+var clockO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 544v448q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-352q0-14 9-23t23-9h64q14 0 23 9t9 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.clockO = clockO;
+var road = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1111 996v-4l-24-320q-1-13-11-22.5t-23-9.5h-186q-13 0-23 9.5t-11 22.5l-24 320v4q-1 12 8 20t21 8h244q12 0 21-8t8-20zM1870 1463q0 73-46 73h-704q13 0 22-9.5t8-22.5l-20-256q-1-13-11-22.5t-23-9.5h-272q-13 0-23 9.5t-11 22.5l-20 256q-1 13 8 22.5t22 9.5h-704q-46 0-46-73 0-54 26-116l417-1044q8-19 26-33t38-14h339q-13 0-23 9.5t-11 22.5l-15 192q-1 14 8 23t22 9h166q13 0 22-9t8-23l-15-192q-1-13-11-22.5t-23-9.5h339q20 0 38 14t26 33l417 1044q26 62 26 116z"
+ }
+ }]
+};
+exports.road = road;
+var download = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 1120v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h465l135 136q58 56 136 56t136-56l136-136h464q40 0 68 28t28 68zM1339 551q17 41-14 70l-448 448q-18 19-45 19t-45-19l-448-448q-31-29-14-70 17-39 59-39h256v-448q0-26 19-45t45-19h256q26 0 45 19t19 45v448h256q42 0 59 39z"
+ }
+ }]
+};
+exports.download = download;
+var arrowCircleODown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1120 928q0 12-10 24l-319 319q-11 9-23 9t-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-352q0-14 9-23t23-9h192q14 0 23 9t9 23v352h192q14 0 23 9t9 23zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleODown = arrowCircleODown;
+var arrowCircleOUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1118 876q-8 20-30 20h-192v352q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-352h-192q-14 0-23-9t-9-23q0-12 10-24l319-319q11-9 23-9t23 9l320 320q15 16 7 35zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleOUp = arrowCircleOUp;
+var inbox = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1023 960h316q-1-3-2.5-8.5t-2.5-7.5l-212-496h-708l-212 496q-1 3-2.5 8.5t-2.5 7.5h316l95 192h320zM1536 990v482q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-482q0-62 25-123l238-552q10-25 36.5-42t52.5-17h832q26 0 52.5 17t36.5 42l238 552q25 61 25 123z"
+ }
+ }]
+};
+exports.inbox = inbox;
+var playCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1184 896q0 37-32 55l-544 320q-15 9-32 9-16 0-32-8-32-19-32-56v-640q0-37 32-56 33-18 64 1l544 320q32 18 32 55zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.playCircleO = playCircleO;
+var repeat = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 15 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z"
+ }
+ }]
+};
+exports.repeat = repeat;
+var rotateRight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 15 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z"
+ }
+ }]
+};
+exports.rotateRight = rotateRight;
+var refresh = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1511 1056q0 5-1 7-64 268-268 434.5t-478 166.5q-146 0-282.5-55t-243.5-157l-129 129q-19 19-45 19t-45-19-19-45v-448q0-26 19-45t45-19h448q26 0 45 19t19 45-19 45l-137 137q71 66 161 102t187 36q134 0 250-65t186-179q11-17 53-117 8-23 30-23h192q13 0 22.5 9.5t9.5 22.5zM1536 256v448q0 26-19 45t-45 19h-448q-26 0-45-19t-19-45 19-45l138-138q-148-137-349-137-134 0-250 65t-186 179q-11 17-53 117-8 23-30 23h-199q-13 0-22.5-9.5t-9.5-22.5v-7q65-268 270-434.5t480-166.5q146 0 284 55.5t245 156.5l130-129q19-19 45-19t45 19 19 45z"
+ }
+ }]
+};
+exports.refresh = refresh;
+var listAlt = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1184v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 928v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 672v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1536 1184v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 928v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 672v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1664 1376v-832q0-13-9.5-22.5t-22.5-9.5h-1472q-13 0-22.5 9.5t-9.5 22.5v832q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1792 288v1088q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.listAlt = listAlt;
+var lock = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320 768h512v-192q0-106-75-181t-181-75-181 75-75 181v192zM1152 864v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-192q0-184 132-316t316-132 316 132 132 316v192h32q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.lock = lock;
+var flag = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320 256q0 72-64 110v1266q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-1266q-64-38-64-110 0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 25-12.5 38.5t-39.5 27.5q-215 116-369 116-61 0-123.5-22t-108.5-48-115.5-48-142.5-22q-192 0-464 146-17 9-33 9-26 0-45-19t-19-45v-742q0-32 31-55 21-14 79-43 236-120 421-120 107 0 200 29t219 88q38 19 88 19 54 0 117.5-21t110-47 88-47 54.5-21q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.flag = flag;
+var headphones = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 886q0 166-60 314l-20 49-185 33q-22 83-90.5 136.5t-156.5 53.5v32q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23v32q71 0 130 35.5t93 95.5l68-12q29-95 29-193 0-148-88-279t-236.5-209-315.5-78-315.5 78-236.5 209-88 279q0 98 29 193l68 12q34-60 93-95.5t130-35.5v-32q0-14 9-23t23-9h64q14 0 23 9t9 23v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-32q-88 0-156.5-53.5t-90.5-136.5l-185-33-20-49q-60-148-60-314 0-151 67-291t179-242.5 266-163.5 320-61 320 61 266 163.5 179 242.5 67 291z"
+ }
+ }]
+};
+exports.headphones = headphones;
+var volumeOff = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45z"
+ }
+ }]
+};
+exports.volumeOff = volumeOff;
+var volumeDown = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45zM1152 896q0 76-42.5 141.5t-112.5 93.5q-10 5-25 5-26 0-45-18.5t-19-45.5q0-21 12-35.5t29-25 34-23 29-36 12-56.5-12-56.5-29-36-34-23-29-25-12-35.5q0-27 19-45.5t45-18.5q15 0 25 5 70 27 112.5 93t42.5 142z"
+ }
+ }]
+};
+exports.volumeDown = volumeDown;
+var volumeUp = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45zM1152 896q0 76-42.5 141.5t-112.5 93.5q-10 5-25 5-26 0-45-18.5t-19-45.5q0-21 12-35.5t29-25 34-23 29-36 12-56.5-12-56.5-29-36-34-23-29-25-12-35.5q0-27 19-45.5t45-18.5q15 0 25 5 70 27 112.5 93t42.5 142zM1408 896q0 153-85 282.5t-225 188.5q-13 5-25 5-27 0-46-19t-19-45q0-39 39-59 56-29 76-44 74-54 115.5-135.5t41.5-173.5-41.5-173.5-115.5-135.5q-20-15-76-44-39-20-39-59 0-26 19-45t45-19q13 0 26 5 140 59 225 188.5t85 282.5zM1664 896q0 230-127 422.5t-338 283.5q-13 5-26 5-26 0-45-19t-19-45q0-36 39-59 7-4 22.5-10.5t22.5-10.5q46-25 82-51 123-91 192-227t69-289-69-289-192-227q-36-26-82-51-7-4-22.5-10.5t-22.5-10.5q-39-23-39-59 0-26 19-45t45-19q13 0 26 5 211 91 338 283.5t127 422.5z"
+ }
+ }]
+};
+exports.volumeUp = volumeUp;
+var qrcode = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1152v128h-128v-128h128zM384 384v128h-128v-128h128zM1152 384v128h-128v-128h128zM128 1407h384v-383h-384v383zM128 640h384v-384h-384v384zM896 640h384v-384h-384v384zM640 896v640h-640v-640h640zM1152 1408v128h-128v-128h128zM1408 1408v128h-128v-128h128zM1408 896v384h-384v-128h-128v384h-128v-640h384v128h128v-128h128zM640 128v640h-640v-640h640zM1408 128v640h-640v-640h640z"
+ }
+ }]
+};
+exports.qrcode = qrcode;
+var barcode = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63 1536h-63v-1408h63v1408zM126 1535h-32v-1407h32v1407zM220 1535h-31v-1407h31v1407zM377 1535h-31v-1407h31v1407zM534 1535h-62v-1407h62v1407zM660 1535h-31v-1407h31v1407zM723 1535h-31v-1407h31v1407zM786 1535h-31v-1407h31v1407zM943 1535h-63v-1407h63v1407zM1100 1535h-63v-1407h63v1407zM1226 1535h-63v-1407h63v1407zM1352 1535h-63v-1407h63v1407zM1446 1535h-63v-1407h63v1407zM1635 1535h-94v-1407h94v1407zM1698 1535h-32v-1407h32v1407zM1792 1536h-63v-1408h63v1408z"
+ }
+ }]
+};
+exports.barcode = barcode;
+var tag = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448 448q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1515 1024q0 53-37 90l-491 492q-39 37-91 37-53 0-90-37l-715-716q-38-37-64.5-101t-26.5-117v-416q0-52 38-90t90-38h416q53 0 117 26.5t102 64.5l715 714q37 39 37 91z"
+ }
+ }]
+};
+exports.tag = tag;
+var tags = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448 448q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1515 1024q0 53-37 90l-491 492q-39 37-91 37-53 0-90-37l-715-716q-38-37-64.5-101t-26.5-117v-416q0-52 38-90t90-38h416q53 0 117 26.5t102 64.5l715 714q37 39 37 91zM1899 1024q0 53-37 90l-491 492q-39 37-91 37-36 0-59-14t-53-45l470-470q37-37 37-90 0-52-37-91l-715-714q-38-38-102-64.5t-117-26.5h224q53 0 117 26.5t102 64.5l715 714q37 39 37 91z"
+ }
+ }]
+};
+exports.tags = tags;
+var book = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1639 478q40 57 18 129l-275 906q-19 64-76.5 107.5t-122.5 43.5h-923q-77 0-148.5-53.5t-99.5-131.5q-24-67-2-127 0-4 3-27t4-37q1-8-3-21.5t-3-19.5q2-11 8-21t16.5-23.5 16.5-23.5q23-38 45-91.5t30-91.5q3-10 0.5-30t-0.5-28q3-11 17-28t17-23q21-36 42-92t25-90q1-9-2.5-32t0.5-28q4-13 22-30.5t22-22.5q19-26 42.5-84.5t27.5-96.5q1-8-3-25.5t-2-26.5q2-8 9-18t18-23 17-21q8-12 16.5-30.5t15-35 16-36 19.5-32 26.5-23.5 36-11.5 47.5 5.5l-1 3q38-9 51-9h761q74 0 114 56t18 130l-274 906q-36 119-71.5 153.5t-128.5 34.5h-869q-27 0-38 15-11 16-1 43 24 70 144 70h923q29 0 56-15.5t35-41.5l300-987q7-22 5-57 38 15 59 43zM575 480q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5zM492 736q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5z"
+ }
+ }]
+};
+exports.book = book;
+var bookmark = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1164 128q23 0 44 9 33 13 52.5 41t19.5 62v1289q0 34-19.5 62t-52.5 41q-19 8-44 8-48 0-83-32l-441-424-441 424q-36 33-83 33-23 0-44-9-33-13-52.5-41t-19.5-62v-1289q0-34 19.5-62t52.5-41q21-9 44-9h1048z"
+ }
+ }]
+};
+exports.bookmark = bookmark;
+var print = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1536h896v-256h-896v256zM384 896h896v-384h-160q-40 0-68-28t-28-68v-160h-640v640zM1536 960q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 960v416q0 13-9.5 22.5t-22.5 9.5h-224v160q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-224q-13 0-22.5-9.5t-9.5-22.5v-416q0-79 56.5-135.5t135.5-56.5h64v-544q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v256h64q79 0 135.5 56.5t56.5 135.5z"
+ }
+ }]
+};
+exports.print = print;
+var camera = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 672q119 0 203.5 84.5t84.5 203.5-84.5 203.5-203.5 84.5-203.5-84.5-84.5-203.5 84.5-203.5 203.5-84.5zM1664 256q106 0 181 75t75 181v896q0 106-75 181t-181 75h-1408q-106 0-181-75t-75-181v-896q0-106 75-181t181-75h224l51-136q19-49 69.5-84.5t103.5-35.5h512q53 0 103.5 35.5t69.5 84.5l51 136h224zM960 1408q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.camera = camera;
+var font = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M725 559l-170 450q33 0 136.5 2t160.5 2q19 0 57-2-87-253-184-452zM0 1664l2-79q23-7 56-12.5t57-10.5 49.5-14.5 44.5-29 31-50.5l237-616 280-724h75 53q8 14 11 21l205 480q33 78 106 257.5t114 274.5q15 34 58 144.5t72 168.5q20 45 35 57 19 15 88 29.5t84 20.5q6 38 6 57 0 5-0.5 13.5t-0.5 12.5q-63 0-190-8t-191-8q-76 0-215 7t-178 8q0-43 4-78l131-28q1 0 12.5-2.5t15.5-3.5 14.5-4.5 15-6.5 11-8 9-11 2.5-14q0-16-31-96.5t-72-177.5-42-100l-450-2q-26 58-76.5 195.5t-50.5 162.5q0 22 14 37.5t43.5 24.5 48.5 13.5 57 8.5 41 4q1 19 1 58 0 9-2 27-58 0-174.5-10t-174.5-10q-8 0-26.5 4t-21.5 4q-80 14-188 14z"
+ }
+ }]
+};
+exports.font = font;
+var bold = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M555 1521q74 32 140 32 376 0 376-335 0-114-41-180-27-44-61.5-74t-67.5-46.5-80.5-25-84-10.5-94.5-2q-73 0-101 10 0 53-0.5 159t-0.5 158q0 8-1 67.5t-0.5 96.5 4.5 83.5 12 66.5zM541 775q42 7 109 7 82 0 143-13t110-44.5 74.5-89.5 25.5-142q0-70-29-122.5t-79-82-108-43.5-124-14q-50 0-130 13 0 50 4 151t4 152q0 27-0.5 80t-0.5 79q0 46 1 69zM0 1664l2-94q15-4 85-16t106-27q7-12 12.5-27t8.5-33.5 5.5-32.5 3-37.5 0.5-34v-35.5-30q0-982-22-1025-4-8-22-14.5t-44.5-11-49.5-7-48.5-4.5-30.5-3l-4-83q98-2 340-11.5t373-9.5q23 0 68 0.5t68 0.5q70 0 136.5 13t128.5 42 108 71 74 104.5 28 137.5q0 52-16.5 95.5t-39 72-64.5 57.5-73 45-84 40q154 35 256.5 134t102.5 248q0 100-35 179.5t-93.5 130.5-138 85.5-163.5 48.5-176 14q-44 0-132-3t-132-3q-106 0-307 11t-231 12z"
+ }
+ }]
+};
+exports.bold = bold;
+var italic = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 1662l17-85q22-7 61.5-16.5t72-19 59.5-23.5q28-35 41-101 1-7 62-289t114-543.5 52-296.5v-25q-24-13-54.5-18.5t-69.5-8-58-5.5l19-103q33 2 120 6.5t149.5 7 120.5 2.5q48 0 98.5-2.5t121-7 98.5-6.5q-5 39-19 89-30 10-101.5 28.5t-108.5 33.5q-8 19-14 42.5t-9 40-7.5 45.5-6.5 42q-27 148-87.5 419.5t-77.5 355.5q-2 9-13 58t-20 90-16 83.5-6 57.5l1 18q17 4 185 31-3 44-16 99-11 0-32.5 1.5t-32.5 1.5q-29 0-87-10t-86-10q-138-2-206-2-51 0-143 9t-121 11z"
+ }
+ }]
+};
+exports.italic = italic;
+var textHeight = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1744 1408q33 0 42 18.5t-11 44.5l-126 162q-20 26-49 26t-49-26l-126-162q-20-26-11-44.5t42-18.5h80v-1024h-80q-33 0-42-18.5t11-44.5l126-162q20-26 49-26t49 26l126 162q20 26 11 44.5t-42 18.5h-80v1024h80zM81 129l54 27q12 5 211 5 44 0 132-2t132-2q36 0 107.5 0.5t107.5 0.5h293q6 0 21 0.5t20.5 0 16-3 17.5-9 15-17.5l42-1q4 0 14 0.5t14 0.5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-48t-14.5-73.5-7.5-35.5q-6-8-12-12.5t-15.5-6-13-2.5-18-0.5-16.5 0.5q-17 0-66.5-0.5t-74.5-0.5-64 2-71 6q-9 81-8 136 0 94 2 388t2 455q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q19-42 19-383 0-101-3-303t-3-303v-117q0-2 0.5-15.5t0.5-25-1-25.5-3-24-5-14q-11-12-162-12-33 0-93 12t-80 26q-19 13-34 72.5t-31.5 111-42.5 53.5q-42-26-56-44v-383z"
+ }
+ }]
+};
+exports.textHeight = textHeight;
+var textWidth = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M81 129l54 27q12 5 211 5 44 0 132-2t132-2q70 0 246.5-1t304.5-0.5 247 4.5q33 1 56-31l42-1q4 0 14 0.5t14 0.5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-47.5t-15-73.5-7-36q-10-13-27-19-5-2-66-2-30 0-93-1t-103-1-94 2-96 7q-9 81-8 136l1 152v-52q0 55 1 154t1.5 180 0.5 153q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q7-16 11.5-74t6-145.5 1.5-155-0.5-153.5-0.5-89q0-7-2.5-21.5t-2.5-22.5q0-7 0.5-44t1-73 0-76.5-3-67.5-6.5-32q-11-12-162-12-41 0-163 13.5t-138 24.5q-19 12-34 71.5t-31.5 111.5-42.5 54q-42-26-56-44v-383zM1310 1411q12 0 42 19.5t57.5 41.5 59.5 49 36 30q26 21 26 49t-26 49q-4 3-36 30t-59.5 49-57.5 41.5-42 19.5q-13 0-20.5-10.5t-10-28.5-2.5-33.5 1.5-33 1.5-19.5h-1024q0 2 1.5 19.5t1.5 33-2.5 33.5-10 28.5-20.5 10.5q-12 0-42-19.5t-57.5-41.5-59.5-49-36-30q-26-21-26-49t26-49q4-3 36-30t59.5-49 57.5-41.5 42-19.5q13 0 20.5 10.5t10 28.5 2.5 33.5-1.5 33-1.5 19.5h1024q0-2-1.5-19.5t-1.5-33 2.5-33.5 10-28.5 20.5-10.5z"
+ }
+ }]
+};
+exports.textWidth = textWidth;
+var alignLeft = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1408 960v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zM1664 576v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zM1280 192v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.alignLeft = alignLeft;
+var alignCenter = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1408 960v128q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h896q26 0 45 19t19 45zM1664 576v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1280 192v128q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h640q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.alignCenter = alignCenter;
+var alignRight = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 960v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zM1792 576v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zM1792 192v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.alignRight = alignRight;
+var alignJustify = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 960v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 576v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 192v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.alignJustify = alignJustify;
+var list = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1312v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM256 928v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM256 544v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM256 160v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.list = list;
+var dedent = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.dedent = dedent;
+var outdent = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.outdent = outdent;
+var indent = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352 832q0 14-9 23l-288 288q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-576q0-13 9.5-22.5t22.5-9.5q14 0 23 9l288 288q9 9 9 23zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.indent = indent;
+var videoCamera = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 352v1088q0 42-39 59-13 5-25 5-27 0-45-19l-403-403v166q0 119-84.5 203.5t-203.5 84.5h-704q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h704q119 0 203.5 84.5t84.5 203.5v165l403-402q18-19 45-19 12 0 25 5 39 17 39 59z"
+ }
+ }]
+};
+exports.videoCamera = videoCamera;
+var image = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.image = image;
+var photo = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.photo = photo;
+var pictureO = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.pictureO = pictureO;
+var pencil = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M363 1536l91-91-235-235-91 91v107h128v128h107zM886 608q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zM832 416l416 416-832 832h-416v-416zM1515 512q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z"
+ }
+ }]
+};
+exports.pencil = pencil;
+var mapMarker = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 640q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1024 640q0 109-33 179l-364 774q-16 33-47.5 52t-67.5 19-67.5-19-46.5-52l-365-774q-33-70-33-179 0-212 150-362t362-150 362 150 150 362z"
+ }
+ }]
+};
+exports.mapMarker = mapMarker;
+var adjust = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 1440v-1088q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.adjust = adjust;
+var tint = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1152q0-36-20-69-1-1-15.5-22.5t-25.5-38-25-44-21-50.5q-4-16-21-16t-21 16q-7 23-21 50.5t-25 44-25.5 38-15.5 22.5q-20 33-20 69 0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1024 1024q0 212-150 362t-362 150-362-150-150-362q0-145 81-275 6-9 62.5-90.5t101-151 99.5-178 83-201.5q9-30 34-47t51-17 51.5 17 33.5 47q28 93 83 201.5t99.5 178 101 151 62.5 90.5q81 127 81 275z"
+ }
+ }]
+};
+exports.tint = tint;
+var edit = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M888 1184l116-116-152-152-116 116v56h96v96h56zM1328 464q-16-16-33 1l-350 350q-17 17-1 33t33-1l350-350q17-17 1-33zM1408 1058v190q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-14 14-32 8-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-126q0-13 9-22l64-64q15-15 35-7t20 29zM1312 320l288 288-672 672h-288v-288zM1756 452l-92 92-288-288 92-92q28-28 68-28t68 28l152 152q28 28 28 68t-28 68z"
+ }
+ }]
+};
+exports.edit = edit;
+var pencilSquareO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M888 1184l116-116-152-152-116 116v56h96v96h56zM1328 464q-16-16-33 1l-350 350q-17 17-1 33t33-1l350-350q17-17 1-33zM1408 1058v190q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-14 14-32 8-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-126q0-13 9-22l64-64q15-15 35-7t20 29zM1312 320l288 288-672 672h-288v-288zM1756 452l-92 92-288-288 92-92q28-28 68-28t68 28l152 152q28 28 28 68t-28 68z"
+ }
+ }]
+};
+exports.pencilSquareO = pencilSquareO;
+var shareSquareO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 989v259q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h255v0q13 0 22.5 9.5t9.5 22.5q0 27-26 32-77 26-133 60-10 4-16 4h-112q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-214q0-19 18-29 28-13 54-37 16-16 35-8 21 9 21 29zM1645 493l-384 384q-18 19-45 19-12 0-25-5-39-17-39-59v-192h-160q-323 0-438 131-119 137-74 473 3 23-20 34-8 2-12 2-16 0-26-13-10-14-21-31t-39.5-68.5-49.5-99.5-38.5-114-17.5-122q0-49 3.5-91t14-90 28-88 47-81.5 68.5-74 94.5-61.5 124.5-48.5 159.5-30.5 196.5-11h160v-192q0-42 39-59 13-5 25-5 26 0 45 19l384 384q19 19 19 45t-19 45z"
+ }
+ }]
+};
+exports.shareSquareO = shareSquareO;
+var checkSquareO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 930v318q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-10 10-23 10-3 0-9-2-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-254q0-13 9-22l64-64q10-10 23-10 6 0 12 3 20 8 20 29zM1639 441l-814 814q-24 24-57 24t-57-24l-430-430q-24-24-24-57t24-57l110-110q24-24 57-24t57 24l263 263 647-647q24-24 57-24t57 24l110 110q24 24 24 57t-24 57z"
+ }
+ }]
+};
+exports.checkSquareO = checkSquareO;
+var arrows = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-384v384h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-384h-384v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h384v-384h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45t-19 45-45 19h-128v384h384v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z"
+ }
+ }]
+};
+exports.arrows = arrows;
+var stepBackward = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M979 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v678q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h128q26 0 45 19t19 45v678q4-10 13-19z"
+ }
+ }]
+};
+exports.stepBackward = stepBackward;
+var fastBackward = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1747 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v710q0 26-13 32t-32-13l-710-710q-9-9-13-19v678q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h128q26 0 45 19t19 45v678q4-10 13-19l710-710q19-19 32-13t13 32v710q4-10 13-19z"
+ }
+ }]
+};
+exports.fastBackward = fastBackward;
+var backward = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1619 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v710q0 26-13 32t-32-13l-710-710q-19-19-19-45t19-45l710-710q19-19 32-13t13 32v710q4-10 13-19z"
+ }
+ }]
+};
+exports.backward = backward;
+var play = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1384 927l-1328 738q-23 13-39.5 3t-16.5-36v-1472q0-26 16.5-36t39.5 3l1328 738q23 13 23 31t-23 31z"
+ }
+ }]
+};
+exports.play = play;
+var pause = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 192v1408q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h512q26 0 45 19t19 45zM640 192v1408q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h512q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.pause = pause;
+var stop = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 192v1408q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h1408q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.stop = stop;
+var forward = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-710q0-26 13-32t32 13l710 710q19 19 19 45t-19 45l-710 710q-19 19-32 13t-13-32v-710q-4 10-13 19z"
+ }
+ }]
+};
+exports.forward = forward;
+var fastForward = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-710q0-26 13-32t32 13l710 710q9 9 13 19v-678q0-26 19-45t45-19h128q26 0 45 19t19 45v1408q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-678q-4 10-13 19l-710 710q-19 19-32 13t-13-32v-710q-4 10-13 19z"
+ }
+ }]
+};
+exports.fastForward = fastForward;
+var stepForward = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-678q0-26 19-45t45-19h128q26 0 45 19t19 45v1408q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-678q-4 10-13 19z"
+ }
+ }]
+};
+exports.stepForward = stepForward;
+var eject = {
+ "viewBox": "0 0 1538 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 979l710-710q19-19 45-19t45 19l710 710q19 19 13 32t-32 13h-1472q-26 0-32-13t13-32zM1473 1536h-1408q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1408q26 0 45 19t19 45v256q0 26-19 45t-45 19z"
+ }
+ }]
+};
+exports.eject = eject;
+var chevronLeft = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1171 301l-531 531 531 531q19 19 19 45t-19 45l-166 166q-19 19-45 19t-45-19l-742-742q-19-19-19-45t19-45l742-742q19-19 45-19t45 19l166 166q19 19 19 45t-19 45z"
+ }
+ }]
+};
+exports.chevronLeft = chevronLeft;
+var chevronRight = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1107 877l-742 742q-19 19-45 19t-45-19l-166-166q-19-19-19-45t19-45l531-531-531-531q-19-19-19-45t19-45l166-166q19-19 45-19t45 19l742 742q19 19 19 45t-19 45z"
+ }
+ }]
+};
+exports.chevronRight = chevronRight;
+var plusCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1216 960v-128q0-26-19-45t-45-19h-256v-256q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v256h-256q-26 0-45 19t-19 45v128q0 26 19 45t45 19h256v256q0 26 19 45t45 19h128q26 0 45-19t19-45v-256h256q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.plusCircle = plusCircle;
+var minusCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1216 960v-128q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v128q0 26 19 45t45 19h768q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.minusCircle = minusCircle;
+var timesCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1149 1122q0-26-19-45l-181-181 181-181q19-19 19-45 0-27-19-46l-90-90q-19-19-46-19-26 0-45 19l-181 181-181-181q-19-19-45-19-27 0-46 19l-90 90q-19 19-19 46 0 26 19 45l181 181-181 181q-19 19-19 45 0 27 19 46l90 90q19 19 46 19 26 0 45-19l181-181 181 181q19 19 45 19 27 0 46-19l90-90q19-19 19-46zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.timesCircle = timesCircle;
+var checkCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1284 734q0-28-18-46l-91-90q-19-19-45-19t-45 19l-408 407-226-226q-19-19-45-19t-45 19l-91 90q-18 18-18 46 0 27 18 45l362 362q19 19 45 19 27 0 46-19l543-543q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.checkCircle = checkCircle;
+var questionCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1376v-192q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23-9t9-23zM1152 704q0-88-55.5-163t-138.5-116-170-41q-243 0-371 213-15 24 8 42l132 100q7 6 19 6 16 0 25-12 53-68 86-92 34-24 86-24 48 0 85.5 26t37.5 59q0 38-20 61t-68 45q-63 28-115.5 86.5t-52.5 125.5v36q0 14 9 23t23 9h192q14 0 23-9t9-23q0-19 21.5-49.5t54.5-49.5q32-18 49-28.5t46-35 44.5-48 28-60.5 12.5-81zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.questionCircle = questionCircle;
+var infoCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zM896 480v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.infoCircle = infoCircle;
+var crosshairs = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1197 1024h-109q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h109q-32-108-112.5-188.5t-188.5-112.5v109q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-109q-108 32-188.5 112.5t-112.5 188.5h109q26 0 45 19t19 45v128q0 26-19 45t-45 19h-109q32 108 112.5 188.5t188.5 112.5v-109q0-26 19-45t45-19h128q26 0 45 19t19 45v109q108-32 188.5-112.5t112.5-188.5zM1536 832v128q0 26-19 45t-45 19h-143q-37 161-154.5 278.5t-278.5 154.5v143q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-143q-161-37-278.5-154.5t-154.5-278.5h-143q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h143q37-161 154.5-278.5t278.5-154.5v-143q0-26 19-45t45-19h128q26 0 45 19t19 45v143q161 37 278.5 154.5t154.5 278.5h143q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.crosshairs = crosshairs;
+var timesCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1097 1079l-146 146q-10 10-23 10t-23-10l-137-137-137 137q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l137-137-137-137q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l137 137 137-137q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-137 137 137 137q10 10 10 23t-10 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.timesCircleO = timesCircleO;
+var checkCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1171 813l-422 422q-19 19-45 19t-45-19l-294-294q-19-19-19-45t19-45l102-102q19-19 45-19t45 19l147 147 275-275q19-19 45-19t45 19l102 102q19 19 19 45t-19 45zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.checkCircleO = checkCircleO;
+var ban = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1312 893q0-161-87-295l-754 753q137 89 297 89 111 0 211.5-43.5t173.5-116.5 116-174.5 43-212.5zM313 1192l755-754q-135-91-300-91-148 0-273 73t-198 199-73 274q0 162 89 299zM1536 893q0 157-61 300t-163.5 246-245 164-298.5 61-298.5-61-245-164-163.5-246-61-300 61-299.5 163.5-245.5 245-164 298.5-61 298.5 61 245 164 163.5 245.5 61 299.5z"
+ }
+ }]
+};
+exports.ban = ban;
+var arrowLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896v128q0 53-32.5 90.5t-84.5 37.5h-704l293 294q38 36 38 90t-38 90l-75 76q-37 37-90 37-52 0-91-37l-651-652q-37-37-37-90 0-52 37-91l651-650q38-38 91-38 52 0 90 38l75 74q38 38 38 91t-38 91l-293 293h704q52 0 84.5 37.5t32.5 90.5z"
+ }
+ }]
+};
+exports.arrowLeft = arrowLeft;
+var arrowRight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1472 960q0 54-37 91l-651 651q-39 37-91 37-51 0-90-37l-75-75q-38-38-38-91t38-91l293-293h-704q-52 0-84.5-37.5t-32.5-90.5v-128q0-53 32.5-90.5t84.5-37.5h704l-293-294q-38-36-38-90t38-90l75-75q38-38 90-38 53 0 91 38l651 651q37 35 37 90z"
+ }
+ }]
+};
+exports.arrowRight = arrowRight;
+var arrowUp = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1611 971q0 51-37 90l-75 75q-38 38-91 38-54 0-90-38l-294-293v704q0 52-37.5 84.5t-90.5 32.5h-128q-53 0-90.5-32.5t-37.5-84.5v-704l-294 293q-36 38-90 38t-90-38l-75-75q-38-38-38-90 0-53 38-91l651-651q35-37 90-37 54 0 91 37l651 651q37 39 37 91z"
+ }
+ }]
+};
+exports.arrowUp = arrowUp;
+var arrowDown = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1611 832q0 53-37 90l-651 652q-39 37-91 37-53 0-90-37l-651-652q-38-36-38-90 0-53 38-91l74-75q39-37 91-37 53 0 90 37l294 294v-704q0-52 38-90t90-38h128q52 0 90 38t38 90v704l294-294q37-37 90-37 52 0 91 37l75 75q37 39 37 91z"
+ }
+ }]
+};
+exports.arrowDown = arrowDown;
+var mailForward = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 640q0 26-19 45l-512 512q-19 19-45 19t-45-19-19-45v-256h-224q-98 0-175.5 6t-154 21.5-133 42.5-105.5 69.5-80 101-48.5 138.5-17.5 181q0 55 5 123 0 6 2.5 23.5t2.5 26.5q0 15-8.5 25t-23.5 10q-16 0-28-17-7-9-13-22t-13.5-30-10.5-24q-127-285-127-451 0-199 53-333 162-403 875-403h224v-256q0-26 19-45t45-19 45 19l512 512q19 19 19 45z"
+ }
+ }]
+};
+exports.mailForward = mailForward;
+var share = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 640q0 26-19 45l-512 512q-19 19-45 19t-45-19-19-45v-256h-224q-98 0-175.5 6t-154 21.5-133 42.5-105.5 69.5-80 101-48.5 138.5-17.5 181q0 55 5 123 0 6 2.5 23.5t2.5 26.5q0 15-8.5 25t-23.5 10q-16 0-28-17-7-9-13-22t-13.5-30-10.5-24q-127-285-127-451 0-199 53-333 162-403 875-403h224v-256q0-26 19-45t45-19 45 19l512 512q19 19 19 45z"
+ }
+ }]
+};
+exports.share = share;
+var expand = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M755 1056q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23zM1536 192v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.expand = expand;
+var compress = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 960v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45zM1523 288q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23z"
+ }
+ }]
+};
+exports.compress = compress;
+var plus = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 736v192q0 40-28 68t-68 28h-416v416q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-416h-416q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h416v-416q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.plus = plus;
+var minus = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 736v192q0 40-28 68t-68 28h-1216q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h1216q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.minus = minus;
+var asterisk = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1482 1050q46 26 59.5 77.5t-12.5 97.5l-64 110q-26 46-77.5 59.5t-97.5-12.5l-266-153v307q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-307l-266 153q-46 26-97.5 12.5t-77.5-59.5l-64-110q-26-46-12.5-97.5t59.5-77.5l266-154-266-154q-46-26-59.5-77.5t12.5-97.5l64-110q26-46 77.5-59.5t97.5 12.5l266 153v-307q0-52 38-90t90-38h128q52 0 90 38t38 90v307l266-153q46-26 97.5-12.5t77.5 59.5l64 110q26 46 12.5 97.5t-59.5 77.5l-266 154z"
+ }
+ }]
+};
+exports.asterisk = asterisk;
+var exclamationCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM896 1375v-190q0-14-9-23.5t-22-9.5h-192q-13 0-23 10t-10 23v190q0 13 10 23t23 10h192q13 0 22-9.5t9-23.5zM894 1031l18-621q0-12-10-18-10-8-24-8h-220q-14 0-24 8-10 6-10 18l17 621q0 10 10 17.5t24 7.5h185q14 0 23.5-7.5t10.5-17.5z"
+ }
+ }]
+};
+exports.exclamationCircle = exclamationCircle;
+var gift = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M928 1356v-56-468-192h-320v192 468 56q0 25 18 38.5t46 13.5h192q28 0 46-13.5t18-38.5zM472 512h195l-126-161q-26-31-69-31-40 0-68 28t-28 68 28 68 68 28zM1160 416q0-40-28-68t-68-28q-43 0-69 31l-125 161h194q40 0 68-28t28-68zM1536 672v320q0 14-9 23t-23 9h-96v416q0 40-28 68t-68 28h-1088q-40 0-68-28t-28-68v-416h-96q-14 0-23-9t-9-23v-320q0-14 9-23t23-9h440q-93 0-158.5-65.5t-65.5-158.5 65.5-158.5 158.5-65.5q107 0 168 77l128 165 128-165q61-77 168-77 93 0 158.5 65.5t65.5 158.5-65.5 158.5-158.5 65.5h440q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.gift = gift;
+var leaf = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 704q0-26-19-45t-45-19q-172 0-318 49.5t-259.5 134-235.5 219.5q-19 21-19 45 0 26 19 45t45 19q24 0 45-19 27-24 74-71t67-66q137-124 268.5-176t313.5-52q26 0 45-19t19-45zM1792 506q0 95-20 193-46 224-184.5 383t-357.5 268q-214 108-438 108-148 0-286-47-15-5-88-42t-96-37q-16 0-39.5 32t-45 70-52.5 70-60 32q-43 0-63.5-17.5t-45.5-59.5q-2-4-6-11t-5.5-10-3-9.5-1.5-13.5q0-35 31-73.5t68-65.5 68-56 31-48q0-4-14-38t-16-44q-9-51-9-104 0-115 43.5-220t119-184.5 170.5-139 204-95.5q55-18 145-25.5t179.5-9 178.5-6 163.5-24 113.5-56.5l29.5-29.5t29.5-28 27-20 36.5-16 43.5-4.5q39 0 70.5 46t47.5 112 24 124 8 96z"
+ }
+ }]
+};
+exports.leaf = leaf;
+var fire = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 1696v64q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1152 640q0 78-24.5 144t-64 112.5-87.5 88-96 77.5-87.5 72-64 81.5-24.5 96.5q0 96 67 224l-4-1 1 1q-90-41-160-83t-138.5-100-113.5-122.5-72.5-150.5-27.5-184q0-78 24.5-144t64-112.5 87.5-88 96-77.5 87.5-72 64-81.5 24.5-96.5q0-94-66-224l3 1-1-1q90 41 160 83t138.5 100 113.5 122.5 72.5 150.5 27.5 184z"
+ }
+ }]
+};
+exports.fire = fire;
+var eye = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-121 61-225-229 117-381 353 133 205 333.5 326.5t434.5 121.5 434.5-121.5 333.5-326.5zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zM1792 960q0 34-20 69-140 230-376.5 368.5t-499.5 138.5-499.5-139-376.5-368q-20-35-20-69t20-69q140-229 376.5-368t499.5-139 499.5 139 376.5 368q20 35 20 69z"
+ }
+ }]
+};
+exports.eye = eye;
+var eyeSlash = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M555 1335l78-141q-87-63-136-159t-49-203q0-121 61-225-229 117-381 353 167 258 427 375zM944 576q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zM1307 385q0 7-1 9-106 189-316 567t-315 566l-49 89q-10 16-28 16-12 0-134-70-16-10-16-28 0-12 44-87-143-65-263.5-173t-208.5-245q-20-31-20-69t20-69q153-235 380-371t496-136q89 0 180 17l54-97q10-16 28-16 5 0 18 6t31 15.5 33 18.5 31.5 18.5 19.5 11.5q16 10 16 27zM1344 832q0 139-79 253.5t-209 164.5l280-502q8 45 8 84zM1792 960q0 35-20 69-39 64-109 145-150 172-347.5 267t-419.5 95l74-132q212-18 392.5-137t301.5-307q-115-179-282-294l63-112q95 64 182.5 153t144.5 184q20 34 20 69z"
+ }
+ }]
+};
+exports.eyeSlash = eyeSlash;
+var exclamationTriangle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zM1022 1001l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zM1008 67l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z"
+ }
+ }]
+};
+exports.exclamationTriangle = exclamationTriangle;
+var warning = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zM1022 1001l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zM1008 67l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z"
+ }
+ }]
+};
+exports.warning = warning;
+var plane = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1376 160q44 52 12 148t-108 172l-161 161 160 696q5 19-12 33l-128 96q-7 6-19 6-4 0-7-1-15-3-21-16l-279-508-259 259 53 194q5 17-8 31l-96 96q-9 9-23 9h-2q-15-2-24-13l-189-252-252-189q-11-7-13-23-1-13 9-25l96-97q9-9 23-9 6 0 8 1l194 53 259-259-508-279q-14-8-17-24-2-16 9-27l128-128q14-13 30-8l665 159 160-160q76-76 172-108t148 12z"
+ }
+ }]
+};
+exports.plane = plane;
+var calendar = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128 1664h288v-288h-288v288zM480 1664h320v-288h-320v288zM128 1312h288v-320h-288v320zM480 1312h320v-320h-320v320zM128 928h288v-288h-288v288zM864 1664h320v-288h-320v288zM480 928h320v-288h-320v288zM1248 1664h288v-288h-288v288zM864 1312h320v-320h-320v320zM512 448v-288q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v288q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1248 1312h288v-320h-288v320zM864 928h320v-288h-320v288zM1248 928h288v-288h-288v288zM1280 448v-288q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v288q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calendar = calendar;
+var random = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M666 481q-60 92-137 273-22-45-37-72.5t-40.5-63.5-51-56.5-63-35-81.5-14.5h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224q250 0 410 225zM1792 1280q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192q-32 0-85 0.5t-81 1-73-1-71-5-64-10.5-63-18.5-58-28.5-59-40-55-53.5-56-69.5q59-93 136-273 22 45 37 72.5t40.5 63.5 51 56.5 63 35 81.5 14.5h256v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23zM1792 384q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-256q-48 0-87 15t-69 45-51 61.5-45 77.5q-32 62-78 171-29 66-49.5 111t-54 105-64 100-74 83-90 68.5-106.5 42-128 16.5h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224q48 0 87-15t69-45 51-61.5 45-77.5q32-62 78-171 29-66 49.5-111t54-105 64-100 74-83 90-68.5 106.5-42 128-16.5h256v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z"
+ }
+ }]
+};
+exports.random = random;
+var comment = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22-17 2-30.5-9t-17.5-29v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-130 71-248.5t191-204.5 286-136.5 348-50.5q244 0 450 85.5t326 233 120 321.5z"
+ }
+ }]
+};
+exports.comment = comment;
+var magnet = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 832v128q0 201-98.5 362t-274 251.5-395.5 90.5-395.5-90.5-274-251.5-98.5-362v-128q0-26 19-45t45-19h384q26 0 45 19t19 45v128q0 52 23.5 90t53.5 57 71 30 64 13 44 2 44-2 64-13 71-30 53.5-57 23.5-90v-128q0-26 19-45t45-19h384q26 0 45 19t19 45zM512 192v384q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h384q26 0 45 19t19 45zM1536 192v384q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h384q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.magnet = magnet;
+var chevronUp = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1683 1331l-166 165q-19 19-45 19t-45-19l-531-531-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-45.5t19-45.5l742-741q19-19 45-19t45 19l742 741q19 19 19 45.5t-19 45.5z"
+ }
+ }]
+};
+exports.chevronUp = chevronUp;
+var chevronDown = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1683 808l-742 741q-19 19-45 19t-45-19l-742-741q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z"
+ }
+ }]
+};
+exports.chevronDown = chevronDown;
+var retweet = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1504q0 13-9.5 22.5t-22.5 9.5h-960q-8 0-13.5-2t-9-7-5.5-8-3-11.5-1-11.5v-13-11-160-416h-192q-26 0-45-19t-19-45q0-24 15-41l320-384q19-22 49-22t49 22l320 384q15 17 15 41 0 26-19 45t-45 19h-192v384h576q16 0 25 11l160 192q7 10 7 21zM1920 1088q0 24-15 41l-320 384q-20 23-49 23t-49-23l-320-384q-15-17-15-41 0-26 19-45t45-19h192v-384h-576q-16 0-25-12l-160-192q-7-9-7-20 0-13 9.5-22.5t22.5-9.5h960q8 0 13.5 2t9 7 5.5 8 3 11.5 1 11.5v13 11 160 416h192q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.retweet = retweet;
+var shoppingCart = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1536q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM1536 1536q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM1664 448v512q0 24-16.5 42.5t-40.5 21.5l-1044 122q13 60 13 70 0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-11 8-31.5t16-36 21.5-40 15.5-29.5l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t19.5 15.5 13 24.5 8 26 5.5 29.5 4.5 26h1201q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.shoppingCart = shoppingCart;
+var folder = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.folder = folder;
+var folderOpen = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1879 952q0 31-31 66l-336 396q-43 51-120.5 86.5t-143.5 35.5h-1088q-34 0-60.5-13t-26.5-43q0-31 31-66l336-396q43-51 120.5-86.5t143.5-35.5h1088q34 0 60.5 13t26.5 43zM1536 608v160h-832q-94 0-197 47.5t-164 119.5l-337 396-5 6q0-4-0.5-12.5t-0.5-12.5v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h544q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.folderOpen = folderOpen;
+var arrowsV = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 320q0 26-19 45t-45 19h-128v1024h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-1024h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45z"
+ }
+ }]
+};
+exports.arrowsV = arrowsV;
+var arrowsH = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-1024v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h1024v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z"
+ }
+ }]
+};
+exports.arrowsH = arrowsH;
+var barChart = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 896v512h-256v-512h256zM1024 384v1024h-256v-1024h256zM2048 1536v128h-2048v-1536h128v1408h1920zM1408 640v768h-256v-768h256zM1792 256v1152h-256v-1152h256z"
+ }
+ }]
+};
+exports.barChart = barChart;
+var barChartO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 896v512h-256v-512h256zM1024 384v1024h-256v-1024h256zM2048 1536v128h-2048v-1536h128v1408h1920zM1408 640v768h-256v-768h256zM1792 256v1152h-256v-1152h256z"
+ }
+ }]
+};
+exports.barChartO = barChartO;
+var twitterSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 610q-56 25-121 34 68-40 93-117-65 38-134 51-61-66-153-66-87 0-148.5 61.5t-61.5 148.5q0 29 5 48-129-7-242-65t-192-155q-29 50-29 106 0 114 91 175-47-1-100-26v2q0 75 50 133.5t123 72.5q-29 8-51 8-13 0-39-4 21 63 74.5 104t121.5 42q-116 90-261 90-26 0-50-3 148 94 322 94 112 0 210-35.5t168-95 120.5-137 75-162 24.5-168.5q0-18-1-27 63-45 105-109zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.twitterSquare = twitterSquare;
+var facebookSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-188v-595h199l30-232h-229v-148q0-56 23.5-84t91.5-28l122-1v-207q-63-9-178-9-136 0-217.5 80t-81.5 226v171h-200v232h200v595h-532q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960z"
+ }
+ }]
+};
+exports.facebookSquare = facebookSquare;
+var cameraRetro = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M928 832q0-14-9-23t-23-9q-66 0-113 47t-47 113q0 14 9 23t23 9 23-9 9-23q0-40 28-68t68-28q14 0 23-9t9-23zM1152 962q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM128 1536h1536v-128h-1536v128zM1280 962q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM256 320h384v-128h-384v128zM128 512h1536v-118-138h-828l-64 128h-644v128zM1792 256v1280q0 53-37.5 90.5t-90.5 37.5h-1536q-53 0-90.5-37.5t-37.5-90.5v-1280q0-53 37.5-90.5t90.5-37.5h1536q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.cameraRetro = cameraRetro;
+var key = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zM1683 1216q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5t-102.5-265.5q0-160 95-313t248-248 313-95q163 0 265.5 102.5t102.5 265.5q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z"
+ }
+ }]
+};
+exports.key = key;
+var cogs = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1664 1408q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1664 384q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1280 805v185q0 10-7 19.5t-16 10.5l-155 24q-11 35-32 76 34 48 90 115 7 11 7 20 0 12-7 19-23 30-82.5 89.5t-78.5 59.5q-11 0-21-7l-115-90q-37 19-77 31-11 108-23 155-7 24-30 24h-186q-11 0-20-7.5t-10-17.5l-23-153q-34-10-75-31l-118 89q-7 7-20 7-11 0-21-8-144-133-144-160 0-9 7-19 10-14 41-53t47-61q-23-44-35-82l-152-24q-10-1-17-9.5t-7-19.5v-185q0-10 7-19.5t16-10.5l155-24q11-35 32-76-34-48-90-115-7-11-7-20 0-12 7-20 22-30 82-89t79-59q11 0 21 7l115 90q34-18 77-32 11-108 23-154 7-24 30-24h186q11 0 20 7.5t10 17.5l23 153q34 10 75 31l118-89q8-7 20-7 11 0 21 8 144 133 144 160 0 8-7 19-12 16-42 54t-45 60q23 48 34 82l152 23q10 2 17 10.5t7 19.5zM1920 1338v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31zM1920 314v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31z"
+ }
+ }]
+};
+exports.cogs = cogs;
+var gears = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1664 1408q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1664 384q0-52-38-90t-90-38-90 38-38 90q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1280 805v185q0 10-7 19.5t-16 10.5l-155 24q-11 35-32 76 34 48 90 115 7 11 7 20 0 12-7 19-23 30-82.5 89.5t-78.5 59.5q-11 0-21-7l-115-90q-37 19-77 31-11 108-23 155-7 24-30 24h-186q-11 0-20-7.5t-10-17.5l-23-153q-34-10-75-31l-118 89q-7 7-20 7-11 0-21-8-144-133-144-160 0-9 7-19 10-14 41-53t47-61q-23-44-35-82l-152-24q-10-1-17-9.5t-7-19.5v-185q0-10 7-19.5t16-10.5l155-24q11-35 32-76-34-48-90-115-7-11-7-20 0-12 7-20 22-30 82-89t79-59q11 0 21 7l115 90q34-18 77-32 11-108 23-154 7-24 30-24h186q11 0 20 7.5t10 17.5l23 153q34 10 75 31l118-89q8-7 20-7 11 0 21 8 144 133 144 160 0 8-7 19-12 16-42 54t-45 60q23 48 34 82l152 23q10 2 17 10.5t7 19.5zM1920 1338v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31zM1920 314v140q0 16-149 31-12 27-30 52 51 113 51 138 0 4-4 7-122 71-124 71-8 0-46-47t-52-68q-20 2-30 2t-30-2q-14 21-52 68t-46 47q-2 0-124-71-4-3-4-7 0-25 51-138-18-25-30-52-149-15-149-31v-140q0-16 149-31 13-29 30-52-51-113-51-138 0-4 4-7 4-2 35-20t59-34 30-16q8 0 46 46.5t52 67.5q20-2 30-2t30 2q51-71 92-112l6-2q4 0 124 70 4 3 4 7 0 25-51 138 17 23 30 52 149 15 149 31z"
+ }
+ }]
+};
+exports.gears = gears;
+var comments = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 768q0 139-94 257t-256.5 186.5-353.5 68.5q-86 0-176-16-124 88-278 128-36 9-86 16h-3q-11 0-20.5-8t-11.5-21q-1-3-1-6.5t0.5-6.5 2-6l2.5-5t3.5-5.5 4-5 4.5-5 4-4.5q5-6 23-25t26-29.5 22.5-29 25-38.5 20.5-44q-124-72-195-177t-71-224q0-139 94-257t256.5-186.5 353.5-68.5 353.5 68.5 256.5 186.5 94 257zM1792 1024q0 120-71 224.5t-195 176.5q10 24 20.5 44t25 38.5 22.5 29 26 29.5 23 25q1 1 4 4.5t4.5 5 4 5 3.5 5.5l2.5 5t2 6 0.5 6.5-1 6.5q-3 14-13 22t-22 7q-50-7-86-16-154-40-278-128-90 16-176 16-271 0-472-132 58 4 88 4 161 0 309-45t264-129q125-92 192-212t67-254q0-77-23-152 129 71 204 178t75 230z"
+ }
+ }]
+};
+exports.comments = comments;
+var thumbsOUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 768q0-51-39-89.5t-89-38.5h-352q0-58 48-159.5t48-160.5q0-98-32-145t-128-47q-26 26-38 85t-30.5 125.5-59.5 109.5q-22 23-77 91-4 5-23 30t-31.5 41-34.5 42.5-40 44-38.5 35.5-40 27-35.5 9h-32v640h32q13 0 31.5 3t33 6.5 38 11 35 11.5 35.5 12.5 29 10.5q211 73 342 73h121q192 0 192-167 0-26-5-56 30-16 47.5-52.5t17.5-73.5-18-69q53-50 53-119 0-25-10-55.5t-25-47.5q32-1 53.5-47t21.5-81zM1536 767q0 89-49 163 9 33 9 69 0 77-38 144 3 21 3 43 0 101-60 178 1 139-85 219.5t-227 80.5h-36-93q-96 0-189.5-22.5t-216.5-65.5q-116-40-138-40h-288q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h274q36-24 137-155 58-75 107-128 24-25 35.5-85.5t30.5-126.5 62-108q39-37 90-37 84 0 151 32.5t102 101.5 35 186q0 93-48 192h176q104 0 180 76t76 179z"
+ }
+ }]
+};
+exports.thumbsOUp = thumbsOUp;
+var thumbsODown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 448q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 1024q0-35-21.5-81t-53.5-47q15-17 25-47.5t10-55.5q0-69-53-119 18-31 18-69 0-37-17.5-73.5t-47.5-52.5q5-30 5-56 0-85-49-126t-136-41h-128q-131 0-342 73-5 2-29 10.5t-35.5 12.5-35 11.5-38 11-33 6.5-31.5 3h-32v640h32q16 0 35.5 9t40 27 38.5 35.5 40 44 34.5 42.5 31.5 41 23 30q55 68 77 91 41 43 59.5 109.5t30.5 125.5 38 85q96 0 128-47t32-145q0-59-48-160.5t-48-159.5h352q50 0 89-38.5t39-89.5zM1536 1025q0 103-76 179t-180 76h-176q48 99 48 192 0 118-35 186-35 69-102 101.5t-151 32.5q-51 0-90-37-34-33-54-82t-25.5-90.5-17.5-84.5-31-64q-48-50-107-127-101-131-137-155h-274q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h288q22 0 138-40 128-44 223-66t200-22h112q140 0 226.5 79t85.5 216v5q60 77 60 178 0 22-3 43 38 67 38 144 0 36-9 69 49 73 49 163z"
+ }
+ }]
+};
+exports.thumbsODown = thumbsODown;
+var starHalf = {
+ "viewBox": "0 0 896 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M832 32v1339l-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41z"
+ }
+ }]
+};
+exports.starHalf = starHalf;
+var heartO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 596q0-81-21.5-143t-55-98.5-81.5-59.5-94-31-98-8-112 25.5-110.5 64-86.5 72-60 61.5q-18 22-49 22t-49-22q-24-28-60-61.5t-86.5-72-110.5-64-112-25.5-98 8-94 31-81.5 59.5-55 98.5-21.5 143q0 168 187 355l581 560 580-559q188-188 188-356zM1792 596q0 221-229 450l-623 600q-18 18-44 18t-44-18l-624-602q-10-8-27.5-26t-55.5-65.5-68-97.5-53.5-121-23.5-138q0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344z"
+ }
+ }]
+};
+exports.heartO = heartO;
+var signOut = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1440q0 4 1 20t0.5 26.5-3 23.5-10 19.5-20.5 6.5h-320q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h320q13 0 22.5 9.5t9.5 22.5q0 4 1 20t0.5 26.5-3 23.5-10 19.5-20.5 6.5h-320q-66 0-113 47t-47 113v704q0 66 47 113t113 47h288 11 13t11.5 1 11.5 3 8 5.5 7 9 2 13.5zM1568 896q0 26-19 45l-544 544q-19 19-45 19t-45-19-19-45v-288h-448q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h448v-288q0-26 19-45t45-19 45 19l544 544q19 19 19 45z"
+ }
+ }]
+};
+exports.signOut = signOut;
+var linkedinSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M237 1414h231v-694h-231v694zM483 506q-1-52-36-86t-93-34-94.5 34-36.5 86q0 51 35.5 85.5t92.5 34.5h1q59 0 95-34.5t36-85.5zM1068 1414h231v-398q0-154-73-233t-193-79q-136 0-209 117h2v-101h-231q3 66 0 694h231v-388q0-38 7-56 15-35 45-59.5t74-24.5q116 0 116 157v371zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.linkedinSquare = linkedinSquare;
+var thumbTack = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480 864v-448q0-14-9-23t-23-9-23 9-9 23v448q0 14 9 23t23 9 23-9 9-23zM1152 1216q0 26-19 45t-45 19h-429l-51 483q-2 12-10.5 20.5t-20.5 8.5h-1q-27 0-32-27l-76-485h-404q-26 0-45-19t-19-45q0-123 78.5-221.5t177.5-98.5v-512q-52 0-90-38t-38-90 38-90 90-38h640q52 0 90 38t38 90-38 90-90 38v512q99 0 177.5 98.5t78.5 221.5z"
+ }
+ }]
+};
+exports.thumbTack = thumbTack;
+var externalLink = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 928v320q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h704q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-320q0-14 9-23t23-9h64q14 0 23 9t9 23zM1792 64v512q0 26-19 45t-45 19-45-19l-176-176-652 652q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l652-652-176-176q-19-19-19-45t19-45 45-19h512q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.externalLink = externalLink;
+var signIn = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1184 896q0 26-19 45l-544 544q-19 19-45 19t-45-19-19-45v-288h-448q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h448v-288q0-26 19-45t45-19 45 19l544 544q19 19 19 45zM1536 544v704q0 119-84.5 203.5t-203.5 84.5h-320q-13 0-22.5-9.5t-9.5-22.5q0-4-1-20t-0.5-26.5 3-23.5 10-19.5 20.5-6.5h320q66 0 113-47t47-113v-704q0-66-47-113t-113-47h-288-11-13t-11.5-1-11.5-3-8-5.5-7-9-2-13.5q0-4-1-20t-0.5-26.5 3-23.5 10-19.5 20.5-6.5h320q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.signIn = signIn;
+var trophy = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M458 883q-74-162-74-371h-256v96q0 78 94.5 162t235.5 113zM1536 608v-96h-256q0 209-74 371 141-29 235.5-113t94.5-162zM1664 480v128q0 71-41.5 143t-112 130-173 97.5-215.5 44.5q-42 54-95 95-38 34-52.5 72.5t-14.5 89.5q0 54 30.5 91t97.5 37q75 0 133.5 45.5t58.5 114.5v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-69 58.5-114.5t133.5-45.5q67 0 97.5-37t30.5-91q0-51-14.5-89.5t-52.5-72.5q-53-41-95-95-113-5-215.5-44.5t-173-97.5-112-130-41.5-143v-128q0-40 28-68t68-28h288v-96q0-66 47-113t113-47h576q66 0 113 47t47 113v96h288q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.trophy = trophy;
+var githubSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M519 1200q4-6-3-13-9-7-14-2-4 6 3 13 9 7 14 2zM491 1159q-5-7-12-4-6 4 0 12 7 8 12 5 6-4 0-13zM450 1119q2-4-5-8-7-2-8 2-3 5 4 8 8 2 9-2zM471 1142q2-1 1.5-4.5t-3.5-5.5q-6-7-10-3t1 11q6 6 11 2zM557 1217q2-7-9-11-9-3-13 4-2 7 9 11 9 3 13-4zM599 1220q0-8-12-8-10 0-10 8t11 8 11-8zM638 1213q-2-7-13-5t-9 9q2 8 12 6t10-10zM1280 896q0-212-150-362t-362-150-362 150-150 362q0 167 98 300.5t252 185.5q18 3 26.5-5t8.5-20q0-52-1-95-6 1-15.5 2.5t-35.5 2-48-4-43.5-20-29.5-41.5q-23-59-57-74-2-1-4.5-3.5l-8-8t-7-9.5 4-7.5 19.5-3.5q6 0 15 2t30 15.5 33 35.5q16 28 37.5 42t43.5 14 38-3.5 30-9.5q7-47 33-69-49-6-86-18.5t-73-39-55.5-76-19.5-119.5q0-79 53-137-24-62 5-136 19-6 54.5 7.5t60.5 29.5l26 16q58-17 128-17t128 17q11-7 28.5-18t55.5-26 57-9q29 74 5 136 53 58 53 137 0 57-14 100.5t-35.5 70-53.5 44.5-62.5 26-68.5 12q35 31 35 95 0 40-0.5 89t-0.5 51q0 12 8.5 20t26.5 5q154-52 252-185.5t98-300.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.githubSquare = githubSquare;
+var upload = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 1248v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h427q21 56 70.5 92t110.5 36h256q61 0 110.5-36t70.5-92h427q40 0 68 28t28 68zM1339 600q-17 40-59 40h-256v448q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-448h-256q-42 0-59-40-17-39 14-69l448-448q18-19 45-19t45 19l448 448q31 30 14 69z"
+ }
+ }]
+};
+exports.upload = upload;
+var lemonO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1407 826q0-44-7-113.5t-18-96.5q-12-30-17-44t-9-36.5-4-48.5q0-23 5-68.5t5-67.5q0-37-10-55-4-1-13-1-19 0-58 4.5t-59 4.5q-60 0-176-24t-175-24q-43 0-94.5 11.5t-85 23.5-89.5 34q-137 54-202 103-96 73-159.5 189.5t-88 236-24.5 248.5q0 40 12.5 120t12.5 121q0 23-11 66.5t-11 65.5 12 36.5 34 14.5q24 0 72.5-11t73.5-11q57 0 169.5 15.5t169.5 15.5q181 0 284-36 129-45 235.5-152.5t166-245.5 59.5-275zM1535 824q0 165-70 327.5t-196 288-281 180.5q-124 44-326 44-57 0-170-14.5t-169-14.5q-24 0-72.5 14.5t-73.5 14.5q-73 0-123.5-55.5t-50.5-128.5q0-24 11-68t11-67q0-40-12.5-120.5t-12.5-121.5q0-111 18-217.5t54.5-209.5 100.5-194 150-156q78-59 232-120 194-78 316-78 60 0 175.5 24t173.5 24q19 0 57-5t58-5q81 0 118 50.5t37 134.5q0 23-5 68t-5 68q0 13 2 25t3.5 16.5 7.5 20.5 8 20q16 40 25 118.5t9 136.5z"
+ }
+ }]
+};
+exports.lemonO = lemonO;
+var phone = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 1240q0 27-10 70.5t-21 68.5q-21 50-122 106-94 51-186 51-27 0-53-3.5t-57.5-12.5-47-14.5-55.5-20.5-49-18q-98-35-175-83-127-79-264-216t-216-264q-48-77-83-175-3-9-18-49t-20.5-55.5-14.5-47-12.5-57.5-3.5-53q0-92 51-186 56-101 106-122 25-11 68.5-21t70.5-10q14 0 21 3 18 6 53 76 11 19 30 54t35 63.5 31 53.5q3 4 17.5 25t21.5 35.5 7 28.5q0 20-28.5 50t-62 55-62 53-28.5 46q0 9 5 22.5t8.5 20.5 14 24 11.5 19q76 137 174 235t235 174q2 1 19 11.5t24 14 20.5 8.5 22.5 5q18 0 46-28.5t53-62 55-62 50-28.5q14 0 28.5 7t35.5 21.5 25 17.5q25 15 53.5 31t63.5 35 54 30q70 35 76 53 3 7 3 21z"
+ }
+ }]
+};
+exports.phone = phone;
+var squareO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1120 256h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-832q0-66-47-113t-113-47zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.squareO = squareO;
+var bookmarkO = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 256h-1024v1242l423-406 89-85 89 85 423 406v-1242zM1164 128q23 0 44 9 33 13 52.5 41t19.5 62v1289q0 34-19.5 62t-52.5 41q-19 8-44 8-48 0-83-32l-441-424-441 424q-36 33-83 33-23 0-44-9-33-13-52.5-41t-19.5-62v-1289q0-34 19.5-62t52.5-41q21-9 44-9h1048z"
+ }
+ }]
+};
+exports.bookmarkO = bookmarkO;
+var phoneSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1193q0-11-2-16t-18-16.5-40.5-25-47.5-26.5-45.5-25-28.5-15q-5-3-19-13t-25-15-21-5q-15 0-36.5 20.5t-39.5 45-38.5 45-33.5 20.5q-7 0-16.5-3.5t-15.5-6.5-17-9.5-14-8.5q-99-55-170-126.5t-127-170.5q-2-3-8.5-14t-9.5-17-6.5-15.5-3.5-16.5q0-13 20.5-33.5t45-38.5 45-39.5 20.5-36.5q0-10-5-21t-15-25-13-19q-3-6-15-28.5t-25-45.5-26.5-47.5-25-40.5-16.5-18-16-2q-48 0-101 22-46 21-80 94.5t-34 130.5q0 16 2.5 34t5 30.5 9 33 10 29.5 12.5 33 11 30q60 164 216.5 320.5t320.5 216.5q6 2 30 11t33 12.5 29.5 10 33 9 30.5 5 34 2.5q57 0 130.5-34t94.5-80q22-53 22-101zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.phoneSquare = phoneSquare;
+var twitter = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1620 408q-67 98-162 167 1 14 1 42 0 130-38 259.5t-115.5 248.5-184.5 210.5-258 146-323 54.5q-271 0-496-145 35 4 78 4 225 0 401-138-105-2-188-64.5t-114-159.5q33 5 61 5 43 0 85-11-112-23-185.5-111.5t-73.5-205.5v-4q68 38 146 41-66-44-105-115t-39-154q0-88 44-163 121 149 294.5 238.5t371.5 99.5q-8-38-8-74 0-134 94.5-228.5t228.5-94.5q140 0 236 102 109-21 205-78-37 115-142 178 93-10 186-50z"
+ }
+ }]
+};
+exports.twitter = twitter;
+var facebook = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M959 12v264h-157q-86 0-116 36t-30 108v189h293l-39 296h-254v759h-306v-759h-255v-296h255v-218q0-186 104-288.5t277-102.5q147 0 228 12z"
+ }
+ }]
+};
+exports.facebook = facebook;
+var facebookF = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M959 12v264h-157q-86 0-116 36t-30 108v189h293l-39 296h-254v759h-306v-759h-255v-296h255v-218q0-186 104-288.5t277-102.5q147 0 228 12z"
+ }
+ }]
+};
+exports.facebookF = facebookF;
+var github = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5q0 251-146.5 451.5t-378.5 277.5q-27 5-40-7t-13-30q0-3 0.5-76.5t0.5-134.5q0-97-52-142 57-6 102.5-18t94-39 81-66.5 53-105 20.5-150.5q0-119-79-206 37-91-8-204-28-9-81 11t-92 44l-38 24q-93-26-192-26t-192 26q-16-11-42.5-27t-83.5-38.5-85-13.5q-45 113-8 204-79 87-79 206 0 85 20.5 150t52.5 105 80.5 67 94 39 102.5 18q-39 36-49 103-21 10-45 15t-57 5-65.5-21.5-55.5-62.5q-19-32-48.5-52t-49.5-24l-20-3q-21 0-29 4.5t-5 11.5 9 14 13 12l7 5q22 10 43.5 38t31.5 51l10 23q13 38 44 61.5t67 30 69.5 7 55.5-3.5l23-4q0 38 0.5 88.5t0.5 54.5q0 18-13 30t-40 7q-232-77-378.5-277.5t-146.5-451.5q0-209 103-385.5t279.5-279.5 385.5-103zM291 1231q3-7-7-12-10-3-13 2-3 7 7 12 9 6 13-2zM322 1265q7-5-2-16-10-9-16-3-7 5 2 16 10 10 16 3zM352 1310q9-7 0-19-8-13-17-6-9 5 0 18t17 7zM394 1352q8-8-4-19-12-12-20-3-9 8 4 19 12 12 20 3zM451 1377q3-11-13-16-15-4-19 7t13 15q15 6 19-6zM514 1382q0-13-17-11-16 0-16 11 0 13 17 11 16 0 16-11zM572 1372q-2-11-18-9-16 3-14 15t18 8 14-14z"
+ }
+ }]
+};
+exports.github = github;
+var unlock = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 576v256q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45v-256q0-106-75-181t-181-75-181 75-75 181v192h96q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h672v-192q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5z"
+ }
+ }]
+};
+exports.unlock = unlock;
+var creditCard = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1760 128q66 0 113 47t47 113v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600zM160 256q-13 0-22.5 9.5t-9.5 22.5v224h1664v-224q0-13-9.5-22.5t-22.5-9.5h-1600zM1760 1536q13 0 22.5-9.5t9.5-22.5v-608h-1664v608q0 13 9.5 22.5t22.5 9.5h1600zM256 1408v-128h256v128h-256zM640 1408v-128h384v128h-384z"
+ }
+ }]
+};
+exports.creditCard = creditCard;
+var feed = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1467q2 28-17 48-18 21-47 21h-135q-25 0-43-16.5t-20-41.5q-22-229-184.5-391.5t-391.5-184.5q-25-2-41.5-20t-16.5-43v-135q0-29 21-47 17-17 43-17h5q160 13 306 80.5t259 181.5q114 113 181.5 259t80.5 306zM1408 1469q2 27-18 47-18 20-46 20h-143q-26 0-44.5-17.5t-19.5-42.5q-12-215-101-408.5t-231.5-336-336-231.5-408.5-102q-25-1-42.5-19.5t-17.5-43.5v-143q0-28 20-46 18-18 44-18h3q262 13 501.5 120t425.5 294q187 186 294 425.5t120 501.5z"
+ }
+ }]
+};
+exports.feed = feed;
+var rss = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1467q2 28-17 48-18 21-47 21h-135q-25 0-43-16.5t-20-41.5q-22-229-184.5-391.5t-391.5-184.5q-25-2-41.5-20t-16.5-43v-135q0-29 21-47 17-17 43-17h5q160 13 306 80.5t259 181.5q114 113 181.5 259t80.5 306zM1408 1469q2 27-18 47-18 20-46 20h-143q-26 0-44.5-17.5t-19.5-42.5q-12-215-101-408.5t-231.5-336-336-231.5-408.5-102q-25-1-42.5-19.5t-17.5-43.5v-143q0-28 20-46 18-18 44-18h3q262 13 501.5 120t425.5 294q187 186 294 425.5t120 501.5z"
+ }
+ }]
+};
+exports.rss = rss;
+var hddO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1040 1216q0 33-23.5 56.5t-56.5 23.5-56.5-23.5-23.5-56.5 23.5-56.5 56.5-23.5 56.5 23.5 23.5 56.5zM1296 1216q0 33-23.5 56.5t-56.5 23.5-56.5-23.5-23.5-56.5 23.5-56.5 56.5-23.5 56.5 23.5 23.5 56.5zM1408 1376v-320q0-13-9.5-22.5t-22.5-9.5h-1216q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5-9.5t9.5-22.5zM178 896h1180l-157-482q-4-13-16-21.5t-26-8.5h-782q-14 0-26 8.5t-16 21.5zM1536 1056v320q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-320q0-25 16-75l197-606q17-53 63-86t101-33h782q55 0 101 33t63 86l197 606q16 50 16 75z"
+ }
+ }]
+};
+exports.hddO = hddO;
+var bullhorn = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 640q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5v384q0 52-38 90t-90 38q-417-347-812-380-58 19-91 66t-31 100.5 40 92.5q-20 33-23 65.5t6 58 33.5 55 48 50 61.5 50.5q-29 58-111.5 83t-168.5 11.5-132-55.5q-7-23-29.5-87.5t-32-94.5-23-89-15-101 3.5-98.5 22-110.5h-122q-66 0-113-47t-47-113v-192q0-66 47-113t113-47h480q435 0 896-384 52 0 90 38t38 90v384zM1536 1244v-954q-394 302-768 343v270q377 42 768 341z"
+ }
+ }]
+};
+exports.bullhorn = bullhorn;
+var bellO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M912 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM246 1408h1300q-266-300-266-832 0-51-24-105t-69-103-121.5-80.5-169.5-31.5-169.5 31.5-121.5 80.5-69 103-24 105q0 532-266 832zM1728 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-181-75-75-181h-448q-52 0-90-38t-38-90q50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 190 28 307 158.5t117 282.5q0 139 19.5 260t50 206 74.5 158.5 85 119.5 91 88z"
+ }
+ }]
+};
+exports.bellO = bellO;
+var certificate = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1376 896l138 135q30 28 20 70-12 41-52 51l-188 48 53 186q12 41-19 70-29 31-70 19l-186-53-48 188q-10 40-51 52-12 2-19 2-31 0-51-22l-135-138-135 138q-28 30-70 20-41-11-51-52l-48-188-186 53q-41 12-70-19-31-29-19-70l53-186-188-48q-40-10-52-51-10-42 20-70l138-135-138-135q-30-28-20-70 12-41 52-51l188-48-53-186q-12-41 19-70 29-31 70-19l186 53 48-188q10-41 51-51 41-12 70 19l135 139 135-139q29-30 70-19 41 10 51 51l48 188 186-53q41-12 70 19 31 29 19 70l-53 186 188 48q40 10 52 51 10 42-20 70z"
+ }
+ }]
+};
+exports.certificate = certificate;
+var handORight = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 768q0-51-39-89.5t-89-38.5h-576q0-20 15-48.5t33-55 33-68 15-84.5q0-67-44.5-97.5t-115.5-30.5q-24 0-90 139-24 44-37 65-40 64-112 145-71 81-101 106-69 57-140 57h-32v640h32q72 0 167 32t193.5 64 179.5 32q189 0 189-167 0-26-5-56 30-16 47.5-52.5t17.5-73.5-18-69q53-50 53-119 0-25-10-55.5t-25-47.5h331q52 0 90-38t38-90zM1792 767q0 105-75.5 181t-180.5 76h-169q-4 62-37 119 3 21 3 43 0 101-60 178 1 139-85 219.5t-227 80.5q-133 0-322-69-164-59-223-59h-288q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h288q10 0 21.5-4.5t23.5-14 22.5-18 24-22.5 20.5-21.5 19-21.5 14-17q65-74 100-129 13-21 33-62t37-72 40.5-63 55-49.5 69.5-17.5q125 0 206.5 67t81.5 189q0 68-22 128h374q104 0 180 76t76 179z"
+ }
+ }]
+};
+exports.handORight = handORight;
+var handOLeft = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1376 1408h32v-640h-32q-35 0-67.5-12t-62.5-37-50-46-49-54q-8-9-12-14-72-81-112-145-14-22-38-68-1-3-10.5-22.5t-18.5-36-20-35.5-21.5-30.5-18.5-11.5q-71 0-115.5 30.5t-44.5 97.5q0 43 15 84.5t33 68 33 55 15 48.5h-576q-50 0-89 38.5t-39 89.5q0 52 38 90t90 38h331q-15 17-25 47.5t-10 55.5q0 69 53 119-18 32-18 69t17.5 73.5 47.5 52.5q-4 24-4 56 0 85 48.5 126t135.5 41q84 0 183-32t194-64 167-32zM1664 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1792 768v640q0 53-37.5 90.5t-90.5 37.5h-288q-59 0-223 59-190 69-317 69-142 0-230-77.5t-87-217.5l1-5q-61-76-61-178 0-22 3-43-33-57-37-119h-169q-105 0-180.5-76t-75.5-181q0-103 76-179t180-76h374q-22-60-22-128 0-122 81.5-189t206.5-67q38 0 69.5 17.5t55 49.5 40.5 63 37 72 33 62q35 55 100 129 2 3 14 17t19 21.5 20.5 21.5 24 22.5 22.5 18 23.5 14 21.5 4.5h288q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.handOLeft = handOLeft;
+var handOUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1600q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 836q0-189-167-189-26 0-56 5-16-30-52.5-47.5t-73.5-17.5-69 18q-50-53-119-53-25 0-55.5 10t-47.5 25v-331q0-52-38-90t-90-38q-51 0-89.5 39t-38.5 89v576q-20 0-48.5-15t-55-33-68-33-84.5-15q-67 0-97.5 44.5t-30.5 115.5q0 24 139 90 44 24 65 37 64 40 145 112 81 71 106 101 57 69 57 140v32h640v-32q0-72 32-167t64-193.5 32-179.5zM1536 831q0 133-69 322-59 164-59 223v288q0 53-37.5 90.5t-90.5 37.5h-640q-53 0-90.5-37.5t-37.5-90.5v-288q0-10-4.5-21.5t-14-23.5-18-22.5-22.5-24-21.5-20.5-21.5-19-17-14q-74-65-129-100-21-13-62-33t-72-37-63-40.5-49.5-55-17.5-69.5q0-125 67-206.5t189-81.5q68 0 128 22v-374q0-104 76-180t179-76q105 0 181 75.5t76 180.5v169q62 4 119 37 21-3 43-3 101 0 178 60 139-1 219.5 85t80.5 227z"
+ }
+ }]
+};
+exports.handOUp = handOUp;
+var handODown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 960q0-84-32-183t-64-194-32-167v-32h-640v32q0 35-12 67.5t-37 62.5-46 50-54 49q-9 8-14 12-81 72-145 112-22 14-68 38-3 1-22.5 10.5t-36 18.5-35.5 20-30.5 21.5-11.5 18.5q0 71 30.5 115.5t97.5 44.5q43 0 84.5-15t68-33 55-33 48.5-15v576q0 50 38.5 89t89.5 39q52 0 90-38t38-90v-331q46 35 103 35 69 0 119-53 32 18 69 18t73.5-17.5 52.5-47.5q24 4 56 4 85 0 126-48.5t41-135.5zM1280 192q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 956q0 142-77.5 230t-217.5 87l-5-1q-76 61-178 61-22 0-43-3-54 30-119 37v169q0 105-76 180.5t-181 75.5q-103 0-179-76t-76-180v-374q-54 22-128 22-121 0-188.5-81.5t-67.5-206.5q0-38 17.5-69.5t49.5-55 63-40.5 72-37 62-33q55-35 129-100 3-2 17-14t21.5-19 21.5-20.5 22.5-24 18-22.5 14-23.5 4.5-21.5v-288q0-53 37.5-90.5t90.5-37.5h640q53 0 90.5 37.5t37.5 90.5v288q0 59 59 223 69 190 69 317z"
+ }
+ }]
+};
+exports.handODown = handODown;
+var arrowCircleLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 960v-128q0-26-19-45t-45-19h-502l189-189q19-19 19-45t-19-45l-91-91q-18-18-45-18t-45 18l-362 362-91 91q-18 18-18 45t18 45l91 91 362 362q18 18 45 18t45-18l91-91q18-18 18-45t-18-45l-189-189h502q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleLeft = arrowCircleLeft;
+var arrowCircleRight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1285 896q0-27-18-45l-91-91-362-362q-18-18-45-18t-45 18l-91 91q-18 18-18 45t18 45l189 189h-502q-26 0-45 19t-19 45v128q0 26 19 45t45 19h502l-189 189q-19 19-19 45t19 45l91 91q18 18 45 18t45-18l362-362 91-91q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleRight = arrowCircleRight;
+var arrowCircleUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1284 895q0-27-18-45l-362-362-91-91q-18-18-45-18t-45 18l-91 91-362 362q-18 18-18 45t18 45l91 91q18 18 45 18t45-18l189-189v502q0 26 19 45t45 19h128q26 0 45-19t19-45v-502l189 189q19 19 45 19t45-19l91-91q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleUp = arrowCircleUp;
+var arrowCircleDown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1284 897q0-27-18-45l-91-91q-18-18-45-18t-45 18l-189 189v-502q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v502l-189-189q-19-19-45-19t-45 19l-91 91q-18 18-18 45t18 45l362 362 91 91q18 18 45 18t45-18l91-91 362-362q18-18 18-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleDown = arrowCircleDown;
+var globe = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM1042 649q-2 1-9.5 9.5t-13.5 9.5q2 0 4.5-5t5-11 3.5-7q6-7 22-15 14-6 52-12 34-8 51 11-2-2 9.5-13t14.5-12q3-2 15-4.5t15-7.5l2-22q-12 1-17.5-7t-6.5-21q0 2-6 8 0-7-4.5-8t-11.5 1-9 1q-10-3-15-7.5t-8-16.5-4-15q-2-5-9.5-11t-9.5-10q-1-2-2.5-5.5t-3-6.5-4-5.5-5.5-2.5-7 5-7.5 10-4.5 5q-3-2-6-1.5t-4.5 1-4.5 3-5 3.5q-3 2-8.5 3t-8.5 2q15-5-1-11-10-4-16-3 9-4 7.5-12t-8.5-14h5q-1-4-8.5-8.5t-17.5-8.5-13-6q-8-5-34-9.5t-33-0.5q-5 6-4.5 10.5t4 14 3.5 12.5q1 6-5.5 13t-6.5 12q0 7 14 15.5t10 21.5q-3 8-16 16t-16 12q-5 8-1.5 18.5t10.5 16.5q2 2 1.5 4t-3.5 4.5-5.5 4-6.5 3.5l-3 2q-11 5-20.5-6t-13.5-26q-7-25-16-30-23-8-29 1-5-13-41-26-25-9-58-4 6-1 0-15-7-15-19-12 3-6 4-17.5t1-13.5q3-13 12-23 1-1 7-8.5t9.5-13.5 0.5-6q35 4 50-11 5-5 11.5-17t10.5-17q9-6 14-5.5t14.5 5.5 14.5 5q14 1 15.5-11t-7.5-20q12 1 3-17-4-7-8-9-12-4-27 5-8 4 2 8-1-1-9.5 10.5t-16.5 17.5-16-5q-1-1-5.5-13.5t-9.5-13.5q-8 0-16 15 3-8-11-15t-24-8q19-12-8-27-7-4-20.5-5t-19.5 4q-5 7-5.5 11.5t5 8 10.5 5.5 11.5 4 8.5 3q14 10 8 14-2 1-8.5 3.5t-11.5 4.5-6 4q-3 4 0 14t-2 14q-5-5-9-17.5t-7-16.5q7 9-25 6l-10-1q-4 0-16 2t-20.5 1-13.5-8q-4-8 0-20 1-4 4-2-4-3-11-9.5t-10-8.5q-46 15-94 41 6 1 12-1 5-2 13-6.5t10-5.5q34-14 42-7l5-5q14 16 20 25-7-4-30-1-20 6-22 12 7 12 5 18-4-3-11.5-10t-14.5-11-15-5q-16 0-22 1-146 80-235 222 7 7 12 8 4 1 5 9t2.5 11 11.5-3q9 8 3 19 1-1 44 27 19 17 21 21 3 11-10 18-1-2-9-9t-9-4q-3 5 0.5 18.5t10.5 12.5q-7 0-9.5 16t-2.5 35.5-1 23.5l2 1q-3 12 5.5 34.5t21.5 19.5q-13 3 20 43 6 8 8 9 3 2 12 7.5t15 10 10 10.5q4 5 10 22.5t14 23.5q-2 6 9.5 20t10.5 23q-1 0-2.5 1t-2.5 1q3 7 15.5 14t15.5 13q1 3 2 10t3 11 8 2q2-20-24-62-15-25-17-29-3-5-5.5-15.5t-4.5-14.5q2 0 6 1.5t8.5 3.5 7.5 4 2 3q-3 7 2 17.5t12 18.5 17 19 12 13q6 6 14 19.5t0 13.5q9 0 20 10.5t17 19.5q5 8 8 26t5 24q2 7 8.5 13.5t12.5 9.5l16 8t13 7q5 2 18.5 10.5t21.5 11.5q10 4 16 4t14.5-2.5 13.5-3.5q15-2 29 15t21 21q36 19 55 11-2 1 0.5 7.5t8 15.5 9 14.5 5.5 8.5q5 6 18 15t18 15q6-4 7-9-3 8 7 20t18 10q14-3 14-32-31 15-49-18 0-1-2.5-5.5t-4-8.5-2.5-8.5 0-7.5 5-3q9 0 10-3.5t-2-12.5-4-13q-1-8-11-20t-12-15q-5 9-16 8t-16-9q0 1-1.5 5.5t-1.5 6.5q-13 0-15-1 1-3 2.5-17.5t3.5-22.5q1-4 5.5-12t7.5-14.5 4-12.5-4.5-9.5-17.5-2.5q-19 1-26 20-1 3-3 10.5t-5 11.5-9 7q-7 3-24 2t-24-5q-13-8-22.5-29t-9.5-37q0-10 2.5-26.5t3-25-5.5-24.5q3-2 9-9.5t10-10.5q2-1 4.5-1.5t4.5 0 4-1.5 3-6q-1-1-4-3-3-3-4-3 7 3 28.5-1.5t27.5 1.5q15 11 22-2 0-1-2.5-9.5t-0.5-13.5q5 27 29 9 3 3 15.5 5t17.5 5q3 2 7 5.5t5.5 4.5 5-0.5 8.5-6.5q10 14 12 24 11 40 19 44 7 3 11 2t4.5-9.5 0-14-1.5-12.5l-1-8v-18l-1-8q-15-3-18.5-12t1.5-18.5 15-18.5q1-1 8-3.5t15.5-6.5 12.5-8q21-19 15-35 7 0 11-9-1 0-5-3t-7.5-5-4.5-2q9-5 2-16 5-3 7.5-11t7.5-10q9 12 21 2 8-8 1-16 5-7 20.5-10.5t18.5-9.5q7 2 8-2t1-12 3-12q4-5 15-9t13-5l17-11q3-4 0-4 18 2 31-11 10-11-6-20 3-6-3-9.5t-15-5.5q3-1 11.5-0.5t10.5-1.5q15-10-7-16-17-5-43 12zM879 1526q206-36 351-189-3-3-12.5-4.5t-12.5-3.5q-18-7-24-8 1-7-2.5-13t-8-9-12.5-8-11-7q-2-2-7-6t-7-5.5-7.5-4.5-8.5-2-10 1l-3 1q-3 1-5.5 2.5t-5.5 3-4 3 0 2.5q-21-17-36-22-5-1-11-5.5t-10.5-7-10-1.5-11.5 7q-5 5-6 15t-2 13q-7-5 0-17.5t2-18.5q-3-6-10.5-4.5t-12 4.5-11.5 8.5-9 6.5-8.5 5.5-8.5 7.5q-3 4-6 12t-5 11q-2-4-11.5-6.5t-9.5-5.5q2 10 4 35t5 38q7 31-12 48-27 25-29 40-4 22 12 26 0 7-8 20.5t-7 21.5q0 6 2 16z"
+ }
+ }]
+};
+exports.globe = globe;
+var wrench = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1028 1052l-682 682q-37 37-90 37-52 0-91-37l-106-108q-38-36-38-90 0-53 38-91l681-681q39 98 114.5 173.5t173.5 114.5zM1662 617q0 39-23 106-47 134-164.5 217.5t-258.5 83.5q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q58 0 121.5 16.5t107.5 46.5q16 11 16 28t-16 28l-293 169v224l193 107q5-3 79-48.5t135.5-81 70.5-35.5q15 0 23.5 10t8.5 25z"
+ }
+ }]
+};
+exports.wrench = wrench;
+var tasks = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1408h640v-128h-640v128zM640 896h1024v-128h-1024v128zM1280 384h384v-128h-384v128zM1792 1216v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 704v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 192v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.tasks = tasks;
+var filter = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1403 295q17 41-14 70l-493 493v742q0 42-39 59-13 5-25 5-27 0-45-19l-256-256q-19-19-19-45v-486l-493-493q-31-29-14-70 17-39 59-39h1280q42 0 59 39z"
+ }
+ }]
+};
+exports.filter = filter;
+var briefcase = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 256h512v-128h-512v128zM1792 896v480q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-480h672v160q0 26 19 45t45 19h320q26 0 45-19t19-45v-160h672zM1024 896v128h-256v-128h256zM1792 416v384h-1792v-384q0-66 47-113t113-47h352v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h352q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.briefcase = briefcase;
+var arrowsAlt = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1283 541l-355 355 355 355 144-144q29-31 70-14 39 17 39 59v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l144-144-355-355-355 355 144 144q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l144 144 355-355-355-355-144 144q-19 19-45 19-12 0-24-5-40-17-40-59v-448q0-26 19-45t45-19h448q42 0 59 40 17 39-14 69l-144 144 355 355 355-355-144-144q-31-30-14-69 17-40 59-40h448q26 0 45 19t19 45v448q0 42-39 59-13 5-25 5-26 0-45-19z"
+ }
+ }]
+};
+exports.arrowsAlt = arrowsAlt;
+var group = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M593 896q-162 5-265 128h-134q-82 0-138-40.5t-56-118.5q0-353 124-353 6 0 43.5 21t97.5 42.5 119 21.5q67 0 133-23-5 37-5 66 0 139 81 256zM1664 1533q0 120-73 189.5t-194 69.5h-874q-121 0-194-69.5t-73-189.5q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q10 0 43 21.5t73 48 107 48 135 21.5 135-21.5 107-48 73-48 43-21.5q61 0 111.5 20t85.5 53.5 62 81 43 97.5 26.5 108.5 14 109 3.5 103.5zM640 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1344 640q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1920 865q0 78-56 118.5t-138 40.5h-134q-103-123-265-128 81-117 81-256 0-29-5-66 66 23 133 23 59 0 119-21.5t97.5-42.5 43.5-21q124 0 124 353zM1792 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181z"
+ }
+ }]
+};
+exports.group = group;
+var users = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M593 896q-162 5-265 128h-134q-82 0-138-40.5t-56-118.5q0-353 124-353 6 0 43.5 21t97.5 42.5 119 21.5q67 0 133-23-5 37-5 66 0 139 81 256zM1664 1533q0 120-73 189.5t-194 69.5h-874q-121 0-194-69.5t-73-189.5q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q10 0 43 21.5t73 48 107 48 135 21.5 135-21.5 107-48 73-48 43-21.5q61 0 111.5 20t85.5 53.5 62 81 43 97.5 26.5 108.5 14 109 3.5 103.5zM640 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1344 640q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1920 865q0 78-56 118.5t-138 40.5h-134q-103-123-265-128 81-117 81-256 0-29-5-66 66 23 133 23 59 0 119-21.5t97.5-42.5 43.5-21q124 0 124 353zM1792 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181z"
+ }
+ }]
+};
+exports.users = users;
+var chain = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1456 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zM753 511q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z"
+ }
+ }]
+};
+exports.chain = chain;
+var link = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1456 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zM753 511q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z"
+ }
+ }]
+};
+exports.link = link;
+var cloud = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-132 71-241.5t187-163.5q-2-28-2-43 0-212 150-362t362-150q158 0 286.5 88t187.5 230q70-62 166-62 106 0 181 75t75 181q0 75-41 138 129 30 213 134.5t84 239.5z"
+ }
+ }]
+};
+exports.cloud = cloud;
+var flask = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1527 1448q56 89 21.5 152.5t-140.5 63.5h-1152q-106 0-140.5-63.5t21.5-152.5l503-793v-399h-64q-26 0-45-19t-19-45 19-45 45-19h512q26 0 45 19t19 45-19 45-45 19h-64v399zM748 723l-272 429h712l-272-429-20-31v-37-399h-128v399 37z"
+ }
+ }]
+};
+exports.flask = flask;
+var cut = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1260 960l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zM579 700q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zM494 1445q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zM672 832l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zM896 1056l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zM1600 1472l128-64-520-408-177 138q-2 3-13 7z"
+ }
+ }]
+};
+exports.cut = cut;
+var scissors = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1260 960l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zM579 700q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zM494 1445q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zM672 832l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zM896 1056l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zM1600 1472l128-64-520-408-177 138q-2 3-13 7z"
+ }
+ }]
+};
+exports.scissors = scissors;
+var copy = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1696 384q40 0 68 28t28 68v1216q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-288h-544q-40 0-68-28t-28-68v-672q0-40 20-88t48-76l408-408q28-28 76-48t88-20h416q40 0 68 28t28 68v328q68-40 128-40h416zM1152 597l-299 299h299v-299zM512 213l-299 299h299v-299zM708 860l316-316v-416h-384v416q0 40-28 68t-68 28h-416v640h512v-256q0-40 20-88t48-76zM1664 1664v-1152h-384v416q0 40-28 68t-68 28h-416v640h896z"
+ }
+ }]
+};
+exports.copy = copy;
+var filesO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1696 384q40 0 68 28t28 68v1216q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-288h-544q-40 0-68-28t-28-68v-672q0-40 20-88t48-76l408-408q28-28 76-48t88-20h416q40 0 68 28t28 68v328q68-40 128-40h416zM1152 597l-299 299h299v-299zM512 213l-299 299h299v-299zM708 860l316-316v-416h-384v416q0 40-28 68t-68 28h-416v640h512v-256q0-40 20-88t48-76zM1664 1664v-1152h-384v416q0 40-28 68t-68 28h-416v640h896z"
+ }
+ }]
+};
+exports.filesO = filesO;
+var paperclip = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1404 1385q0 117-79 196t-196 79q-135 0-235-100l-777-776q-113-115-113-271 0-159 110-270t269-111q158 0 273 113l605 606q10 10 10 22 0 16-30.5 46.5t-46.5 30.5q-13 0-23-10l-606-607q-79-77-181-77-106 0-179 75t-73 181q0 105 76 181l776 777q63 63 145 63 64 0 106-42t42-106q0-82-63-145l-581-581q-26-24-60-24-29 0-48 19t-19 48q0 32 25 59l410 410q10 10 10 22 0 16-31 47t-47 31q-12 0-22-10l-410-410q-63-61-63-149 0-82 57-139t139-57q88 0 149 63l581 581q100 98 100 235z"
+ }
+ }]
+};
+exports.paperclip = paperclip;
+var floppyO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1536h768v-384h-768v384zM1280 1536h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zM896 608v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zM1536 640v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z"
+ }
+ }]
+};
+exports.floppyO = floppyO;
+var save = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1536h768v-384h-768v384zM1280 1536h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zM896 608v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zM1536 640v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z"
+ }
+ }]
+};
+exports.save = save;
+var square = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.square = square;
+var bars = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.bars = bars;
+var navicon = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.navicon = navicon;
+var reorder = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.reorder = reorder;
+var listUl = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 896q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 800v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM1792 288v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.listUl = listUl;
+var listOl = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M381 1620q0 80-54.5 126t-135.5 46q-106 0-172-66l57-88q49 45 106 45 29 0 50.5-14.5t21.5-42.5q0-64-105-56l-26-56q8-10 32.5-43.5t42.5-54 37-38.5v-1q-16 0-48.5 1t-48.5 1v53h-106v-152h333v88l-95 115q51 12 81 49t30 88zM383 993v159h-362q-6-36-6-54 0-51 23.5-93t56.5-68 66-47.5 56.5-43.5 23.5-45q0-25-14.5-38.5t-39.5-13.5q-46 0-81 58l-85-59q24-51 71.5-79.5t105.5-28.5q73 0 123 41.5t50 112.5q0 50-34 91.5t-75 64.5-75.5 50.5-35.5 52.5h127v-60h105zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zM384 413v99h-335v-99h107q0-41 0.5-121.5t0.5-121.5v-12h-2q-8 17-50 54l-71-76 136-127h106v404h108zM1792 800v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zM1792 288v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.listOl = listOl;
+var strikethrough = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1760 896q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1728zM483 832q-28-35-51-80-48-98-48-188 0-181 134-309 133-127 393-127 50 0 167 19 66 12 177 48 10 38 21 118 14 123 14 183 0 18-5 45l-12 3-84-6-14-2q-50-149-103-205-88-91-210-91-114 0-182 59-67 58-67 146 0 73 66 140t279 129q69 20 173 66 58 28 95 52h-743zM990 1088h411q7 39 7 92 0 111-41 212-23 56-71 104-37 35-109 81-80 48-153 66-80 21-203 21-114 0-195-23l-140-40q-57-16-72-28-8-8-8-22v-13q0-108-2-156-1-30 0-68l2-37v-44l102-2q15 34 30 71t22.5 56 12.5 27q35 57 80 94 43 36 105 57 59 22 132 22 64 0 139-27 77-26 122-86 47-61 47-129 0-84-81-157-34-29-137-71z"
+ }
+ }]
+};
+exports.strikethrough = strikethrough;
+var underline = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48 223q-37-2-45-4l-3-88q13-1 40-1 60 0 112 4 132 7 166 7 86 0 168-3 116-4 146-5 56 0 86-2l-1 14 2 64v9q-60 9-124 9-60 0-79 25-13 14-13 132 0 13 0.5 32.5t0.5 25.5l1 229 14 280q6 124 51 202 35 59 96 92 88 47 177 47 104 0 191-28 56-18 99-51 48-36 65-64 36-56 53-114 21-73 21-229 0-79-3.5-128t-11-122.5-13.5-159.5l-4-59q-5-67-24-88-34-35-77-34l-100 2-14-3 2-86h84l205 10q76 3 196-10l18 2q6 38 6 51 0 7-4 31-45 12-84 13-73 11-79 17-15 15-15 41 0 7 1.5 27t1.5 31q8 19 22 396 6 195-15 304-15 76-41 122-38 65-112 123-75 57-182 89-109 33-255 33-167 0-284-46-119-47-179-122-61-76-83-195-16-80-16-237v-333q0-188-17-213-25-36-147-39zM1536 1632v-64q0-14-9-23t-23-9h-1472q-14 0-23 9t-9 23v64q0 14 9 23t23 9h1472q14 0 23-9t9-23z"
+ }
+ }]
+};
+exports.underline = underline;
+var table = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM512 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM512 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1664 288v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.table = table;
+var magic = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1190 581l293-293-107-107-293 293zM1637 288q0 27-18 45l-1286 1286q-18 18-45 18t-45-18l-198-198q-18-18-18-45t18-45l1286-1286q18-18 45-18t45 18l198 198q18 18 18 45zM286 98l98 30-98 30-30 98-30-98-98-30 98-30 30-98zM636 260l196 60-196 60-60 196-60-196-196-60 196-60 60-196zM1566 738l98 30-98 30-30 98-30-98-98-30 98-30 30-98zM926 98l98 30-98 30-30 98-30-98-98-30 98-30 30-98z"
+ }
+ }]
+};
+exports.magic = magic;
+var truck = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM256 896h384v-256h-158q-13 0-22 9l-195 195q-9 9-9 22v30zM1536 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM1792 320v1024q0 15-4 26.5t-13.5 18.5-16.5 11.5-23.5 6-22.5 2-25.5 0-22.5-0.5q0 106-75 181t-181 75-181-75-75-181h-384q0 106-75 181t-181 75-181-75-75-181h-64q-3 0-22.5 0.5t-25.5 0-22.5-2-23.5-6-16.5-11.5-13.5-18.5-4-26.5q0-26 19-45t45-19v-320q0-8-0.5-35t0-38 2.5-34.5 6.5-37 14-30.5 22.5-30l198-198q19-19 50.5-32t58.5-13h160v-192q0-26 19-45t45-19h1024q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.truck = truck;
+var pinterest = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 209-103 385.5t-279.5 279.5-385.5 103q-111 0-218-32 59-93 78-164 9-34 54-211 20 39 73 67.5t114 28.5q121 0 216-68.5t147-188.5 52-270q0-114-59.5-214t-172.5-163-255-63q-105 0-196 29t-154.5 77-109 110.5-67 129.5-21.5 134q0 104 40 183t117 111q30 12 38-20 2-7 8-31t8-30q6-23-11-43-51-61-51-151 0-151 104.5-259.5t273.5-108.5q151 0 235.5 82t84.5 213q0 170-68.5 289t-175.5 119q-61 0-98-43.5t-23-104.5q8-35 26.5-93.5t30-103 11.5-75.5q0-50-27-83t-77-33q-62 0-105 57t-43 142q0 73 25 122l-99 418q-17 70-13 177-206-91-333-281t-127-423q0-209 103-385.5t279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.pinterest = pinterest;
+var pinterestSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-725q85-122 108-210 9-34 53-209 21 39 73.5 67t112.5 28q181 0 295.5-147.5t114.5-373.5q0-84-35-162.5t-96.5-139-152.5-97-197-36.5q-104 0-194.5 28.5t-153 76.5-107.5 109.5-66.5 128-21.5 132.5q0 102 39.5 180t116.5 110q13 5 23.5 0t14.5-19q10-44 15-61 6-23-11-42-50-62-50-150 0-150 103.5-256.5t270.5-106.5q149 0 232.5 81t83.5 210q0 168-67.5 286t-173.5 118q-60 0-97-43.5t-23-103.5q8-34 26.5-92.5t29.5-102 11-74.5q0-49-26.5-81.5t-75.5-32.5q-61 0-103.5 56.5t-42.5 139.5q0 72 24 121l-98 414q-24 100-7 254h-183q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960z"
+ }
+ }]
+};
+exports.pinterestSquare = pinterestSquare;
+var googlePlusSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M917 905q0-26-6-64h-362v132h217q-3 24-16.5 50t-37.5 53-66.5 44.5-96.5 17.5q-99 0-169-71t-70-171 70-171 169-71q92 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.googlePlusSquare = googlePlusSquare;
+var googlePlus = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1437 913q0 208-87 370.5t-248 254-369 91.5q-149 0-285-58t-234-156-156-234-58-285 58-285 156-234 234-156 285-58q286 0 491 192l-199 191q-117-113-292-113-123 0-227.5 62t-165.5 168.5-61 232.5 61 232.5 165.5 168.5 227.5 62q83 0 152.5-23t114.5-57.5 78.5-78.5 49-83 21.5-74h-416v-252h692q12 63 12 122zM2304 791v210h-209v209h-210v-209h-209v-210h209v-209h210v209h209z"
+ }
+ }]
+};
+exports.googlePlus = googlePlus;
+var money = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 1152h384v-96h-128v-448h-114l-148 137 77 80q42-37 55-57h2v288h-128v96zM1280 896q0 70-21 142t-59.5 134-101.5 101-138 39-138-39-101.5-101-59.5-134-21-142 21-142 59.5-134 101.5-101 138-39 138 39 101.5 101 59.5 134 21 142zM1792 1152v-512q-106 0-181-75t-75-181h-1152q0 106-75 181t-181 75v512q106 0 181 75t75 181h1152q0-106 75-181t181-75zM1920 320v1152q0 26-19 45t-45 19h-1792q-26 0-45-19t-19-45v-1152q0-26 19-45t45-19h1792q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.money = money;
+var caretDown = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 704q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.caretDown = caretDown;
+var caretUp = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1216q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.caretUp = caretUp;
+var caretLeft = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 448v896q0 26-19 45t-45 19-45-19l-448-448q-19-19-19-45t19-45l448-448q19-19 45-19t45 19 19 45z"
+ }
+ }]
+};
+exports.caretLeft = caretLeft;
+var caretRight = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M576 896q0 26-19 45l-448 448q-19 19-45 19t-45-19-19-45v-896q0-26 19-45t45-19 45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.caretRight = caretRight;
+var columns = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160 1536h608v-1152h-640v1120q0 13 9.5 22.5t22.5 9.5zM1536 1504v-1120h-640v1152h608q13 0 22.5-9.5t9.5-22.5zM1664 288v1216q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1344q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.columns = columns;
+var sort = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45zM1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.sort = sort;
+var unsorted = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45zM1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.unsorted = unsorted;
+var sortDesc = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.sortDesc = sortDesc;
+var sortDown = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.sortDown = sortDown;
+var sortAsc = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.sortAsc = sortAsc;
+var sortUp = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.sortUp = sortUp;
+var envelope = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 710v794q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-794q44 49 101 87 362 246 497 345 57 42 92.5 65.5t94.5 48 110 24.5h1 1q51 0 110-24.5t94.5-48 92.5-65.5q170-123 498-345 57-39 100-87zM1792 416q0 79-49 151t-122 123q-376 261-468 325-10 7-42.5 30.5t-54 38-52 32.5-57.5 27-50 9h-1-1q-23 0-50-9t-57.5-27-52-32.5-54-38-42.5-30.5q-91-64-262-182.5t-205-142.5q-62-42-117-115.5t-55-136.5q0-78 41.5-130t118.5-52h1472q65 0 112.5 47t47.5 113z"
+ }
+ }]
+};
+exports.envelope = envelope;
+var linkedin = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M349 625v991h-330v-991h330zM370 319q1 73-50.5 122t-135.5 49h-2q-82 0-132-49t-50-122q0-74 51.5-122.5t134.5-48.5 133 48.5 51 122.5zM1536 1048v568h-329v-530q0-105-40.5-164.5t-126.5-59.5q-63 0-105.5 34.5t-63.5 85.5q-11 30-11 81v553h-329q2-399 2-647t-1-296l-1-48h329v144h-2q20-32 41-56t56.5-52 87-43.5 114.5-15.5q171 0 275 113.5t104 332.5z"
+ }
+ }]
+};
+exports.linkedin = linkedin;
+var rotateLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z"
+ }
+ }]
+};
+exports.rotateLeft = rotateLeft;
+var undo = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z"
+ }
+ }]
+};
+exports.undo = undo;
+var gavel = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1771 1536q0 53-37 90l-107 108q-39 37-91 37-53 0-90-37l-363-364q-38-36-38-90 0-53 43-96l-256-256-126 126q-14 14-34 14t-34-14q2 2 12.5 12t12.5 13 10 11.5 10 13.5 6 13.5 5.5 16.5 1.5 18q0 38-28 68-3 3-16.5 18t-19 20.5-18.5 16.5-22 15.5-22 9-26 4.5q-40 0-68-28l-408-408q-28-28-28-68 0-13 4.5-26t9-22 15.5-22 16.5-18.5 20.5-19 18-16.5q30-28 68-28 10 0 18 1.5t16.5 5.5 13.5 6 13.5 10 11.5 10 13 12.5 12 12.5q-14-14-14-34t14-34l348-348q14-14 34-14t34 14q-2-2-12.5-12t-12.5-13-10-11.5-10-13.5-6-13.5-5.5-16.5-1.5-18q0-38 28-68 3-3 16.5-18t19-20.5 18.5-16.5 22-15.5 22-9 26-4.5q40 0 68 28l408 408q28 28 28 68 0 13-4.5 26t-9 22-15.5 22-16.5 18.5-20.5 19-18 16.5q-30 28-68 28-10 0-18-1.5t-16.5-5.5-13.5-6-13.5-10-11.5-10-13-12.5-12-12.5q14 14 14 34t-14 34l-126 126 256 256q43-43 96-43 52 0 91 37l363 363q37 39 37 91z"
+ }
+ }]
+};
+exports.gavel = gavel;
+var legal = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1771 1536q0 53-37 90l-107 108q-39 37-91 37-53 0-90-37l-363-364q-38-36-38-90 0-53 43-96l-256-256-126 126q-14 14-34 14t-34-14q2 2 12.5 12t12.5 13 10 11.5 10 13.5 6 13.5 5.5 16.5 1.5 18q0 38-28 68-3 3-16.5 18t-19 20.5-18.5 16.5-22 15.5-22 9-26 4.5q-40 0-68-28l-408-408q-28-28-28-68 0-13 4.5-26t9-22 15.5-22 16.5-18.5 20.5-19 18-16.5q30-28 68-28 10 0 18 1.5t16.5 5.5 13.5 6 13.5 10 11.5 10 13 12.5 12 12.5q-14-14-14-34t14-34l348-348q14-14 34-14t34 14q-2-2-12.5-12t-12.5-13-10-11.5-10-13.5-6-13.5-5.5-16.5-1.5-18q0-38 28-68 3-3 16.5-18t19-20.5 18.5-16.5 22-15.5 22-9 26-4.5q40 0 68 28l408 408q28 28 28 68 0 13-4.5 26t-9 22-15.5 22-16.5 18.5-20.5 19-18 16.5q-30 28-68 28-10 0-18-1.5t-16.5-5.5-13.5-6-13.5-10-11.5-10-13-12.5-12-12.5q14 14 14 34t-14 34l-126 126 256 256q43-43 96-43 52 0 91 37l363 363q37 39 37 91z"
+ }
+ }]
+};
+exports.legal = legal;
+var dashboard = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM576 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1004 1185l101-382q6-26-7.5-48.5t-38.5-29.5-48 6.5-30 39.5l-101 382q-60 5-107 43.5t-63 98.5q-20 77 20 146t117 89 146-20 89-117q16-60-6-117t-72-91zM1664 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1472 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 1152q0 261-141 483-19 29-54 29h-1402q-35 0-54-29-141-221-141-483 0-182 71-348t191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.dashboard = dashboard;
+var tachometer = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM576 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1004 1185l101-382q6-26-7.5-48.5t-38.5-29.5-48 6.5-30 39.5l-101 382q-60 5-107 43.5t-63 98.5q-20 77 20 146t117 89 146-20 89-117q16-60-6-117t-72-91zM1664 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1472 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 1152q0 261-141 483-19 29-54 29h-1402q-35 0-54-29-141-221-141-483 0-182 71-348t191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.tachometer = tachometer;
+var commentO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 384q-204 0-381.5 69.5t-282 187.5-104.5 255q0 112 71.5 213.5t201.5 175.5l87 50-27 96q-24 91-70 172 152-63 275-171l43-38 57 6q69 8 130 8 204 0 381.5-69.5t282-187.5 104.5-255-104.5-255-282-187.5-381.5-69.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22h-5q-15 0-27-10.5t-16-27.5v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-174 120-321.5t326-233 450-85.5 450 85.5 326 233 120 321.5z"
+ }
+ }]
+};
+exports.commentO = commentO;
+var commentsO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 384q-153 0-286 52t-211.5 141-78.5 191q0 82 53 158t149 132l97 56-35 84q34-20 62-39l44-31 53 10q78 14 153 14 153 0 286-52t211.5-141 78.5-191-78.5-191-211.5-141-286-52zM704 256q191 0 353.5 68.5t256.5 186.5 94 257-94 257-256.5 186.5-353.5 68.5q-86 0-176-16-124 88-278 128-36 9-86 16h-3q-11 0-20.5-8t-11.5-21q-1-3-1-6.5t0.5-6.5 2-6l2.5-5t3.5-5.5 4-5 4.5-5 4-4.5q5-6 23-25t26-29.5 22.5-29 25-38.5 20.5-44q-124-72-195-177t-71-224q0-139 94-257t256.5-186.5 353.5-68.5zM1526 1425q10 24 20.5 44t25 38.5 22.5 29 26 29.5 23 25q1 1 4 4.5t4.5 5 4 5 3.5 5.5l2.5 5t2 6 0.5 6.5-1 6.5q-3 14-13 22t-22 7q-50-7-86-16-154-40-278-128-90 16-176 16-271 0-472-132 58 4 88 4 161 0 309-45t264-129q125-92 192-212t67-254q0-77-23-152 129 71 204 178t75 230q0 120-71 224.5t-195 176.5z"
+ }
+ }]
+};
+exports.commentsO = commentsO;
+var bolt = {
+ "viewBox": "0 0 896 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M885 566q18 20 7 44l-540 1157q-13 25-42 25-4 0-14-2-17-5-25.5-19t-4.5-30l197-808-406 101q-4 1-12 1-18 0-31-11-18-15-13-39l201-825q4-14 16-23t28-9h328q19 0 32 12.5t13 29.5q0 8-5 18l-171 463 396-98q8-2 12-2 19 0 34 15z"
+ }
+ }]
+};
+exports.bolt = bolt;
+var flash = {
+ "viewBox": "0 0 896 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M885 566q18 20 7 44l-540 1157q-13 25-42 25-4 0-14-2-17-5-25.5-19t-4.5-30l197-808-406 101q-4 1-12 1-18 0-31-11-18-15-13-39l201-825q4-14 16-23t28-9h328q19 0 32 12.5t13 29.5q0 8-5 18l-171 463 396-98q8-2 12-2 19 0 34 15z"
+ }
+ }]
+};
+exports.flash = flash;
+var sitemap = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1248v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192h-512v192h96q40 0 68 28t28 68v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192h-512v192h96q40 0 68 28t28 68v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192q0-52 38-90t90-38h512v-192h-96q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h320q40 0 68 28t28 68v320q0 40-28 68t-68 28h-96v192h512q52 0 90 38t38 90v192h96q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.sitemap = sitemap;
+var umbrella = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 828v580q0 104-76 180t-180 76-180-76-76-180q0-26 19-45t45-19 45 19 19 45q0 50 39 89t89 39 89-39 39-89v-580q33-11 64-11t64 11zM1664 855q0 13-9.5 22.5t-22.5 9.5q-11 0-23-10-49-46-93-69t-102-23q-68 0-128 37t-103 97q-7 10-17.5 28t-14.5 24q-11 17-28 17-18 0-29-17-4-6-14.5-24t-17.5-28q-43-60-102.5-97t-127.5-37-127.5 37-102.5 97q-7 10-17.5 28t-14.5 24q-11 17-29 17-17 0-28-17-4-6-14.5-24t-17.5-28q-43-60-103-97t-128-37q-58 0-102 23t-93 69q-12 10-23 10-13 0-22.5-9.5t-9.5-22.5q0-5 1-7 45-183 172.5-319.5t298-204.5 360.5-68q140 0 274.5 40t246.5 113.5 194.5 187 115.5 251.5q1 2 1 7zM896 128v98q-42-2-64-2t-64 2v-98q0-26 19-45t45-19 45 19 19 45z"
+ }
+ }]
+};
+exports.umbrella = umbrella;
+var clipboard = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 1664h896v-640h-416q-40 0-68-28t-28-68v-416h-384v1152zM1024 224v-64q0-13-9.5-22.5t-22.5-9.5h-704q-13 0-22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h704q13 0 22.5-9.5t9.5-22.5zM1280 896h299l-299-299v299zM1792 1024v672q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-544q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1088q40 0 68 28t28 68v328q21 13 36 28l408 408q28 28 48 76t20 88z"
+ }
+ }]
+};
+exports.clipboard = clipboard;
+var paste = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 1664h896v-640h-416q-40 0-68-28t-28-68v-416h-384v1152zM1024 224v-64q0-13-9.5-22.5t-22.5-9.5h-704q-13 0-22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h704q13 0 22.5-9.5t9.5-22.5zM1280 896h299l-299-299v299zM1792 1024v672q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-544q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1088q40 0 68 28t28 68v328q21 13 36 28l408 408q28 28 48 76t20 88z"
+ }
+ }]
+};
+exports.paste = paste;
+var lightbulbO = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M736 576q0 13-9.5 22.5t-22.5 9.5-22.5-9.5-9.5-22.5q0-46-54-71t-106-25q-13 0-22.5-9.5t-9.5-22.5 9.5-22.5 22.5-9.5q50 0 99.5 16t87 54 37.5 90zM896 576q0-72-34.5-134t-90-101.5-123-62-136.5-22.5-136.5 22.5-123 62-90 101.5-34.5 134q0 101 68 180 10 11 30.5 33t30.5 33q128 153 141 298h228q13-145 141-298 10-11 30.5-33t30.5-33q68-79 68-180zM1024 576q0 155-103 268-45 49-74.5 87t-59.5 95.5-34 107.5q47 28 47 82 0 37-25 64 25 27 25 64 0 52-45 81 13 23 13 47 0 46-31.5 71t-77.5 25q-20 44-60 70t-87 26-87-26-60-70q-46 0-77.5-25t-31.5-71q0-24 13-47-45-29-45-81 0-37 25-64-25-27-25-64 0-54 47-82-4-50-34-107.5t-59.5-95.5-74.5-87q-103-113-103-268 0-99 44.5-184.5t117-142 164-89 186.5-32.5 186.5 32.5 164 89 117 142 44.5 184.5z"
+ }
+ }]
+};
+exports.lightbulbO = lightbulbO;
+var exchange = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1184v192q0 13-9.5 22.5t-22.5 9.5h-1376v192q0 13-9.5 22.5t-22.5 9.5q-12 0-24-10l-319-320q-9-9-9-22 0-14 9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h1376q13 0 22.5 9.5t9.5 22.5zM1792 640q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-1376q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1376v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z"
+ }
+ }]
+};
+exports.exchange = exchange;
+var cloudDownload = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 928q0-14-9-23t-23-9h-224v-352q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v352h-224q-13 0-22.5 9.5t-9.5 22.5q0 14 9 23l352 352q9 9 23 9t23-9l351-351q10-12 10-24zM1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-130 70-240t188-165q-2-30-2-43 0-212 150-362t362-150q156 0 285.5 87t188.5 231q71-62 166-62 106 0 181 75t75 181q0 76-41 138 130 31 213.5 135.5t83.5 238.5z"
+ }
+ }]
+};
+exports.cloudDownload = cloudDownload;
+var cloudUpload = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 864q0-14-9-23l-352-352q-9-9-23-9t-23 9l-351 351q-10 12-10 24 0 14 9 23t23 9h224v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5v-352h224q13 0 22.5-9.5t9.5-22.5zM1920 1152q0 159-112.5 271.5t-271.5 112.5h-1088q-185 0-316.5-131.5t-131.5-316.5q0-130 70-240t188-165q-2-30-2-43 0-212 150-362t362-150q156 0 285.5 87t188.5 231q71-62 166-62 106 0 181 75t75 181q0 76-41 138 130 31 213.5 135.5t83.5 238.5z"
+ }
+ }]
+};
+exports.cloudUpload = cloudUpload;
+var userMd = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1344q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1408 1405q0 121-73 190t-194 69h-874q-121 0-194-69t-73-190q0-68 5.5-131t24-138 47.5-132.5 81-103 120-60.5q-22 52-22 120v203q-58 20-93 70t-35 111q0 80 56 136t136 56 136-56 56-136q0-61-35.5-111t-92.5-70v-203q0-62 25-93 132 104 295 104t295-104q25 31 25 93v64q-106 0-181 75t-75 181v89q-32 29-32 71 0 40 28 68t68 28 68-28 28-68q0-42-32-71v-89q0-52 38-90t90-38 90 38 38 90v89q-32 29-32 71 0 40 28 68t68 28 68-28 28-68q0-42-32-71v-89q0-68-34.5-127.5t-93.5-93.5q0-10 0.5-42.5t0-48-2.5-41.5-7-47-13-40q68 15 120 60.5t81 103 47.5 132.5 24 138 5.5 131zM1088 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z"
+ }
+ }]
+};
+exports.userMd = userMd;
+var stethoscope = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 704q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 704q0 62-35.5 111t-92.5 70v395q0 159-131.5 271.5t-316.5 112.5-316.5-112.5-131.5-271.5v-132q-164-20-274-128t-110-252v-512q0-26 19-45t45-19q6 0 16 2 17-30 47-48t65-18q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5q-33 0-64-18v402q0 106 94 181t226 75 226-75 94-181v-402q-31 18-64 18-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5q35 0 65 18t47 48q10-2 16-2 26 0 45 19t19 45v512q0 144-110 252t-274 128v132q0 106 94 181t226 75 226-75 94-181v-395q-57-21-92.5-70t-35.5-111q0-80 56-136t136-56 136 56 56 136z"
+ }
+ }]
+};
+exports.stethoscope = stethoscope;
+var suitcase = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 384h512v-128h-512v128zM288 384v1280h-64q-92 0-158-66t-66-158v-832q0-92 66-158t158-66h64zM1408 384v1280h-1024v-1280h128v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h128zM1792 608v832q0 92-66 158t-158 66h-64v-1280h64q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.suitcase = suitcase;
+var bell = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M912 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM1728 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-181-75-75-181h-448q-52 0-90-38t-38-90q50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 190 28 307 158.5t117 282.5q0 139 19.5 260t50 206 74.5 158.5 85 119.5 91 88z"
+ }
+ }]
+};
+exports.bell = bell;
+var coffee = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 640q0-80-56-136t-136-56h-64v384h64q80 0 136-56t56-136zM0 1408h1792q0 106-75 181t-181 75h-1280q-106 0-181-75t-75-181zM1856 640q0 159-112.5 271.5t-271.5 112.5h-64v32q0 92-66 158t-158 66h-704q-92 0-158-66t-66-158v-736q0-26 19-45t45-19h1152q159 0 271.5 112.5t112.5 271.5z"
+ }
+ }]
+};
+exports.coffee = coffee;
+var cutlery = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 64v640q0 61-35.5 111t-92.5 70v779q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-779q-57-20-92.5-70t-35.5-111v-640q0-26 19-45t45-19 45 19 19 45v416q0 26 19 45t45 19 45-19 19-45v-416q0-26 19-45t45-19 45 19 19 45v416q0 26 19 45t45 19 45-19 19-45v-416q0-26 19-45t45-19 45 19 19 45zM1408 64v1600q0 52-38 90t-90 38h-128q-52 0-90-38t-38-90v-512h-224q-13 0-22.5-9.5t-9.5-22.5v-800q0-132 94-226t226-94h256q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.cutlery = cutlery;
+var fileTextO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM384 800q0-14 9-23t23-9h704q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64zM1120 1024q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704zM1120 1280q14 0 23 9t9 23v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704z"
+ }
+ }]
+};
+exports.fileTextO = fileTextO;
+var buildingO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 544v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 288v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1664h384v-1536h-1152v1536h384v-224q0-13 9.5-22.5t22.5-9.5h320q13 0 22.5 9.5t9.5 22.5v224zM1408 64v1664q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h1280q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.buildingO = buildingO;
+var hospitalO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1312v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM640 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 1056v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1152 800v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM896 1664h384v-1152h-256v32q0 40-28 68t-68 28h-448q-40 0-68-28t-28-68v-32h-256v1152h384v-224q0-13 9.5-22.5t22.5-9.5h320q13 0 22.5 9.5t9.5 22.5v224zM896 480v-320q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v96h-128v-96q0-13-9.5-22.5t-22.5-9.5h-64q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5v-96h128v96q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5-9.5t9.5-22.5zM1408 448v1280q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1280q0-26 19-45t45-19h320v-288q0-40 28-68t68-28h448q40 0 68 28t28 68v288h320q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.hospitalO = hospitalO;
+var ambulance = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1408q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM256 896h384v-256h-158q-14 2-22 9l-195 195q-7 12-9 22v30zM1536 1408q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 736v-192q0-14-9-23t-23-9h-224v-224q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v224h-224q-14 0-23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23-9t9-23v-224h224q14 0 23-9t9-23zM1920 192v1152q0 26-19 45t-45 19h-192q0 106-75 181t-181 75-181-75-75-181h-384q0 106-75 181t-181 75-181-75-75-181h-128q-26 0-45-19t-19-45 19-45 45-19v-416q0-26 13-58t32-51l198-198q19-19 51-32t58-13h160v-320q0-26 19-45t45-19h1152q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.ambulance = ambulance;
+var medkit = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1120v-192q0-14-9-23t-23-9h-224v-224q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v224h-224q-14 0-23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23-9t9-23v-224h224q14 0 23-9t9-23zM640 384h512v-128h-512v128zM256 384v1280h-32q-92 0-158-66t-66-158v-832q0-92 66-158t158-66h32zM1440 384v1280h-1088v-1280h160v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h160zM1792 608v832q0 92-66 158t-158 66h-32v-1280h32q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.medkit = medkit;
+var fighterJet = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 960q-1 32-288 96l-352 32-224 64h-64l-293 352h69q26 0 45 4.5t19 11.5-19 11.5-45 4.5h-96-160-64v-32h64v-416h-160l-192 224h-96l-32-32v-192h32v-32h128v-8l-192-24v-128l192-24v-8h-128v-32h-32v-192l32-32h96l192 224h160v-416h-64v-32h64 160 96q26 0 45 4.5t19 11.5-19 11.5-45 4.5h-69l293 352h64l224 64 352 32q128 28 200 52t80 34z"
+ }
+ }]
+};
+exports.fighterJet = fighterJet;
+var beer = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 896v-384h-256v256q0 53 37.5 90.5t90.5 37.5h128zM1664 1344v192h-1152v-192l128-192h-128q-159 0-271.5-112.5t-112.5-271.5v-320l-64-64 32-128h480l32-128h960l32 192-64 32v800z"
+ }
+ }]
+};
+exports.beer = beer;
+var hSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1344v-896q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v320h-512v-320q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v896q0 26 19 45t45 19h128q26 0 45-19t19-45v-320h512v320q0 26 19 45t45 19h128q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.hSquare = hSquare;
+var plusSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 960v-128q0-26-19-45t-45-19h-320v-320q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v320h-320q-26 0-45 19t-19 45v128q0 26 19 45t45 19h320v320q0 26 19 45t45 19h128q26 0 45-19t19-45v-320h320q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.plusSquare = plusSquare;
+var angleDoubleLeft = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M627 1376q0 13-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23zM1011 1376q0 13-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23z"
+ }
+ }]
+};
+exports.angleDoubleLeft = angleDoubleLeft;
+var angleDoubleRight = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M595 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23zM979 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z"
+ }
+ }]
+};
+exports.angleDoubleRight = angleDoubleRight;
+var angleDoubleUp = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1075 1312q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23zM1075 928q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"
+ }
+ }]
+};
+exports.angleDoubleUp = angleDoubleUp;
+var angleDoubleDown = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1075 864q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23zM1075 480q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"
+ }
+ }]
+};
+exports.angleDoubleDown = angleDoubleDown;
+var angleLeft = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M627 544q0 13-10 23l-393 393 393 393q10 10 10 23t-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23z"
+ }
+ }]
+};
+exports.angleLeft = angleLeft;
+var angleRight = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M595 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z"
+ }
+ }]
+};
+exports.angleRight = angleRight;
+var angleUp = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1075 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"
+ }
+ }]
+};
+exports.angleUp = angleUp;
+var angleDown = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1075 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"
+ }
+ }]
+};
+exports.angleDown = angleDown;
+var desktop = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 992v-832q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v832q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 160v1088q0 66-47 113t-113 47h-544q0 37 16 77.5t32 71 16 43.5q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45q0-14 16-44t32-70 16-78h-544q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.desktop = desktop;
+var laptop = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416 1280q-66 0-113-47t-47-113v-704q0-66 47-113t113-47h1088q66 0 113 47t47 113v704q0 66-47 113t-113 47h-1088zM384 416v704q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5-9.5t9.5-22.5v-704q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5zM1760 1344h160v96q0 40-47 68t-113 28h-1600q-66 0-113-28t-47-68v-96h160 1600zM1040 1440q16 0 16-16t-16-16h-160q-16 0-16 16t16 16h160z"
+ }
+ }]
+};
+exports.laptop = laptop;
+var tablet = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1408q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1024 1248v-960q0-13-9.5-22.5t-22.5-9.5h-832q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h832q13 0 22.5-9.5t9.5-22.5zM1152 288v1088q0 66-47 113t-113 47h-832q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h832q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.tablet = tablet;
+var mobile = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464 1408q0-33-23.5-56.5t-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5 56.5-23.5 23.5-56.5zM672 1248v-704q0-13-9.5-22.5t-22.5-9.5h-512q-13 0-22.5 9.5t-9.5 22.5v704q0 13 9.5 22.5t22.5 9.5h512q13 0 22.5-9.5t9.5-22.5zM480 400q0-16-16-16h-160q-16 0-16 16t16 16h160q16 0 16-16zM768 384v1024q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-1024q0-52 38-90t90-38h512q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.mobile = mobile;
+var mobilePhone = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464 1408q0-33-23.5-56.5t-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5 56.5-23.5 23.5-56.5zM672 1248v-704q0-13-9.5-22.5t-22.5-9.5h-512q-13 0-22.5 9.5t-9.5 22.5v704q0 13 9.5 22.5t22.5 9.5h512q13 0 22.5-9.5t9.5-22.5zM480 400q0-16-16-16h-160q-16 0-16 16t16 16h160q16 0 16-16zM768 384v1024q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-1024q0-52 38-90t90-38h512q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.mobilePhone = mobilePhone;
+var circleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.circleO = circleO;
+var quoteLeft = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136zM1664 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136z"
+ }
+ }]
+};
+exports.quoteLeft = quoteLeft;
+var quoteRight = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 320v704q0 104-40.5 198.5t-109.5 163.5-163.5 109.5-198.5 40.5h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64q106 0 181-75t75-181v-32q0-40-28-68t-68-28h-224q-80 0-136-56t-56-136v-384q0-80 56-136t136-56h384q80 0 136 56t56 136zM1664 320v704q0 104-40.5 198.5t-109.5 163.5-163.5 109.5-198.5 40.5h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64q106 0 181-75t75-181v-32q0-40-28-68t-68-28h-224q-80 0-136-56t-56-136v-384q0-80 56-136t136-56h384q80 0 136 56t56 136z"
+ }
+ }]
+};
+exports.quoteRight = quoteRight;
+var spinner = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M526 1394q0 53-37.5 90.5t-90.5 37.5q-52 0-90-38t-38-90q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1024 1600q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM320 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1522 1394q0 52-38 90t-90 38q-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM558 398q0 66-47 113t-113 47-113-47-47-113 47-113 113-47 113 47 47 113zM1728 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1088 192q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1618 398q0 93-66 158.5t-158 65.5q-93 0-158.5-65.5t-65.5-158.5q0-92 65.5-158t158.5-66q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.spinner = spinner;
+var circle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.circle = circle;
+var mailReply = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1120q0 166-127 451-3 7-10.5 24t-13.5 30-13 22q-12 17-28 17-15 0-23.5-10t-8.5-25q0-9 2.5-26.5t2.5-23.5q5-68 5-123 0-101-17.5-181t-48.5-138.5-80-101-105.5-69.5-133-42.5-154-21.5-175.5-6h-224v256q0 26-19 45t-45 19-45-19l-512-512q-19-19-19-45t19-45l512-512q19-19 45-19t45 19 19 45v256h224q713 0 875 403 53 134 53 333z"
+ }
+ }]
+};
+exports.mailReply = mailReply;
+var reply = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1120q0 166-127 451-3 7-10.5 24t-13.5 30-13 22q-12 17-28 17-15 0-23.5-10t-8.5-25q0-9 2.5-26.5t2.5-23.5q5-68 5-123 0-101-17.5-181t-48.5-138.5-80-101-105.5-69.5-133-42.5-154-21.5-175.5-6h-224v256q0 26-19 45t-45 19-45-19l-512-512q-19-19-19-45t19-45l512-512q19-19 45-19t45 19 19 45v256h224q713 0 875 403 53 134 53 333z"
+ }
+ }]
+};
+exports.reply = reply;
+var githubAlt = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1216q0 40-12.5 82t-43 76-72.5 34-72.5-34-43-76-12.5-82 12.5-82 43-76 72.5-34 72.5 34 43 76 12.5 82zM1280 1216q0 40-12.5 82t-43 76-72.5 34-72.5-34-43-76-12.5-82 12.5-82 43-76 72.5-34 72.5 34 43 76 12.5 82zM1440 1216q0-120-69-204t-187-84q-41 0-195 21-71 11-157 11t-157-11q-152-21-195-21-118 0-187 84t-69 204q0 88 32 153.5t81 103 122 60 140 29.5 149 7h168q82 0 149-7t140-29.5 122-60 81-103 32-153.5zM1664 1040q0 207-61 331-38 77-105.5 133t-141 86-170 47.5-171.5 22-167 4.5q-78 0-142-3t-147.5-12.5-152.5-30-137-51.5-121-81-86-115q-62-123-62-331 0-237 136-396-27-82-27-170 0-116 51-218 108 0 190 39.5t189 123.5q147-35 309-35 148 0 280 32 105-82 187-121t189-39q51 102 51 218 0 87-27 168 136 160 136 398z"
+ }
+ }]
+};
+exports.githubAlt = githubAlt;
+var folderO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 1312v-704q0-40-28-68t-68-28h-704q-40 0-68-28t-28-68v-64q0-40-28-68t-68-28h-320q-40 0-68 28t-28 68v960q0 40 28 68t68 28h1216q40 0 68-28t28-68zM1664 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.folderO = folderO;
+var folderOpenO = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1781 931q0-35-53-35h-1088q-40 0-85.5 21.5t-71.5 52.5l-294 363q-18 24-18 40 0 35 53 35h1088q40 0 86-22t71-53l294-363q18-22 18-39zM640 768h768v-160q0-40-28-68t-68-28h-576q-40 0-68-28t-28-68v-64q0-40-28-68t-68-28h-320q-40 0-68 28t-28 68v853l256-315q44-53 116-87.5t140-34.5zM1909 931q0 62-46 120l-295 363q-43 53-116 87.5t-140 34.5h-1088q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h544q92 0 158 66t66 158v160h192q54 0 99 24.5t67 70.5q15 32 15 68z"
+ }
+ }]
+};
+exports.folderOpenO = folderOpenO;
+var smileO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1134 1075q-37 121-138 195t-228 74-228-74-138-195q-8-25 4-48.5t38-31.5q25-8 48.5 4t31.5 38q25 80 92.5 129.5t151.5 49.5 151.5-49.5 92.5-129.5q8-26 32-38t49-4 37 31.5 4 48.5zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.smileO = smileO;
+var frownO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1134 1229q8 25-4 48.5t-37 31.5-49-4-32-38q-25-80-92.5-129.5t-151.5-49.5-151.5 49.5-92.5 129.5q-8 26-31.5 38t-48.5 4q-26-8-38-31.5t-4-48.5q37-121 138-195t228-74 228 74 138 195zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.frownO = frownO;
+var mehO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 1088q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h640q26 0 45 19t19 45zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.mehO = mehO;
+var gamepad = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M832 1088v-128q0-14-9-23t-23-9h-192v-192q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v192h-192q-14 0-23 9t-9 23v128q0 14 9 23t23 9h192v192q0 14 9 23t23 9h128q14 0 23-9t9-23v-192h192q14 0 23-9t9-23zM1408 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1920 1024q0 212-150 362t-362 150q-192 0-338-128h-220q-146 128-338 128-212 0-362-150t-150-362 150-362 362-150h896q212 0 362 150t150 362z"
+ }
+ }]
+};
+exports.gamepad = gamepad;
+var keyboardO = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1168v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM512 912v96q0 16-16 16h-224q-16 0-16-16v-96q0-16 16-16h224q16 0 16 16zM384 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1408 1168v96q0 16-16 16h-864q-16 0-16-16v-96q0-16 16-16h864q16 0 16 16zM768 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM640 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1024 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM896 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1280 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1664 1168v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1152 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1408 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1664 656v352q0 16-16 16h-224q-16 0-16-16v-96q0-16 16-16h112v-240q0-16 16-16h96q16 0 16 16zM1792 1408v-896h-1664v896h1664zM1920 512v896q0 53-37.5 90.5t-90.5 37.5h-1664q-53 0-90.5-37.5t-37.5-90.5v-896q0-53 37.5-90.5t90.5-37.5h1664q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.keyboardO = keyboardO;
+var flagO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1045v-616q-169 91-306 91-82 0-145-32-100-49-184-76.5t-178-27.5q-173 0-403 127v599q245-113 433-113 55 0 103.5 7.5t98 26 77 31 82.5 39.5l28 14q44 22 101 22 120 0 293-92zM320 256q0 35-17.5 64t-46.5 46v1266q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-1266q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 39-35 57-10 5-17 9-218 116-369 116-88 0-158-35l-28-14q-64-33-99-48t-91-29-114-14q-102 0-235.5 44t-228.5 102q-15 9-33 9-16 0-32-8-32-19-32-56v-742q0-35 31-55 35-21 78.5-42.5t114-52 152.5-49.5 155-19q112 0 209 31t209 86q38 19 89 19 122 0 310-112 22-12 31-17 31-16 62 2 31 20 31 55z"
+ }
+ }]
+};
+exports.flagO = flagO;
+var flagCheckered = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M832 1000v-192q-181 16-384 117v185q205-96 384-110zM832 582v-197q-172 8-384 126v189q215-111 384-118zM1664 1045v-184q-235 116-384 71v-224q-20-6-39-15-5-3-33-17t-34.5-17-31.5-15-34.5-15.5-32.5-13-36-12.5-35-8.5-39.5-7.5-39.5-4-44-2q-23 0-49 3v222h19q102 0 192.5 29t197.5 82q19 9 39 15v188q42 17 91 17 120 0 293-92zM1664 618v-189q-169 91-306 91-45 0-78-8v196q148 42 384-90zM320 256q0 35-17.5 64t-46.5 46v1266q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-1266q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1792 320v763q0 39-35 57-10 5-17 9-218 116-369 116-88 0-158-35l-28-14q-64-33-99-48t-91-29-114-14q-102 0-235.5 44t-228.5 102q-15 9-33 9-16 0-32-8-32-19-32-56v-742q0-35 31-55 35-21 78.5-42.5t114-52 152.5-49.5 155-19q112 0 209 31t209 86q38 19 89 19 122 0 310-112 22-12 31-17 31-16 62 2 31 20 31 55z"
+ }
+ }]
+};
+exports.flagCheckered = flagCheckered;
+var terminal = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M585 983l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23zM1664 1440v64q0 14-9 23t-23 9h-960q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h960q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.terminal = terminal;
+var code = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M617 1399l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23t-10 23zM1208 332l-373 1291q-4 13-15.5 19.5t-23.5 2.5l-62-17q-13-4-19.5-15.5t-2.5-24.5l373-1291q4-13 15.5-19.5t23.5-2.5l62 17q13 4 19.5 15.5t2.5 24.5zM1865 983l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23z"
+ }
+ }]
+};
+exports.code = code;
+var mailReplyAll = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1082v70q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v69l-397 398q-19 19-19 45t19 45zM1792 1120q0 58-17 133.5t-38.5 138-48 125-40.5 90.5l-20 40q-8 17-28 17-6 0-9-1-25-8-23-34 43-400-106-565-64-71-170.5-110.5t-267.5-52.5v251q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v262q411 28 599 221 169 173 169 509z"
+ }
+ }]
+};
+exports.mailReplyAll = mailReplyAll;
+var replyAll = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1082v70q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v69l-397 398q-19 19-19 45t19 45zM1792 1120q0 58-17 133.5t-38.5 138-48 125-40.5 90.5l-20 40q-8 17-28 17-6 0-9-1-25-8-23-34 43-400-106-565-64-71-170.5-110.5t-267.5-52.5v251q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v262q411 28 599 221 169 173 169 509z"
+ }
+ }]
+};
+exports.replyAll = replyAll;
+var starHalfEmpty = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z"
+ }
+ }]
+};
+exports.starHalfEmpty = starHalfEmpty;
+var starHalfFull = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z"
+ }
+ }]
+};
+exports.starHalfFull = starHalfFull;
+var starHalfO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z"
+ }
+ }]
+};
+exports.starHalfO = starHalfO;
+var locationArrow = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1401 349l-640 1280q-17 35-57 35-5 0-15-2-22-5-35.5-22.5t-13.5-39.5v-576h-576q-22 0-39.5-13.5t-22.5-35.5 4-42 29-30l1280-640q13-7 29-7 27 0 45 19 15 14 18.5 34.5t-6.5 39.5z"
+ }
+ }]
+};
+exports.locationArrow = locationArrow;
+var crop = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M557 1280h595v-595zM512 1235l595-595h-595v595zM1664 1312v192q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-224h-864q-14 0-23-9t-9-23v-864h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h192q14 0 23 9t9 23v224h851l246-247q10-9 23-9t23 9q9 10 9 23t-9 23l-247 246v851h224q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.crop = crop;
+var codeFork = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288 1472q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM288 320q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM928 448q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1024 448q0 52-26 96.5t-70 69.5q-2 287-226 414-67 38-203 81-128 40-169.5 71t-41.5 100v26q44 25 70 69.5t26 96.5q0 80-56 136t-136 56-136-56-56-136q0-52 26-96.5t70-69.5v-820q-44-25-70-69.5t-26-96.5q0-80 56-136t136-56 136 56 56 136q0 52-26 96.5t-70 69.5v497q54-26 154-57 55-17 87.5-29.5t70.5-31 59-39.5 40.5-51 28-69.5 8.5-91.5q-44-25-70-69.5t-26-96.5q0-80 56-136t136-56 136 56 56 136z"
+ }
+ }]
+};
+exports.codeFork = codeFork;
+var chainBroken = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M439 1271l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zM608 1312v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM384 1088q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zM1031 492l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zM1664 576q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1120 32v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM1527 183l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z"
+ }
+ }]
+};
+exports.chainBroken = chainBroken;
+var unlink = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M439 1271l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zM608 1312v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM384 1088q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zM1031 492l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zM1664 576q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1120 32v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM1527 183l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z"
+ }
+ }]
+};
+exports.unlink = unlink;
+var question = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 1256v240q0 16-12 28t-28 12h-240q-16 0-28-12t-12-28v-240q0-16 12-28t28-12h240q16 0 28 12t12 28zM1020 656q0 54-15.5 101t-35 76.5-55 59.5-57.5 43.5-61 35.5q-41 23-68.5 65t-27.5 67q0 17-12 32.5t-28 15.5h-240q-15 0-25.5-18.5t-10.5-37.5v-45q0-83 65-156.5t143-108.5q59-27 84-56t25-76q0-42-46.5-74t-107.5-32q-65 0-108 29-35 25-107 115-13 16-31 16-12 0-25-8l-164-125q-13-10-15.5-25t5.5-28q160-266 464-266 80 0 161 31t146 83 106 127.5 41 158.5z"
+ }
+ }]
+};
+exports.question = question;
+var info = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344v128q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64v-384h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h384q26 0 45 19t19 45v576h64q26 0 45 19t19 45zM512 192v192q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-192q0-26 19-45t45-19h256q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.info = info;
+var exclamation = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1248v224q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-224q0-26 19-45t45-19h256q26 0 45 19t19 45zM542 192l-28 768q-1 26-20.5 45t-45.5 19h-256q-26 0-45.5-19t-20.5-45l-28-768q-1-26 17.5-45t44.5-19h320q26 0 44.5 19t17.5 45z"
+ }
+ }]
+};
+exports.exclamation = exclamation;
+var superscript = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M897 1369v167h-248l-159-252-24-42q-8-9-11-21h-3q-1 3-2.5 6.5t-3.5 8-3 6.5q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zM1534 690v206h-514l-3-27q-4-28-4-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 83-65 188-65 110 0 178 59.5t68 158.5q0 56-24.5 103t-62 76.5-81.5 58.5-82 50.5-65.5 51.5-30.5 63h232v-80h126z"
+ }
+ }]
+};
+exports.superscript = superscript;
+var subscript = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M897 1369v167h-248l-159-252-24-42q-8-9-11-21h-3q-1 3-2.5 6.5t-3.5 8-3 6.5q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zM1536 1586v206h-514l-4-27q-3-45-3-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 80-65 188-65 110 0 178 59.5t68 158.5q0 66-34.5 118.5t-84 86-99.5 62.5-87 63-41 73h232v-80h126z"
+ }
+ }]
+};
+exports.subscript = subscript;
+var eraser = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1408l336-384h-768l-336 384h768zM1909 331q15 34 9.5 71.5t-30.5 65.5l-896 1024q-38 44-96 44h-768q-38 0-69.5-20.5t-47.5-54.5q-15-34-9.5-71.5t30.5-65.5l896-1024q38-44 96-44h768q38 0 69.5 20.5t47.5 54.5z"
+ }
+ }]
+};
+exports.eraser = eraser;
+var puzzlePiece = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1098q0 81-44.5 135t-123.5 54q-41 0-77.5-17.5t-59-38-56.5-38-71-17.5q-110 0-110 124 0 39 16 115t15 115v5q-22 0-33 1-34 3-97.5 11.5t-115.5 13.5-98 5q-61 0-103-26.5t-42-83.5q0-37 17.5-71t38-56.5 38-59 17.5-77.5q0-79-54-123.5t-135-44.5q-84 0-143 45.5t-59 127.5q0 43 15 83t33.5 64.5 33.5 53 15 50.5q0 45-46 89-37 35-117 35-95 0-245-24-9-2-27.5-4t-27.5-4l-13-2q-1 0-3-1-2 0-2-1v-1024q2 1 17.5 3.5t34 5 21.5 3.5q150 24 245 24 80 0 117-35 46-44 46-89 0-22-15-50.5t-33.5-53-33.5-64.5-15-83q0-82 59-127.5t144-45.5q80 0 134 44.5t54 123.5q0 41-17.5 77.5t-38 59-38 56.5-17.5 71q0 57 42 83.5t103 26.5q64 0 180-15t163-17v2q-1 2-3.5 17.5t-5 34-3.5 21.5q-24 150-24 245 0 80 35 117 44 46 89 46 22 0 50.5-15t53-33.5 64.5-33.5 83-15q82 0 127.5 59t45.5 143z"
+ }
+ }]
+};
+exports.puzzlePiece = puzzlePiece;
+var microphone = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 704v128q0 221-147.5 384.5t-364.5 187.5v132h256q26 0 45 19t19 45-19 45-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h256v-132q-217-24-364.5-187.5t-147.5-384.5v-128q0-26 19-45t45-19 45 19 19 45v128q0 185 131.5 316.5t316.5 131.5 316.5-131.5 131.5-316.5v-128q0-26 19-45t45-19 45 19 19 45zM896 320v512q0 132-94 226t-226 94-226-94-94-226v-512q0-132 94-226t226-94 226 94 94 226z"
+ }
+ }]
+};
+exports.microphone = microphone;
+var microphoneSlash = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M271 945l-101 101q-42-103-42-214v-128q0-26 19-45t45-19 45 19 19 45v128q0 53 15 113zM1385 343l-361 361v128q0 132-94 226t-226 94q-55 0-109-19l-96 96q97 51 205 51 185 0 316.5-131.5t131.5-316.5v-128q0-26 19-45t45-19 45 19 19 45v128q0 221-147.5 384.5t-364.5 187.5v132h256q26 0 45 19t19 45-19 45-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h256v-132q-125-13-235-81l-254 254q-10 10-23 10t-23-10l-82-82q-10-10-10-23t10-23l1234-1234q10-10 23-10t23 10l82 82q10 10 10 23t-10 23zM1005 211l-621 621v-512q0-132 94-226t226-94q102 0 184.5 59t116.5 152z"
+ }
+ }]
+};
+exports.microphoneSlash = microphoneSlash;
+var shield = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 960v-640h-448v1137q119-63 213-137 235-184 235-360zM1280 192v768q0 86-33.5 170.5t-83 150-118 127.5-126.5 103-121 77.5-89.5 49.5-42.5 20q-12 6-26 6t-26-6q-16-7-42.5-20t-89.5-49.5-121-77.5-126.5-103-118-127.5-83-150-33.5-170.5v-768q0-26 19-45t45-19h1152q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.shield = shield;
+var calendarO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calendarO = calendarO;
+var fireExtinguisher = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 192q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 160v320q0 16-12 25-8 7-20 7-4 0-7-1l-448-96q-11-2-18-11t-7-20h-256v102q111 23 183.5 111t72.5 203v800q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-800q0-106 62.5-190.5t161.5-114.5v-111h-32q-59 0-115 23.5t-91.5 53-66 66.5-40.5 53.5-14 24.5q-17 35-57 35-16 0-29-7-23-12-31.5-37t3.5-49q5-10 14.5-26t37.5-53.5 60.5-70 85-67 108.5-52.5q-25-42-25-86 0-66 47-113t113-47 113 47 47 113q0 33-14 64h302q0-11 7-20t18-11l448-96q3-1 7-1 12 0 20 7 12 9 12 25z"
+ }
+ }]
+};
+exports.fireExtinguisher = fireExtinguisher;
+var rocket = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1440 448q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1664 160q0 249-75.5 430.5t-253.5 360.5q-81 80-195 176l-20 379q-2 16-16 26l-384 224q-7 4-16 4-12 0-23-9l-64-64q-13-14-8-32l85-276-281-281-276 85q-3 1-9 1-14 0-23-9l-64-64q-17-19-5-39l224-384q10-14 26-16l379-20q96-114 176-195 188-187 358-258t431-71q14 0 24 9.5t10 22.5z"
+ }
+ }]
+};
+exports.rocket = rocket;
+var maxcdn = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1745 773l-164 763h-334l178-832q13-56-15-88-27-33-83-33h-169l-204 953h-334l204-953h-286l-204 953h-334l204-953-153-327h1276q101 0 189.5 40.5t147.5 113.5q60 73 81 168.5t0 194.5z"
+ }
+ }]
+};
+exports.maxcdn = maxcdn;
+var chevronCircleLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M909 1395l102-102q19-19 19-45t-19-45l-307-307 307-307q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-454 454q-19 19-19 45t19 45l454 454q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.chevronCircleLeft = chevronCircleLeft;
+var chevronCircleRight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M717 1395l454-454q19-19 19-45t-19-45l-454-454q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l307 307-307 307q-19 19-19 45t19 45l102 102q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.chevronCircleRight = chevronCircleRight;
+var chevronCircleUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1165 1139l102-102q19-19 19-45t-19-45l-454-454q-19-19-45-19t-45 19l-454 454q-19 19-19 45t19 45l102 102q19 19 45 19t45-19l307-307 307 307q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.chevronCircleUp = chevronCircleUp;
+var chevronCircleDown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M813 1299l454-454q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-307 307-307-307q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l454 454q19 19 45 19t45-19zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.chevronCircleDown = chevronCircleDown;
+var html5 = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1130 597l16-175h-884l47 534h612l-22 228-197 53-196-53-13-140h-175l22 278 362 100h4v-1l359-99 50-544h-644l-15-181h674zM0 128h1408l-128 1438-578 162-574-162z"
+ }
+ }]
+};
+exports.html5 = html5;
+var css3 = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M275 128h1505l-266 1333-804 267-698-267 71-356h297l-29 147 422 161 486-161 68-339h-1208l58-297h1209l38-191h-1208z"
+ }
+ }]
+};
+exports.css3 = css3;
+var anchor = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 256q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1792 1184v352q0 22-20 30-8 2-12 2-12 0-23-9l-93-93q-119 143-318.5 226.5t-429.5 83.5-429.5-83.5-318.5-226.5l-93 93q-9 9-23 9-4 0-12-2-20-8-20-30v-352q0-14 9-23t23-9h352q22 0 30 20 8 19-7 35l-100 100q67 91 189.5 153.5t271.5 82.5v-647h-192q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h192v-163q-58-34-93-92.5t-35-128.5q0-106 75-181t181-75 181 75 75 181q0 70-35 128.5t-93 92.5v163h192q26 0 45 19t19 45v128q0 26-19 45t-45 19h-192v647q149-20 271.5-82.5t189.5-153.5l-100-100q-15-16-7-35 8-20 30-20h352q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.anchor = anchor;
+var unlockAlt = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1056 768q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-320q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45q0-106-75-181t-181-75-181 75-75 181v320h736z"
+ }
+ }]
+};
+exports.unlockAlt = unlockAlt;
+var bullseye = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 896q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1152 896q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM1280 896q0 212-150 362t-362 150-362-150-150-362 150-362 362-150 362 150 150 362zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.bullseye = bullseye;
+var ellipsisH = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM896 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM1408 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.ellipsisH = ellipsisH;
+var ellipsisV = {
+ "viewBox": "0 0 384 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1248v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM384 736v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68zM384 224v192q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h192q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.ellipsisV = ellipsisV;
+var rssSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1280q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM863 1374q-13-233-176.5-396.5t-396.5-176.5q-14-1-24 9t-10 23v128q0 13 8.5 22t21.5 10q154 11 264 121t121 264q1 13 10 21.5t22 8.5h128q13 0 23-10t9-24zM1247 1375q-5-154-56-297.5t-139.5-260-205-205-260-139.5-297.5-56q-14-1-23 9-10 10-10 23v128q0 13 9 22t22 10q204 7 378 111.5t278.5 278.5 111.5 378q1 13 10 22t22 9h128q13 0 23-10 11-9 9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.rssSquare = rssSquare;
+var playCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM1152 951q32-18 32-55t-32-55l-544-320q-31-19-64-1-32 19-32 56v640q0 37 32 56 16 8 32 8 17 0 32-9z"
+ }
+ }]
+};
+exports.playCircle = playCircle;
+var ticket = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 452l316 316-572 572-316-316zM813 1431l618-618q19-19 19-45t-19-45l-362-362q-18-18-45-18t-45 18l-618 618q-19 19-19 45t19 45l362 362q18 18 45 18t45-18zM1702 794l-907 908q-37 37-90.5 37t-90.5-37l-126-126q56-56 56-136t-56-136-136-56-136 56l-125-126q-37-37-37-90.5t37-90.5l907-906q37-37 90.5-37t90.5 37l125 125q-56 56-56 136t56 136 136 56 136-56l126 125q37 37 37 90.5t-37 90.5z"
+ }
+ }]
+};
+exports.ticket = ticket;
+var minusSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 960v-128q0-26-19-45t-45-19h-896q-26 0-45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.minusSquare = minusSquare;
+var minusSquareO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 800v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h832q14 0 23 9t9 23zM1280 1248v-832q0-66-47-113t-113-47h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.minusSquareO = minusSquareO;
+var levelUp = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1018 603q-18 37-58 37h-192v864q0 14-9 23t-23 9h-704q-21 0-29-18-8-20 4-35l160-192q9-11 25-11h320v-640h-192q-40 0-58-37-17-37 9-68l320-384q18-22 49-22t49 22l320 384q27 32 9 68z"
+ }
+ }]
+};
+exports.levelUp = levelUp;
+var levelDown = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32 256h704q13 0 22.5 9.5t9.5 23.5v863h192q40 0 58 37t-9 69l-320 384q-18 22-49 22t-49-22l-320-384q-26-31-9-69 18-37 58-37h192v-640h-320q-14 0-25-11l-160-192q-13-14-4-34 9-19 29-19z"
+ }
+ }]
+};
+exports.levelDown = levelDown;
+var checkSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M685 1299l614-614q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-467 467-211-211q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l358 358q19 19 45 19t45-19zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.checkSquare = checkSquare;
+var pencilSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M404 1108l152 152-52 52h-56v-96h-96v-56zM818 718q14 13-3 30l-291 291q-17 17-30 3-14-13 3-30l291-291q17-17 30-3zM544 1408l544-544-288-288-544 544v288h288zM1152 800l92-92q28-28 28-68t-28-68l-152-152q-28-28-68-28t-68 28l-92 92zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.pencilSquare = pencilSquare;
+var externalLinkSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 928v-480q0-26-19-45t-45-19h-480q-42 0-59 39-17 41 14 70l144 144-534 534q-19 19-19 45t19 45l102 102q19 19 45 19t45-19l534-534 144 144q18 19 45 19 12 0 25-5 39-17 39-59zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.externalLinkSquare = externalLinkSquare;
+var shareSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1005 1101l352-352q19-19 19-45t-19-45l-352-352q-30-31-69-14-40 17-40 59v160q-119 0-216 19.5t-162.5 51-114 79-76.5 95.5-44.5 109-21.5 111.5-5 110.5q0 181 167 404 11 12 25 12 7 0 13-3 22-9 19-33-44-354 62-473 46-52 130-75.5t224-23.5v160q0 42 40 59 12 5 24 5 26 0 45-19zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.shareSquare = shareSquare;
+var compass = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1088l256-128-256-128v256zM1024 497v542l-512 256v-542zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.compass = compass;
+var caretSquareODown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1145 675q18 35-5 66l-320 448q-19 27-52 27t-52-27l-320-448q-23-31-5-66 17-35 57-35h640q40 0 57 35zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.caretSquareODown = caretSquareODown;
+var toggleDown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1145 675q18 35-5 66l-320 448q-19 27-52 27t-52-27l-320-448q-23-31-5-66 17-35 57-35h640q40 0 57 35zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.toggleDown = toggleDown;
+var caretSquareOUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1145 1117q-17 35-57 35h-640q-40 0-57-35-18-35 5-66l320-448q19-27 52-27t52 27l320 448q23 31 5 66zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.caretSquareOUp = caretSquareOUp;
+var toggleUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1145 1117q-17 35-57 35h-640q-40 0-57-35-18-35 5-66l320-448q19-27 52-27t52 27l320 448q23 31 5 66zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.toggleUp = toggleUp;
+var caretSquareORight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 896q0 33-27 52l-448 320q-31 23-66 5-35-17-35-57v-640q0-40 35-57 35-18 66 5l448 320q27 19 27 52zM1280 1376v-960q0-14-9-23t-23-9h-960q-14 0-23 9t-9 23v960q0 14 9 23t23 9h960q14 0 23-9t9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.caretSquareORight = caretSquareORight;
+var toggleRight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 896q0 33-27 52l-448 320q-31 23-66 5-35-17-35-57v-640q0-40 35-57 35-18 66 5l448 320q27 19 27 52zM1280 1376v-960q0-14-9-23t-23-9h-960q-14 0-23 9t-9 23v960q0 14 9 23t23 9h960q14 0 23-9t9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.toggleRight = toggleRight;
+var eur = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M976 1307l35 159q3 12-3 22.5t-17 14.5l-5 1q-4 2-10.5 3.5t-16 4.5-21.5 5.5-25.5 5-30 5-33.5 4.5-36.5 3-38.5 1q-234 0-409-130.5t-238-351.5h-95q-13 0-22.5-9.5t-9.5-22.5v-113q0-13 9.5-22.5t22.5-9.5h66q-2-57 1-105h-67q-14 0-23-9t-9-23v-114q0-14 9-23t23-9h98q67-210 243.5-338t400.5-128q102 0 194 23 11 3 20 15 6 11 3 24l-43 159q-3 13-14 19.5t-24 2.5l-4-1q-4-1-11.5-2.5l-17.5-3.5t-22.5-3.5-26-3-29-2.5-29.5-1q-126 0-226 64t-150 176h468q16 0 25 12 10 12 7 26l-24 114q-5 26-32 26h-488q-3 37 0 105h459q15 0 25 12 9 12 6 27l-24 112q-2 11-11 18.5t-20 7.5h-387q48 117 149.5 185.5t228.5 68.5q18 0 36-1.5t33.5-3.5 29.5-4.5 24.5-5 18.5-4.5l12-3 5-2q13-5 26 2 12 7 15 21z"
+ }
+ }]
+};
+exports.eur = eur;
+var euro = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M976 1307l35 159q3 12-3 22.5t-17 14.5l-5 1q-4 2-10.5 3.5t-16 4.5-21.5 5.5-25.5 5-30 5-33.5 4.5-36.5 3-38.5 1q-234 0-409-130.5t-238-351.5h-95q-13 0-22.5-9.5t-9.5-22.5v-113q0-13 9.5-22.5t22.5-9.5h66q-2-57 1-105h-67q-14 0-23-9t-9-23v-114q0-14 9-23t23-9h98q67-210 243.5-338t400.5-128q102 0 194 23 11 3 20 15 6 11 3 24l-43 159q-3 13-14 19.5t-24 2.5l-4-1q-4-1-11.5-2.5l-17.5-3.5t-22.5-3.5-26-3-29-2.5-29.5-1q-126 0-226 64t-150 176h468q16 0 25 12 10 12 7 26l-24 114q-5 26-32 26h-488q-3 37 0 105h459q15 0 25 12 9 12 6 27l-24 112q-2 11-11 18.5t-20 7.5h-387q48 117 149.5 185.5t228.5 68.5q18 0 36-1.5t33.5-3.5 29.5-4.5 24.5-5 18.5-4.5l12-3 5-2q13-5 26 2 12 7 15 21z"
+ }
+ }]
+};
+exports.euro = euro;
+var gbp = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1020 1137v367q0 14-9 23t-23 9h-956q-14 0-23-9t-9-23v-150q0-13 9.5-22.5t22.5-9.5h97v-383h-95q-14 0-23-9.5t-9-22.5v-131q0-14 9-23t23-9h95v-223q0-171 123.5-282t314.5-111q185 0 335 125 9 8 10 20.5t-7 22.5l-103 127q-9 11-22 12-13 2-23-7-5-5-26-19t-69-32-93-18q-85 0-137 47t-52 123v215h305q13 0 22.5 9t9.5 23v131q0 13-9.5 22.5t-22.5 9.5h-305v379h414v-181q0-13 9-22.5t23-9.5h162q14 0 23 9.5t9 22.5z"
+ }
+ }]
+};
+exports.gbp = gbp;
+var dollar = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M978 1185q0 153-99.5 263.5t-258.5 136.5v175q0 14-9 23t-23 9h-135q-13 0-22.5-9.5t-9.5-22.5v-175q-66-9-127.5-31t-101.5-44.5-74-48-46.5-37.5-17.5-18q-17-21-2-41l103-135q7-10 23-12 15-2 24 9l2 2q113 99 243 125 37 8 74 8 81 0 142.5-43t61.5-122q0-28-15-53t-33.5-42-58.5-37.5-66-32-80-32.5q-39-16-61.5-25t-61.5-26.5-62.5-31-56.5-35.5-53.5-42.5-43.5-49-35.5-58-21-66.5-8.5-78q0-138 98-242t255-134v-180q0-13 9.5-22.5t22.5-9.5h135q14 0 23 9t9 23v176q57 6 110.5 23t87 33.5 63.5 37.5 39 29 15 14q17 18 5 38l-81 146q-8 15-23 16-14 3-27-7-3-3-14.5-12t-39-26.5-58.5-32-74.5-26-85.5-11.5q-95 0-155 43t-60 111q0 26 8.5 48t29.5 41.5 39.5 33 56 31 60.5 27 70 27.5q53 20 81 31.5t76 35 75.5 42.5 62 50 53 63.5 31.5 76.5 13 94z"
+ }
+ }]
+};
+exports.dollar = dollar;
+var usd = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M978 1185q0 153-99.5 263.5t-258.5 136.5v175q0 14-9 23t-23 9h-135q-13 0-22.5-9.5t-9.5-22.5v-175q-66-9-127.5-31t-101.5-44.5-74-48-46.5-37.5-17.5-18q-17-21-2-41l103-135q7-10 23-12 15-2 24 9l2 2q113 99 243 125 37 8 74 8 81 0 142.5-43t61.5-122q0-28-15-53t-33.5-42-58.5-37.5-66-32-80-32.5q-39-16-61.5-25t-61.5-26.5-62.5-31-56.5-35.5-53.5-42.5-43.5-49-35.5-58-21-66.5-8.5-78q0-138 98-242t255-134v-180q0-13 9.5-22.5t22.5-9.5h135q14 0 23 9t9 23v176q57 6 110.5 23t87 33.5 63.5 37.5 39 29 15 14q17 18 5 38l-81 146q-8 15-23 16-14 3-27-7-3-3-14.5-12t-39-26.5-58.5-32-74.5-26-85.5-11.5q-95 0-155 43t-60 111q0 26 8.5 48t29.5 41.5 39.5 33 56 31 60.5 27 70 27.5q53 20 81 31.5t76 35 75.5 42.5 62 50 53 63.5 31.5 76.5 13 94z"
+ }
+ }]
+};
+exports.usd = usd;
+var inr = {
+ "viewBox": "0 0 898 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M898 470v102q0 14-9 23t-23 9h-168q-23 144-129 234t-276 110q167 178 459 536 14 16 4 34-8 18-29 18h-195q-16 0-25-12-306-367-498-571-9-9-9-22v-127q0-13 9.5-22.5t22.5-9.5h112q132 0 212.5-43t102.5-125h-427q-14 0-23-9t-9-23v-102q0-14 9-23t23-9h413q-57-113-268-113h-145q-13 0-22.5-9.5t-9.5-22.5v-133q0-14 9-23t23-9h832q14 0 23 9t9 23v102q0 14-9 23t-23 9h-233q47 61 64 144h171q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.inr = inr;
+var rupee = {
+ "viewBox": "0 0 898 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M898 470v102q0 14-9 23t-23 9h-168q-23 144-129 234t-276 110q167 178 459 536 14 16 4 34-8 18-29 18h-195q-16 0-25-12-306-367-498-571-9-9-9-22v-127q0-13 9.5-22.5t22.5-9.5h112q132 0 212.5-43t102.5-125h-427q-14 0-23-9t-9-23v-102q0-14 9-23t23-9h413q-57-113-268-113h-145q-13 0-22.5-9.5t-9.5-22.5v-133q0-14 9-23t23-9h832q14 0 23 9t9 23v102q0 14-9 23t-23 9h-233q47 61 64 144h171q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.rupee = rupee;
+var cny = {
+ "viewBox": "0 0 1027 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z"
+ }
+ }]
+};
+exports.cny = cny;
+var jpy = {
+ "viewBox": "0 0 1027 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z"
+ }
+ }]
+};
+exports.jpy = jpy;
+var rmb = {
+ "viewBox": "0 0 1027 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z"
+ }
+ }]
+};
+exports.rmb = rmb;
+var yen = {
+ "viewBox": "0 0 1027 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z"
+ }
+ }]
+};
+exports.yen = yen;
+var rouble = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z"
+ }
+ }]
+};
+exports.rouble = rouble;
+var rub = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z"
+ }
+ }]
+};
+exports.rub = rub;
+var ruble = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z"
+ }
+ }]
+};
+exports.ruble = ruble;
+var krw = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M514 1195l81-299h-159l75 300q1 1 1 3t1 3q0-1 0.5-3.5t0.5-3.5zM630 768l35-128h-292l32 128h225zM822 768h139l-35-128h-70zM1271 1196l78-300h-162l81 299q0 1 0.5 3.5t1.5 3.5q0-1 0.5-3t0.5-3zM1382 768l33-128h-297l34 128h230zM1792 800v64q0 14-9 23t-23 9h-213l-164 616q-7 24-31 24h-159q-24 0-31-24l-166-616h-209l-167 616q-7 24-31 24h-159q-11 0-19.5-7t-10.5-17l-160-616h-208q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h175l-33-128h-142q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h109l-89-344q-5-15 5-28 10-12 26-12h137q26 0 31 24l90 360h359l97-360q7-24 31-24h126q24 0 31 24l98 360h365l93-360q5-24 31-24h137q16 0 26 12 10 13 5 28l-91 344h111q14 0 23 9t9 23v64q0 14-9 23t-23 9h-145l-34 128h179q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.krw = krw;
+var won = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M514 1195l81-299h-159l75 300q1 1 1 3t1 3q0-1 0.5-3.5t0.5-3.5zM630 768l35-128h-292l32 128h225zM822 768h139l-35-128h-70zM1271 1196l78-300h-162l81 299q0 1 0.5 3.5t1.5 3.5q0-1 0.5-3t0.5-3zM1382 768l33-128h-297l34 128h230zM1792 800v64q0 14-9 23t-23 9h-213l-164 616q-7 24-31 24h-159q-24 0-31-24l-166-616h-209l-167 616q-7 24-31 24h-159q-11 0-19.5-7t-10.5-17l-160-616h-208q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h175l-33-128h-142q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h109l-89-344q-5-15 5-28 10-12 26-12h137q26 0 31 24l90 360h359l97-360q7-24 31-24h126q24 0 31 24l98 360h365l93-360q5-24 31-24h137q16 0 26 12 10 13 5 28l-91 344h111q14 0 23 9t9 23v64q0 14-9 23t-23 9h-145l-34 128h179q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.won = won;
+var bitcoin = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1167 640q18 182-131 258 117 28 175 103t45 214q-7 71-32.5 125t-64.5 89-97 58.5-121.5 34.5-145.5 15v255h-154v-251q-80 0-122-1v252h-154v-255q-18 0-54-0.5t-55-0.5h-200l31-183h111q50 0 58-51v-402h16q-6-1-16-1v-287q-13-68-89-68h-111v-164l212 1q64 0 97-1v-252h154v247q82-2 122-2v-245h154v252q79 7 140 22.5t113 45 82.5 78 36.5 114.5zM952 1185q0-36-15-64t-37-46-57.5-30.5-65.5-18.5-74-9-69-3-64.5 1-47.5 1v338q8 0 37 0.5t48 0.5 53-1.5 58.5-4 57-8.5 55.5-14 47.5-21 39.5-30 24.5-40 9.5-51zM881 709q0-33-12.5-58.5t-30.5-42-48-28-55-16.5-61.5-8-58-2.5-54 1-39.5 0.5v307q5 0 34.5 0.5t46.5 0 50-2 55-5.5 51.5-11 48.5-18.5 37-27 27-38.5 9-51z"
+ }
+ }]
+};
+exports.bitcoin = bitcoin;
+var btc = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1167 640q18 182-131 258 117 28 175 103t45 214q-7 71-32.5 125t-64.5 89-97 58.5-121.5 34.5-145.5 15v255h-154v-251q-80 0-122-1v252h-154v-255q-18 0-54-0.5t-55-0.5h-200l31-183h111q50 0 58-51v-402h16q-6-1-16-1v-287q-13-68-89-68h-111v-164l212 1q64 0 97-1v-252h154v247q82-2 122-2v-245h154v252q79 7 140 22.5t113 45 82.5 78 36.5 114.5zM952 1185q0-36-15-64t-37-46-57.5-30.5-65.5-18.5-74-9-69-3-64.5 1-47.5 1v338q8 0 37 0.5t48 0.5 53-1.5 58.5-4 57-8.5 55.5-14 47.5-21 39.5-30 24.5-40 9.5-51zM881 709q0-33-12.5-58.5t-30.5-42-48-28-55-16.5-61.5-8-58-2.5-54 1-39.5 0.5v307q5 0 34.5 0.5t46.5 0 50-2 55-5.5 51.5-11 48.5-18.5 37-27 27-38.5 9-51z"
+ }
+ }]
+};
+exports.btc = btc;
+var file = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 512v-472q22 14 36 28l408 408q14 14 28 36h-472zM896 544q0 40 28 68t68 28h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544z"
+ }
+ }]
+};
+exports.file = file;
+var fileText = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 476q14 14 28 36h-472v-472q22 14 36 28zM992 640h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544q0 40 28 68t68 28zM1152 1376v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1152 1120v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1152 864v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23z"
+ }
+ }]
+};
+exports.fileText = fileText;
+var sortAlphaAsc = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1191 408h177l-72-218-12-47q-2-16-2-20h-4l-3 20q0 1-3.5 18t-7.5 29zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1572 1559v233h-584v-90l369-529q12-18 21-27l11-9v-3q-2 0-6.5 0.5t-7.5 0.5q-12 3-30 3h-232v115h-120v-229h567v89l-369 530q-6 8-21 26l-11 11v2l14-2q9-2 30-2h248v-119h121zM1661 662v106h-288v-106h75l-47-144h-243l-47 144h75v106h-287v-106h70l230-662h162l230 662h70z"
+ }
+ }]
+};
+exports.sortAlphaAsc = sortAlphaAsc;
+var sortAlphaDesc = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1191 1432h177l-72-218-12-47q-2-16-2-20h-4l-3 20q0 1-3.5 18t-7.5 29zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1661 1686v106h-288v-106h75l-47-144h-243l-47 144h75v106h-287v-106h70l230-662h162l230 662h70zM1572 535v233h-584v-90l369-529q12-18 21-27l11-9v-3q-2 0-6.5 0.5t-7.5 0.5q-12 3-30 3h-232v115h-120v-229h567v89l-369 530q-6 8-21 26l-11 10v3l14-3q9-1 30-1h248v-119h121z"
+ }
+ }]
+};
+exports.sortAlphaDesc = sortAlphaDesc;
+var sortAmountAsc = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1792 1568v192q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h832q14 0 23 9t9 23zM1600 1056v192q0 14-9 23t-23 9h-640q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h640q14 0 23 9t9 23zM1408 544v192q0 14-9 23t-23 9h-448q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h448q14 0 23 9t9 23zM1216 32v192q0 14-9 23t-23 9h-256q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h256q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.sortAmountAsc = sortAmountAsc;
+var sortAmountDesc = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1216 1568v192q0 14-9 23t-23 9h-256q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h256q14 0 23 9t9 23zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1408 1056v192q0 14-9 23t-23 9h-448q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h448q14 0 23 9t9 23zM1600 544v192q0 14-9 23t-23 9h-640q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h640q14 0 23 9t9 23zM1792 32v192q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h832q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.sortAmountDesc = sortAmountDesc;
+var sortNumericAsc = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1346 1313q0-63-44-116t-103-53q-52 0-83 37t-31 94 36.5 95 104.5 38q50 0 85-27t35-68zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1486 1371q0 62-13 121.5t-41 114-68 95.5-98.5 65.5-127.5 24.5q-62 0-108-16-24-8-42-15l39-113q15 7 31 11 37 13 75 13 84 0 134.5-58.5t66.5-145.5h-2q-21 23-61.5 37t-84.5 14q-106 0-173-71.5t-67-172.5q0-105 72-178t181-73q123 0 205 94.5t82 252.5zM1456 654v114h-469v-114h167v-432q0-7 0.5-19t0.5-17v-16h-2l-7 12q-8 13-26 31l-62 58-82-86 192-185h123v654h165z"
+ }
+ }]
+};
+exports.sortNumericAsc = sortNumericAsc;
+var sortNumericDesc = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1346 289q0-63-44-116t-103-53q-52 0-83 37t-31 94 36.5 95 104.5 38q50 0 85-27t35-68zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1456 1678v114h-469v-114h167v-432q0-7 0.5-19t0.5-17v-16h-2l-7 12q-8 13-26 31l-62 58-82-86 192-185h123v654h165zM1486 347q0 62-13 121.5t-41 114-68 95.5-98.5 65.5-127.5 24.5q-62 0-108-16-24-8-42-15l39-113q15 7 31 11 37 13 75 13 84 0 134.5-58.5t66.5-145.5h-2q-21 23-61.5 37t-84.5 14q-106 0-173-71.5t-67-172.5q0-105 72-178t181-73q123 0 205 94.5t82 252.5z"
+ }
+ }]
+};
+exports.sortNumericDesc = sortNumericDesc;
+var thumbsUp = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1344q0-26-19-45t-45-19q-27 0-45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45-18.5t19-45.5zM416 832v640q0 26-19 45t-45 19h-288q-26 0-45-19t-19-45v-640q0-26 19-45t45-19h288q26 0 45 19t19 45zM1600 832q0 86-55 149 15 44 15 76 3 76-43 137 17 56 0 117-15 57-54 94 9 112-49 181-64 76-197 78h-36-76-17q-66 0-144-15.5t-121.5-29-120.5-39.5q-123-43-158-44-26-1-45-19.5t-19-44.5v-641q0-25 18-43.5t43-20.5q24-2 76-59t101-121q68-87 101-120 18-18 31-48t17.5-48.5 13.5-60.5q7-39 12.5-61t19.5-52 34-50q19-19 45-19 46 0 82.5 10.5t60 26 40 40.5 24 45 12 50 5 45 0.5 39q0 38-9.5 76t-19 60-27.5 56q-3 6-10 18t-11 22-8 24h277q78 0 135 57t57 135z"
+ }
+ }]
+};
+exports.thumbsUp = thumbsUp;
+var thumbsDown = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 576q0 26-19 45t-45 19q-27 0-45.5-19t-18.5-45q0-27 18.5-45.5t45.5-18.5q26 0 45 18.5t19 45.5zM416 1088v-640q0-26-19-45t-45-19h-288q-26 0-45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45-19t19-45zM1545 939q55 61 55 149-1 78-57.5 135t-134.5 57h-277q4 14 8 24t11 22 10 18q18 37 27 57t19 58.5 10 76.5q0 24-0.5 39t-5 45-12 50-24 45-40 40.5-60 26-82.5 10.5q-26 0-45-19-20-20-34-50t-19.5-52-12.5-61q-9-42-13.5-60.5t-17.5-48.5-31-48q-33-33-101-120-49-64-101-121t-76-59q-25-2-43-20.5t-18-43.5v-641q0-26 19-44.5t45-19.5q35-1 158-44 77-26 120.5-39.5t121.5-29 144-15.5h17 76 36q133 2 197 78 58 69 49 181 39 37 54 94 17 61 0 117 46 61 43 137 0 32-15 76z"
+ }
+ }]
+};
+exports.thumbsDown = thumbsDown;
+var youtubeSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M919 1303v-157q0-50-29-50-17 0-33 16v224q16 16 33 16 29 0 29-49zM1103 1181h66v-34q0-51-33-51t-33 51v34zM532 915v70h-80v423h-74v-423h-78v-70h232zM733 1041v367h-67v-40q-39 45-76 45-33 0-42-28-6-17-6-54v-290h66v270q0 24 1 26 1 15 15 15 20 0 42-31v-280h67zM985 1152v146q0 52-7 73-12 42-53 42-35 0-68-41v36h-67v-493h67v161q32-40 68-40 41 0 53 42 7 21 7 74zM1236 1281v9q0 29-2 43-3 22-15 40-27 40-80 40-52 0-81-38-21-27-21-86v-129q0-59 20-86 29-38 80-38t78 38q21 29 21 86v76h-133v65q0 51 34 51 24 0 30-26 0-1 0.5-7t0.5-16.5v-21.5h68zM785 457v156q0 51-32 51t-32-51v-156q0-52 32-52t32 52zM1318 1170q0-177-19-260-10-44-43-73.5t-76-34.5q-136-15-412-15-275 0-411 15-44 5-76.5 34.5t-42.5 73.5q-20 87-20 260 0 176 20 260 10 43 42.5 73t75.5 35q137 15 412 15t412-15q43-5 75.5-35t42.5-73q20-84 20-260zM563 519l90-296h-75l-51 195-53-195h-78q7 23 23 69l24 69q35 103 46 158v201h74v-201zM852 600v-130q0-58-21-87-29-38-78-38-51 0-78 38-21 29-21 87v130q0 58 21 87 27 38 78 38 49 0 78-38 21-27 21-87zM1033 720h67v-370h-67v283q-22 31-42 31-15 0-16-16-1-2-1-26v-272h-67v293q0 37 6 55 11 27 43 27 36 0 77-45v40zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.youtubeSquare = youtubeSquare;
+var youtube = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M971 1244v211q0 67-39 67-23 0-45-22v-301q22-22 45-22 39 0 39 67zM1309 1245v46h-90v-46q0-68 45-68t45 68zM343 1027h107v-94h-312v94h105v569h100v-569zM631 1596h89v-494h-89v378q-30 42-57 42-18 0-21-21-1-3-1-35v-364h-89v391q0 49 8 73 12 37 58 37 48 0 102-61v54zM1060 1448v-197q0-73-9-99-17-56-71-56-50 0-93 54v-217h-89v663h89v-48q45 55 93 55 54 0 71-55 9-27 9-100zM1398 1438v-13h-91q0 51-2 61-7 36-40 36-46 0-46-69v-87h179v-103q0-79-27-116-39-51-106-51-68 0-107 51-28 37-28 116v173q0 79 29 116 39 51 108 51 72 0 108-53 18-27 21-54 2-9 2-58zM790 525v-210q0-69-43-69t-43 69v210q0 70 43 70t43-70zM1509 1276q0 234-26 350-14 59-58 99t-102 46q-184 21-555 21t-555-21q-58-6-102.5-46t-57.5-99q-26-112-26-350 0-234 26-350 14-59 58-99t103-47q183-20 554-20t555 20q58 7 102.5 47t57.5 99q26 112 26 350zM511 0h102l-121 399v271h-100v-271q-14-74-61-212-37-103-65-187h106l71 263zM881 333v175q0 81-28 118-38 51-106 51-67 0-105-51-28-38-28-118v-175q0-80 28-117 38-51 105-51 68 0 106 51 28 37 28 117zM1216 171v499h-91v-55q-53 62-103 62-46 0-59-37-8-24-8-75v-394h91v367q0 33 1 35 3 22 21 22 27 0 57-43v-381h91z"
+ }
+ }]
+};
+exports.youtube = youtube;
+var xing = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M597 667q-10 18-257 456-27 46-65 46h-239q-21 0-31-17t0-36l253-448q1 0 0-1l-161-279q-12-22-1-37 9-15 32-15h239q40 0 66 45zM1403 25q11 16 0 37l-528 934v1l336 615q11 20 1 37-10 15-32 15h-239q-42 0-66-45l-339-622q18-32 531-942 25-45 64-45h241q22 0 31 15z"
+ }
+ }]
+};
+exports.xing = xing;
+var xingSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M685 765q0-1-126-222-21-34-52-34h-184q-18 0-26 11-7 12 1 29l125 216v1l-196 346q-9 14 0 28 8 13 24 13h185q31 0 50-36zM1309 268q-7-12-24-12h-187q-30 0-49 35l-411 729q1 2 262 481 20 35 52 35h184q18 0 25-12 8-13-1-28l-260-476v-1l409-723q8-16 0-28zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.xingSquare = xingSquare;
+var youtubePlay = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M711 1128l484-250-484-253v503zM896 266q168 0 324.5 4.5t229.5 9.5l73 4q1 0 17 1.5t23 3 23.5 4.5 28.5 8 28 13 31 19.5 29 26.5q6 6 15.5 18.5t29 58.5 26.5 101q8 64 12.5 136.5t5.5 113.5v40 136q1 145-18 290-7 55-25 99.5t-32 61.5l-14 17q-14 15-29 26.5t-31 19-28 12.5-28.5 8-24 4.5-23 3-16.5 1.5q-251 19-627 19-207-2-359.5-6.5t-200.5-7.5l-49-4-36-4q-36-5-54.5-10t-51-21-56.5-41q-6-6-15.5-18.5t-29-58.5-26.5-101q-8-64-12.5-136.5t-5.5-113.5v-40-136q-1-145 18-290 7-55 25-99.5t32-61.5l14-17q14-15 29-26.5t31-19.5 28-13 28.5-8 23.5-4.5 23-3 17-1.5q251-18 627-18z"
+ }
+ }]
+};
+exports.youtubePlay = youtubePlay;
+var dropbox = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M402 707l494 305-342 285-490-319zM1388 1262v108l-490 293v1l-1-1-1 1v-1l-489-293v-108l147 96 342-284v-2l1 1 1-1v2l343 284zM554 118l342 285-494 304-338-270zM1390 707l338 271-489 319-343-285zM1239 118l489 319-338 270-494-304z"
+ }
+ }]
+};
+exports.dropbox = dropbox;
+var stackOverflow = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1289 1632h-1118v-480h-160v640h1438v-640h-160v480zM347 1108l33-157 783 165-33 156zM450 734l67-146 725 339-67 145zM651 378l102-123 614 513-102 123zM1048 0l477 641-128 96-477-641zM330 1471v-159h800v159h-800z"
+ }
+ }]
+};
+exports.stackOverflow = stackOverflow;
+var instagram = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1162 896q0 164-115 279t-279 115-279-115-115-279 115-279 279-115 279 115 115 279zM1270 486q0 38-27 65t-65 27-65-27-27-65 27-65 65-27 65 27 27 65zM768 266q-7 0-76.5-0.5t-105.5 0-96.5 3-103 10-71.5 18.5q-50 20-88 58t-58 88q-11 29-18.5 71.5t-10 103-3 96.5 0 105.5 0.5 76.5-0.5 76.5 0 105.5 3 96.5 10 103 18.5 71.5q20 50 58 88t88 58q29 11 71.5 18.5t103 10 96.5 3 105.5 0 76.5-0.5 76.5 0.5 105.5 0 96.5-3 103-10 71.5-18.5q50-20 88-58t58-88q11-29 18.5-71.5t10-103 3-96.5 0-105.5-0.5-76.5 0.5-76.5 0-105.5-3-96.5-10-103-18.5-71.5q-20-50-58-88t-88-58q-29-11-71.5-18.5t-103-10-96.5-3-105.5 0-76.5 0.5zM1536 896q0 229-5 317-10 208-124 322t-322 124q-88 5-317 5t-317-5q-208-10-322-124t-124-322q-5-88-5-317t5-317q10-208 124-322t322-124q88-5 317-5t317 5q208 10 322 124t124 322q5 88 5 317z"
+ }
+ }]
+};
+exports.instagram = instagram;
+var flickr = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM698 896q0-88-62-150t-150-62-150 62-62 150 62 150 150 62 150-62 62-150zM1262 896q0-88-62-150t-150-62-150 62-62 150 62 150 150 62 150-62 62-150z"
+ }
+ }]
+};
+exports.flickr = flickr;
+var adn = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 622l201 306h-402zM1133 1152h94l-459-691-459 691h94l104-160h522zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.adn = adn;
+var bitbucket = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M815 859q8 63-50.5 101t-111.5 6q-39-17-53.5-58t-0.5-82 52-58q36-18 72.5-12t64 35.5 27.5 67.5zM926 838q-14-107-113-164t-197-13q-63 28-100.5 88.5t-34.5 129.5q4 91 77.5 155t165.5 56q91-8 152-84t50-168zM1165 296q-20-27-56-44.5t-58-22-71-12.5q-291-47-566 2-43 7-66 12t-55 22-50 43q30 28 76 45.5t73.5 22 87.5 11.5q228 29 448 1 63-8 89.5-12t72.5-21.5 75-46.5zM1222 1331q-8 26-15.5 76.5t-14 84-28.5 70-58 56.5q-86 48-189.5 71.5t-202 22-201.5-18.5q-46-8-81.5-18t-76.5-27-73-43.5-52-61.5q-25-96-57-292l6-16 18-9q223 148 506.5 148t507.5-148q21 6 24 23t-5 45-8 37zM1403 370q-26 167-111 655-5 30-27 56t-43.5 40-54.5 31q-252 126-610 88-248-27-394-139-15-12-25.5-26.5t-17-35-9-34-6-39.5-5.5-35q-9-50-26.5-150t-28-161.5-23.5-147.5-22-158q3-26 17.5-48.5t31.5-37.5 45-30 46-22.5 48-18.5q125-46 313-64 379-37 676 50 155 46 215 122 16 20 16.5 51t-5.5 54z"
+ }
+ }]
+};
+exports.bitbucket = bitbucket;
+var bitbucketSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M848 870q0-43-41-66t-77-1q-43 20-42.5 72.5t43.5 70.5q39 23 81-4t36-72zM928 854q8 66-36 121t-110 61-119-40-56-113q-2-49 25.5-93t72.5-64q70-31 141.5 10t81.5 118zM1100 463q-20 21-53.5 34t-53 16-63.5 8q-155 20-324 0-44-6-63-9.5t-52.5-16-54.5-32.5q13-19 36-31t40-15.5 47-8.5q198-35 408-1 33 5 51 8.5t43 16 39 31.5zM1142 1209q0-7 5.5-26.5t3-32-17.5-16.5q-161 106-365 106t-366-106l-12 6-5 12q26 154 41 210 47 81 204 108 249 46 428-53 34-19 49-51.5t22.5-85.5 12.5-71zM1272 516q9-53-8-75-43-55-155-88-216-63-487-36-132 12-226 46-38 15-59.5 25t-47 34-29.5 54q8 68 19 138t29 171 24 137q1 5 5 31t7 36 12 27 22 28q105 80 284 100 259 28 440-63 24-13 39.5-23t31-29 19.5-40q48-267 80-473zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.bitbucketSquare = bitbucketSquare;
+var tumblr = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M944 1329l80 237q-23 35-111 66t-177 32q-104 2-190.5-26t-142.5-74-95-106-55.5-120-16.5-118v-544h-168v-215q72-26 129-69.5t91-90 58-102 34-99 15-88.5q1-5 4.5-8.5t7.5-3.5h244v424h333v252h-334v518q0 30 6.5 56t22.5 52.5 49.5 41.5 81.5 14q78-2 134-29z"
+ }
+ }]
+};
+exports.tumblr = tumblr;
+var tumblrSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1136 1461l-62-183q-44 22-103 22-36 1-62-10.5t-38.5-31.5-17.5-40.5-5-43.5v-398h257v-194h-256v-326h-188q-8 0-9 10-5 44-17.5 87t-39 95-77 95-118.5 68v165h130v418q0 57 21.5 115t65 111 121 85.5 176.5 30.5q69-1 136.5-25t85.5-50zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.tumblrSquare = tumblrSquare;
+var longArrowDown = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M765 1299q8 19-5 35l-350 384q-10 10-23 10-14 0-24-10l-355-384q-13-16-5-35 9-19 29-19h224v-1248q0-14 9-23t23-9h192q14 0 23 9t9 23v1248h224q21 0 29 19z"
+ }
+ }]
+};
+exports.longArrowDown = longArrowDown;
+var longArrowUp = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M765 493q-9 19-29 19h-224v1248q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-1248h-224q-21 0-29-19t5-35l350-384q10-10 23-10 14 0 24 10l355 384q13 16 5 35z"
+ }
+ }]
+};
+exports.longArrowUp = longArrowUp;
+var longArrowLeft = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 800v192q0 14-9 23t-23 9h-1248v224q0 21-19 29t-35-5l-384-350q-10-10-10-23 0-14 10-24l384-354q16-14 35-6 19 9 19 29v224h1248q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.longArrowLeft = longArrowLeft;
+var longArrowRight = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1728 893q0 14-10 24l-384 354q-16 14-35 6-19-9-19-29v-224h-1248q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h1248v-224q0-21 19-29t35 5l384 350q10 10 10 23z"
+ }
+ }]
+};
+exports.longArrowRight = longArrowRight;
+var apple = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1393 1215q-39 125-123 250-129 196-257 196-49 0-140-32-86-32-151-32-61 0-142 33-81 34-132 34-152 0-301-259-147-261-147-503 0-228 113-374 113-144 284-144 72 0 177 30 104 30 138 30 45 0 143-34 102-34 173-34 119 0 213 65 52 36 104 100-79 67-114 118-65 94-65 207 0 124 69 223t158 126zM1017 42q0 61-29 136-30 75-93 138-54 54-108 72-37 11-104 17 3-149 78-257 74-107 250-148 1 3 2.5 11t2.5 11q0 4 0.5 10t0.5 10z"
+ }
+ }]
+};
+exports.apple = apple;
+var windows = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M682 1006v651l-682-94v-557h682zM682 263v659h-682v-565zM1664 1006v786l-907-125v-661h907zM1664 128v794h-907v-669z"
+ }
+ }]
+};
+exports.windows = windows;
+var android = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M493 483q16 0 27.5-11.5t11.5-27.5-11.5-27.5-27.5-11.5-27 11.5-11 27.5 11 27.5 27 11.5zM915 483q16 0 27-11.5t11-27.5-11-27.5-27-11.5-27.5 11.5-11.5 27.5 11.5 27.5 27.5 11.5zM103 667q42 0 72 30t30 72v430q0 43-29.5 73t-72.5 30-73-30-30-73v-430q0-42 30-72t73-30zM1163 686v666q0 46-32 78t-77 32h-75v227q0 43-30 73t-73 30-73-30-30-73v-227h-138v227q0 43-30 73t-73 30q-42 0-72-30t-30-73l-1-227h-74q-46 0-78-32t-32-78v-666h918zM931 281q107 55 171 153.5t64 215.5h-925q0-117 64-215.5t172-153.5l-71-131q-7-13 5-20 13-6 20 6l72 132q95-42 201-42t201 42l72-132q7-12 20-6 12 7 5 20zM1408 769v430q0 43-30 73t-73 30q-42 0-72-30t-30-73v-430q0-43 30-72.5t72-29.5q43 0 73 29.5t30 72.5z"
+ }
+ }]
+};
+exports.android = android;
+var linux = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M663 411q-11 1-15.5 10.5t-8.5 9.5q-5 1-5-5 0-12 19-15h10zM750 425q-4 1-11.5-6.5t-17.5-4.5q24-11 32 2 3 6-3 9zM399 852q-4-1-6 3t-4.5 12.5-5.5 13.5-10 13q-10 11-1 12 4 1 12.5-7t12.5-18q1-3 2-7t2-6 1.5-4.5 0.5-4v-3t-1-2.5-3-2zM1254 1211q0-18-55-42 4-15 7.5-27.5t5-26 3-21.5 0.5-22.5-1-19.5-3.5-22-4-20.5-5-25-5.5-26.5q-10-48-47-103t-72-75q24 20 57 83 87 162 54 278-11 40-50 42-31 4-38.5-18.5t-8-83.5-11.5-107q-9-39-19.5-69t-19.5-45.5-15.5-24.5-13-15-7.5-7q-14-62-31-103t-29.5-56-23.5-33-15-40q-4-21 6-53.5t4.5-49.5-44.5-25q-15-3-44.5-18t-35.5-16q-8-1-11-26t8-51 36-27q37-3 51 30t4 58q-11 19-2 26.5t30 0.5q13-4 13-36v-37q-5-30-13.5-50t-21-30.5-23.5-15-27-7.5q-107 8-89 134 0 15-1 15-9-9-29.5-10.5t-33 0.5-15.5-5q1-57-16-90t-45-34q-27-1-41.5 27.5t-16.5 59.5q-1 15 3.5 37t13 37.5 15.5 13.5q10-3 16-14 4-9-7-8-7 0-15.5-14.5t-9.5-33.5q-1-22 9-37t34-14q17 0 27 21t9.5 39-1.5 22q-22 15-31 29-8 12-27.5 23.5t-20.5 12.5q-13 14-15.5 27t7.5 18q14 8 25 19.5t16 19 18.5 13 35.5 6.5q47 2 102-15 2-1 23-7t34.5-10.5 29.5-13 21-17.5q9-14 20-8 5 3 6.5 8.5t-3 12-16.5 9.5q-20 6-56.5 21.5t-45.5 19.5q-44 19-70 23-25 5-79-2-10-2-9 2t17 19q25 23 67 22 17-1 36-7t36-14 33.5-17.5 30-17 24.5-12 17.5-2.5 8.5 11q0 2-1 4.5t-4 5-6 4.5-8.5 5-9 4.5-10 5-9.5 4.5q-28 14-67.5 44t-66.5 43-49 1q-21-11-63-73-22-31-25-22-1 3-1 10 0 25-15 56.5t-29.5 55.5-21 58 11.5 63q-23 6-62.5 90t-47.5 141q-2 18-1.5 69t-5.5 59q-8 24-29 3-32-31-36-94-2-28 4-56 4-19-1-18-2 1-4 5-36 65 10 166 5 12 25 28t24 20q20 23 104 90.5t93 76.5q16 15 17.5 38t-14 43-45.5 23q8 15 29 44.5t28 54 7 70.5q46-24 7-92-4-8-10.5-16t-9.5-12-2-6q3-5 13-9.5t20 2.5q46 52 166 36 133-15 177-87 23-38 34-30 12 6 10 52-1 25-23 92-9 23-6 37.5t24 15.5q3-19 14.5-77t13.5-90q2-21-6.5-73.5t-7.5-97 23-70.5q15-18 51-18 1-37 34.5-53t72.5-10.5 60 22.5zM626 384q3-17-2.5-30t-11.5-15q-9-2-9 7 2 5 5 6 10 0 7 15-3 20 8 20 3 0 3-3zM1045 581q-2-8-6.5-11.5t-13-5-14.5-5.5q-5-3-9.5-8t-7-8-5.5-6.5-4-4-4 1.5q-14 16 7 43.5t39 31.5q9 1 14.5-8t3.5-20zM867 368q0-11-5-19.5t-11-12.5-9-3q-6 0-8 2t0 4 5 3q14 4 18 31 0 3 8-2 2-2 2-3zM921 135q0-2-2.5-5t-9-7-9.5-6q-15-15-24-15-9 1-11.5 7.5t-1 13-0.5 12.5q-1 4-6 10.5t-6 9 3 8.5q4 3 8 0t11-9 15-9q1-1 9-1t15-2 9-7zM1486 1476q20 12 31 24.5t12 24-2.5 22.5-15.5 22-23.5 19.5-30 18.5-31.5 16.5-32 15.5-27 13q-38 19-85.5 56t-75.5 64q-17 16-68 19.5t-89-14.5q-18-9-29.5-23.5t-16.5-25.5-22-19.5-47-9.5q-44-1-130-1-19 0-57 1.5t-58 2.5q-44 1-79.5 15t-53.5 30-43.5 28.5-53.5 11.5q-29-1-111-31t-146-43q-19-4-51-9.5t-50-9-39.5-9.5-33.5-14.5-17-19.5q-10-23 7-66.5t18-54.5q1-16-4-40t-10-42.5-4.5-36.5 10.5-27q14-12 57-14t60-12q30-18 42-35t12-51q21 73-32 106-32 20-83 15-34-3-43 10-13 15 5 57 2 6 8 18t8.5 18 4.5 17 1 22q0 15-17 49t-14 48q3 17 37 26 20 6 84.5 18.5t99.5 20.5q24 6 74 22t82.5 23 55.5 4q43-6 64.5-28t23-48-7.5-58.5-19-52-20-36.5q-121-190-169-242-68-74-113-40-11 9-15-15-3-16-2-38 1-29 10-52t24-47 22-42q8-21 26.5-72t29.5-78 30-61 39-54q110-143 124-195-12-112-16-310-2-90 24-151.5t106-104.5q39-21 104-21 53-1 106 13.5t89 41.5q57 42 91.5 121.5t29.5 147.5q-5 95 30 214 34 113 133 218 55 59 99.5 163t59.5 191q8 49 5 84.5t-12 55.5-20 22q-10 2-23.5 19t-27 35.5-40.5 33.5-61 14q-18-1-31.5-5t-22.5-13.5-13.5-15.5-11.5-20.5-9-19.5q-22-37-41-30t-28 49 7 97q20 70 1 195-10 65 18 100.5t73 33 85-35.5q59-49 89.5-66.5t103.5-42.5q53-18 77-36.5t18.5-34.5-25-28.5-51.5-23.5q-33-11-49.5-48t-15-72.5 15.5-47.5q1 31 8 56.5t14.5 40.5 20.5 28.5 21 19 21.5 13 16.5 9.5z"
+ }
+ }]
+};
+exports.linux = linux;
+var dribbble = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1500q-42-241-140-498h-2l-2 1q-16 6-43 16.5t-101 49-137 82-131 114.5-103 148l-15-11q184 150 418 150 132 0 256-52zM839 893q-21-49-53-111-311 93-673 93-1 7-1 21 0 124 44 236.5t124 201.5q50-89 123.5-166.5t142.5-124.5 130.5-81 99.5-48l37-13q4-1 13-3.5t13-4.5zM732 681q-120-213-244-378-138 65-234 186t-128 272q302 0 606-80zM1416 1000q-210-60-409-29 87 239 128 469 111-75 185-189.5t96-250.5zM611 259q-1 0-2 1 1-1 2-1zM1201 404q-185-164-433-164-76 0-155 19 131 170 246 382 69-26 130-60.5t96.5-61.5 65.5-57 37.5-40.5zM1424 889q-3-232-149-410l-1 1q-9 12-19 24.5t-43.5 44.5-71 60.5-100 65-131.5 64.5q25 53 44 95 2 5 6.5 17t7.5 17q36-5 74.5-7t73.5-2 69 1.5 64 4 56.5 5.5 48 6.5 36.5 6 25 4.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.dribbble = dribbble;
+var skype = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1173 1063q0-50-19.5-91.5t-48.5-68.5-73-49-82.5-34-87.5-23l-104-24q-30-7-44-10.5t-35-11.5-30-16-16.5-21-7.5-30q0-77 144-77 43 0 77 12t54 28.5 38 33.5 40 29 48 12q47 0 75.5-32t28.5-77q0-55-56-99.5t-142-67.5-182-23q-68 0-132 15.5t-119.5 47-89 87-33.5 128.5q0 61 19 106.5t56 75.5 80 48.5 103 32.5l146 36q90 22 112 36 32 20 32 60 0 39-40 64.5t-105 25.5q-51 0-91.5-16t-65-38.5-45.5-45-46-38.5-54-16q-50 0-75.5 30t-25.5 75q0 92 122 157.5t291 65.5q73 0 140-18.5t122.5-53.5 88.5-93.5 33-131.5zM1536 1280q0 159-112.5 271.5t-271.5 112.5q-130 0-234-80-77 16-150 16-143 0-273.5-55.5t-225-150-150-225-55.5-273.5q0-73 16-150-80-104-80-234 0-159 112.5-271.5t271.5-112.5q130 0 234 80 77-16 150-16 143 0 273.5 55.5t225 150 150 225 55.5 273.5q0 73-16 150 80 104 80 234z"
+ }
+ }]
+};
+exports.skype = skype;
+var foursquare = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1000 434l37-194q5-23-9-40t-35-17h-712q-23 0-38.5 17t-15.5 37v1101q0 7 6 1l291-352q23-26 38-33.5t48-7.5h239q22 0 37-14.5t18-29.5q24-130 37-191 4-21-11.5-40t-36.5-19h-294q-29 0-48-19t-19-48v-42q0-29 19-47.5t48-18.5h346q18 0 35-13.5t20-29.5zM1227 212q-15 73-53.5 266.5t-69.5 350-35 173.5q-6 22-9 32.5t-14 32.5-24.5 33-38.5 21-58 10h-271q-13 0-22 10-8 9-426 494-22 25-58.5 28.5t-48.5-5.5q-55-22-55-98v-1410q0-55 38-102.5t120-47.5h888q95 0 127 53t10 159zM1227 212l-158 790q4-17 35-173.5t69.5-350 53.5-266.5z"
+ }
+ }]
+};
+exports.foursquare = foursquare;
+var trello = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 1344v-1024q0-14-9-23t-23-9h-480q-14 0-23 9t-9 23v1024q0 14 9 23t23 9h480q14 0 23-9t9-23zM1376 960v-640q0-14-9-23t-23-9h-480q-14 0-23 9t-9 23v640q0 14 9 23t23 9h480q14 0 23-9t9-23zM1536 192v1408q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h1408q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.trello = trello;
+var female = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1056q0 40-28 68t-68 28q-51 0-80-43l-227-341h-45v132l247 411q9 15 9 33 0 26-19 45t-45 19h-192v272q0 46-33 79t-79 33h-160q-46 0-79-33t-33-79v-272h-192q-26 0-45-19t-19-45q0-18 9-33l247-411v-132h-45l-227 341q-29 43-80 43-40 0-68-28t-28-68q0-29 16-53l256-384q73-107 176-107h384q103 0 176 107l256 384q16 24 16 53zM864 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z"
+ }
+ }]
+};
+exports.female = female;
+var male = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 704v416q0 40-28 68t-68 28-68-28-28-68v-352h-64v912q0 46-33 79t-79 33-79-33-33-79v-464h-64v464q0 46-33 79t-79 33-79-33-33-79v-912h-64v352q0 40-28 68t-68 28-68-28-28-68v-416q0-80 56-136t136-56h640q80 0 136 56t56 136zM736 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z"
+ }
+ }]
+};
+exports.male = male;
+var gittip = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M773 1302l350-473q16-22 24.5-59t-6-85-61.5-79q-40-26-83-25.5t-73.5 17.5-54.5 45q-36 40-96 40-59 0-95-40-24-28-54.5-45t-73.5-17.5-84 25.5q-46 31-60.5 79t-6 85 24.5 59zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.gittip = gittip;
+var gratipay = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M773 1302l350-473q16-22 24.5-59t-6-85-61.5-79q-40-26-83-25.5t-73.5 17.5-54.5 45q-36 40-96 40-59 0-95-40-24-28-54.5-45t-73.5-17.5-84 25.5q-46 31-60.5 79t-6 85 24.5 59zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.gratipay = gratipay;
+var sunO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1472 896q0-117-45.5-223.5t-123-184-184-123-223.5-45.5-223.5 45.5-184 123-123 184-45.5 223.5 45.5 223.5 123 184 184 123 223.5 45.5 223.5-45.5 184-123 123-184 45.5-223.5zM1748 1173q-4 15-20 20l-292 96v306q0 16-13 26-15 10-29 4l-292-94-180 248q-10 13-26 13t-26-13l-180-248-292 94q-14 6-29-4-13-10-13-26v-306l-292-96q-16-5-20-20-5-17 4-29l180-248-180-248q-9-13-4-29 4-15 20-20l292-96v-306q0-16 13-26 15-10 29-4l292 94 180-248q9-12 26-12t26 12l180 248 292-94q14-6 29 4 13 10 13 26v306l292 96q16 5 20 20 5 16-4 29l-180 248 180 248q9 12 4 29z"
+ }
+ }]
+};
+exports.sunO = sunO;
+var moonO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1262 1303q-54 9-110 9-182 0-337-90t-245-245-90-337q0-192 104-357-201 60-328.5 229t-127.5 384q0 130 51 248.5t136.5 204 204 136.5 248.5 51q144 0 273.5-61.5t220.5-171.5zM1465 1218q-94 203-283.5 324.5t-413.5 121.5q-156 0-298-61t-245-164-164-245-61-298q0-153 57.5-292.5t156-241.5 235.5-164.5 290-68.5q44-2 61 39 18 41-15 72-86 78-131.5 181.5t-45.5 218.5q0 148 73 273t198 198 273 73q118 0 228-51 41-18 72 13 14 14 17.5 34t-4.5 38z"
+ }
+ }]
+};
+exports.moonO = moonO;
+var archive = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 832q0-26-19-45t-45-19h-256q-26 0-45 19t-19 45 19 45 45 19h256q26 0 45-19t19-45zM1664 640v960q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-960q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1728 192v256q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1536q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.archive = archive;
+var bug = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1632 960q0 26-19 45t-45 19h-224q0 171-67 290l208 209q19 19 19 45t-19 45q-18 19-45 19t-45-19l-198-197q-5 5-15 13t-42 28.5-65 36.5-82 29-97 13v-896h-128v896q-51 0-101.5-13.5t-87-33-66-39-43.5-32.5l-15-14-183 207q-20 21-48 21-24 0-43-16-19-18-20.5-44.5t15.5-46.5l202-227q-58-114-58-274h-224q-26 0-45-19t-19-45 19-45 45-19h224v-294l-173-173q-19-19-19-45t19-45 45-19 45 19l173 173h844l173-173q19-19 45-19t45 19 19 45-19 45l-173 173v294h224q26 0 45 19t19 45zM1152 384h-640q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5z"
+ }
+ }]
+};
+exports.bug = bug;
+var vk = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1917 520q23 64-150 294-24 32-65 85-40 51-55 72t-30.5 49.5-12 42 13 34.5 32.5 43 57 53q4 2 5 4 141 131 191 221 3 5 6.5 12.5t7 26.5-0.5 34-25 27.5-59 12.5l-256 4q-24 5-56-5t-52-22l-20-12q-30-21-70-64t-68.5-77.5-61-58-56.5-15.5q-3 1-8 3.5t-17 14.5-21.5 29.5-17 52-6.5 77.5q0 15-3.5 27.5t-7.5 18.5l-4 5q-18 19-53 22h-115q-71 4-146-16.5t-131.5-53-103-66-70.5-57.5l-25-24q-10-10-27.5-30t-71.5-91-106-151-122.5-211-130.5-272q-6-16-6-27t3-16l4-6q15-19 57-19l274-2q12 2 23 6.5t16 8.5l5 3q16 11 24 32 20 50 46 103.5t41 81.5l16 29q29 60 56 104t48.5 68.5 41.5 38.5 34 14 27-5q2-1 5-5t12-22 13.5-47 9.5-81 0-125q-2-40-9-73t-14-46l-6-12q-25-34-85-43-13-2 5-24 16-19 38-30 53-26 239-24 82 1 135 13 20 5 33.5 13.5t20.5 24 10.5 32 3.5 45.5-1 55-2.5 70.5-1.5 82.5q0 11-1 42t-0.5 48 3.5 40.5 11.5 39 22.5 24.5q8 2 17 4t26-11 38-34.5 52-67 68-107.5q60-104 107-225 4-10 10-17.5t11-10.5l4-3 5-2.5t13-3 20-0.5l288-2q39-5 64 2.5t31 16.5z"
+ }
+ }]
+};
+exports.vk = vk;
+var weibo = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M675 1284q21-34 11-69t-45-50q-34-14-73-1t-60 46q-22 34-13 68.5t43 50.5 74.5 2.5 62.5-47.5zM769 1163q8-13 3.5-26.5t-17.5-18.5q-14-5-28.5 0.5t-21.5 18.5q-17 31 13 45 14 5 29-0.5t22-18.5zM943 1270q-45 102-158 150t-224 12q-107-34-147.5-126.5t6.5-187.5q47-93 151.5-139t210.5-19q111 29 158.5 119.5t2.5 190.5zM1255 1110q-9-96-89-170t-208.5-109-274.5-21q-223 23-369.5 141.5t-132.5 264.5q9 96 89 170t208.5 109 274.5 21q223-23 369.5-141.5t132.5-264.5zM1563 1114q0 68-37 139.5t-109 137-168.5 117.5-226 83-270.5 31-275-33.5-240.5-93-171.5-151-65-199.5q0-115 69.5-245t197.5-258q169-169 341.5-236t246.5 7q65 64 20 209-4 14-1 20t10 7 14.5-0.5 13.5-3.5l6-2q139-59 246-59t153 61q45 63 0 178-2 13-4.5 20t4.5 12.5 12 7.5 17 6q57 18 103 47t80 81.5 34 116.5zM1489 490q42 47 54.5 108.5t-6.5 117.5q-8 23-29.5 34t-44.5 4q-23-8-34-29.5t-4-44.5q20-63-24-111t-107-35q-24 5-45-8t-25-37q-5-24 8-44.5t37-25.5q60-13 119 5.5t101 65.5zM1670 327q87 96 112.5 222.5t-13.5 241.5q-9 27-34 40t-52 4-40-34-5-52q28-82 10-172t-80-158q-62-69-148-95.5t-173-8.5q-28 6-52-9.5t-30-43.5 9.5-51.5 43.5-29.5q123-26 244 11.5t208 134.5z"
+ }
+ }]
+};
+exports.weibo = weibo;
+var renren = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1133 1570q-171 94-368 94-196 0-367-94 138-87 235.5-211t131.5-268q35 144 132.5 268t235.5 211zM638 142v485q0 252-126.5 459.5t-330.5 306.5q-181-215-181-495 0-187 83.5-349.5t229.5-269.5 325-137zM1536 898q0 280-181 495-204-99-330.5-306.5t-126.5-459.5v-485q179 30 325 137t229.5 269.5 83.5 349.5z"
+ }
+ }]
+};
+exports.renren = renren;
+var pagelines = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1402 1103q-32 80-76 138t-91 88.5-99 46.5-101.5 14.5-96.5-8.5-86.5-22-69.5-27.5-46-22.5l-17-10q-113 228-289.5 359.5t-384.5 132.5q-19 0-32-13t-13-32 13-31.5 32-12.5q173-1 322.5-107.5t251.5-294.5q-36 14-72 23t-83 13-91-2.5-93-28.5-92-59-84.5-100-74.5-146q114-47 214-57t167.5 7.5 124.5 56.5 88.5 77 56.5 82q53-131 79-291-7 1-18 2.5t-46.5 2.5-69.5-0.5-81.5-10-88.5-23-84-42.5-75-65-54.5-94.5-28.5-127.5q70-28 133.5-36.5t112.5 1 92 30 73.5 50 56 61 42 63 27.5 56 16 39.5l4 16q12-122 12-195-8-6-21.5-16t-49-44.5-63.5-71.5-54-93-33-112.5 12-127 70-138.5q73 25 127.5 61.5t84.5 76.5 48 85 20.5 89-0.5 85.5-13 76.5-19 62-17 42l-7 15q1 4 1 50t-1 72q3-7 10-18.5t30.5-43 50.5-58 71-55.5 91.5-44.5 112-14.5 132.5 24q-2 78-21.5 141.5t-50 104.5-69.5 71.5-81.5 45.5-84.5 24-80 9.5-67.5-1-46.5-4.5l-17-3q-23 147-73 283 6-7 18-18.5t49.5-41 77.5-52.5 99.5-42 117.5-20 129 23.5 137 77.5z"
+ }
+ }]
+};
+exports.pagelines = pagelines;
+var stackExchange = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1259 1253v66q0 85-57.5 144.5t-138.5 59.5h-57l-260 269v-269h-529q-81 0-138.5-59.5t-57.5-144.5v-66h1238zM1259 927v255h-1238v-255h1238zM1259 599v255h-1238v-255h1238zM1259 459v67h-1238v-67q0-84 57.5-143.5t138.5-59.5h846q81 0 138.5 59.5t57.5 143.5z"
+ }
+ }]
+};
+exports.stackExchange = stackExchange;
+var arrowCircleORight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 896q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-352q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h352v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleORight = arrowCircleORight;
+var arrowCircleOLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 800v192q0 13-9.5 22.5t-22.5 9.5h-352v192q0 14-9 23t-23 9q-12 0-24-10l-319-319q-9-9-9-23t9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h352q13 0 22.5 9.5t9.5 22.5zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.arrowCircleOLeft = arrowCircleOLeft;
+var caretSquareOLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 576v640q0 26-19 45t-45 19q-20 0-37-12l-448-320q-27-19-27-52t27-52l448-320q17-12 37-12 26 0 45 19t19 45zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.caretSquareOLeft = caretSquareOLeft;
+var toggleLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 576v640q0 26-19 45t-45 19q-20 0-37-12l-448-320q-27-19-27-52t27-52l448-320q17-12 37-12 26 0 45 19t19 45zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.toggleLeft = toggleLeft;
+var dotCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 896q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM768 352q-148 0-273 73t-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273-73-273-198-198-273-73zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.dotCircleO = dotCircleO;
+var wheelchair = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1023 1187l102 204q-58 179-210 290t-339 111q-156 0-288.5-77.5t-210-210-77.5-288.5q0-181 104.5-330t274.5-211l17 131q-122 54-195 165.5t-73 244.5q0 185 131.5 316.5t316.5 131.5q126 0 232.5-65t165-175.5 49.5-236.5zM1571 1287l58 114-256 128q-13 7-29 7-40 0-57-35l-239-477h-472q-24 0-42.5-16.5t-21.5-40.5l-96-779q-2-17 6-42 14-51 57-82.5t97-31.5q66 0 113 47t47 113q0 69-52 117.5t-120 41.5l37 289h423v128h-407l16 128h455q40 0 57 35l228 455z"
+ }
+ }]
+};
+exports.wheelchair = wheelchair;
+var vimeoSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1292 638q10-216-161-222-231-8-312 261 44-19 82-19 85 0 74 96-4 57-74 167t-105 110q-43 0-82-169-13-54-45-255-30-189-160-177-59 7-164 100l-81 72-81 72 52 67q76-52 87-52 57 0 107 179 15 55 45 164.5t45 164.5q68 179 164 179 157 0 383-294 220-283 226-444zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.vimeoSquare = vimeoSquare;
+var tryIcon = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 832q0 191-94.5 353t-256.5 256.5-353 94.5h-160q-14 0-23-9t-9-23v-611l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-93l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-250q0-14 9-23t23-9h160q14 0 23 9t9 23v181l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v93l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v487q188-13 318-151t130-328q0-14 9-23t23-9h160q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.tryIcon = tryIcon;
+var turkishLira = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 832q0 191-94.5 353t-256.5 256.5-353 94.5h-160q-14 0-23-9t-9-23v-611l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-93l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-250q0-14 9-23t23-9h160q14 0 23 9t9 23v181l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v93l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v487q188-13 318-151t130-328q0-14 9-23t23-9h160q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.turkishLira = turkishLira;
+var plusSquareO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 800v64q0 14-9 23t-23 9h-352v352q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-352h-352q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-352q0-14 9-23t23-9h64q14 0 23 9t9 23v352h352q14 0 23 9t9 23zM1280 1248v-832q0-66-47-113t-113-47h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.plusSquareO = plusSquareO;
+var spaceShuttle = {
+ "viewBox": "0 0 2176 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M620 1120q-110 64-268 64h-128v-64h-64q-13 0-22.5-23.5t-9.5-56.5q0-24 7-49-58-2-96.5-10.5t-38.5-20.5 38.5-20.5 96.5-10.5q-7-25-7-49 0-33 9.5-56.5t22.5-23.5h64v-64h128q158 0 268 64h1113q42 7 106.5 18t80.5 14q89 15 150 40.5t83.5 47.5 22.5 40-22.5 40-83.5 47.5-150 40.5q-16 3-80.5 14t-106.5 18h-1113zM1739 868q53 36 53 92t-53 92l81 30q68-48 68-122t-68-122zM625 1136h1015q-217 38-456 80-57 0-113 24t-83 48l-28 24-288 288q-26 26-70.5 45t-89.5 19h-96l-93-464h29q157 0 273-64zM352 720h-29l93-464h96q46 0 90 19t70 45l288 288q4 4 11 10.5t30.5 23 48.5 29 61.5 23 72.5 10.5l456 80h-1015q-116-64-273-64z"
+ }
+ }]
+};
+exports.spaceShuttle = spaceShuttle;
+var slack = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1519 776q62 0 103.5 40.5t41.5 101.5q0 97-93 130l-172 59 56 167q7 21 7 47 0 59-42 102t-101 43q-47 0-85.5-27t-53.5-72l-55-165-310 106 55 164q8 24 8 47 0 59-42 102t-102 43q-47 0-85-27t-53-72l-55-163-153 53q-29 9-50 9-61 0-101.5-40t-40.5-101q0-47 27.5-85t71.5-53l156-53-105-313-156 54q-26 8-48 8-60 0-101-40.5t-41-100.5q0-47 27.5-85t71.5-53l157-53-53-159q-8-24-8-47 0-60 42-102.5t102-42.5q47 0 85 27t53 72l54 160 310-105-54-160q-8-24-8-47 0-59 42.5-102t101.5-43q47 0 85.5 27.5t53.5 71.5l53 161 162-55q21-6 43-6 60 0 102.5 39.5t42.5 98.5q0 45-30 81.5t-74 51.5l-157 54 105 316 164-56q24-8 46-8zM725 1038l310-105-105-315-310 107z"
+ }
+ }]
+};
+exports.slack = slack;
+var envelopeSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM1280 1184v-436q-31 35-64 55-34 22-132.5 85t-151.5 99q-98 69-164 69v0 0q-66 0-164-69-47-32-142-92.5t-142-92.5q-12-8-33-27t-31-27v436q0 40 28 68t68 28h832q40 0 68-28t28-68zM1280 611q0-41-27.5-70t-68.5-29h-832q-40 0-68 28t-28 68q0 37 30.5 76.5t67.5 64.5q47 32 137.5 89t129.5 83q3 2 17 11.5t21 14 21 13 23.5 13 21.5 9.5 22.5 7.5 20.5 2.5 20.5-2.5 22.5-7.5 21.5-9.5 23.5-13 21-13 21-14 17-11.5l267-174q35-23 66.5-62.5t31.5-73.5z"
+ }
+ }]
+};
+exports.envelopeSquare = envelopeSquare;
+var wordpress = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M127 896q0-163 67-313l367 1005q-196-95-315-281t-119-411zM1415 857q0 19-2.5 38.5t-10 49.5-11.5 44-17.5 59-17.5 58l-76 256-278-826q46-3 88-8 19-2 26-18.5t-2.5-31-28.5-13.5l-205 10q-75-1-202-10-12-1-20.5 5t-11.5 15-1.5 18.5 9 16.5 19.5 8l80 8 120 328-168 504-280-832q46-3 88-8 19-2 26-18.5t-2.5-31-28.5-13.5l-205 10q-7 0-23-0.5t-26-0.5q105-160 274.5-253.5t367.5-93.5q147 0 280.5 53t238.5 149h-10q-55 0-92 40.5t-37 95.5q0 12 2 24t4 21.5 8 23 9 21 12 22.5 12.5 21 14.5 24 14 23q63 107 63 212zM909 963l237 647q1 6 5 11-126 44-255 44-112 0-217-32zM1570 527q95 174 95 369 0 209-104 385.5t-279 278.5l235-678q59-169 59-276 0-42-6-79zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 1751q173 0 331.5-68t273-182.5 182.5-273 68-331.5-68-331.5-182.5-273-273-182.5-331.5-68-331.5 68-273 182.5-182.5 273-68 331.5 68 331.5 182.5 273 273 182.5 331.5 68z"
+ }
+ }]
+};
+exports.wordpress = wordpress;
+var openid = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1086 0v1536l-272 128q-228-20-414-102t-293-208.5-107-272.5q0-140 100.5-263.5t275-205.5 391.5-108v172q-217 38-356.5 150t-139.5 255q0 152 154.5 267t388.5 145v-1360zM1755 582l37 390-525-114 147-83q-119-70-280-99v-172q277 33 481 157z"
+ }
+ }]
+};
+exports.openid = openid;
+var bank = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z"
+ }
+ }]
+};
+exports.bank = bank;
+var institution = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z"
+ }
+ }]
+};
+exports.institution = institution;
+var university = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z"
+ }
+ }]
+};
+exports.university = university;
+var graduationCap = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1774 836l18 316q4 69-82 128t-235 93.5-323 34.5-323-34.5-235-93.5-82-128l18-316 574 181q22 7 48 7t48-7zM2304 512q0 23-22 31l-1120 352q-4 1-10 1t-10-1l-652-206q-43 34-71 111.5t-34 178.5q63 36 63 109 0 69-58 107l58 433q2 14-8 25-9 11-24 11h-192q-15 0-24-11-10-11-8-25l58-433q-58-38-58-107 0-73 65-111 11-207 98-330l-333-104q-22-8-22-31t22-31l1120-352q4-1 10-1t10 1l1120 352q22 8 22 31z"
+ }
+ }]
+};
+exports.graduationCap = graduationCap;
+var mortarBoard = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1774 836l18 316q4 69-82 128t-235 93.5-323 34.5-323-34.5-235-93.5-82-128l18-316 574 181q22 7 48 7t48-7zM2304 512q0 23-22 31l-1120 352q-4 1-10 1t-10-1l-652-206q-43 34-71 111.5t-34 178.5q63 36 63 109 0 69-58 107l58 433q2 14-8 25-9 11-24 11h-192q-15 0-24-11-10-11-8-25l58-433q-58-38-58-107 0-73 65-111 11-207 98-330l-333-104q-22-8-22-31t22-31l1120-352q4-1 10-1t10 1l1120 352q22 8 22 31z"
+ }
+ }]
+};
+exports.mortarBoard = mortarBoard;
+var yahoo = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M859 957l13 707q-62-11-105-11-41 0-105 11l13-707q-40-69-168.5-295.5t-216.5-374.5-181-287q58 15 108 15 44 0 111-15 63 111 133.5 229.5t167 276.5 138.5 227q37-61 109.5-177.5t117.5-190 105-176 107-189.5q54 14 107 14 56 0 114-14v0q-28 39-60 88.5t-49.5 78.5-56.5 96-49 84q-146 248-353 610z"
+ }
+ }]
+};
+exports.yahoo = yahoo;
+var google = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 786h725q12 67 12 128 0 217-91 387.5t-259.5 266.5-386.5 96q-157 0-299-60.5t-245-163.5-163.5-245-60.5-299 60.5-299 163.5-245 245-163.5 299-60.5q300 0 515 201l-209 201q-123-119-306-119-129 0-238.5 65t-173.5 176.5-64 243.5 64 243.5 173.5 176.5 238.5 65q87 0 160-24t120-60 82-82 51.5-87 22.5-78h-436v-264z"
+ }
+ }]
+};
+exports.google = google;
+var reddit = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1095 1167q16 16 0 31-62 62-199 62t-199-62q-16-15 0-31 6-6 15-6t15 6q48 49 169 49 120 0 169-49 6-6 15-6t15 6zM788 986q0 37-26 63t-63 26-63.5-26-26.5-63q0-38 26.5-64t63.5-26 63 26.5 26 63.5zM1183 986q0 37-26.5 63t-63.5 26-63-26-26-63 26-63.5 63-26.5 63.5 26 26.5 64zM1434 866q0-49-35-84t-85-35-86 36q-130-90-311-96l63-283 200 45q0 37 26 63t63 26 63.5-26.5 26.5-63.5-26.5-63.5-63.5-26.5q-54 0-80 50l-221-49q-19-5-25 16l-69 312q-180 7-309 97-35-37-87-37-50 0-85 35t-35 84q0 35 18.5 64t49.5 44q-6 27-6 56 0 142 140 243t337 101q198 0 338-101t140-243q0-32-7-57 30-15 48-43.5t18-63.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.reddit = reddit;
+var redditSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M939 1129q13 13 0 26-53 53-171 53t-171-53q-13-13 0-26 5-6 13-6t13 6q42 42 145 42t145-42q5-6 13-6t13 6zM676 973q0 31-23 54t-54 23-54-23-23-54q0-32 22.5-54.5t54.5-22.5 54.5 22.5 22.5 54.5zM1014 973q0 31-23 54t-54 23-54-23-23-54q0-32 22.5-54.5t54.5-22.5 54.5 22.5 22.5 54.5zM1229 870q0-42-30-72t-73-30q-42 0-73 31-113-78-267-82l54-243 171 39q1 32 23.5 54t53.5 22q32 0 54.5-22.5t22.5-54.5-22.5-54.5-54.5-22.5q-48 0-69 43l-189-42q-17-5-21 13l-60 268q-154 6-265 83-30-32-74-32-43 0-73 30t-30 72q0 30 16 55t42 38q-5 25-5 48 0 122 120 208.5t289 86.5q170 0 290-86.5t120-208.5q0-25-6-49 25-13 40.5-37.5t15.5-54.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.redditSquare = redditSquare;
+var stumbleuponCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M866 839l90-27v-62q0-79-58-135t-138-56-138 55.5-58 134.5v283q0 20-14 33.5t-33 13.5-32.5-13.5-13.5-33.5v-120h-151v122q0 82 57.5 139t139.5 57q81 0 138.5-56.5t57.5-136.5v-280q0-19 13.5-33t33.5-14q19 0 32.5 14t13.5 33v54zM1199 1034v-122h-150v126q0 20-13.5 33.5t-33.5 13.5q-19 0-32.5-14t-13.5-33v-123l-90 26-60-28v123q0 80 58 137t139 57 138.5-57 57.5-139zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.stumbleuponCircle = stumbleuponCircle;
+var stumbleupon = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1062 712v-118q0-42-30-72t-72-30-72 30-30 72v612q0 175-126 299t-303 124q-178 0-303.5-125.5t-125.5-303.5v-266h328v262q0 43 30 72.5t72 29.5 72-29.5 30-72.5v-620q0-171 126.5-292t301.5-121q176 0 302 122t126 294v136l-195 58zM1592 934h328v266q0 178-125.5 303.5t-303.5 125.5q-177 0-303-124.5t-126-300.5v-268l131 61 195-58v270q0 42 30 71.5t72 29.5 72-29.5 30-71.5v-275z"
+ }
+ }]
+};
+exports.stumbleupon = stumbleupon;
+var delicious = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1472 1376v-480h-704v-704h-480q-93 0-158.5 65.5t-65.5 158.5v480h704v704h480q93 0 158.5-65.5t65.5-158.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.delicious = delicious;
+var digg = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M328 282h204v983h-532v-697h328v-286zM328 1101v-369h-123v369h123zM614 568v697h205v-697h-205zM614 282v204h205v-204h-205zM901 568h533v942h-533v-163h328v-82h-328v-697zM1229 1101v-369h-123v369h123zM1516 568h532v942h-532v-163h327v-82h-327v-697zM1843 1101v-369h-123v369h123z"
+ }
+ }]
+};
+exports.digg = digg;
+var piedPiperPp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1046 1020q0 64-38 109t-91 45q-43 0-70-15v-277q28-17 70-17 53 0 91 45.5t38 109.5zM703 592q0 64-38 109.5t-91 45.5q-43 0-70-15v-277q28-17 70-17 53 0 91 45t38 109zM1265 1023q0-134-88-229t-213-95q-20 0-39 3-23 78-78 136-87 95-211 101v636l211-41v-206q51 19 117 19 125 0 213-95t88-229zM922 596q0-134-88.5-229t-213.5-95q-74 0-141 36h-186v840l211-41v-206q55 19 116 19 125 0 213.5-95t88.5-229zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.piedPiperPp = piedPiperPp;
+var piedPiperAlt = {
+ "viewBox": "0 0 2038 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1222 929q75-3 143.5 20.5t118 58.5 101 94.5 84 108 75.5 120.5q33 56 78.5 109t75.5 80.5 99 88.5q-48 30-108.5 57.5t-138.5 59-114 47.5q-44-37-74-115t-43.5-164.5-33-180.5-42.5-168.5-72.5-123-122.5-48.5l-10 2-6 4q4 5 13 14 6 5 28 23.5t25.5 22 19 18 18 20.5 11.5 21 10.5 27.5 4.5 31 4 40.5l1 33q1 26-2.5 57.5t-7.5 52-12.5 58.5-11.5 53q-35-1-101 9.5t-98 10.5q-39 0-72-10-2-16-2-47 0-74 3-96 2-13 31.5-41.5t57-59 26.5-51.5q-24-2-43 24-36 53-111.5 99.5t-136.5 46.5q-25 0-75.5-63t-106.5-139.5-84-96.5q-6-4-27-30-482 112-513 112-16 0-28-11t-12-27q0-15 8.5-26.5t22.5-14.5l486-106q-8-14-8-25t5.5-17.5 16-11.5 20-7 23-4.5 18.5-4.5q4-1 15.5-7.5t17.5-6.5q15 0 28 16t20 33q163-37 172-37 17 0 29.5 11t12.5 28q0 15-8.5 26t-23.5 14l-182 40-1 16q-1 26 81.5 117.5t104.5 91.5q47 0 119-80t72-129q0-36-23.5-53t-51-18.5-51-11.5-23.5-34q0-16 10-34l-68-19q43-44 43-117 0-26-5-58 82-16 144-16 44 0 71.5 1.5t48.5 8.5 31 13.5 20.5 24.5 15.5 33.5 17 47.5 24 60l50-25q-3 40-23 60t-42.5 21-40 6.5-16.5 20.5zM1282 694q-5-5-13.5-15.5t-12-14.5-10.5-11.5-10-10.5l-8-8t-8.5-7.5-8-5-8.5-4.5q-7-3-14.5-5t-20.5-2.5-22-0.5h-32.5-37.5q-126 0-217 43 16-30 36-46.5t54-29.5 65.5-36 46-36.5 50-55 43.5-50.5q12 9 28 31.5t32 36.5 38 13l12-1v76l22 1q247-95 371-190 28-21 50-39t42.5-37.5 33-31 29.5-34 24-31 24.5-37 23-38 27-47.5 29.5-53l7-9q-2 53-43 139-79 165-205 264t-306 142q-14 3-42 7.5t-50 9.5-39 14q3 19 24.5 46t21.5 34q0 11-26 30zM1061 1615q39-26 131.5-47.5t146.5-21.5q9 0 22.5 15.5t28 42.5 26 50 24 51 14.5 33q-121 45-244 45-61 0-125-11zM822 968l48-12 109 177-73 48zM1323 1485q3 15 3 16 0 7-17.5 14.5t-46 13-54 9.5-53.5 7.5-32 4.5l-7-43q21-2 60.5-8.5t72-10 60.5-3.5h14zM866 857l-96 20-6-17q10-1 32.5-7t34.5-6q19 0 35 10zM1061 1491h31l10 83-41 12v-95zM1950 1v-1 1zM1950 1l-1 5-2 2 1-3zM1950 1l1-1z"
+ }
+ }]
+};
+exports.piedPiperAlt = piedPiperAlt;
+var drupal = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1167 1586q-5-19-24-5-30 22-87 39t-131 17q-129 0-193-49-5-4-13-4-11 0-26 12-7 6-7.5 16t7.5 20q34 32 87.5 46t102.5 12.5 99-4.5q41-4 84.5-20.5t65-30 28.5-20.5q12-12 7-29zM1128 1471q-19-47-39-61-23-15-76-15-47 0-71 10-29 12-78 56-26 24-12 44 9 8 17.5 4.5t31.5-23.5q3-2 10.5-8.5t10.5-8.5 10-7 11.5-7 12.5-5 15-4.5 16.5-2.5 20.5-1q27 0 44.5 7.5t23 14.5 13.5 22q10 17 12.5 20t12.5-1q23-12 14-34zM1483 1190q0-22-5-44.5t-16.5-45-34-36.5-52.5-14q-33 0-97 41.5t-129 83.5-101 42q-27 1-63.5-19t-76-49-83.5-58-100-49-111-19q-115 1-197 78.5t-84 178.5q-2 112 74 164 29 20 62.5 28.5t103.5 8.5q57 0 132-32.5t134-71 120-70.5 93-31q26 1 65 31.5t71.5 67 68 67.5 55.5 32q35 3 58.5-14t55.5-63q28-41 42.5-101t14.5-106zM1536 1030q0 164-62 304.5t-166 236-242.5 149.5-290.5 54-293-57.5-247.5-157-170.5-241.5-64-302q0-89 19.5-172.5t49-145.5 70.5-118.5 78.5-94 78.5-69.5 64.5-46.5 42.5-24.5q14-8 51-26.5t54.5-28.5 48-30 60.5-44q36-28 58-72.5t30-125.5q129 155 186 193 44 29 130 68t129 66q21 13 39 25t60.5 46.5 76 70.5 75 95 69 122 47 148.5 19.5 177.5z"
+ }
+ }]
+};
+exports.drupal = drupal;
+var joomla = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1070 1073l-160 160-151 152-30 30q-65 64-151.5 87t-171.5 2q-16 70-72 115t-129 45q-85 0-145-60.5t-60-145.5q0-72 44.5-128t113.5-72q-22-86 1-173t88-152l12-12 151 152-11 11q-37 37-37 89t37 90q37 37 89 37t89-37l30-30 151-152 161-160zM729 391l12 12-152 152-12-12q-37-37-89-37t-89 37-37 89.5 37 89.5l29 29 152 152 160 160-151 152-161-160-151-152-30-30q-68-67-90-159.5t5-179.5q-70-15-115-71t-45-129q0-85 60-145.5t145-60.5q76 0 133.5 49t69.5 123q84-20 169.5 3.5t149.5 87.5zM1536 1458q0 85-60 145.5t-145 60.5q-74 0-131-47t-71-118q-86 28-179.5 6t-161.5-90l-11-12 151-152 12 12q37 37 89 37t89-37 37-89-37-89l-30-30-152-152-160-160 152-152 160 160 152 152 29 30q64 64 87.5 150.5t2.5 171.5q76 11 126.5 68.5t50.5 134.5zM1534 334q0 77-51 135t-127 69q26 85 3 176.5t-90 158.5l-12 12-151-152 12-12q37-37 37-89t-37-89-89-37-89 37l-30 30-152 152-160 160-152-152 161-160 152-152 29-30q67-67 159-89.5t178 3.5q11-75 68.5-126t135.5-51q85 0 145 60.5t60 145.5z"
+ }
+ }]
+};
+exports.joomla = joomla;
+var language = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M654 1078q-1 3-12.5-0.5t-31.5-11.5l-20-9q-44-20-87-49-7-5-41-31.5t-38-28.5q-67 103-134 181-81 95-105 110-4 2-19.5 4t-18.5 0q6-4 82-92 21-24 85.5-115t78.5-118q17-30 51-98.5t36-77.5q-8-1-110 33-8 2-27.5 7.5t-34.5 9.5-17 5q-2 2-2 10.5t-1 9.5q-5 10-31 15-23 7-47 0-18-4-28-21-4-6-5-23 6-2 24.5-5t29.5-6q58-16 105-32 100-35 102-35 10-2 43-19.5t44-21.5q9-3 21.5-8t14.5-5.5 6 0.5q2 12-1 33 0 2-12.5 27t-26.5 53.5-17 33.5q-25 50-77 131l64 28q12 6 74.5 32t67.5 28q4 1 10.5 25.5t4.5 30.5zM449 592q3 15-4 28-12 23-50 38-30 12-60 12-26-3-49-26-14-15-18-41l1-3q3 3 19.5 5t26.5 0 58-16q36-12 55-14 17 0 21 17zM1147 721l63 227-139-42zM39 1521l694-232v-1032l-694 233v1031zM1280 1204l102 31-181-657-100-31-216 536 102 31 45-110 211 65zM777 242l573 184v-380zM1088 1565l158 13-54 160-40-66q-130 83-276 108-58 12-91 12h-84q-79 0-199.5-39t-183.5-85q-8-7-8-16 0-8 5-13.5t13-5.5q4 0 18 7.5t30.5 16.5 20.5 11q73 37 159.5 61.5t157.5 24.5q95 0 167-14.5t157-50.5q15-7 30.5-15.5t34-19 28.5-16.5zM1536 486v1079l-774-246q-14 6-375 127.5t-368 121.5q-13 0-18-13 0-1-1-3v-1078q3-9 4-10 5-6 20-11 107-36 149-50v-384l558 198q2 0 160.5-55t316-108.5 161.5-53.5q20 0 20 21v418z"
+ }
+ }]
+};
+exports.language = language;
+var fax = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288 384q66 0 113 47t47 113v1088q0 66-47 113t-113 47h-128q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h128zM1664 547q58 34 93 93t35 128v768q0 106-75 181t-181 75h-864q-66 0-113-47t-47-113v-1536q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v163zM928 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM928 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM928 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1184 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1536v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1280v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1440 1024v-128q0-14-9-23t-23-9h-128q-14 0-23 9t-9 23v128q0 14 9 23t23 9h128q14 0 23-9t9-23zM1536 640v-256h-160q-40 0-68-28t-28-68v-160h-640v512h896z"
+ }
+ }]
+};
+exports.fax = fax;
+var building = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1344 0q26 0 45 19t19 45v1664q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h1280zM512 288v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 544v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 800v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM512 1056v64q0 14 9 23t23 9h64q14 0 23-9t9-23v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM384 1376v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM384 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 1632v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM896 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM896 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 1376v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 1120v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 864v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 608v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23zM1152 352v-64q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v64q0 14 9 23t23 9h64q14 0 23-9t9-23z"
+ }
+ }]
+};
+exports.building = building;
+var child = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1188 548l-292 292v824q0 46-33 79t-79 33-79-33-33-79v-384h-64v384q0 46-33 79t-79 33-79-33-33-79v-824l-292-292q-28-28-28-68t28-68q29-28 68.5-28t67.5 28l228 228h368l228-228q28-28 68-28t68 28q28 29 28 68.5t-28 67.5zM864 384q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z"
+ }
+ }]
+};
+exports.child = child;
+var paw = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M780 472q0 60-19 113.5t-63 92.5-105 39q-76 0-138-57.5t-92-135.5-30-151q0-60 19-113.5t63-92.5 105-39q77 0 138.5 57.5t91.5 135 30 151.5zM438 955q0 80-42 139t-119 59q-76 0-141.5-55.5t-100.5-133.5-35-152q0-80 42-139.5t119-59.5q76 0 141.5 55.5t100.5 134 35 152.5zM832 928q118 0 255 97.5t229 237 92 254.5q0 46-17 76.5t-48.5 45-64.5 20-76 5.5q-68 0-187.5-45t-182.5-45q-66 0-192.5 44.5t-200.5 44.5q-183 0-183-146 0-86 56-191.5t139.5-192.5 187.5-146 193-59zM1071 717q-61 0-105-39t-63-92.5-19-113.5q0-74 30-151.5t91.5-135 138.5-57.5q61 0 105 39t63 92.5 19 113.5q0 73-30 151t-92 135.5-138 57.5zM1503 613q77 0 119 59.5t42 139.5q0 74-35 152t-100.5 133.5-141.5 55.5q-77 0-119-59t-42-139q0-74 35-152.5t100.5-134 141.5-55.5z"
+ }
+ }]
+};
+exports.paw = paw;
+var spoon = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 528q0 145-57 243.5t-152 135.5l45 821q2 26-16 45t-44 19h-192q-26 0-44-19t-16-45l45-821q-95-37-152-135.5t-57-243.5q0-128 42.5-249.5t117.5-200 160-78.5 160 78.5 117.5 200 42.5 249.5z"
+ }
+ }]
+};
+exports.spoon = spoon;
+var cube = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1629l640-349v-636l-640 233v752zM832 764l698-254-698-254-698 254zM1664 512v768q0 35-18 65t-49 47l-704 384q-28 16-61 16t-61-16l-704-384q-31-17-49-47t-18-65v-768q0-40 23-73t61-47l704-256q22-8 44-8t44 8l704 256q38 14 61 47t23 73z"
+ }
+ }]
+};
+exports.cube = cube;
+var cubes = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1632l384-192v-314l-384 164v342zM576 1178l404-173-404-173-404 173zM1664 1632l384-192v-314l-384 164v342zM1600 1178l404-173-404-173-404 173zM1152 885l384-165v-266l-384 164v267zM1088 506l441-189-441-189-441 189zM2176 1024v416q0 36-19 67t-52 47l-448 224q-25 14-57 14t-57-14l-448-224q-4-2-7-4-2 2-7 4l-448 224q-25 14-57 14t-57-14l-448-224q-33-16-52-47t-19-67v-416q0-38 21.5-70t56.5-48l434-186v-400q0-38 21.5-70t56.5-48l448-192q23-10 50-10t50 10l448 192q35 16 56.5 48t21.5 70v400l434 186q36 16 57 48t21 70z"
+ }
+ }]
+};
+exports.cubes = cubes;
+var behance = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1848 339h-511v124h511v-124zM1596 765q-90 0-146 52.5t-62 142.5h408q-18-195-200-195zM1612 1350q63 0 122-32t76-87h221q-100 307-427 307-214 0-340.5-132t-126.5-347q0-208 130.5-345.5t336.5-137.5q138 0 240.5 68t153 179 50.5 248q0 17-2 47h-658q0 111 57.5 171.5t166.5 60.5zM277 1300h296q205 0 205-167 0-180-199-180h-302v347zM277 763h281q78 0 123.5-36.5t45.5-113.5q0-144-190-144h-260v294zM0 254h594q87 0 155 14t126.5 47.5 90 96.5 31.5 154q0 181-172 263 114 32 172 115t58 204q0 75-24.5 136.5t-66 103.5-98.5 71-121 42-134 13h-611v-1260z"
+ }
+ }]
+};
+exports.behance = behance;
+var behanceSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960zM499 495h-371v787h382q117 0 197-57.5t80-170.5q0-158-143-200 107-52 107-164 0-57-19.5-96.5t-56.5-60.5-79-29.5-97-8.5zM477 813h-176v-184h163q119 0 119 90 0 94-106 94zM486 1148h-185v-217h189q124 0 124 113 0 104-128 104zM1136 1180q-68 0-104-38t-36-107h411q1-10 1-30 0-132-74.5-220.5t-203.5-88.5q-128 0-210 86t-82 216q0 135 79 217t213 82q205 0 267-191h-138q-11 34-47.5 54t-75.5 20zM1126 814q113 0 124 122h-254q4-56 39-89t91-33zM964 548h319v77h-319v-77z"
+ }
+ }]
+};
+exports.behanceSquare = behanceSquare;
+var steam = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1582 582q0 101-71.5 172.5t-172.5 71.5-172.5-71.5-71.5-172.5 71.5-172.5 172.5-71.5 172.5 71.5 71.5 172.5zM812 1324q0-104-73-177t-177-73q-27 0-54 6l104 42q77 31 109.5 106.5t1.5 151.5q-31 77-107 109t-152 1q-21-8-62-24.5t-61-24.5q32 60 91 96.5t130 36.5q104 0 177-73t73-177zM1642 583q0-126-89.5-215.5t-215.5-89.5q-127 0-216.5 89.5t-89.5 215.5q0 127 89.5 216t216.5 89q126 0 215.5-89t89.5-216zM1792 583q0 189-133.5 322t-321.5 133l-437 319q-12 129-109 218t-229 89q-121 0-214-76t-118-192l-230-92v-429l389 157q79-48 173-48 13 0 35 2l284-407q2-187 135.5-319t320.5-132q188 0 321.5 133.5t133.5 321.5z"
+ }
+ }]
+};
+exports.steam = steam;
+var steamSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1242 647q0-80-57-136.5t-137-56.5-136.5 57-56.5 136q0 80 56.5 136.5t136.5 56.5 137-56.5 57-136.5zM632 1235q0 83-58 140.5t-140 57.5q-56 0-103-29t-72-77q52 20 98 40 60 24 120-1.5t85-86.5q24-60-1.5-120t-86.5-84l-82-33q22-5 42-5 82 0 140 57.5t58 140.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-153l172 69q20 92 93.5 152t168.5 60q104 0 181-70t87-173l345-252q150 0 255.5-105.5t105.5-254.5q0-150-105.5-255.5t-255.5-105.5q-148 0-253 104.5t-107 252.5l-225 322q-9-1-28-1-75 0-137 37l-297-119v-468q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5zM1289 649q0 100-71 170.5t-171 70.5-170.5-70.5-70.5-170.5 70.5-171 170.5-71q101 0 171.5 70.5t70.5 171.5z"
+ }
+ }]
+};
+exports.steamSquare = steamSquare;
+var recycle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M836 1169l-15 368-2 22-420-29q-36-3-67-31.5t-47-65.5q-11-27-14.5-55t4-65 12-55 21.5-64 19-53q78 12 509 28zM449 583l180 379-147-92q-63 72-111.5 144.5t-72.5 125-39.5 94.5-18.5 63l-4 21-190-357q-17-26-18-56t6-47l8-18q35-63 114-188l-140-86zM1680 1100l-188 359q-12 29-36.5 46.5t-43.5 20.5l-18 4q-71 7-219 12l8 164-230-367 211-362 7 173q170 16 283 5t170-33zM895 176q-47 63-265 435l-317-187-19-12 225-356q20-31 60-45t80-10q24 2 48.5 12t42 21 41.5 33 36 34.5 36 39.5 32 35zM1550 483l212 363q18 37 12.5 76t-27.5 74q-13 20-33 37t-38 28-48.5 22-47 16-51.5 14-46 12q-34-72-265-436l313-195zM1407 257l142-83-220 373-419-20 151-86q-34-89-75-166t-75.5-123.5-64.5-80-47-46.5l-17-13 405 1q31-3 58 10.5t39 28.5l11 15q39 61 112 190z"
+ }
+ }]
+};
+exports.recycle = recycle;
+var automobile = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM516 768h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1888 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM2048 992v384q0 14-9 23t-23 9h-96v128q0 80-56 136t-136 56-136-56-56-136v-128h-1024v128q0 80-56 136t-136 56-136-56-56-136v-128h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h768q98 0 179 63.5t104 157.5l105 419h28q93 0 158.5 65.5t65.5 158.5z"
+ }
+ }]
+};
+exports.automobile = automobile;
+var car = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM516 768h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1888 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113zM2048 992v384q0 14-9 23t-23 9h-96v128q0 80-56 136t-136 56-136-56-56-136v-128h-1024v128q0 80-56 136t-136 56-136-56-56-136v-128h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h768q98 0 179 63.5t104 157.5l105 419h28q93 0 158.5 65.5t65.5 158.5z"
+ }
+ }]
+};
+exports.car = car;
+var cab = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1824 896q93 0 158.5 65.5t65.5 158.5v384q0 14-9 23t-23 9h-96v64q0 80-56 136t-136 56-136-56-56-136v-64h-1024v64q0 80-56 136t-136 56-136-56-56-136v-64h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h128v-224q0-14 9-23t23-9h448q14 0 23 9t9 23v224h128q98 0 179 63.5t104 157.5l105 419h28zM320 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM516 896h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1728 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47z"
+ }
+ }]
+};
+exports.cab = cab;
+var taxi = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1824 896q93 0 158.5 65.5t65.5 158.5v384q0 14-9 23t-23 9h-96v64q0 80-56 136t-136 56-136-56-56-136v-64h-1024v64q0 80-56 136t-136 56-136-56-56-136v-64h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h128v-224q0-14 9-23t23-9h448q14 0 23 9t9 23v224h128q98 0 179 63.5t104 157.5l105 419h28zM320 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM516 896h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1728 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47z"
+ }
+ }]
+};
+exports.taxi = taxi;
+var tree = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1504 1472q0 26-19 45t-45 19h-462q1 17 6 87.5t5 108.5q0 25-18 42.5t-43 17.5h-320q-25 0-43-17.5t-18-42.5q0-38 5-108.5t6-87.5h-462q-26 0-45-19t-19-45 19-45l402-403h-229q-26 0-45-19t-19-45 19-45l402-403h-197q-26 0-45-19t-19-45 19-45l384-384q19-19 45-19t45 19l384 384q19 19 19 45t-19 45-45 19h-197l402 403q19 19 19 45t-19 45-45 19h-229l402 403q19 19 19 45z"
+ }
+ }]
+};
+exports.tree = tree;
+var spotify = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1127 1210q0-32-30-51-193-115-447-115-133 0-287 34-42 9-42 52 0 20 13.5 34.5t35.5 14.5q5 0 37-8 132-27 243-27 226 0 397 103 19 11 33 11 19 0 33-13.5t14-34.5zM1223 995q0-40-35-61-237-141-548-141-153 0-303 42-48 13-48 64 0 25 17.5 42.5t42.5 17.5q7 0 37-8 122-33 251-33 279 0 488 124 24 13 38 13 25 0 42.5-17.5t17.5-42.5zM1331 747q0-47-40-70-126-73-293-110.5t-343-37.5q-204 0-364 47-23 7-38.5 25.5t-15.5 48.5q0 31 20.5 52t51.5 21q11 0 40-8 133-37 307-37 159 0 309.5 34t253.5 95q21 12 40 12 29 0 50.5-20.5t21.5-51.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.spotify = spotify;
+var deviantart = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 303l-303 582 24 31h279v415h-507l-44 30-142 273-30 30h-301v-303l303-583-24-30h-279v-415h507l44-30 142-273 30-30h301v303z"
+ }
+ }]
+};
+exports.deviantart = deviantart;
+var soundcloud = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M784 1372l16-241-16-523q-1-10-7.5-17t-16.5-7q-9 0-16 7t-7 17l-14 523 14 241q1 10 7.5 16.5t15.5 6.5q22 0 24-23zM1080 1343l11-211-12-586q0-16-13-24-8-5-16-5t-16 5q-13 8-13 24l-1 6-10 579q0 1 11 236v1q0 10 6 17 9 11 23 11 11 0 20-9 9-7 9-20zM35 1003l20 128-20 126q-2 9-9 9t-9-9l-17-126 17-128q2-9 9-9t9 9zM121 924l26 207-26 203q-2 9-10 9-9 0-9-10l-23-202 23-207q0-9 9-9 8 0 10 9zM401 1377zM213 886l25 245-25 237q0 11-11 11-10 0-12-11l-21-237 21-245q2-12 12-12 11 0 11 12zM307 879l23 252-23 244q-2 13-14 13-13 0-13-13l-21-244 21-252q0-13 13-13 12 0 14 13zM401 897l21 234-21 246q-2 16-16 16-6 0-10.5-4.5t-4.5-11.5l-20-246 20-234q0-6 4.5-10.5t10.5-4.5q14 0 16 15zM784 1372zM495 751l21 380-21 246q0 7-5 12.5t-12 5.5q-16 0-18-18l-18-246 18-380q2-18 18-18 7 0 12 5.5t5 12.5zM589 665l19 468-19 244q0 8-5.5 13.5t-13.5 5.5q-18 0-20-19l-16-244 16-468q2-19 20-19 8 0 13.5 5.5t5.5 13.5zM687 625l18 506-18 242q-2 21-22 21-19 0-21-21l-16-242 16-506q0-9 6.5-15.5t14.5-6.5q9 0 15 6.5t7 15.5zM1079 1367v0 0 0zM881 621l15 510-15 239q0 10-7.5 17.5t-17.5 7.5-17-7-8-18l-14-239 14-510q0-11 7.5-18t17.5-7 17.5 7 7.5 18zM980 640l14 492-14 236q0 11-8 19t-19 8-19-8-9-19l-12-236 12-492q1-12 9-20t19-8 18.5 8 8.5 20zM1192 1132l-14 231v0q0 13-9 22t-22 9-22-9-10-22l-6-114-6-117 12-636v-3q2-15 12-24 9-7 20-7 8 0 15 5 14 8 16 26zM2304 1113q0 117-83 199.5t-200 82.5h-786q-13-2-22-11t-9-22v-899q0-23 28-33 85-34 181-34 195 0 338 131.5t160 323.5q53-22 110-22 117 0 200 83t83 201z"
+ }
+ }]
+};
+exports.soundcloud = soundcloud;
+var database = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 768q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 1536q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 1152q237 0 443-43t325-127v170q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-170q119 84 325 127t443 43zM768 0q208 0 385 34.5t280 93.5 103 128v128q0 69-103 128t-280 93.5-385 34.5-385-34.5-280-93.5-103-128v-128q0-69 103-128t280-93.5 385-34.5z"
+ }
+ }]
+};
+exports.database = database;
+var filePdfO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM894 1071q33 26 84 56 59-7 117-7 147 0 177 49 16 22 2 52 0 1-1 2l-2 2v1q-6 38-71 38-48 0-115-20t-130-53q-221 24-392 83-153 262-242 262-15 0-28-7l-24-12q-1-1-6-5-10-10-6-36 9-40 56-91.5t132-96.5q14-9 23 6 2 2 2 4 52-85 107-197 68-136 104-262-24-82-30.5-159.5t6.5-127.5q11-40 42-40h21 1q23 0 35 15 18 21 9 68-2 6-4 8 1 3 1 8v30q-2 123-14 192 55 164 146 238zM318 1482q52-24 137-158-51 40-87.5 84t-49.5 74zM716 562q-15 42-2 132 1-7 7-44 0-3 7-43 1-4 4-8-1-1-1-2-1-2-1-3-1-22-13-36 0 1-1 2v2zM592 1223q135-54 284-81-2-1-13-9.5t-16-13.5q-76-67-127-176-27 86-83 197-30 56-45 83zM1238 1207q-24-24-140-24 76 28 124 28 14 0 18-1 0-1-2-3z"
+ }
+ }]
+};
+exports.filePdfO = filePdfO;
+var fileWordO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM233 768v107h70l164 661h159l128-485q7-20 10-46 2-16 2-24h4l3 24q1 3 3.5 20t5.5 26l128 485h159l164-661h70v-107h-300v107h90l-99 438q-5 20-7 46l-2 21h-4q0-3-0.5-6.5t-1.5-8-1-6.5q-1-5-4-21t-5-25l-144-545h-114l-144 545q-2 9-4.5 24.5t-3.5 21.5l-4 21h-4l-2-21q-2-26-7-46l-99-438h90v-107h-300z"
+ }
+ }]
+};
+exports.fileWordO = fileWordO;
+var fileExcelO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM429 1430v106h281v-106h-75l103-161q5-7 10-16.5t7.5-13.5 3.5-4h2q1 4 5 10 2 4 4.5 7.5t6 8 6.5 8.5l107 161h-76v106h291v-106h-68l-192-273 195-282h67v-107h-279v107h74l-103 159q-4 7-10 16.5t-9 13.5l-2 3h-2q-1-4-5-10-6-11-17-23l-106-159h76v-107h-290v107h68l189 272-194 283h-68z"
+ }
+ }]
+};
+exports.fileExcelO = fileExcelO;
+var filePowerpointO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM416 1430v106h327v-106h-93v-167h137q76 0 118-15 67-23 106.5-87t39.5-146q0-81-37-141t-100-87q-48-19-130-19h-368v107h92v555h-92zM769 1150h-119v-268h120q52 0 83 18 56 33 56 115 0 89-62 120-31 15-78 15z"
+ }
+ }]
+};
+exports.filePowerpointO = filePowerpointO;
+var fileImageO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z"
+ }
+ }]
+};
+exports.fileImageO = fileImageO;
+var filePhotoO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z"
+ }
+ }]
+};
+exports.filePhotoO = filePhotoO;
+var filePictureO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM1280 1216v320h-1024v-192l192-192 128 128 384-384zM448 1024q-80 0-136-56t-56-136 56-136 136-56 136 56 56 136-56 136-136 56z"
+ }
+ }]
+};
+exports.filePictureO = filePictureO;
+var fileArchiveO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 384v-128h-128v128h128zM768 512v-128h-128v128h128zM640 640v-128h-128v128h128zM768 768v-128h-128v128h128zM1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-128v128h-128v-128h-512v1536h1280zM781 943l107 349q8 27 8 52 0 83-72.5 137.5t-183.5 54.5-183.5-54.5-72.5-137.5q0-25 8-52 21-63 120-396v-128h128v128h79q22 0 39 13t23 34zM640 1408q53 0 90.5-19t37.5-45-37.5-45-90.5-19-90.5 19-37.5 45 37.5 45 90.5 19z"
+ }
+ }]
+};
+exports.fileArchiveO = fileArchiveO;
+var fileZipO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 384v-128h-128v128h128zM768 512v-128h-128v128h128zM640 640v-128h-128v128h128zM768 768v-128h-128v128h128zM1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-128v128h-128v-128h-512v1536h1280zM781 943l107 349q8 27 8 52 0 83-72.5 137.5t-183.5 54.5-183.5-54.5-72.5-137.5q0-25 8-52 21-63 120-396v-128h128v128h79q22 0 39 13t23 34zM640 1408q53 0 90.5-19t37.5-45-37.5-45-90.5-19-90.5 19-37.5 45 37.5 45 90.5 19z"
+ }
+ }]
+};
+exports.fileZipO = fileZipO;
+var fileAudioO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM620 850q20 8 20 30v544q0 22-20 30-8 2-12 2-12 0-23-9l-166-167h-131q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h131l166-167q16-15 35-7zM1037 1539q31 0 50-24 129-159 129-363t-129-363q-16-21-43-24t-47 14q-21 17-23.5 43.5t14.5 47.5q100 123 100 282t-100 282q-17 21-14.5 47.5t23.5 42.5q18 15 40 15zM826 1391q27 0 47-20 87-93 87-219t-87-219q-18-19-45-20t-46 17-20 44.5 18 46.5q52 57 52 131t-52 131q-19 20-18 46.5t20 44.5q20 17 44 17z"
+ }
+ }]
+};
+exports.fileAudioO = fileAudioO;
+var fileSoundO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM620 850q20 8 20 30v544q0 22-20 30-8 2-12 2-12 0-23-9l-166-167h-131q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h131l166-167q16-15 35-7zM1037 1539q31 0 50-24 129-159 129-363t-129-363q-16-21-43-24t-47 14q-21 17-23.5 43.5t14.5 47.5q100 123 100 282t-100 282q-17 21-14.5 47.5t23.5 42.5q18 15 40 15zM826 1391q27 0 47-20 87-93 87-219t-87-219q-18-19-45-20t-46 17-20 44.5 18 46.5q52 57 52 131t-52 131q-19 20-18 46.5t20 44.5q20 17 44 17z"
+ }
+ }]
+};
+exports.fileSoundO = fileSoundO;
+var fileMovieO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM768 768q52 0 90 38t38 90v384q0 52-38 90t-90 38h-384q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h384zM1260 770q20 8 20 30v576q0 22-20 30-8 2-12 2-14 0-23-9l-265-266v-90l265-266q9-9 23-9 4 0 12 2z"
+ }
+ }]
+};
+exports.fileMovieO = fileMovieO;
+var fileVideoO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM768 768q52 0 90 38t38 90v384q0 52-38 90t-90 38h-384q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h384zM1260 770q20 8 20 30v576q0 22-20 30-8 2-12 2-14 0-23-9l-265-266v-90l265-266q9-9 23-9 4 0 12 2z"
+ }
+ }]
+};
+exports.fileVideoO = fileVideoO;
+var fileCodeO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1468 380q28 28 48 76t20 88v1152q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h896q40 0 88 20t76 48zM1024 136v376h376q-10-29-22-41l-313-313q-12-12-41-22zM1408 1664v-1024h-416q-40 0-68-28t-28-68v-416h-768v1536h1280zM480 768q8-11 21-12.5t24 6.5l51 38q11 8 12.5 21t-6.5 24l-182 243 182 243q8 11 6.5 24t-12.5 21l-51 38q-11 8-24 6.5t-21-12.5l-226-301q-14-19 0-38zM1282 1069q14 19 0 38l-226 301q-8 11-21 12.5t-24-6.5l-51-38q-11-8-12.5-21t6.5-24l182-243-182-243q-8-11-6.5-24t12.5-21l51-38q11-8 24-6.5t21 12.5zM662 1530q-13-2-20.5-13t-5.5-24l138-831q2-13 13-20.5t24-5.5l63 10q13 2 20.5 13t5.5 24l-138 831q-2 13-13 20.5t-24 5.5z"
+ }
+ }]
+};
+exports.fileCodeO = fileCodeO;
+var vine = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1497 827v198q-101 23-198 23-65 136-165.5 271t-181.5 215.5-128 106.5q-80 45-162-3-28-17-60.5-43.5t-85-83.5-102.5-128.5-107.5-184-105.5-244-91.5-314.5-70.5-390h283q26 218 70 398.5t104.5 317 121.5 235.5 140 195q169-169 287-406-142-72-223-220t-81-333q0-192 104-314.5t284-122.5q178 0 273 105.5t95 297.5q0 159-58 286-7 1-19.5 3t-46 2-63-6-62-25.5-50.5-51.5q31-103 31-184 0-87-29-132t-79-45q-53 0-85 49.5t-32 140.5q0 186 105 293.5t267 107.5q62 0 121-14z"
+ }
+ }]
+};
+exports.vine = vine;
+var codepen = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M216 1169l603 402v-359l-334-223zM154 1025l193-129-193-129v258zM973 1571l603-402-269-180-334 223v359zM896 1078l272-182-272-182-272 182zM485 803l334-223v-359l-603 402zM1445 896l193 129v-258zM1307 803l269-180-603-402v359zM1792 623v546q0 41-34 64l-819 546q-21 13-43 13t-43-13l-819-546q-34-23-34-64v-546q0-41 34-64l819-546q21-13 43-13t43 13l819 546q34 23 34 64z"
+ }
+ }]
+};
+exports.codepen = codepen;
+var jsfiddle = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1800 772q111 46 179.5 145.5t68.5 221.5q0 164-118 280.5t-285 116.5q-4 0-11.5-0.5t-10.5-0.5h-1209-1-2-5q-170-10-288-125.5t-118-280.5q0-110 55-203t147-147q-12-39-12-82 0-115 82-196t199-81q95 0 172 58 75-154 222.5-248t326.5-94q166 0 306 80.5t221.5 218.5 81.5 301q0 6-0.5 18t-0.5 18zM468 1038q0 122 84 193t208 71q137 0 240-99-16-20-47.5-56.5t-43.5-50.5q-67 65-144 65-55 0-93.5-33.5t-38.5-87.5q0-53 38.5-87t91.5-34q44 0 84.5 21t73 55 65 75 69 82 77 75 97 55 121.5 21q121 0 204.5-71.5t83.5-190.5q0-121-84-192t-207-71q-143 0-241 97l93 108q66-64 142-64 52 0 92 33t40 84q0 57-37 91.5t-94 34.5q-43 0-82.5-21t-72-55-65.5-75-69.5-82-77.5-75-96.5-55-118.5-21q-122 0-207 70.5t-85 189.5z"
+ }
+ }]
+};
+exports.jsfiddle = jsfiddle;
+var lifeBouy = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z"
+ }
+ }]
+};
+exports.lifeBouy = lifeBouy;
+var lifeBuoy = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z"
+ }
+ }]
+};
+exports.lifeBuoy = lifeBuoy;
+var lifeRing = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z"
+ }
+ }]
+};
+exports.lifeRing = lifeRing;
+var lifeSaver = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z"
+ }
+ }]
+};
+exports.lifeSaver = lifeSaver;
+var support = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z"
+ }
+ }]
+};
+exports.support = support;
+var circleONotch = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1760 896q0 176-68.5 336t-184 275.5-275.5 184-336 68.5-336-68.5-275.5-184-184-275.5-68.5-336q0-213 97-398.5t265-305.5 374-151v228q-221 45-366.5 221t-145.5 406q0 130 51 248.5t136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5q0-230-145.5-406t-366.5-221v-228q206 31 374 151t265 305.5 97 398.5z"
+ }
+ }]
+};
+exports.circleONotch = circleONotch;
+var ra = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z"
+ }
+ }]
+};
+exports.ra = ra;
+var rebel = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z"
+ }
+ }]
+};
+exports.rebel = rebel;
+var resistance = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z"
+ }
+ }]
+};
+exports.resistance = resistance;
+var empire = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M874 1638v66q-208-6-385-109.5t-283-275.5l58-34q29 49 73 99l65-57q148 168 368 212l-17 86q65 12 121 13zM276 1108l-83 28q22 60 49 112l-57 33q-98-180-98-385t98-385l57 33q-30 56-49 112l82 28q-35 100-35 212 0 109 36 212zM1528 1285l58 34q-106 172-283 275.5t-385 109.5v-66q56-1 121-13l-17-86q220-44 368-212l65 57q44-50 73-99zM1377 731l-233 80q14 42 14 85t-14 85l232 80q-31 92-98 169l-185-162q-57 67-147 85l48 241q-52 10-98 10t-98-10l48-241q-90-18-147-85l-185 162q-67-77-98-169l232-80q-14-42-14-85t14-85l-233-80q33-93 99-169l185 162q59-68 147-86l-48-240q44-10 98-10t98 10l-48 240q88 18 147 86l185-162q66 76 99 169zM874 88v66q-65 2-121 13l17 86q-220 42-368 211l-65-56q-38 42-73 98l-57-33q106-172 282-275.5t385-109.5zM1705 896q0 205-98 385l-57-33q27-52 49-112l-83-28q36-103 36-212 0-112-35-212l82-28q-19-56-49-112l57-33q98 180 98 385zM1585 473l-57 33q-35-56-73-98l-65 56q-148-169-368-211l17-86q-56-11-121-13v-66q209 6 385 109.5t282 275.5zM1748 896q0-173-67.5-331t-181.5-272-272-181.5-331-67.5-331 67.5-272 181.5-181.5 272-67.5 331 67.5 331 181.5 272 272 181.5 331 67.5 331-67.5 272-181.5 181.5-272 67.5-331zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.empire = empire;
+var ge = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M874 1638v66q-208-6-385-109.5t-283-275.5l58-34q29 49 73 99l65-57q148 168 368 212l-17 86q65 12 121 13zM276 1108l-83 28q22 60 49 112l-57 33q-98-180-98-385t98-385l57 33q-30 56-49 112l82 28q-35 100-35 212 0 109 36 212zM1528 1285l58 34q-106 172-283 275.5t-385 109.5v-66q56-1 121-13l-17-86q220-44 368-212l65 57q44-50 73-99zM1377 731l-233 80q14 42 14 85t-14 85l232 80q-31 92-98 169l-185-162q-57 67-147 85l48 241q-52 10-98 10t-98-10l48-241q-90-18-147-85l-185 162q-67-77-98-169l232-80q-14-42-14-85t14-85l-233-80q33-93 99-169l185 162q59-68 147-86l-48-240q44-10 98-10t98 10l-48 240q88 18 147 86l185-162q66 76 99 169zM874 88v66q-65 2-121 13l17 86q-220 42-368 211l-65-56q-38 42-73 98l-57-33q106-172 282-275.5t385-109.5zM1705 896q0 205-98 385l-57-33q27-52 49-112l-83-28q36-103 36-212 0-112-35-212l82-28q-19-56-49-112l57-33q98 180 98 385zM1585 473l-57 33q-35-56-73-98l-65 56q-148-169-368-211l17-86q-56-11-121-13v-66q209 6 385 109.5t282 275.5zM1748 896q0-173-67.5-331t-181.5-272-272-181.5-331-67.5-331 67.5-272 181.5-181.5 272-67.5 331 67.5 331 181.5 272 272 181.5 331 67.5 331-67.5 272-181.5 181.5-272 67.5-331zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.ge = ge;
+var gitSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M582 1308q0 66-93 66-107 0-107-63 0-64 98-64 102 0 102 61zM546 842q0 85-74 85-77 0-77-84 0-90 77-90 36 0 55 25.5t19 63.5zM712 767v-125q-78 29-135 29-50-29-110-29-86 0-145 57t-59 143q0 50 29.5 102t73.5 67v3q-38 17-38 85 0 53 41 77v3q-113 37-113 139 0 45 20 78.5t54 51 72 25.5 81 8q224 0 224-188 0-67-48-99t-126-46q-27-5-51.5-20.5t-24.5-39.5q0-44 49-52 77-15 122-70t45-134q0-24-10-52 37-9 49-13zM771 1186h137q-2-27-2-82v-387q0-46 2-69h-137q3 23 3 71v392q0 50-3 75zM1280 1170v-121q-30 21-68 21-53 0-53-82v-225h52q9 0 26.5 1t26.5 1v-117h-105q0-82 3-102h-140q4 24 4 55v47h-60v117q36-3 37-3 3 0 11 0.5t12 0.5v2h-2v217q0 37 2.5 64t11.5 56.5 24.5 48.5 43.5 31 66 12q64 0 108-24zM924 464q0-36-24-63.5t-60-27.5-60.5 27-24.5 64q0 36 25 62.5t60 26.5 59.5-27 24.5-62zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.gitSquare = gitSquare;
+var git = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M595 1514q0-100-165-100-158 0-158 104 0 101 172 101 151 0 151-105zM536 759q0-61-30-102t-89-41q-124 0-124 145 0 135 124 135 119 0 119-137zM805 435v202q-36 12-79 22 16 43 16 84 0 127-73 216.5t-197 112.5q-40 8-59.5 27t-19.5 58q0 31 22.5 51.5t58 32 78.5 22 86 25.5 78.5 37.5 58 64 22.5 98.5q0 304-363 304-69 0-130-12.5t-116-41-87.5-82-32.5-127.5q0-165 182-225v-4q-67-41-67-126 0-109 63-137v-4q-72-24-119.5-108.5t-47.5-165.5q0-139 95-231.5t235-92.5q96 0 178 47 98 0 218-47zM1123 1316h-222q4-45 4-134v-609q0-94-4-128h222q-4 33-4 124v613q0 89 4 134zM1724 1094v196q-71 39-174 39-62 0-107-20t-70-50-39.5-78-18.5-92-4-103v-351h2v-4q-7 0-19-1t-18-1q-21 0-59 6v-190h96v-76q0-54-6-89h227q-6 41-6 165h171v190q-15 0-43.5-2t-42.5-2h-85v365q0 131 87 131 61 0 109-33zM1148 147q0 58-39 101.5t-96 43.5q-58 0-98-43.5t-40-101.5q0-59 39.5-103t98.5-44q58 0 96.5 44.5t38.5 102.5z"
+ }
+ }]
+};
+exports.git = git;
+var hackerNews = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.hackerNews = hackerNews;
+var yCombinatorSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.yCombinatorSquare = yCombinatorSquare;
+var ycSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.ycSquare = ycSquare;
+var tencentWeibo = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M842 572q0 80-57 136.5t-136 56.5q-60 0-111-35-62 67-115 146-247 371-202 859 1 22-12.5 38.5t-34.5 18.5h-5q-20 0-35-13.5t-17-33.5q-14-126-3.5-247.5t29.5-217 54-186 69-155.5 74-125q61-90 132-165-16-35-16-77 0-80 56.5-136.5t136.5-56.5 136.5 56.5 56.5 136.5zM1223 583q0 158-78 292t-212.5 212-292.5 78q-64 0-131-14-21-5-32.5-23.5t-6.5-39.5q5-20 23-31.5t39-7.5q51 13 108 13 97 0 186-38t153-102 102-153 38-186-38-186-102-153-153-102-186-38-186 38-153 102-102 153-38 186q0 114 52 218 10 20 3.5 40t-25.5 30-39.5 3-30.5-26q-64-123-64-265 0-119 46.5-227t124.5-186 186-124 226-46q158 0 292.5 78t212.5 212.5 78 292.5z"
+ }
+ }]
+};
+exports.tencentWeibo = tencentWeibo;
+var qq = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M270 806q-8-19-8-52 0-20 11-49t24-45q-1-22 7.5-53t22.5-43q0-139 92.5-288.5t217.5-209.5q139-66 324-66 133 0 266 55 49 21 90 48t71 56 55 68 42 74 32.5 84.5 25.5 89.5 22 98l1 5q55 83 55 150 0 14-9 40t-9 38q0 1 1.5 3.5t3.5 5 2 3.5q77 114 120.5 214.5t43.5 208.5q0 43-19.5 100t-55.5 57q-9 0-19.5-7.5t-19-17.5-19-26-16-26.5-13.5-26-9-17.5q-1-1-3-1l-5 4q-59 154-132 223 20 20 61.5 38.5t69 41.5 35.5 65q-2 4-4 16t-7 18q-64 97-302 97-53 0-110.5-9t-98-20-104.5-30q-15-5-23-7-14-4-46-4.5t-40-1.5q-41 45-127.5 65t-168.5 20q-35 0-69-1.5t-93-9-101-20.5-74.5-40-32.5-64q0-40 10-59.5t41-48.5q11-2 40.5-13t49.5-12q4 0 14-2 2-2 2-4l-2-3q-48-11-108-105.5t-73-156.5l-5-3q-4 0-12 20-18 41-54.5 74.5t-77.5 37.5h-1q-4 0-6-4.5t-5-5.5q-23-54-23-100 0-275 252-466z"
+ }
+ }]
+};
+exports.qq = qq;
+var wechat = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M580 461q0-41-25-66t-66-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 66-24.5t25-65.5zM1323 968q0-28-25.5-50t-65.5-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q40 0 65.5-22t25.5-51zM1087 461q0-41-24.5-66t-65.5-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 65.5-24.5t24.5-65.5zM1722 968q0-28-26-50t-65-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q39 0 65-22t26-51zM1456 571q-31-4-70-4-169 0-311 77t-223.5 208.5-81.5 287.5q0 78 23 152-35 3-68 3-26 0-50-1.5t-55-6.5-44.5-7-54.5-10.5-50-10.5l-253 127 72-218q-290-203-290-490 0-169 97.5-311t264-223.5 363.5-81.5q176 0 332.5 66t262 182.5 136.5 260.5zM2048 1132q0 117-68.5 223.5t-185.5 193.5l55 181-199-109q-150 37-218 37-169 0-311-70.5t-223.5-191.5-81.5-264 81.5-264 223.5-191.5 311-70.5q161 0 303 70.5t227.5 192 85.5 263.5z"
+ }
+ }]
+};
+exports.wechat = wechat;
+var weixin = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M580 461q0-41-25-66t-66-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 66-24.5t25-65.5zM1323 968q0-28-25.5-50t-65.5-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q40 0 65.5-22t25.5-51zM1087 461q0-41-24.5-66t-65.5-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 65.5-24.5t24.5-65.5zM1722 968q0-28-26-50t-65-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q39 0 65-22t26-51zM1456 571q-31-4-70-4-169 0-311 77t-223.5 208.5-81.5 287.5q0 78 23 152-35 3-68 3-26 0-50-1.5t-55-6.5-44.5-7-54.5-10.5-50-10.5l-253 127 72-218q-290-203-290-490 0-169 97.5-311t264-223.5 363.5-81.5q176 0 332.5 66t262 182.5 136.5 260.5zM2048 1132q0 117-68.5 223.5t-185.5 193.5l55 181-199-109q-150 37-218 37-169 0-311-70.5t-223.5-191.5-81.5-264 81.5-264 223.5-191.5 311-70.5q161 0 303 70.5t227.5 192 85.5 263.5z"
+ }
+ }]
+};
+exports.weixin = weixin;
+var paperPlane = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-453-185-242 295q-18 23-49 23-13 0-22-4-19-7-30.5-23.5t-11.5-36.5v-349l864-1059-1069 925-395-162q-37-14-40-55-2-40 32-59l1664-960q15-9 32-9 20 0 36 11z"
+ }
+ }]
+};
+exports.paperPlane = paperPlane;
+var send = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-453-185-242 295q-18 23-49 23-13 0-22-4-19-7-30.5-23.5t-11.5-36.5v-349l864-1059-1069 925-395-162q-37-14-40-55-2-40 32-59l1664-960q15-9 32-9 20 0 36 11z"
+ }
+ }]
+};
+exports.send = send;
+var paperPlaneO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-527-215-298 327q-18 21-47 21-14 0-23-4-19-7-30-23.5t-11-36.5v-452l-472-193q-37-14-40-55-3-39 32-59l1664-960q35-21 68 2zM1422 1510l221-1323-1434 827 336 137 863-639-478 797z"
+ }
+ }]
+};
+exports.paperPlaneO = paperPlaneO;
+var sendO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-527-215-298 327q-18 21-47 21-14 0-23-4-19-7-30-23.5t-11-36.5v-452l-472-193q-37-14-40-55-3-39 32-59l1664-960q35-21 68 2zM1422 1510l221-1323-1434 827 336 137 863-639-478 797z"
+ }
+ }]
+};
+exports.sendO = sendO;
+var history = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298zM896 608v448q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-352q0-14 9-23t23-9h64q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.history = history;
+var circleThin = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.circleThin = circleThin;
+var header = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1682 1664q-44 0-132.5-3.5t-133.5-3.5q-44 0-132 3.5t-132 3.5q-24 0-37-20.5t-13-45.5q0-31 17-46t39-17 51-7 45-15q33-21 33-140l-1-391q0-21-1-31-13-4-50-4h-675q-38 0-51 4-1 10-1 31l-1 371q0 142 37 164 16 10 48 13t57 3.5 45 15 20 45.5q0 26-12.5 48t-36.5 22q-47 0-139.5-3.5t-138.5-3.5q-43 0-128 3.5t-127 3.5q-23 0-35.5-21t-12.5-45q0-30 15.5-45t36-17.5 47.5-7.5 42-15q33-23 33-143l-1-57v-813q0-3 0.5-26t0-36.5-1.5-38.5-3.5-42-6.5-36.5-11-31.5-16-18q-15-10-45-12t-53-2-41-14-18-45q0-26 12-48t36-22q46 0 138.5 3.5t138.5 3.5q42 0 126.5-3.5t126.5-3.5q25 0 37.5 22t12.5 48q0 30-17 43.5t-38.5 14.5-49.5 4-43 13q-35 21-35 160l1 320q0 21 1 32 13 3 39 3h699q25 0 38-3 1-11 1-32l1-320q0-139-35-160-18-11-58.5-12.5t-66-13-25.5-49.5q0-26 12.5-48t37.5-22q44 0 132 3.5t132 3.5q43 0 129-3.5t129-3.5q25 0 37.5 22t12.5 48q0 30-17.5 44t-40 14.5-51.5 3-44 12.5q-35 23-35 161l1 943q0 119 34 140 16 10 46 13.5t53.5 4.5 41.5 15.5 18 44.5q0 26-12 48t-36 22z"
+ }
+ }]
+};
+exports.header = header;
+var paragraph = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1278 189v73q0 29-18.5 61t-42.5 32q-50 0-54 1-26 6-32 31-3 11-3 64v1152q0 25-18 43t-43 18h-108q-25 0-43-18t-18-43v-1218h-143v1218q0 25-17.5 43t-43.5 18h-108q-26 0-43.5-18t-17.5-43v-496q-147-12-245-59-126-58-192-179-64-117-64-259 0-166 88-286 88-118 209-159 111-37 417-37h479q25 0 43 18t18 43z"
+ }
+ }]
+};
+exports.paragraph = paragraph;
+var sliders = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352 1408v128h-352v-128h352zM704 1280q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM864 896v128h-864v-128h864zM224 384v128h-224v-128h224zM1536 1408v128h-736v-128h736zM576 256q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM1216 768q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM1536 896v128h-224v-128h224zM1536 384v128h-864v-128h864z"
+ }
+ }]
+};
+exports.sliders = sliders;
+var shareAlt = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1216 1024q133 0 226.5 93.5t93.5 226.5-93.5 226.5-226.5 93.5-226.5-93.5-93.5-226.5q0-12 2-34l-360-180q-92 86-218 86-133 0-226.5-93.5t-93.5-226.5 93.5-226.5 226.5-93.5q126 0 218 86l360-180q-2-22-2-34 0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5-93.5 226.5-226.5 93.5q-126 0-218-86l-360 180q2 22 2 34t-2 34l360 180q92-86 218-86z"
+ }
+ }]
+};
+exports.shareAlt = shareAlt;
+var shareAltSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1195q0-88-62.5-151t-150.5-63q-84 0-145 58l-241-120q2-16 2-23t-2-23l241-120q61 58 145 58 88 0 150.5-63t62.5-151-62.5-150.5-150.5-62.5-151 62.5-63 150.5q0 7 2 23l-241 120q-62-57-145-57-88 0-150.5 62.5t-62.5 150.5 62.5 150.5 150.5 62.5q83 0 145-57l241 120q-2 16-2 23 0 88 63 150.5t151 62.5 150.5-62.5 62.5-150.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.shareAltSquare = shareAltSquare;
+var bomb = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M571 589q-10-25-34-35t-49 0q-108 44-191 127t-127 191q-10 25 0 49t35 34q13 5 24 5 42 0 60-40 34-84 98.5-148.5t148.5-98.5q25-11 35-35t0-49zM1513 233l46 46-244 243 68 68q19 19 19 45.5t-19 45.5l-64 64q89 161 89 343 0 143-55.5 273.5t-150 225-225 150-273.5 55.5-273.5-55.5-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5q182 0 343 89l64-64q19-19 45.5-19t45.5 19l68 68zM1521 177q-10 10-22 10-13 0-23-10l-91-90q-9-10-9-23t9-23q10-9 23-9t23 9l90 91q10 9 10 22.5t-10 22.5zM1751 407q-11 9-23 9t-23-9l-90-91q-10-9-10-22.5t10-22.5q9-10 22.5-10t22.5 10l91 90q9 10 9 23t-9 23zM1792 224q0 14-9 23t-23 9h-96q-14 0-23-9t-9-23 9-23 23-9h96q14 0 23 9t9 23zM1600 32v96q0 14-9 23t-23 9-23-9-9-23v-96q0-14 9-23t23-9 23 9 9 23zM1751 87l-91 90q-10 10-22 10-13 0-23-10-10-9-10-22.5t10-22.5l90-91q10-9 23-9t23 9q9 10 9 23t-9 23z"
+ }
+ }]
+};
+exports.bomb = bomb;
+var futbolO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M609 816l287-208 287 208-109 336h-355zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM1515 1350q149-203 149-454v-3l-102 89-240-224 63-323 134 12q-150-206-389-282l53 124-287 159-287-159 53-124q-239 76-389 282l135-12 62 323-240 224-102-89v3q0 251 149 454l30-132 326 40 139 298-116 69q117 39 240 39t240-39l-116-69 139-298 326-40z"
+ }
+ }]
+};
+exports.futbolO = futbolO;
+var soccerBallO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M609 816l287-208 287 208-109 336h-355zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM1515 1350q149-203 149-454v-3l-102 89-240-224 63-323 134 12q-150-206-389-282l53 124-287 159-287-159 53-124q-239 76-389 282l135-12 62 323-240 224-102-89v3q0 251 149 454l30-132 326 40 139 298-116 69q117 39 240 39t240-39l-116-69 139-298 326-40z"
+ }
+ }]
+};
+exports.soccerBallO = soccerBallO;
+var tty = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM256 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM832 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM640 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM66 768q-28 0-47-19t-19-46v-129h514v129q0 27-19 46t-46 19h-383zM1216 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1024 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1600 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1408 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 520v13h-514v-10q0-104-382-102-382 1-382 102v10h-514v-13q0-17 8.5-43t34-64 65.5-75.5 110.5-76 160-67.5 224-47.5 293.5-18.5 293 18.5 224 47.5 160.5 67.5 110.5 76 65.5 75.5 34 64 8.5 43zM1792 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 574v129q0 27-19 46t-46 19h-384q-27 0-46-19t-19-46v-129h514z"
+ }
+ }]
+};
+exports.tty = tty;
+var binoculars = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 320v768q0 26-19 45t-45 19v576q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-512l249-873q7-23 31-23h424zM1024 320v704h-256v-704h256zM1792 1216v512q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-576q-26 0-45-19t-19-45v-768h424q24 0 31 23zM736 32v224h-352v-224q0-14 9-23t23-9h288q14 0 23 9t9 23zM1408 32v224h-352v-224q0-14 9-23t23-9h288q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.binoculars = binoculars;
+var plug = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1755 453q37 38 37 90.5t-37 90.5l-401 400 150 150-160 160q-163 163-389.5 186.5t-411.5-100.5l-362 362h-181v-181l362-362q-124-185-100.5-411.5t186.5-389.5l160-160 150 150 400-401q38-37 91-37t90 37 37 90.5-37 90.5l-400 401 234 234 401-400q38-37 91-37t90 37z"
+ }
+ }]
+};
+exports.plug = plug;
+var slideshare = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M873 740q0 83-63.5 142.5t-152.5 59.5-152.5-59.5-63.5-142.5q0-84 63.5-143t152.5-59 152.5 59 63.5 143zM1375 740q0 83-63 142.5t-153 59.5q-89 0-152.5-59.5t-63.5-142.5q0-84 63.5-143t152.5-59q90 0 153 59t63 143zM1600 920v-667q0-87-32-123.5t-111-36.5h-1112q-83 0-112.5 34t-29.5 126v673q43 23 88.5 40t81 28 81 18.5 71 11 70 4 58.5 0.5 56.5-2 44.5-2q68-1 95 27 6 6 10 9 26 25 61 51 7-91 118-87 5 0 36.5 1.5t43 2 45.5 1 53-1 54.5-4.5 61-8.5 62-13.5 67-19.5 67.5-27 72-34.5zM1763 915q-121 149-372 252 84 285-23 465-66 113-183 148-104 32-182-15-86-51-82-164l-1-326v-1q-8-2-24.5-6t-23.5-5l-1 338q4 114-83 164-79 47-183 15-117-36-182-150-105-180-22-463-251-103-372-252-25-37-4-63t60 1q4 2 11.5 7t10.5 8v-694q0-72 47-123t114-51h1257q67 0 114 51t47 123v694l21-15q39-27 60-1t-4 63z"
+ }
+ }]
+};
+exports.slideshare = slideshare;
+var twitch = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 434v434h-145v-434h145zM1294 434v434h-145v-434h145zM1294 1194l253-254v-795h-1194v1049h326v217l217-217h398zM1692 0v1013l-434 434h-326l-217 217h-217v-217h-398v-1158l109-289h1483z"
+ }
+ }]
+};
+exports.twitch = twitch;
+var yelp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M773 1319v127q-1 292-6 305-12 32-51 40-54 9-181.5-38t-162.5-89q-13-15-17-36-1-12 4-26 4-10 34-47t181-216q1 0 60-70 15-19 39.5-24.5t49.5 3.5q24 10 37.5 29t12.5 42zM624 1068q-3 55-52 70l-120 39q-275 88-292 88-35-2-54-36-12-25-17-75-8-76 1-166.5t30-124.5 56-32q13 0 202 77 71 29 115 47l84 34q23 9 35.5 30.5t11.5 48.5zM1450 1365q-7 54-91.5 161t-135.5 127q-37 14-63-7-14-10-184-287l-47-77q-14-21-11.5-46t19.5-46q35-43 83-26 1 1 119 40 203 66 242 79.5t47 20.5q28 22 22 61zM778 733q5 102-54 122-58 17-114-71l-378-598q-8-35 19-62 41-43 207.5-89.5t224.5-31.5q40 10 49 45 3 18 22 305.5t24 379.5zM1440 841q3 39-26 59-15 10-329 86-67 15-91 23l1-2q-23 6-46-4t-37-32q-30-47 0-87 1-1 75-102 125-171 150-204t34-39q28-19 65-2 48 23 123 133.5t81 167.5v3z"
+ }
+ }]
+};
+exports.yelp = yelp;
+var newspaperO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 512h-384v384h384v-384zM1152 1152v128h-640v-128h640zM1152 384v640h-640v-640h640zM1792 1152v128h-512v-128h512zM1792 896v128h-512v-128h512zM1792 640v128h-512v-128h512zM1792 384v128h-512v-128h512zM256 1344v-960h-128v960q0 26 19 45t45 19 45-19 19-45zM1920 1344v-1088h-1536v1088q0 33-11 64h1483q26 0 45-19t19-45zM2048 128v1216q0 80-56 136t-136 56h-1664q-80 0-136-56t-56-136v-1088h256v-128h1792z"
+ }
+ }]
+};
+exports.newspaperO = newspaperO;
+var wifi = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1523q-20 0-93-73.5t-73-93.5q0-32 62.5-54t103.5-22 103.5 22 62.5 54q0 20-73 93.5t-93 73.5zM1294 1252q-2 0-40-25t-101.5-50-128.5-25-128.5 25-101 50-40.5 25q-18 0-93.5-75t-75.5-93q0-13 10-23 78-77 196-121t233-44 233 44 196 121q10 10 10 23 0 18-75.5 93t-93.5 75zM1567 980q-11 0-23-8-136-105-252-154.5t-268-49.5q-85 0-170.5 22t-149 53-113.5 62-79 53-31 22q-17 0-92-75t-75-93q0-12 10-22 132-132 320-205t380-73 380 73 320 205q10 10 10 22 0 18-75 93t-92 75zM1838 709q-11 0-22-9-179-157-371.5-236.5t-420.5-79.5-420.5 79.5-371.5 236.5q-11 9-22 9-17 0-92.5-75t-75.5-93q0-13 10-23 187-186 445-288t527-102 527 102 445 288q10 10 10 23 0 18-75.5 93t-92.5 75z"
+ }
+ }]
+};
+exports.wifi = wifi;
+var calculator = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1152 1536q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM384 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1152 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM768 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1536 1536v-384q0-52-38-90t-90-38-90 38-38 90v384q0 52 38 90t90 38 90-38 38-90zM1152 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1536 448v-256q0-26-19-45t-45-19h-1280q-26 0-45 19t-19 45v256q0 26 19 45t45 19h1280q26 0 45-19t19-45zM1536 768q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1664 128v1536q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1536q0-52 38-90t90-38h1408q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calculator = calculator;
+var paypal = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1519 646q18 84-4 204-87 444-565 444h-44q-25 0-44 16.5t-24 42.5l-4 19-55 346-2 15q-5 26-24.5 42.5t-44.5 16.5h-251q-21 0-33-15t-9-36q9-56 26.5-168t26.5-168 27-167.5 27-167.5q5-37 43-37h131q133 2 236-21 175-39 287-144 102-95 155-246 24-70 35-133 1-6 2.5-7.5t3.5-1 6 3.5q79 59 98 162zM1347 364q0 107-46 236-80 233-302 315-113 40-252 42 0 1-90 1l-90-1q-100 0-118 96-2 8-85 530-1 10-12 10h-295q-22 0-36.5-16.5t-11.5-38.5l232-1471q5-29 27.5-48t51.5-19h598q34 0 97.5 13t111.5 32q107 41 163.5 123t56.5 196z"
+ }
+ }]
+};
+exports.paypal = paypal;
+var googleWallet = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M441 672q33 0 52 26 266 364 362 774h-446q-127-441-367-749-12-16-3-33.5t29-17.5h373zM1000 1029q-49 199-125 393-79-310-256-594 40-221 44-449 211 340 337 650zM1099 320q235 324 384.5 698.5t184.5 773.5h-451q-41-665-553-1472h435zM1792 896q0 424-101 812-67-560-359-1083-25-301-106-584-4-16 5.5-28.5t25.5-12.5h359q21 0 38.5 13t22.5 33q115 409 115 850z"
+ }
+ }]
+};
+exports.googleWallet = googleWallet;
+var ccVisa = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1975 990h-138q14-37 66-179l3-9q4-10 10-26t9-26l12 55zM531 925l-58-295q-11-54-75-54h-268l-2 13q311 79 403 336zM710 576l-162 438-17-89q-26-70-85-129.5t-131-88.5l135 510h175l261-641h-176zM849 1218h166l104-642h-166zM1617 592q-69-27-149-27-123 0-201 59t-79 153q-1 102 145 174 48 23 67 41t19 39q0 30-30 46t-69 16q-86 0-156-33l-22-11-23 144q74 34 185 34 130 1 208.5-59t80.5-160q0-106-140-174-49-25-71-42t-22-38q0-22 24.5-38.5t70.5-16.5q70-1 124 24l15 8zM2042 576h-128q-65 0-87 54l-246 588h174l35-96h212q5 22 20 96h154zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccVisa = ccVisa;
+var ccMastercard = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1119 341q-128-85-281-85-103 0-197.5 40.5t-162.5 108.5-108.5 162-40.5 197q0 104 40.5 198t108.5 162 162 108.5 198 40.5q153 0 281-85-131-107-178-265.5t0.5-316.5 177.5-265zM1152 365q-126 99-172 249.5t-0.5 300.5 172.5 249q127-99 172.5-249t-0.5-300.5-172-249.5zM1185 341q130 107 177.5 265.5t0.5 317-178 264.5q128 85 281 85 104 0 198-40.5t162-108.5 108.5-162 40.5-198q0-103-40.5-197t-108.5-162-162.5-108.5-197.5-40.5q-153 0-281 85zM1926 1063h7v-3h-17v3h7v17h3v-17zM1955 1080h4v-20h-5l-6 13-6-13h-5v20h3v-15l6 13h4l5-13v15zM1947 1520v2h-2-3v-3h3 2v1zM1947 1529h3l-4-5h2l1-1q1-1 1-3t-1-3l-1-1h-3-6v13h3v-5h1zM685 1461q0-19 11-31t30-12q18 0 29 12.5t11 30.5q0 19-11 31t-29 12q-19 0-30-12t-11-31zM1158 1417q30 0 35 32h-70q5-32 35-32zM1514 1461q0-19 11-31t29-12 29.5 12.5 11.5 30.5q0 19-11 31t-30 12q-18 0-29-12t-11-31zM1786 1461q0-18 11.5-30.5t29.5-12.5 29.5 12.5 11.5 30.5q0 19-11.5 31t-29.5 12-29.5-12.5-11.5-30.5zM1944 1533q-2 0-4-1-1 0-3-2t-2-3q-1-2-1-4 0-3 1-4 0-2 2-4l1-1q2 0 2-1 2-1 4-1 3 0 4 1l4 2 2 4v1q1 2 1 3l-1 1v3t-1 1l-1 2q-2 2-4 2-1 1-4 1zM599 1529h30v-85q0-24-14.5-38.5t-39.5-15.5q-32 0-47 24-14-24-45-24-24 0-39 20v-16h-30v135h30v-75q0-36 33-36 30 0 30 36v75h29v-75q0-36 33-36 30 0 30 36v75zM765 1529h29v-68-67h-29v16q-17-20-43-20-29 0-48 20t-19 51 19 51 48 20q28 0 43-20v17zM943 1488q0-34-47-40l-14-2q-23-4-23-14 0-15 25-15 23 0 43 11l12-24q-22-14-55-14-26 0-41 12t-15 32q0 33 47 39l13 2q24 4 24 14 0 17-31 17-25 0-45-14l-13 23q25 17 58 17 29 0 45.5-12t16.5-32zM1073 1522l-8-25q-13 7-26 7-19 0-19-22v-61h48v-27h-48v-41h-30v41h-28v27h28v61q0 50 47 50 21 0 36-10zM1159 1390q-29 0-48 20t-19 51q0 32 19.5 51.5t49.5 19.5q33 0 55-19l-14-22q-18 15-39 15-34 0-41-33h101v-12q0-32-18-51.5t-46-19.5zM1318 1390q-23 0-35 20v-16h-30v135h30v-76q0-35 29-35 10 0 18 4l9-28q-9-4-21-4zM1348 1461q0 31 19.5 51t52.5 20q29 0 48-16l-14-24q-18 13-35 12-18 0-29.5-12t-11.5-31 11.5-31 29.5-12q19 0 35 12l14-24q-20-16-48-16-33 0-52.5 20t-19.5 51zM1593 1529h30v-68-67h-30v16q-15-20-42-20-29 0-48.5 20t-19.5 51 19.5 51 48.5 20q28 0 42-20v17zM1726 1390q-23 0-35 20v-16h-29v135h29v-76q0-35 29-35 10 0 18 4l9-28q-8-4-21-4zM1866 1529h29v-68-122h-29v71q-15-20-43-20t-47.5 20.5-19.5 50.5 19.5 50.5 47.5 20.5q29 0 43-20v17zM1944 1509l-2 1h-3q-2 1-4 3-3 1-3 4-1 2-1 6 0 3 1 5 0 2 3 4 2 2 4 3t5 1q4 0 6-1 0-1 2-2l2-1q1-1 3-4 1-2 1-5 0-4-1-6-1-1-3-4 0-1-2-2l-2-1q-1 0-3-0.5t-3-0.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccMastercard = ccMastercard;
+var ccDiscover = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M313 777q0 51-36 84-29 26-89 26h-17v-220h17q61 0 89 27 36 31 36 83zM2089 712q0 52-64 52h-19v-101h20q63 0 63 49zM380 777q0-74-50-120.5t-129-46.5h-95v333h95q74 0 119-38 60-51 60-128zM410 943h65v-333h-65v333zM730 842q0-40-20.5-62t-75.5-42q-29-10-39.5-19t-10.5-23q0-16 13.5-26.5t34.5-10.5q29 0 53 27l34-44q-41-37-98-37-44 0-74 27.5t-30 67.5q0 35 18 55.5t64 36.5q37 13 45 19 19 12 19 34 0 20-14 33.5t-36 13.5q-48 0-71-44l-42 40q44 64 115 64 51 0 83-30.5t32-79.5zM1008 932v-77q-37 37-78 37-49 0-80.5-32.5t-31.5-82.5q0-48 31.5-81.5t77.5-33.5q43 0 81 38v-77q-40-20-80-20-74 0-125.5 50.5t-51.5 123.5 51 123.5 125 50.5q42 0 81-19zM2240 1536v-527q-65 40-144.5 84t-237.5 117-329.5 137.5-417.5 134.5-504 118h1569q26 0 45-19t19-45zM1389 779q0-75-53-128t-128-53-128 53-53 128 53 128 128 53 128-53 53-128zM1541 952l144-342h-71l-90 224-89-224h-71l142 342h35zM1714 943h184v-56h-119v-90h115v-56h-115v-74h119v-57h-184v333zM2105 943h80l-105-140q76-16 76-94 0-47-31-73t-87-26h-97v333h65v-133h9zM2304 262v1268q0 56-38.5 95t-93.5 39h-2040q-55 0-93.5-39t-38.5-95v-1268q0-56 38.5-95t93.5-39h2040q55 0 93.5 39t38.5 95z"
+ }
+ }]
+};
+exports.ccDiscover = ccDiscover;
+var ccAmex = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M119 682h89l-45-108zM740 1208l74-79-70-79h-163v49h142v55h-142v54h159zM898 1130l99 110v-217zM1186 1083q0-33-40-33h-84v69h83q41 0 41-36zM1475 1079q0-29-42-29h-82v61h81q43 0 43-32zM1197 613q0-29-42-29h-82v60h81q43 0 43-31zM1656 682h89l-44-108zM699 527v271h-66v-212l-94 212h-57l-94-212v212h-132l-25-60h-135l-25 60h-70l116-271h96l110 257v-257h106l85 184 77-184h108zM1255 1083q0 20-5.5 35t-14 25-22.5 16.5-26 10-31.5 4.5-31.5 1-32.5-0.5-29.5-0.5v91h-126l-80-90-83 90h-256v-271h260l80 89 82-89h207q109 0 109 89zM964 742v56h-217v-271h217v57h-152v49h148v55h-148v54h152zM2304 1301v229q0 55-38.5 94.5t-93.5 39.5h-2040q-55 0-93.5-39.5t-38.5-94.5v-678h111l25-61h55l25 61h218v-46l19 46h113l20-47v47h541v-99l10-1q10 0 10 14v86h279v-23q23 12 55 18t52.5 6.5 63-0.5 51.5-1l25-61h56l25 61h227v-58l34 58h182v-378h-180v44l-25-44h-185v44l-23-44h-249q-69 0-109 22v-22h-172v22q-24-22-73-22h-628l-43 97-43-97h-198v44l-22-44h-169l-78 179v-391q0-55 38.5-94.5t93.5-39.5h2040q55 0 93.5 39.5t38.5 94.5v678h-120q-51 0-81 22v-22h-177q-55 0-78 22v-22h-316v22q-31-22-87-22h-209v22q-23-22-91-22h-234l-54 58-50-58h-349v378h343l55-59 52 59h211v-89h21q59 0 90-13v102h174v-99h8q8 0 10 2t2 10v87h529q57 0 88-24v24h168q60 0 95-17zM1546 1067q0 23-12 43t-34 29q25 9 34 26t9 46v54h-65v-45q0-33-12-43.5t-46-10.5h-69v99h-65v-271h154q48 0 77 15t29 58zM1269 600q0 24-12.5 44t-33.5 29q26 9 34.5 25.5t8.5 46.5v53h-65q0-9 0.5-26.5t0-25-3-18.5-8.5-16-17.5-8.5-29.5-3.5h-70v98h-64v-271l153 1q49 0 78 14.5t29 57.5zM1798 1209v56h-216v-271h216v56h-151v49h148v55h-148v54zM1372 527v271h-66v-271h66zM2065 1179q0 86-102 86h-126v-58h126q34 0 34-25 0-16-17-21t-41.5-5-49.5-3.5-42-22.5-17-55q0-39 26-60t66-21h130v57h-119q-36 0-36 25 0 16 17.5 20.5t42 4 49 2.5 42 21.5 17.5 54.5zM2304 1129v101q-24 35-88 35h-125v-58h125q33 0 33-25 0-13-12.5-19t-31-5.5-40-2-40-8-31-24-12.5-48.5q0-39 26.5-60t66.5-21h129v57h-118q-36 0-36 25 0 20 29 22t68.5 5 56.5 26zM2139 528v270h-92l-122-203v203h-132l-26-60h-134l-25 60h-75q-129 0-129-133 0-138 133-138h63v59q-7 0-28-1t-28.5-0.5-23 2-21.5 6.5-14.5 13.5-11.5 23-3 33.5q0 38 13.5 58t49.5 20h29l92-213h97l109 256v-256h99l114 188v-188h66z"
+ }
+ }]
+};
+exports.ccAmex = ccAmex;
+var ccPaypal = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M745 906q0 37-25.5 61.5t-62.5 24.5q-29 0-46.5-16t-17.5-44q0-37 25-62.5t62-25.5q28 0 46.5 16.5t18.5 45.5zM1530 757q0 42-22 57t-66 15l-32 1 17-107q2-11 13-11h18q22 0 35 2t25 12.5 12 30.5zM1881 906q0 36-25.5 61t-61.5 25q-29 0-47-16t-18-44q0-37 25-62.5t62-25.5q28 0 46.5 16.5t18.5 45.5zM513 735q0-59-38.5-85.5t-100.5-26.5h-160q-19 0-21 19l-65 408q-1 6 3 11t10 5h76q20 0 22-19l18-110q1-8 7-13t15-6.5 17-1.5 19 1 14 1q86 0 135-48.5t49-134.5zM822 1047l41-261q1-6-3-11t-10-5h-76q-14 0-17 33-27-40-95-40-72 0-122.5 54t-50.5 127q0 59 34.5 94t92.5 35q28 0 58-12t48-32q-4 12-4 21 0 16 13 16h69q19 0 22-19zM1269 784q0-5-4-9.5t-9-4.5h-77q-11 0-18 10l-106 156-44-150q-5-16-22-16h-75q-5 0-9 4.5t-4 9.5q0 2 19.5 59t42 123 23.5 70q-82 112-82 120 0 13 13 13h77q11 0 18-10l255-368q2-2 2-7zM1649 735q0-59-38.5-85.5t-100.5-26.5h-159q-20 0-22 19l-65 408q-1 6 3 11t10 5h82q12 0 16-13l18-116q1-8 7-13t15-6.5 17-1.5 19 1 14 1q86 0 135-48.5t49-134.5zM1958 1047l41-261q1-6-3-11t-10-5h-76q-14 0-17 33-26-40-95-40-72 0-122.5 54t-50.5 127q0 59 34.5 94t92.5 35q29 0 59-12t47-32q0 1-2 9t-2 12q0 16 13 16h69q19 0 22-19zM2176 638v-1q0-14-13-14h-74q-11 0-13 11l-65 416-1 2q0 5 4 9.5t10 4.5h66q19 0 21-19zM392 772q-5 35-26 46t-60 11l-33 1 17-107q2-11 13-11h19q40 0 58 11.5t12 48.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccPaypal = ccPaypal;
+var ccStripe = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1597 903q0 69-21 106-19 35-52 35-23 0-41-9v-224q29-30 57-30 57 0 57 122zM2035 867h-110q6-98 56-98 51 0 54 98zM476 1002q0-59-33-91.5t-101-57.5q-36-13-52-24t-16-25q0-26 38-26 58 0 124 33l18-112q-67-32-149-32-77 0-123 38-48 39-48 109 0 58 32.5 90.5t99.5 56.5q39 14 54.5 25.5t15.5 27.5q0 31-48 31-29 0-70-12.5t-72-30.5l-18 113q72 41 168 41 81 0 129-37 51-41 51-117zM771 787l19-111h-96v-135l-129 21-18 114-46 8-17 103h62v219q0 84 44 120 38 30 111 30 32 0 79-11v-118q-32 7-44 7-42 0-42-50v-197h77zM1087 812v-139q-15-3-28-3-32 0-55.5 16t-33.5 46l-10-56h-131v471h150v-306q26-31 82-31 16 0 26 2zM1124 1147h150v-471h-150v471zM1746 898q0-122-45-179-40-52-111-52-64 0-117 56l-8-47h-132v645l150-25v-151q36 11 68 11 83 0 134-56 61-65 61-202zM1278 550q0-33-23-56t-56-23-56 23-23 56 23 56.5 56 23.5 56-23.5 23-56.5zM2176 907q0-113-48-176-50-64-144-64-96 0-151.5 66t-55.5 180q0 128 63 188 55 55 161 55 101 0 160-40l-16-103q-57 31-128 31-43 0-63-19-23-19-28-66h248q2-14 2-52zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccStripe = ccStripe;
+var bellSlash = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1558 852q61 356 298 556 0 52-38 90t-90 38h-448q0 106-75 181t-181 75-180.5-74.5-75.5-180.5zM1024 1712q16 0 16-16t-16-16q-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5zM2026 112q8 10 7.5 23.5t-10.5 22.5l-1872 1622q-10 8-23.5 7t-21.5-11l-84-96q-8-10-7.5-23.5t10.5-21.5l186-161q-19-32-19-66 50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 124 18 219 82.5t148 157.5l418-363q10-8 23.5-7t21.5 11z"
+ }
+ }]
+};
+exports.bellSlash = bellSlash;
+var bellSlashO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1040 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zM503 1221l877-760q-42-88-132.5-146.5t-223.5-58.5q-93 0-169.5 31.5t-121.5 80.5-69 103-24 105q0 384-137 645zM1856 1408q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-180.5-74.5-75.5-180.5l149-129h757q-166-187-227-459l111-97q61 356 298 556zM1942 16l84 96q8 10 7.5 23.5t-10.5 22.5l-1872 1622q-10 8-23.5 7t-21.5-11l-84-96q-8-10-7.5-23.5t10.5-21.5l186-161q-19-32-19-66 50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 124 18 219 82.5t148 157.5l418-363q10-8 23.5-7t21.5 11z"
+ }
+ }]
+};
+exports.bellSlashO = bellSlashO;
+var trash = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM768 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM1024 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM480 384h448l-48-117q-7-9-17-11h-317q-10 2-17 11zM1408 416v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.trash = trash;
+var copyright = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1150 1074v109q0 50-36.5 89t-94 60.5-118 32.5-117.5 11q-205 0-342.5-139t-137.5-346q0-203 136-339t339-136q34 0 75.5 4.5t93 18 92.5 34 69 56.5 28 81v109q0 16-16 16h-118q-16 0-16-16v-70q0-43-65.5-67.5t-137.5-24.5q-140 0-228.5 91.5t-88.5 237.5q0 151 91.5 249.5t233.5 98.5q68 0 138-24t70-66v-70q0-7 4.5-11.5t10.5-4.5h119q6 0 11 4.5t5 11.5zM768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.copyright = copyright;
+var at = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M972 775q0-108-53.5-169t-147.5-61q-63 0-124 30.5t-110 84.5-79.5 137-30.5 180q0 112 53.5 173t150.5 61q96 0 176-66.5t122.5-166 42.5-203.5zM1536 896q0 111-37 197t-98.5 135-131.5 74.5-145 27.5q-6 0-15.5 0.5t-16.5 0.5q-95 0-142-53-28-33-33-83-52 66-131.5 110t-173.5 44q-161 0-249.5-95.5t-88.5-269.5q0-157 66-290t179-210.5 246-77.5q87 0 155 35.5t106 99.5l2-19 11-56q1-6 5.5-12t9.5-6h118q5 0 13 11 5 5 3 16l-120 614q-5 24-5 48 0 39 12.5 52t44.5 13q28-1 57-5.5t73-24 77-50 57-89.5 24-137q0-292-174-466t-466-174q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51q228 0 405-144 11-9 24-8t21 12l41 49q8 12 7 24-2 13-12 22-102 83-227.5 128t-258.5 45q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q344 0 556 212t212 556z"
+ }
+ }]
+};
+exports.at = at;
+var eyedropper = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1698 94q94 94 94 226.5t-94 225.5l-225 223 104 104q10 10 10 23t-10 23l-210 210q-10 10-23 10t-23-10l-105-105-603 603q-37 37-90 37h-203l-256 128-64-64 128-256v-203q0-53 37-90l603-603-105-105q-10-10-10-23t10-23l210-210q10-10 23-10t23 10l104 104 223-225q93-94 225.5-94t226.5 94zM512 1472l576-576-192-192-576 576v192h192z"
+ }
+ }]
+};
+exports.eyedropper = eyedropper;
+var paintBrush = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1615 0q70 0 122.5 46.5t52.5 116.5q0 63-45 151-332 629-465 752-97 91-218 91-126 0-216.5-92.5t-90.5-219.5q0-128 92-212l638-579q59-54 130-54zM706 1034q39 76 106.5 130t150.5 76l1 71q4 213-129.5 347t-348.5 134q-123 0-218-46.5t-152.5-127.5-86.5-183-29-220q7 5 41 30t62 44.5 59 36.5 46 17q41 0 55-37 25-66 57.5-112.5t69.5-76 88-47.5 103-25.5 125-10.5z"
+ }
+ }]
+};
+exports.paintBrush = paintBrush;
+var birthdayCake = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1408v384h-1792v-384q45 0 85-14t59-27.5 47-37.5q30-27 51.5-38t56.5-11q24 0 44 7t31 15 33 27q29 25 47 38t58 27 86 14q45 0 85-14.5t58-27 48-37.5q21-19 32.5-27t31-15 43.5-7q35 0 56.5 11t51.5 38q28 24 47 37.5t59 27.5 85 14 85-14 59-27.5 47-37.5q30-27 51.5-38t56.5-11q34 0 55.5 11t51.5 38q28 24 47 37.5t59 27.5 85 14zM1792 1088v192q-24 0-44-7t-31-15-33-27q-29-25-47-38t-58-27-85-14q-46 0-86 14t-58 27-47 38q-22 19-33 27t-31 15-44 7q-35 0-56.5-11t-51.5-38q-29-25-47-38t-58-27-86-14q-45 0-85 14.5t-58 27-48 37.5q-21 19-32.5 27t-31 15-43.5 7q-35 0-56.5-11t-51.5-38q-28-24-47-37.5t-59-27.5-85-14q-46 0-86 14t-58 27-47 38q-30 27-51.5 38t-56.5 11v-192q0-80 56-136t136-56h64v-448h256v448h256v-448h256v448h256v-448h256v448h64q80 0 136 56t56 136zM512 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150zM1024 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150zM1536 224q0 77-36 118.5t-92 41.5q-53 0-90.5-37.5t-37.5-90.5q0-29 9.5-51t23.5-34 31-28 31-31.5 23.5-44.5 9.5-67q38 0 83 74t45 150z"
+ }
+ }]
+};
+exports.birthdayCake = birthdayCake;
+var areaChart = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2048 1536v128h-2048v-1536h128v1408h1920zM1664 512l256 896h-1664v-576l448-576 576 576z"
+ }
+ }]
+};
+exports.areaChart = areaChart;
+var pieChart = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 890l546 546q-106 108-247.5 168t-298.5 60q-209 0-385.5-103t-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103v762zM955 896h773q0 157-60 298.5t-168 247.5zM1664 768h-768v-768q209 0 385.5 103t279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.pieChart = pieChart;
+var lineChart = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2048 1536v128h-2048v-1536h128v1408h1920zM1920 288v435q0 21-19.5 29.5t-35.5-7.5l-121-121-633 633q-10 10-23 10t-23-10l-233-233-416 416-192-192 585-585q10-10 23-10t23 10l233 233 464-464-121-121q-16-16-7.5-35.5t29.5-19.5h435q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.lineChart = lineChart;
+var lastfm = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1292 704q0 6 10 41 10 29 25 49.5t41 34 44 20 55 16.5q325 91 325 332 0 146-105.5 242.5t-254.5 96.5q-59 0-111.5-18.5t-91.5-45.5-77-74.5-63-87.5-53.5-103.5-43.5-103-39.5-106.5-35.5-95q-32-81-61.5-133.5t-73.5-96.5-104-64-142-20q-96 0-183 55.5t-138 144.5-51 185q0 160 106.5 279.5t263.5 119.5q177 0 258-95 56-63 83-116l84 152q-15 34-44 70l1 1q-131 152-388 152-147 0-269.5-79t-190.5-207.5-68-274.5q0-105 43.5-206t116-176.5 172-121.5 204.5-46q87 0 159 19t123.5 50 95 80 72.5 99 58.5 117 50.5 124.5 50 130.5 55 127q96 200 233 200 81 0 138.5-48.5t57.5-128.5q0-42-19-72t-50.5-46-72.5-31.5-84.5-27-87.5-34-81-52-65-82-39-122.5q-3-16-3-33 0-110 87.5-192t198.5-78q78 3 120.5 14.5t90.5 53.5h-1q12 11 23 24.5t26 36 19 27.5l-129 99q-26-49-54-70v-1q-23-21-97-21-49 0-84 33t-35 83z"
+ }
+ }]
+};
+exports.lastfm = lastfm;
+var lastfmSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1432 1052q0-173-234-239-35-10-53-16.5t-38-25-29-46.5q0-2-2-8.5t-3-12-1-7.5q0-36 24.5-59.5t60.5-23.5q54 0 71 15h-1q20 15 39 51l93-71q-39-54-49-64-33-29-67.5-39t-85.5-10q-80 0-142 57.5t-62 137.5q0 7 2 23 16 96 64.5 140t148.5 73q29 8 49 15.5t45 21.5 38.5 34.5 13.5 46.5v5q1 58-40.5 93t-100.5 35q-97 0-167-144-23-47-51.5-121.5t-48-125.5-54-110.5-74-95.5-103.5-60.5-147-24.5q-101 0-192 56t-144 148-50 192v1q4 108 50.5 199t133.5 147.5 196 56.5q186 0 279-110 20-27 31-51l-60-109q-42 80-99 116t-146 36q-115 0-191-87t-76-204q0-105 82-189t186-84q112 0 170 53.5t104 172.5q8 21 25.5 68.5t28.5 76.5 31.5 74.5 38.5 74 45.5 62.5 55.5 53.5 66 33 80 13.5q107 0 183-69.5t76-174.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.lastfmSquare = lastfmSquare;
+var toggleOff = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 896q0-104-40.5-198.5t-109.5-163.5-163.5-109.5-198.5-40.5-198.5 40.5-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5 198.5-40.5 163.5-109.5 109.5-163.5 40.5-198.5zM1920 896q0-104-40.5-198.5t-109.5-163.5-163.5-109.5-198.5-40.5h-386q119 90 188.5 224t69.5 288-69.5 288-188.5 224h386q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5zM2048 896q0 130-51 248.5t-136.5 204-204 136.5-248.5 51h-768q-130 0-248.5-51t-204-136.5-136.5-204-51-248.5 51-248.5 136.5-204 204-136.5 248.5-51h768q130 0 248.5 51t204 136.5 136.5 204 51 248.5z"
+ }
+ }]
+};
+exports.toggleOff = toggleOff;
+var toggleOn = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 896q0-130 51-248.5t136.5-204 204-136.5 248.5-51h768q130 0 248.5 51t204 136.5 136.5 204 51 248.5-51 248.5-136.5 204-204 136.5-248.5 51h-768q-130 0-248.5-51t-204-136.5-136.5-204-51-248.5zM1408 1408q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5-198.5 40.5-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5z"
+ }
+ }]
+};
+exports.toggleOn = toggleOn;
+var bicycle = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M762 1152h-314q-40 0-57.5-35t6.5-67l188-251q-65-31-137-31-132 0-226 94t-94 226 94 226 226 94q115 0 203-72.5t111-183.5zM576 1024h186q-18-85-75-148zM1056 1024l288-384h-480l-99 132q105 103 126 252h165zM2176 1088q0-132-94-226t-226-94q-60 0-121 24l174 260q15 23 10 49t-27 40q-15 11-36 11-35 0-53-29l-174-260q-93 95-93 225 0 132 94 226t226 94 226-94 94-226zM2304 1088q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-97 39.5-183.5t109.5-149.5l-65-98-353 469q-18 26-51 26h-197q-23 164-149 274t-294 110q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q114 0 215 55l137-183h-224q-26 0-45-19t-19-45 19-45 45-19h384v128h435l-85-128h-222q-26 0-45-19t-19-45 19-45 45-19h256q33 0 53 28l267 400q91-44 192-44 185 0 316.5 131.5t131.5 316.5z"
+ }
+ }]
+};
+exports.bicycle = bicycle;
+var bus = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1216q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1408 1216q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1362 820l-72-384q-5-23-22.5-37.5t-40.5-14.5h-918q-23 0-40.5 14.5t-22.5 37.5l-72 384q-5 30 14 53t49 23h1062q30 0 49-23t14-53zM1136 208q0-20-14-34t-34-14h-640q-20 0-34 14t-14 34 14 34 34 14h640q20 0 34-14t14-34zM1536 933v603h-128v128q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-128h-768v128q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-128h-128v-603q0-112 25-223l103-454q9-78 97.5-137t230-89 312.5-30 312.5 30 230 89 97.5 137l105 454q23 102 23 223z"
+ }
+ }]
+};
+exports.bus = bus;
+var ioxhost = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1463 832q0 35-25 60.5t-61 25.5h-702q-36 0-61-25.5t-25-60.5 25-60.5 61-25.5h702q36 0 61 25.5t25 60.5zM1677 832q0-86-23-170h-982q-36 0-61-25t-25-60q0-36 25-61t61-25h908q-88-143-235-227t-320-84q-177 0-327.5 87.5t-238 237.5-87.5 327q0 86 23 170h982q36 0 61 25t25 60q0 36-25 61t-61 25h-908q88 143 235.5 227t320.5 84q132 0 253-51.5t208-139 139-208 52-253.5zM2048 577q0 35-25 60t-61 25h-131q17 85 17 170 0 167-65.5 319.5t-175.5 263-262.5 176-319.5 65.5q-246 0-448.5-133t-301.5-350h-189q-36 0-61-25t-25-61q0-35 25-60t61-25h132q-17-85-17-170 0-167 65.5-319.5t175.5-263 262.5-176 320.5-65.5q245 0 447.5 133t301.5 350h188q36 0 61 25t25 61z"
+ }
+ }]
+};
+exports.ioxhost = ioxhost;
+var angellist = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M953 378l-114 328 117 21q165-451 165-518 0-56-38-56-57 0-130 225zM654 1065l33 88q37-42 71-67l-33-5.5t-38.5-7-32.5-8.5zM362 169q0 98 159 521 17-10 49-10 15 0 75 5l-121-351q-75-220-123-220-19 0-29 17.5t-10 37.5zM283 928q0 36 51.5 119t117.5 153 100 70q14 0 25.5-13t11.5-27q0-24-32-102-13-32-32-72t-47.5-89-61.5-81-62-32q-20 0-45.5 27t-25.5 47zM125 1263q0 41 25 104 59 145 183.5 227t281.5 82q227 0 382-170 152-169 152-427 0-43-1-67t-11.5-62-30.5-56q-56-49-211.5-75.5t-270.5-26.5q-37 0-49 11-12 5-12 35 0 34 21.5 60t55.5 40 77.5 23.5 87.5 11.5 85 4 70 0h23q24 0 40 19 15 19 19 55-28 28-96 54-61 22-93 46-64 46-108.5 114t-44.5 137q0 31 18.5 88.5t18.5 87.5l-3 12q-4 12-4 14-137-10-146-216-8 2-41 2 2 7 2 21 0 53-40.5 89.5t-94.5 36.5q-82 0-166.5-78t-84.5-159q0-34 33-67 52 64 60 76 77 104 133 104 12 0 26.5-8.5t14.5-20.5q0-34-87.5-145t-116.5-111q-43 0-70 44.5t-27 90.5zM11 1272q0-101 42.5-163t136.5-88q-28-74-28-104 0-62 61-123t122-61q29 0 70 15-163-462-163-567 0-80 41-130.5t119-50.5q131 0 325 581 6 17 8 23 6-16 29-79.5t43.5-118.5 54-127.5 64.5-123 70.5-86.5 76.5-36q71 0 112 49t41 122q0 108-159 550 61 15 100.5 46t58.5 78 26 93.5 7 110.5q0 150-47 280t-132 225-211 150-278 55q-111 0-223-42-149-57-258-191.5t-109-286.5z"
+ }
+ }]
+};
+exports.angellist = angellist;
+var cc = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M785 1008h207q-14 158-98.5 248.5t-214.5 90.5q-162 0-254.5-116t-92.5-316q0-194 93-311.5t233-117.5q148 0 232 87t97 247h-203q-5-64-35.5-99t-81.5-35q-57 0-88.5 60.5t-31.5 177.5q0 48 5 84t18 69.5 40 51.5 66 18q95 0 109-139zM1497 1008h206q-14 158-98 248.5t-214 90.5q-162 0-254.5-116t-92.5-316q0-194 93-311.5t233-117.5q148 0 232 87t97 247h-204q-4-64-35-99t-81-35q-57 0-88.5 60.5t-31.5 177.5q0 48 5 84t18 69.5 39.5 51.5 65.5 18q49 0 76.5-38t33.5-101zM1856 889q0-207-15.5-307t-60.5-161q-6-8-13.5-14t-21.5-15-16-11q-86-63-697-63-625 0-710 63-5 4-17.5 11.5t-21 14-14.5 14.5q-45 60-60 159.5t-15 308.5q0 208 15 307.5t60 160.5q6 8 15 15t20.5 14 17.5 12q44 33 239.5 49t470.5 16q610 0 697-65 5-4 17-11t20.5-14 13.5-16q46-60 61-159t15-309zM2048 128v1536h-2048v-1536h2048z"
+ }
+ }]
+};
+exports.cc = cc;
+var ils = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.ils = ils;
+var shekel = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.shekel = shekel;
+var sheqel = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.sheqel = sheqel;
+var meanpath = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1311 842v114q0 24-13.5 38t-37.5 14h-202q-24 0-38-14t-14-38v-114q0-24 14-38t38-14h202q24 0 37.5 14t13.5 38zM821 1072v-250q0-53-32.5-85.5t-85.5-32.5h-133q-68 0-96 52-28-52-96-52h-130q-53 0-85.5 32.5t-32.5 85.5v250q0 22 21 22h55q22 0 22-22v-230q0-24 13.5-38t38.5-14h94q24 0 38 14t14 38v230q0 22 21 22h54q22 0 22-22v-230q0-24 14-38t38-14h97q24 0 37.5 14t13.5 38v230q0 22 22 22h55q21 0 21-22zM1410 976v-154q0-53-33-85.5t-86-32.5h-264q-53 0-86 32.5t-33 85.5v410q0 21 22 21h55q21 0 21-21v-180q31 42 94 42h191q53 0 86-32.5t33-85.5zM1536 360v1072q0 96-68 164t-164 68h-1072q-96 0-164-68t-68-164v-1072q0-96 68-164t164-68h1072q96 0 164 68t68 164z"
+ }
+ }]
+};
+exports.meanpath = meanpath;
+var buysellads = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M915 1086h-294l147-551zM1001 1408h311l-324-1024h-440l-324 1024h311l383-314zM1536 416v960q0 118-85 203t-203 85h-960q-118 0-203-85t-85-203v-960q0-118 85-203t203-85h960q118 0 203 85t85 203z"
+ }
+ }]
+};
+exports.buysellads = buysellads;
+var connectdevelop = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2048 895q0 21-13 36.5t-33 19.5l-205 356q3 9 3 18 0 20-12.5 35.5t-32.5 19.5l-193 337q3 8 3 16 0 23-16.5 40t-40.5 17q-25 0-41-18h-400q-17 20-43 20t-43-20h-399q-17 20-43 20-23 0-40-16.5t-17-40.5q0-8 4-20l-193-335q-20-4-32.5-19.5t-12.5-35.5q0-9 3-18l-206-356q-20-5-32.5-20.5t-12.5-35.5q0-21 13.5-36.5t33.5-19.5l199-344q0-1-0.5-3t-0.5-3q0-36 34-51l209-363q-4-10-4-18 0-24 17-40.5t40-16.5q26 0 44 21h396q16-21 43-21t43 21h398q18-21 44-21 23 0 40 16.5t17 40.5q0 6-4 18l207 358q23 1 39 17.5t16 38.5q0 13-7 27l187 324q19 4 31.5 19.5t12.5 35.5zM1063 1694h389l-342-354h-143l-342 354h360q18-16 39-16t39 16zM112 882q1 4 1 13 0 10-2 15l208 360 15 6 188-199v-347l-187-194q-13 8-29 10zM986 98h-388l190 200 554-200h-280q-16 16-38 16t-38-16zM1689 1310q1-6 5-11l-64-68-17 79h76zM1583 1310l22-105-252-266-296 307 63 64h463zM1495 1678l16-28 65-310h-427l333 343q8-4 13-5zM578 1694h5l342-354h-373v335l4 6q14 5 22 13zM552 1310h402l64-66-309-321-157 166v221zM359 1310h163v-189l-168 177q4 8 5 12zM358 485q0 1 0.5 2t0.5 2q0 16-8 29l171 177v-269zM552 415v311l153 157 297-314-223-236zM556 111l-4 8v264l205-74-191-201q-6 2-10 3zM1447 98h-16l-621 224 213 225zM1023 590l-297 315 311 319 296-307zM688 902l-136-141v284zM1038 1266l-42 44h85zM1374 918l238 251 132-624-3-5-1-1zM1718 518q-8-13-8-29v-2l-216-376q-5-1-13-5l-437 463 310 327zM522 394v-223l-163 282zM522 1340h-163l163 283v-283zM1607 1340l-48 227 130-227h-82zM1729 1270l207-361q-2-10-2-14 0-1 3-16l-171-296-129 612 77 82q5-3 15-7z"
+ }
+ }]
+};
+exports.connectdevelop = connectdevelop;
+var dashcube = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 680q0-131 91.5-226.5t222.5-95.5h742l352-358v1470q0 132-91.5 227t-222.5 95h-780q-131 0-222.5-95t-91.5-227v-790zM1232 1434l-176-180v-425q0-46-32-79t-78-33h-484q-46 0-78 33t-32 79v492q0 46 32.5 79.5t77.5 33.5h770z"
+ }
+ }]
+};
+exports.dashcube = dashcube;
+var forumbee = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M934 150q-317 121-556 362.5t-358 560.5q-20-89-20-176 0-208 102.5-384.5t278.5-279 384-102.5q82 0 169 19zM1203 269q93 65 164 155-389 113-674.5 400.5t-396.5 676.5q-93-72-155-162 112-386 395-671t667-399zM470 1603q115-356 379.5-622t619.5-384q40 92 54 195-292 120-516 345t-343 518q-103-14-194-52zM1536 1661q-193-50-367-115-135 84-290 107 109-205 274-370.5t369-275.5q-21 152-101 284 65 175 115 370z"
+ }
+ }]
+};
+exports.forumbee = forumbee;
+var leanpub = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1893 392l155 1272q-131 0-257-57-200-91-393-91-226 0-374 148-148-148-374-148-193 0-393 91-128 57-252 57h-5l155-1272q224-127 482-127 233 0 387 106 154-106 387-106 258 0 482 127zM1398 1379q129 0 232 28.5t260 93.5l-124-1021q-171-78-368-78-224 0-374 141-150-141-374-141-197 0-368 78l-124 1021q105-43 165.5-65t148.5-39.5 178-17.5q202 0 374 108 172-108 374-108zM1438 1345l-55-907q-211 4-359 155-152-155-374-155-176 0-336 66l-114 941q124-51 228.5-76t221.5-25q209 0 374 102 172-107 374-102z"
+ }
+ }]
+};
+exports.leanpub = leanpub;
+var sellsy = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1500 1371v-733q0-21-15-36t-35-15h-93q-20 0-35 15t-15 36v733q0 20 15 35t35 15h93q20 0 35-15t15-35zM1216 1371v-531q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v531q0 20 15 35t35 15h101q20 0 35-15t15-35zM924 1371v-429q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v429q0 20 15 35t35 15h101q20 0 35-15t15-35zM632 1371v-362q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v362q0 20 15 35t35 15h101q20 0 35-15t15-35zM2048 1225q0 166-118 284t-284 118h-1244q-166 0-284-118t-118-284q0-116 63-214.5t168-148.5q-10-34-10-73 0-113 80.5-193.5t193.5-80.5q102 0 180 67 45-183 194-300t338-117q149 0 275 73.5t199.5 199.5 73.5 275q0 66-14 122 135 33 221 142.5t86 247.5z"
+ }
+ }]
+};
+exports.sellsy = sellsy;
+var shirtsinbulk = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h1536v1392l-776 338-760-338v-1392zM1436 1327v-926h-1336v926l661 294zM1436 301v-201h-1336v201h1336zM181 599v115h-37v-115h37zM181 747v115h-37v-115h37zM181 895v115h-37v-115h37zM181 1043v115h-37v-115h37zM181 1191v115h-37v-115h37zM207 1334l15-34 105 47-15 33zM343 1394l15-34 105 46-15 34zM478 1454l15-34 105 46-15 34zM614 1513l15-33 104 46-15 34zM797 1526l105-46 15 33-105 47zM932 1466l105-46 15 34-105 46zM1068 1406l105-46 15 34-105 46zM1203 1347l105-47 15 34-105 46zM259 147v36h-114v-36h114zM421 147v36h-115v-36h115zM583 147v36h-115v-36h115zM744 147v36h-114v-36h114zM906 147v36h-114v-36h114zM1068 147v36h-115v-36h115zM1230 147v36h-115v-36h115zM1391 147v36h-114v-36h114zM181 487v79h-37v-115h115v36h-78zM421 451v36h-115v-36h115zM583 451v36h-115v-36h115zM744 451v36h-114v-36h114zM906 451v36h-114v-36h114zM1068 451v36h-115v-36h115zM1230 451v36h-115v-36h115zM1355 566v-79h-78v-36h115v115h-37zM1355 714v-115h37v115h-37zM1355 862v-115h37v115h-37zM1355 1010v-115h37v115h-37zM1355 1158v-115h37v115h-37zM1355 1306v-115h37v115h-37zM760 1271q-129 0-221-91.5t-92-221.5q0-129 92-221t221-92q130 0 221.5 92t91.5 221q0 130-91.5 221.5t-221.5 91.5zM595 890q0 36 19.5 56.5t49.5 25 64 7 64 2 49.5 9 19.5 30.5q0 49-112 49-97 0-123-51h-3l-31 63q67 42 162 42 29 0 56.5-5t55.5-16 45.5-33 17.5-53q0-46-27.5-69.5t-67.5-27-79.5-3-67-5-27.5-25.5q0-21 20.5-33t40.5-15 41-3q34 0 70.5 11t51.5 34h3l30-58q-3-1-21-8.5t-22.5-9-19.5-7-22-7-20-4.5-24-4-23-1q-29 0-56.5 5t-54 16.5-43 34-16.5 53.5z"
+ }
+ }]
+};
+exports.shirtsinbulk = shirtsinbulk;
+var simplybuilt = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M863 1032q0-112-79.5-191.5t-191.5-79.5-191 79.5-79 191.5 79 191 191 79 191.5-79 79.5-191zM1726 1031q0-112-79-191t-191-79-191.5 79-79.5 191q0 113 79.5 192t191.5 79 191-79.5 79-191.5zM2048 222v1348q0 44-31.5 75.5t-76.5 31.5h-1832q-45 0-76.5-31.5t-31.5-75.5v-1348q0-44 31.5-75.5t76.5-31.5h431q44 0 76 31.5t32 75.5v161h754v-161q0-44 32-75.5t76-31.5h431q45 0 76.5 31.5t31.5 75.5z"
+ }
+ }]
+};
+exports.simplybuilt = simplybuilt;
+var skyatlas = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1430 583zM1690 787q148 0 253 98.5t105 244.5q0 157-109 261.5t-267 104.5q-85 0-162-27.5t-138-73.5-118-106-109-126-103.5-132.5-108.5-126.5-117-106-136-73.5-159-27.5q-154 0-251.5 91.5t-97.5 244.5q0 157 104 250t263 93q100 0 208-37.5t193-98.5q5-4 21-18.5t30-24 22-9.5q14 0 24.5 10.5t10.5 24.5q0 24-60 77-101 88-234.5 142t-260.5 54q-133 0-245.5-58t-180-165-67.5-241q0-205 141.5-341t347.5-136q120 0 226.5 43.5t185.5 113 151.5 153 139 167.5 133.5 153.5 149.5 113 172.5 43.5q102 0 168.5-61.5t66.5-162.5q0-95-64.5-159t-159.5-64q-30 0-81.5 18.5t-68.5 18.5q-20 0-35.5-15t-15.5-35q0-18 8.5-57t8.5-59q0-159-107.5-263t-266.5-104q-58 0-111.5 18.5t-84 40.5-55.5 40.5-33 18.5q-15 0-25.5-10.5t-10.5-25.5q0-19 25-46 59-67 147-103.5t182-36.5q191 0 318 125.5t127 315.5q0 37-4 66 57-15 115-15z"
+ }
+ }]
+};
+exports.skyatlas = skyatlas;
+var cartPlus = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1216 704q0-26-19-45t-45-19h-128v-128q0-26-19-45t-45-19-45 19-19 45v128h-128q-26 0-45 19t-19 45 19 45 45 19h128v128q0 26 19 45t45 19 45-19 19-45v-128h128q26 0 45-19t19-45zM640 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1536 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1664 448v512q0 24-16 42.5t-41 21.5l-1044 122q1 7 4.5 21.5t6 26.5 2.5 22q0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-14 11-39.5t29.5-59.5 20.5-38l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t20 15.5 13 24.5 7.5 26.5 5.5 29.5 4.5 25.5h1201q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.cartPlus = cartPlus;
+var cartArrowDown = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 704q0-26-19-45t-45-19-45 19l-147 146v-293q0-26-19-45t-45-19-45 19-19 45v293l-147-146q-19-19-45-19t-45 19-19 45 19 45l256 256q19 19 45 19t45-19l256-256q19-19 19-45zM640 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1536 1536q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1664 448v512q0 24-16 42.5t-41 21.5l-1044 122q1 7 4.5 21.5t6 26.5 2.5 22q0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-14 11-39.5t29.5-59.5 20.5-38l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t20 15.5 13 24.5 7.5 26.5 5.5 29.5 4.5 25.5h1201q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.cartArrowDown = cartArrowDown;
+var diamond = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M212 768l623 665-300-665h-323zM1024 1540l349-772h-698zM538 640l204-384h-262l-288 384h346zM1213 1433l623-665h-323zM683 640h682l-204-384h-274zM1510 640h346l-288-384h-262zM1651 154l384 512q14 18 13 41.5t-17 40.5l-960 1024q-18 20-47 20t-47-20l-960-1024q-16-17-17-40.5t13-41.5l384-512q18-26 51-26h1152q33 0 51 26z"
+ }
+ }]
+};
+exports.diamond = diamond;
+var ship = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1811 1555q19-19 45-19t45 19l128 128-90 90-83-83-83 83q-18 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-128-128 90-90 83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83zM237 1517q-19 19-45 19t-45-19l-128-128 90-90 83 82 83-82q19-19 45-19t45 19l83 82 64-64v-293l-210-314q-17-26-7-56.5t40-40.5l177-58v-299h128v-128h256v-128h256v128h256v128h128v299l177 58q30 10 40 40.5t-7 56.5l-210 314v293l19-18q19-19 45-19t45 19l83 82 83-82q19-19 45-19t45 19l128 128-90 90-83-83-83 83q-18 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83zM640 384v128l384-128 384 128v-128h-128v-128h-512v128h-128z"
+ }
+ }]
+};
+exports.ship = ship;
+var userSecret = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M576 1536l96-448-96-128-128-64zM832 1536l128-640-128 64-96 128zM992 526q-2-4-4-6-10-8-96-8-70 0-167 19-7 2-21 2t-21-2q-97-19-167-19-86 0-96 8-2 2-4 6 2 18 4 27 2 3 7.5 6.5t7.5 10.5q2 4 7.5 20.5t7 20.5 7.5 17 8.5 17 9 14 12 13.5 14 9.5 17.5 8 20.5 4 24.5 2q36 0 59-12.5t32.5-30 14.5-34.5 11.5-29.5 17.5-12.5h12q11 0 17.5 12.5t11.5 29.5 14.5 34.5 32.5 30 59 12.5q13 0 24.5-2t20.5-4 17.5-8 14-9.5 12-13.5 9-14 8.5-17 7.5-17 7-20.5 7.5-20.5q2-7 7.5-10.5t7.5-6.5q2-9 4-27zM1408 1405q0 121-73 190t-194 69h-874q-121 0-194-69t-73-190q0-61 4.5-118t19-125.5 37.5-123.5 63.5-103.5 93.5-74.5l-90-220h214q-22-64-22-128 0-12 2-32-194-40-194-96 0-57 210-99 17-62 51.5-134t70.5-114q32-37 76-37 30 0 84 31t84 31 84-31 84-31q44 0 76 37 36 42 70.5 114t51.5 134q210 42 210 99 0 56-194 96 7 81-20 160h214l-82 225q63 33 107.5 96.5t65.5 143.5 29 151.5 8 148.5z"
+ }
+ }]
+};
+exports.userSecret = userSecret;
+var motorcycle = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2301 1036q12 103-22 198.5t-99 163.5-158.5 106-196.5 31q-161-11-279.5-125t-134.5-274q-12-111 27.5-210.5t118.5-170.5l-71-107q-96 80-151 194t-55 244q0 27-18.5 46.5t-45.5 19.5h-256-69q-23 164-149 274t-294 110q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q76 0 152 27l24-45q-123-110-304-110h-64q-26 0-45-19t-19-45 19-45 45-19h128q78 0 145 13.5t116.5 38.5 71.5 39.5 51 36.5h512 115l-85-128h-222q-30 0-49-22.5t-14-52.5q4-23 23-38t43-15h253q33 0 53 28l70 105 114-114q19-19 46-19h101q26 0 45 19t19 45v128q0 26-19 45t-45 19h-179l115 172q131-63 275-36 143 26 244 134.5t118 253.5zM448 1408q115 0 203-72.5t111-183.5h-314q-35 0-55-31-18-32-1-63l147-277q-47-13-91-13-132 0-226 94t-94 226 94 226 226 94zM1856 1408q132 0 226-94t94-226-94-226-226-94q-60 0-121 24l174 260q15 23 10 49t-27 40q-15 11-36 11-35 0-53-29l-174-260q-93 95-93 225 0 132 94 226t226 94z"
+ }
+ }]
+};
+exports.motorcycle = motorcycle;
+var streetView = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 1536q0 63-61.5 113.5t-164 81-225 46-253.5 15.5-253.5-15.5-225-46-164-81-61.5-113.5q0-49 33-88.5t91-66.5 118-44.5 131-29.5q26-5 48 10.5t26 41.5q5 26-10.5 48t-41.5 26q-58 10-106 23.5t-76.5 25.5-48.5 23.5-27.5 19.5-8.5 12q3 11 27 26.5t73 33 114 32.5 160.5 25 201.5 10 201.5-10 160.5-25 114-33 73-33.5 27-27.5q-1-4-8.5-11t-27.5-19-48.5-23.5-76.5-25-106-23.5q-26-4-41.5-26t-10.5-48q4-26 26-41.5t48-10.5q71 12 131 29.5t118 44.5 91 66.5 33 88.5zM1024 640v384q0 26-19 45t-45 19h-64v384q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-384h-64q-26 0-45-19t-19-45v-384q0-53 37.5-90.5t90.5-37.5h384q53 0 90.5 37.5t37.5 90.5zM928 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z"
+ }
+ }]
+};
+exports.streetView = streetView;
+var heartbeat = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1024h305q-5 6-10 10.5t-9 7.5l-3 4-623 600q-18 18-44 18t-44-18l-624-602q-5-2-21-20h369q22 0 39.5-13.5t22.5-34.5l70-281 190 667q6 20 23 33t39 13q21 0 38-13t23-33l146-485 56 112q18 35 57 35zM1792 596q0 145-103 300h-369l-111-221q-8-17-25.5-27t-36.5-8q-45 5-56 46l-129 430-196-686q-6-20-23.5-33t-39.5-13-39 13.5-22 34.5l-116 464h-423q-103-155-103-300 0-220 127-344t351-124q62 0 126.5 21.5t120 58 95.5 68.5 76 68q36-36 76-68t95.5-68.5 120-58 126.5-21.5q224 0 351 124t127 344z"
+ }
+ }]
+};
+exports.heartbeat = heartbeat;
+var venus = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 576q0 221-147.5 384.5t-364.5 187.5v260h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-260q-150-16-271.5-103t-186-224-52.5-292q11-134 80.5-249t182-188 245.5-88q170-19 319 54t236 212 87 306zM128 576q0 185 131.5 316.5t316.5 131.5 316.5-131.5 131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5z"
+ }
+ }]
+};
+exports.venus = venus;
+var mars = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1472 128q26 0 45 19t19 45v416q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-262l-382 383q126 156 126 359 0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5q203 0 359 126l382-382h-261q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h416zM576 1536q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.mars = mars;
+var mercury = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M830 316q145 72 233.5 210.5t88.5 305.5q0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-217-24-364.5-187.5t-147.5-384.5q0-167 88.5-305.5t233.5-210.5q-165-96-228-273-6-16 3.5-29.5t26.5-13.5h69q21 0 29 20 44 106 140 171t214 65 214-65 140-171q8-20 37-20h61q17 0 26.5 13.5t3.5 29.5q-63 177-228 273zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.mercury = mercury;
+var intersex = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-149-16-270.5-103t-186.5-223.5-53-291.5q16-204 160-353.5t347-172.5q118-14 228 19t198 103l255-254h-134q-14 0-23-9t-9-23v-64zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.intersex = intersex;
+var transgender = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-149-16-270.5-103t-186.5-223.5-53-291.5q16-204 160-353.5t347-172.5q118-14 228 19t198 103l255-254h-134q-14 0-23-9t-9-23v-64zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.transgender = transgender;
+var transgenderAlt = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-217-24-364.5-187.5t-147.5-384.5q0-201 126-359l-52-53-101 111q-9 10-22 10.5t-23-7.5l-48-44q-10-8-10.5-21.5t8.5-23.5l105-115-111-112v134q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-288q0-26 19-45t45-19h288q14 0 23 9t9 23v64q0 14-9 23t-23 9h-133l106 107 86-94q9-10 22-10.5t23 7.5l48 44q10 8 10.5 21.5t-8.5 23.5l-90 99 57 56q158-126 359-126t359 126l255-254h-134q-14 0-23-9t-9-23v-64zM832 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.transgenderAlt = transgenderAlt;
+var venusDouble = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1790 529q12 155-52.5 292t-186 224-271.5 103v260h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-512v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-260q-150-16-271.5-103t-186-224-52.5-292q17-206 164.5-356.5t352.5-169.5q206-21 377 94 171-115 377-94 205 19 352.5 169.5t164.5 356.5zM896 889q128-131 128-313t-128-313q-128 131-128 313t128 313zM576 1024q115 0 218-57-154-165-154-391 0-224 154-391-103-57-218-57-185 0-316.5 131.5t-131.5 316.5 131.5 316.5 316.5 131.5zM1152 1408v-260q-137-15-256-94-119 79-256 94v260h512zM1216 1024q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5q-115 0-218 57 154 167 154 391 0 226-154 391 103 57 218 57z"
+ }
+ }]
+};
+exports.venusDouble = venusDouble;
+var marsDouble = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 416q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q76 95 107.5 214t9.5 247q-31 182-166 312t-318 156q-210 29-384.5-80t-241.5-300q-117-6-221-57.5t-177.5-133-113.5-192.5-32-230q9-135 78-252t182-191.5 248-89.5q118-14 227.5 19t198.5 103l255-254h-134q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q59 74 93 169 182 9 328 124l255-254h-134q-14 0-23-9t-9-23v-64zM1024 832q0-20-4-58-162 25-271 150t-109 292q0 20 4 58 162-25 271-150t109-292zM128 832q0 168 111 294t276 149q-3-29-3-59 0-210 135-369.5t338-196.5q-53-120-163.5-193t-245.5-73q-185 0-316.5 131.5t-131.5 316.5zM1088 1664q185 0 316.5-131.5t131.5-316.5q0-168-111-294t-276-149q3 28 3 59 0 210-135 369.5t-338 196.5q53 120 163.5 193t245.5 73z"
+ }
+ }]
+};
+exports.marsDouble = marsDouble;
+var venusMars = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q76 95 107.5 214t9.5 247q-32 180-164.5 310t-313.5 157q-223 34-409-90-117 78-256 93v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-155-17-279.5-109.5t-187-237.5-39.5-307q25-187 159.5-322.5t320.5-164.5q224-34 410 90 146-97 320-97 201 0 359 126l255-254h-134q-14 0-23-9t-9-23v-64zM896 1145q128-131 128-313t-128-313q-128 131-128 313t128 313zM128 832q0 185 131.5 316.5t316.5 131.5q117 0 218-57-154-167-154-391t154-391q-101-57-218-57-185 0-316.5 131.5t-131.5 316.5zM1216 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5q-117 0-218 57 154 167 154 391t-154 391q101 57 218 57z"
+ }
+ }]
+};
+exports.venusMars = venusMars;
+var marsStroke = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1472 128q26 0 45 19t19 45v416q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-262l-213 214 140 140q9 10 9 23t-9 22l-46 46q-9 9-22 9t-23-9l-140-141-78 79q126 156 126 359 0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5q203 0 359 126l78-78-172-172q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l172 172 213-213h-261q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h416zM576 1536q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.marsStroke = marsStroke;
+var marsStrokeV = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 644q217 24 364.5 187.5t147.5 384.5q0 167-87 306t-236 212-319 54q-133-15-245.5-88t-182-188-80.5-249q-12-155 52.5-292t186-224 271.5-103v-132h-160q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h160v-165l-92 92q-10 9-23 9t-22-9l-46-46q-9-9-9-22t9-23l202-201q19-19 45-19t45 19l202 201q9 10 9 23t-9 22l-46 46q-9 9-22 9t-23-9l-92-92v165h160q14 0 23 9t9 23v64q0 14-9 23t-23 9h-160v132zM576 1664q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.marsStrokeV = marsStrokeV;
+var marsStrokeH = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1901 915q19 19 19 45t-19 45l-294 294q-9 10-22.5 10t-22.5-10l-45-45q-10-9-10-22.5t10-22.5l185-185h-294v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-132q-24 217-187.5 364.5t-384.5 147.5q-167 0-306-87t-212-236-54-319q15-133 88-245.5t188-182 249-80.5q155-12 292 52.5t224 186 103 271.5h132v-224q0-14 9-23t23-9h64q14 0 23 9t9 23v224h294l-185-185q-10-9-10-22.5t10-22.5l45-45q9-10 22.5-10t22.5 10zM576 1408q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.marsStrokeH = marsStrokeH;
+var neuter = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 576q0 221-147.5 384.5t-364.5 187.5v612q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-612q-217-24-364.5-187.5t-147.5-384.5q0-117 45.5-223.5t123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5zM576 1024q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.neuter = neuter;
+var genderless = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 960q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1152 960q0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5z"
+ }
+ }]
+};
+exports.genderless = genderless;
+var facebookOfficial = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1451 128q35 0 60 25t25 60v1366q0 35-25 60t-60 25h-391v-595h199l30-232h-229v-148q0-56 23.5-84t91.5-28l122-1v-207q-63-9-178-9-136 0-217.5 80t-81.5 226v171h-200v232h200v595h-735q-35 0-60-25t-25-60v-1366q0-35 25-60t60-25h1366z"
+ }
+ }]
+};
+exports.facebookOfficial = facebookOfficial;
+var pinterestP = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 597q0-108 37.5-203.5t103.5-166.5 152-123 185-78 202-26q158 0 294 66.5t221 193.5 85 287q0 96-19 188t-60 177-100 149.5-145 103-189 38.5q-68 0-135-32t-96-88q-10 39-28 112.5t-23.5 95-20.5 71-26 71-32 62.5-46 77.5-62 86.5l-14 5-9-10q-15-157-15-188 0-92 21.5-206.5t66.5-287.5 52-203q-32-65-32-169 0-83 52-156t132-73q61 0 95 40.5t34 102.5q0 66-44 191t-44 187q0 63 45 104.5t109 41.5q55 0 102-25t78.5-68 56-95 38-110.5 20-111 6.5-99.5q0-173-109.5-269.5t-285.5-96.5q-200 0-334 129.5t-134 328.5q0 44 12.5 85t27 65 27 45.5 12.5 30.5q0 28-15 73t-37 45q-2 0-17-3-51-15-90.5-56t-61-94.5-32.5-108-11-106.5z"
+ }
+ }]
+};
+exports.pinterestP = pinterestP;
+var whatsapp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M985 974q13 0 97.5 44t89.5 53q2 5 2 15 0 33-17 76-16 39-71 65.5t-102 26.5q-57 0-190-62-98-45-170-118t-148-185q-72-107-71-194v-8q3-91 74-158 24-22 52-22 6 0 18 1.5t19 1.5q19 0 26.5 6.5t15.5 27.5q8 20 33 88t25 75q0 21-34.5 57.5t-34.5 46.5q0 7 5 15 34 73 102 137 56 53 151 101 12 7 22 7 15 0 54-48.5t52-48.5zM782 1504q127 0 243.5-50t200.5-134 134-200.5 50-243.5-50-243.5-134-200.5-200.5-134-243.5-50-243.5 50-200.5 134-134 200.5-50 243.5q0 203 120 368l-79 233 242-77q158 104 345 104zM782 122q153 0 292.5 60t240.5 161 161 240.5 60 292.5-60 292.5-161 240.5-240.5 161-292.5 60q-195 0-365-94l-417 134 136-405q-108-178-108-389 0-153 60-292.5t161-240.5 240.5-161 292.5-60z"
+ }
+ }]
+};
+exports.whatsapp = whatsapp;
+var server = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128 1408h1024v-128h-1024v128zM128 896h1024v-128h-1024v128zM1696 1344q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM128 384h1024v-128h-1024v128zM1696 832q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1696 320q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1792 1152v384h-1792v-384h1792zM1792 640v384h-1792v-384h1792zM1792 128v384h-1792v-384h1792z"
+ }
+ }]
+};
+exports.server = server;
+var userPlus = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 896q-159 0-271.5-112.5t-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5-112.5 271.5-271.5 112.5zM1664 1024h352q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-352v352q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-352h-352q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h352v-352q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5v352zM928 1248q0 52 38 90t90 38h256v238q-68 50-171 50h-874q-121 0-194-69t-73-190q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q19 0 39 17 79 61 154.5 91.5t164.5 30.5 164.5-30.5 154.5-91.5q20-17 39-17 132 0 217 96h-223q-52 0-90 38t-38 90v192z"
+ }
+ }]
+};
+exports.userPlus = userPlus;
+var userTimes = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 896q-159 0-271.5-112.5t-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5-112.5 271.5-271.5 112.5zM1781 1216l249 249q9 9 9 23 0 13-9 22l-136 136q-9 9-22 9-14 0-23-9l-249-249-249 249q-9 9-23 9-13 0-22-9l-136-136q-9-9-9-22 0-14 9-23l249-249-249-249q-9-9-9-23 0-13 9-22l136-136q9-9 22-9 14 0 23 9l249 249 249-249q9-9 23-9 13 0 22 9l136 136q9 9 9 22 0 14-9 23zM1283 1216l-181 181q-37 37-37 91 0 53 37 90l83 83q-21 3-44 3h-874q-121 0-194-69t-73-190q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q19 0 39 17 154 122 319 122t319-122q20-17 39-17 28 0 57 6-28 27-41 50t-13 56q0 54 37 91z"
+ }
+ }]
+};
+exports.userTimes = userTimes;
+var bed = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1024h1728q26 0 45 19t19 45v448h-256v-256h-1536v256h-256v-1216q0-26 19-45t45-19h128q26 0 45 19t19 45v704zM832 704q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM2048 960v-64q0-159-112.5-271.5t-271.5-112.5h-704q-26 0-45 19t-19 45v384h1152z"
+ }
+ }]
+};
+exports.bed = bed;
+var hotel = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1024h1728q26 0 45 19t19 45v448h-256v-256h-1536v256h-256v-1216q0-26 19-45t45-19h128q26 0 45 19t19 45v704zM832 704q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM2048 960v-64q0-159-112.5-271.5t-271.5-112.5h-704q-26 0-45 19t-19 45v384h1152z"
+ }
+ }]
+};
+exports.hotel = hotel;
+var viacoin = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 0l-192 448h192v192h-274l-55 128h329v192h-411l-357 832-357-832h-411v-192h329l-55-128h-274v-192h192l-192-448h256l323 768h378l323-768h256zM768 1216l108-256h-216z"
+ }
+ }]
+};
+exports.viacoin = viacoin;
+var train = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 0q185 0 316.5 93.5t131.5 226.5v896q0 130-125.5 222t-305.5 97l213 202q16 15 8 35t-30 20h-1056q-22 0-30-20t8-35l213-202q-180-5-305.5-97t-125.5-222v-896q0-133 131.5-226.5t316.5-93.5h640zM768 1344q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM1344 768v-512h-1152v512h1152z"
+ }
+ }]
+};
+exports.train = train;
+var subway = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 0q185 0 316.5 93.5t131.5 226.5v896q0 130-125.5 222t-305.5 97l213 202q16 15 8 35t-30 20h-1056q-22 0-30-20t8-35l213-202q-180-5-305.5-97t-125.5-222v-896q0-133 131.5-226.5t316.5-93.5h640zM288 1312q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM704 768v-512h-544v512h544zM1248 1312q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM1408 768v-512h-576v512h576z"
+ }
+ }]
+};
+exports.subway = subway;
+var medium = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M597 421v1173q0 25-12.5 42.5t-36.5 17.5q-17 0-33-8l-465-233q-21-10-35.5-33.5t-14.5-46.5v-1140q0-20 10-34t29-14q14 0 44 15l511 256q3 3 3 5zM661 522l534 866-534-266v-600zM1792 540v1054q0 25-14 40.5t-38 15.5-47-13l-441-220zM1789 420q0 3-256.5 419.5t-300.5 487.5l-390-634 324-527q17-28 52-28 14 0 26 6l541 270q4 2 4 6z"
+ }
+ }]
+};
+exports.medium = medium;
+var yCombinator = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 128v1536h-1536v-1536h1536z"
+ }
+ }]
+};
+exports.yCombinator = yCombinator;
+var yc = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 128v1536h-1536v-1536h1536z"
+ }
+ }]
+};
+exports.yc = yc;
+var optinMonster = {
+ "viewBox": "0 0 2296 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M478 1675q-8 16-27 34.5t-37 25.5q-25 9-51.5-3.5t-28.5-31.5q-1-22 40-55t68-38q23-4 34 21.5t2 46.5zM1819 1675q7 16 26 34.5t38 25.5q25 9 51.5-3.5t27.5-31.5q2-22-39.5-55t-68.5-38q-22-4-33 21.5t-2 46.5zM1867 1566q13 27 56.5 59.5t77.5 41.5q45 13 82-4.5t37-50.5q0-46-67.5-100.5t-115.5-59.5q-40-5-63.5 37.5t-6.5 76.5zM428 1566q-13 27-56 59.5t-77 41.5q-45 13-82-4.5t-37-50.5q0-46 67.5-100.5t115.5-59.5q40-5 63 37.5t6 76.5zM1158 442h1q-41 0-76 15 27 8 44 30.5t17 49.5q0 35-27 60t-65 25q-52 0-80-43-5 23-5 42 0 74 56 126.5t135 52.5q80 0 136-52.5t56-126.5-56-126.5-136-52.5zM1462 224q-99-109-220.5-131.5t-245.5 44.5q27-60 82.5-96.5t118-39.5 121.5 17 99.5 74.5 44.5 131.5zM2212 1463q8 11-11 42 7 23 7 40 1 56-44.5 112.5t-109.5 91.5-118 37q-48 2-92-21.5t-66-65.5q-687 25-1259 0-23 41-66.5 65t-92.5 22q-86-3-179.5-80.5t-92.5-160.5q2-22 7-40-19-31-11-42 6-10 31-1 14-22 41-51-7-29 2-38 11-10 39 4 29-20 59-34 0-29 13-37 23-12 51 16 35-5 61 2 18 4 38 19v-73q-11 0-18-2-53-10-97-44.5t-55-87.5q-9-38 0-81 15-62 93-95 2-17 19-35.5t36-23.5 33 7.5 19 30.5h13q46 5 60 23 3 3 5 7 10-1 30.5-3.5t30.5-3.5q-15-11-30-17-23-40-91-43 0-6 1-10-62-2-118.5-18.5t-84.5-47.5q-32-36-42.5-92t-2.5-112q16-126 90-179 23-16 52-4.5t32 40.5q0 1 1.5 14t2.5 21 3 20 5.5 19 8.5 10q27 14 76 12 48-46 98-74-40-4-162 14l47-46q61-58 163-111 145-73 282-86-20-8-41-15.5t-47-14-42.5-10.5-47.5-11-43-10q595-126 904 139 98 84 158 222 85 10 121-9h1q5-3 8.5-10t5.5-19 3-19.5 3-21.5l1-14q3-28 32-40t52 5q73 52 91 178 7 57-3.5 113t-42.5 91q-28 32-83.5 48.5t-115.5 18.5v10q-71 2-95 43-14 5-31 17 11 1 32 3.5t30 3.5q1-5 5-8 16-18 60-23h13q5-18 19-30t33-8 36 23 19 36q79 32 93 95 9 40 1 81-12 53-56 88t-97 44q-10 2-17 2 0 49-1 73 20-15 38-19 26-7 61-2 28-28 51-16 14 9 14 37 33 16 59 34 27-13 38-4 10 10 2 38 28 30 41 51 23-8 31 1zM1937 511q0 29-9 54 82 32 112 132 4-37-9.5-98.5t-41.5-90.5q-20-19-36-17t-16 20zM1859 611q35 42 47.5 108.5t-0.5 124.5q67-13 97-45 13-14 18-28-3-64-31-114.5t-79-66.5q-15 15-52 21zM1822 615q-30 0-44-1 42 115 53 239 21 0 43-3 16-68 1-135t-53-100zM258 697q30-100 112-132-9-25-9-54 0-18-16.5-20t-35.5 17q-28 29-41.5 90.5t-9.5 98.5zM294 799q29 31 97 45-13-58-0.5-124.5t47.5-108.5v0q-37-6-52-21-51 16-78.5 66t-31.5 115q9 17 18 28zM471 853q14-124 73-235-19 4-55 18l-45 19v-1q-46 89-20 196 25 3 47 3zM1434 892q8 38 16.5 108.5t11.5 89.5q3 18 9.5 21.5t23.5-4.5q40-20 62-85.5t23-125.5q-24-2-146-4zM1152 251q-116 0-199 82.5t-83 198.5q0 117 83 199.5t199 82.5 199-82.5 83-199.5q0-116-83-198.5t-199-82.5zM1380 890q-105-2-211 0v-1q-1 27 2.5 86t13.5 66q29 14 93.5 14.5t95.5-10.5q9-3 11-39t-0.5-69.5-4.5-46.5zM1112 1089q8-4 9.5-48t-0.5-88-4-63v-1q-212 3-214 3-4 20-7 62t0 83 14 46q34 15 101 16t101-10zM718 900q-16 59 4.5 118.5t77.5 84.5q15 8 24 5t12-21q3-16 8-90t10-103q-69 2-136 6zM591 1026q3 23-34 36 132 141 271.5 240t305.5 154q172-49 310.5-146t293.5-250q-33-13-30-34 0-2 0.5-3.5t1.5-3 1-2.5v-1 1q-17-2-50-5.5t-48-4.5q-26 90-82 132-51 38-82-1-5-6-9-14-7-13-17-62-2 5-5 9t-7.5 7-8 5.5-9.5 4l-10 2.5t-12 2l-12 1.5t-13.5 1-13.5 0.5q-106 9-163-11-4 17-10 26.5t-21 15-23 7-36 3.5q-6 1-9 1-179 17-203-40-2 63-56 54-47-8-91-54-12-13-20-26-17-29-26-65-58 6-87 10 1 2 4 10zM507 1654q3-14 3-30-17-71-51-130t-73-70q-41-12-101.5 14.5t-104.5 80-39 107.5q35 53 100 93t119 42q51 2 94-28t53-79zM510 1483q23 63 27 119 195-113 392-174-98-52-180.5-120t-179.5-165q-6 4-29 13 0 1-1 4t-1 5q31 18 22 37-12 23-56 34-10 13-29 24h-1q-2 83 1 150 19 34 35 73zM579 1649q532 21 1145 0-254-147-428-196-76 35-156 57-8 3-16 0-65-21-129-49-208 60-416 188h-1v1q1 0 1-1zM1763 1603q4-54 28-120 14-38 33-71l-1 1q3-77 3-153-15-8-30-25-42-9-56-33-9-20 22-38-2-4-2-9-16-4-28-12-204 190-383 284 198 59 414 176zM2155 1626q5-54-39-107.5t-104-80-102-14.5q-38 11-72.5 70.5t-51.5 129.5q0 16 3 30 10 49 53 79t94 28q54-2 119-42t100-93z"
+ }
+ }]
+};
+exports.optinMonster = optinMonster;
+var opencart = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1524 1561q0 68-48 116t-116 48-116.5-48-48.5-116 48.5-116.5 116.5-48.5 116 48.5 48 116.5zM775 1561q0 68-48.5 116t-116.5 48-116-48-48-116 48-116.5 116-48.5 116.5 48.5 48.5 116.5zM0 67q57 60 110.5 104.5t121 82 136 63 166 45.5 200 31.5 250 18.5 304 9.5 372.5 2.5q139 0 244.5 5t181 16.5 124 27.5 71 39.5 24 51.5-19.5 64-56.5 76.5-89.5 91-116 104.5-139 119q-185 157-286 247 29-51 76.5-109t94-105.5 94.5-98.5 83-91.5 54-80.5 13-70-45.5-55.5-116.5-41-204-23.5-304-5q-168 2-314-6t-256-23-204.5-41-159.5-51.5-122.5-62.5-91.5-66.5-68-71.5-50.5-69.5-40-68-36.5-59.5z"
+ }
+ }]
+};
+exports.opencart = opencart;
+var expeditedssl = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 64q-169 0-323 66t-265.5 177.5-177.5 265.5-66 323 66 323 177.5 265.5 265.5 177.5 323 66 323-66 265.5-177.5 177.5-265.5 66-323-66-323-177.5-265.5-265.5-177.5-323-66zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM496 832q16 0 16 16v480q0 16-16 16h-32q-16 0-16-16v-480q0-16 16-16h32zM896 896q53 0 90.5 37.5t37.5 90.5q0 35-17.5 64t-46.5 46v114q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-114q-29-17-46.5-46t-17.5-64q0-53 37.5-90.5t90.5-37.5zM896 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM544 608v96q0 14 9 23t23 9h64q14 0 23-9t9-23v-96q0-93 65.5-158.5t158.5-65.5 158.5 65.5 65.5 158.5v96q0 14 9 23t23 9h64q14 0 23-9t9-23v-96q0-146-103-249t-249-103-249 103-103 249zM1408 1344v-512q0-26-19-45t-45-19h-896q-26 0-45 19t-19 45v512q0 26 19 45t45 19h896q26 0 45-19t19-45z"
+ }
+ }]
+};
+exports.expeditedssl = expeditedssl;
+var battery = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.battery = battery;
+var battery4 = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.battery4 = battery4;
+var batteryFull = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 512v768h-1664v-768h1664zM2048 1088h128v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288zM2304 704v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.batteryFull = batteryFull;
+var battery3 = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h1280v768h-1280zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.battery3 = battery3;
+var batteryThreeQuarters = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h1280v768h-1280zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.batteryThreeQuarters = batteryThreeQuarters;
+var battery2 = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h896v768h-896zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.battery2 = battery2;
+var batteryHalf = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h896v768h-896zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.batteryHalf = batteryHalf;
+var battery1 = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h512v768h-512zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.battery1 = battery1;
+var batteryQuarter = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1280v-768h512v768h-512zM2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.batteryQuarter = batteryQuarter;
+var battery0 = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.battery0 = battery0;
+var batteryEmpty = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2176 576q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5v160q0 66-47 113t-113 47h-1856q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1856q66 0 113 47t47 113v160zM2176 1088v-384h-128v-288q0-14-9-23t-23-9h-1856q-14 0-23 9t-9 23v960q0 14 9 23t23 9h1856q14 0 23-9t9-23v-288h128z"
+ }
+ }]
+};
+exports.batteryEmpty = batteryEmpty;
+var mousePointer = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1133 1043q31 30 14 69-17 40-59 40h-382l201 476q10 25 0 49t-34 35l-177 75q-25 10-49 0t-35-34l-191-452-312 312q-19 19-45 19-12 0-24-5-40-17-40-59v-1504q0-42 40-59 12-5 24-5 27 0 45 19z"
+ }
+ }]
+};
+exports.mousePointer = mousePointer;
+var iCursor = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M832 128q-320 0-320 224v416h128v128h-128v544q0 224 320 224h64v128h-64q-272 0-384-146-112 146-384 146h-64v-128h64q320 0 320-224v-544h-128v-128h128v-416q0-224-320-224h-64v-128h64q272 0 384 146 112-146 384-146h64v128h-64z"
+ }
+ }]
+};
+exports.iCursor = iCursor;
+var objectGroup = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2048 384h-128v1024h128v384h-384v-128h-1280v128h-384v-384h128v-1024h-128v-384h384v128h1280v-128h384v384zM1792 128v128h128v-128h-128zM128 128v128h128v-128h-128zM256 1664v-128h-128v128h128zM1664 1536v-128h128v-1024h-128v-128h-1280v128h-128v1024h128v128h1280zM1920 1664v-128h-128v128h128zM1280 640h384v768h-896v-256h-384v-768h896v256zM512 1024h640v-512h-640v512zM1536 1280v-512h-256v384h-384v128h640z"
+ }
+ }]
+};
+exports.objectGroup = objectGroup;
+var objectUngroup = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2304 768h-128v640h128v384h-384v-128h-896v128h-384v-384h128v-128h-384v128h-384v-384h128v-640h-128v-384h384v128h896v-128h384v384h-128v128h384v-128h384v384zM2048 512v128h128v-128h-128zM1408 128v128h128v-128h-128zM128 128v128h128v-128h-128zM256 1280v-128h-128v128h128zM1536 1152h-128v128h128v-128zM384 1152h896v-128h128v-640h-128v-128h-896v128h-128v640h128v128zM896 1664v-128h-128v128h128zM2176 1664v-128h-128v128h128zM2048 1408v-640h-128v-128h-384v384h128v384h-384v-128h-384v128h128v128h896v-128h128z"
+ }
+ }]
+};
+exports.objectUngroup = objectUngroup;
+var stickyNote = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1248v416h-928q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1344q40 0 68 28t28 68v928h-416q-40 0-68 28t-28 68zM1152 1280h381q-15 82-65 132l-184 184q-50 50-132 65v-381z"
+ }
+ }]
+};
+exports.stickyNote = stickyNote;
+var stickyNoteO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1400 1280h-248v248q29-10 41-22l185-185q12-12 22-41zM1120 1152h288v-896h-1280v1280h896v-288q0-40 28-68t68-28zM1536 224v1024q0 40-20 88t-48 76l-184 184q-28 28-76 48t-88 20h-1024q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1344q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.stickyNoteO = stickyNoteO;
+var ccJcb = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1951 998q0 26-15.5 44.5t-38.5 23.5q-8 2-18 2h-153v-140h153q10 0 18 2 23 5 38.5 23.5t15.5 44.5zM1933 785q0 25-15 42t-38 21q-3 1-15 1h-139v-129h139q3 0 8.5 0.5t6.5 0.5q23 4 38 21.5t15 42.5zM728 949v-308h-228v308q0 58-38 94.5t-105 36.5q-108 0-229-59v112q53 15 121 23t109 9l42 1q328 0 328-217zM1442 1133v-113q-99 52-200 59-108 8-169-41t-61-142 61-142 169-41q101 7 200 58v-112q-48-12-100-19.5t-80-9.5l-28-2q-127-6-218.5 14t-140.5 60-71 88-22 106 22 106 71 88 140.5 60 218.5 14q101-4 208-31zM2176 1018q0-54-43-88.5t-109-39.5v-3q57-8 89-41.5t32-79.5q0-55-41-88t-107-36q-3 0-12-0.5t-14-0.5h-455v510h491q74 0 121.5-36.5t47.5-96.5zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccJcb = ccJcb;
+var ccDinersClub = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M858 1241v-693q-106 41-172 135.5t-66 211.5 66 211.5 172 134.5zM1362 895q0-117-66-211.5t-172-135.5v694q106-41 172-135.5t66-211.5zM1577 895q0 159-78.5 294t-213.5 213.5-294 78.5q-119 0-227.5-46.5t-187-125-125-187-46.5-227.5q0-159 78.5-294t213.5-213.5 294-78.5 294 78.5 213.5 213.5 78.5 294zM1960 902q0-139-55.5-261.5t-147.5-205.5-213.5-131-252.5-48h-301q-176 0-323.5 81t-235 230-87.5 335q0 171 87 317.5t236 231.5 323 85h301q129 0 251.5-50.5t214.5-135 147.5-202.5 55.5-246zM2304 256v1280q0 52-38 90t-90 38h-2048q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h2048q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.ccDinersClub = ccDinersClub;
+var clone = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1632v-1088q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5v1088q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5-9.5t9.5-22.5zM1792 544v1088q0 66-47 113t-113 47h-1088q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1088q66 0 113 47t47 113zM1408 160v160h-128v-160q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5v1088q0 13 9.5 22.5t22.5 9.5h160v128h-160q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1088q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.clone = clone;
+var balanceScale = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1728 448l-384 704h768zM448 448l-384 704h768zM1269 256q-14 40-45.5 71.5t-71.5 45.5v1291h608q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1344q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h608v-1291q-40-14-71.5-45.5t-45.5-71.5h-491q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h491q21-57 70-92.5t111-35.5 111 35.5 70 92.5h491q14 0 23 9t9 23v64q0 14-9 23t-23 9h-491zM1088 272q33 0 56.5-23.5t23.5-56.5-23.5-56.5-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5zM2176 1152q0 73-46.5 131t-117.5 91-144.5 49.5-139.5 16.5-139.5-16.5-144.5-49.5-117.5-91-46.5-131q0-11 35-81t92-174.5 107-195.5 102-184 56-100q18-33 56-33t56 33q4 7 56 100t102 184 107 195.5 92 174.5 35 81zM896 1152q0 73-46.5 131t-117.5 91-144.5 49.5-139.5 16.5-139.5-16.5-144.5-49.5-117.5-91-46.5-131q0-11 35-81t92-174.5 107-195.5 102-184 56-100q18-33 56-33t56 33q4 7 56 100t102 184 107 195.5 92 174.5 35 81z"
+ }
+ }]
+};
+exports.balanceScale = balanceScale;
+var hourglassO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-77 29-149 92.5t-129.5 152.5-92.5 210-35 253h1024q0-132-35-253t-92.5-210-129.5-152.5-149-92.5q-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z"
+ }
+ }]
+};
+exports.hourglassO = hourglassO;
+var hourglass1 = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 66 9 128h1006q9-61 9-128zM1280 1664q0-130-34-249.5t-90.5-208-126.5-152-146-94.5h-230q-76 31-146 94.5t-126.5 152-90.5 208-34 249.5h1024z"
+ }
+ }]
+};
+exports.hourglass1 = hourglass1;
+var hourglassStart = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 66 9 128h1006q9-61 9-128zM1280 1664q0-130-34-249.5t-90.5-208-126.5-152-146-94.5h-230q-76 31-146 94.5t-126.5 152-90.5 208-34 249.5h1024z"
+ }
+ }]
+};
+exports.hourglassStart = hourglassStart;
+var hourglass2 = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 206 85 384h854q85-178 85-384zM1223 1344q-54-141-145.5-241.5t-194.5-142.5h-230q-103 42-194.5 142.5t-145.5 241.5h910z"
+ }
+ }]
+};
+exports.hourglass2 = hourglass2;
+var hourglassHalf = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM1280 128h-1024q0 206 85 384h854q85-178 85-384zM1223 1344q-54-141-145.5-241.5t-194.5-142.5h-230q-103 42-194.5 142.5t-145.5 241.5h910z"
+ }
+ }]
+};
+exports.hourglassHalf = hourglassHalf;
+var hourglass3 = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-137 51-244 196h700q-107-145-244-196-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z"
+ }
+ }]
+};
+exports.hourglass3 = hourglass3;
+var hourglassEnd = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 128q0 261-106.5 461.5t-266.5 306.5q160 106 266.5 306.5t106.5 461.5h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96q0-261 106.5-461.5t266.5-306.5q-160-106-266.5-306.5t-106.5-461.5h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1472q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96zM874 836q77-29 149-92.5t129.5-152.5 92.5-210 35-253h-1024q0 132 35 253t92.5 210 129.5 152.5 149 92.5q19 7 30.5 23.5t11.5 36.5-11.5 36.5-30.5 23.5q-137 51-244 196h700q-107-145-244-196-19-7-30.5-23.5t-11.5-36.5 11.5-36.5 30.5-23.5z"
+ }
+ }]
+};
+exports.hourglassEnd = hourglassEnd;
+var hourglass = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1504 1600q14 0 23 9t9 23v128q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h1472zM130 1536q3-55 16-107t30-95 46-87 53.5-76 64.5-69.5 66-60 70.5-55 66.5-47.5 65-43q-43-28-65-43t-66.5-47.5-70.5-55-66-60-64.5-69.5-53.5-76-46-87-30-95-16-107h1276q-3 55-16 107t-30 95-46 87-53.5 76-64.5 69.5-66 60-70.5 55-66.5 47.5-65 43q43 28 65 43t66.5 47.5 70.5 55 66 60 64.5 69.5 53.5 76 46 87 30 95 16 107h-1276zM1504 0q14 0 23 9t9 23v128q0 14-9 23t-23 9h-1472q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h1472z"
+ }
+ }]
+};
+exports.hourglass = hourglass;
+var handGrabO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 384q-53 0-90.5 37.5t-37.5 90.5v128h-32v-93q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v429l-32-30v-172q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v224q0 47 35 82l310 296q39 39 39 102 0 26 19 45t45 19h640q26 0 45-19t19-45v-25q0-41 10-77l108-436q10-36 10-77v-246q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v32h-32v-125q0-40-25-72.5t-64-40.5q-14-2-23-2-46 0-79 33t-33 79v128h-32v-122q0-51-32.5-89.5t-82.5-43.5q-5-1-13-1zM768 256q84 0 149 50 57-34 123-34 59 0 111 27t86 76q27-7 59-7 100 0 170 71.5t70 171.5v246q0 51-13 108l-109 436q-6 24-6 71 0 80-56 136t-136 56h-640q-84 0-138-58.5t-54-142.5l-308-296q-76-73-76-175v-224q0-99 70.5-169.5t169.5-70.5q11 0 16 1 6-95 75.5-160t164.5-65q52 0 98 21 72-69 174-69z"
+ }
+ }]
+};
+exports.handGrabO = handGrabO;
+var handRockO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 384q-53 0-90.5 37.5t-37.5 90.5v128h-32v-93q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v429l-32-30v-172q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v224q0 47 35 82l310 296q39 39 39 102 0 26 19 45t45 19h640q26 0 45-19t19-45v-25q0-41 10-77l108-436q10-36 10-77v-246q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v32h-32v-125q0-40-25-72.5t-64-40.5q-14-2-23-2-46 0-79 33t-33 79v128h-32v-122q0-51-32.5-89.5t-82.5-43.5q-5-1-13-1zM768 256q84 0 149 50 57-34 123-34 59 0 111 27t86 76q27-7 59-7 100 0 170 71.5t70 171.5v246q0 51-13 108l-109 436q-6 24-6 71 0 80-56 136t-136 56h-640q-84 0-138-58.5t-54-142.5l-308-296q-76-73-76-175v-224q0-99 70.5-169.5t169.5-70.5q11 0 16 1 6-95 75.5-160t164.5-65q52 0 98 21 72-69 174-69z"
+ }
+ }]
+};
+exports.handRockO = handRockO;
+var handPaperO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M880 128q-46 0-79 33t-33 79v656h-32v-528q0-46-33-79t-79-33-79 33-33 79v528 256l-154-205q-38-51-102-51-53 0-90.5 37.5t-37.5 90.5q0 43 26 77l384 512q38 51 102 51h688q34 0 61-22t34-56l76-405q5-32 5-59v-498q0-46-33-79t-79-33-79 33-33 79v272h-32v-528q0-46-33-79t-79-33-79 33-33 79v528h-32v-656q0-46-33-79t-79-33zM880 0q68 0 125.5 35.5t88.5 96.5q19-4 42-4 99 0 169.5 70.5t70.5 169.5v17q105-6 180.5 64t75.5 175v498q0 40-8 83l-76 404q-14 79-76.5 131t-143.5 52h-688q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-106 75-181t181-75q78 0 128 34v-434q0-99 70.5-169.5t169.5-70.5q23 0 42 4 31-61 88.5-96.5t125.5-35.5z"
+ }
+ }]
+};
+exports.handPaperO = handPaperO;
+var handStopO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M880 128q-46 0-79 33t-33 79v656h-32v-528q0-46-33-79t-79-33-79 33-33 79v528 256l-154-205q-38-51-102-51-53 0-90.5 37.5t-37.5 90.5q0 43 26 77l384 512q38 51 102 51h688q34 0 61-22t34-56l76-405q5-32 5-59v-498q0-46-33-79t-79-33-79 33-33 79v272h-32v-528q0-46-33-79t-79-33-79 33-33 79v528h-32v-656q0-46-33-79t-79-33zM880 0q68 0 125.5 35.5t88.5 96.5q19-4 42-4 99 0 169.5 70.5t70.5 169.5v17q105-6 180.5 64t75.5 175v498q0 40-8 83l-76 404q-14 79-76.5 131t-143.5 52h-688q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-106 75-181t181-75q78 0 128 34v-434q0-99 70.5-169.5t169.5-70.5q23 0 42 4 31-61 88.5-96.5t125.5-35.5z"
+ }
+ }]
+};
+exports.handStopO = handStopO;
+var handScissorsO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1073 1664h-177q-163 0-226-141-23-49-23-102v-5q-62-30-98.5-88.5t-36.5-127.5q0-38 5-48h-261q-106 0-181-75t-75-181 75-181 181-75h113l-44-17q-74-28-119.5-93.5t-45.5-145.5q0-106 75-181t181-75q46 0 91 17l628 239h401q106 0 181 75t75 181v668q0 88-54 157.5t-140 90.5l-339 85q-92 23-186 23zM1024 953l-155 71-163 74q-30 14-48 41.5t-18 60.5q0 46 33 79t79 33q26 0 46-10l338-154q-49-10-80.5-50t-31.5-90v-55zM1344 1264q0-46-33-79t-79-33q-26 0-46 10l-290 132q-28 13-37 17t-30.5 17-29.5 23.5-16 29-8 40.5q0 50 31.5 82t81.5 32q20 0 38-9l352-160q30-14 48-41.5t18-60.5zM1112 512l-650-248q-24-8-46-8-53 0-90.5 37.5t-37.5 90.5q0 40 22.5 73t59.5 47l526 200v64h-640q-53 0-90.5 37.5t-37.5 90.5 37.5 90.5 90.5 37.5h535l233-106v-198q0-63 46-106l111-102h-69zM1073 1536q82 0 155-19l339-85q43-11 70-45.5t27-78.5v-668q0-53-37.5-90.5t-90.5-37.5h-308l-136 126q-36 33-36 82v296q0 46 33 77t79 31 79-35 33-81v-208h32v208q0 70-57 114 52 8 86.5 48.5t34.5 93.5q0 42-23 78t-61 53l-310 141h91z"
+ }
+ }]
+};
+exports.handScissorsO = handScissorsO;
+var handLizardO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1151 0q61 0 116 28t91 77l572 781q118 159 118 359v355q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-177l-286-143h-546q-80 0-136-56t-56-136v-32q0-119 84.5-203.5t203.5-84.5h420l42-128h-686q-100 0-173.5-67.5t-81.5-166.5q-65-79-65-182v-32q0-80 56-136t136-56h959zM1920 1600v-355q0-157-93-284l-573-781q-39-52-103-52h-959q-26 0-45 19t-19 45q0 32 1.5 49.5t9.5 40.5 25 43q10-31 35.5-50t56.5-19h832v32h-832q-26 0-45 19t-19 45q0 44 3 58 8 44 44 73t81 29h640 91q40 0 68 28t28 68q0 15-5 30l-64 192q-10 29-35 47.5t-56 18.5h-443q-66 0-113 47t-47 113v32q0 26 19 45t45 19h561q16 0 29 7l317 158q24 13 38.5 36t14.5 50v197q0 26 19 45t45 19h384q26 0 45-19t19-45z"
+ }
+ }]
+};
+exports.handLizardO = handLizardO;
+var handSpockO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M459 1792q-77 0-137.5-47.5t-79.5-122.5l-101-401q-13-57-13-108 0-45-5-67l-116-477q-7-27-7-57 0-93 62-161t155-78q17-85 82.5-139t152.5-54q83 0 148 51.5t85 132.5l83 348 103-428q20-81 85-132.5t148-51.5q89 0 155.5 57.5t80.5 144.5q92 10 152 79t60 162q0 24-7 59l-123 512q10-7 37.5-28.5t38.5-29.5 35-23 41-20.5 41.5-11 49.5-5.5q105 0 180 74t75 179q0 62-28.5 118t-78.5 94l-507 380q-68 51-153 51h-694zM1104 128q-38 0-68.5 24t-39.5 62l-164 682h-127l-145-602q-9-38-39.5-62t-68.5-24q-48 0-80 33t-32 80q0 15 3 28l132 547h-26l-99-408q-9-37-40-62.5t-69-25.5q-47 0-80 33t-33 79q0 14 3 26l116 478q7 28 9 86t10 88l100 401q8 32 34 52.5t59 20.5h694q42 0 76-26l507-379q56-43 56-110 0-52-37.5-88.5t-89.5-36.5q-43 0-77 26l-307 230v-227q0-4 32-138t68-282 39-161q4-18 4-29 0-47-32-81t-79-34q-39 0-69.5 24t-39.5 62l-116 482h-26l150-624q3-14 3-28 0-48-31.5-82t-79.5-34z"
+ }
+ }]
+};
+exports.handSpockO = handSpockO;
+var handPointerO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 128q-53 0-90.5 37.5t-37.5 90.5v512 384l-151-202q-41-54-107-54-52 0-89 38t-37 90q0 43 26 77l384 512q38 51 102 51h718q22 0 39.5-13.5t22.5-34.5l92-368q24-96 24-194v-217q0-41-28-71t-68-30-68 28-28 68h-32v-61q0-48-32-81.5t-80-33.5q-46 0-79 33t-33 79v64h-32v-90q0-55-37-94.5t-91-39.5q-53 0-90.5 37.5t-37.5 90.5v96h-32v-570q0-55-37-94.5t-91-39.5zM640 0q107 0 181.5 77.5t74.5 184.5v220q22-2 32-2 99 0 173 69 47-21 99-21 113 0 184 87 27-7 56-7 94 0 159 67.5t65 161.5v217q0 116-28 225l-92 368q-16 64-68 104.5t-118 40.5h-718q-60 0-114.5-27.5t-90.5-74.5l-384-512q-51-68-51-154 0-105 74.5-180.5t179.5-75.5q71 0 130 35v-547q0-106 75-181t181-75zM768 1408v-384h-32v384h32zM1024 1408v-384h-32v384h32zM1280 1408v-384h-32v384h32z"
+ }
+ }]
+};
+exports.handPointerO = handPointerO;
+var handPeaceO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1288 647q60 0 107 23 141 63 141 226v177q0 94-23 186l-85 339q-21 86-90.5 140t-157.5 54h-668q-106 0-181-75t-75-181v-401l-239-628q-17-45-17-91 0-106 75-181t181-75q80 0 145.5 45.5t93.5 119.5l17 44v-113q0-106 75-181t181-75 181 75 75 181v261q27-5 48-5 69 0 127.5 36.5t88.5 98.5zM1072 640q-33 0-60.5 18t-41.5 48l-74 163-71 155h55q50 0 90 31.5t50 80.5l154-338q10-20 10-46 0-46-33-79t-79-33zM1293 775q-22 0-40.5 8t-29 16-23.5 29.5-17 30.5-17 37l-132 290q-10 20-10 46 0 46 33 79t79 33q33 0 60.5-18t41.5-48l160-352q9-18 9-38 0-50-32-81.5t-82-31.5zM128 416q0 22 8 46l248 650v69l102-111q43-46 106-46h198l106-233v-535q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5v640h-64l-200-526q-14-37-47-59.5t-73-22.5q-53 0-90.5 37.5t-37.5 90.5zM1180 1664q44 0 78.5-27t45.5-70l85-339q19-73 19-155v-91l-141 310q-17 38-53 61t-78 23q-53 0-93.5-34.5t-48.5-86.5q-44 57-114 57h-208v-32h208q46 0 81-33t35-79-31-79-77-33h-296q-49 0-82 36l-126 136v308q0 53 37.5 90.5t90.5 37.5h668z"
+ }
+ }]
+};
+exports.handPeaceO = handPeaceO;
+var trademark = {
+ "viewBox": "0 0 1973 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M857 544v117q0 13-9.5 22t-22.5 9h-298v812q0 13-9 22.5t-22 9.5h-135q-13 0-22.5-9t-9.5-23v-812h-297q-13 0-22.5-9t-9.5-22v-117q0-14 9-23t23-9h793q13 0 22.5 9.5t9.5 22.5zM1895 541l77 961q1 13-8 24-10 10-23 10h-134q-12 0-21-8.5t-10-20.5l-46-588-189 425q-8 19-29 19h-120q-20 0-29-19l-188-427-45 590q-1 12-10 20.5t-21 8.5h-135q-13 0-23-10-9-10-9-24l78-961q1-12 10-20.5t21-8.5h142q20 0 29 19l220 520q10 24 20 51 3-7 9.5-24.5t10.5-26.5l221-520q9-19 29-19h141q13 0 22 8.5t10 20.5z"
+ }
+ }]
+};
+exports.trademark = trademark;
+var registered = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1042 703q0-88-60-121-33-18-117-18h-123v281h162q66 0 102-37t36-105zM1094 988l205 373q8 17-1 31-8 16-27 16h-152q-20 0-28-17l-194-365h-155v350q0 14-9 23t-23 9h-134q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h294q128 0 190 24 85 31 134 109t49 180q0 92-42.5 165.5t-115.5 109.5q6 10 9 16zM896 160q-150 0-286 58.5t-234.5 157-157 234.5-58.5 286 58.5 286 157 234.5 234.5 157 286 58.5 286-58.5 234.5-157 157-234.5 58.5-286-58.5-286-157-234.5-234.5-157-286-58.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.registered = registered;
+var creativeCommons = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M605 1233q153 0 257-104 14-18 3-36l-45-82q-6-13-24-17-16-2-27 11l-4 3q-4 4-11.5 10t-17.5 13.5-23.5 14.5-28.5 13-33.5 9.5-37.5 3.5q-76 0-125-50t-49-127q0-76 48-125.5t122-49.5q37 0 71.5 14t50.5 28l16 14q11 11 26 10 16-2 24-14l53-78q13-20-2-39-3-4-11-12t-30-23.5-48.5-28-67.5-22.5-86-10q-148 0-246 96.5t-98 240.5q0 146 97 241.5t247 95.5zM1235 1233q153 0 257-104 14-18 4-36l-45-82q-8-14-25-17-16-2-27 11l-4 3q-4 4-11.5 10t-17.5 13.5-23.5 14.5-28.5 13-33.5 9.5-37.5 3.5q-76 0-125-50t-49-127q0-76 48-125.5t122-49.5q37 0 71.5 14t50.5 28l16 14q11 11 26 10 16-2 24-14l53-78q13-20-2-39-3-4-11-12t-30-23.5-48.5-28-67.5-22.5-86-10q-147 0-245.5 96.5t-98.5 240.5q0 146 97 241.5t247 95.5zM896 160q-150 0-286 58.5t-234.5 157-157 234.5-58.5 286 58.5 286 157 234.5 234.5 157 286 58.5 286-58.5 234.5-157 157-234.5 58.5-286-58.5-286-157-234.5-234.5-157-286-58.5zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71z"
+ }
+ }]
+};
+exports.creativeCommons = creativeCommons;
+var gg = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M736 800l384 384-384 384-672-672 672-672 168 168-96 96-72-72-480 480 480 480 193-193-289-287zM1312 224l672 672-672 672-168-168 96-96 72 72 480-480-480-480-193 193 289 287-96 96-384-384z"
+ }
+ }]
+};
+exports.gg = gg;
+var ggCircle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M717 1354l271-271-279-279-88 88 192 191-96 96-279-279 279-279 40 40 87-87-127-128-454 454zM1075 1346l454-454-454-454-271 271 279 279 88-88-192-191 96-96 279 279-279 279-40-40-87 88zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.ggCircle = ggCircle;
+var tripadvisor = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M651 997q0 39-27.5 66.5t-65.5 27.5q-39 0-66.5-27.5t-27.5-66.5q0-38 27.5-65.5t66.5-27.5q38 0 65.5 27.5t27.5 65.5zM1805 996q0 39-27.5 66.5t-66.5 27.5-66.5-27.5-27.5-66.5 27.5-66 66.5-27 66.5 27 27.5 66zM765 997q0-79-56.5-136t-136.5-57-136.5 56.5-56.5 136.5 56.5 136.5 136.5 56.5 136.5-56.5 56.5-136.5zM1918 996q0-80-56.5-136.5t-136.5-56.5q-79 0-136 56.5t-57 136.5 56.5 136.5 136.5 56.5 136.5-56.5 56.5-136.5zM850 997q0 116-81.5 197.5t-196.5 81.5q-116 0-197.5-82t-81.5-197 82-196.5 197-81.5 196.5 81.5 81.5 196.5zM2004 996q0 115-81.5 196.5t-197.5 81.5q-115 0-196.5-81.5t-81.5-196.5 81.5-196.5 196.5-81.5q116 0 197.5 81.5t81.5 196.5zM1040 999q0-191-135.5-326.5t-326.5-135.5q-125 0-231 62t-168 168.5-62 231.5 62 231.5 168 168.5 231 62q191 0 326.5-135.5t135.5-326.5zM1708 426q-254-111-556-111-319 0-573 110 117 0 223 45.5t182.5 122.5 122 183 45.5 223q0-115 43.5-219.5t118-180.5 177.5-123 217-50zM2187 999q0-191-135-326.5t-326-135.5-326.5 135.5-135.5 326.5 135.5 326.5 326.5 135.5 326-135.5 135-326.5zM1921 433h383q-44 51-75 114.5t-40 114.5q110 151 110 337 0 156-77 288t-209 208.5-287 76.5q-133 0-249-56t-196-155q-47 56-129 179-11-22-53.5-82.5t-74.5-97.5q-80 99-196.5 155.5t-249.5 56.5q-155 0-287-76.5t-209-208.5-77-288q0-186 110-337-9-51-40-114.5t-75-114.5h365q149-100 355-156.5t432-56.5q224 0 421 56t348 157z"
+ }
+ }]
+};
+exports.tripadvisor = tripadvisor;
+var odnoklassniki = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 907q-188 0-321-133t-133-320q0-188 133-321t321-133 321 133 133 321q0 187-133 320t-321 133zM640 230q-92 0-157.5 65.5t-65.5 158.5q0 92 65.5 157.5t157.5 65.5 157.5-65.5 65.5-157.5q0-93-65.5-158.5t-157.5-65.5zM1163 962q13 27 15 49.5t-4.5 40.5-26.5 38.5-42.5 37-61.5 41.5q-115 73-315 94l73 72 267 267q30 31 30 74t-30 73l-12 13q-31 30-74 30t-74-30q-67-68-267-268l-267 268q-31 30-74 30t-73-30l-12-13q-31-30-31-73t31-74l267-267 72-72q-203-21-317-94-39-25-61.5-41.5t-42.5-37-26.5-38.5-4.5-40.5 15-49.5q10-20 28-35t42-22 56 2 65 35q5 4 15 11t43 24.5 69 30.5 92 24 113 11q91 0 174-25.5t120-50.5l38-25q33-26 65-35t56-2 42 22 28 35z"
+ }
+ }]
+};
+exports.odnoklassniki = odnoklassniki;
+var odnoklassnikiSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M927 580q0 66-46.5 112.5t-112.5 46.5-112.5-46.5-46.5-112.5 46.5-112.5 112.5-46.5 112.5 46.5 46.5 112.5zM1141 943q-10-20-28-32t-47.5-9.5-60.5 27.5q-10 8-29 20t-81 32-127 20-124-18-86-36l-27-18q-31-25-60.5-27.5t-47.5 9.5-28 32q-22 45-2 74.5t87 73.5q83 53 226 67l-51 52q-142 142-191 190-22 22-22 52.5t22 52.5l9 9q22 22 52.5 22t52.5-22l191-191q114 115 191 191 22 22 52.5 22t52.5-22l9-9q22-22 22-52.5t-22-52.5l-191-190-52-52q141-14 225-67 67-44 87-73.5t-2-74.5zM1092 580q0-134-95-229t-229-95-229 95-95 229 95 229 229 95 229-95 95-229zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.odnoklassnikiSquare = odnoklassnikiSquare;
+var getPocket = {
+ "viewBox": "0 0 1720 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1565 128q65 0 110 45.5t45 110.5v519q0 176-68 336t-182.5 275-274 182.5-334.5 67.5q-176 0-335.5-67.5t-274.5-182.5-183-275-68-336v-519q0-64 46-110t110-46h1409zM861 1192q47 0 82-33l404-388q37-35 37-85 0-49-34.5-83.5t-83.5-34.5q-47 0-82 33l-323 310-323-310q-35-33-81-33-49 0-83.5 34.5t-34.5 83.5q0 51 36 85l405 388q33 33 81 33z"
+ }
+ }]
+};
+exports.getPocket = getPocket;
+var wikipediaW = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1494 1639l-295-695q-25 49-158.5 305.5t-198.5 389.5q-1 1-27.5 0.5t-26.5-1.5q-82-193-255.5-587t-259.5-596q-21-50-66.5-107.5t-103.5-100.5-102-43q0-5-0.5-24t-0.5-27h583v50q-39 2-79.5 16t-66.5 43-10 64q26 59 216.5 499t235.5 540q31-61 140-266.5t131-247.5q-19-39-126-281t-136-295q-38-69-201-71v-50l513 1v47q-60 2-93.5 25t-12.5 69q33 70 87 189.5t86 187.5q110-214 173-363 24-55-10-79.5t-129-26.5q1-7 1-25v-24q64 0 170.5-0.5t180-1 92.5-0.5v49q-62 2-119 33t-90 81l-213 442q13 33 127.5 290t121.5 274l441-1017q-14-38-49.5-62.5t-65-31.5-55.5-8v-50l460 4 1 2-1 44q-139 4-201 145-526 1216-559 1291h-49z"
+ }
+ }]
+};
+exports.wikipediaW = wikipediaW;
+var safari = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M949 893q0 26-16.5 45t-41.5 19q-26 0-45-16.5t-19-41.5q0-26 17-45t42-19 44 16.5 19 41.5zM964 951l350-581q-9 8-67.5 62.5t-125.5 116.5-136.5 127-117 110.5-50.5 51.5l-349 580q7-7 67-62t126-116.5 136-127 117-111 50-50.5zM1611 896q0 201-104 371-3-2-17-11t-26.5-16.5-16.5-7.5q-13 0-13 13 0 10 59 44-74 112-184.5 190.5t-241.5 110.5l-16-67q-1-10-15-10-5 0-8 5.5t-2 9.5l16 68q-72 15-146 15-199 0-372-105 1-2 13-20.5t21.5-33.5 9.5-19q0-13-13-13-6 0-17 14.5t-22.5 34.5-13.5 23q-113-75-192-187.5t-110-244.5l69-15q10-3 10-15 0-5-5.5-8t-10.5-2l-68 15q-14-72-14-139 0-206 109-379 2 1 18.5 12t30 19 17.5 8q13 0 13-12 0-6-12.5-15.5t-32.5-21.5l-20-12q77-112 189-189t244-107l15 67q2 10 15 10 5 0 8-5.5t2-10.5l-15-66q71-13 134-13 204 0 379 109-39 56-39 65 0 13 12 13 11 0 48-64 111 75 187.5 186t107.5 241l-56 12q-10 2-10 16 0 5 5.5 8t9.5 2l57-13q14 72 14 140zM1696 896q0-163-63.5-311t-170.5-255-255-170.5-311-63.5-311 63.5-255 170.5-170.5 255-63.5 311 63.5 311 170.5 255 255 170.5 311 63.5 311-63.5 255-170.5 170.5-255 63.5-311zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.safari = safari;
+var chrome = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M893 0q240-2 451 120 232 134 352 372l-742-39q-160-9-294 74.5t-185 229.5l-276-424q128-159 311-245.5t383-87.5zM146 405l337 663q72 143 211 217t293 45l-230 451q-212-33-385-157.5t-272.5-316-99.5-411.5q0-267 146-491zM1732 574q58 150 59.5 310.5t-48.5 306-153 272-246 209.5q-230 133-498 119l405-623q88-131 82.5-290.5t-106.5-277.5zM896 594q125 0 213.5 88.5t88.5 213.5-88.5 213.5-213.5 88.5-213.5-88.5-88.5-213.5 88.5-213.5 213.5-88.5z"
+ }
+ }]
+};
+exports.chrome = chrome;
+var firefox = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M903 1792q-283 0-504.5-150.5t-329.5-398.5q-58-131-67-301t26-332.5 111-312 179-242.5l-11 281q11-14 68-15.5t70 15.5q42-81 160.5-138t234.5-59q-54 45-119.5 148.5t-58.5 163.5q25 8 62.5 13.5t63 7.5 68 4 50.5 3q15 5 9.5 45.5t-30.5 75.5q-5 7-16.5 18.5t-56.5 35.5-101 34l15 189-139-67q-18 43-7.5 81.5t36 66.5 65.5 41.5 81 6.5q51-9 98-34.5t83.5-45 73.5-17.5q61 4 89.5 33t19.5 65q-1 2-2.5 5.5t-8.5 12.5-18 15.5-31.5 10.5-46.5 1q-60 95-144.5 135.5t-209.5 29.5q74 61 162.5 82.5t168.5 6 154.5-52 128-87.5 80.5-104q43-91 39-192.5t-37.5-188.5-78.5-125q87 38 137 79.5t77 112.5q15-170-57.5-343t-209.5-284q265 77 412 279.5t151 517.5q2 127-40.5 255t-123.5 238-189 196-247.5 135.5-288.5 49.5z"
+ }
+ }]
+};
+exports.firefox = firefox;
+var opera = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1493 228q-165-110-359-110-155 0-293 73t-240 200q-75 93-119.5 218t-48.5 266v42q4 141 48.5 266t119.5 218q102 127 240 200t293 73q194 0 359-110-121 108-274.5 168t-322.5 60q-29 0-43-1-175-8-333-82t-272-193-181-281-67-339q0-182 71-348t191-286 286-191 348-71h3q168 1 320.5 60.5t273.5 167.5zM1792 896q0 192-77 362.5t-213 296.5q-104 63-222 63-137 0-255-84 154-56 253.5-233t99.5-405q0-227-99-404t-253-234q119-83 254-83 119 0 226 65 135 125 210.5 295t75.5 361z"
+ }
+ }]
+};
+exports.opera = opera;
+var internetExplorer = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 937q0 56-7 104h-1151q0 146 109.5 244.5t257.5 98.5q99 0 185.5-46.5t136.5-130.5h423q-56 159-170.5 281t-267.5 188.5-321 66.5q-187 0-356-83-228 116-394 116-237 0-237-263 0-115 45-275 17-60 109-229 199-360 475-606-184 79-427 354 63-274 283.5-449.5t501.5-175.5q30 0 45 1 255-117 433-117 64 0 116 13t94.5 40.5 66.5 76.5 24 115q0 116-75 286 101 182 101 390zM1722 297q0-83-53-132t-137-49q-108 0-254 70 121 47 222.5 131.5t170.5 195.5q51-135 51-216zM128 1534q0 86 48.5 132.5t134.5 46.5q115 0 266-83-122-72-213.5-183t-137.5-245q-98 205-98 332zM632 821h728q-5-142-113-237t-251-95q-144 0-251.5 95t-112.5 237z"
+ }
+ }]
+};
+exports.internetExplorer = internetExplorer;
+var television = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1248v-960q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 288v960q0 66-47 113t-113 47h-736v128h352q14 0 23 9t9 23v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-128h-736q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.television = television;
+var tv = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1248v-960q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 288v960q0 66-47 113t-113 47h-736v128h352q14 0 23 9t9 23v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-128h-736q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.tv = tv;
+var contao = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M138 128h197q-70 64-126 149-36 56-59 115t-30 125.5-8.5 120 10.5 132 21 126 28 136.5q4 19 6 28 51 238 81 329 57 171 152 275h-272q-48 0-82-34t-34-82v-1304q0-48 34-82t82-34zM1346 128h308q48 0 82 34t34 82v1304q0 48-34 82t-82 34h-178q212-210 196-565l-469 101q-2 45-12 82t-31 72-59.5 59.5-93.5 36.5q-123 26-199-40-32-27-53-61t-51.5-129-64.5-258q-35-163-45.5-263t-5.5-139 23-77q20-41 62.5-73t102.5-45q45-12 83.5-6.5t67 17 54 35 43 48 34.5 56.5l468-100q-68-175-180-287z"
+ }
+ }]
+};
+exports.contao = contao;
+var fiveHundredPX = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1401 1547l-6 6q-113 113-259 175-154 64-317 64-165 0-317-64-148-63-259-175-113-112-175-258-42-103-54-189-4-28 48-36 51-8 56 20 1 1 1 4 18 90 46 159 50 124 152 226 98 98 226 152 132 56 276 56 143 0 276-56 128-55 225-152l6-6q10-10 25-6 12 3 33 22 36 37 17 58zM929 932l-66 66 63 63q21 21-7 49-17 17-32 17-10 0-19-10l-62-61-66 66q-5 5-15 5-15 0-31-16l-2-2q-18-15-18-29 0-7 8-17l66-65-66-66q-16-16 14-45 18-18 31-18 6 0 13 5l65 66 65-65q18-17 48 13 27 27 11 44zM1400 989q0 118-46 228-45 105-126 186-80 80-187 126t-228 46-228-46-187-126q-82-82-125-186-15-33-15-40h-1q-9-27 43-44 50-16 60 12 37 99 97 167h1v-339-2q3-136 102-232 105-103 253-103 147 0 251 103t104 249q0 147-104.5 251t-250.5 104q-58 0-112-16-28-11-13-61 16-51 44-43l14 3q14 3 33 6t30 3q104 0 176-71.5t72-174.5q0-101-72-171-71-71-175-71-107 0-178 80-64 72-64 160v413q110 67 242 67 96 0 185-36.5t156-103.5 103.5-155 36.5-183q0-198-141-339-140-140-339-140-200 0-340 140-53 53-77 87l-2 2q-8 11-13 15.5t-21.5 9.5-38.5-3q-21-5-36.5-16.5t-15.5-26.5v-680q0-15 10.5-26.5t27.5-11.5h877q30 0 30 55t-30 55h-811v483h1q40-42 102-84t108-61q109-46 231-46 121 0 228 46t187 126q81 81 126 186 46 112 46 229zM1369 408q9 8 9 18t-5.5 18-16.5 21q-26 26-39 26-9 0-16-7-106-91-207-133-128-56-276-56-133 0-262 49-27 10-45-37-9-25-8-38 3-16 16-20 130-57 299-57 164 0 316 64 137 58 235 152z"
+ }
+ }]
+};
+exports.fiveHundredPX = fiveHundredPX;
+var amazon = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1551 1476q15-6 26-3t11 17.5-15 33.5q-13 16-44 43.5t-95.5 68-141 74-188 58-229.5 24.5q-119 0-238-31t-209-76.5-172.5-104-132.5-105-84-87.5q-8-9-10-16.5t1-12 8-7 11.5-2 11.5 4.5q192 117 300 166 389 176 799 90 190-40 391-135zM1758 1361q11 16 2.5 69.5t-28.5 102.5q-34 83-85 124-17 14-26 9t0-24q21-45 44.5-121.5t6.5-98.5q-5-7-15.5-11.5t-27-6-29.5-2.5-35 0-31.5 2-31 3-22.5 2q-6 1-13 1.5t-11 1-8.5 1-7 0.5h-5.5-4.5t-3-0.5-2-1.5l-1.5-3q-6-16 47-40t103-30q46-7 108-1t76 24zM1364 918q0 31 13.5 64t32 58 37.5 46 33 32l13 11-227 224q-40-37-79-75.5t-58-58.5l-19-20q-11-11-25-33-38 59-97.5 102.5t-127.5 63.5-140 23-137.5-21-117.5-65.5-83-113-31-162.5q0-84 28-154t72-116.5 106.5-83 122.5-57 130-34.5 119.5-18.5 99.5-6.5v-127q0-65-21-97-34-53-121-53-6 0-16.5 1t-40.5 12-56 29.5-56 59.5-48 96l-294-27q0-60 22-119t67-113 108-95 151.5-65.5 190.5-24.5q100 0 181 25t129.5 61.5 81 83 45 86 12.5 73.5v589zM692 939q0 86 70 133 66 44 139 22 84-25 114-123 14-45 14-101v-162q-59 2-111 12t-106.5 33.5-87 71-32.5 114.5z"
+ }
+ }]
+};
+exports.amazon = amazon;
+var calendarPlusO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 256q52 0 90 38t38 90v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128zM1152 160v288q0 14 9 23t23 9h64q14 0 23-9t9-23v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM384 160v288q0 14 9 23t23 9h64q14 0 23-9t9-23v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23zM1536 1664v-1024h-1408v1024h1408zM896 1088h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h64q14 0 23 9t9 23v224z"
+ }
+ }]
+};
+exports.calendarPlusO = calendarPlusO;
+var calendarMinusO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 1120v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calendarMinusO = calendarMinusO;
+var calendarTimesO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1111 1385l-46 46q-9 9-22 9t-23-9l-188-189-188 189q-10 9-23 9t-22-9l-46-46q-9-9-9-22t9-23l189-188-189-188q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l188 188 188-188q10-9 23-9t22 9l46 46q9 9 9 22t-9 23l-188 188 188 188q9 10 9 23t-9 22zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calendarTimesO = calendarTimesO;
+var calendarCheckO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1303 964l-512 512q-10 9-23 9t-23-9l-288-288q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l220 220 444-444q10-9 23-9t22 9l46 46q9 9 9 22t-9 23zM128 1664h1408v-1024h-1408v1024zM512 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1280 448v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23zM1664 384v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.calendarCheckO = calendarCheckO;
+var industry = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448 0q26 0 45 19t19 45v891l536-429q17-14 40-14 26 0 45 19t19 45v379l536-429q17-14 40-14 26 0 45 19t19 45v1152q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h384z"
+ }
+ }]
+};
+exports.industry = industry;
+var mapPin = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1088q66 0 128-15v655q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-655q62 15 128 15zM512 0q212 0 362 150t150 362-150 362-362 150-362-150-150-362 150-362 362-150zM512 224q14 0 23-9t9-23-9-23-23-9q-146 0-249 103t-103 249q0 14 9 23t23 9 23-9 9-23q0-119 84.5-203.5t203.5-84.5z"
+ }
+ }]
+};
+exports.mapPin = mapPin;
+var mapSigns = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1745 297q10 10 10 23t-10 23l-141 141q-28 28-68 28h-1344q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h576v-64q0-26 19-45t45-19h128q26 0 45 19t19 45v64h512q40 0 68 28zM768 1216h256v512q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-512zM1600 768q26 0 45 19t19 45v256q0 26-19 45t-45 19h-1344q-40 0-68-28l-141-141q-10-10-10-23t10-23l141-141q28-28 68-28h512v-192h256v192h576z"
+ }
+ }]
+};
+exports.mapSigns = mapSigns;
+var mapO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2020 11q28 20 28 53v1408q0 20-11 36t-29 23l-640 256q-24 11-48 0l-616-246-616 246q-10 5-24 5-19 0-36-11-28-20-28-53v-1408q0-20 11-36t29-23l640-256q24-11 48 0l616 246 616-246q32-13 60 6zM736 146v1270l576 230v-1270zM128 363v1270l544-217v-1270zM1920 1429v-1270l-544 217v1270z"
+ }
+ }]
+};
+exports.mapO = mapO;
+var map = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 0q13 0 22.5 9.5t9.5 22.5v1472q0 20-17 28l-480 256q-7 4-15 4-13 0-22.5-9.5t-9.5-22.5v-1472q0-20 17-28l480-256q7-4 15-4zM1760 0q13 0 22.5 9.5t9.5 22.5v1472q0 20-17 28l-480 256q-7 4-15 4-13 0-22.5-9.5t-9.5-22.5v-1472q0-20 17-28l480-256q7-4 15-4zM640 0q8 0 14 3l512 256q18 10 18 29v1472q0 13-9.5 22.5t-22.5 9.5q-8 0-14-3l-512-256q-18-10-18-29v-1472q0-13 9.5-22.5t22.5-9.5z"
+ }
+ }]
+};
+exports.map = map;
+var commenting = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1408 896q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-110 0-211-18-173 173-435 229-52 10-86 13-12 1-22-6t-13-18q-4-15 20-37 5-5 23.5-21.5t25.5-23.5 23.5-25.5 24-31.5 20.5-37 20-48 14.5-57.5 12.5-72.5q-146-90-229.5-216.5t-83.5-269.5q0-174 120-321.5t326-233 450-85.5 450 85.5 326 233 120 321.5z"
+ }
+ }]
+};
+exports.commenting = commenting;
+var commentingO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1024 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM896 384q-204 0-381.5 69.5t-282 187.5-104.5 255q0 112 71.5 213.5t201.5 175.5l87 50-27 96q-24 91-70 172 152-63 275-171l43-38 57 6q69 8 130 8 204 0 381.5-69.5t282-187.5 104.5-255-104.5-255-282-187.5-381.5-69.5zM1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22h-5q-15 0-27-10.5t-16-27.5v-1q-3-4-0.5-12t2-10 4.5-9.5l6-9t7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-130 71-248.5t191-204.5 286-136.5 348-50.5 348 50.5 286 136.5 191 204.5 71 248.5z"
+ }
+ }]
+};
+exports.commentingO = commentingO;
+var houzz = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1191l512-295v591l-512 296v-592zM0 896v591l512-296zM512 9v591l-512 296v-591zM512 600l512-295v591z"
+ }
+ }]
+};
+exports.houzz = houzz;
+var vimeo = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1709 518q-10 236-332 651-333 431-562 431-142 0-240-263-44-160-132-482-72-262-157-262-18 0-127 76l-77-98q24-21 108-96.5t130-115.5q156-138 241-146 95-9 153 55.5t81 203.5q44 287 66 373 55 249 120 249 51 0 154-161 101-161 109-246 13-139-109-139-57 0-121 26 120-393 459-382 251 8 236 326z"
+ }
+ }]
+};
+exports.vimeo = vimeo;
+var blackTie = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 128h1536v1536h-1536v-1536zM1085 1243l-221-631 221-297h-634l221 297-221 631 317 304z"
+ }
+ }]
+};
+exports.blackTie = blackTie;
+var fonticons = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 128h1536v1536h-1536v-1536zM908 448l-12 33 75 83-31 114 25 25 107-57 107 57 25-25-31-114 75-83-12-33h-95l-53-96h-32l-53 96h-95zM641 611q32 0 44.5 16t11.5 63l174-21q0-55-17.5-92.5t-50.5-56-69-25.5-85-7q-133 0-199 57.5t-66 182.5v72h-96v128h76q20 0 20 8v382q0 14-5 20t-18 7l-73 7v88h448v-86l-149-14q-6-1-8.5-1.5t-3.5-2.5-0.5-4 1-7 0.5-10v-387h191l38-128h-231q-6 0-2-6t4-9v-80q0-27 1.5-40.5t7.5-28 19.5-20 36.5-5.5zM1248 1440v-86l-54-9q-7-1-9.5-2.5t-2.5-3 1-7.5 1-12v-520h-275l-23 101 83 22q23 7 23 27v370q0 14-6 18.5t-20 6.5l-70 9v86h352z"
+ }
+ }]
+};
+exports.fonticons = fonticons;
+var redditAlien = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 846q0 58-29.5 105.5t-79.5 72.5q12 46 12 96 0 155-106.5 287t-290.5 208.5-400 76.5-399.5-76.5-290-208.5-106.5-287q0-47 11-94-51-25-82-73.5t-31-106.5q0-82 58-140.5t141-58.5q85 0 145 63 218-152 515-162l116-521q3-13 15-21t26-5l369 81q18-37 54-59.5t79-22.5q62 0 106 43.5t44 105.5-44 106-106 44-105.5-43.5-43.5-105.5l-334-74-104 472q300 9 519 160 58-61 143-61 83 0 141 58.5t58 140.5zM418 1045q0 62 43.5 106t105.5 44 106-44 44-106-44-105.5-106-43.5q-61 0-105 44t-44 105zM1228 1400q11-11 11-26t-11-26q-10-10-25-10t-26 10q-41 42-121 62t-160 20-160-20-121-62q-11-10-26-10t-25 10q-11 10-11 25.5t11 26.5q43 43 118.5 68t122.5 29.5 91 4.5 91-4.5 122.5-29.5 118.5-68zM1225 1195q62 0 105.5-44t43.5-106q0-61-44-105t-105-44q-62 0-106 43.5t-44 105.5 44 106 106 44z"
+ }
+ }]
+};
+exports.redditAlien = redditAlien;
+var edge = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M69 795h1q16-126 58.5-241.5t115-217 167.5-176 223.5-117.5 276.5-43q231 0 414 105.5t294 303.5q104 187 104 442v188h-1125q1 111 53.5 192.5t136.5 122.5 189.5 57 213 3 208-46.5 173.5-84.5v377q-92 55-229.5 92t-312.5 38-316-53q-189-73-311.5-249t-124.5-372q-3-242 111-412t325-268q-48 60-78 125.5t-46 159.5h635q8-77-8-140t-47-101.5-70.5-66.5-80.5-41-75-20.5-56-8.5l-22-1q-135 5-259.5 44.5t-223.5 104.5-176 140.5-138 163.5z"
+ }
+ }]
+};
+exports.edge = edge;
+var creditCardAlt = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 1504v-608h2304v608q0 66-47 113t-113 47h-1984q-66 0-113-47t-47-113zM640 1280v128h384v-128h-384zM256 1280v128h256v-128h-256zM2144 128q66 0 113 47t47 113v224h-2304v-224q0-66 47-113t113-47h1984z"
+ }
+ }]
+};
+exports.creditCardAlt = creditCardAlt;
+var codiepie = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1584 1290l-218-111q-74 120-196.5 189t-263.5 69q-147 0-271-72t-196-196-72-270q0-110 42.5-209.5t115-172 172-115 209.5-42.5q131 0 247.5 60.5t192.5 168.5l215-125q-110-169-286.5-265t-378.5-96q-161 0-308 63t-253 169-169 253-63 308 63 308 169 253 253 169 308 63q213 0 397.5-107t290.5-292zM1030 893l693 352q-116 253-334.5 400t-492.5 147q-182 0-348-71t-286-191-191-286-71-348 71-348 191-286 286-191 348-71q260 0 470.5 133.5t335.5 366.5zM1543 896h-39v160h-96v-352h136q32 0 54.5 20t28.5 48 1 56-27.5 48-57.5 20z"
+ }
+ }]
+};
+exports.codiepie = codiepie;
+var modx = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1427 709l-614-386 92-151h855zM405 974l-184-116v-858l1183 743zM1424 839l147 95v858l-532-335zM1387 818l-500 802h-855l356-571z"
+ }
+ }]
+};
+exports.modx = modx;
+var fortAwesome = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1008v-224q0-16-16-16h-96q-16 0-16 16v224q0 16 16 16h96q16 0 16-16zM1152 1008v-224q0-16-16-16h-96q-16 0-16 16v224q0 16 16 16h96q16 0 16-16zM1664 1040v752h-640v-320q0-80-56-136t-136-56-136 56-56 136v320h-640v-752q0-16 16-16h96q16 0 16 16v112h128v-624q0-16 16-16h96q16 0 16 16v112h128v-112q0-16 16-16h96q16 0 16 16v112h128v-112q0-6 2.5-9.5t8.5-5 9.5-2 11.5 0 9 0.5v-391q-32-15-32-50 0-23 16.5-39t38.5-16 38.5 16 16.5 39q0 35-32 50v17q45-10 83-10 21 0 59.5 7.5t54.5 7.5q17 0 47-7.5t37-7.5q16 0 16 16v210q0 15-35 21.5t-62 6.5q-18 0-54.5-7.5t-55.5-7.5q-40 0-90 12v133q1 0 9-0.5t11.5 0 9.5 2 8.5 5 2.5 9.5v112h128v-112q0-16 16-16h96q16 0 16 16v112h128v-112q0-16 16-16h96q16 0 16 16v624h128v-112q0-16 16-16h96q16 0 16 16z"
+ }
+ }]
+};
+exports.fortAwesome = fortAwesome;
+var usb = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2288 805q16 8 16 27t-16 27l-320 192q-8 5-16 5-9 0-16-4-16-10-16-28v-128h-858q37 58 83 165 16 37 24.5 55t24 49 27 47 27 34 31.5 26 33 8h96v-96q0-14 9-23t23-9h320q14 0 23 9t9 23v320q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-96h-96q-32 0-61-10t-51-23.5-45-40.5-37-46-33.5-57-28.5-57.5-28-60.5q-23-53-37-81.5t-36-65-44.5-53.5-46.5-17h-360q-22 84-91 138t-157 54q-106 0-181-75t-75-181 75-181 181-75q88 0 157 54t91 138h104q24 0 46.5-17t44.5-53.5 36-65 37-81.5q19-41 28-60.5t28.5-57.5 33.5-57 37-46 45-40.5 51-23.5 61-10h107q21-57 70-92.5t111-35.5q80 0 136 56t56 136-56 136-136 56q-62 0-111-35.5t-70-92.5h-107q-17 0-33 8t-31.5 26-27 34-27 47-24 49-24.5 55q-46 107-83 165h1114v-128q0-18 16-28t32 1z"
+ }
+ }]
+};
+exports.usb = usb;
+var productHunt = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1150 762q0 56-39.5 95t-95.5 39h-253v-269h253q56 0 95.5 39.5t39.5 95.5zM1329 762q0-130-91.5-222t-222.5-92h-433v896h180v-269h253q130 0 222-91.5t92-221.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.productHunt = productHunt;
+var mixcloud = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1645 1098q0-59-34-106.5t-87-68.5q-7 45-23 92-7 24-27.5 38t-44.5 14q-12 0-24-3-31-10-45-38.5t-4-58.5q23-71 23-143 0-123-61-227.5t-166-165.5-228-61q-134 0-247 73t-167 194q108 28 188 106 22 23 22 55t-22 54-54 22-55-22q-75-75-180-75-106 0-181 74.5t-75 180.5 75 180.5 181 74.5h1046q79 0 134.5-55.5t55.5-133.5zM1798 1098q0 142-100.5 242t-242.5 100h-1046q-169 0-289-119.5t-120-288.5q0-153 100-267t249-136q62-184 221-298t354-114q235 0 408.5 158.5t196.5 389.5q116 25 192.5 118.5t76.5 214.5zM2048 1098q0 175-97 319-23 33-64 33-24 0-43-13-26-17-32-48.5t12-57.5q71-104 71-233t-71-233q-18-26-12-57t32-49 57.5-11.5 49.5 32.5q97 142 97 318zM2304 1098q0 244-134 443-23 34-64 34-23 0-42-13-26-18-32.5-49t11.5-57q108-164 108-358 0-195-108-357-18-26-11.5-57.5t32.5-48.5q26-18 57-12t49 33q134 198 134 442z"
+ }
+ }]
+};
+exports.mixcloud = mixcloud;
+var scribd = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1500 1549q0 89-63 152.5t-153 63.5-153.5-63.5-63.5-152.5q0-90 63.5-153.5t153.5-63.5 153 63.5 63 153.5zM1267 1268q-115 15-192.5 102.5t-77.5 205.5q0 74 33 138-146 78-379 78-109 0-201-21t-153.5-54.5-110.5-76.5-76-85-44.5-83-23.5-66.5-6-39.5q0-19 4.5-42.5t18.5-56 36.5-58 64-43.5 94.5-18 94 17.5 63 41 35.5 53 17.5 49 4 33.5q0 34-23 81 28 27 82 42t93 17l40 1q115 0 190-51t75-133q0-26-9-48.5t-31.5-44.5-49.5-41-74-44-93.5-47.5-119.5-56.5q-28-13-43-20-116-55-187-100t-122.5-102-72-125.5-20.5-162.5q0-78 20.5-150t66-137.5 112.5-114 166.5-77 221.5-28.5q120 0 220 26t164.5 67 109.5 94 64 105.5 19 103.5q0 46-15 82.5t-36.5 58-48.5 36-49 19.5-39 5h-8-32t-39-5-44-14-41-28-37-46-24-70.5-10-97.5q-15-16-59-25.5t-81-10.5l-37-1q-68 0-117.5 31t-70.5 70-21 76q0 24 5 43t24 46 53 51 97 53.5 150 58.5q76 25 138.5 53.5t109 55.5 83 59 60.5 59.5 41 62.5 26.5 62 14.5 63.5 6 62 1 62.5z"
+ }
+ }]
+};
+exports.scribd = scribd;
+var pauseCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 1184v-576q0-14-9-23t-23-9h-256q-14 0-23 9t-9 23v576q0 14 9 23t23 9h256q14 0 23-9t9-23zM1152 1184v-576q0-14-9-23t-23-9h-256q-14 0-23 9t-9 23v576q0 14 9 23t23 9h256q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.pauseCircle = pauseCircle;
+var pauseCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM768 1440q148 0 273-73t198-198 73-273-73-273-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73zM864 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23v576q0 14-9 23t-23 9h-192zM480 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23v576q0 14-9 23t-23 9h-192z"
+ }
+ }]
+};
+exports.pauseCircleO = pauseCircleO;
+var stopCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 1184v-576q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.stopCircle = stopCircle;
+var stopCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM768 1440q148 0 273-73t198-198 73-273-73-273-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73zM480 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h576q14 0 23 9t9 23v576q0 14-9 23t-23 9h-576z"
+ }
+ }]
+};
+exports.stopCircleO = stopCircleO;
+var shoppingBag = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1757 1408l35 313q3 28-16 50-19 21-48 21h-1664q-29 0-48-21-19-22-16-50l35-313h1722zM1664 569l86 775h-1708l86-775q3-24 21-40.5t43-16.5h256v128q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5v-128h384v128q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5v-128h256q25 0 43 16.5t21 40.5zM1280 384v256q0 26-19 45t-45 19-45-19-19-45v-256q0-106-75-181t-181-75-181 75-75 181v256q0 26-19 45t-45 19-45-19-19-45v-256q0-159 112.5-271.5t271.5-112.5 271.5 112.5 112.5 271.5z"
+ }
+ }]
+};
+exports.shoppingBag = shoppingBag;
+var shoppingBasket = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 768q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5h-15l-115 662q-8 46-44 76t-82 30h-1280q-46 0-82-30t-44-76l-115-662h-15q-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5h1792zM485 1568q26-2 43.5-22.5t15.5-46.5l-32-416q-2-26-22.5-43.5t-46.5-15.5-43.5 22.5-15.5 46.5l32 416q2 25 20.5 42t43.5 17h5zM896 1504v-416q0-26-19-45t-45-19-45 19-19 45v416q0 26 19 45t45 19 45-19 19-45zM1280 1504v-416q0-26-19-45t-45-19-45 19-19 45v416q0 26 19 45t45 19 45-19 19-45zM1632 1509l32-416q2-26-15.5-46.5t-43.5-22.5-46.5 15.5-22.5 43.5l-32 416q-2 26 15.5 46.5t43.5 22.5h5q25 0 43.5-17t20.5-42zM476 292l-93 412h-132l101-441q19-88 89-143.5t160-55.5h167q0-26 19-45t45-19h384q26 0 45 19t19 45h167q90 0 160 55.5t89 143.5l101 441h-132l-93-412q-11-44-45.5-72t-79.5-28h-167q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45h-167q-45 0-79.5 28t-45.5 72z"
+ }
+ }]
+};
+exports.shoppingBasket = shoppingBasket;
+var hashtag = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M991 1024l64-256h-254l-64 256h254zM1759 520l-56 224q-7 24-31 24h-327l-64 256h311q15 0 25 12 10 14 6 28l-56 224q-5 24-31 24h-327l-81 328q-7 24-31 24h-224q-16 0-26-12-9-12-6-28l78-312h-254l-81 328q-7 24-31 24h-225q-15 0-25-12-9-12-6-28l78-312h-311q-15 0-25-12-9-12-6-28l56-224q7-24 31-24h327l64-256h-311q-15 0-25-12-10-14-6-28l56-224q5-24 31-24h327l81-328q7-24 32-24h224q15 0 25 12 9 12 6 28l-78 312h254l81-328q7-24 32-24h224q15 0 25 12 9 12 6 28l-78 312h311q15 0 25 12 9 12 6 28z"
+ }
+ }]
+};
+exports.hashtag = hashtag;
+var bluetooth = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M841 1053l148 148-149 149zM840 442l149 149-148 148zM710 1666l464-464-306-306 306-306-464-464v611l-255-255-93 93 320 321-320 321 93 93 255-255v611zM1429 896q0 209-32 365.5t-87.5 257-140.5 162.5-181.5 86.5-219.5 24.5-219.5-24.5-181.5-86.5-140.5-162.5-87.5-257-32-365.5 32-365.5 87.5-257 140.5-162.5 181.5-86.5 219.5-24.5 219.5 24.5 181.5 86.5 140.5 162.5 87.5 257 32 365.5z"
+ }
+ }]
+};
+exports.bluetooth = bluetooth;
+var bluetoothB = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M596 1423l173-172-173-172v344zM596 713l173-172-173-172v344zM628 896l356 356-539 540v-711l-297 296-108-108 372-373-372-373 108-108 297 296v-711l539 540z"
+ }
+ }]
+};
+exports.bluetoothB = bluetoothB;
+var percent = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1280q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM512 512q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM1536 1280q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1440 192q0 20-13 38l-1056 1408q-19 26-51 26h-160q-26 0-45-19t-19-45q0-20 13-38l1056-1408q19-26 51-26h160q26 0 45 19t19 45zM768 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z"
+ }
+ }]
+};
+exports.percent = percent;
+var gitlab = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M104 706l792 1015-868-630q-18-13-25-34.5t0-42.5l101-308v0zM566 706h660l-330 1015v0zM368 94l198 612h-462l198-612q8-23 33-23t33 23zM1688 706l101 308q7 21 0 42.5t-25 34.5l-868 630 792-1015v0zM1688 706h-462l198-612q8-23 33-23t33 23z"
+ }
+ }]
+};
+exports.gitlab = gitlab;
+var wpbeginner = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 832h160v-224h-160v224zM1221 1164v-92q-104 36-243 38-135 1-259.5-46.5t-220.5-122.5l1 96q88 80 212 128.5t272 47.5q129 0 238-49zM640 832h640v-224h-640v224zM1792 800q0 187-99 352 89 102 89 229 0 157-129.5 268t-313.5 111q-122 0-225-52.5t-161-140.5q-19 1-57 1t-57-1q-58 88-161 140.5t-225 52.5q-184 0-313.5-111t-129.5-268q0-127 89-229-99-165-99-352 0-209 120-385.5t326.5-279.5 449.5-103 449.5 103 326.5 279.5 120 385.5z"
+ }
+ }]
+};
+exports.wpbeginner = wpbeginner;
+var wpforms = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M515 911v128h-252v-128h252zM515 656v127h-252v-127h252zM1273 1167v128h-341v-128h341zM1273 911v128h-672v-128h672zM1273 656v127h-672v-127h672zM1408 1516v-1240q0-8-6-14t-14-6h-32l-378 256-210-171-210 171-378-256h-32q-8 0-14 6t-6 14v1240q0 8 6 14t14 6h1240q8 0 14-6t6-14zM553 406l185-150h-406zM983 406l221-150h-406zM1536 276v1240q0 62-43 105t-105 43h-1240q-62 0-105-43t-43-105v-1240q0-62 43-105t105-43h1240q62 0 105 43t43 105z"
+ }
+ }]
+};
+exports.wpforms = wpforms;
+var envira = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 816q-104-196-160-278-139-202-347-318-34-19-70-36-89-40-94-32t34 38l39 31q62 43 112.5 93.5t94.5 116.5 70.5 113 70.5 131q9 17 13 25 44 84 84 153t98 154 115.5 150 131 123.5 148.5 90.5q153 66 154 60 1-3-49-37-53-36-81-57-77-58-179-211t-185-310zM549 1359q-76-60-132.5-125t-98-143.5-71-154.5-58.5-186-52-209-60.5-252-76.5-289q273 0 497.5 36t379 92 271 144.5 185.5 172.5 110 198.5 56 199.5 12.5 198.5-9.5 173-20 143.5-13 107l323 327h-104l-281-285q-22 2-91.5 14t-121.5 19-138 6-160.5-17-167.5-59-179-111z"
+ }
+ }]
+};
+exports.envira = envira;
+var universalAccess = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1374 657q-6-26-28.5-39.5t-48.5-7.5q-261 62-401 62t-401-62q-26-6-48.5 7.5t-28.5 39.5 7.5 48.5 39.5 28.5q194 46 303 58-2 158-15.5 269t-26.5 155.5-41 115.5l-9 21q-10 25 1 49t36 34q9 4 23 4 44 0 60-41l8-20q54-139 71-259h42q17 120 71 259l8 20q16 41 60 41 14 0 23-4 25-10 36-34t1-49l-9-21q-28-71-41-115.5t-26.5-155.5-15.5-269q109-12 303-58 26-6 39.5-28.5t7.5-48.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1600 896q0 143-55.5 273.5t-150 225-225 150-273.5 55.5-273.5-55.5-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5zM896 128q-156 0-298 61t-245 164-164 245-61 298 61 298 164 245 245 164 298 61 298-61 245-164 164-245 61-298-61-298-164-245-245-164-298-61zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.universalAccess = universalAccess;
+var wheelchairAlt = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1438 813q34 35 29 82l-44 551q-4 42-34.5 70t-71.5 28q-6 0-9-1-44-3-72.5-36.5t-25.5-77.5l35-429-143 8q55 113 55 240 0 216-148 372l-137-137q91-101 91-235 0-145-102.5-248t-247.5-103q-134 0-236 92l-137-138q120-114 284-141l264-300-149-87-181 161q-33 30-77 27.5t-73-35.5-26.5-77 34.5-73l239-213q26-23 60-26.5t64 14.5l488 283q36 21 48 68 17 67-26 117l-205 232 371-20q49-3 83 32zM1240 356q-74 0-126-52t-52-126 52-126 126-52 126.5 52 52.5 126-52.5 126-126.5 52zM613 1598q106 0 196-61l139 139q-146 116-335 116-148 0-273.5-73t-198.5-198-73-273q0-188 116-336l139 139q-60 88-60 197 0 145 102.5 247.5t247.5 102.5z"
+ }
+ }]
+};
+exports.wheelchairAlt = wheelchairAlt;
+var questionCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M880 1200v160q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-160q0-14 9-23t23-9h160q14 0 23 9t9 23zM1136 704q0 50-15 90t-45.5 69-52 44-59.5 36q-32 18-46.5 28t-26 24-11.5 29v32q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-68q0-35 10.5-64.5t24-47.5 39-35.5 41-25.5 44.5-21q53-25 75-43t22-49q0-42-43.5-71.5t-95.5-29.5q-56 0-95 27-29 20-80 83-9 12-25 12-11 0-19-6l-108-82q-10-7-12-20t5-23q122-192 349-192 129 0 238.5 89.5t109.5 214.5zM768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.questionCircleO = questionCircleO;
+var blind = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M366 311q-64 0-110-45.5t-46-110.5q0-64 46-109.5t110-45.5 109.5 45.5 45.5 109.5q0 65-45.5 110.5t-109.5 45.5zM917 953q0 50-30 67.5t-63.5 6.5-47.5-34l-367-438q-7-12-14-15.5t-11-1.5l-3 3q-7 8 4 21l122 139 1 354-161 457q-67 192-92 234-15 26-28 32-50 26-103 1-29-13-41.5-43t-9.5-57q2-17 197-618l5-416-85 164 35 222q4 24-1 42t-14 27.5-19 16-17 7.5l-7 2q-19 3-34.5-3t-24-16-14-22-7.5-19.5-2-9.5l-46-299 211-381q23-34 113-34 75 0 107 40l424 521q7 5 14 17l3 3-1 1q7 13 7 29zM514 1103q43 113 88.5 225t69.5 168l24 55q36 93 42 125 11 70-36 97-35 22-66 16t-51-22-29-35h-1q-6-16-8-25l-124-351zM1338 1695q31 49 31 57 0 5-3 7-9 5-14.5-0.5t-15.5-26-16-30.5q-114-172-423-661 3 1 7-1t7-4l3-2q11-9 11-17z"
+ }
+ }]
+};
+exports.blind = blind;
+var audioDescription = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M504 994h171l-1-265zM1530 895q0-87-50.5-140t-146.5-53h-54v388h52q91 0 145-57t54-138zM956 518l1 756q0 14-9.5 24t-23.5 10h-216q-14 0-23.5-10t-9.5-24v-62h-291l-55 81q-10 15-28 15h-267q-21 0-30.5-18t3.5-35l556-757q9-14 27-14h332q14 0 24 10t10 24zM1783 895q0 193-125.5 303t-324.5 110h-270q-14 0-24-10t-10-24v-756q0-14 10-24t24-10h268q200 0 326 109t126 302zM1939 896q0 11-0.5 29t-8 71.5-21.5 102-44.5 108-73.5 102.5h-51q38-45 66.5-104.5t41.5-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-20-91.5-41-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 10.5 70.5zM2123 896q0 11-0.5 29t-8 71.5-21.5 102-45 108-74 102.5h-51q38-45 66.5-104.5t41.5-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-19.5-91.5-40.5-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 10.5 70.5zM2304 896q0 11-0.5 29t-8 71.5-21.5 102-44.5 108-73.5 102.5h-51q38-45 66-104.5t41-112 21-98 9-72.5l1-27q0-8-0.5-22.5t-7.5-60-19.5-91.5-40.5-111.5-66-124.5h43q41 47 72 107t45.5 111.5 23 96 9.5 70.5z"
+ }
+ }]
+};
+exports.audioDescription = audioDescription;
+var volumeControlPhone = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M617 1689q0-11-13-58t-31-107-20-69q-1-4-5-26.5t-8.5-36-13.5-21.5q-15-14-51-14-23 0-70 5.5t-71 5.5q-34 0-47-11-6-5-11-15.5t-7.5-20-6.5-24-5-18.5q-37-128-37-255t37-255q1-4 5-18.5t6.5-24 7.5-20 11-15.5q13-11 47-11 24 0 71 5.5t70 5.5q36 0 51-14 9-8 13.5-21.5t8.5-36 5-26.5q2-9 20-69t31-107 13-58q0-22-43.5-52.5t-75.5-42.5q-20-8-45-8-34 0-98 18-57 17-96.5 40.5t-71 66-46 70-45.5 94.5q-6 12-9 19-49 107-68 216t-19 244 19 244 68 216q56 122 83 161 63 91 179 127l6 2q64 18 98 18 25 0 45-8 32-12 75.5-42.5t43.5-52.5zM776 776q-26 0-45-19t-19-45.5 19-45.5q37-37 37-90 0-52-37-91-19-19-19-45t19-45 45-19 45 19q75 75 75 181t-75 181q-21 19-45 19zM957 957q-27 0-45-19-19-19-19-45t19-45q112-114 112-272t-112-272q-19-19-19-45t19-45 45-19 45 19q150 150 150 362t-150 362q-18 19-45 19zM1138 1138q-27 0-45-19-19-19-19-45t19-45q90-91 138.5-208t48.5-245-48.5-245-138.5-208q-19-19-19-45t19-45 45-19 45 19q109 109 167 249t58 294-58 294-167 249q-18 19-45 19z"
+ }
+ }]
+};
+exports.volumeControlPhone = volumeControlPhone;
+var braille = {
+ "viewBox": "0 0 2176 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM704 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM704 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1472 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 1184q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1472 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 672q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM1984 160q-66 0-113 47t-47 113 47 113 113 47 113-47 47-113-47-113-113-47zM384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 832q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM2176 320q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136z"
+ }
+ }]
+};
+exports.braille = braille;
+var assistiveListeningSystems = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128 1728q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM320 1536q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM365 1171l256 256-90 90-256-256zM704 1152q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1411 832q0 59-11.5 108.5t-37.5 93.5-44 67.5-53 64.5q-31 35-45.5 54t-33.5 50-26.5 64-7.5 74q0 159-112.5 271.5t-271.5 112.5q-26 0-45-19t-19-45 19-45 45-19q106 0 181-75t75-181q0-57 11.5-105.5t37-91 43.5-66.5 52-63q40-46 59.5-72t37.5-74.5 18-103.5q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5q0 26-19 45t-45 19-45-19-19-45q0-117 45.5-223.5t123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5zM896 960q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1184 832q0 26-19 45t-45 19-45-19-19-45q0-93-65.5-158.5t-158.5-65.5q-92 0-158 65.5t-66 158.5q0 26-19 45t-45 19-45-19-19-45q0-146 103-249t249-103 249 103 103 249zM1578 543q10 25-1 49t-36 34q-9 4-23 4-19 0-35.5-11t-23.5-30q-68-178-224-295-21-16-25-42t12-47q17-21 43-25t47 12q183 137 266 351zM1788 462q9 25-1.5 49t-35.5 34q-11 4-23 4-44 0-60-41-92-238-297-393-22-16-25.5-42t12.5-47q16-22 42-25.5t47 12.5q235 175 341 449z"
+ }
+ }]
+};
+exports.assistiveListeningSystems = assistiveListeningSystems;
+var americanSignLanguageInterpreting = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1032 960q-59-2-84-55-17-34-48-53.5t-68-19.5q-53 0-90.5 37.5t-37.5 90.5q0 56 36 89l10 8q34 31 82 31 37 0 68-19.5t48-53.5q25-53 84-55zM1600 832q0-56-36-89l-10-8q-34-31-82-31-37 0-68 19.5t-48 53.5q-25 53-84 55 59 2 84 55 17 34 48 53.5t68 19.5q53 0 90.5-37.5t37.5-90.5zM1174 611q-17 35-55 48t-73-4q-62-31-134-31-51 0-99 17 3 0 9.5-0.5t9.5-0.5q92 0 170.5 50t118.5 133q17 36 3.5 73.5t-49.5 54.5q-18 9-39 9 21 0 39 9 36 17 49.5 54.5t-3.5 73.5q-40 83-118.5 133t-170.5 50h-6q-16-2-44-4l-290-27-239 120q-14 7-29 7-40 0-57-35l-160-320q-11-23-4-47.5t29-37.5l209-119 148-267q17-155 91.5-291.5t195.5-236.5q31-25 70.5-21.5t64.5 34.5 21.5 70-34.5 65q-70 59-117 128 123-84 267-101 40-5 71.5 19t35.5 64q5 40-19 71.5t-64 35.5q-84 10-159 55 46-10 99-10 115 0 218 50 36 18 49 55.5t-5 73.5zM2137 451l160 320q11 23 4 47.5t-29 37.5l-209 119-148 267q-17 155-91.5 291.5t-195.5 236.5q-26 22-61 22-45 0-74-35-25-31-21.5-70t34.5-65q70-59 117-128-123 84-267 101-4 1-12 1-36 0-63.5-24t-31.5-60q-5-40 19-71.5t64-35.5q84-10 159-55-46 10-99 10-115 0-218-50-36-18-49-55.5t5-73.5q17-35 55-48t73 4q62 31 134 31 51 0 99-17-3 0-9.5 0.5t-9.5 0.5q-92 0-170.5-50t-118.5-133q-17-36-3.5-73.5t49.5-54.5q18-9 39-9-21 0-39-9-36-17-49.5-54.5t3.5-73.5q40-83 118.5-133t170.5-50h6 1q14 2 42 4l291 27 239-120q14-7 29-7 40 0 57 35z"
+ }
+ }]
+};
+exports.americanSignLanguageInterpreting = americanSignLanguageInterpreting;
+var aslInterpreting = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1032 960q-59-2-84-55-17-34-48-53.5t-68-19.5q-53 0-90.5 37.5t-37.5 90.5q0 56 36 89l10 8q34 31 82 31 37 0 68-19.5t48-53.5q25-53 84-55zM1600 832q0-56-36-89l-10-8q-34-31-82-31-37 0-68 19.5t-48 53.5q-25 53-84 55 59 2 84 55 17 34 48 53.5t68 19.5q53 0 90.5-37.5t37.5-90.5zM1174 611q-17 35-55 48t-73-4q-62-31-134-31-51 0-99 17 3 0 9.5-0.5t9.5-0.5q92 0 170.5 50t118.5 133q17 36 3.5 73.5t-49.5 54.5q-18 9-39 9 21 0 39 9 36 17 49.5 54.5t-3.5 73.5q-40 83-118.5 133t-170.5 50h-6q-16-2-44-4l-290-27-239 120q-14 7-29 7-40 0-57-35l-160-320q-11-23-4-47.5t29-37.5l209-119 148-267q17-155 91.5-291.5t195.5-236.5q31-25 70.5-21.5t64.5 34.5 21.5 70-34.5 65q-70 59-117 128 123-84 267-101 40-5 71.5 19t35.5 64q5 40-19 71.5t-64 35.5q-84 10-159 55 46-10 99-10 115 0 218 50 36 18 49 55.5t-5 73.5zM2137 451l160 320q11 23 4 47.5t-29 37.5l-209 119-148 267q-17 155-91.5 291.5t-195.5 236.5q-26 22-61 22-45 0-74-35-25-31-21.5-70t34.5-65q70-59 117-128-123 84-267 101-4 1-12 1-36 0-63.5-24t-31.5-60q-5-40 19-71.5t64-35.5q84-10 159-55-46 10-99 10-115 0-218-50-36-18-49-55.5t5-73.5q17-35 55-48t73 4q62 31 134 31 51 0 99-17-3 0-9.5 0.5t-9.5 0.5q-92 0-170.5-50t-118.5-133q-17-36-3.5-73.5t49.5-54.5q18-9 39-9-21 0-39-9-36-17-49.5-54.5t3.5-73.5q40-83 118.5-133t170.5-50h6 1q14 2 42 4l291 27 239-120q14-7 29-7 40 0 57 35z"
+ }
+ }]
+};
+exports.aslInterpreting = aslInterpreting;
+var deaf = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z"
+ }
+ }]
+};
+exports.deaf = deaf;
+var deafness = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z"
+ }
+ }]
+};
+exports.deafness = deafness;
+var hardOfHearing = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1056 832q0 26 19 45t45 19 45-19 19-45q0-146-103-249t-249-103-249 103-103 249q0 26 19 45t45 19 45-19 19-45q0-93 66-158.5t158-65.5 158 65.5 66 158.5zM835 256q-117 0-223.5 45.5t-184 123-123 184-45.5 223.5q0 26 19 45t45 19 45-19 19-45q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 55-18 103.5t-37.5 74.5-59.5 72q-34 39-52 63t-43.5 66.5-37 91-11.5 105.5q0 106-75 181t-181 75q-26 0-45 19t-19 45 19 45 45 19q159 0 271.5-112.5t112.5-271.5q0-41 7.5-74t26.5-64 33.5-50 45.5-54q35-41 53-64.5t44-67.5 37.5-93.5 11.5-108.5q0-117-45.5-223.5t-123-184-184-123-223.5-45.5zM591 975l226 226-579 579q-12 12-29 12t-29-12l-168-168q-12-12-12-29t12-29zM1612 12l168 168q12 12 12 29t-12 30l-233 233-26 25-71 71q-66-153-195-258l91-91 207-207q13-12 30-12t29 12z"
+ }
+ }]
+};
+exports.hardOfHearing = hardOfHearing;
+var glide = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M866 515q0 27-13 94-11 50-31.5 150t-30.5 150q-2 11-4.5 12.5t-13.5 2.5q-20 2-31 2-58 0-84-49.5t-26-113.5q0-88 35-174t103-124q28-14 51-14 28 0 36.5 16.5t8.5 47.5zM1352 939q0-14-39-75.5t-52-66.5q-21-8-34-8-91 0-226 77l-2-2q3-22 27.5-135t24.5-178q0-233-242-233-24 0-68 6-94 17-168.5 89.5t-111.5 166.5-37 189q0 146 80.5 225t227.5 79q25 0 25 3t-1 5q-4 34-26 117-14 52-51.5 101t-82.5 49q-42 0-42-47 0-24 10.5-47.5t25-39.5 29.5-28.5 26-20 11-8.5q0-3-7-10-24-22-58.5-36.5t-65.5-14.5q-35 0-63.5 34t-41 75-12.5 75q0 88 51.5 142t138.5 54q82 0 155-53t117.5-126 65.5-153q6-22 15.5-66.5t14.5-66.5q3-12 14-18 118-60 227-60 48 0 127 18 1 1 4 1 5 0 9.5-4.5t4.5-8.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.glide = glide;
+var glideG = {
+ "viewBox": "0 0 1535 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M744 305q0-24-2-38.5t-8.5-30-21-23-37.5-7.5q-39 0-78 23-105 58-159 190.5t-54 269.5q0 44 8.5 85.5t26.5 80.5 52.5 62.5 81.5 23.5q4 0 18 0.5t20 0 16-3 15-8.5 7-16q16-77 48-231.5t48-231.5q19-91 19-146zM1498 961q0 7-7.5 13.5t-15.5 6.5l-6-1q-22-3-62-11t-72-12.5-63-4.5q-167 0-351 93-15 8-21 27-10 36-24.5 105.5t-22.5 100.5q-23 91-70 179.5t-112.5 164.5-154.5 123-185 47q-135 0-214.5-83.5t-79.5-219.5q0-53 19.5-117t63-116.5 97.5-52.5q38 0 120 33.5t83 61.5q0 1-16.5 12.5t-39.5 31-46 44.5-39 61-16 74q0 33 16.5 53t48.5 20q45 0 85-31.5t66.5-78 48-105.5 32.5-107 16-90v-9q0-2-3.5-3.5t-8.5-1.5h-10t-10 0.5-6 0.5q-227 0-352-122.5t-125-348.5q0-108 34.5-221t96-210 156-167.5 204.5-89.5q52-9 106-9 374 0 374 360 0 98-38 273t-43 211l3 3q101-57 182.5-88t167.5-31q22 0 53 13 19 7 80 102.5t61 116.5z"
+ }
+ }]
+};
+exports.glideG = glideG;
+var signLanguage = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M831 673q32 0 59 18l222 148q61 40 110 97l146 170q40 46 29 106l-72 413q-6 32-29.5 53.5t-55.5 25.5l-527 56-352 32h-9q-39 0-67.5-28t-28.5-68q0-37 27-64t65-32l260-32h-448q-41 0-69.5-30t-26.5-71q2-39 32-65t69-26l442-1-521-64q-41-5-66-37t-19-73q6-35 34.5-57.5t65.5-22.5h10l481 60-351-94q-38-10-62-41.5t-18-68.5q6-36 33-58.5t62-22.5q6 0 20 2l448 96 217 37q1 0 3 0.5t3 0.5q23 0 30.5-23t-12.5-36l-186-125q-35-23-42-63.5t18-73.5q27-38 76-38zM761 875l186 125-218-37-5-2-36-38-238-262q-1-1-2.5-3.5t-2.5-3.5q-24-31-18.5-70t37.5-64q31-23 68-17.5t64 33.5l142 147q-2 1-5 3.5t-4 4.5q-32 45-23 99t55 85zM1648 421l15 266q4 73-11 147l-48 219q-12 59-67 87l-106 54q2-62-39-109l-146-170q-53-61-117-103l-222-148q-34-23-76-23-51 0-88 37l-235-312q-25-33-18-73.5t41-63.5q33-22 71.5-14t62.5 40l266 352-262-455q-21-35-10.5-75t47.5-59q35-18 72.5-6t57.5 46l241 420-136-337q-15-35-4.5-74t44.5-56q37-19 76-6t56 51l193 415 101 196q8 15 23 17.5t27-7.5 11-26l-12-224q-2-41 26-71t69-31q39 0 67 28.5t30 67.5z"
+ }
+ }]
+};
+exports.signLanguage = signLanguage;
+var signing = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M831 673q32 0 59 18l222 148q61 40 110 97l146 170q40 46 29 106l-72 413q-6 32-29.5 53.5t-55.5 25.5l-527 56-352 32h-9q-39 0-67.5-28t-28.5-68q0-37 27-64t65-32l260-32h-448q-41 0-69.5-30t-26.5-71q2-39 32-65t69-26l442-1-521-64q-41-5-66-37t-19-73q6-35 34.5-57.5t65.5-22.5h10l481 60-351-94q-38-10-62-41.5t-18-68.5q6-36 33-58.5t62-22.5q6 0 20 2l448 96 217 37q1 0 3 0.5t3 0.5q23 0 30.5-23t-12.5-36l-186-125q-35-23-42-63.5t18-73.5q27-38 76-38zM761 875l186 125-218-37-5-2-36-38-238-262q-1-1-2.5-3.5t-2.5-3.5q-24-31-18.5-70t37.5-64q31-23 68-17.5t64 33.5l142 147q-2 1-5 3.5t-4 4.5q-32 45-23 99t55 85zM1648 421l15 266q4 73-11 147l-48 219q-12 59-67 87l-106 54q2-62-39-109l-146-170q-53-61-117-103l-222-148q-34-23-76-23-51 0-88 37l-235-312q-25-33-18-73.5t41-63.5q33-22 71.5-14t62.5 40l266 352-262-455q-21-35-10.5-75t47.5-59q35-18 72.5-6t57.5 46l241 420-136-337q-15-35-4.5-74t44.5-56q37-19 76-6t56 51l193 415 101 196q8 15 23 17.5t27-7.5 11-26l-12-224q-2-41 26-71t69-31q39 0 67 28.5t30 67.5z"
+ }
+ }]
+};
+exports.signing = signing;
+var lowVision = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M335 1356q-2 0-6-2-86-57-168.5-145t-139.5-180q-21-30-21-69 0-9 2-19t4-18 7-18 8.5-16 10.5-17 10-15 12-15.5 11-14.5q184-251 452-365-110-198-110-211 0-19 17-29 116-64 128-64 18 0 28 16l124 229q92-19 192-19 266 0 497.5 137.5t378.5 369.5q20 31 20 69t-20 69q-91 142-218.5 253.5t-278.5 175.5q110 198 110 211 0 20-17 29-116 64-127 64-19 0-29-16l-124-229-64-119-444-820 7-7q-58 24-99 47 3 5 127 234t243 449 119 223q0 7-9 9-13 3-72 3-57 0-60-7l-456-841q-39 28-82 68 24 43 214 393.5t190 354.5q0 10-11 10-14 0-82.5-22t-72.5-28l-106-197-224-413q-44 53-78 106 2 3 18 25t23 34l176 327q0 10-10 10zM1165 1254l49 91q273-111 450-385-180-277-459-389 67 64 103 148.5t36 176.5q0 106-47 200.5t-132 157.5zM848 640q0 20 14 34t34 14q86 0 147 61t61 147q0 20 14 34t34 14 34-14 14-34q0-126-89-215t-215-89q-20 0-34 14t-14 34zM1214 575l-9-4 7 7z"
+ }
+ }]
+};
+exports.lowVision = lowVision;
+var viadeo = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1050 1106q0 215-147 374-148 161-378 161-232 0-378-161-147-159-147-374 0-147 68-270.5t189-196.5 268-73q96 0 182 31-32 62-39 126-66-28-143-28-167 0-280.5 123t-113.5 291q0 170 112.5 288.5t281.5 118.5 281-118.5 112-288.5q0-89-32-166 66-13 123-49 41 98 41 212zM846 917q0 192-79.5 345t-238.5 253l-14 1q-29 0-62-5 83-32 146.5-102.5t99.5-154.5 58.5-189 30-192.5 7.5-178.5q0-69-3-103 55 160 55 326zM791 589v2q-73-214-206-440 88 59 142.5 186.5t63.5 251.5zM1035 792q-83 0-160-75 218-120 290-247 19-37 21-56-42 94-139.5 166.5t-204.5 97.5q-35-54-35-113 0-37 17-79t43-68q46-44 157-74 59-16 106-58.5t74-100.5q74 105 74 253 0 109-24 170-32 77-88.5 130.5t-130.5 53.5z"
+ }
+ }]
+};
+exports.viadeo = viadeo;
+var viadeoSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1050 1041q0-78-28-147-41 25-85 34 22 50 22 114 0 117-77 198.5t-193 81.5-193.5-81.5-77.5-198.5q0-115 78-199.5t193-84.5q53 0 98 19 4-43 27-87-60-21-125-21-154 0-257.5 108.5t-103.5 263.5 103.5 261 257.5 106 257.5-106.5 103.5-260.5zM872 686q2 24 2 71 0 63-5 123t-20.5 132.5-40.5 130-68.5 106-100.5 70.5q21 3 42 3h10q219-139 219-411 0-116-38-225zM872 686q-4-80-44-171.5t-98-130.5q92 156 142 302zM1207 581q0-102-51-174-41 86-124 109-69 19-109 53.5t-40 99.5q0 40 24 77 74-17 140.5-67t95.5-115q-4 52-74.5 111.5t-138.5 97.5q52 52 110 52 51 0 90-37t60-90q17-42 17-117zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.viadeoSquare = viadeoSquare;
+var snapchat = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1279 1148q0-22-22-27-67-15-118-59t-80-108q-7-19-7-25 0-15 19.5-26t43-17 43-20.5 19.5-36.5q0-19-18.5-31.5t-38.5-12.5q-12 0-32 8t-31 8q-4 0-12-2 5-95 5-114 0-79-17-114-36-78-103-121.5t-152-43.5q-199 0-275 165-17 35-17 114 0 19 5 114-4 2-14 2-12 0-32-7.5t-30-7.5q-21 0-38.5 12t-17.5 32q0 21 19.5 35.5t43 20.5 43 17 19.5 26q0 6-7 25-64 138-198 167-22 5-22 27 0 46 137 68 2 5 6 26t11.5 30.5 23.5 9.5q12 0 37.5-4.5t39.5-4.5q35 0 67 15t54 32.5 57.5 32.5 76.5 15q43 0 79-15t57.5-32.5 53.5-32.5 67-15q14 0 39.5 4t38.5 4q16 0 23-10t11-30 6-25q137-22 137-68zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.snapchat = snapchat;
+var snapchatGhost = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M848 128q134-1 240.5 68.5t163.5 192.5q27 58 27 179 0 47-9 191 14 7 28 7 18 0 51-13.5t51-13.5q29 0 56 18t27 46q0 32-31.5 54t-69 31.5-69 29-31.5 47.5q0 15 12 43 37 82 102.5 150t144.5 101q28 12 80 23 28 6 28 35 0 70-219 103-7 11-11 39t-14 46.5-33 18.5q-20 0-62-6.5t-64-6.5q-37 0-62 5-32 5-63 22.5t-58 38-58 40.5-76 33.5-99 13.5q-52 0-96.5-13.5t-75-33.5-57.5-40.5-58-38-62-22.5q-26-5-63-5-24 0-65.5 7.5t-58.5 7.5q-25 0-35-18.5t-14-47.5-11-40q-219-33-219-103 0-29 28-35 52-11 80-23 78-32 144.5-101t102.5-150q12-28 12-43 0-28-31.5-47.5t-69.5-29.5-69.5-31.5-31.5-52.5q0-27 26-45.5t55-18.5q15 0 48 13t53 13q18 0 32-7-9-142-9-190 0-122 27-180 64-137 172-198t264-63z"
+ }
+ }]
+};
+exports.snapchatGhost = snapchatGhost;
+var snapchatSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1148q0-22-22-27-67-14-118-58t-80-109q-7-14-7-25 0-15 19.5-26t42.5-17 42.5-20.5 19.5-36.5q0-19-18.5-31.5t-38.5-12.5q-11 0-31 8t-32 8q-4 0-12-2 5-63 5-115 0-78-17-114-36-78-102.5-121.5t-152.5-43.5q-198 0-275 165-18 38-18 115 0 38 6 114-10 2-15 2-11 0-31.5-8t-30.5-8q-20 0-37.5 12.5t-17.5 32.5q0 21 19.5 35.5t42.5 20.5 42.5 17 19.5 26q0 11-7 25-64 138-198 167-22 5-22 27 0 47 138 69 2 5 6 26t11 30.5 23 9.5q13 0 38.5-5t38.5-5q35 0 67.5 15t54.5 32.5 57.5 32.5 76.5 15q43 0 79-15t57.5-32.5 54-32.5 67.5-15q13 0 39 4.5t39 4.5q15 0 22.5-9.5t11.5-31 5-24.5q138-22 138-69zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.snapchatSquare = snapchatSquare;
+var piedPiper = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2304 0q-69 46-125 92t-89 81-59.5 71.5-37.5 57.5-22 44.5-14 29.5q-10 18-35.5 136.5t-48.5 164.5q-15 29-50 60.5t-67.5 50.5-72.5 41-48 28q-47 31-151 231-341-14-630 158-92 53-303 179 47-16 86-31t55-22l15-7q71-27 163-64.5t133.5-53.5 108-34.5 142.5-31.5q186-31 465 7 1 0 10 3 11 6 14 17t-3 22l-194 345q-15 29-47 22-128-24-354-24-146 0-402 44.5t-392 46.5q-82 1-149-13t-107-37-61-40-33-34l-1-1v-2q0-6 6-6 138 0 371-55 192-366 374.5-524t383.5-158q5 0 14.5 0.5t38 5 55 12 61.5 24.5 63 39.5 54 59 40 82.5l102-177q2-4 21-42.5t44.5-86.5 61-109.5 84-133.5 100.5-137q66-82 128-141.5t121.5-96.5 92.5-53.5 88-39.5z"
+ }
+ }]
+};
+exports.piedPiper = piedPiper;
+var firstOrder = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1322 896q0 45-5 76l-236-14 224 78q-19 73-58 141l-214-103 177 158q-44 61-107 108l-157-178 103 215q-61 37-140 59l-79-228 14 240q-38 6-76 6t-76-6l14-238-78 226q-74-19-140-59l103-215-157 178q-59-43-108-108l178-158-214 104q-39-69-58-141l224-79-237 14q-5-42-5-76 0-35 5-77l238 14-225-79q19-73 58-140l214 104-177-159q46-61 107-108l158 178-103-215q67-39 140-58l77 224-13-236q36-6 75-6 38 0 76 6l-14 237 78-225q74 19 140 59l-103 214 158-178q61 47 107 108l-177 159 213-104q37 62 58 141l-224 78 237-14q5 31 5 77zM1352 896q0-160-78.5-295.5t-213-214-292.5-78.5q-119 0-227 46.5t-186.5 125-124.5 187.5-46 229q0 119 46 228t124.5 187.5 186.5 125 227 46.5q158 0 292.5-78.5t213-214 78.5-294.5zM1425 513v766l-657 383-657-383v-766l657-383zM768 1719l708-412v-823l-708-411-708 411v823zM1536 448v896l-768 448-768-448v-896l768-448z"
+ }
+ }]
+};
+exports.firstOrder = firstOrder;
+var yoast = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M339 218h691l-26 72h-665q-110 0-188.5 79t-78.5 189v771q0 95 60.5 169.5t153.5 93.5q23 5 98 5v72h-45q-140 0-239.5-100t-99.5-240v-771q0-140 99.5-240t239.5-100zM1190 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106l-285-733h228l187 585zM1664 558v1111h-795q37-55 45-73h678v-1038q0-85-49.5-155t-129.5-99l25-67q101 34 163.5 123.5t62.5 197.5z"
+ }
+ }]
+};
+exports.yoast = yoast;
+var themeisle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M852 309q0 29-17 52.5t-45 23.5-45-23.5-17-52.5 17-52.5 45-23.5 45 23.5 17 52.5zM688 1685v-114q0-30-20.5-51.5t-50.5-21.5-50 21.5-20 51.5v114q0 30 20.5 52t49.5 22q30 0 50.5-22t20.5-52zM860 1685v-114q0-30-20-51.5t-50-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22q29 0 49.5-22t20.5-52zM1034 1685v-114q0-30-20.5-51.5t-50.5-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22 50.5-22 20.5-52zM1208 1685v-114q0-30-20.5-51.5t-50.5-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22 50.5-22 20.5-52zM1476 1001q-84 160-232 259.5t-323 99.5q-123 0-229.5-51.5t-178.5-137-113-197.5-41-232q0-88 21-174-104 175-104 390 0 162 65 312t185 251q30-57 91-57 56 0 86 50 32-50 87-50 56 0 86 50 32-50 87-50t87 50q30-50 86-50 28 0 52.5 15.5t37.5 40.5q112-94 177-231.5t73-287.5zM1326 972q0-75-72-75-17 0-47 6-95 19-149 19-226 0-226-243 0-86 30-204-83 127-83 275 0 150 89 260.5t235 110.5q111 0 210-70 13-48 13-79zM884 313q0-50-32-89.5t-81-39.5-81 39.5-32 89.5q0 51 31.5 90.5t81.5 39.5 81.5-39.5 31.5-90.5zM1513 652q0-96-37.5-179t-113-137-173.5-54q-77 0-149 35t-127 94q-48 159-48 268 0 104 45.5 157t147.5 53q53 0 142-19 36-6 53-6 51 0 77.5 28t26.5 80q0 26-4 46 75-68 117.5-165.5t42.5-200.5zM1792 869q0 111-33.5 249.5t-93.5 204.5q-58 64-195 142.5t-228 104.5l-4 1v114q0 43-29.5 75t-72.5 32q-56 0-86-50-32 50-87 50t-87-50q-30 50-86 50-55 0-87-50-30 50-86 50-47 0-75-33.5t-28-81.5q-90 68-198 68-118 0-211-80 54-1 106-20-113-31-182-127 32 7 71 7 89 0 164-46-192-192-240-306-24-56-24-160 0-57 9-125.5t31.5-146.5 55-141 86.5-105 120-42q59 0 81 52 19-29 42-54 2-3 12-13t13-16q10-15 23-38t25-42 28-39q87-111 211.5-177t260.5-66q35 0 62 4 59-64 146-64 83 0 140 57 5 5 5 12 0 5-6 13.5t-12.5 16-16 17l-10.5 10.5q17 6 36 18t19 24q0 6-16 25 157 138 197 378 25-30 60-30 45 0 100 49 90 80 90 279z"
+ }
+ }]
+};
+exports.themeisle = themeisle;
+var googlePlusCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M917 905q0-33-6-64h-362v132h217q-12 76-74.5 120.5t-142.5 44.5q-99 0-169-71.5t-70-170.5 70-170.5 169-71.5q93 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.googlePlusCircle = googlePlusCircle;
+var googlePlusOfficial = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M917 905q0-33-6-64h-362v132h217q-12 76-74.5 120.5t-142.5 44.5q-99 0-169-71.5t-70-170.5 70-170.5 169-71.5q93 0 153 59l104-101q-108-100-257-100-160 0-272 112.5t-112 271.5 112 271.5 272 112.5q165 0 266.5-105t101.5-270zM1262 951h109v-110h-109v-110h-110v110h-110v110h110v110h110v-110zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.googlePlusOfficial = googlePlusOfficial;
+var fa = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 512v839q0 48-49 62-174 52-338 52-73 0-215.5-29.5t-227.5-29.5q-164 0-370 48v338h-160v-1368q-63-25-101-81t-38-124q0-91 64-155t155-64 155 64 64 155q0 68-38 124t-101 81v68q190-44 343-44 99 0 198 15 14 2 111.5 22.5t149.5 20.5q77 0 165-18 11-2 80-21t89-19q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.fa = fa;
+var fontAwesome = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 512v839q0 48-49 62-174 52-338 52-73 0-215.5-29.5t-227.5-29.5q-164 0-370 48v338h-160v-1368q-63-25-101-81t-38-124q0-91 64-155t155-64 155 64 64 155q0 68-38 124t-101 81v68q190-44 343-44 99 0 198 15 14 2 111.5 22.5t149.5 20.5q77 0 165-18 11-2 80-21t89-19q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.fontAwesome = fontAwesome;
+var handshakeO = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192 1152q40 0 56-32t0-64-56-32-56 32 0 64 56 32zM1665 1094q-10-13-38.5-50t-41.5-54-38-49-42.5-53-40.5-47-45-49l-125 140q-83 94-208.5 92t-205.5-98q-57-69-56.5-158t58.5-157l177-206q-22-11-51-16.5t-47.5-6-56.5 0.5-49 1q-92 0-158 66l-158 158h-155v544q5 0 21-0.5t22 0 19.5 2 20.5 4.5 17.5 8.5 18.5 13.5l297 292q115 111 227 111 78 0 125-47 57 20 112.5-8t72.5-85q74 6 127-44 20-18 36-45.5t14-50.5q10 10 43 10 43 0 77-21t49.5-53 12-71.5-30.5-73.5zM1824 1152h96v-512h-93l-157-180q-66-76-169-76h-167q-89 0-146 67l-209 243q-28 33-28 75t27 75q43 51 110 52t111-49l193-218q25-23 53.5-21.5t47 27 8.5 56.5q16 19 56 63t60 68q29 36 82.5 105.5t64.5 84.5q52 66 60 140zM2112 1152q40 0 56-32t0-64-56-32-56 32 0 64 56 32zM2304 576v640q0 26-19 45t-45 19h-434q-27 65-82 106.5t-125 51.5q-33 48-80.5 81.5t-102.5 45.5q-42 53-104.5 81.5t-128.5 24.5q-60 34-126 39.5t-127.5-14-117-53.5-103.5-81l-287-282h-358q-26 0-45-19t-19-45v-672q0-26 19-45t45-19h421q14-14 47-48t47.5-48 44-40 50.5-37.5 51-25.5 62-19.5 68-5.5h117q99 0 181 56 82-56 181-56h167q35 0 67 6t56.5 14.5 51.5 26.5 44.5 31 43 39.5 39 42 41 48 41.5 48.5h355q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.handshakeO = handshakeO;
+var envelopeOpen = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 654v978q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-978q0-15 11-24 8-7 39-34.5t41.5-36 45.5-37.5 70-55.5 96-73 143.5-107 192.5-140.5q5-4 52.5-40t71.5-52.5 64-35 69-18.5 69 18.5 65 35.5 71 52 52 40q110 80 192.5 140.5t143.5 107 96 73 70 55.5 45.5 37.5 41.5 36 39 34.5q11 9 11 24zM1228 1239q263-191 345-252 11-8 12.5-20.5t-6.5-23.5l-38-52q-8-11-21-12.5t-24 6.5q-231 169-343 250-5 3-52 39t-71.5 52.5-64.5 35-69 18.5-69-18.5-64.5-35-71.5-52.5-52-39q-186-134-343-250-11-8-24-6.5t-21 12.5l-38 52q-8 11-6.5 23.5t12.5 20.5q82 61 345 252 10 8 50 38t65 47 64 39.5 77.5 33.5 75.5 11 75.5-11 79-34.5 64.5-39.5 65-47.5 48-36.5z"
+ }
+ }]
+};
+exports.envelopeOpen = envelopeOpen;
+var envelopeOpenO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1474 913l39 51q8 11 6.5 23.5t-11.5 20.5q-43 34-126.5 98.5t-146.5 113-67 51.5q-39 32-60 48t-60.5 41-76.5 36.5-74 11.5h-1-1q-37 0-74-11.5t-76-36.5-61-41.5-60-47.5q-5-4-65-50.5t-143.5-111-122.5-94.5q-11-8-12.5-20.5t6.5-23.5l37-52q8-11 21.5-13t24.5 7q94 73 306 236 5 4 43.5 35t60.5 46.5 56.5 32.5 58.5 17h1 1q24 0 58.5-17t56.5-32.5 60.5-46.5 43.5-35q258-198 313-242 11-8 24-6.5t21 12.5zM1664 1632v-928q-90-83-159-139-91-74-389-304-3-2-43-35t-61-48-56-32.5-59-17.5h-1-1q-24 0-59 17.5t-56 32.5-61 48-43 35q-215 166-315.5 245.5t-129.5 104-82 74.5q-14 12-21 19v928q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1792 704v928q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-928q0-56 41-94 123-114 350-290.5t233-181.5q36-30 59-47.5t61.5-42 76-36.5 74.5-12h1 1q37 0 74.5 12t76 36.5 61.5 42 59 47.5q43 36 156 122t226 177 201 173q41 38 41 94z"
+ }
+ }]
+};
+exports.envelopeOpenO = envelopeOpenO;
+var linode = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M330 1535l202 214-34-236-216-213zM556 1761l274-218-11-245-300 215zM245 1123l227 213-48-327-245-204zM495 1347l317-214-14-324-352 200zM843 1358l95 80-2-239-103-79q0 1 1 8.5t0 12-5 7.5l-78 52 85 70q7 6 7 88zM138 606l256 200-68-465-279-173zM1173 1269l15-234-230 164 2 240zM417 814l373-194-19-441-423 163zM1270 1179l20-233-226-142-2 105 144 95q6 4 4 9l-7 119zM1461 1040l30-222-179 128-20 228zM1273 1207l-71-49-8 117q0 5-4 8l-234 187q-7 5-14 0l-98-83 7 161q0 5-4 8l-293 234q-4 2-6 2-8-2-8-3l-228-242q-4-4-59-277-2-7 5-11l61-37q-94-86-95-92l-72-351q-2-7 6-12l94-45q-133-100-135-108l-96-466q-2-10 7-13l433-135q5 0 8 1l317 153q6 4 6 9l20 463q0 7-6 10l-118 61 126 85q5 2 5 8l5 123 121-74q5-4 11 0l84 56 3-110q0-6 5-9l206-126q6-3 11 0l245 135q4 4 5 7t-6.5 60-17.5 124.5-10 70.5q0 5-4 7l-191 153q-6 5-13 0z"
+ }
+ }]
+};
+exports.linode = linode;
+var addressBook = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1201 1238q0-57-5.5-107t-21-100.5-39.5-86-64-58-91-22.5q-6 4-33.5 20.5t-42.5 24.5-40.5 20-49 17-46.5 5-46.5-5-49-17-40.5-20-42.5-24.5-33.5-20.5q-51 0-91 22.5t-64 58-39.5 86-21 100.5-5.5 107q0 73 42 121.5t103 48.5h576q61 0 103-48.5t42-121.5zM1028 644q0-108-76.5-184t-183.5-76-183.5 76-76.5 184q0 107 76.5 183t183.5 76 183.5-76 76.5-183zM1664 1184v192q0 14-9 23t-23 9h-96v224q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h1216q66 0 113 47t47 113v224h96q14 0 23 9t9 23v192q0 14-9 23t-23 9h-96v128h96q14 0 23 9t9 23v192q0 14-9 23t-23 9h-96v128h96q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.addressBook = addressBook;
+var addressBookO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1028 644q0 107-76.5 183t-183.5 76-183.5-76-76.5-183q0-108 76.5-184t183.5-76 183.5 76 76.5 184zM980 864q46 0 82.5 17t60 47.5 39.5 67 24 81 11.5 82.5 3.5 79q0 67-39.5 118.5t-105.5 51.5h-576q-66 0-105.5-51.5t-39.5-118.5q0-48 4.5-93.5t18.5-98.5 36.5-91.5 63-64.5 93.5-26h5q7 4 32 19.5t35.5 21 33 17 37 16 35 9 39.5 4.5 39.5-4.5 35-9 37-16 33-17 35.5-21 32-19.5zM1664 608q0 13-9.5 22.5t-22.5 9.5h-96v128h96q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-96v128h96q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-96v224q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h1216q66 0 113 47t47 113v224h96q13 0 22.5 9.5t9.5 22.5v192zM1408 1632v-1472q0-13-9.5-22.5t-22.5-9.5h-1216q-13 0-22.5 9.5t-9.5 22.5v1472q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5-9.5t9.5-22.5z"
+ }
+ }]
+};
+exports.addressBookO = addressBookO;
+var addressCard = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1131q0-64-9-117.5t-29.5-103-60.5-78-97-28.5q-6 4-30 18t-37.5 21.5-35.5 17.5-43 14.5-42 4.5-42-4.5-43-14.5-35.5-17.5-37.5-21.5-30-18q-57 0-97 28.5t-60.5 78-29.5 103-9 117.5 37 106.5 91 42.5h512q54 0 91-42.5t37-106.5zM867 611q0-94-66.5-160.5t-160.5-66.5-160.5 66.5-66.5 160.5 66.5 160.5 160.5 66.5 160.5-66.5 66.5-160.5zM1792 1120v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM1792 860v-56q0-15-10.5-25.5t-25.5-10.5h-568q-15 0-25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5-10.5t10.5-25.5zM1792 608v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM2048 288v1216q0 66-47 113t-113 47h-352v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-768v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-352q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.addressCard = addressCard;
+var vcard = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1131q0-64-9-117.5t-29.5-103-60.5-78-97-28.5q-6 4-30 18t-37.5 21.5-35.5 17.5-43 14.5-42 4.5-42-4.5-43-14.5-35.5-17.5-37.5-21.5-30-18q-57 0-97 28.5t-60.5 78-29.5 103-9 117.5 37 106.5 91 42.5h512q54 0 91-42.5t37-106.5zM867 611q0-94-66.5-160.5t-160.5-66.5-160.5 66.5-66.5 160.5 66.5 160.5 160.5 66.5 160.5-66.5 66.5-160.5zM1792 1120v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM1792 860v-56q0-15-10.5-25.5t-25.5-10.5h-568q-15 0-25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5-10.5t10.5-25.5zM1792 608v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM2048 288v1216q0 66-47 113t-113 47h-352v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-768v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-352q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.vcard = vcard;
+var addressCardO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1131q0 64-37 106.5t-91 42.5h-512q-54 0-91-42.5t-37-106.5 9-117.5 29.5-103 60.5-78 97-28.5q6 4 30 18t37.5 21.5 35.5 17.5 43 14.5 42 4.5 42-4.5 43-14.5 35.5-17.5 37.5-21.5 30-18q57 0 97 28.5t60.5 78 29.5 103 9 117.5zM867 611q0 94-66.5 160.5t-160.5 66.5-160.5-66.5-66.5-160.5 66.5-160.5 160.5-66.5 160.5 66.5 66.5 160.5zM1792 1056v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1792 804v56q0 15-10.5 25.5t-25.5 10.5h-568q-15 0-25.5-10.5t-10.5-25.5v-56q0-15 10.5-25.5t25.5-10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 544v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1920 1504v-1216q0-13-9.5-22.5t-22.5-9.5h-1728q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h352v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h768v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h352q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.addressCardO = addressCardO;
+var vcardO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1131q0 64-37 106.5t-91 42.5h-512q-54 0-91-42.5t-37-106.5 9-117.5 29.5-103 60.5-78 97-28.5q6 4 30 18t37.5 21.5 35.5 17.5 43 14.5 42 4.5 42-4.5 43-14.5 35.5-17.5 37.5-21.5 30-18q57 0 97 28.5t60.5 78 29.5 103 9 117.5zM867 611q0 94-66.5 160.5t-160.5 66.5-160.5-66.5-66.5-160.5 66.5-160.5 160.5-66.5 160.5 66.5 66.5 160.5zM1792 1056v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1792 804v56q0 15-10.5 25.5t-25.5 10.5h-568q-15 0-25.5-10.5t-10.5-25.5v-56q0-15 10.5-25.5t25.5-10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 544v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1920 1504v-1216q0-13-9.5-22.5t-22.5-9.5h-1728q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h352v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h768v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h352q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.vcardO = vcardO;
+var userCircle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1523 1339q-22-155-87.5-257.5t-184.5-118.5q-67 74-159.5 115.5t-195.5 41.5-195.5-41.5-159.5-115.5q-119 16-184.5 118.5t-87.5 257.5q106 150 271 237.5t356 87.5 356-87.5 271-237.5zM1280 640q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM1792 896q0 182-71 347.5t-190.5 286-285.5 191.5-349 71q-182 0-348-71t-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.userCircle = userCircle;
+var userCircleO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348q0 181-70.5 347t-190.5 286-286 191.5-349 71.5-349-71-285.5-191.5-190.5-286-71-347.5 71-348 191-286 286-191 348-71zM1515 1351q149-205 149-455 0-156-61-298t-164-245-245-164-298-61-298 61-245 164-164 245-61 298q0 250 149 455 66-327 306-327 131 128 313 128t313-128q240 0 306 327zM1280 704q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5z"
+ }
+ }]
+};
+exports.userCircleO = userCircleO;
+var userO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1201 784q47 14 89.5 38t89 73 79.5 115.5 55 172 22 236.5q0 154-100 263.5t-241 109.5h-854q-141 0-241-109.5t-100-263.5q0-131 22-236.5t55-172 79.5-115.5 89-73 89.5-38q-79-125-79-272 0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5 198.5 40.5 163.5 109.5 109.5 163.5 40.5 198.5q0 147-79 272zM768 128q-159 0-271.5 112.5t-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5-112.5-271.5-271.5-112.5zM1195 1664q88 0 150.5-71.5t62.5-173.5q0-239-78.5-377t-225.5-145q-145 127-336 127t-336-127q-147 7-225.5 145t-78.5 377q0 102 62.5 173.5t150.5 71.5h854z"
+ }
+ }]
+};
+exports.userO = userO;
+var idBadge = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1258q0 64-37 107t-91 43h-512q-54 0-91-43t-37-107 9-118 29.5-104 61-78.5 96.5-28.5q80 75 188 75t188-75q56 0 96.5 28.5t61 78.5 29.5 104 9 118zM870 739q0 94-67.5 160.5t-162.5 66.5-162.5-66.5-67.5-160.5 67.5-160.5 162.5-66.5 162.5 66.5 67.5 160.5zM1152 1632v-1376h-1024v1376q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1280 160v1472q0 66-47 113t-113 47h-960q-66 0-113-47t-47-113v-1472q0-66 47-113t113-47h352v96q0 14 9 23t23 9h192q14 0 23-9t9-23v-96h352q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.idBadge = idBadge;
+var driversLicense = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1212q0-54-7.5-100.5t-24.5-90-51-68.5-81-25q-64 64-156 64t-156-64q-47 0-81 25t-51 68.5-24.5 90-7.5 100.5q0 55 31.5 93.5t75.5 38.5h426q44 0 75.5-38.5t31.5-93.5zM768 768q0-80-56-136t-136-56-136 56-56 136 56 136 136 56 136-56 56-136zM1792 1248v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1408 992v-64q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23-9t9-23zM1792 992v-64q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v64q0 14 9 23t23 9h192q14 0 23-9t9-23zM1792 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM128 384h1792v-96q0-14-9-23t-23-9h-1728q-14 0-23 9t-9 23v96zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.driversLicense = driversLicense;
+var idCard = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1212q0-54-7.5-100.5t-24.5-90-51-68.5-81-25q-64 64-156 64t-156-64q-47 0-81 25t-51 68.5-24.5 90-7.5 100.5q0 55 31.5 93.5t75.5 38.5h426q44 0 75.5-38.5t31.5-93.5zM768 768q0-80-56-136t-136-56-136 56-56 136 56 136 136 56 136-56 56-136zM1792 1248v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM1408 992v-64q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23-9t9-23zM1792 992v-64q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v64q0 14 9 23t23 9h192q14 0 23-9t9-23zM1792 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zM128 384h1792v-96q0-14-9-23t-23-9h-1728q-14 0-23 9t-9 23v96zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.idCard = idCard;
+var driversLicenseO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1212q0 55-31.5 93.5t-75.5 38.5h-426q-44 0-75.5-38.5t-31.5-93.5q0-54 7.5-100.5t24.5-90 51-68.5 81-25q64 64 156 64t156-64q47 0 81 25t51 68.5 24.5 90 7.5 100.5zM768 768q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1184v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1408 928v64q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h320q14 0 23 9t9 23zM1792 928v64q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 672v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1920 1504v-1120h-1792v1120q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.driversLicenseO = driversLicenseO;
+var idCardO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1212q0 55-31.5 93.5t-75.5 38.5h-426q-44 0-75.5-38.5t-31.5-93.5q0-54 7.5-100.5t24.5-90 51-68.5 81-25q64 64 156 64t156-64q47 0 81 25t51 68.5 24.5 90 7.5 100.5zM768 768q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1184v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1408 928v64q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h320q14 0 23 9t9 23zM1792 928v64q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 672v64q0 14-9 23t-23 9h-704q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h704q14 0 23 9t9 23zM1920 1504v-1120h-1792v1120q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.idCardO = idCardO;
+var quora = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1255 787q0-318-105-474.5t-330-156.5q-222 0-326 157t-104 474q0 316 104 471.5t326 155.5q74 0 131-17-22-43-39-73t-44-65-53.5-56.5-63-36-77.5-14.5q-46 0-79 16l-49-97q105-91 276-91 132 0 215.5 54t150.5 155q67-149 67-402zM1645 1419h117q3 27-2 67t-26.5 95-58 100.5-107 78-162.5 32.5q-71 0-130.5-19t-105.5-56-79-78-66-96q-97 27-205 27-150 0-292.5-58t-253-158.5-178-249-67.5-317.5q0-170 67.5-319.5t178.5-250.5 253.5-159 291.5-58q121 0 238.5 36t217 106 176 164.5 119.5 219 43 261.5q0 190-80.5 347.5t-218.5 264.5q47 70 93.5 106.5t104.5 36.5q61 0 94-37.5t38-85.5z"
+ }
+ }]
+};
+exports.quora = quora;
+var freeCodeCamp = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M453 1637q0 21-16 37.5t-37 16.5q-1 0-13-3-63-15-162-140-225-284-225-676 0-341 213-614 39-51 95-103.5t94-52.5q19 0 35 13.5t16 32.5q0 27-63 90-98 102-147 184-119 199-119 449 0 281 123 491 50 85 136 173 2 3 14.5 16t19.5 21 17 20.5 14.5 23.5 4.5 21zM1796 1503q0 29-17.5 48.5t-46.5 19.5h-1081q-26 0-45-19t-19-45q0-29 17.5-48.5t46.5-19.5h1081q26 0 45 19t19 45zM1581 892q0 134-67 233-25 38-69.5 78.5t-83.5 60.5q-16 10-27 10-7 0-15-6t-8-12q0-9 19-30t42-46 42-67.5 19-88.5q0-76-35-130-29-42-46-42-3 0-3 5 0 12 7.5 35.5t7.5 36.5q0 22-21.5 35t-44.5 13q-66 0-66-76 0-15 1.5-44t1.5-44q0-25-10-46-13-25-42-53.5t-51-28.5q-5 0-7 0.5t-3.5 2.5-1.5 6q0 2 16 26t16 54q0 37-19 68t-46 54-53.5 46-45.5 54-19 68q0 98 42 160 29 43 79 63 16 5 17 10 1 2 1 5 0 16-18 16-6 0-33-11-119-43-195-139.5t-76-218.5q0-55 24.5-115.5t60-115 70.5-108.5 59.5-113.5 24.5-111.5q0-53-25-94-29-48-56-64-19-9-19-21 0-20 41-20 50 0 110 29 41 19 71 44.5t49.5 51 33.5 62.5 22 69 16 80q0 1 3 17.5t4.5 25 5.5 25 9 27 11 21.5 14.5 16.5 18.5 5.5q23 0 37-14t14-37q0-25-20-67t-20-52 10-10q27 0 93 70 72 76 102.5 156t30.5 186zM2304 921q0 274-138 503-19 32-48 72t-68 86.5-81 77-74 30.5q-16 0-31-15.5t-15-31.5q0-15 29-50.5t68.5-77 48.5-52.5q183-230 183-531 0-131-20.5-235t-72.5-211q-58-119-163-228-2-3-13-13.5t-16.5-16.5-15-17.5-15-20-9.5-18.5-4-19q0-19 16-35.5t35-16.5q70 0 196 169 98 131 146 273t60 314q2 42 2 64z"
+ }
+ }]
+};
+exports.freeCodeCamp = freeCodeCamp;
+var telegram = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1189 1307l147-693q9-44-10.5-63t-51.5-7l-864 333q-29 11-39.5 25t-2.5 26.5 32 19.5l221 69 513-323q21-14 32-6 7 5-4 15l-415 375v0 0l-16 228q23 0 45-22l108-104 224 165q64 36 81-38zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.telegram = telegram;
+var thermometer = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer = thermometer;
+var thermometer4 = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer4 = thermometer4;
+var thermometerFull = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometerFull = thermometerFull;
+var thermometer3 = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-651h128v651q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer3 = thermometer3;
+var thermometerThreeQuarters = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-651h128v651q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometerThreeQuarters = thermometerThreeQuarters;
+var thermometer2 = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-395h128v395q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer2 = thermometer2;
+var thermometerHalf = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-395h128v395q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometerHalf = thermometerHalf;
+var thermometer1 = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-139h128v139q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer1 = thermometer1;
+var thermometerQuarter = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-139h128v139q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometerQuarter = thermometerQuarter;
+var thermometer0 = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-79 56-135.5t136-56.5 136 56.5 56 135.5zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer0 = thermometer0;
+var thermometerEmpty = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-79 56-135.5t136-56.5 136 56.5 56 135.5zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometerEmpty = thermometerEmpty;
+var shower = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1433 249q10 10 10 23t-10 23l-626 626q-10 10-23 10t-23-10l-82-82q-10-10-10-23t10-23l44-44q-72-91-81.5-207t46.5-215q-74-71-176-71-106 0-181 75t-75 181v1280h-256v-1280q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5q106 0 201 41t166 115q94-39 197-24.5t185 79.5l44-44q10-10 23-10t23 10zM1344 512q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1600 640q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1856 512q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 640q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1408 704q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM1728 640q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 768q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1344 896q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1600 768q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 1024q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1472 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 1024q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1344 1024q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 1152q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 1280q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19z"
+ }
+ }]
+};
+exports.shower = shower;
+var bath = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z"
+ }
+ }]
+};
+exports.bath = bath;
+var bathtub = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z"
+ }
+ }]
+};
+exports.bathtub = bathtub;
+var s15 = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z"
+ }
+ }]
+};
+exports.s15 = s15;
+var podcast = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M994 1192q0 86-17 197-31 215-55 313-22 90-152 90t-152-90q-24-98-55-313-17-110-17-197 0-168 224-168t224 168zM1536 768q0 240-134 434t-350 280q-8 3-15-3t-6-15q7-48 10-66 4-32 6-47 1-9 9-12 159-81 255.5-234t96.5-337q0-180-91-330.5t-247-234.5-337-74q-124 7-237 61t-193.5 140.5-128 202-46.5 240.5q1 184 99 336.5t257 231.5q7 3 9 12 3 21 6 45 1 9 5 32.5t6 35.5q1 9-6.5 15t-15.5 2q-148-58-261-169.5t-173.5-264-52.5-319.5q7-143 66-273.5t154.5-227 225-157.5 272.5-70q164-10 315.5 46.5t261 160.5 175 250.5 65.5 308.5zM994 736q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5zM1282 768q0 122-53.5 228.5t-146.5 177.5q-8 6-16 2t-10-14q-6-52-29-92-7-10 3-20 58-54 91-127t33-155q0-111-58.5-204t-157.5-141.5-212-36.5q-133 15-229 113t-109 231q-10 92 23.5 176t98.5 144q10 10 3 20-24 41-29 93-2 9-10 13t-16-2q-95-74-148.5-183t-51.5-234q3-131 69-244t177-181.5 241-74.5q144-7 268 60t196.5 187.5 72.5 263.5z"
+ }
+ }]
+};
+exports.podcast = podcast;
+var windowMaximize = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1408h1280v-768h-1280v768zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.windowMaximize = windowMaximize;
+var windowMinimize = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1312v192q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-192q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.windowMinimize = windowMinimize;
+var windowRestore = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1536h768v-512h-768v512zM1280 1024h512v-768h-768v256h96q66 0 113 47t47 113v352zM2048 160v960q0 66-47 113t-113 47h-608v352q0 66-47 113t-113 47h-960q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h608v-352q0-66 47-113t113-47h960q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.windowRestore = windowRestore;
+var timesRectangle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1175 1321l146-146q10-10 10-23t-10-23l-233-233 233-233q10-10 10-23t-10-23l-146-146q-10-10-23-10t-23 10l-233 233-233-233q-10-10-23-10t-23 10l-146 146q-10 10-10 23t10 23l233 233-233 233q-10 10-10 23t10 23l146 146q10 10 23 10t23-10l233-233 233 233q10 10 23 10t23-10zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.timesRectangle = timesRectangle;
+var windowClose = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1175 1321l146-146q10-10 10-23t-10-23l-233-233 233-233q10-10 10-23t-10-23l-146-146q-10-10-23-10t-23 10l-233 233-233-233q-10-10-23-10t-23 10l-146 146q-10 10-10 23t10 23l233 233-233 233q-10 10-10 23t10 23l146 146q10 10 23 10t23-10l233-233 233 233q10 10 23 10t23-10zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.windowClose = windowClose;
+var timesRectangleO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1257 1111l-146 146q-10 10-23 10t-23-10l-169-169-169 169q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l169-169-169-169q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l169 169 169-169q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-169 169 169 169q10 10 10 23t-10 23zM256 1408h1280v-1024h-1280v1024zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.timesRectangleO = timesRectangleO;
+var windowCloseO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1257 1111l-146 146q-10 10-23 10t-23-10l-169-169-169 169q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l169-169-169-169q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l169 169 169-169q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-169 169 169 169q10 10 10 23t-10 23zM256 1408h1280v-1024h-1280v1024zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.windowCloseO = windowCloseO;
+var bandcamp = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1070 1178l306-564h-654l-306 564h654zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.bandcamp = bandcamp;
+var grav = {
+ "viewBox": "0 0 1794 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1291 476q-15-17-35-8.5t-26 28.5 5 38q14 17 40 14.5t34-20.5-18-52zM895 722q-8 8-19.5 8t-18.5-8q-8-8-8-19t8-18q7-8 18.5-8t19.5 8q7 7 7 18t-7 19zM1060 796l-35 35q-12 13-29.5 13t-30.5-13l-38-38q-12-13-12-30t12-30l35-35q12-12 29.5-12t30.5 12l38 39q12 12 12 29.5t-12 29.5zM951 666q-7 8-18.5 8t-19.5-8q-7-8-7-19t7-19q8-8 19-8t19 8 8 19-8 19zM1354 568q-34 64-107.5 85.5t-127.5-16.5q-38-28-61-66.5t-21-87.5 39-92 75.5-53 70.5 5 70 51q2 2 13 12.5t14.5 13.5 13 13.5 12.5 15.5 10 15.5 8.5 18 4 18.5 1 21-5 22-9.5 24zM1555 1050q3-20-8.5-34.5t-27.5-21.5-33-17-23-20q-40-71-84-98.5t-113-11.5q19-13 40-18.5t33-4.5l12 1q2-45-34-90 6-20 6.5-40.5t-2.5-30.5l-3-10q43-24 71-65t34-91q10-84-43-150.5t-137-76.5q-60-7-114 18.5t-82 74.5q-30 51-33.5 101t14.5 87 43.5 64 56.5 42q-45-4-88-36t-57-88q-28-108 32-222-16-21-29-32-50 0-89 19 19-24 42-37t36-14l13-1q0-50-13-78-10-21-32.5-28.5t-47 3.5-37.5 40q2-4 4-7-7 28-6.5 75.5t19 117 48.5 122.5q-25 14-47 36-35 16-85.5 70.5t-84.5 101.5l-33 46q-90 34-181 125.5t-75 162.5q1 16 11 27-15 12-30 30-21 25-21 54t21.5 40 63.5-6q41-19 77-49.5t55-60.5q-2-2-6.5-5t-20.5-7.5-33-3.5q23-5 51-12.5t40-10 27.5-6 26-4 23.5-0.5q14 7 22-34 7-37 7-90 0-102-40-150 106 103 101 219-1 29-15 50t-27 27l-13 6q-4 7-19 32t-26 45.5-26.5 52-25 61-17 63-6.5 66.5 10 63q-35-54-37-80-22 24-34.5 39t-33.5 42-30.5 46-16.5 41-0.5 38 25.5 27q45 25 144-64t190.5-221.5 122.5-228.5q86-52 145-115.5t86-119.5q47 93 154 178 104 83 167 80 39-2 46-43zM1794 896q0 182-71 348t-191 286-286.5 191-348.5 71-348.5-71-286.5-191-191-286-71-348 71-348 191-286 286.5-191 348.5-71 348.5 71 286.5 191 191 286 71 348z"
+ }
+ }]
+};
+exports.grav = grav;
+var etsy = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M518 183v655q103 1 191.5-1.5t125.5-5.5l37-3q68-2 90.5-24.5t39.5-94.5l33-142h103l-14 322 7 319h-103l-29-127q-15-68-45-93t-84-26q-87-8-352-8v556q0 78 43.5 115.5t133.5 37.5h357q35 0 59.5-2t55-7.5 54-18 48.5-32 46-50.5 39-73l93-216h89q-6 37-31.5 252t-30.5 276q-146-5-263.5-8t-162.5-4h-44-628l-376 12v-102l127-25q67-13 91.5-37t25.5-79l8-643q3-402-8-645-2-61-25.5-84t-91.5-36l-127-24v-102l376 12h702q139 0 374-27-6 68-14 194.5t-12 219.5l-5 92h-93l-32-124q-31-121-74-179.5t-113-58.5h-548q-28 0-35.5 8.5t-7.5 30.5z"
+ }
+ }]
+};
+exports.etsy = etsy;
+var imdb = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M922 797v182q0 4 0.5 15t0 15l-1.5 12t-3.5 11.5-6.5 7.5-11 5.5-16 1.5v-309q9 0 16 1t11 5 6.5 5.5 3.5 9.5 1 10.5v13.5 14zM1238 893v121q0 1 0.5 12.5t0 15.5-2.5 11.5-7.5 10.5-13.5 3q-9 0-14-9-4-10-4-165v-7-8.5-9t1.5-8.5l3.5-7t5-5.5 8-1.5q6 0 10 1.5t6.5 4.5 4 6 2 8.5 0.5 8v9.5 9zM180 1129h122v-472h-122v472zM614 1129h106v-472h-159l-28 221q-20-148-32-221h-158v472h107v-312l45 312h76l43-319v319zM1039 824q0-67-5-90-3-16-11-28.5t-17-20.5-25-14-26.5-8.5-31-4-29-1.5h-29.5-12-91v472h56q169 1 197-24.5t25-180.5q-1-62-1-100zM1356 1021v-133q0-29-2-45t-9.5-33.5-24.5-25-46-7.5q-46 0-77 34v-154h-117v472h110l7-30q30 36 77 36 50 0 66-30.5t16-83.5zM1536 288v1216q0 66-47 113t-113 47h-1216q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1216q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.imdb = imdb;
+var ravelry = {
+ "viewBox": "0 0 2176 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1143 1733q-6-1-11-4-13-8-36-23t-86-65-116.5-104.5-112-140-89.5-172.5q-17-3-175-37 66 213 235 362t391 184zM502 1127l168 28q-25-76-41-167.5t-19-145.5l-4-53q-84 82-121 224 5 65 17 114zM612 518q-43 64-77 148 44-46 74-68zM2049 952q0-161-62-307t-167.5-252-250.5-168.5-304-62.5q-147 0-281 52.5t-240 148.5q-30 58-45 160 60-51 143-83.5t158.5-43 143-13.5 108.5 1l40 3q33 1 53 15.5t24.5 33 6.5 37-1 28.5q-126-11-227.5-0.5t-183 43.5-142.5 71.5-131 98.5q4 36 11.5 92.5t35.5 178 62 179.5q123 6 247.5-14.5t214.5-53.5 162.5-67 109.5-59l37-24q22-16 39.5-20.5t30.5 5 17 34.5q14 97-39 121-208 97-467 134-135 20-317 16 41 96 110 176.5t137 127 130.5 79 101.5 43.5l39 12q143 23 263-15 195-99 314-289t119-418zM2123 915q-14 135-40 212-70 208-181.5 346.5t-318.5 253.5q-48 33-82 44-72 26-163 16-36 3-73 3-283 0-504.5-173t-295.5-442q-1 0-4-0.5t-5-0.5q-6 50 2.5 112.5t26 115 36 98 31.5 71.5l14 26q8 12 54 82-71-38-124.5-106.5t-78.5-140-39.5-137-17.5-107.5l-2-42q-5-2-33.5-12.5t-48.5-18-53-20.5-57.5-25-50-25.5-42.5-27-25-25.5q19 10 50.5 25.5t113 45.5 145.5 38l2-32q11-149 94-290 41-202 176-365 28-115 81-214 15-28 32-45t49-32q158-74 303.5-104t302-11 306.5 97q220 115 333 336t87 474z"
+ }
+ }]
+};
+exports.ravelry = ravelry;
+var eercast = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1341 784q29-44-6.5-129.5t-121.5-142.5q-58-39-125.5-53.5t-118-4.5-68.5 37q-12 23-4.5 28t42.5 10q23 3 38.5 5t44.5 9.5 56 17.5q36 13 67.5 31.5t53 37 40 38.5 30.5 38 22 34.5 16.5 28.5 12 18.5 10.5 6 11-9.5zM1704 1358q-52 127-148.5 220t-214.5 141.5-253 60.5-266-13.5-251-91-210-161.5-141.5-235.5-46.5-303.5q1-41 8.5-84.5t12.5-64 24-80.5 23-73q-51 208 1 397t173 318 291 206 346 83 349-74.5 289-244.5q20-27 18-14 0 4-4 14zM1465 909q0 104-40.5 199t-108.5 164-162 109.5-198 40.5-198-40.5-162-109.5-108.5-164-40.5-199 40.5-199 108.5-164 162-109.5 198-40.5 198 40.5 162 109.5 108.5 164 40.5 199zM1752 621q-65-147-180.5-251t-253-153.5-292-53.5-301 36.5-275.5 129-220 211.5-131 297-10 373q-49-161-51.5-311.5t35.5-272.5 109-227 165.5-180.5 207-126 232-71 242.5-9 236 54 216 124.5 178 197q33 50 62 121t31 112zM1690 963q12-244-136.5-416t-396.5-240q-8 0-10-5t24-8q125 4 230 50t173 120 116 168.5 58.5 199-1 208-61.5 197.5-122.5 167-185 117.5-248.5 46.5q108-30 201.5-80t174-123 129.5-176.5 55-225.5z"
+ }
+ }]
+};
+exports.eercast = eercast;
+var microchip = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192 1280v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 1024v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 768v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 512v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 256v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM1280 96v1472q0 40-28 68t-68 28h-832q-40 0-68-28t-28-68v-1472q0-40 28-68t68-28h832q40 0 68 28t28 68zM1536 1328v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 1072v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 816v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 560v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 304v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16z"
+ }
+ }]
+};
+exports.microchip = microchip;
+var snowflakeO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1566 1117l-167 33 186 107q23 13 29.5 38.5t-6.5 48.5q-14 23-39 29.5t-48-6.5l-186-106 55 160q13 38-12 63.5t-60.5 20.5-48.5-42l-102-300-271-156v313l208 238q16 18 17 39t-11 36.5-28.5 25-37 5.5-36.5-22l-112-128v214q0 26-19 45t-45 19-45-19-19-45v-214l-112 128q-16 18-36.5 22t-37-5.5-28.5-25-11-36.5 17-39l208-238v-313l-271 156-102 300q-13 37-48.5 42t-60.5-20.5-12-63.5l55-160-186 106q-23 13-48 6.5t-39-29.5q-13-23-6.5-48.5t29.5-38.5l186-107-167-33q-29-6-42-29t-8.5-46.5 25.5-40 50-10.5l310 62 271-157-271-157-310 62q-4 1-13 1-27 0-44-18t-19-40 11-43 40-26l167-33-186-107q-23-13-29.5-38.5t6.5-48.5 39-30 48 7l186 106-55-160q-13-38 12-63.5t60.5-20.5 48.5 42l102 300 271 156v-313l-208-238q-16-18-17-39t11-36.5 28.5-25 37-5.5 36.5 22l112 128v-214q0-26 19-45t45-19 45 19 19 45v214l112-128q16-18 36.5-22t37 5.5 28.5 25 11 36.5-17 39l-208 238v313l271-156 102-300q13-37 48.5-42t60.5 20.5 12 63.5l-55 160 186-106q23-13 48-6.5t39 29.5q13 23 6.5 48.5t-29.5 38.5l-186 107 167 33q27 5 40 26t11 43-19 40-44 18q-9 0-13-1l-310-62-271 157 271 157 310-62q29-6 50 10.5t25.5 40-8.5 46.5-42 29z"
+ }
+ }]
+};
+exports.snowflakeO = snowflakeO;
+var superpowers = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1473 929q7-118-33-226.5t-113-189-177-131-221-57.5q-116-7-225.5 32t-192 110.5-135 175-59.5 220.5q-7 118 33 226.5t113 189 177.5 131 221.5 57.5q155 9 293-59t224-195.5 94-283.5zM1792 0l-349 348q120 117 180.5 272t50.5 321q-11 183-102 339t-241 255.5-332 124.5l-999 132 347-347q-120-116-180.5-271.5t-50.5-321.5q11-184 102-340t241.5-255.5 332.5-124.5q167-22 500-66t500-66z"
+ }
+ }]
+};
+exports.superpowers = superpowers;
+var wpexplorer = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M948 1028l163 329h-51l-175-350-171 350h-49l179-374-78-33 21-49 240 102-21 50zM563 436l304 130-130 304-304-130zM907 621l240 103-103 239-239-102zM1188 771l191 81-82 190-190-81zM1680 896q0-159-62-304t-167.5-250.5-250.5-167.5-304-62-304 62-250.5 167.5-167.5 250.5-62 304 62 304 167.5 250.5 250.5 167.5 304 62 304-62 250.5-167.5 167.5-250.5 62-304zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.wpexplorer = wpexplorer;
+var meetup = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1334 1234q-4-24-27.5-34t-49.5-10.5-48.5-12.5-25.5-38q-5-47 33-139.5t75-181 32-127.5q-14-101-117-103-45-1-75 16l-3 2-5 2.5t-4.5 2-5 2-5 0.5-6-1.5-6-3.5-6.5-5q-3-2-9-8.5t-9-9-8.5-7.5-9.5-7.5-9.5-5.5-11-4.5-11.5-2.5q-30-5-48 3t-45 31q-1 1-9 8.5t-12.5 11-15 10-16.5 5.5-17-3q-54-27-84-40-41-18-94 5t-76 65q-16 28-41 98.5t-43.5 132.5-40 134-21.5 73q-22 69 18.5 119t110.5 46q30-2 50.5-15t38.5-46q7-13 79-199.5t77-194.5q6-11 21.5-18t29.5 0q27 15 21 53-2 18-51 139.5t-50 132.5q-6 38 19.5 56.5t60.5 7 55-49.5q4-8 45.5-92t81.5-163.5 46-88.5q20-29 41-28 29 0 25 38-2 16-65.5 147.5t-70.5 159.5q-12 53 13 103t74 74q17 9 51 15.5t71.5 8 62.5-14 20-48.5zM383 1450q3 15-5 27.5t-23 15.5q-14 3-26.5-5t-15.5-23q-3-14 5-27t22-16 27 5 16 23zM953 1713q12 17 8.5 37.5t-20.5 32.5-37.5 8-32.5-21q-11-17-7.5-37.5t20.5-32.5 37.5-8 31.5 21zM177 901q-18 27-49.5 33t-57.5-13q-26-18-32-50t12-58q18-27 49.5-33t57.5 12q26 19 32 50.5t-12 58.5zM1467 1578q19 28 13 61.5t-34 52.5-60.5 13-51.5-34-13-61 33-53q28-19 60.5-13t52.5 34zM1579 974q69 113 42.5 244.5t-134.5 207.5q-90 63-199 60-20 80-84.5 127t-143.5 44.5-140-57.5q-12 9-13 10-103 71-225 48.5t-193-126.5q-50-73-53-164-83-14-142.5-70.5t-80.5-128-2-152 81-138.5q-36-60-38-128t24.5-125 79.5-98.5 121-50.5q32-85 99-148t146.5-91.5 168-17 159.5 66.5q72-21 140-17.5t128.5 36 104.5 80 67.5 115 17.5 140.5q52 16 87 57t45.5 89-5.5 99.5-58 87.5zM455 314q14 20 9.5 44.5t-24.5 38.5q-19 14-43.5 9.5t-37.5-24.5q-14-20-9.5-44.5t24.5-38.5q19-14 43.5-9.5t37.5 24.5zM614 33q4 16-5 30.5t-26 18.5-31-5.5-18-26.5q-3-17 6.5-31t25.5-18q17-4 31 5.5t17 26.5zM1800 981q4 20-6.5 37t-30.5 21q-19 4-36-6.5t-21-30.5 6.5-37 30.5-22q20-4 36.5 7.5t20.5 30.5zM1136 88q16 27 8.5 58.5t-35.5 47.5q-27 16-57.5 8.5t-46.5-34.5q-16-28-8.5-59t34.5-48 58-9 47 36zM1882 744q4 15-4 27.5t-23 16.5q-15 3-27.5-5.5t-15.5-22.5q-3-15 5-28t23-16q14-3 26.5 5t15.5 23zM1691 503q15 22 10.5 49t-26.5 43q-22 15-49 10t-42-27-10-49 27-43 48.5-11 41.5 28z"
+ }
+ }]
+};
+exports.meetup = meetup;
\ No newline at end of file
diff --git a/dist/fa/industry.js b/dist/fa/industry.js
new file mode 100644
index 000000000..049526869
--- /dev/null
+++ b/dist/fa/industry.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.industry = void 0;
+var industry = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448 0q26 0 45 19t19 45v891l536-429q17-14 40-14 26 0 45 19t19 45v379l536-429q17-14 40-14 26 0 45 19t19 45v1152q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-1664q0-26 19-45t45-19h384z"
+ }
+ }]
+};
+exports.industry = industry;
\ No newline at end of file
diff --git a/dist/fa/info.js b/dist/fa/info.js
new file mode 100644
index 000000000..64d411bea
--- /dev/null
+++ b/dist/fa/info.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.info = void 0;
+var info = {
+ "viewBox": "0 0 640 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344v128q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64v-384h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h384q26 0 45 19t19 45v576h64q26 0 45 19t19 45zM512 192v192q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-192q0-26 19-45t45-19h256q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.info = info;
\ No newline at end of file
diff --git a/dist/fa/infoCircle.js b/dist/fa/infoCircle.js
new file mode 100644
index 000000000..be9db2b71
--- /dev/null
+++ b/dist/fa/infoCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.infoCircle = void 0;
+var infoCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zM896 480v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.infoCircle = infoCircle;
\ No newline at end of file
diff --git a/dist/fa/inr.js b/dist/fa/inr.js
new file mode 100644
index 000000000..ef04c1a85
--- /dev/null
+++ b/dist/fa/inr.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inr = void 0;
+var inr = {
+ "viewBox": "0 0 898 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M898 470v102q0 14-9 23t-23 9h-168q-23 144-129 234t-276 110q167 178 459 536 14 16 4 34-8 18-29 18h-195q-16 0-25-12-306-367-498-571-9-9-9-22v-127q0-13 9.5-22.5t22.5-9.5h112q132 0 212.5-43t102.5-125h-427q-14 0-23-9t-9-23v-102q0-14 9-23t23-9h413q-57-113-268-113h-145q-13 0-22.5-9.5t-9.5-22.5v-133q0-14 9-23t23-9h832q14 0 23 9t9 23v102q0 14-9 23t-23 9h-233q47 61 64 144h171q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.inr = inr;
\ No newline at end of file
diff --git a/dist/fa/instagram.js b/dist/fa/instagram.js
new file mode 100644
index 000000000..98c0235de
--- /dev/null
+++ b/dist/fa/instagram.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.instagram = void 0;
+var instagram = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1162 896q0 164-115 279t-279 115-279-115-115-279 115-279 279-115 279 115 115 279zM1270 486q0 38-27 65t-65 27-65-27-27-65 27-65 65-27 65 27 27 65zM768 266q-7 0-76.5-0.5t-105.5 0-96.5 3-103 10-71.5 18.5q-50 20-88 58t-58 88q-11 29-18.5 71.5t-10 103-3 96.5 0 105.5 0.5 76.5-0.5 76.5 0 105.5 3 96.5 10 103 18.5 71.5q20 50 58 88t88 58q29 11 71.5 18.5t103 10 96.5 3 105.5 0 76.5-0.5 76.5 0.5 105.5 0 96.5-3 103-10 71.5-18.5q50-20 88-58t58-88q11-29 18.5-71.5t10-103 3-96.5 0-105.5-0.5-76.5 0.5-76.5 0-105.5-3-96.5-10-103-18.5-71.5q-20-50-58-88t-88-58q-29-11-71.5-18.5t-103-10-96.5-3-105.5 0-76.5 0.5zM1536 896q0 229-5 317-10 208-124 322t-322 124q-88 5-317 5t-317-5q-208-10-322-124t-124-322q-5-88-5-317t5-317q10-208 124-322t322-124q88-5 317-5t317 5q208 10 322 124t124 322q5 88 5 317z"
+ }
+ }]
+};
+exports.instagram = instagram;
\ No newline at end of file
diff --git a/dist/fa/institution.js b/dist/fa/institution.js
new file mode 100644
index 000000000..2ea3cdc74
--- /dev/null
+++ b/dist/fa/institution.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.institution = void 0;
+var institution = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z"
+ }
+ }]
+};
+exports.institution = institution;
\ No newline at end of file
diff --git a/dist/fa/internetExplorer.js b/dist/fa/internetExplorer.js
new file mode 100644
index 000000000..c6e4e1487
--- /dev/null
+++ b/dist/fa/internetExplorer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.internetExplorer = void 0;
+var internetExplorer = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 937q0 56-7 104h-1151q0 146 109.5 244.5t257.5 98.5q99 0 185.5-46.5t136.5-130.5h423q-56 159-170.5 281t-267.5 188.5-321 66.5q-187 0-356-83-228 116-394 116-237 0-237-263 0-115 45-275 17-60 109-229 199-360 475-606-184 79-427 354 63-274 283.5-449.5t501.5-175.5q30 0 45 1 255-117 433-117 64 0 116 13t94.5 40.5 66.5 76.5 24 115q0 116-75 286 101 182 101 390zM1722 297q0-83-53-132t-137-49q-108 0-254 70 121 47 222.5 131.5t170.5 195.5q51-135 51-216zM128 1534q0 86 48.5 132.5t134.5 46.5q115 0 266-83-122-72-213.5-183t-137.5-245q-98 205-98 332zM632 821h728q-5-142-113-237t-251-95q-144 0-251.5 95t-112.5 237z"
+ }
+ }]
+};
+exports.internetExplorer = internetExplorer;
\ No newline at end of file
diff --git a/dist/fa/intersex.js b/dist/fa/intersex.js
new file mode 100644
index 000000000..802c51916
--- /dev/null
+++ b/dist/fa/intersex.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.intersex = void 0;
+var intersex = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-149-16-270.5-103t-186.5-223.5-53-291.5q16-204 160-353.5t347-172.5q118-14 228 19t198 103l255-254h-134q-14 0-23-9t-9-23v-64zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.intersex = intersex;
\ No newline at end of file
diff --git a/dist/fa/ioxhost.js b/dist/fa/ioxhost.js
new file mode 100644
index 000000000..bd881cb12
--- /dev/null
+++ b/dist/fa/ioxhost.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ioxhost = void 0;
+var ioxhost = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1463 832q0 35-25 60.5t-61 25.5h-702q-36 0-61-25.5t-25-60.5 25-60.5 61-25.5h702q36 0 61 25.5t25 60.5zM1677 832q0-86-23-170h-982q-36 0-61-25t-25-60q0-36 25-61t61-25h908q-88-143-235-227t-320-84q-177 0-327.5 87.5t-238 237.5-87.5 327q0 86 23 170h982q36 0 61 25t25 60q0 36-25 61t-61 25h-908q88 143 235.5 227t320.5 84q132 0 253-51.5t208-139 139-208 52-253.5zM2048 577q0 35-25 60t-61 25h-131q17 85 17 170 0 167-65.5 319.5t-175.5 263-262.5 176-319.5 65.5q-246 0-448.5-133t-301.5-350h-189q-36 0-61-25t-25-61q0-35 25-60t61-25h132q-17-85-17-170 0-167 65.5-319.5t175.5-263 262.5-176 320.5-65.5q245 0 447.5 133t301.5 350h188q36 0 61 25t25 61z"
+ }
+ }]
+};
+exports.ioxhost = ioxhost;
\ No newline at end of file
diff --git a/dist/fa/italic.js b/dist/fa/italic.js
new file mode 100644
index 000000000..0883961fa
--- /dev/null
+++ b/dist/fa/italic.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.italic = void 0;
+var italic = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 1662l17-85q22-7 61.5-16.5t72-19 59.5-23.5q28-35 41-101 1-7 62-289t114-543.5 52-296.5v-25q-24-13-54.5-18.5t-69.5-8-58-5.5l19-103q33 2 120 6.5t149.5 7 120.5 2.5q48 0 98.5-2.5t121-7 98.5-6.5q-5 39-19 89-30 10-101.5 28.5t-108.5 33.5q-8 19-14 42.5t-9 40-7.5 45.5-6.5 42q-27 148-87.5 419.5t-77.5 355.5q-2 9-13 58t-20 90-16 83.5-6 57.5l1 18q17 4 185 31-3 44-16 99-11 0-32.5 1.5t-32.5 1.5q-29 0-87-10t-86-10q-138-2-206-2-51 0-143 9t-121 11z"
+ }
+ }]
+};
+exports.italic = italic;
\ No newline at end of file
diff --git a/dist/fa/joomla.js b/dist/fa/joomla.js
new file mode 100644
index 000000000..73b011a0e
--- /dev/null
+++ b/dist/fa/joomla.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.joomla = void 0;
+var joomla = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1070 1073l-160 160-151 152-30 30q-65 64-151.5 87t-171.5 2q-16 70-72 115t-129 45q-85 0-145-60.5t-60-145.5q0-72 44.5-128t113.5-72q-22-86 1-173t88-152l12-12 151 152-11 11q-37 37-37 89t37 90q37 37 89 37t89-37l30-30 151-152 161-160zM729 391l12 12-152 152-12-12q-37-37-89-37t-89 37-37 89.5 37 89.5l29 29 152 152 160 160-151 152-161-160-151-152-30-30q-68-67-90-159.5t5-179.5q-70-15-115-71t-45-129q0-85 60-145.5t145-60.5q76 0 133.5 49t69.5 123q84-20 169.5 3.5t149.5 87.5zM1536 1458q0 85-60 145.5t-145 60.5q-74 0-131-47t-71-118q-86 28-179.5 6t-161.5-90l-11-12 151-152 12 12q37 37 89 37t89-37 37-89-37-89l-30-30-152-152-160-160 152-152 160 160 152 152 29 30q64 64 87.5 150.5t2.5 171.5q76 11 126.5 68.5t50.5 134.5zM1534 334q0 77-51 135t-127 69q26 85 3 176.5t-90 158.5l-12 12-151-152 12-12q37-37 37-89t-37-89-89-37-89 37l-30 30-152 152-160 160-152-152 161-160 152-152 29-30q67-67 159-89.5t178 3.5q11-75 68.5-126t135.5-51q85 0 145 60.5t60 145.5z"
+ }
+ }]
+};
+exports.joomla = joomla;
\ No newline at end of file
diff --git a/dist/fa/jpy.js b/dist/fa/jpy.js
new file mode 100644
index 000000000..36da23ea9
--- /dev/null
+++ b/dist/fa/jpy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.jpy = void 0;
+var jpy = {
+ "viewBox": "0 0 1027 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z"
+ }
+ }]
+};
+exports.jpy = jpy;
\ No newline at end of file
diff --git a/dist/fa/jsfiddle.js b/dist/fa/jsfiddle.js
new file mode 100644
index 000000000..5e4d5175b
--- /dev/null
+++ b/dist/fa/jsfiddle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.jsfiddle = void 0;
+var jsfiddle = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1800 772q111 46 179.5 145.5t68.5 221.5q0 164-118 280.5t-285 116.5q-4 0-11.5-0.5t-10.5-0.5h-1209-1-2-5q-170-10-288-125.5t-118-280.5q0-110 55-203t147-147q-12-39-12-82 0-115 82-196t199-81q95 0 172 58 75-154 222.5-248t326.5-94q166 0 306 80.5t221.5 218.5 81.5 301q0 6-0.5 18t-0.5 18zM468 1038q0 122 84 193t208 71q137 0 240-99-16-20-47.5-56.5t-43.5-50.5q-67 65-144 65-55 0-93.5-33.5t-38.5-87.5q0-53 38.5-87t91.5-34q44 0 84.5 21t73 55 65 75 69 82 77 75 97 55 121.5 21q121 0 204.5-71.5t83.5-190.5q0-121-84-192t-207-71q-143 0-241 97l93 108q66-64 142-64 52 0 92 33t40 84q0 57-37 91.5t-94 34.5q-43 0-82.5-21t-72-55-65.5-75-69.5-82-77.5-75-96.5-55-118.5-21q-122 0-207 70.5t-85 189.5z"
+ }
+ }]
+};
+exports.jsfiddle = jsfiddle;
\ No newline at end of file
diff --git a/dist/fa/key.js b/dist/fa/key.js
new file mode 100644
index 000000000..9fde34036
--- /dev/null
+++ b/dist/fa/key.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.key = void 0;
+var key = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M832 512q0-80-56-136t-136-56-136 56-56 136q0 42 19 83-41-19-83-19-80 0-136 56t-56 136 56 136 136 56 136-56 56-136q0-42-19-83 41 19 83 19 80 0 136-56t56-136zM1683 1216q0 17-49 66t-66 49q-9 0-28.5-16t-36.5-33-38.5-40-24.5-26l-96 96 220 220q28 28 28 68 0 42-39 81t-81 39q-40 0-68-28l-671-671q-176 131-365 131-163 0-265.5-102.5t-102.5-265.5q0-160 95-313t248-248 313-95q163 0 265.5 102.5t102.5 265.5q0 189-131 365l355 355 96-96q-3-3-26-24.5t-40-38.5-33-36.5-16-28.5q0-17 49-66t66-49q13 0 23 10 6 6 46 44.5t82 79.5 86.5 86 73 78 28.5 41z"
+ }
+ }]
+};
+exports.key = key;
\ No newline at end of file
diff --git a/dist/fa/keyboardO.js b/dist/fa/keyboardO.js
new file mode 100644
index 000000000..8483366a7
--- /dev/null
+++ b/dist/fa/keyboardO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.keyboardO = void 0;
+var keyboardO = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1168v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM512 912v96q0 16-16 16h-224q-16 0-16-16v-96q0-16 16-16h224q16 0 16 16zM384 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1408 1168v96q0 16-16 16h-864q-16 0-16-16v-96q0-16 16-16h864q16 0 16 16zM768 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM640 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1024 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM896 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1280 912v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1664 1168v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1152 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1408 656v96q0 16-16 16h-96q-16 0-16-16v-96q0-16 16-16h96q16 0 16 16zM1664 656v352q0 16-16 16h-224q-16 0-16-16v-96q0-16 16-16h112v-240q0-16 16-16h96q16 0 16 16zM1792 1408v-896h-1664v896h1664zM1920 512v896q0 53-37.5 90.5t-90.5 37.5h-1664q-53 0-90.5-37.5t-37.5-90.5v-896q0-53 37.5-90.5t90.5-37.5h1664q53 0 90.5 37.5t37.5 90.5z"
+ }
+ }]
+};
+exports.keyboardO = keyboardO;
\ No newline at end of file
diff --git a/dist/fa/krw.js b/dist/fa/krw.js
new file mode 100644
index 000000000..e5ee4e90a
--- /dev/null
+++ b/dist/fa/krw.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.krw = void 0;
+var krw = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M514 1195l81-299h-159l75 300q1 1 1 3t1 3q0-1 0.5-3.5t0.5-3.5zM630 768l35-128h-292l32 128h225zM822 768h139l-35-128h-70zM1271 1196l78-300h-162l81 299q0 1 0.5 3.5t1.5 3.5q0-1 0.5-3t0.5-3zM1382 768l33-128h-297l34 128h230zM1792 800v64q0 14-9 23t-23 9h-213l-164 616q-7 24-31 24h-159q-24 0-31-24l-166-616h-209l-167 616q-7 24-31 24h-159q-11 0-19.5-7t-10.5-17l-160-616h-208q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h175l-33-128h-142q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h109l-89-344q-5-15 5-28 10-12 26-12h137q26 0 31 24l90 360h359l97-360q7-24 31-24h126q24 0 31 24l98 360h365l93-360q5-24 31-24h137q16 0 26 12 10 13 5 28l-91 344h111q14 0 23 9t9 23v64q0 14-9 23t-23 9h-145l-34 128h179q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.krw = krw;
\ No newline at end of file
diff --git a/dist/fa/language.js b/dist/fa/language.js
new file mode 100644
index 000000000..8d89b46fb
--- /dev/null
+++ b/dist/fa/language.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.language = void 0;
+var language = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M654 1078q-1 3-12.5-0.5t-31.5-11.5l-20-9q-44-20-87-49-7-5-41-31.5t-38-28.5q-67 103-134 181-81 95-105 110-4 2-19.5 4t-18.5 0q6-4 82-92 21-24 85.5-115t78.5-118q17-30 51-98.5t36-77.5q-8-1-110 33-8 2-27.5 7.5t-34.5 9.5-17 5q-2 2-2 10.5t-1 9.5q-5 10-31 15-23 7-47 0-18-4-28-21-4-6-5-23 6-2 24.5-5t29.5-6q58-16 105-32 100-35 102-35 10-2 43-19.5t44-21.5q9-3 21.5-8t14.5-5.5 6 0.5q2 12-1 33 0 2-12.5 27t-26.5 53.5-17 33.5q-25 50-77 131l64 28q12 6 74.5 32t67.5 28q4 1 10.5 25.5t4.5 30.5zM449 592q3 15-4 28-12 23-50 38-30 12-60 12-26-3-49-26-14-15-18-41l1-3q3 3 19.5 5t26.5 0 58-16q36-12 55-14 17 0 21 17zM1147 721l63 227-139-42zM39 1521l694-232v-1032l-694 233v1031zM1280 1204l102 31-181-657-100-31-216 536 102 31 45-110 211 65zM777 242l573 184v-380zM1088 1565l158 13-54 160-40-66q-130 83-276 108-58 12-91 12h-84q-79 0-199.5-39t-183.5-85q-8-7-8-16 0-8 5-13.5t13-5.5q4 0 18 7.5t30.5 16.5 20.5 11q73 37 159.5 61.5t157.5 24.5q95 0 167-14.5t157-50.5q15-7 30.5-15.5t34-19 28.5-16.5zM1536 486v1079l-774-246q-14 6-375 127.5t-368 121.5q-13 0-18-13 0-1-1-3v-1078q3-9 4-10 5-6 20-11 107-36 149-50v-384l558 198q2 0 160.5-55t316-108.5 161.5-53.5q20 0 20 21v418z"
+ }
+ }]
+};
+exports.language = language;
\ No newline at end of file
diff --git a/dist/fa/laptop.js b/dist/fa/laptop.js
new file mode 100644
index 000000000..ec22eff4c
--- /dev/null
+++ b/dist/fa/laptop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.laptop = void 0;
+var laptop = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416 1280q-66 0-113-47t-47-113v-704q0-66 47-113t113-47h1088q66 0 113 47t47 113v704q0 66-47 113t-113 47h-1088zM384 416v704q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5-9.5t9.5-22.5v-704q0-13-9.5-22.5t-22.5-9.5h-1088q-13 0-22.5 9.5t-9.5 22.5zM1760 1344h160v96q0 40-47 68t-113 28h-1600q-66 0-113-28t-47-68v-96h160 1600zM1040 1440q16 0 16-16t-16-16h-160q-16 0-16 16t16 16h160z"
+ }
+ }]
+};
+exports.laptop = laptop;
\ No newline at end of file
diff --git a/dist/fa/lastfm.js b/dist/fa/lastfm.js
new file mode 100644
index 000000000..31f512cef
--- /dev/null
+++ b/dist/fa/lastfm.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lastfm = void 0;
+var lastfm = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1292 704q0 6 10 41 10 29 25 49.5t41 34 44 20 55 16.5q325 91 325 332 0 146-105.5 242.5t-254.5 96.5q-59 0-111.5-18.5t-91.5-45.5-77-74.5-63-87.5-53.5-103.5-43.5-103-39.5-106.5-35.5-95q-32-81-61.5-133.5t-73.5-96.5-104-64-142-20q-96 0-183 55.5t-138 144.5-51 185q0 160 106.5 279.5t263.5 119.5q177 0 258-95 56-63 83-116l84 152q-15 34-44 70l1 1q-131 152-388 152-147 0-269.5-79t-190.5-207.5-68-274.5q0-105 43.5-206t116-176.5 172-121.5 204.5-46q87 0 159 19t123.5 50 95 80 72.5 99 58.5 117 50.5 124.5 50 130.5 55 127q96 200 233 200 81 0 138.5-48.5t57.5-128.5q0-42-19-72t-50.5-46-72.5-31.5-84.5-27-87.5-34-81-52-65-82-39-122.5q-3-16-3-33 0-110 87.5-192t198.5-78q78 3 120.5 14.5t90.5 53.5h-1q12 11 23 24.5t26 36 19 27.5l-129 99q-26-49-54-70v-1q-23-21-97-21-49 0-84 33t-35 83z"
+ }
+ }]
+};
+exports.lastfm = lastfm;
\ No newline at end of file
diff --git a/dist/fa/lastfmSquare.js b/dist/fa/lastfmSquare.js
new file mode 100644
index 000000000..5d483ecd0
--- /dev/null
+++ b/dist/fa/lastfmSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lastfmSquare = void 0;
+var lastfmSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1432 1052q0-173-234-239-35-10-53-16.5t-38-25-29-46.5q0-2-2-8.5t-3-12-1-7.5q0-36 24.5-59.5t60.5-23.5q54 0 71 15h-1q20 15 39 51l93-71q-39-54-49-64-33-29-67.5-39t-85.5-10q-80 0-142 57.5t-62 137.5q0 7 2 23 16 96 64.5 140t148.5 73q29 8 49 15.5t45 21.5 38.5 34.5 13.5 46.5v5q1 58-40.5 93t-100.5 35q-97 0-167-144-23-47-51.5-121.5t-48-125.5-54-110.5-74-95.5-103.5-60.5-147-24.5q-101 0-192 56t-144 148-50 192v1q4 108 50.5 199t133.5 147.5 196 56.5q186 0 279-110 20-27 31-51l-60-109q-42 80-99 116t-146 36q-115 0-191-87t-76-204q0-105 82-189t186-84q112 0 170 53.5t104 172.5q8 21 25.5 68.5t28.5 76.5 31.5 74.5 38.5 74 45.5 62.5 55.5 53.5 66 33 80 13.5q107 0 183-69.5t76-174.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.lastfmSquare = lastfmSquare;
\ No newline at end of file
diff --git a/dist/fa/leaf.js b/dist/fa/leaf.js
new file mode 100644
index 000000000..f4aa2f431
--- /dev/null
+++ b/dist/fa/leaf.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.leaf = void 0;
+var leaf = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 704q0-26-19-45t-45-19q-172 0-318 49.5t-259.5 134-235.5 219.5q-19 21-19 45 0 26 19 45t45 19q24 0 45-19 27-24 74-71t67-66q137-124 268.5-176t313.5-52q26 0 45-19t19-45zM1792 506q0 95-20 193-46 224-184.5 383t-357.5 268q-214 108-438 108-148 0-286-47-15-5-88-42t-96-37q-16 0-39.5 32t-45 70-52.5 70-60 32q-43 0-63.5-17.5t-45.5-59.5q-2-4-6-11t-5.5-10-3-9.5-1.5-13.5q0-35 31-73.5t68-65.5 68-56 31-48q0-4-14-38t-16-44q-9-51-9-104 0-115 43.5-220t119-184.5 170.5-139 204-95.5q55-18 145-25.5t179.5-9 178.5-6 163.5-24 113.5-56.5l29.5-29.5t29.5-28 27-20 36.5-16 43.5-4.5q39 0 70.5 46t47.5 112 24 124 8 96z"
+ }
+ }]
+};
+exports.leaf = leaf;
\ No newline at end of file
diff --git a/dist/fa/leanpub.js b/dist/fa/leanpub.js
new file mode 100644
index 000000000..a84ad139e
--- /dev/null
+++ b/dist/fa/leanpub.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.leanpub = void 0;
+var leanpub = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1893 392l155 1272q-131 0-257-57-200-91-393-91-226 0-374 148-148-148-374-148-193 0-393 91-128 57-252 57h-5l155-1272q224-127 482-127 233 0 387 106 154-106 387-106 258 0 482 127zM1398 1379q129 0 232 28.5t260 93.5l-124-1021q-171-78-368-78-224 0-374 141-150-141-374-141-197 0-368 78l-124 1021q105-43 165.5-65t148.5-39.5 178-17.5q202 0 374 108 172-108 374-108zM1438 1345l-55-907q-211 4-359 155-152-155-374-155-176 0-336 66l-114 941q124-51 228.5-76t221.5-25q209 0 374 102 172-107 374-102z"
+ }
+ }]
+};
+exports.leanpub = leanpub;
\ No newline at end of file
diff --git a/dist/fa/legal.js b/dist/fa/legal.js
new file mode 100644
index 000000000..67895198c
--- /dev/null
+++ b/dist/fa/legal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.legal = void 0;
+var legal = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1771 1536q0 53-37 90l-107 108q-39 37-91 37-53 0-90-37l-363-364q-38-36-38-90 0-53 43-96l-256-256-126 126q-14 14-34 14t-34-14q2 2 12.5 12t12.5 13 10 11.5 10 13.5 6 13.5 5.5 16.5 1.5 18q0 38-28 68-3 3-16.5 18t-19 20.5-18.5 16.5-22 15.5-22 9-26 4.5q-40 0-68-28l-408-408q-28-28-28-68 0-13 4.5-26t9-22 15.5-22 16.5-18.5 20.5-19 18-16.5q30-28 68-28 10 0 18 1.5t16.5 5.5 13.5 6 13.5 10 11.5 10 13 12.5 12 12.5q-14-14-14-34t14-34l348-348q14-14 34-14t34 14q-2-2-12.5-12t-12.5-13-10-11.5-10-13.5-6-13.5-5.5-16.5-1.5-18q0-38 28-68 3-3 16.5-18t19-20.5 18.5-16.5 22-15.5 22-9 26-4.5q40 0 68 28l408 408q28 28 28 68 0 13-4.5 26t-9 22-15.5 22-16.5 18.5-20.5 19-18 16.5q-30 28-68 28-10 0-18-1.5t-16.5-5.5-13.5-6-13.5-10-11.5-10-13-12.5-12-12.5q14 14 14 34t-14 34l-126 126 256 256q43-43 96-43 52 0 91 37l363 363q37 39 37 91z"
+ }
+ }]
+};
+exports.legal = legal;
\ No newline at end of file
diff --git a/dist/fa/lemonO.js b/dist/fa/lemonO.js
new file mode 100644
index 000000000..b7ca6495d
--- /dev/null
+++ b/dist/fa/lemonO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lemonO = void 0;
+var lemonO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1407 826q0-44-7-113.5t-18-96.5q-12-30-17-44t-9-36.5-4-48.5q0-23 5-68.5t5-67.5q0-37-10-55-4-1-13-1-19 0-58 4.5t-59 4.5q-60 0-176-24t-175-24q-43 0-94.5 11.5t-85 23.5-89.5 34q-137 54-202 103-96 73-159.5 189.5t-88 236-24.5 248.5q0 40 12.5 120t12.5 121q0 23-11 66.5t-11 65.5 12 36.5 34 14.5q24 0 72.5-11t73.5-11q57 0 169.5 15.5t169.5 15.5q181 0 284-36 129-45 235.5-152.5t166-245.5 59.5-275zM1535 824q0 165-70 327.5t-196 288-281 180.5q-124 44-326 44-57 0-170-14.5t-169-14.5q-24 0-72.5 14.5t-73.5 14.5q-73 0-123.5-55.5t-50.5-128.5q0-24 11-68t11-67q0-40-12.5-120.5t-12.5-121.5q0-111 18-217.5t54.5-209.5 100.5-194 150-156q78-59 232-120 194-78 316-78 60 0 175.5 24t173.5 24q19 0 57-5t58-5q81 0 118 50.5t37 134.5q0 23-5 68t-5 68q0 13 2 25t3.5 16.5 7.5 20.5 8 20q16 40 25 118.5t9 136.5z"
+ }
+ }]
+};
+exports.lemonO = lemonO;
\ No newline at end of file
diff --git a/dist/fa/levelDown.js b/dist/fa/levelDown.js
new file mode 100644
index 000000000..77692389e
--- /dev/null
+++ b/dist/fa/levelDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.levelDown = void 0;
+var levelDown = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32 256h704q13 0 22.5 9.5t9.5 23.5v863h192q40 0 58 37t-9 69l-320 384q-18 22-49 22t-49-22l-320-384q-26-31-9-69 18-37 58-37h192v-640h-320q-14 0-25-11l-160-192q-13-14-4-34 9-19 29-19z"
+ }
+ }]
+};
+exports.levelDown = levelDown;
\ No newline at end of file
diff --git a/dist/fa/levelUp.js b/dist/fa/levelUp.js
new file mode 100644
index 000000000..94041d7de
--- /dev/null
+++ b/dist/fa/levelUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.levelUp = void 0;
+var levelUp = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1018 603q-18 37-58 37h-192v864q0 14-9 23t-23 9h-704q-21 0-29-18-8-20 4-35l160-192q9-11 25-11h320v-640h-192q-40 0-58-37-17-37 9-68l320-384q18-22 49-22t49 22l320 384q27 32 9 68z"
+ }
+ }]
+};
+exports.levelUp = levelUp;
\ No newline at end of file
diff --git a/dist/fa/lifeBouy.js b/dist/fa/lifeBouy.js
new file mode 100644
index 000000000..14a94cdf0
--- /dev/null
+++ b/dist/fa/lifeBouy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lifeBouy = void 0;
+var lifeBouy = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z"
+ }
+ }]
+};
+exports.lifeBouy = lifeBouy;
\ No newline at end of file
diff --git a/dist/fa/lifeBuoy.js b/dist/fa/lifeBuoy.js
new file mode 100644
index 000000000..fdbf5dff8
--- /dev/null
+++ b/dist/fa/lifeBuoy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lifeBuoy = void 0;
+var lifeBuoy = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z"
+ }
+ }]
+};
+exports.lifeBuoy = lifeBuoy;
\ No newline at end of file
diff --git a/dist/fa/lifeRing.js b/dist/fa/lifeRing.js
new file mode 100644
index 000000000..3e322e76f
--- /dev/null
+++ b/dist/fa/lifeRing.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lifeRing = void 0;
+var lifeRing = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z"
+ }
+ }]
+};
+exports.lifeRing = lifeRing;
\ No newline at end of file
diff --git a/dist/fa/lifeSaver.js b/dist/fa/lifeSaver.js
new file mode 100644
index 000000000..a64662c6e
--- /dev/null
+++ b/dist/fa/lifeSaver.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lifeSaver = void 0;
+var lifeSaver = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z"
+ }
+ }]
+};
+exports.lifeSaver = lifeSaver;
\ No newline at end of file
diff --git a/dist/fa/lightbulbO.js b/dist/fa/lightbulbO.js
new file mode 100644
index 000000000..e07e3bd0d
--- /dev/null
+++ b/dist/fa/lightbulbO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lightbulbO = void 0;
+var lightbulbO = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M736 576q0 13-9.5 22.5t-22.5 9.5-22.5-9.5-9.5-22.5q0-46-54-71t-106-25q-13 0-22.5-9.5t-9.5-22.5 9.5-22.5 22.5-9.5q50 0 99.5 16t87 54 37.5 90zM896 576q0-72-34.5-134t-90-101.5-123-62-136.5-22.5-136.5 22.5-123 62-90 101.5-34.5 134q0 101 68 180 10 11 30.5 33t30.5 33q128 153 141 298h228q13-145 141-298 10-11 30.5-33t30.5-33q68-79 68-180zM1024 576q0 155-103 268-45 49-74.5 87t-59.5 95.5-34 107.5q47 28 47 82 0 37-25 64 25 27 25 64 0 52-45 81 13 23 13 47 0 46-31.5 71t-77.5 25q-20 44-60 70t-87 26-87-26-60-70q-46 0-77.5-25t-31.5-71q0-24 13-47-45-29-45-81 0-37 25-64-25-27-25-64 0-54 47-82-4-50-34-107.5t-59.5-95.5-74.5-87q-103-113-103-268 0-99 44.5-184.5t117-142 164-89 186.5-32.5 186.5 32.5 164 89 117 142 44.5 184.5z"
+ }
+ }]
+};
+exports.lightbulbO = lightbulbO;
\ No newline at end of file
diff --git a/dist/fa/lineChart.js b/dist/fa/lineChart.js
new file mode 100644
index 000000000..2bf6d8304
--- /dev/null
+++ b/dist/fa/lineChart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lineChart = void 0;
+var lineChart = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2048 1536v128h-2048v-1536h128v1408h1920zM1920 288v435q0 21-19.5 29.5t-35.5-7.5l-121-121-633 633q-10 10-23 10t-23-10l-233-233-416 416-192-192 585-585q10-10 23-10t23 10l233 233 464-464-121-121q-16-16-7.5-35.5t29.5-19.5h435q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.lineChart = lineChart;
\ No newline at end of file
diff --git a/dist/fa/link.js b/dist/fa/link.js
new file mode 100644
index 000000000..f37379eb7
--- /dev/null
+++ b/dist/fa/link.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.link = void 0;
+var link = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1456 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zM753 511q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z"
+ }
+ }]
+};
+exports.link = link;
\ No newline at end of file
diff --git a/dist/fa/linkedin.js b/dist/fa/linkedin.js
new file mode 100644
index 000000000..7df89d41c
--- /dev/null
+++ b/dist/fa/linkedin.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.linkedin = void 0;
+var linkedin = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M349 625v991h-330v-991h330zM370 319q1 73-50.5 122t-135.5 49h-2q-82 0-132-49t-50-122q0-74 51.5-122.5t134.5-48.5 133 48.5 51 122.5zM1536 1048v568h-329v-530q0-105-40.5-164.5t-126.5-59.5q-63 0-105.5 34.5t-63.5 85.5q-11 30-11 81v553h-329q2-399 2-647t-1-296l-1-48h329v144h-2q20-32 41-56t56.5-52 87-43.5 114.5-15.5q171 0 275 113.5t104 332.5z"
+ }
+ }]
+};
+exports.linkedin = linkedin;
\ No newline at end of file
diff --git a/dist/fa/linkedinSquare.js b/dist/fa/linkedinSquare.js
new file mode 100644
index 000000000..5c0126f7e
--- /dev/null
+++ b/dist/fa/linkedinSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.linkedinSquare = void 0;
+var linkedinSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M237 1414h231v-694h-231v694zM483 506q-1-52-36-86t-93-34-94.5 34-36.5 86q0 51 35.5 85.5t92.5 34.5h1q59 0 95-34.5t36-85.5zM1068 1414h231v-398q0-154-73-233t-193-79q-136 0-209 117h2v-101h-231q3 66 0 694h231v-388q0-38 7-56 15-35 45-59.5t74-24.5q116 0 116 157v371zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.linkedinSquare = linkedinSquare;
\ No newline at end of file
diff --git a/dist/fa/linode.js b/dist/fa/linode.js
new file mode 100644
index 000000000..590cbe3dc
--- /dev/null
+++ b/dist/fa/linode.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.linode = void 0;
+var linode = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M330 1535l202 214-34-236-216-213zM556 1761l274-218-11-245-300 215zM245 1123l227 213-48-327-245-204zM495 1347l317-214-14-324-352 200zM843 1358l95 80-2-239-103-79q0 1 1 8.5t0 12-5 7.5l-78 52 85 70q7 6 7 88zM138 606l256 200-68-465-279-173zM1173 1269l15-234-230 164 2 240zM417 814l373-194-19-441-423 163zM1270 1179l20-233-226-142-2 105 144 95q6 4 4 9l-7 119zM1461 1040l30-222-179 128-20 228zM1273 1207l-71-49-8 117q0 5-4 8l-234 187q-7 5-14 0l-98-83 7 161q0 5-4 8l-293 234q-4 2-6 2-8-2-8-3l-228-242q-4-4-59-277-2-7 5-11l61-37q-94-86-95-92l-72-351q-2-7 6-12l94-45q-133-100-135-108l-96-466q-2-10 7-13l433-135q5 0 8 1l317 153q6 4 6 9l20 463q0 7-6 10l-118 61 126 85q5 2 5 8l5 123 121-74q5-4 11 0l84 56 3-110q0-6 5-9l206-126q6-3 11 0l245 135q4 4 5 7t-6.5 60-17.5 124.5-10 70.5q0 5-4 7l-191 153q-6 5-13 0z"
+ }
+ }]
+};
+exports.linode = linode;
\ No newline at end of file
diff --git a/dist/fa/linux.js b/dist/fa/linux.js
new file mode 100644
index 000000000..114fb1938
--- /dev/null
+++ b/dist/fa/linux.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.linux = void 0;
+var linux = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M663 411q-11 1-15.5 10.5t-8.5 9.5q-5 1-5-5 0-12 19-15h10zM750 425q-4 1-11.5-6.5t-17.5-4.5q24-11 32 2 3 6-3 9zM399 852q-4-1-6 3t-4.5 12.5-5.5 13.5-10 13q-10 11-1 12 4 1 12.5-7t12.5-18q1-3 2-7t2-6 1.5-4.5 0.5-4v-3t-1-2.5-3-2zM1254 1211q0-18-55-42 4-15 7.5-27.5t5-26 3-21.5 0.5-22.5-1-19.5-3.5-22-4-20.5-5-25-5.5-26.5q-10-48-47-103t-72-75q24 20 57 83 87 162 54 278-11 40-50 42-31 4-38.5-18.5t-8-83.5-11.5-107q-9-39-19.5-69t-19.5-45.5-15.5-24.5-13-15-7.5-7q-14-62-31-103t-29.5-56-23.5-33-15-40q-4-21 6-53.5t4.5-49.5-44.5-25q-15-3-44.5-18t-35.5-16q-8-1-11-26t8-51 36-27q37-3 51 30t4 58q-11 19-2 26.5t30 0.5q13-4 13-36v-37q-5-30-13.5-50t-21-30.5-23.5-15-27-7.5q-107 8-89 134 0 15-1 15-9-9-29.5-10.5t-33 0.5-15.5-5q1-57-16-90t-45-34q-27-1-41.5 27.5t-16.5 59.5q-1 15 3.5 37t13 37.5 15.5 13.5q10-3 16-14 4-9-7-8-7 0-15.5-14.5t-9.5-33.5q-1-22 9-37t34-14q17 0 27 21t9.5 39-1.5 22q-22 15-31 29-8 12-27.5 23.5t-20.5 12.5q-13 14-15.5 27t7.5 18q14 8 25 19.5t16 19 18.5 13 35.5 6.5q47 2 102-15 2-1 23-7t34.5-10.5 29.5-13 21-17.5q9-14 20-8 5 3 6.5 8.5t-3 12-16.5 9.5q-20 6-56.5 21.5t-45.5 19.5q-44 19-70 23-25 5-79-2-10-2-9 2t17 19q25 23 67 22 17-1 36-7t36-14 33.5-17.5 30-17 24.5-12 17.5-2.5 8.5 11q0 2-1 4.5t-4 5-6 4.5-8.5 5-9 4.5-10 5-9.5 4.5q-28 14-67.5 44t-66.5 43-49 1q-21-11-63-73-22-31-25-22-1 3-1 10 0 25-15 56.5t-29.5 55.5-21 58 11.5 63q-23 6-62.5 90t-47.5 141q-2 18-1.5 69t-5.5 59q-8 24-29 3-32-31-36-94-2-28 4-56 4-19-1-18-2 1-4 5-36 65 10 166 5 12 25 28t24 20q20 23 104 90.5t93 76.5q16 15 17.5 38t-14 43-45.5 23q8 15 29 44.5t28 54 7 70.5q46-24 7-92-4-8-10.5-16t-9.5-12-2-6q3-5 13-9.5t20 2.5q46 52 166 36 133-15 177-87 23-38 34-30 12 6 10 52-1 25-23 92-9 23-6 37.5t24 15.5q3-19 14.5-77t13.5-90q2-21-6.5-73.5t-7.5-97 23-70.5q15-18 51-18 1-37 34.5-53t72.5-10.5 60 22.5zM626 384q3-17-2.5-30t-11.5-15q-9-2-9 7 2 5 5 6 10 0 7 15-3 20 8 20 3 0 3-3zM1045 581q-2-8-6.5-11.5t-13-5-14.5-5.5q-5-3-9.5-8t-7-8-5.5-6.5-4-4-4 1.5q-14 16 7 43.5t39 31.5q9 1 14.5-8t3.5-20zM867 368q0-11-5-19.5t-11-12.5-9-3q-6 0-8 2t0 4 5 3q14 4 18 31 0 3 8-2 2-2 2-3zM921 135q0-2-2.5-5t-9-7-9.5-6q-15-15-24-15-9 1-11.5 7.5t-1 13-0.5 12.5q-1 4-6 10.5t-6 9 3 8.5q4 3 8 0t11-9 15-9q1-1 9-1t15-2 9-7zM1486 1476q20 12 31 24.5t12 24-2.5 22.5-15.5 22-23.5 19.5-30 18.5-31.5 16.5-32 15.5-27 13q-38 19-85.5 56t-75.5 64q-17 16-68 19.5t-89-14.5q-18-9-29.5-23.5t-16.5-25.5-22-19.5-47-9.5q-44-1-130-1-19 0-57 1.5t-58 2.5q-44 1-79.5 15t-53.5 30-43.5 28.5-53.5 11.5q-29-1-111-31t-146-43q-19-4-51-9.5t-50-9-39.5-9.5-33.5-14.5-17-19.5q-10-23 7-66.5t18-54.5q1-16-4-40t-10-42.5-4.5-36.5 10.5-27q14-12 57-14t60-12q30-18 42-35t12-51q21 73-32 106-32 20-83 15-34-3-43 10-13 15 5 57 2 6 8 18t8.5 18 4.5 17 1 22q0 15-17 49t-14 48q3 17 37 26 20 6 84.5 18.5t99.5 20.5q24 6 74 22t82.5 23 55.5 4q43-6 64.5-28t23-48-7.5-58.5-19-52-20-36.5q-121-190-169-242-68-74-113-40-11 9-15-15-3-16-2-38 1-29 10-52t24-47 22-42q8-21 26.5-72t29.5-78 30-61 39-54q110-143 124-195-12-112-16-310-2-90 24-151.5t106-104.5q39-21 104-21 53-1 106 13.5t89 41.5q57 42 91.5 121.5t29.5 147.5q-5 95 30 214 34 113 133 218 55 59 99.5 163t59.5 191q8 49 5 84.5t-12 55.5-20 22q-10 2-23.5 19t-27 35.5-40.5 33.5-61 14q-18-1-31.5-5t-22.5-13.5-13.5-15.5-11.5-20.5-9-19.5q-22-37-41-30t-28 49 7 97q20 70 1 195-10 65 18 100.5t73 33 85-35.5q59-49 89.5-66.5t103.5-42.5q53-18 77-36.5t18.5-34.5-25-28.5-51.5-23.5q-33-11-49.5-48t-15-72.5 15.5-47.5q1 31 8 56.5t14.5 40.5 20.5 28.5 21 19 21.5 13 16.5 9.5z"
+ }
+ }]
+};
+exports.linux = linux;
\ No newline at end of file
diff --git a/dist/fa/list.js b/dist/fa/list.js
new file mode 100644
index 000000000..67e8140ee
--- /dev/null
+++ b/dist/fa/list.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.list = void 0;
+var list = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1312v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM256 928v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM256 544v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM256 160v192q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1344q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1344q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.list = list;
\ No newline at end of file
diff --git a/dist/fa/listAlt.js b/dist/fa/listAlt.js
new file mode 100644
index 000000000..3e9a960d2
--- /dev/null
+++ b/dist/fa/listAlt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.listAlt = void 0;
+var listAlt = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1184v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 928v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM384 672v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zM1536 1184v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 928v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 672v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zM1664 1376v-832q0-13-9.5-22.5t-22.5-9.5h-1472q-13 0-22.5 9.5t-9.5 22.5v832q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zM1792 288v1088q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.listAlt = listAlt;
\ No newline at end of file
diff --git a/dist/fa/listOl.js b/dist/fa/listOl.js
new file mode 100644
index 000000000..ee4e16b06
--- /dev/null
+++ b/dist/fa/listOl.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.listOl = void 0;
+var listOl = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M381 1620q0 80-54.5 126t-135.5 46q-106 0-172-66l57-88q49 45 106 45 29 0 50.5-14.5t21.5-42.5q0-64-105-56l-26-56q8-10 32.5-43.5t42.5-54 37-38.5v-1q-16 0-48.5 1t-48.5 1v53h-106v-152h333v88l-95 115q51 12 81 49t30 88zM383 993v159h-362q-6-36-6-54 0-51 23.5-93t56.5-68 66-47.5 56.5-43.5 23.5-45q0-25-14.5-38.5t-39.5-13.5q-46 0-81 58l-85-59q24-51 71.5-79.5t105.5-28.5q73 0 123 41.5t50 112.5q0 50-34 91.5t-75 64.5-75.5 50.5-35.5 52.5h127v-60h105zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zM384 413v99h-335v-99h107q0-41 0.5-121.5t0.5-121.5v-12h-2q-8 17-50 54l-71-76 136-127h106v404h108zM1792 800v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zM1792 288v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.listOl = listOl;
\ No newline at end of file
diff --git a/dist/fa/listUl.js b/dist/fa/listUl.js
new file mode 100644
index 000000000..b8089210a
--- /dev/null
+++ b/dist/fa/listUl.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.listUl = void 0;
+var listUl = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM384 896q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM384 384q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1792 800v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zM1792 288v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.listUl = listUl;
\ No newline at end of file
diff --git a/dist/fa/locationArrow.js b/dist/fa/locationArrow.js
new file mode 100644
index 000000000..de2321c6a
--- /dev/null
+++ b/dist/fa/locationArrow.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.locationArrow = void 0;
+var locationArrow = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1401 349l-640 1280q-17 35-57 35-5 0-15-2-22-5-35.5-22.5t-13.5-39.5v-576h-576q-22 0-39.5-13.5t-22.5-35.5 4-42 29-30l1280-640q13-7 29-7 27 0 45 19 15 14 18.5 34.5t-6.5 39.5z"
+ }
+ }]
+};
+exports.locationArrow = locationArrow;
\ No newline at end of file
diff --git a/dist/fa/lock.js b/dist/fa/lock.js
new file mode 100644
index 000000000..df2afc531
--- /dev/null
+++ b/dist/fa/lock.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lock = void 0;
+var lock = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320 768h512v-192q0-106-75-181t-181-75-181 75-75 181v192zM1152 864v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-192q0-184 132-316t316-132 316 132 132 316v192h32q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.lock = lock;
\ No newline at end of file
diff --git a/dist/fa/longArrowDown.js b/dist/fa/longArrowDown.js
new file mode 100644
index 000000000..881b9081e
--- /dev/null
+++ b/dist/fa/longArrowDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.longArrowDown = void 0;
+var longArrowDown = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M765 1299q8 19-5 35l-350 384q-10 10-23 10-14 0-24-10l-355-384q-13-16-5-35 9-19 29-19h224v-1248q0-14 9-23t23-9h192q14 0 23 9t9 23v1248h224q21 0 29 19z"
+ }
+ }]
+};
+exports.longArrowDown = longArrowDown;
\ No newline at end of file
diff --git a/dist/fa/longArrowLeft.js b/dist/fa/longArrowLeft.js
new file mode 100644
index 000000000..cd4dc8c03
--- /dev/null
+++ b/dist/fa/longArrowLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.longArrowLeft = void 0;
+var longArrowLeft = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 800v192q0 14-9 23t-23 9h-1248v224q0 21-19 29t-35-5l-384-350q-10-10-10-23 0-14 10-24l384-354q16-14 35-6 19 9 19 29v224h1248q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.longArrowLeft = longArrowLeft;
\ No newline at end of file
diff --git a/dist/fa/longArrowRight.js b/dist/fa/longArrowRight.js
new file mode 100644
index 000000000..3dc13dfb5
--- /dev/null
+++ b/dist/fa/longArrowRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.longArrowRight = void 0;
+var longArrowRight = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1728 893q0 14-10 24l-384 354q-16 14-35 6-19-9-19-29v-224h-1248q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h1248v-224q0-21 19-29t35 5l384 350q10 10 10 23z"
+ }
+ }]
+};
+exports.longArrowRight = longArrowRight;
\ No newline at end of file
diff --git a/dist/fa/longArrowUp.js b/dist/fa/longArrowUp.js
new file mode 100644
index 000000000..adbaacfc1
--- /dev/null
+++ b/dist/fa/longArrowUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.longArrowUp = void 0;
+var longArrowUp = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M765 493q-9 19-29 19h-224v1248q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-1248h-224q-21 0-29-19t5-35l350-384q10-10 23-10 14 0 24 10l355 384q13 16 5 35z"
+ }
+ }]
+};
+exports.longArrowUp = longArrowUp;
\ No newline at end of file
diff --git a/dist/fa/lowVision.js b/dist/fa/lowVision.js
new file mode 100644
index 000000000..60ee8f1da
--- /dev/null
+++ b/dist/fa/lowVision.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lowVision = void 0;
+var lowVision = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M335 1356q-2 0-6-2-86-57-168.5-145t-139.5-180q-21-30-21-69 0-9 2-19t4-18 7-18 8.5-16 10.5-17 10-15 12-15.5 11-14.5q184-251 452-365-110-198-110-211 0-19 17-29 116-64 128-64 18 0 28 16l124 229q92-19 192-19 266 0 497.5 137.5t378.5 369.5q20 31 20 69t-20 69q-91 142-218.5 253.5t-278.5 175.5q110 198 110 211 0 20-17 29-116 64-127 64-19 0-29-16l-124-229-64-119-444-820 7-7q-58 24-99 47 3 5 127 234t243 449 119 223q0 7-9 9-13 3-72 3-57 0-60-7l-456-841q-39 28-82 68 24 43 214 393.5t190 354.5q0 10-11 10-14 0-82.5-22t-72.5-28l-106-197-224-413q-44 53-78 106 2 3 18 25t23 34l176 327q0 10-10 10zM1165 1254l49 91q273-111 450-385-180-277-459-389 67 64 103 148.5t36 176.5q0 106-47 200.5t-132 157.5zM848 640q0 20 14 34t34 14q86 0 147 61t61 147q0 20 14 34t34 14 34-14 14-34q0-126-89-215t-215-89q-20 0-34 14t-14 34zM1214 575l-9-4 7 7z"
+ }
+ }]
+};
+exports.lowVision = lowVision;
\ No newline at end of file
diff --git a/dist/fa/magic.js b/dist/fa/magic.js
new file mode 100644
index 000000000..f22d1f352
--- /dev/null
+++ b/dist/fa/magic.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.magic = void 0;
+var magic = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1190 581l293-293-107-107-293 293zM1637 288q0 27-18 45l-1286 1286q-18 18-45 18t-45-18l-198-198q-18-18-18-45t18-45l1286-1286q18-18 45-18t45 18l198 198q18 18 18 45zM286 98l98 30-98 30-30 98-30-98-98-30 98-30 30-98zM636 260l196 60-196 60-60 196-60-196-196-60 196-60 60-196zM1566 738l98 30-98 30-30 98-30-98-98-30 98-30 30-98zM926 98l98 30-98 30-30 98-30-98-98-30 98-30 30-98z"
+ }
+ }]
+};
+exports.magic = magic;
\ No newline at end of file
diff --git a/dist/fa/magnet.js b/dist/fa/magnet.js
new file mode 100644
index 000000000..ed809ea17
--- /dev/null
+++ b/dist/fa/magnet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.magnet = void 0;
+var magnet = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 832v128q0 201-98.5 362t-274 251.5-395.5 90.5-395.5-90.5-274-251.5-98.5-362v-128q0-26 19-45t45-19h384q26 0 45 19t19 45v128q0 52 23.5 90t53.5 57 71 30 64 13 44 2 44-2 64-13 71-30 53.5-57 23.5-90v-128q0-26 19-45t45-19h384q26 0 45 19t19 45zM512 192v384q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h384q26 0 45 19t19 45zM1536 192v384q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h384q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.magnet = magnet;
\ No newline at end of file
diff --git a/dist/fa/mailForward.js b/dist/fa/mailForward.js
new file mode 100644
index 000000000..3e52bdb1e
--- /dev/null
+++ b/dist/fa/mailForward.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mailForward = void 0;
+var mailForward = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 640q0 26-19 45l-512 512q-19 19-45 19t-45-19-19-45v-256h-224q-98 0-175.5 6t-154 21.5-133 42.5-105.5 69.5-80 101-48.5 138.5-17.5 181q0 55 5 123 0 6 2.5 23.5t2.5 26.5q0 15-8.5 25t-23.5 10q-16 0-28-17-7-9-13-22t-13.5-30-10.5-24q-127-285-127-451 0-199 53-333 162-403 875-403h224v-256q0-26 19-45t45-19 45 19l512 512q19 19 19 45z"
+ }
+ }]
+};
+exports.mailForward = mailForward;
\ No newline at end of file
diff --git a/dist/fa/mailReply.js b/dist/fa/mailReply.js
new file mode 100644
index 000000000..183ef4eea
--- /dev/null
+++ b/dist/fa/mailReply.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mailReply = void 0;
+var mailReply = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1120q0 166-127 451-3 7-10.5 24t-13.5 30-13 22q-12 17-28 17-15 0-23.5-10t-8.5-25q0-9 2.5-26.5t2.5-23.5q5-68 5-123 0-101-17.5-181t-48.5-138.5-80-101-105.5-69.5-133-42.5-154-21.5-175.5-6h-224v256q0 26-19 45t-45 19-45-19l-512-512q-19-19-19-45t19-45l512-512q19-19 45-19t45 19 19 45v256h224q713 0 875 403 53 134 53 333z"
+ }
+ }]
+};
+exports.mailReply = mailReply;
\ No newline at end of file
diff --git a/dist/fa/mailReplyAll.js b/dist/fa/mailReplyAll.js
new file mode 100644
index 000000000..828e62cb3
--- /dev/null
+++ b/dist/fa/mailReplyAll.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mailReplyAll = void 0;
+var mailReplyAll = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1082v70q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v69l-397 398q-19 19-19 45t19 45zM1792 1120q0 58-17 133.5t-38.5 138-48 125-40.5 90.5l-20 40q-8 17-28 17-6 0-9-1-25-8-23-34 43-400-106-565-64-71-170.5-110.5t-267.5-52.5v251q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v262q411 28 599 221 169 173 169 509z"
+ }
+ }]
+};
+exports.mailReplyAll = mailReplyAll;
\ No newline at end of file
diff --git a/dist/fa/male.js b/dist/fa/male.js
new file mode 100644
index 000000000..bf906ce0f
--- /dev/null
+++ b/dist/fa/male.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.male = void 0;
+var male = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 704v416q0 40-28 68t-68 28-68-28-28-68v-352h-64v912q0 46-33 79t-79 33-79-33-33-79v-464h-64v464q0 46-33 79t-79 33-79-33-33-79v-912h-64v352q0 40-28 68t-68 28-68-28-28-68v-416q0-80 56-136t136-56h640q80 0 136 56t56 136zM736 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z"
+ }
+ }]
+};
+exports.male = male;
\ No newline at end of file
diff --git a/dist/fa/map.js b/dist/fa/map.js
new file mode 100644
index 000000000..fed403d6c
--- /dev/null
+++ b/dist/fa/map.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map = void 0;
+var map = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 0q13 0 22.5 9.5t9.5 22.5v1472q0 20-17 28l-480 256q-7 4-15 4-13 0-22.5-9.5t-9.5-22.5v-1472q0-20 17-28l480-256q7-4 15-4zM1760 0q13 0 22.5 9.5t9.5 22.5v1472q0 20-17 28l-480 256q-7 4-15 4-13 0-22.5-9.5t-9.5-22.5v-1472q0-20 17-28l480-256q7-4 15-4zM640 0q8 0 14 3l512 256q18 10 18 29v1472q0 13-9.5 22.5t-22.5 9.5q-8 0-14-3l-512-256q-18-10-18-29v-1472q0-13 9.5-22.5t22.5-9.5z"
+ }
+ }]
+};
+exports.map = map;
\ No newline at end of file
diff --git a/dist/fa/mapMarker.js b/dist/fa/mapMarker.js
new file mode 100644
index 000000000..a950843ef
--- /dev/null
+++ b/dist/fa/mapMarker.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mapMarker = void 0;
+var mapMarker = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 640q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zM1024 640q0 109-33 179l-364 774q-16 33-47.5 52t-67.5 19-67.5-19-46.5-52l-365-774q-33-70-33-179 0-212 150-362t362-150 362 150 150 362z"
+ }
+ }]
+};
+exports.mapMarker = mapMarker;
\ No newline at end of file
diff --git a/dist/fa/mapO.js b/dist/fa/mapO.js
new file mode 100644
index 000000000..674dfd07a
--- /dev/null
+++ b/dist/fa/mapO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mapO = void 0;
+var mapO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2020 11q28 20 28 53v1408q0 20-11 36t-29 23l-640 256q-24 11-48 0l-616-246-616 246q-10 5-24 5-19 0-36-11-28-20-28-53v-1408q0-20 11-36t29-23l640-256q24-11 48 0l616 246 616-246q32-13 60 6zM736 146v1270l576 230v-1270zM128 363v1270l544-217v-1270zM1920 1429v-1270l-544 217v1270z"
+ }
+ }]
+};
+exports.mapO = mapO;
\ No newline at end of file
diff --git a/dist/fa/mapPin.js b/dist/fa/mapPin.js
new file mode 100644
index 000000000..7a474f3f3
--- /dev/null
+++ b/dist/fa/mapPin.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mapPin = void 0;
+var mapPin = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1088q66 0 128-15v655q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-655q62 15 128 15zM512 0q212 0 362 150t150 362-150 362-362 150-362-150-150-362 150-362 362-150zM512 224q14 0 23-9t9-23-9-23-23-9q-146 0-249 103t-103 249q0 14 9 23t23 9 23-9 9-23q0-119 84.5-203.5t203.5-84.5z"
+ }
+ }]
+};
+exports.mapPin = mapPin;
\ No newline at end of file
diff --git a/dist/fa/mapSigns.js b/dist/fa/mapSigns.js
new file mode 100644
index 000000000..e41e4ad19
--- /dev/null
+++ b/dist/fa/mapSigns.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mapSigns = void 0;
+var mapSigns = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1745 297q10 10 10 23t-10 23l-141 141q-28 28-68 28h-1344q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h576v-64q0-26 19-45t45-19h128q26 0 45 19t19 45v64h512q40 0 68 28zM768 1216h256v512q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-512zM1600 768q26 0 45 19t19 45v256q0 26-19 45t-45 19h-1344q-40 0-68-28l-141-141q-10-10-10-23t10-23l141-141q28-28 68-28h512v-192h256v192h576z"
+ }
+ }]
+};
+exports.mapSigns = mapSigns;
\ No newline at end of file
diff --git a/dist/fa/mars.js b/dist/fa/mars.js
new file mode 100644
index 000000000..fcaa829b5
--- /dev/null
+++ b/dist/fa/mars.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mars = void 0;
+var mars = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1472 128q26 0 45 19t19 45v416q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-262l-382 383q126 156 126 359 0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5q203 0 359 126l382-382h-261q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h416zM576 1536q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.mars = mars;
\ No newline at end of file
diff --git a/dist/fa/marsDouble.js b/dist/fa/marsDouble.js
new file mode 100644
index 000000000..8086155ab
--- /dev/null
+++ b/dist/fa/marsDouble.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.marsDouble = void 0;
+var marsDouble = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 416q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q76 95 107.5 214t9.5 247q-31 182-166 312t-318 156q-210 29-384.5-80t-241.5-300q-117-6-221-57.5t-177.5-133-113.5-192.5-32-230q9-135 78-252t182-191.5 248-89.5q118-14 227.5 19t198.5 103l255-254h-134q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q59 74 93 169 182 9 328 124l255-254h-134q-14 0-23-9t-9-23v-64zM1024 832q0-20-4-58-162 25-271 150t-109 292q0 20 4 58 162-25 271-150t109-292zM128 832q0 168 111 294t276 149q-3-29-3-59 0-210 135-369.5t338-196.5q-53-120-163.5-193t-245.5-73q-185 0-316.5 131.5t-131.5 316.5zM1088 1664q185 0 316.5-131.5t131.5-316.5q0-168-111-294t-276-149q3 28 3 59 0 210-135 369.5t-338 196.5q53 120 163.5 193t245.5 73z"
+ }
+ }]
+};
+exports.marsDouble = marsDouble;
\ No newline at end of file
diff --git a/dist/fa/marsStroke.js b/dist/fa/marsStroke.js
new file mode 100644
index 000000000..2cdb5363a
--- /dev/null
+++ b/dist/fa/marsStroke.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.marsStroke = void 0;
+var marsStroke = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1472 128q26 0 45 19t19 45v416q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-262l-213 214 140 140q9 10 9 23t-9 22l-46 46q-9 9-22 9t-23-9l-140-141-78 79q126 156 126 359 0 117-45.5 223.5t-123 184-184 123-223.5 45.5-223.5-45.5-184-123-123-184-45.5-223.5 45.5-223.5 123-184 184-123 223.5-45.5q203 0 359 126l78-78-172-172q-9-10-9-23t9-22l46-46q9-9 22-9t23 9l172 172 213-213h-261q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h416zM576 1536q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.marsStroke = marsStroke;
\ No newline at end of file
diff --git a/dist/fa/marsStrokeH.js b/dist/fa/marsStrokeH.js
new file mode 100644
index 000000000..c456bf985
--- /dev/null
+++ b/dist/fa/marsStrokeH.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.marsStrokeH = void 0;
+var marsStrokeH = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1901 915q19 19 19 45t-19 45l-294 294q-9 10-22.5 10t-22.5-10l-45-45q-10-9-10-22.5t10-22.5l185-185h-294v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-132q-24 217-187.5 364.5t-384.5 147.5q-167 0-306-87t-212-236-54-319q15-133 88-245.5t188-182 249-80.5q155-12 292 52.5t224 186 103 271.5h132v-224q0-14 9-23t23-9h64q14 0 23 9t9 23v224h294l-185-185q-10-9-10-22.5t10-22.5l45-45q9-10 22.5-10t22.5 10zM576 1408q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.marsStrokeH = marsStrokeH;
\ No newline at end of file
diff --git a/dist/fa/marsStrokeV.js b/dist/fa/marsStrokeV.js
new file mode 100644
index 000000000..eaeac544c
--- /dev/null
+++ b/dist/fa/marsStrokeV.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.marsStrokeV = void 0;
+var marsStrokeV = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 644q217 24 364.5 187.5t147.5 384.5q0 167-87 306t-236 212-319 54q-133-15-245.5-88t-182-188-80.5-249q-12-155 52.5-292t186-224 271.5-103v-132h-160q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h160v-165l-92 92q-10 9-23 9t-22-9l-46-46q-9-9-9-22t9-23l202-201q19-19 45-19t45 19l202 201q9 10 9 23t-9 22l-46 46q-9 9-22 9t-23-9l-92-92v165h160q14 0 23 9t9 23v64q0 14-9 23t-23 9h-160v132zM576 1664q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.marsStrokeV = marsStrokeV;
\ No newline at end of file
diff --git a/dist/fa/maxcdn.js b/dist/fa/maxcdn.js
new file mode 100644
index 000000000..aaa698012
--- /dev/null
+++ b/dist/fa/maxcdn.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.maxcdn = void 0;
+var maxcdn = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1745 773l-164 763h-334l178-832q13-56-15-88-27-33-83-33h-169l-204 953h-334l204-953h-286l-204 953h-334l204-953-153-327h1276q101 0 189.5 40.5t147.5 113.5q60 73 81 168.5t0 194.5z"
+ }
+ }]
+};
+exports.maxcdn = maxcdn;
\ No newline at end of file
diff --git a/dist/fa/meanpath.js b/dist/fa/meanpath.js
new file mode 100644
index 000000000..4b30477b7
--- /dev/null
+++ b/dist/fa/meanpath.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.meanpath = void 0;
+var meanpath = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1311 842v114q0 24-13.5 38t-37.5 14h-202q-24 0-38-14t-14-38v-114q0-24 14-38t38-14h202q24 0 37.5 14t13.5 38zM821 1072v-250q0-53-32.5-85.5t-85.5-32.5h-133q-68 0-96 52-28-52-96-52h-130q-53 0-85.5 32.5t-32.5 85.5v250q0 22 21 22h55q22 0 22-22v-230q0-24 13.5-38t38.5-14h94q24 0 38 14t14 38v230q0 22 21 22h54q22 0 22-22v-230q0-24 14-38t38-14h97q24 0 37.5 14t13.5 38v230q0 22 22 22h55q21 0 21-22zM1410 976v-154q0-53-33-85.5t-86-32.5h-264q-53 0-86 32.5t-33 85.5v410q0 21 22 21h55q21 0 21-21v-180q31 42 94 42h191q53 0 86-32.5t33-85.5zM1536 360v1072q0 96-68 164t-164 68h-1072q-96 0-164-68t-68-164v-1072q0-96 68-164t164-68h1072q96 0 164 68t68 164z"
+ }
+ }]
+};
+exports.meanpath = meanpath;
\ No newline at end of file
diff --git a/dist/fa/medium.js b/dist/fa/medium.js
new file mode 100644
index 000000000..975b40722
--- /dev/null
+++ b/dist/fa/medium.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.medium = void 0;
+var medium = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M597 421v1173q0 25-12.5 42.5t-36.5 17.5q-17 0-33-8l-465-233q-21-10-35.5-33.5t-14.5-46.5v-1140q0-20 10-34t29-14q14 0 44 15l511 256q3 3 3 5zM661 522l534 866-534-266v-600zM1792 540v1054q0 25-14 40.5t-38 15.5-47-13l-441-220zM1789 420q0 3-256.5 419.5t-300.5 487.5l-390-634 324-527q17-28 52-28 14 0 26 6l541 270q4 2 4 6z"
+ }
+ }]
+};
+exports.medium = medium;
\ No newline at end of file
diff --git a/dist/fa/medkit.js b/dist/fa/medkit.js
new file mode 100644
index 000000000..2134096ac
--- /dev/null
+++ b/dist/fa/medkit.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.medkit = void 0;
+var medkit = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1120v-192q0-14-9-23t-23-9h-224v-224q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v224h-224q-14 0-23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23-9t9-23v-224h224q14 0 23-9t9-23zM640 384h512v-128h-512v128zM256 384v1280h-32q-92 0-158-66t-66-158v-832q0-92 66-158t158-66h32zM1440 384v1280h-1088v-1280h160v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h160zM1792 608v832q0 92-66 158t-158 66h-32v-1280h32q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.medkit = medkit;
\ No newline at end of file
diff --git a/dist/fa/meetup.js b/dist/fa/meetup.js
new file mode 100644
index 000000000..41f89109a
--- /dev/null
+++ b/dist/fa/meetup.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.meetup = void 0;
+var meetup = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1334 1234q-4-24-27.5-34t-49.5-10.5-48.5-12.5-25.5-38q-5-47 33-139.5t75-181 32-127.5q-14-101-117-103-45-1-75 16l-3 2-5 2.5t-4.5 2-5 2-5 0.5-6-1.5-6-3.5-6.5-5q-3-2-9-8.5t-9-9-8.5-7.5-9.5-7.5-9.5-5.5-11-4.5-11.5-2.5q-30-5-48 3t-45 31q-1 1-9 8.5t-12.5 11-15 10-16.5 5.5-17-3q-54-27-84-40-41-18-94 5t-76 65q-16 28-41 98.5t-43.5 132.5-40 134-21.5 73q-22 69 18.5 119t110.5 46q30-2 50.5-15t38.5-46q7-13 79-199.5t77-194.5q6-11 21.5-18t29.5 0q27 15 21 53-2 18-51 139.5t-50 132.5q-6 38 19.5 56.5t60.5 7 55-49.5q4-8 45.5-92t81.5-163.5 46-88.5q20-29 41-28 29 0 25 38-2 16-65.5 147.5t-70.5 159.5q-12 53 13 103t74 74q17 9 51 15.5t71.5 8 62.5-14 20-48.5zM383 1450q3 15-5 27.5t-23 15.5q-14 3-26.5-5t-15.5-23q-3-14 5-27t22-16 27 5 16 23zM953 1713q12 17 8.5 37.5t-20.5 32.5-37.5 8-32.5-21q-11-17-7.5-37.5t20.5-32.5 37.5-8 31.5 21zM177 901q-18 27-49.5 33t-57.5-13q-26-18-32-50t12-58q18-27 49.5-33t57.5 12q26 19 32 50.5t-12 58.5zM1467 1578q19 28 13 61.5t-34 52.5-60.5 13-51.5-34-13-61 33-53q28-19 60.5-13t52.5 34zM1579 974q69 113 42.5 244.5t-134.5 207.5q-90 63-199 60-20 80-84.5 127t-143.5 44.5-140-57.5q-12 9-13 10-103 71-225 48.5t-193-126.5q-50-73-53-164-83-14-142.5-70.5t-80.5-128-2-152 81-138.5q-36-60-38-128t24.5-125 79.5-98.5 121-50.5q32-85 99-148t146.5-91.5 168-17 159.5 66.5q72-21 140-17.5t128.5 36 104.5 80 67.5 115 17.5 140.5q52 16 87 57t45.5 89-5.5 99.5-58 87.5zM455 314q14 20 9.5 44.5t-24.5 38.5q-19 14-43.5 9.5t-37.5-24.5q-14-20-9.5-44.5t24.5-38.5q19-14 43.5-9.5t37.5 24.5zM614 33q4 16-5 30.5t-26 18.5-31-5.5-18-26.5q-3-17 6.5-31t25.5-18q17-4 31 5.5t17 26.5zM1800 981q4 20-6.5 37t-30.5 21q-19 4-36-6.5t-21-30.5 6.5-37 30.5-22q20-4 36.5 7.5t20.5 30.5zM1136 88q16 27 8.5 58.5t-35.5 47.5q-27 16-57.5 8.5t-46.5-34.5q-16-28-8.5-59t34.5-48 58-9 47 36zM1882 744q4 15-4 27.5t-23 16.5q-15 3-27.5-5.5t-15.5-22.5q-3-15 5-28t23-16q14-3 26.5 5t15.5 23zM1691 503q15 22 10.5 49t-26.5 43q-22 15-49 10t-42-27-10-49 27-43 48.5-11 41.5 28z"
+ }
+ }]
+};
+exports.meetup = meetup;
\ No newline at end of file
diff --git a/dist/fa/mehO.js b/dist/fa/mehO.js
new file mode 100644
index 000000000..ef48512f4
--- /dev/null
+++ b/dist/fa/mehO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mehO = void 0;
+var mehO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 1088q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h640q26 0 45 19t19 45zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.mehO = mehO;
\ No newline at end of file
diff --git a/dist/fa/mercury.js b/dist/fa/mercury.js
new file mode 100644
index 000000000..0e0e450f1
--- /dev/null
+++ b/dist/fa/mercury.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mercury = void 0;
+var mercury = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M830 316q145 72 233.5 210.5t88.5 305.5q0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-217-24-364.5-187.5t-147.5-384.5q0-167 88.5-305.5t233.5-210.5q-165-96-228-273-6-16 3.5-29.5t26.5-13.5h69q21 0 29 20 44 106 140 171t214 65 214-65 140-171q8-20 37-20h61q17 0 26.5 13.5t3.5 29.5q-63 177-228 273zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.mercury = mercury;
\ No newline at end of file
diff --git a/dist/fa/microchip.js b/dist/fa/microchip.js
new file mode 100644
index 000000000..05d087fc0
--- /dev/null
+++ b/dist/fa/microchip.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.microchip = void 0;
+var microchip = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192 1280v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 1024v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 768v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 512v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM192 256v128h-112q-16 0-16-16v-16h-48q-16 0-16-16v-32q0-16 16-16h48v-16q0-16 16-16h112zM1280 96v1472q0 40-28 68t-68 28h-832q-40 0-68-28t-28-68v-1472q0-40 28-68t68-28h832q40 0 68 28t28 68zM1536 1328v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 1072v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 816v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 560v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16zM1536 304v32q0 16-16 16h-48v16q0 16-16 16h-112v-128h112q16 0 16 16v16h48q16 0 16 16z"
+ }
+ }]
+};
+exports.microchip = microchip;
\ No newline at end of file
diff --git a/dist/fa/microphone.js b/dist/fa/microphone.js
new file mode 100644
index 000000000..547a9e8f3
--- /dev/null
+++ b/dist/fa/microphone.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.microphone = void 0;
+var microphone = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 704v128q0 221-147.5 384.5t-364.5 187.5v132h256q26 0 45 19t19 45-19 45-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h256v-132q-217-24-364.5-187.5t-147.5-384.5v-128q0-26 19-45t45-19 45 19 19 45v128q0 185 131.5 316.5t316.5 131.5 316.5-131.5 131.5-316.5v-128q0-26 19-45t45-19 45 19 19 45zM896 320v512q0 132-94 226t-226 94-226-94-94-226v-512q0-132 94-226t226-94 226 94 94 226z"
+ }
+ }]
+};
+exports.microphone = microphone;
\ No newline at end of file
diff --git a/dist/fa/microphoneSlash.js b/dist/fa/microphoneSlash.js
new file mode 100644
index 000000000..34b2b4864
--- /dev/null
+++ b/dist/fa/microphoneSlash.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.microphoneSlash = void 0;
+var microphoneSlash = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M271 945l-101 101q-42-103-42-214v-128q0-26 19-45t45-19 45 19 19 45v128q0 53 15 113zM1385 343l-361 361v128q0 132-94 226t-226 94q-55 0-109-19l-96 96q97 51 205 51 185 0 316.5-131.5t131.5-316.5v-128q0-26 19-45t45-19 45 19 19 45v128q0 221-147.5 384.5t-364.5 187.5v132h256q26 0 45 19t19 45-19 45-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h256v-132q-125-13-235-81l-254 254q-10 10-23 10t-23-10l-82-82q-10-10-10-23t10-23l1234-1234q10-10 23-10t23 10l82 82q10 10 10 23t-10 23zM1005 211l-621 621v-512q0-132 94-226t226-94q102 0 184.5 59t116.5 152z"
+ }
+ }]
+};
+exports.microphoneSlash = microphoneSlash;
\ No newline at end of file
diff --git a/dist/fa/minus.js b/dist/fa/minus.js
new file mode 100644
index 000000000..b80c09445
--- /dev/null
+++ b/dist/fa/minus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minus = void 0;
+var minus = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 736v192q0 40-28 68t-68 28h-1216q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h1216q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.minus = minus;
\ No newline at end of file
diff --git a/dist/fa/minusCircle.js b/dist/fa/minusCircle.js
new file mode 100644
index 000000000..9c00d927f
--- /dev/null
+++ b/dist/fa/minusCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minusCircle = void 0;
+var minusCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1216 960v-128q0-26-19-45t-45-19h-768q-26 0-45 19t-19 45v128q0 26 19 45t45 19h768q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.minusCircle = minusCircle;
\ No newline at end of file
diff --git a/dist/fa/minusSquare.js b/dist/fa/minusSquare.js
new file mode 100644
index 000000000..474c47dad
--- /dev/null
+++ b/dist/fa/minusSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minusSquare = void 0;
+var minusSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 960v-128q0-26-19-45t-45-19h-896q-26 0-45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.minusSquare = minusSquare;
\ No newline at end of file
diff --git a/dist/fa/minusSquareO.js b/dist/fa/minusSquareO.js
new file mode 100644
index 000000000..7169de898
--- /dev/null
+++ b/dist/fa/minusSquareO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minusSquareO = void 0;
+var minusSquareO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 800v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h832q14 0 23 9t9 23zM1280 1248v-832q0-66-47-113t-113-47h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.minusSquareO = minusSquareO;
\ No newline at end of file
diff --git a/dist/fa/mixcloud.js b/dist/fa/mixcloud.js
new file mode 100644
index 000000000..8dbaf3d9c
--- /dev/null
+++ b/dist/fa/mixcloud.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mixcloud = void 0;
+var mixcloud = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1645 1098q0-59-34-106.5t-87-68.5q-7 45-23 92-7 24-27.5 38t-44.5 14q-12 0-24-3-31-10-45-38.5t-4-58.5q23-71 23-143 0-123-61-227.5t-166-165.5-228-61q-134 0-247 73t-167 194q108 28 188 106 22 23 22 55t-22 54-54 22-55-22q-75-75-180-75-106 0-181 74.5t-75 180.5 75 180.5 181 74.5h1046q79 0 134.5-55.5t55.5-133.5zM1798 1098q0 142-100.5 242t-242.5 100h-1046q-169 0-289-119.5t-120-288.5q0-153 100-267t249-136q62-184 221-298t354-114q235 0 408.5 158.5t196.5 389.5q116 25 192.5 118.5t76.5 214.5zM2048 1098q0 175-97 319-23 33-64 33-24 0-43-13-26-17-32-48.5t12-57.5q71-104 71-233t-71-233q-18-26-12-57t32-49 57.5-11.5 49.5 32.5q97 142 97 318zM2304 1098q0 244-134 443-23 34-64 34-23 0-42-13-26-18-32.5-49t11.5-57q108-164 108-358 0-195-108-357-18-26-11.5-57.5t32.5-48.5q26-18 57-12t49 33q134 198 134 442z"
+ }
+ }]
+};
+exports.mixcloud = mixcloud;
\ No newline at end of file
diff --git a/dist/fa/mobile.js b/dist/fa/mobile.js
new file mode 100644
index 000000000..5768bccdc
--- /dev/null
+++ b/dist/fa/mobile.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mobile = void 0;
+var mobile = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464 1408q0-33-23.5-56.5t-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5 56.5-23.5 23.5-56.5zM672 1248v-704q0-13-9.5-22.5t-22.5-9.5h-512q-13 0-22.5 9.5t-9.5 22.5v704q0 13 9.5 22.5t22.5 9.5h512q13 0 22.5-9.5t9.5-22.5zM480 400q0-16-16-16h-160q-16 0-16 16t16 16h160q16 0 16-16zM768 384v1024q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-1024q0-52 38-90t90-38h512q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.mobile = mobile;
\ No newline at end of file
diff --git a/dist/fa/mobilePhone.js b/dist/fa/mobilePhone.js
new file mode 100644
index 000000000..c0d94d684
--- /dev/null
+++ b/dist/fa/mobilePhone.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mobilePhone = void 0;
+var mobilePhone = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464 1408q0-33-23.5-56.5t-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5 56.5-23.5 23.5-56.5zM672 1248v-704q0-13-9.5-22.5t-22.5-9.5h-512q-13 0-22.5 9.5t-9.5 22.5v704q0 13 9.5 22.5t22.5 9.5h512q13 0 22.5-9.5t9.5-22.5zM480 400q0-16-16-16h-160q-16 0-16 16t16 16h160q16 0 16-16zM768 384v1024q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-1024q0-52 38-90t90-38h512q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.mobilePhone = mobilePhone;
\ No newline at end of file
diff --git a/dist/fa/modx.js b/dist/fa/modx.js
new file mode 100644
index 000000000..4f6437afc
--- /dev/null
+++ b/dist/fa/modx.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.modx = void 0;
+var modx = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1427 709l-614-386 92-151h855zM405 974l-184-116v-858l1183 743zM1424 839l147 95v858l-532-335zM1387 818l-500 802h-855l356-571z"
+ }
+ }]
+};
+exports.modx = modx;
\ No newline at end of file
diff --git a/dist/fa/money.js b/dist/fa/money.js
new file mode 100644
index 000000000..933915b1c
--- /dev/null
+++ b/dist/fa/money.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.money = void 0;
+var money = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 1152h384v-96h-128v-448h-114l-148 137 77 80q42-37 55-57h2v288h-128v96zM1280 896q0 70-21 142t-59.5 134-101.5 101-138 39-138-39-101.5-101-59.5-134-21-142 21-142 59.5-134 101.5-101 138-39 138 39 101.5 101 59.5 134 21 142zM1792 1152v-512q-106 0-181-75t-75-181h-1152q0 106-75 181t-181 75v512q106 0 181 75t75 181h1152q0-106 75-181t181-75zM1920 320v1152q0 26-19 45t-45 19h-1792q-26 0-45-19t-19-45v-1152q0-26 19-45t45-19h1792q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.money = money;
\ No newline at end of file
diff --git a/dist/fa/moonO.js b/dist/fa/moonO.js
new file mode 100644
index 000000000..6b3f695be
--- /dev/null
+++ b/dist/fa/moonO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.moonO = void 0;
+var moonO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1262 1303q-54 9-110 9-182 0-337-90t-245-245-90-337q0-192 104-357-201 60-328.5 229t-127.5 384q0 130 51 248.5t136.5 204 204 136.5 248.5 51q144 0 273.5-61.5t220.5-171.5zM1465 1218q-94 203-283.5 324.5t-413.5 121.5q-156 0-298-61t-245-164-164-245-61-298q0-153 57.5-292.5t156-241.5 235.5-164.5 290-68.5q44-2 61 39 18 41-15 72-86 78-131.5 181.5t-45.5 218.5q0 148 73 273t198 198 273 73q118 0 228-51 41-18 72 13 14 14 17.5 34t-4.5 38z"
+ }
+ }]
+};
+exports.moonO = moonO;
\ No newline at end of file
diff --git a/dist/fa/mortarBoard.js b/dist/fa/mortarBoard.js
new file mode 100644
index 000000000..925b51b59
--- /dev/null
+++ b/dist/fa/mortarBoard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mortarBoard = void 0;
+var mortarBoard = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1774 836l18 316q4 69-82 128t-235 93.5-323 34.5-323-34.5-235-93.5-82-128l18-316 574 181q22 7 48 7t48-7zM2304 512q0 23-22 31l-1120 352q-4 1-10 1t-10-1l-652-206q-43 34-71 111.5t-34 178.5q63 36 63 109 0 69-58 107l58 433q2 14-8 25-9 11-24 11h-192q-15 0-24-11-10-11-8-25l58-433q-58-38-58-107 0-73 65-111 11-207 98-330l-333-104q-22-8-22-31t22-31l1120-352q4-1 10-1t10 1l1120 352q22 8 22 31z"
+ }
+ }]
+};
+exports.mortarBoard = mortarBoard;
\ No newline at end of file
diff --git a/dist/fa/motorcycle.js b/dist/fa/motorcycle.js
new file mode 100644
index 000000000..abcf580d8
--- /dev/null
+++ b/dist/fa/motorcycle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.motorcycle = void 0;
+var motorcycle = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2301 1036q12 103-22 198.5t-99 163.5-158.5 106-196.5 31q-161-11-279.5-125t-134.5-274q-12-111 27.5-210.5t118.5-170.5l-71-107q-96 80-151 194t-55 244q0 27-18.5 46.5t-45.5 19.5h-256-69q-23 164-149 274t-294 110q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q76 0 152 27l24-45q-123-110-304-110h-64q-26 0-45-19t-19-45 19-45 45-19h128q78 0 145 13.5t116.5 38.5 71.5 39.5 51 36.5h512 115l-85-128h-222q-30 0-49-22.5t-14-52.5q4-23 23-38t43-15h253q33 0 53 28l70 105 114-114q19-19 46-19h101q26 0 45 19t19 45v128q0 26-19 45t-45 19h-179l115 172q131-63 275-36 143 26 244 134.5t118 253.5zM448 1408q115 0 203-72.5t111-183.5h-314q-35 0-55-31-18-32-1-63l147-277q-47-13-91-13-132 0-226 94t-94 226 94 226 226 94zM1856 1408q132 0 226-94t94-226-94-226-226-94q-60 0-121 24l174 260q15 23 10 49t-27 40q-15 11-36 11-35 0-53-29l-174-260q-93 95-93 225 0 132 94 226t226 94z"
+ }
+ }]
+};
+exports.motorcycle = motorcycle;
\ No newline at end of file
diff --git a/dist/fa/mousePointer.js b/dist/fa/mousePointer.js
new file mode 100644
index 000000000..0d459b9d1
--- /dev/null
+++ b/dist/fa/mousePointer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mousePointer = void 0;
+var mousePointer = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1133 1043q31 30 14 69-17 40-59 40h-382l201 476q10 25 0 49t-34 35l-177 75q-25 10-49 0t-35-34l-191-452-312 312q-19 19-45 19-12 0-24-5-40-17-40-59v-1504q0-42 40-59 12-5 24-5 27 0 45 19z"
+ }
+ }]
+};
+exports.mousePointer = mousePointer;
\ No newline at end of file
diff --git a/dist/fa/music.js b/dist/fa/music.js
new file mode 100644
index 000000000..45720aa30
--- /dev/null
+++ b/dist/fa/music.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music = void 0;
+var music = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 224v1120q0 50-34 89t-86 60.5-103.5 32-96.5 10.5-96.5-10.5-103.5-32-86-60.5-34-89 34-89 86-60.5 103.5-32 96.5-10.5q105 0 192 39v-537l-768 237v709q0 50-34 89t-86 60.5-103.5 32-96.5 10.5-96.5-10.5-103.5-32-86-60.5-34-89 34-89 86-60.5 103.5-32 96.5-10.5q105 0 192 39v-967q0-31 19-56.5t49-35.5l832-256q12-4 28-4 40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.music = music;
\ No newline at end of file
diff --git a/dist/fa/navicon.js b/dist/fa/navicon.js
new file mode 100644
index 000000000..10382a75f
--- /dev/null
+++ b/dist/fa/navicon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.navicon = void 0;
+var navicon = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.navicon = navicon;
\ No newline at end of file
diff --git a/dist/fa/neuter.js b/dist/fa/neuter.js
new file mode 100644
index 000000000..b73051f33
--- /dev/null
+++ b/dist/fa/neuter.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.neuter = void 0;
+var neuter = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 576q0 221-147.5 384.5t-364.5 187.5v612q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-612q-217-24-364.5-187.5t-147.5-384.5q0-117 45.5-223.5t123-184 184-123 223.5-45.5 223.5 45.5 184 123 123 184 45.5 223.5zM576 1024q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.neuter = neuter;
\ No newline at end of file
diff --git a/dist/fa/newspaperO.js b/dist/fa/newspaperO.js
new file mode 100644
index 000000000..ac6d35375
--- /dev/null
+++ b/dist/fa/newspaperO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.newspaperO = void 0;
+var newspaperO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 512h-384v384h384v-384zM1152 1152v128h-640v-128h640zM1152 384v640h-640v-640h640zM1792 1152v128h-512v-128h512zM1792 896v128h-512v-128h512zM1792 640v128h-512v-128h512zM1792 384v128h-512v-128h512zM256 1344v-960h-128v960q0 26 19 45t45 19 45-19 19-45zM1920 1344v-1088h-1536v1088q0 33-11 64h1483q26 0 45-19t19-45zM2048 128v1216q0 80-56 136t-136 56h-1664q-80 0-136-56t-56-136v-1088h256v-128h1792z"
+ }
+ }]
+};
+exports.newspaperO = newspaperO;
\ No newline at end of file
diff --git a/dist/fa/objectGroup.js b/dist/fa/objectGroup.js
new file mode 100644
index 000000000..80f52bec1
--- /dev/null
+++ b/dist/fa/objectGroup.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.objectGroup = void 0;
+var objectGroup = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2048 384h-128v1024h128v384h-384v-128h-1280v128h-384v-384h128v-1024h-128v-384h384v128h1280v-128h384v384zM1792 128v128h128v-128h-128zM128 128v128h128v-128h-128zM256 1664v-128h-128v128h128zM1664 1536v-128h128v-1024h-128v-128h-1280v128h-128v1024h128v128h1280zM1920 1664v-128h-128v128h128zM1280 640h384v768h-896v-256h-384v-768h896v256zM512 1024h640v-512h-640v512zM1536 1280v-512h-256v384h-384v128h640z"
+ }
+ }]
+};
+exports.objectGroup = objectGroup;
\ No newline at end of file
diff --git a/dist/fa/objectUngroup.js b/dist/fa/objectUngroup.js
new file mode 100644
index 000000000..510148732
--- /dev/null
+++ b/dist/fa/objectUngroup.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.objectUngroup = void 0;
+var objectUngroup = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2304 768h-128v640h128v384h-384v-128h-896v128h-384v-384h128v-128h-384v128h-384v-384h128v-640h-128v-384h384v128h896v-128h384v384h-128v128h384v-128h384v384zM2048 512v128h128v-128h-128zM1408 128v128h128v-128h-128zM128 128v128h128v-128h-128zM256 1280v-128h-128v128h128zM1536 1152h-128v128h128v-128zM384 1152h896v-128h128v-640h-128v-128h-896v128h-128v640h128v128zM896 1664v-128h-128v128h128zM2176 1664v-128h-128v128h128zM2048 1408v-640h-128v-128h-384v384h128v384h-384v-128h-384v128h128v128h896v-128h128z"
+ }
+ }]
+};
+exports.objectUngroup = objectUngroup;
\ No newline at end of file
diff --git a/dist/fa/odnoklassniki.js b/dist/fa/odnoklassniki.js
new file mode 100644
index 000000000..e043fcd7a
--- /dev/null
+++ b/dist/fa/odnoklassniki.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.odnoklassniki = void 0;
+var odnoklassniki = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 907q-188 0-321-133t-133-320q0-188 133-321t321-133 321 133 133 321q0 187-133 320t-321 133zM640 230q-92 0-157.5 65.5t-65.5 158.5q0 92 65.5 157.5t157.5 65.5 157.5-65.5 65.5-157.5q0-93-65.5-158.5t-157.5-65.5zM1163 962q13 27 15 49.5t-4.5 40.5-26.5 38.5-42.5 37-61.5 41.5q-115 73-315 94l73 72 267 267q30 31 30 74t-30 73l-12 13q-31 30-74 30t-74-30q-67-68-267-268l-267 268q-31 30-74 30t-73-30l-12-13q-31-30-31-73t31-74l267-267 72-72q-203-21-317-94-39-25-61.5-41.5t-42.5-37-26.5-38.5-4.5-40.5 15-49.5q10-20 28-35t42-22 56 2 65 35q5 4 15 11t43 24.5 69 30.5 92 24 113 11q91 0 174-25.5t120-50.5l38-25q33-26 65-35t56-2 42 22 28 35z"
+ }
+ }]
+};
+exports.odnoklassniki = odnoklassniki;
\ No newline at end of file
diff --git a/dist/fa/odnoklassnikiSquare.js b/dist/fa/odnoklassnikiSquare.js
new file mode 100644
index 000000000..f09ed7991
--- /dev/null
+++ b/dist/fa/odnoklassnikiSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.odnoklassnikiSquare = void 0;
+var odnoklassnikiSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M927 580q0 66-46.5 112.5t-112.5 46.5-112.5-46.5-46.5-112.5 46.5-112.5 112.5-46.5 112.5 46.5 46.5 112.5zM1141 943q-10-20-28-32t-47.5-9.5-60.5 27.5q-10 8-29 20t-81 32-127 20-124-18-86-36l-27-18q-31-25-60.5-27.5t-47.5 9.5-28 32q-22 45-2 74.5t87 73.5q83 53 226 67l-51 52q-142 142-191 190-22 22-22 52.5t22 52.5l9 9q22 22 52.5 22t52.5-22l191-191q114 115 191 191 22 22 52.5 22t52.5-22l9-9q22-22 22-52.5t-22-52.5l-191-190-52-52q141-14 225-67 67-44 87-73.5t-2-74.5zM1092 580q0-134-95-229t-229-95-229 95-95 229 95 229 229 95 229-95 95-229zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.odnoklassnikiSquare = odnoklassnikiSquare;
\ No newline at end of file
diff --git a/dist/fa/opencart.js b/dist/fa/opencart.js
new file mode 100644
index 000000000..0f700c420
--- /dev/null
+++ b/dist/fa/opencart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.opencart = void 0;
+var opencart = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1524 1561q0 68-48 116t-116 48-116.5-48-48.5-116 48.5-116.5 116.5-48.5 116 48.5 48 116.5zM775 1561q0 68-48.5 116t-116.5 48-116-48-48-116 48-116.5 116-48.5 116.5 48.5 48.5 116.5zM0 67q57 60 110.5 104.5t121 82 136 63 166 45.5 200 31.5 250 18.5 304 9.5 372.5 2.5q139 0 244.5 5t181 16.5 124 27.5 71 39.5 24 51.5-19.5 64-56.5 76.5-89.5 91-116 104.5-139 119q-185 157-286 247 29-51 76.5-109t94-105.5 94.5-98.5 83-91.5 54-80.5 13-70-45.5-55.5-116.5-41-204-23.5-304-5q-168 2-314-6t-256-23-204.5-41-159.5-51.5-122.5-62.5-91.5-66.5-68-71.5-50.5-69.5-40-68-36.5-59.5z"
+ }
+ }]
+};
+exports.opencart = opencart;
\ No newline at end of file
diff --git a/dist/fa/openid.js b/dist/fa/openid.js
new file mode 100644
index 000000000..f15ed8c95
--- /dev/null
+++ b/dist/fa/openid.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.openid = void 0;
+var openid = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1086 0v1536l-272 128q-228-20-414-102t-293-208.5-107-272.5q0-140 100.5-263.5t275-205.5 391.5-108v172q-217 38-356.5 150t-139.5 255q0 152 154.5 267t388.5 145v-1360zM1755 582l37 390-525-114 147-83q-119-70-280-99v-172q277 33 481 157z"
+ }
+ }]
+};
+exports.openid = openid;
\ No newline at end of file
diff --git a/dist/fa/opera.js b/dist/fa/opera.js
new file mode 100644
index 000000000..106774d08
--- /dev/null
+++ b/dist/fa/opera.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.opera = void 0;
+var opera = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1493 228q-165-110-359-110-155 0-293 73t-240 200q-75 93-119.5 218t-48.5 266v42q4 141 48.5 266t119.5 218q102 127 240 200t293 73q194 0 359-110-121 108-274.5 168t-322.5 60q-29 0-43-1-175-8-333-82t-272-193-181-281-67-339q0-182 71-348t191-286 286-191 348-71h3q168 1 320.5 60.5t273.5 167.5zM1792 896q0 192-77 362.5t-213 296.5q-104 63-222 63-137 0-255-84 154-56 253.5-233t99.5-405q0-227-99-404t-253-234q119-83 254-83 119 0 226 65 135 125 210.5 295t75.5 361z"
+ }
+ }]
+};
+exports.opera = opera;
\ No newline at end of file
diff --git a/dist/fa/optinMonster.js b/dist/fa/optinMonster.js
new file mode 100644
index 000000000..0b26cecf3
--- /dev/null
+++ b/dist/fa/optinMonster.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.optinMonster = void 0;
+var optinMonster = {
+ "viewBox": "0 0 2296 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M478 1675q-8 16-27 34.5t-37 25.5q-25 9-51.5-3.5t-28.5-31.5q-1-22 40-55t68-38q23-4 34 21.5t2 46.5zM1819 1675q7 16 26 34.5t38 25.5q25 9 51.5-3.5t27.5-31.5q2-22-39.5-55t-68.5-38q-22-4-33 21.5t-2 46.5zM1867 1566q13 27 56.5 59.5t77.5 41.5q45 13 82-4.5t37-50.5q0-46-67.5-100.5t-115.5-59.5q-40-5-63.5 37.5t-6.5 76.5zM428 1566q-13 27-56 59.5t-77 41.5q-45 13-82-4.5t-37-50.5q0-46 67.5-100.5t115.5-59.5q40-5 63 37.5t6 76.5zM1158 442h1q-41 0-76 15 27 8 44 30.5t17 49.5q0 35-27 60t-65 25q-52 0-80-43-5 23-5 42 0 74 56 126.5t135 52.5q80 0 136-52.5t56-126.5-56-126.5-136-52.5zM1462 224q-99-109-220.5-131.5t-245.5 44.5q27-60 82.5-96.5t118-39.5 121.5 17 99.5 74.5 44.5 131.5zM2212 1463q8 11-11 42 7 23 7 40 1 56-44.5 112.5t-109.5 91.5-118 37q-48 2-92-21.5t-66-65.5q-687 25-1259 0-23 41-66.5 65t-92.5 22q-86-3-179.5-80.5t-92.5-160.5q2-22 7-40-19-31-11-42 6-10 31-1 14-22 41-51-7-29 2-38 11-10 39 4 29-20 59-34 0-29 13-37 23-12 51 16 35-5 61 2 18 4 38 19v-73q-11 0-18-2-53-10-97-44.5t-55-87.5q-9-38 0-81 15-62 93-95 2-17 19-35.5t36-23.5 33 7.5 19 30.5h13q46 5 60 23 3 3 5 7 10-1 30.5-3.5t30.5-3.5q-15-11-30-17-23-40-91-43 0-6 1-10-62-2-118.5-18.5t-84.5-47.5q-32-36-42.5-92t-2.5-112q16-126 90-179 23-16 52-4.5t32 40.5q0 1 1.5 14t2.5 21 3 20 5.5 19 8.5 10q27 14 76 12 48-46 98-74-40-4-162 14l47-46q61-58 163-111 145-73 282-86-20-8-41-15.5t-47-14-42.5-10.5-47.5-11-43-10q595-126 904 139 98 84 158 222 85 10 121-9h1q5-3 8.5-10t5.5-19 3-19.5 3-21.5l1-14q3-28 32-40t52 5q73 52 91 178 7 57-3.5 113t-42.5 91q-28 32-83.5 48.5t-115.5 18.5v10q-71 2-95 43-14 5-31 17 11 1 32 3.5t30 3.5q1-5 5-8 16-18 60-23h13q5-18 19-30t33-8 36 23 19 36q79 32 93 95 9 40 1 81-12 53-56 88t-97 44q-10 2-17 2 0 49-1 73 20-15 38-19 26-7 61-2 28-28 51-16 14 9 14 37 33 16 59 34 27-13 38-4 10 10 2 38 28 30 41 51 23-8 31 1zM1937 511q0 29-9 54 82 32 112 132 4-37-9.5-98.5t-41.5-90.5q-20-19-36-17t-16 20zM1859 611q35 42 47.5 108.5t-0.5 124.5q67-13 97-45 13-14 18-28-3-64-31-114.5t-79-66.5q-15 15-52 21zM1822 615q-30 0-44-1 42 115 53 239 21 0 43-3 16-68 1-135t-53-100zM258 697q30-100 112-132-9-25-9-54 0-18-16.5-20t-35.5 17q-28 29-41.5 90.5t-9.5 98.5zM294 799q29 31 97 45-13-58-0.5-124.5t47.5-108.5v0q-37-6-52-21-51 16-78.5 66t-31.5 115q9 17 18 28zM471 853q14-124 73-235-19 4-55 18l-45 19v-1q-46 89-20 196 25 3 47 3zM1434 892q8 38 16.5 108.5t11.5 89.5q3 18 9.5 21.5t23.5-4.5q40-20 62-85.5t23-125.5q-24-2-146-4zM1152 251q-116 0-199 82.5t-83 198.5q0 117 83 199.5t199 82.5 199-82.5 83-199.5q0-116-83-198.5t-199-82.5zM1380 890q-105-2-211 0v-1q-1 27 2.5 86t13.5 66q29 14 93.5 14.5t95.5-10.5q9-3 11-39t-0.5-69.5-4.5-46.5zM1112 1089q8-4 9.5-48t-0.5-88-4-63v-1q-212 3-214 3-4 20-7 62t0 83 14 46q34 15 101 16t101-10zM718 900q-16 59 4.5 118.5t77.5 84.5q15 8 24 5t12-21q3-16 8-90t10-103q-69 2-136 6zM591 1026q3 23-34 36 132 141 271.5 240t305.5 154q172-49 310.5-146t293.5-250q-33-13-30-34 0-2 0.5-3.5t1.5-3 1-2.5v-1 1q-17-2-50-5.5t-48-4.5q-26 90-82 132-51 38-82-1-5-6-9-14-7-13-17-62-2 5-5 9t-7.5 7-8 5.5-9.5 4l-10 2.5t-12 2l-12 1.5t-13.5 1-13.5 0.5q-106 9-163-11-4 17-10 26.5t-21 15-23 7-36 3.5q-6 1-9 1-179 17-203-40-2 63-56 54-47-8-91-54-12-13-20-26-17-29-26-65-58 6-87 10 1 2 4 10zM507 1654q3-14 3-30-17-71-51-130t-73-70q-41-12-101.5 14.5t-104.5 80-39 107.5q35 53 100 93t119 42q51 2 94-28t53-79zM510 1483q23 63 27 119 195-113 392-174-98-52-180.5-120t-179.5-165q-6 4-29 13 0 1-1 4t-1 5q31 18 22 37-12 23-56 34-10 13-29 24h-1q-2 83 1 150 19 34 35 73zM579 1649q532 21 1145 0-254-147-428-196-76 35-156 57-8 3-16 0-65-21-129-49-208 60-416 188h-1v1q1 0 1-1zM1763 1603q4-54 28-120 14-38 33-71l-1 1q3-77 3-153-15-8-30-25-42-9-56-33-9-20 22-38-2-4-2-9-16-4-28-12-204 190-383 284 198 59 414 176zM2155 1626q5-54-39-107.5t-104-80-102-14.5q-38 11-72.5 70.5t-51.5 129.5q0 16 3 30 10 49 53 79t94 28q54-2 119-42t100-93z"
+ }
+ }]
+};
+exports.optinMonster = optinMonster;
\ No newline at end of file
diff --git a/dist/fa/outdent.js b/dist/fa/outdent.js
new file mode 100644
index 000000000..45f336831
--- /dev/null
+++ b/dist/fa/outdent.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.outdent = void 0;
+var outdent = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zM1792 1312v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zM1792 928v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 544v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 160v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z"
+ }
+ }]
+};
+exports.outdent = outdent;
\ No newline at end of file
diff --git a/dist/fa/pagelines.js b/dist/fa/pagelines.js
new file mode 100644
index 000000000..b2b58818c
--- /dev/null
+++ b/dist/fa/pagelines.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pagelines = void 0;
+var pagelines = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1402 1103q-32 80-76 138t-91 88.5-99 46.5-101.5 14.5-96.5-8.5-86.5-22-69.5-27.5-46-22.5l-17-10q-113 228-289.5 359.5t-384.5 132.5q-19 0-32-13t-13-32 13-31.5 32-12.5q173-1 322.5-107.5t251.5-294.5q-36 14-72 23t-83 13-91-2.5-93-28.5-92-59-84.5-100-74.5-146q114-47 214-57t167.5 7.5 124.5 56.5 88.5 77 56.5 82q53-131 79-291-7 1-18 2.5t-46.5 2.5-69.5-0.5-81.5-10-88.5-23-84-42.5-75-65-54.5-94.5-28.5-127.5q70-28 133.5-36.5t112.5 1 92 30 73.5 50 56 61 42 63 27.5 56 16 39.5l4 16q12-122 12-195-8-6-21.5-16t-49-44.5-63.5-71.5-54-93-33-112.5 12-127 70-138.5q73 25 127.5 61.5t84.5 76.5 48 85 20.5 89-0.5 85.5-13 76.5-19 62-17 42l-7 15q1 4 1 50t-1 72q3-7 10-18.5t30.5-43 50.5-58 71-55.5 91.5-44.5 112-14.5 132.5 24q-2 78-21.5 141.5t-50 104.5-69.5 71.5-81.5 45.5-84.5 24-80 9.5-67.5-1-46.5-4.5l-17-3q-23 147-73 283 6-7 18-18.5t49.5-41 77.5-52.5 99.5-42 117.5-20 129 23.5 137 77.5z"
+ }
+ }]
+};
+exports.pagelines = pagelines;
\ No newline at end of file
diff --git a/dist/fa/paintBrush.js b/dist/fa/paintBrush.js
new file mode 100644
index 000000000..7b0e2728f
--- /dev/null
+++ b/dist/fa/paintBrush.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paintBrush = void 0;
+var paintBrush = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1615 0q70 0 122.5 46.5t52.5 116.5q0 63-45 151-332 629-465 752-97 91-218 91-126 0-216.5-92.5t-90.5-219.5q0-128 92-212l638-579q59-54 130-54zM706 1034q39 76 106.5 130t150.5 76l1 71q4 213-129.5 347t-348.5 134q-123 0-218-46.5t-152.5-127.5-86.5-183-29-220q7 5 41 30t62 44.5 59 36.5 46 17q41 0 55-37 25-66 57.5-112.5t69.5-76 88-47.5 103-25.5 125-10.5z"
+ }
+ }]
+};
+exports.paintBrush = paintBrush;
\ No newline at end of file
diff --git a/dist/fa/paperPlane.js b/dist/fa/paperPlane.js
new file mode 100644
index 000000000..3e8920882
--- /dev/null
+++ b/dist/fa/paperPlane.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paperPlane = void 0;
+var paperPlane = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-453-185-242 295q-18 23-49 23-13 0-22-4-19-7-30.5-23.5t-11.5-36.5v-349l864-1059-1069 925-395-162q-37-14-40-55-2-40 32-59l1664-960q15-9 32-9 20 0 36 11z"
+ }
+ }]
+};
+exports.paperPlane = paperPlane;
\ No newline at end of file
diff --git a/dist/fa/paperPlaneO.js b/dist/fa/paperPlaneO.js
new file mode 100644
index 000000000..8dcc308df
--- /dev/null
+++ b/dist/fa/paperPlaneO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paperPlaneO = void 0;
+var paperPlaneO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-527-215-298 327q-18 21-47 21-14 0-23-4-19-7-30-23.5t-11-36.5v-452l-472-193q-37-14-40-55-3-39 32-59l1664-960q35-21 68 2zM1422 1510l221-1323-1434 827 336 137 863-639-478 797z"
+ }
+ }]
+};
+exports.paperPlaneO = paperPlaneO;
\ No newline at end of file
diff --git a/dist/fa/paperclip.js b/dist/fa/paperclip.js
new file mode 100644
index 000000000..18e532e26
--- /dev/null
+++ b/dist/fa/paperclip.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paperclip = void 0;
+var paperclip = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1404 1385q0 117-79 196t-196 79q-135 0-235-100l-777-776q-113-115-113-271 0-159 110-270t269-111q158 0 273 113l605 606q10 10 10 22 0 16-30.5 46.5t-46.5 30.5q-13 0-23-10l-606-607q-79-77-181-77-106 0-179 75t-73 181q0 105 76 181l776 777q63 63 145 63 64 0 106-42t42-106q0-82-63-145l-581-581q-26-24-60-24-29 0-48 19t-19 48q0 32 25 59l410 410q10 10 10 22 0 16-31 47t-47 31q-12 0-22-10l-410-410q-63-61-63-149 0-82 57-139t139-57q88 0 149 63l581 581q100 98 100 235z"
+ }
+ }]
+};
+exports.paperclip = paperclip;
\ No newline at end of file
diff --git a/dist/fa/paragraph.js b/dist/fa/paragraph.js
new file mode 100644
index 000000000..0c787545e
--- /dev/null
+++ b/dist/fa/paragraph.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paragraph = void 0;
+var paragraph = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1278 189v73q0 29-18.5 61t-42.5 32q-50 0-54 1-26 6-32 31-3 11-3 64v1152q0 25-18 43t-43 18h-108q-25 0-43-18t-18-43v-1218h-143v1218q0 25-17.5 43t-43.5 18h-108q-26 0-43.5-18t-17.5-43v-496q-147-12-245-59-126-58-192-179-64-117-64-259 0-166 88-286 88-118 209-159 111-37 417-37h479q25 0 43 18t18 43z"
+ }
+ }]
+};
+exports.paragraph = paragraph;
\ No newline at end of file
diff --git a/dist/fa/paste.js b/dist/fa/paste.js
new file mode 100644
index 000000000..6fad05b93
--- /dev/null
+++ b/dist/fa/paste.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paste = void 0;
+var paste = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 1664h896v-640h-416q-40 0-68-28t-28-68v-416h-384v1152zM1024 224v-64q0-13-9.5-22.5t-22.5-9.5h-704q-13 0-22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h704q13 0 22.5-9.5t9.5-22.5zM1280 896h299l-299-299v299zM1792 1024v672q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-544q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1088q40 0 68 28t28 68v328q21 13 36 28l408 408q28 28 48 76t20 88z"
+ }
+ }]
+};
+exports.paste = paste;
\ No newline at end of file
diff --git a/dist/fa/pause.js b/dist/fa/pause.js
new file mode 100644
index 000000000..e13b7f1b3
--- /dev/null
+++ b/dist/fa/pause.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pause = void 0;
+var pause = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 192v1408q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h512q26 0 45 19t19 45zM640 192v1408q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h512q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.pause = pause;
\ No newline at end of file
diff --git a/dist/fa/pauseCircle.js b/dist/fa/pauseCircle.js
new file mode 100644
index 000000000..6a82e407f
--- /dev/null
+++ b/dist/fa/pauseCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pauseCircle = void 0;
+var pauseCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 1184v-576q0-14-9-23t-23-9h-256q-14 0-23 9t-9 23v576q0 14 9 23t23 9h256q14 0 23-9t9-23zM1152 1184v-576q0-14-9-23t-23-9h-256q-14 0-23 9t-9 23v576q0 14 9 23t23 9h256q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.pauseCircle = pauseCircle;
\ No newline at end of file
diff --git a/dist/fa/pauseCircleO.js b/dist/fa/pauseCircleO.js
new file mode 100644
index 000000000..c3e9232c1
--- /dev/null
+++ b/dist/fa/pauseCircleO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pauseCircleO = void 0;
+var pauseCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM768 1440q148 0 273-73t198-198 73-273-73-273-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73zM864 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23v576q0 14-9 23t-23 9h-192zM480 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23v576q0 14-9 23t-23 9h-192z"
+ }
+ }]
+};
+exports.pauseCircleO = pauseCircleO;
\ No newline at end of file
diff --git a/dist/fa/paw.js b/dist/fa/paw.js
new file mode 100644
index 000000000..5aaa9f3c0
--- /dev/null
+++ b/dist/fa/paw.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paw = void 0;
+var paw = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M780 472q0 60-19 113.5t-63 92.5-105 39q-76 0-138-57.5t-92-135.5-30-151q0-60 19-113.5t63-92.5 105-39q77 0 138.5 57.5t91.5 135 30 151.5zM438 955q0 80-42 139t-119 59q-76 0-141.5-55.5t-100.5-133.5-35-152q0-80 42-139.5t119-59.5q76 0 141.5 55.5t100.5 134 35 152.5zM832 928q118 0 255 97.5t229 237 92 254.5q0 46-17 76.5t-48.5 45-64.5 20-76 5.5q-68 0-187.5-45t-182.5-45q-66 0-192.5 44.5t-200.5 44.5q-183 0-183-146 0-86 56-191.5t139.5-192.5 187.5-146 193-59zM1071 717q-61 0-105-39t-63-92.5-19-113.5q0-74 30-151.5t91.5-135 138.5-57.5q61 0 105 39t63 92.5 19 113.5q0 73-30 151t-92 135.5-138 57.5zM1503 613q77 0 119 59.5t42 139.5q0 74-35 152t-100.5 133.5-141.5 55.5q-77 0-119-59t-42-139q0-74 35-152.5t100.5-134 141.5-55.5z"
+ }
+ }]
+};
+exports.paw = paw;
\ No newline at end of file
diff --git a/dist/fa/paypal.js b/dist/fa/paypal.js
new file mode 100644
index 000000000..1e8f96c85
--- /dev/null
+++ b/dist/fa/paypal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paypal = void 0;
+var paypal = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1519 646q18 84-4 204-87 444-565 444h-44q-25 0-44 16.5t-24 42.5l-4 19-55 346-2 15q-5 26-24.5 42.5t-44.5 16.5h-251q-21 0-33-15t-9-36q9-56 26.5-168t26.5-168 27-167.5 27-167.5q5-37 43-37h131q133 2 236-21 175-39 287-144 102-95 155-246 24-70 35-133 1-6 2.5-7.5t3.5-1 6 3.5q79 59 98 162zM1347 364q0 107-46 236-80 233-302 315-113 40-252 42 0 1-90 1l-90-1q-100 0-118 96-2 8-85 530-1 10-12 10h-295q-22 0-36.5-16.5t-11.5-38.5l232-1471q5-29 27.5-48t51.5-19h598q34 0 97.5 13t111.5 32q107 41 163.5 123t56.5 196z"
+ }
+ }]
+};
+exports.paypal = paypal;
\ No newline at end of file
diff --git a/dist/fa/pencil.js b/dist/fa/pencil.js
new file mode 100644
index 000000000..ad5d57297
--- /dev/null
+++ b/dist/fa/pencil.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pencil = void 0;
+var pencil = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M363 1536l91-91-235-235-91 91v107h128v128h107zM886 608q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zM832 416l416 416-832 832h-416v-416zM1515 512q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z"
+ }
+ }]
+};
+exports.pencil = pencil;
\ No newline at end of file
diff --git a/dist/fa/pencilSquare.js b/dist/fa/pencilSquare.js
new file mode 100644
index 000000000..9f16d7c17
--- /dev/null
+++ b/dist/fa/pencilSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pencilSquare = void 0;
+var pencilSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M404 1108l152 152-52 52h-56v-96h-96v-56zM818 718q14 13-3 30l-291 291q-17 17-30 3-14-13 3-30l291-291q17-17 30-3zM544 1408l544-544-288-288-544 544v288h288zM1152 800l92-92q28-28 28-68t-28-68l-152-152q-28-28-68-28t-68 28l-92 92zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.pencilSquare = pencilSquare;
\ No newline at end of file
diff --git a/dist/fa/pencilSquareO.js b/dist/fa/pencilSquareO.js
new file mode 100644
index 000000000..16f2d1421
--- /dev/null
+++ b/dist/fa/pencilSquareO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pencilSquareO = void 0;
+var pencilSquareO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M888 1184l116-116-152-152-116 116v56h96v96h56zM1328 464q-16-16-33 1l-350 350q-17 17-1 33t33-1l350-350q17-17 1-33zM1408 1058v190q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-14 14-32 8-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-126q0-13 9-22l64-64q15-15 35-7t20 29zM1312 320l288 288-672 672h-288v-288zM1756 452l-92 92-288-288 92-92q28-28 68-28t68 28l152 152q28 28 28 68t-28 68z"
+ }
+ }]
+};
+exports.pencilSquareO = pencilSquareO;
\ No newline at end of file
diff --git a/dist/fa/percent.js b/dist/fa/percent.js
new file mode 100644
index 000000000..e34750dc9
--- /dev/null
+++ b/dist/fa/percent.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.percent = void 0;
+var percent = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1280q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM512 512q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM1536 1280q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1440 192q0 20-13 38l-1056 1408q-19 26-51 26h-160q-26 0-45-19t-19-45q0-20 13-38l1056-1408q19-26 51-26h160q26 0 45 19t19 45zM768 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z"
+ }
+ }]
+};
+exports.percent = percent;
\ No newline at end of file
diff --git a/dist/fa/phone.js b/dist/fa/phone.js
new file mode 100644
index 000000000..0a3aada84
--- /dev/null
+++ b/dist/fa/phone.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phone = void 0;
+var phone = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 1240q0 27-10 70.5t-21 68.5q-21 50-122 106-94 51-186 51-27 0-53-3.5t-57.5-12.5-47-14.5-55.5-20.5-49-18q-98-35-175-83-127-79-264-216t-216-264q-48-77-83-175-3-9-18-49t-20.5-55.5-14.5-47-12.5-57.5-3.5-53q0-92 51-186 56-101 106-122 25-11 68.5-21t70.5-10q14 0 21 3 18 6 53 76 11 19 30 54t35 63.5 31 53.5q3 4 17.5 25t21.5 35.5 7 28.5q0 20-28.5 50t-62 55-62 53-28.5 46q0 9 5 22.5t8.5 20.5 14 24 11.5 19q76 137 174 235t235 174q2 1 19 11.5t24 14 20.5 8.5 22.5 5q18 0 46-28.5t53-62 55-62 50-28.5q14 0 28.5 7t35.5 21.5 25 17.5q25 15 53.5 31t63.5 35 54 30q70 35 76 53 3 7 3 21z"
+ }
+ }]
+};
+exports.phone = phone;
\ No newline at end of file
diff --git a/dist/fa/phoneSquare.js b/dist/fa/phoneSquare.js
new file mode 100644
index 000000000..1e23e96ba
--- /dev/null
+++ b/dist/fa/phoneSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phoneSquare = void 0;
+var phoneSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1193q0-11-2-16t-18-16.5-40.5-25-47.5-26.5-45.5-25-28.5-15q-5-3-19-13t-25-15-21-5q-15 0-36.5 20.5t-39.5 45-38.5 45-33.5 20.5q-7 0-16.5-3.5t-15.5-6.5-17-9.5-14-8.5q-99-55-170-126.5t-127-170.5q-2-3-8.5-14t-9.5-17-6.5-15.5-3.5-16.5q0-13 20.5-33.5t45-38.5 45-39.5 20.5-36.5q0-10-5-21t-15-25-13-19q-3-6-15-28.5t-25-45.5-26.5-47.5-25-40.5-16.5-18-16-2q-48 0-101 22-46 21-80 94.5t-34 130.5q0 16 2.5 34t5 30.5 9 33 10 29.5 12.5 33 11 30q60 164 216.5 320.5t320.5 216.5q6 2 30 11t33 12.5 29.5 10 33 9 30.5 5 34 2.5q57 0 130.5-34t94.5-80q22-53 22-101zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.phoneSquare = phoneSquare;
\ No newline at end of file
diff --git a/dist/fa/photo.js b/dist/fa/photo.js
new file mode 100644
index 000000000..5ce202270
--- /dev/null
+++ b/dist/fa/photo.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.photo = void 0;
+var photo = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.photo = photo;
\ No newline at end of file
diff --git a/dist/fa/pictureO.js b/dist/fa/pictureO.js
new file mode 100644
index 000000000..b3fbf2b2f
--- /dev/null
+++ b/dist/fa/pictureO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pictureO = void 0;
+var pictureO = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1664 960v448h-1408v-192l320-320 160 160 512-512zM1760 256h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zM1920 288v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.pictureO = pictureO;
\ No newline at end of file
diff --git a/dist/fa/pieChart.js b/dist/fa/pieChart.js
new file mode 100644
index 000000000..0e19cb47f
--- /dev/null
+++ b/dist/fa/pieChart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pieChart = void 0;
+var pieChart = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 890l546 546q-106 108-247.5 168t-298.5 60q-209 0-385.5-103t-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103v762zM955 896h773q0 157-60 298.5t-168 247.5zM1664 768h-768v-768q209 0 385.5 103t279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.pieChart = pieChart;
\ No newline at end of file
diff --git a/dist/fa/piedPiper.js b/dist/fa/piedPiper.js
new file mode 100644
index 000000000..41b0dbe8d
--- /dev/null
+++ b/dist/fa/piedPiper.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.piedPiper = void 0;
+var piedPiper = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2304 0q-69 46-125 92t-89 81-59.5 71.5-37.5 57.5-22 44.5-14 29.5q-10 18-35.5 136.5t-48.5 164.5q-15 29-50 60.5t-67.5 50.5-72.5 41-48 28q-47 31-151 231-341-14-630 158-92 53-303 179 47-16 86-31t55-22l15-7q71-27 163-64.5t133.5-53.5 108-34.5 142.5-31.5q186-31 465 7 1 0 10 3 11 6 14 17t-3 22l-194 345q-15 29-47 22-128-24-354-24-146 0-402 44.5t-392 46.5q-82 1-149-13t-107-37-61-40-33-34l-1-1v-2q0-6 6-6 138 0 371-55 192-366 374.5-524t383.5-158q5 0 14.5 0.5t38 5 55 12 61.5 24.5 63 39.5 54 59 40 82.5l102-177q2-4 21-42.5t44.5-86.5 61-109.5 84-133.5 100.5-137q66-82 128-141.5t121.5-96.5 92.5-53.5 88-39.5z"
+ }
+ }]
+};
+exports.piedPiper = piedPiper;
\ No newline at end of file
diff --git a/dist/fa/piedPiperAlt.js b/dist/fa/piedPiperAlt.js
new file mode 100644
index 000000000..90c49a40c
--- /dev/null
+++ b/dist/fa/piedPiperAlt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.piedPiperAlt = void 0;
+var piedPiperAlt = {
+ "viewBox": "0 0 2038 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1222 929q75-3 143.5 20.5t118 58.5 101 94.5 84 108 75.5 120.5q33 56 78.5 109t75.5 80.5 99 88.5q-48 30-108.5 57.5t-138.5 59-114 47.5q-44-37-74-115t-43.5-164.5-33-180.5-42.5-168.5-72.5-123-122.5-48.5l-10 2-6 4q4 5 13 14 6 5 28 23.5t25.5 22 19 18 18 20.5 11.5 21 10.5 27.5 4.5 31 4 40.5l1 33q1 26-2.5 57.5t-7.5 52-12.5 58.5-11.5 53q-35-1-101 9.5t-98 10.5q-39 0-72-10-2-16-2-47 0-74 3-96 2-13 31.5-41.5t57-59 26.5-51.5q-24-2-43 24-36 53-111.5 99.5t-136.5 46.5q-25 0-75.5-63t-106.5-139.5-84-96.5q-6-4-27-30-482 112-513 112-16 0-28-11t-12-27q0-15 8.5-26.5t22.5-14.5l486-106q-8-14-8-25t5.5-17.5 16-11.5 20-7 23-4.5 18.5-4.5q4-1 15.5-7.5t17.5-6.5q15 0 28 16t20 33q163-37 172-37 17 0 29.5 11t12.5 28q0 15-8.5 26t-23.5 14l-182 40-1 16q-1 26 81.5 117.5t104.5 91.5q47 0 119-80t72-129q0-36-23.5-53t-51-18.5-51-11.5-23.5-34q0-16 10-34l-68-19q43-44 43-117 0-26-5-58 82-16 144-16 44 0 71.5 1.5t48.5 8.5 31 13.5 20.5 24.5 15.5 33.5 17 47.5 24 60l50-25q-3 40-23 60t-42.5 21-40 6.5-16.5 20.5zM1282 694q-5-5-13.5-15.5t-12-14.5-10.5-11.5-10-10.5l-8-8t-8.5-7.5-8-5-8.5-4.5q-7-3-14.5-5t-20.5-2.5-22-0.5h-32.5-37.5q-126 0-217 43 16-30 36-46.5t54-29.5 65.5-36 46-36.5 50-55 43.5-50.5q12 9 28 31.5t32 36.5 38 13l12-1v76l22 1q247-95 371-190 28-21 50-39t42.5-37.5 33-31 29.5-34 24-31 24.5-37 23-38 27-47.5 29.5-53l7-9q-2 53-43 139-79 165-205 264t-306 142q-14 3-42 7.5t-50 9.5-39 14q3 19 24.5 46t21.5 34q0 11-26 30zM1061 1615q39-26 131.5-47.5t146.5-21.5q9 0 22.5 15.5t28 42.5 26 50 24 51 14.5 33q-121 45-244 45-61 0-125-11zM822 968l48-12 109 177-73 48zM1323 1485q3 15 3 16 0 7-17.5 14.5t-46 13-54 9.5-53.5 7.5-32 4.5l-7-43q21-2 60.5-8.5t72-10 60.5-3.5h14zM866 857l-96 20-6-17q10-1 32.5-7t34.5-6q19 0 35 10zM1061 1491h31l10 83-41 12v-95zM1950 1v-1 1zM1950 1l-1 5-2 2 1-3zM1950 1l1-1z"
+ }
+ }]
+};
+exports.piedPiperAlt = piedPiperAlt;
\ No newline at end of file
diff --git a/dist/fa/piedPiperPp.js b/dist/fa/piedPiperPp.js
new file mode 100644
index 000000000..1906d165e
--- /dev/null
+++ b/dist/fa/piedPiperPp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.piedPiperPp = void 0;
+var piedPiperPp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1046 1020q0 64-38 109t-91 45q-43 0-70-15v-277q28-17 70-17 53 0 91 45.5t38 109.5zM703 592q0 64-38 109.5t-91 45.5q-43 0-70-15v-277q28-17 70-17 53 0 91 45t38 109zM1265 1023q0-134-88-229t-213-95q-20 0-39 3-23 78-78 136-87 95-211 101v636l211-41v-206q51 19 117 19 125 0 213-95t88-229zM922 596q0-134-88.5-229t-213.5-95q-74 0-141 36h-186v840l211-41v-206q55 19 116 19 125 0 213.5-95t88.5-229zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.piedPiperPp = piedPiperPp;
\ No newline at end of file
diff --git a/dist/fa/pinterest.js b/dist/fa/pinterest.js
new file mode 100644
index 000000000..ccdcde154
--- /dev/null
+++ b/dist/fa/pinterest.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pinterest = void 0;
+var pinterest = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 209-103 385.5t-279.5 279.5-385.5 103q-111 0-218-32 59-93 78-164 9-34 54-211 20 39 73 67.5t114 28.5q121 0 216-68.5t147-188.5 52-270q0-114-59.5-214t-172.5-163-255-63q-105 0-196 29t-154.5 77-109 110.5-67 129.5-21.5 134q0 104 40 183t117 111q30 12 38-20 2-7 8-31t8-30q6-23-11-43-51-61-51-151 0-151 104.5-259.5t273.5-108.5q151 0 235.5 82t84.5 213q0 170-68.5 289t-175.5 119q-61 0-98-43.5t-23-104.5q8-35 26.5-93.5t30-103 11.5-75.5q0-50-27-83t-77-33q-62 0-105 57t-43 142q0 73 25 122l-99 418q-17 70-13 177-206-91-333-281t-127-423q0-209 103-385.5t279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.pinterest = pinterest;
\ No newline at end of file
diff --git a/dist/fa/pinterestP.js b/dist/fa/pinterestP.js
new file mode 100644
index 000000000..93eb04c12
--- /dev/null
+++ b/dist/fa/pinterestP.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pinterestP = void 0;
+var pinterestP = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 597q0-108 37.5-203.5t103.5-166.5 152-123 185-78 202-26q158 0 294 66.5t221 193.5 85 287q0 96-19 188t-60 177-100 149.5-145 103-189 38.5q-68 0-135-32t-96-88q-10 39-28 112.5t-23.5 95-20.5 71-26 71-32 62.5-46 77.5-62 86.5l-14 5-9-10q-15-157-15-188 0-92 21.5-206.5t66.5-287.5 52-203q-32-65-32-169 0-83 52-156t132-73q61 0 95 40.5t34 102.5q0 66-44 191t-44 187q0 63 45 104.5t109 41.5q55 0 102-25t78.5-68 56-95 38-110.5 20-111 6.5-99.5q0-173-109.5-269.5t-285.5-96.5q-200 0-334 129.5t-134 328.5q0 44 12.5 85t27 65 27 45.5 12.5 30.5q0 28-15 73t-37 45q-2 0-17-3-51-15-90.5-56t-61-94.5-32.5-108-11-106.5z"
+ }
+ }]
+};
+exports.pinterestP = pinterestP;
\ No newline at end of file
diff --git a/dist/fa/pinterestSquare.js b/dist/fa/pinterestSquare.js
new file mode 100644
index 000000000..e8acfc6e8
--- /dev/null
+++ b/dist/fa/pinterestSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pinterestSquare = void 0;
+var pinterestSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1248 128q119 0 203.5 84.5t84.5 203.5v960q0 119-84.5 203.5t-203.5 84.5h-725q85-122 108-210 9-34 53-209 21 39 73.5 67t112.5 28q181 0 295.5-147.5t114.5-373.5q0-84-35-162.5t-96.5-139-152.5-97-197-36.5q-104 0-194.5 28.5t-153 76.5-107.5 109.5-66.5 128-21.5 132.5q0 102 39.5 180t116.5 110q13 5 23.5 0t14.5-19q10-44 15-61 6-23-11-42-50-62-50-150 0-150 103.5-256.5t270.5-106.5q149 0 232.5 81t83.5 210q0 168-67.5 286t-173.5 118q-60 0-97-43.5t-23-103.5q8-34 26.5-92.5t29.5-102 11-74.5q0-49-26.5-81.5t-75.5-32.5q-61 0-103.5 56.5t-42.5 139.5q0 72 24 121l-98 414q-24 100-7 254h-183q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960z"
+ }
+ }]
+};
+exports.pinterestSquare = pinterestSquare;
\ No newline at end of file
diff --git a/dist/fa/plane.js b/dist/fa/plane.js
new file mode 100644
index 000000000..00272dd62
--- /dev/null
+++ b/dist/fa/plane.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plane = void 0;
+var plane = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1376 160q44 52 12 148t-108 172l-161 161 160 696q5 19-12 33l-128 96q-7 6-19 6-4 0-7-1-15-3-21-16l-279-508-259 259 53 194q5 17-8 31l-96 96q-9 9-23 9h-2q-15-2-24-13l-189-252-252-189q-11-7-13-23-1-13 9-25l96-97q9-9 23-9 6 0 8 1l194 53 259-259-508-279q-14-8-17-24-2-16 9-27l128-128q14-13 30-8l665 159 160-160q76-76 172-108t148 12z"
+ }
+ }]
+};
+exports.plane = plane;
\ No newline at end of file
diff --git a/dist/fa/play.js b/dist/fa/play.js
new file mode 100644
index 000000000..c74a2d186
--- /dev/null
+++ b/dist/fa/play.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.play = void 0;
+var play = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1384 927l-1328 738q-23 13-39.5 3t-16.5-36v-1472q0-26 16.5-36t39.5 3l1328 738q23 13 23 31t-23 31z"
+ }
+ }]
+};
+exports.play = play;
\ No newline at end of file
diff --git a/dist/fa/playCircle.js b/dist/fa/playCircle.js
new file mode 100644
index 000000000..87559d397
--- /dev/null
+++ b/dist/fa/playCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.playCircle = void 0;
+var playCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM1152 951q32-18 32-55t-32-55l-544-320q-31-19-64-1-32 19-32 56v640q0 37 32 56 16 8 32 8 17 0 32-9z"
+ }
+ }]
+};
+exports.playCircle = playCircle;
\ No newline at end of file
diff --git a/dist/fa/playCircleO.js b/dist/fa/playCircleO.js
new file mode 100644
index 000000000..a4656490a
--- /dev/null
+++ b/dist/fa/playCircleO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.playCircleO = void 0;
+var playCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1184 896q0 37-32 55l-544 320q-15 9-32 9-16 0-32-8-32-19-32-56v-640q0-37 32-56 33-18 64 1l544 320q32 18 32 55zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.playCircleO = playCircleO;
\ No newline at end of file
diff --git a/dist/fa/plug.js b/dist/fa/plug.js
new file mode 100644
index 000000000..7f7845d82
--- /dev/null
+++ b/dist/fa/plug.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plug = void 0;
+var plug = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1755 453q37 38 37 90.5t-37 90.5l-401 400 150 150-160 160q-163 163-389.5 186.5t-411.5-100.5l-362 362h-181v-181l362-362q-124-185-100.5-411.5t186.5-389.5l160-160 150 150 400-401q38-37 91-37t90 37 37 90.5-37 90.5l-400 401 234 234 401-400q38-37 91-37t90 37z"
+ }
+ }]
+};
+exports.plug = plug;
\ No newline at end of file
diff --git a/dist/fa/plus.js b/dist/fa/plus.js
new file mode 100644
index 000000000..42babb3ca
--- /dev/null
+++ b/dist/fa/plus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plus = void 0;
+var plus = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 736v192q0 40-28 68t-68 28h-416v416q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-416h-416q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h416v-416q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.plus = plus;
\ No newline at end of file
diff --git a/dist/fa/plusCircle.js b/dist/fa/plusCircle.js
new file mode 100644
index 000000000..a49eeb75c
--- /dev/null
+++ b/dist/fa/plusCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plusCircle = void 0;
+var plusCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1216 960v-128q0-26-19-45t-45-19h-256v-256q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v256h-256q-26 0-45 19t-19 45v128q0 26 19 45t45 19h256v256q0 26 19 45t45 19h128q26 0 45-19t19-45v-256h256q26 0 45-19t19-45zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.plusCircle = plusCircle;
\ No newline at end of file
diff --git a/dist/fa/plusSquare.js b/dist/fa/plusSquare.js
new file mode 100644
index 000000000..e383b8f68
--- /dev/null
+++ b/dist/fa/plusSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plusSquare = void 0;
+var plusSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 960v-128q0-26-19-45t-45-19h-320v-320q0-26-19-45t-45-19h-128q-26 0-45 19t-19 45v320h-320q-26 0-45 19t-19 45v128q0 26 19 45t45 19h320v320q0 26 19 45t45 19h128q26 0 45-19t19-45v-320h320q26 0 45-19t19-45zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.plusSquare = plusSquare;
\ No newline at end of file
diff --git a/dist/fa/plusSquareO.js b/dist/fa/plusSquareO.js
new file mode 100644
index 000000000..0b26533bb
--- /dev/null
+++ b/dist/fa/plusSquareO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plusSquareO = void 0;
+var plusSquareO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 800v64q0 14-9 23t-23 9h-352v352q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-352h-352q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-352q0-14 9-23t23-9h64q14 0 23 9t9 23v352h352q14 0 23 9t9 23zM1280 1248v-832q0-66-47-113t-113-47h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.plusSquareO = plusSquareO;
\ No newline at end of file
diff --git a/dist/fa/podcast.js b/dist/fa/podcast.js
new file mode 100644
index 000000000..85b0a3d2e
--- /dev/null
+++ b/dist/fa/podcast.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.podcast = void 0;
+var podcast = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M994 1192q0 86-17 197-31 215-55 313-22 90-152 90t-152-90q-24-98-55-313-17-110-17-197 0-168 224-168t224 168zM1536 768q0 240-134 434t-350 280q-8 3-15-3t-6-15q7-48 10-66 4-32 6-47 1-9 9-12 159-81 255.5-234t96.5-337q0-180-91-330.5t-247-234.5-337-74q-124 7-237 61t-193.5 140.5-128 202-46.5 240.5q1 184 99 336.5t257 231.5q7 3 9 12 3 21 6 45 1 9 5 32.5t6 35.5q1 9-6.5 15t-15.5 2q-148-58-261-169.5t-173.5-264-52.5-319.5q7-143 66-273.5t154.5-227 225-157.5 272.5-70q164-10 315.5 46.5t261 160.5 175 250.5 65.5 308.5zM994 736q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5zM1282 768q0 122-53.5 228.5t-146.5 177.5q-8 6-16 2t-10-14q-6-52-29-92-7-10 3-20 58-54 91-127t33-155q0-111-58.5-204t-157.5-141.5-212-36.5q-133 15-229 113t-109 231q-10 92 23.5 176t98.5 144q10 10 3 20-24 41-29 93-2 9-10 13t-16-2q-95-74-148.5-183t-51.5-234q3-131 69-244t177-181.5 241-74.5q144-7 268 60t196.5 187.5 72.5 263.5z"
+ }
+ }]
+};
+exports.podcast = podcast;
\ No newline at end of file
diff --git a/dist/fa/powerOff.js b/dist/fa/powerOff.js
new file mode 100644
index 000000000..5a60a5fbd
--- /dev/null
+++ b/dist/fa/powerOff.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.powerOff = void 0;
+var powerOff = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61-298-61-245-164-164-245-61-298q0-182 80.5-343t226.5-270q43-32 95.5-25t83.5 50q32 42 24.5 94.5t-49.5 84.5q-98 74-151.5 181t-53.5 228q0 104 40.5 198.5t109.5 163.5 163.5 109.5 198.5 40.5 198.5-40.5 163.5-109.5 109.5-163.5 40.5-198.5q0-121-53.5-228t-151.5-181q-42-32-49.5-84.5t24.5-94.5q31-43 84-50t95 25q146 109 226.5 270t80.5 343zM896 128v640q0 52-38 90t-90 38-90-38-38-90v-640q0-52 38-90t90-38 90 38 38 90z"
+ }
+ }]
+};
+exports.powerOff = powerOff;
\ No newline at end of file
diff --git a/dist/fa/print.js b/dist/fa/print.js
new file mode 100644
index 000000000..dedb4a285
--- /dev/null
+++ b/dist/fa/print.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.print = void 0;
+var print = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1536h896v-256h-896v256zM384 896h896v-384h-160q-40 0-68-28t-28-68v-160h-640v640zM1536 960q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 960v416q0 13-9.5 22.5t-22.5 9.5h-224v160q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-224q-13 0-22.5-9.5t-9.5-22.5v-416q0-79 56.5-135.5t135.5-56.5h64v-544q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v256h64q79 0 135.5 56.5t56.5 135.5z"
+ }
+ }]
+};
+exports.print = print;
\ No newline at end of file
diff --git a/dist/fa/productHunt.js b/dist/fa/productHunt.js
new file mode 100644
index 000000000..94e96d27b
--- /dev/null
+++ b/dist/fa/productHunt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.productHunt = void 0;
+var productHunt = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1150 762q0 56-39.5 95t-95.5 39h-253v-269h253q56 0 95.5 39.5t39.5 95.5zM1329 762q0-130-91.5-222t-222.5-92h-433v896h180v-269h253q130 0 222-91.5t92-221.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.productHunt = productHunt;
\ No newline at end of file
diff --git a/dist/fa/puzzlePiece.js b/dist/fa/puzzlePiece.js
new file mode 100644
index 000000000..89851b659
--- /dev/null
+++ b/dist/fa/puzzlePiece.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.puzzlePiece = void 0;
+var puzzlePiece = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1098q0 81-44.5 135t-123.5 54q-41 0-77.5-17.5t-59-38-56.5-38-71-17.5q-110 0-110 124 0 39 16 115t15 115v5q-22 0-33 1-34 3-97.5 11.5t-115.5 13.5-98 5q-61 0-103-26.5t-42-83.5q0-37 17.5-71t38-56.5 38-59 17.5-77.5q0-79-54-123.5t-135-44.5q-84 0-143 45.5t-59 127.5q0 43 15 83t33.5 64.5 33.5 53 15 50.5q0 45-46 89-37 35-117 35-95 0-245-24-9-2-27.5-4t-27.5-4l-13-2q-1 0-3-1-2 0-2-1v-1024q2 1 17.5 3.5t34 5 21.5 3.5q150 24 245 24 80 0 117-35 46-44 46-89 0-22-15-50.5t-33.5-53-33.5-64.5-15-83q0-82 59-127.5t144-45.5q80 0 134 44.5t54 123.5q0 41-17.5 77.5t-38 59-38 56.5-17.5 71q0 57 42 83.5t103 26.5q64 0 180-15t163-17v2q-1 2-3.5 17.5t-5 34-3.5 21.5q-24 150-24 245 0 80 35 117 44 46 89 46 22 0 50.5-15t53-33.5 64.5-33.5 83-15q82 0 127.5 59t45.5 143z"
+ }
+ }]
+};
+exports.puzzlePiece = puzzlePiece;
\ No newline at end of file
diff --git a/dist/fa/qq.js b/dist/fa/qq.js
new file mode 100644
index 000000000..b247d48ec
--- /dev/null
+++ b/dist/fa/qq.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.qq = void 0;
+var qq = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M270 806q-8-19-8-52 0-20 11-49t24-45q-1-22 7.5-53t22.5-43q0-139 92.5-288.5t217.5-209.5q139-66 324-66 133 0 266 55 49 21 90 48t71 56 55 68 42 74 32.5 84.5 25.5 89.5 22 98l1 5q55 83 55 150 0 14-9 40t-9 38q0 1 1.5 3.5t3.5 5 2 3.5q77 114 120.5 214.5t43.5 208.5q0 43-19.5 100t-55.5 57q-9 0-19.5-7.5t-19-17.5-19-26-16-26.5-13.5-26-9-17.5q-1-1-3-1l-5 4q-59 154-132 223 20 20 61.5 38.5t69 41.5 35.5 65q-2 4-4 16t-7 18q-64 97-302 97-53 0-110.5-9t-98-20-104.5-30q-15-5-23-7-14-4-46-4.5t-40-1.5q-41 45-127.5 65t-168.5 20q-35 0-69-1.5t-93-9-101-20.5-74.5-40-32.5-64q0-40 10-59.5t41-48.5q11-2 40.5-13t49.5-12q4 0 14-2 2-2 2-4l-2-3q-48-11-108-105.5t-73-156.5l-5-3q-4 0-12 20-18 41-54.5 74.5t-77.5 37.5h-1q-4 0-6-4.5t-5-5.5q-23-54-23-100 0-275 252-466z"
+ }
+ }]
+};
+exports.qq = qq;
\ No newline at end of file
diff --git a/dist/fa/qrcode.js b/dist/fa/qrcode.js
new file mode 100644
index 000000000..f86f501dc
--- /dev/null
+++ b/dist/fa/qrcode.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.qrcode = void 0;
+var qrcode = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1152v128h-128v-128h128zM384 384v128h-128v-128h128zM1152 384v128h-128v-128h128zM128 1407h384v-383h-384v383zM128 640h384v-384h-384v384zM896 640h384v-384h-384v384zM640 896v640h-640v-640h640zM1152 1408v128h-128v-128h128zM1408 1408v128h-128v-128h128zM1408 896v384h-384v-128h-128v384h-128v-640h384v128h128v-128h128zM640 128v640h-640v-640h640zM1408 128v640h-640v-640h640z"
+ }
+ }]
+};
+exports.qrcode = qrcode;
\ No newline at end of file
diff --git a/dist/fa/question.js b/dist/fa/question.js
new file mode 100644
index 000000000..4fc121b1b
--- /dev/null
+++ b/dist/fa/question.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.question = void 0;
+var question = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 1256v240q0 16-12 28t-28 12h-240q-16 0-28-12t-12-28v-240q0-16 12-28t28-12h240q16 0 28 12t12 28zM1020 656q0 54-15.5 101t-35 76.5-55 59.5-57.5 43.5-61 35.5q-41 23-68.5 65t-27.5 67q0 17-12 32.5t-28 15.5h-240q-15 0-25.5-18.5t-10.5-37.5v-45q0-83 65-156.5t143-108.5q59-27 84-56t25-76q0-42-46.5-74t-107.5-32q-65 0-108 29-35 25-107 115-13 16-31 16-12 0-25-8l-164-125q-13-10-15.5-25t5.5-28q160-266 464-266 80 0 161 31t146 83 106 127.5 41 158.5z"
+ }
+ }]
+};
+exports.question = question;
\ No newline at end of file
diff --git a/dist/fa/questionCircle.js b/dist/fa/questionCircle.js
new file mode 100644
index 000000000..0b01d34d5
--- /dev/null
+++ b/dist/fa/questionCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.questionCircle = void 0;
+var questionCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 1376v-192q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23-9t9-23zM1152 704q0-88-55.5-163t-138.5-116-170-41q-243 0-371 213-15 24 8 42l132 100q7 6 19 6 16 0 25-12 53-68 86-92 34-24 86-24 48 0 85.5 26t37.5 59q0 38-20 61t-68 45q-63 28-115.5 86.5t-52.5 125.5v36q0 14 9 23t23 9h192q14 0 23-9t9-23q0-19 21.5-49.5t54.5-49.5q32-18 49-28.5t46-35 44.5-48 28-60.5 12.5-81zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.questionCircle = questionCircle;
\ No newline at end of file
diff --git a/dist/fa/questionCircleO.js b/dist/fa/questionCircleO.js
new file mode 100644
index 000000000..d601e0ea9
--- /dev/null
+++ b/dist/fa/questionCircleO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.questionCircleO = void 0;
+var questionCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M880 1200v160q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-160q0-14 9-23t23-9h160q14 0 23 9t9 23zM1136 704q0 50-15 90t-45.5 69-52 44-59.5 36q-32 18-46.5 28t-26 24-11.5 29v32q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-68q0-35 10.5-64.5t24-47.5 39-35.5 41-25.5 44.5-21q53-25 75-43t22-49q0-42-43.5-71.5t-95.5-29.5q-56 0-95 27-29 20-80 83-9 12-25 12-11 0-19-6l-108-82q-10-7-12-20t5-23q122-192 349-192 129 0 238.5 89.5t109.5 214.5zM768 256q-130 0-248.5 51t-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5-51-248.5-136.5-204-204-136.5-248.5-51zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.questionCircleO = questionCircleO;
\ No newline at end of file
diff --git a/dist/fa/quora.js b/dist/fa/quora.js
new file mode 100644
index 000000000..8d722315b
--- /dev/null
+++ b/dist/fa/quora.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quora = void 0;
+var quora = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1255 787q0-318-105-474.5t-330-156.5q-222 0-326 157t-104 474q0 316 104 471.5t326 155.5q74 0 131-17-22-43-39-73t-44-65-53.5-56.5-63-36-77.5-14.5q-46 0-79 16l-49-97q105-91 276-91 132 0 215.5 54t150.5 155q67-149 67-402zM1645 1419h117q3 27-2 67t-26.5 95-58 100.5-107 78-162.5 32.5q-71 0-130.5-19t-105.5-56-79-78-66-96q-97 27-205 27-150 0-292.5-58t-253-158.5-178-249-67.5-317.5q0-170 67.5-319.5t178.5-250.5 253.5-159 291.5-58q121 0 238.5 36t217 106 176 164.5 119.5 219 43 261.5q0 190-80.5 347.5t-218.5 264.5q47 70 93.5 106.5t104.5 36.5q61 0 94-37.5t38-85.5z"
+ }
+ }]
+};
+exports.quora = quora;
\ No newline at end of file
diff --git a/dist/fa/quoteLeft.js b/dist/fa/quoteLeft.js
new file mode 100644
index 000000000..040e9e161
--- /dev/null
+++ b/dist/fa/quoteLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quoteLeft = void 0;
+var quoteLeft = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136zM1664 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136z"
+ }
+ }]
+};
+exports.quoteLeft = quoteLeft;
\ No newline at end of file
diff --git a/dist/fa/quoteRight.js b/dist/fa/quoteRight.js
new file mode 100644
index 000000000..68ba1026f
--- /dev/null
+++ b/dist/fa/quoteRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quoteRight = void 0;
+var quoteRight = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 320v704q0 104-40.5 198.5t-109.5 163.5-163.5 109.5-198.5 40.5h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64q106 0 181-75t75-181v-32q0-40-28-68t-68-28h-224q-80 0-136-56t-56-136v-384q0-80 56-136t136-56h384q80 0 136 56t56 136zM1664 320v704q0 104-40.5 198.5t-109.5 163.5-163.5 109.5-198.5 40.5h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64q106 0 181-75t75-181v-32q0-40-28-68t-68-28h-224q-80 0-136-56t-56-136v-384q0-80 56-136t136-56h384q80 0 136 56t56 136z"
+ }
+ }]
+};
+exports.quoteRight = quoteRight;
\ No newline at end of file
diff --git a/dist/fa/ra.js b/dist/fa/ra.js
new file mode 100644
index 000000000..a304702eb
--- /dev/null
+++ b/dist/fa/ra.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ra = void 0;
+var ra = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z"
+ }
+ }]
+};
+exports.ra = ra;
\ No newline at end of file
diff --git a/dist/fa/random.js b/dist/fa/random.js
new file mode 100644
index 000000000..fbf9f16e7
--- /dev/null
+++ b/dist/fa/random.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.random = void 0;
+var random = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M666 481q-60 92-137 273-22-45-37-72.5t-40.5-63.5-51-56.5-63-35-81.5-14.5h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224q250 0 410 225zM1792 1280q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192q-32 0-85 0.5t-81 1-73-1-71-5-64-10.5-63-18.5-58-28.5-59-40-55-53.5-56-69.5q59-93 136-273 22 45 37 72.5t40.5 63.5 51 56.5 63 35 81.5 14.5h256v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23zM1792 384q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-256q-48 0-87 15t-69 45-51 61.5-45 77.5q-32 62-78 171-29 66-49.5 111t-54 105-64 100-74 83-90 68.5-106.5 42-128 16.5h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224q48 0 87-15t69-45 51-61.5 45-77.5q32-62 78-171 29-66 49.5-111t54-105 64-100 74-83 90-68.5 106.5-42 128-16.5h256v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z"
+ }
+ }]
+};
+exports.random = random;
\ No newline at end of file
diff --git a/dist/fa/ravelry.js b/dist/fa/ravelry.js
new file mode 100644
index 000000000..e18dd63eb
--- /dev/null
+++ b/dist/fa/ravelry.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ravelry = void 0;
+var ravelry = {
+ "viewBox": "0 0 2176 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1143 1733q-6-1-11-4-13-8-36-23t-86-65-116.5-104.5-112-140-89.5-172.5q-17-3-175-37 66 213 235 362t391 184zM502 1127l168 28q-25-76-41-167.5t-19-145.5l-4-53q-84 82-121 224 5 65 17 114zM612 518q-43 64-77 148 44-46 74-68zM2049 952q0-161-62-307t-167.5-252-250.5-168.5-304-62.5q-147 0-281 52.5t-240 148.5q-30 58-45 160 60-51 143-83.5t158.5-43 143-13.5 108.5 1l40 3q33 1 53 15.5t24.5 33 6.5 37-1 28.5q-126-11-227.5-0.5t-183 43.5-142.5 71.5-131 98.5q4 36 11.5 92.5t35.5 178 62 179.5q123 6 247.5-14.5t214.5-53.5 162.5-67 109.5-59l37-24q22-16 39.5-20.5t30.5 5 17 34.5q14 97-39 121-208 97-467 134-135 20-317 16 41 96 110 176.5t137 127 130.5 79 101.5 43.5l39 12q143 23 263-15 195-99 314-289t119-418zM2123 915q-14 135-40 212-70 208-181.5 346.5t-318.5 253.5q-48 33-82 44-72 26-163 16-36 3-73 3-283 0-504.5-173t-295.5-442q-1 0-4-0.5t-5-0.5q-6 50 2.5 112.5t26 115 36 98 31.5 71.5l14 26q8 12 54 82-71-38-124.5-106.5t-78.5-140-39.5-137-17.5-107.5l-2-42q-5-2-33.5-12.5t-48.5-18-53-20.5-57.5-25-50-25.5-42.5-27-25-25.5q19 10 50.5 25.5t113 45.5 145.5 38l2-32q11-149 94-290 41-202 176-365 28-115 81-214 15-28 32-45t49-32q158-74 303.5-104t302-11 306.5 97q220 115 333 336t87 474z"
+ }
+ }]
+};
+exports.ravelry = ravelry;
\ No newline at end of file
diff --git a/dist/fa/rebel.js b/dist/fa/rebel.js
new file mode 100644
index 000000000..856755d4f
--- /dev/null
+++ b/dist/fa/rebel.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rebel = void 0;
+var rebel = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z"
+ }
+ }]
+};
+exports.rebel = rebel;
\ No newline at end of file
diff --git a/dist/fa/recycle.js b/dist/fa/recycle.js
new file mode 100644
index 000000000..14c109054
--- /dev/null
+++ b/dist/fa/recycle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.recycle = void 0;
+var recycle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M836 1169l-15 368-2 22-420-29q-36-3-67-31.5t-47-65.5q-11-27-14.5-55t4-65 12-55 21.5-64 19-53q78 12 509 28zM449 583l180 379-147-92q-63 72-111.5 144.5t-72.5 125-39.5 94.5-18.5 63l-4 21-190-357q-17-26-18-56t6-47l8-18q35-63 114-188l-140-86zM1680 1100l-188 359q-12 29-36.5 46.5t-43.5 20.5l-18 4q-71 7-219 12l8 164-230-367 211-362 7 173q170 16 283 5t170-33zM895 176q-47 63-265 435l-317-187-19-12 225-356q20-31 60-45t80-10q24 2 48.5 12t42 21 41.5 33 36 34.5 36 39.5 32 35zM1550 483l212 363q18 37 12.5 76t-27.5 74q-13 20-33 37t-38 28-48.5 22-47 16-51.5 14-46 12q-34-72-265-436l313-195zM1407 257l142-83-220 373-419-20 151-86q-34-89-75-166t-75.5-123.5-64.5-80-47-46.5l-17-13 405 1q31-3 58 10.5t39 28.5l11 15q39 61 112 190z"
+ }
+ }]
+};
+exports.recycle = recycle;
\ No newline at end of file
diff --git a/dist/fa/reddit.js b/dist/fa/reddit.js
new file mode 100644
index 000000000..9791e749e
--- /dev/null
+++ b/dist/fa/reddit.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.reddit = void 0;
+var reddit = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1095 1167q16 16 0 31-62 62-199 62t-199-62q-16-15 0-31 6-6 15-6t15 6q48 49 169 49 120 0 169-49 6-6 15-6t15 6zM788 986q0 37-26 63t-63 26-63.5-26-26.5-63q0-38 26.5-64t63.5-26 63 26.5 26 63.5zM1183 986q0 37-26.5 63t-63.5 26-63-26-26-63 26-63.5 63-26.5 63.5 26 26.5 64zM1434 866q0-49-35-84t-85-35-86 36q-130-90-311-96l63-283 200 45q0 37 26 63t63 26 63.5-26.5 26.5-63.5-26.5-63.5-63.5-26.5q-54 0-80 50l-221-49q-19-5-25 16l-69 312q-180 7-309 97-35-37-87-37-50 0-85 35t-35 84q0 35 18.5 64t49.5 44q-6 27-6 56 0 142 140 243t337 101q198 0 338-101t140-243q0-32-7-57 30-15 48-43.5t18-63.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.reddit = reddit;
\ No newline at end of file
diff --git a/dist/fa/redditAlien.js b/dist/fa/redditAlien.js
new file mode 100644
index 000000000..3cf581f4f
--- /dev/null
+++ b/dist/fa/redditAlien.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.redditAlien = void 0;
+var redditAlien = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 846q0 58-29.5 105.5t-79.5 72.5q12 46 12 96 0 155-106.5 287t-290.5 208.5-400 76.5-399.5-76.5-290-208.5-106.5-287q0-47 11-94-51-25-82-73.5t-31-106.5q0-82 58-140.5t141-58.5q85 0 145 63 218-152 515-162l116-521q3-13 15-21t26-5l369 81q18-37 54-59.5t79-22.5q62 0 106 43.5t44 105.5-44 106-106 44-105.5-43.5-43.5-105.5l-334-74-104 472q300 9 519 160 58-61 143-61 83 0 141 58.5t58 140.5zM418 1045q0 62 43.5 106t105.5 44 106-44 44-106-44-105.5-106-43.5q-61 0-105 44t-44 105zM1228 1400q11-11 11-26t-11-26q-10-10-25-10t-26 10q-41 42-121 62t-160 20-160-20-121-62q-11-10-26-10t-25 10q-11 10-11 25.5t11 26.5q43 43 118.5 68t122.5 29.5 91 4.5 91-4.5 122.5-29.5 118.5-68zM1225 1195q62 0 105.5-44t43.5-106q0-61-44-105t-105-44q-62 0-106 43.5t-44 105.5 44 106 106 44z"
+ }
+ }]
+};
+exports.redditAlien = redditAlien;
\ No newline at end of file
diff --git a/dist/fa/redditSquare.js b/dist/fa/redditSquare.js
new file mode 100644
index 000000000..e50aedc4d
--- /dev/null
+++ b/dist/fa/redditSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.redditSquare = void 0;
+var redditSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M939 1129q13 13 0 26-53 53-171 53t-171-53q-13-13 0-26 5-6 13-6t13 6q42 42 145 42t145-42q5-6 13-6t13 6zM676 973q0 31-23 54t-54 23-54-23-23-54q0-32 22.5-54.5t54.5-22.5 54.5 22.5 22.5 54.5zM1014 973q0 31-23 54t-54 23-54-23-23-54q0-32 22.5-54.5t54.5-22.5 54.5 22.5 22.5 54.5zM1229 870q0-42-30-72t-73-30q-42 0-73 31-113-78-267-82l54-243 171 39q1 32 23.5 54t53.5 22q32 0 54.5-22.5t22.5-54.5-22.5-54.5-54.5-22.5q-48 0-69 43l-189-42q-17-5-21 13l-60 268q-154 6-265 83-30-32-74-32-43 0-73 30t-30 72q0 30 16 55t42 38q-5 25-5 48 0 122 120 208.5t289 86.5q170 0 290-86.5t120-208.5q0-25-6-49 25-13 40.5-37.5t15.5-54.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.redditSquare = redditSquare;
\ No newline at end of file
diff --git a/dist/fa/refresh.js b/dist/fa/refresh.js
new file mode 100644
index 000000000..fb1d4ff00
--- /dev/null
+++ b/dist/fa/refresh.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.refresh = void 0;
+var refresh = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1511 1056q0 5-1 7-64 268-268 434.5t-478 166.5q-146 0-282.5-55t-243.5-157l-129 129q-19 19-45 19t-45-19-19-45v-448q0-26 19-45t45-19h448q26 0 45 19t19 45-19 45l-137 137q71 66 161 102t187 36q134 0 250-65t186-179q11-17 53-117 8-23 30-23h192q13 0 22.5 9.5t9.5 22.5zM1536 256v448q0 26-19 45t-45 19h-448q-26 0-45-19t-19-45 19-45l138-138q-148-137-349-137-134 0-250 65t-186 179q-11 17-53 117-8 23-30 23h-199q-13 0-22.5-9.5t-9.5-22.5v-7q65-268 270-434.5t480-166.5q146 0 284 55.5t245 156.5l130-129q19-19 45-19t45 19 19 45z"
+ }
+ }]
+};
+exports.refresh = refresh;
\ No newline at end of file
diff --git a/dist/fa/registered.js b/dist/fa/registered.js
new file mode 100644
index 000000000..a4a688a38
--- /dev/null
+++ b/dist/fa/registered.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.registered = void 0;
+var registered = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1042 703q0-88-60-121-33-18-117-18h-123v281h162q66 0 102-37t36-105zM1094 988l205 373q8 17-1 31-8 16-27 16h-152q-20 0-28-17l-194-365h-155v350q0 14-9 23t-23 9h-134q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h294q128 0 190 24 85 31 134 109t49 180q0 92-42.5 165.5t-115.5 109.5q6 10 9 16zM896 160q-150 0-286 58.5t-234.5 157-157 234.5-58.5 286 58.5 286 157 234.5 234.5 157 286 58.5 286-58.5 234.5-157 157-234.5 58.5-286-58.5-286-157-234.5-234.5-157-286-58.5zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.registered = registered;
\ No newline at end of file
diff --git a/dist/fa/remove.js b/dist/fa/remove.js
new file mode 100644
index 000000000..7a04d9b83
--- /dev/null
+++ b/dist/fa/remove.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.remove = void 0;
+var remove = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z"
+ }
+ }]
+};
+exports.remove = remove;
\ No newline at end of file
diff --git a/dist/fa/renren.js b/dist/fa/renren.js
new file mode 100644
index 000000000..0a26d0cda
--- /dev/null
+++ b/dist/fa/renren.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.renren = void 0;
+var renren = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1133 1570q-171 94-368 94-196 0-367-94 138-87 235.5-211t131.5-268q35 144 132.5 268t235.5 211zM638 142v485q0 252-126.5 459.5t-330.5 306.5q-181-215-181-495 0-187 83.5-349.5t229.5-269.5 325-137zM1536 898q0 280-181 495-204-99-330.5-306.5t-126.5-459.5v-485q179 30 325 137t229.5 269.5 83.5 349.5z"
+ }
+ }]
+};
+exports.renren = renren;
\ No newline at end of file
diff --git a/dist/fa/reorder.js b/dist/fa/reorder.js
new file mode 100644
index 000000000..00b51267b
--- /dev/null
+++ b/dist/fa/reorder.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.reorder = void 0;
+var reorder = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 832v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zM1536 320v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.reorder = reorder;
\ No newline at end of file
diff --git a/dist/fa/repeat.js b/dist/fa/repeat.js
new file mode 100644
index 000000000..a9dc5cb28
--- /dev/null
+++ b/dist/fa/repeat.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.repeat = void 0;
+var repeat = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 15 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z"
+ }
+ }]
+};
+exports.repeat = repeat;
\ No newline at end of file
diff --git a/dist/fa/reply.js b/dist/fa/reply.js
new file mode 100644
index 000000000..71a0d9099
--- /dev/null
+++ b/dist/fa/reply.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.reply = void 0;
+var reply = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1120q0 166-127 451-3 7-10.5 24t-13.5 30-13 22q-12 17-28 17-15 0-23.5-10t-8.5-25q0-9 2.5-26.5t2.5-23.5q5-68 5-123 0-101-17.5-181t-48.5-138.5-80-101-105.5-69.5-133-42.5-154-21.5-175.5-6h-224v256q0 26-19 45t-45 19-45-19l-512-512q-19-19-19-45t19-45l512-512q19-19 45-19t45 19 19 45v256h224q713 0 875 403 53 134 53 333z"
+ }
+ }]
+};
+exports.reply = reply;
\ No newline at end of file
diff --git a/dist/fa/replyAll.js b/dist/fa/replyAll.js
new file mode 100644
index 000000000..173b26f36
--- /dev/null
+++ b/dist/fa/replyAll.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.replyAll = void 0;
+var replyAll = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1082v70q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v69l-397 398q-19 19-19 45t19 45zM1792 1120q0 58-17 133.5t-38.5 138-48 125-40.5 90.5l-20 40q-8 17-28 17-6 0-9-1-25-8-23-34 43-400-106-565-64-71-170.5-110.5t-267.5-52.5v251q0 42-39 59-13 5-25 5-27 0-45-19l-512-512q-19-19-19-45t19-45l512-512q29-31 70-14 39 17 39 59v262q411 28 599 221 169 173 169 509z"
+ }
+ }]
+};
+exports.replyAll = replyAll;
\ No newline at end of file
diff --git a/dist/fa/resistance.js b/dist/fa/resistance.js
new file mode 100644
index 000000000..647a57872
--- /dev/null
+++ b/dist/fa/resistance.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.resistance = void 0;
+var resistance = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 874q8-217 116-406t305-318h5q0 1-1 3-8 8-28 33.5t-52 76.5-60 110.5-44.5 135.5-14 150.5 39 157.5 108.5 154q50 50 102 69.5t90.5 11.5 69.5-23.5 47-32.5l16-16q39-51 53-116.5t6.5-122.5-21-107-26.5-80l-14-29q-10-25-30.5-49.5t-43-41-43.5-29.5-35-19l-13-6 104-115q39 17 78 52t59 61l19 27q1-48-18.5-103.5t-40.5-87.5l-20-31 161-183 160 181q-33 46-52.5 102.5t-22.5 90.5l-4 33q22-37 61.5-72.5t67.5-52.5l28-17 103 115q-44 14-85 50t-60 65l-19 29q-31 56-48 133.5t-7 170 57 156.5q33 45 77.5 60.5t85 5.5 76-26.5 57.5-33.5l21-16q60-53 96.5-115t48.5-121.5 10-121.5-18-118-37-107.5-45.5-93-45-72-34.5-47.5l-13-17q-14-13-7-13l10 3q40 29 62.5 46t62 50 64 58 58.5 65 55.5 77 45.5 88 38 103 23.5 117 10.5 136q3 259-108 465t-312 321-456 115q-185 0-351-74t-283.5-198-184-293-60.5-353z"
+ }
+ }]
+};
+exports.resistance = resistance;
\ No newline at end of file
diff --git a/dist/fa/retweet.js b/dist/fa/retweet.js
new file mode 100644
index 000000000..ff3958dd1
--- /dev/null
+++ b/dist/fa/retweet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.retweet = void 0;
+var retweet = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1504q0 13-9.5 22.5t-22.5 9.5h-960q-8 0-13.5-2t-9-7-5.5-8-3-11.5-1-11.5v-13-11-160-416h-192q-26 0-45-19t-19-45q0-24 15-41l320-384q19-22 49-22t49 22l320 384q15 17 15 41 0 26-19 45t-45 19h-192v384h576q16 0 25 11l160 192q7 10 7 21zM1920 1088q0 24-15 41l-320 384q-20 23-49 23t-49-23l-320-384q-15-17-15-41 0-26 19-45t45-19h192v-384h-576q-16 0-25-12l-160-192q-7-9-7-20 0-13 9.5-22.5t22.5-9.5h960q8 0 13.5 2t9 7 5.5 8 3 11.5 1 11.5v13 11 160 416h192q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.retweet = retweet;
\ No newline at end of file
diff --git a/dist/fa/rmb.js b/dist/fa/rmb.js
new file mode 100644
index 000000000..ce928355a
--- /dev/null
+++ b/dist/fa/rmb.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rmb = void 0;
+var rmb = {
+ "viewBox": "0 0 1027 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z"
+ }
+ }]
+};
+exports.rmb = rmb;
\ No newline at end of file
diff --git a/dist/fa/road.js b/dist/fa/road.js
new file mode 100644
index 000000000..29d17f484
--- /dev/null
+++ b/dist/fa/road.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.road = void 0;
+var road = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1111 996v-4l-24-320q-1-13-11-22.5t-23-9.5h-186q-13 0-23 9.5t-11 22.5l-24 320v4q-1 12 8 20t21 8h244q12 0 21-8t8-20zM1870 1463q0 73-46 73h-704q13 0 22-9.5t8-22.5l-20-256q-1-13-11-22.5t-23-9.5h-272q-13 0-23 9.5t-11 22.5l-20 256q-1 13 8 22.5t22 9.5h-704q-46 0-46-73 0-54 26-116l417-1044q8-19 26-33t38-14h339q-13 0-23 9.5t-11 22.5l-15 192q-1 14 8 23t22 9h166q13 0 22-9t8-23l-15-192q-1-13-11-22.5t-23-9.5h339q20 0 38 14t26 33l417 1044q26 62 26 116z"
+ }
+ }]
+};
+exports.road = road;
\ No newline at end of file
diff --git a/dist/fa/rocket.js b/dist/fa/rocket.js
new file mode 100644
index 000000000..521fb7c92
--- /dev/null
+++ b/dist/fa/rocket.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rocket = void 0;
+var rocket = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1440 448q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1664 160q0 249-75.5 430.5t-253.5 360.5q-81 80-195 176l-20 379q-2 16-16 26l-384 224q-7 4-16 4-12 0-23-9l-64-64q-13-14-8-32l85-276-281-281-276 85q-3 1-9 1-14 0-23-9l-64-64q-17-19-5-39l224-384q10-14 26-16l379-20q96-114 176-195 188-187 358-258t431-71q14 0 24 9.5t10 22.5z"
+ }
+ }]
+};
+exports.rocket = rocket;
\ No newline at end of file
diff --git a/dist/fa/rotateLeft.js b/dist/fa/rotateLeft.js
new file mode 100644
index 000000000..a3d44716f
--- /dev/null
+++ b/dist/fa/rotateLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rotateLeft = void 0;
+var rotateLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z"
+ }
+ }]
+};
+exports.rotateLeft = rotateLeft;
\ No newline at end of file
diff --git a/dist/fa/rotateRight.js b/dist/fa/rotateRight.js
new file mode 100644
index 000000000..6783197af
--- /dev/null
+++ b/dist/fa/rotateRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rotateRight = void 0;
+var rotateRight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 15 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z"
+ }
+ }]
+};
+exports.rotateRight = rotateRight;
\ No newline at end of file
diff --git a/dist/fa/rouble.js b/dist/fa/rouble.js
new file mode 100644
index 000000000..d1c91bc15
--- /dev/null
+++ b/dist/fa/rouble.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rouble = void 0;
+var rouble = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z"
+ }
+ }]
+};
+exports.rouble = rouble;
\ No newline at end of file
diff --git a/dist/fa/rss.js b/dist/fa/rss.js
new file mode 100644
index 000000000..369fd89bf
--- /dev/null
+++ b/dist/fa/rss.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rss = void 0;
+var rss = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1344q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM896 1467q2 28-17 48-18 21-47 21h-135q-25 0-43-16.5t-20-41.5q-22-229-184.5-391.5t-391.5-184.5q-25-2-41.5-20t-16.5-43v-135q0-29 21-47 17-17 43-17h5q160 13 306 80.5t259 181.5q114 113 181.5 259t80.5 306zM1408 1469q2 27-18 47-18 20-46 20h-143q-26 0-44.5-17.5t-19.5-42.5q-12-215-101-408.5t-231.5-336-336-231.5-408.5-102q-25-1-42.5-19.5t-17.5-43.5v-143q0-28 20-46 18-18 44-18h3q262 13 501.5 120t425.5 294q187 186 294 425.5t120 501.5z"
+ }
+ }]
+};
+exports.rss = rss;
\ No newline at end of file
diff --git a/dist/fa/rssSquare.js b/dist/fa/rssSquare.js
new file mode 100644
index 000000000..4bdd8b3fc
--- /dev/null
+++ b/dist/fa/rssSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rssSquare = void 0;
+var rssSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1280q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM863 1374q-13-233-176.5-396.5t-396.5-176.5q-14-1-24 9t-10 23v128q0 13 8.5 22t21.5 10q154 11 264 121t121 264q1 13 10 21.5t22 8.5h128q13 0 23-10t9-24zM1247 1375q-5-154-56-297.5t-139.5-260-205-205-260-139.5-297.5-56q-14-1-23 9-10 10-10 23v128q0 13 9 22t22 10q204 7 378 111.5t278.5 278.5 111.5 378q1 13 10 22t22 9h128q13 0 23-10 11-9 9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.rssSquare = rssSquare;
\ No newline at end of file
diff --git a/dist/fa/rub.js b/dist/fa/rub.js
new file mode 100644
index 000000000..2ae883827
--- /dev/null
+++ b/dist/fa/rub.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rub = void 0;
+var rub = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z"
+ }
+ }]
+};
+exports.rub = rub;
\ No newline at end of file
diff --git a/dist/fa/ruble.js b/dist/fa/ruble.js
new file mode 100644
index 000000000..0e8d4f41c
--- /dev/null
+++ b/dist/fa/ruble.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ruble = void 0;
+var ruble = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1043 565q0-100-65-162t-171-62h-320v448h320q106 0 171-62t65-162zM1280 565q0 193-126.5 315t-326.5 122h-340v118h505q14 0 23 9t9 23v128q0 14-9 23t-23 9h-505v192q0 14-9.5 23t-22.5 9h-167q-14 0-23-9t-9-23v-192h-224q-14 0-23-9t-9-23v-128q0-14 9-23t23-9h224v-118h-224q-14 0-23-9t-9-23v-149q0-13 9-22.5t23-9.5h224v-629q0-14 9-23t23-9h539q200 0 326.5 122t126.5 315z"
+ }
+ }]
+};
+exports.ruble = ruble;
\ No newline at end of file
diff --git a/dist/fa/rupee.js b/dist/fa/rupee.js
new file mode 100644
index 000000000..4eaba1ca2
--- /dev/null
+++ b/dist/fa/rupee.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rupee = void 0;
+var rupee = {
+ "viewBox": "0 0 898 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M898 470v102q0 14-9 23t-23 9h-168q-23 144-129 234t-276 110q167 178 459 536 14 16 4 34-8 18-29 18h-195q-16 0-25-12-306-367-498-571-9-9-9-22v-127q0-13 9.5-22.5t22.5-9.5h112q132 0 212.5-43t102.5-125h-427q-14 0-23-9t-9-23v-102q0-14 9-23t23-9h413q-57-113-268-113h-145q-13 0-22.5-9.5t-9.5-22.5v-133q0-14 9-23t23-9h832q14 0 23 9t9 23v102q0 14-9 23t-23 9h-233q47 61 64 144h171q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.rupee = rupee;
\ No newline at end of file
diff --git a/dist/fa/s15.js b/dist/fa/s15.js
new file mode 100644
index 000000000..2cd60f3b3
--- /dev/null
+++ b/dist/fa/s15.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.s15 = void 0;
+var s15 = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 1088v192q0 169-128 286v194q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-118q-63 22-128 22h-768q-65 0-128-22v110q0 17-9.5 28.5t-22.5 11.5h-64q-13 0-22.5-11.5t-9.5-28.5v-186q-128-117-128-286v-192h1536zM704 672q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 608q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 544q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM704 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1792 928v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-640q0-106 75-181t181-75q108 0 184 78 46-19 98-12t93 39l22-22q11-11 22 0l42 42q11 11 0 22l-314 314q-11 11-22 0l-42-42q-11-11 0-22l22-22q-36-46-40.5-104t23.5-108q-37-35-88-35-53 0-90.5 37.5t-37.5 90.5v640h1504q14 0 23 9t9 23zM896 480q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM768 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 416q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM896 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM832 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1024 352q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM960 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23zM1088 288q0 14-9 23t-23 9-23-9-9-23 9-23 23-9 23 9 9 23z"
+ }
+ }]
+};
+exports.s15 = s15;
\ No newline at end of file
diff --git a/dist/fa/safari.js b/dist/fa/safari.js
new file mode 100644
index 000000000..028c77382
--- /dev/null
+++ b/dist/fa/safari.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.safari = void 0;
+var safari = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M949 893q0 26-16.5 45t-41.5 19q-26 0-45-16.5t-19-41.5q0-26 17-45t42-19 44 16.5 19 41.5zM964 951l350-581q-9 8-67.5 62.5t-125.5 116.5-136.5 127-117 110.5-50.5 51.5l-349 580q7-7 67-62t126-116.5 136-127 117-111 50-50.5zM1611 896q0 201-104 371-3-2-17-11t-26.5-16.5-16.5-7.5q-13 0-13 13 0 10 59 44-74 112-184.5 190.5t-241.5 110.5l-16-67q-1-10-15-10-5 0-8 5.5t-2 9.5l16 68q-72 15-146 15-199 0-372-105 1-2 13-20.5t21.5-33.5 9.5-19q0-13-13-13-6 0-17 14.5t-22.5 34.5-13.5 23q-113-75-192-187.5t-110-244.5l69-15q10-3 10-15 0-5-5.5-8t-10.5-2l-68 15q-14-72-14-139 0-206 109-379 2 1 18.5 12t30 19 17.5 8q13 0 13-12 0-6-12.5-15.5t-32.5-21.5l-20-12q77-112 189-189t244-107l15 67q2 10 15 10 5 0 8-5.5t2-10.5l-15-66q71-13 134-13 204 0 379 109-39 56-39 65 0 13 12 13 11 0 48-64 111 75 187.5 186t107.5 241l-56 12q-10 2-10 16 0 5 5.5 8t9.5 2l57-13q14 72 14 140zM1696 896q0-163-63.5-311t-170.5-255-255-170.5-311-63.5-311 63.5-255 170.5-170.5 255-63.5 311 63.5 311 170.5 255 255 170.5 311 63.5 311-63.5 255-170.5 170.5-255 63.5-311zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.safari = safari;
\ No newline at end of file
diff --git a/dist/fa/save.js b/dist/fa/save.js
new file mode 100644
index 000000000..33ad5ac6f
--- /dev/null
+++ b/dist/fa/save.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.save = void 0;
+var save = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1536h768v-384h-768v384zM1280 1536h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zM896 608v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zM1536 640v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z"
+ }
+ }]
+};
+exports.save = save;
\ No newline at end of file
diff --git a/dist/fa/scissors.js b/dist/fa/scissors.js
new file mode 100644
index 000000000..21c501572
--- /dev/null
+++ b/dist/fa/scissors.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.scissors = void 0;
+var scissors = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1260 960l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zM579 700q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zM494 1445q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zM672 832l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zM896 1056l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zM1600 1472l128-64-520-408-177 138q-2 3-13 7z"
+ }
+ }]
+};
+exports.scissors = scissors;
\ No newline at end of file
diff --git a/dist/fa/scribd.js b/dist/fa/scribd.js
new file mode 100644
index 000000000..38f4d4cd5
--- /dev/null
+++ b/dist/fa/scribd.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.scribd = void 0;
+var scribd = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1500 1549q0 89-63 152.5t-153 63.5-153.5-63.5-63.5-152.5q0-90 63.5-153.5t153.5-63.5 153 63.5 63 153.5zM1267 1268q-115 15-192.5 102.5t-77.5 205.5q0 74 33 138-146 78-379 78-109 0-201-21t-153.5-54.5-110.5-76.5-76-85-44.5-83-23.5-66.5-6-39.5q0-19 4.5-42.5t18.5-56 36.5-58 64-43.5 94.5-18 94 17.5 63 41 35.5 53 17.5 49 4 33.5q0 34-23 81 28 27 82 42t93 17l40 1q115 0 190-51t75-133q0-26-9-48.5t-31.5-44.5-49.5-41-74-44-93.5-47.5-119.5-56.5q-28-13-43-20-116-55-187-100t-122.5-102-72-125.5-20.5-162.5q0-78 20.5-150t66-137.5 112.5-114 166.5-77 221.5-28.5q120 0 220 26t164.5 67 109.5 94 64 105.5 19 103.5q0 46-15 82.5t-36.5 58-48.5 36-49 19.5-39 5h-8-32t-39-5-44-14-41-28-37-46-24-70.5-10-97.5q-15-16-59-25.5t-81-10.5l-37-1q-68 0-117.5 31t-70.5 70-21 76q0 24 5 43t24 46 53 51 97 53.5 150 58.5q76 25 138.5 53.5t109 55.5 83 59 60.5 59.5 41 62.5 26.5 62 14.5 63.5 6 62 1 62.5z"
+ }
+ }]
+};
+exports.scribd = scribd;
\ No newline at end of file
diff --git a/dist/fa/search.js b/dist/fa/search.js
new file mode 100644
index 000000000..8fb53e6df
--- /dev/null
+++ b/dist/fa/search.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.search = void 0;
+var search = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 52-38 90t-90 38q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z"
+ }
+ }]
+};
+exports.search = search;
\ No newline at end of file
diff --git a/dist/fa/searchMinus.js b/dist/fa/searchMinus.js
new file mode 100644
index 000000000..76fda5b52
--- /dev/null
+++ b/dist/fa/searchMinus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.searchMinus = void 0;
+var searchMinus = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 800v64q0 13-9.5 22.5t-22.5 9.5h-576q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h576q13 0 22.5 9.5t9.5 22.5zM1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 53-37.5 90.5t-90.5 37.5q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z"
+ }
+ }]
+};
+exports.searchMinus = searchMinus;
\ No newline at end of file
diff --git a/dist/fa/searchPlus.js b/dist/fa/searchPlus.js
new file mode 100644
index 000000000..763463ede
--- /dev/null
+++ b/dist/fa/searchPlus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.searchPlus = void 0;
+var searchPlus = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 800v64q0 13-9.5 22.5t-22.5 9.5h-224v224q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-224h-224q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h224v-224q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5v224h224q13 0 22.5 9.5t9.5 22.5zM1152 832q0-185-131.5-316.5t-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5 316.5-131.5 131.5-316.5zM1664 1664q0 53-37.5 90.5t-90.5 37.5q-54 0-90-38l-343-342q-179 124-399 124-143 0-273.5-55.5t-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5q0 220-124 399l343 343q37 37 37 90z"
+ }
+ }]
+};
+exports.searchPlus = searchPlus;
\ No newline at end of file
diff --git a/dist/fa/sellsy.js b/dist/fa/sellsy.js
new file mode 100644
index 000000000..2833971f5
--- /dev/null
+++ b/dist/fa/sellsy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sellsy = void 0;
+var sellsy = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1500 1371v-733q0-21-15-36t-35-15h-93q-20 0-35 15t-15 36v733q0 20 15 35t35 15h93q20 0 35-15t15-35zM1216 1371v-531q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v531q0 20 15 35t35 15h101q20 0 35-15t15-35zM924 1371v-429q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v429q0 20 15 35t35 15h101q20 0 35-15t15-35zM632 1371v-362q0-20-15-35t-35-15h-101q-20 0-35 15t-15 35v362q0 20 15 35t35 15h101q20 0 35-15t15-35zM2048 1225q0 166-118 284t-284 118h-1244q-166 0-284-118t-118-284q0-116 63-214.5t168-148.5q-10-34-10-73 0-113 80.5-193.5t193.5-80.5q102 0 180 67 45-183 194-300t338-117q149 0 275 73.5t199.5 199.5 73.5 275q0 66-14 122 135 33 221 142.5t86 247.5z"
+ }
+ }]
+};
+exports.sellsy = sellsy;
\ No newline at end of file
diff --git a/dist/fa/send.js b/dist/fa/send.js
new file mode 100644
index 000000000..94fb342fa
--- /dev/null
+++ b/dist/fa/send.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.send = void 0;
+var send = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-453-185-242 295q-18 23-49 23-13 0-22-4-19-7-30.5-23.5t-11.5-36.5v-349l864-1059-1069 925-395-162q-37-14-40-55-2-40 32-59l1664-960q15-9 32-9 20 0 36 11z"
+ }
+ }]
+};
+exports.send = send;
\ No newline at end of file
diff --git a/dist/fa/sendO.js b/dist/fa/sendO.js
new file mode 100644
index 000000000..251985c31
--- /dev/null
+++ b/dist/fa/sendO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sendO = void 0;
+var sendO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-527-215-298 327q-18 21-47 21-14 0-23-4-19-7-30-23.5t-11-36.5v-452l-472-193q-37-14-40-55-3-39 32-59l1664-960q35-21 68 2zM1422 1510l221-1323-1434 827 336 137 863-639-478 797z"
+ }
+ }]
+};
+exports.sendO = sendO;
\ No newline at end of file
diff --git a/dist/fa/server.js b/dist/fa/server.js
new file mode 100644
index 000000000..66a901487
--- /dev/null
+++ b/dist/fa/server.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.server = void 0;
+var server = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128 1408h1024v-128h-1024v128zM128 896h1024v-128h-1024v128zM1696 1344q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM128 384h1024v-128h-1024v128zM1696 832q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1696 320q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zM1792 1152v384h-1792v-384h1792zM1792 640v384h-1792v-384h1792zM1792 128v384h-1792v-384h1792z"
+ }
+ }]
+};
+exports.server = server;
\ No newline at end of file
diff --git a/dist/fa/share.js b/dist/fa/share.js
new file mode 100644
index 000000000..ed90cc8b2
--- /dev/null
+++ b/dist/fa/share.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.share = void 0;
+var share = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 640q0 26-19 45l-512 512q-19 19-45 19t-45-19-19-45v-256h-224q-98 0-175.5 6t-154 21.5-133 42.5-105.5 69.5-80 101-48.5 138.5-17.5 181q0 55 5 123 0 6 2.5 23.5t2.5 26.5q0 15-8.5 25t-23.5 10q-16 0-28-17-7-9-13-22t-13.5-30-10.5-24q-127-285-127-451 0-199 53-333 162-403 875-403h224v-256q0-26 19-45t45-19 45 19l512 512q19 19 19 45z"
+ }
+ }]
+};
+exports.share = share;
\ No newline at end of file
diff --git a/dist/fa/shareAlt.js b/dist/fa/shareAlt.js
new file mode 100644
index 000000000..04a6df9a0
--- /dev/null
+++ b/dist/fa/shareAlt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shareAlt = void 0;
+var shareAlt = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1216 1024q133 0 226.5 93.5t93.5 226.5-93.5 226.5-226.5 93.5-226.5-93.5-93.5-226.5q0-12 2-34l-360-180q-92 86-218 86-133 0-226.5-93.5t-93.5-226.5 93.5-226.5 226.5-93.5q126 0 218 86l360-180q-2-22-2-34 0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5-93.5 226.5-226.5 93.5q-126 0-218-86l-360 180q2 22 2 34t-2 34l360 180q92-86 218-86z"
+ }
+ }]
+};
+exports.shareAlt = shareAlt;
\ No newline at end of file
diff --git a/dist/fa/shareAltSquare.js b/dist/fa/shareAltSquare.js
new file mode 100644
index 000000000..8c533d850
--- /dev/null
+++ b/dist/fa/shareAltSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shareAltSquare = void 0;
+var shareAltSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1195q0-88-62.5-151t-150.5-63q-84 0-145 58l-241-120q2-16 2-23t-2-23l241-120q61 58 145 58 88 0 150.5-63t62.5-151-62.5-150.5-150.5-62.5-151 62.5-63 150.5q0 7 2 23l-241 120q-62-57-145-57-88 0-150.5 62.5t-62.5 150.5 62.5 150.5 150.5 62.5q83 0 145-57l241 120q-2 16-2 23 0 88 63 150.5t151 62.5 150.5-62.5 62.5-150.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.shareAltSquare = shareAltSquare;
\ No newline at end of file
diff --git a/dist/fa/shareSquare.js b/dist/fa/shareSquare.js
new file mode 100644
index 000000000..b6b7df35e
--- /dev/null
+++ b/dist/fa/shareSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shareSquare = void 0;
+var shareSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1005 1101l352-352q19-19 19-45t-19-45l-352-352q-30-31-69-14-40 17-40 59v160q-119 0-216 19.5t-162.5 51-114 79-76.5 95.5-44.5 109-21.5 111.5-5 110.5q0 181 167 404 11 12 25 12 7 0 13-3 22-9 19-33-44-354 62-473 46-52 130-75.5t224-23.5v160q0 42 40 59 12 5 24 5 26 0 45-19zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.shareSquare = shareSquare;
\ No newline at end of file
diff --git a/dist/fa/shareSquareO.js b/dist/fa/shareSquareO.js
new file mode 100644
index 000000000..9a3fcb95d
--- /dev/null
+++ b/dist/fa/shareSquareO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shareSquareO = void 0;
+var shareSquareO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 989v259q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h255v0q13 0 22.5 9.5t9.5 22.5q0 27-26 32-77 26-133 60-10 4-16 4h-112q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-214q0-19 18-29 28-13 54-37 16-16 35-8 21 9 21 29zM1645 493l-384 384q-18 19-45 19-12 0-25-5-39-17-39-59v-192h-160q-323 0-438 131-119 137-74 473 3 23-20 34-8 2-12 2-16 0-26-13-10-14-21-31t-39.5-68.5-49.5-99.5-38.5-114-17.5-122q0-49 3.5-91t14-90 28-88 47-81.5 68.5-74 94.5-61.5 124.5-48.5 159.5-30.5 196.5-11h160v-192q0-42 39-59 13-5 25-5 26 0 45 19l384 384q19 19 19 45t-19 45z"
+ }
+ }]
+};
+exports.shareSquareO = shareSquareO;
\ No newline at end of file
diff --git a/dist/fa/shekel.js b/dist/fa/shekel.js
new file mode 100644
index 000000000..7832910b3
--- /dev/null
+++ b/dist/fa/shekel.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shekel = void 0;
+var shekel = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.shekel = shekel;
\ No newline at end of file
diff --git a/dist/fa/sheqel.js b/dist/fa/sheqel.js
new file mode 100644
index 000000000..6bafbae0a
--- /dev/null
+++ b/dist/fa/sheqel.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sheqel = void 0;
+var sheqel = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M992 624v496q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-496q0-112-80-192t-192-80h-272v1152q0 14-9 23t-23 9h-160q-14 0-23-9t-9-23v-1344q0-14 9-23t23-9h464q135 0 249 66.5t180.5 180.5 66.5 249zM1376 160v880q0 135-66.5 249t-180.5 180.5-249 66.5h-464q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h160q14 0 23 9t9 23v768h272q112 0 192-80t80-192v-880q0-14 9-23t23-9h160q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.sheqel = sheqel;
\ No newline at end of file
diff --git a/dist/fa/shield.js b/dist/fa/shield.js
new file mode 100644
index 000000000..959fe2ca6
--- /dev/null
+++ b/dist/fa/shield.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shield = void 0;
+var shield = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 960v-640h-448v1137q119-63 213-137 235-184 235-360zM1280 192v768q0 86-33.5 170.5t-83 150-118 127.5-126.5 103-121 77.5-89.5 49.5-42.5 20q-12 6-26 6t-26-6q-16-7-42.5-20t-89.5-49.5-121-77.5-126.5-103-118-127.5-83-150-33.5-170.5v-768q0-26 19-45t45-19h1152q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.shield = shield;
\ No newline at end of file
diff --git a/dist/fa/ship.js b/dist/fa/ship.js
new file mode 100644
index 000000000..06f237ec4
--- /dev/null
+++ b/dist/fa/ship.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ship = void 0;
+var ship = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1811 1555q19-19 45-19t45 19l128 128-90 90-83-83-83 83q-18 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-128-128 90-90 83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83 83-83q19-19 45-19t45 19l83 83zM237 1517q-19 19-45 19t-45-19l-128-128 90-90 83 82 83-82q19-19 45-19t45 19l83 82 64-64v-293l-210-314q-17-26-7-56.5t40-40.5l177-58v-299h128v-128h256v-128h256v128h256v128h128v299l177 58q30 10 40 40.5t-7 56.5l-210 314v293l19-18q19-19 45-19t45 19l83 82 83-82q19-19 45-19t45 19l128 128-90 90-83-83-83 83q-18 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83-83 83q-19 19-45 19t-45-19l-83-83zM640 384v128l384-128 384 128v-128h-128v-128h-512v128h-128z"
+ }
+ }]
+};
+exports.ship = ship;
\ No newline at end of file
diff --git a/dist/fa/shirtsinbulk.js b/dist/fa/shirtsinbulk.js
new file mode 100644
index 000000000..b698b1c4e
--- /dev/null
+++ b/dist/fa/shirtsinbulk.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shirtsinbulk = void 0;
+var shirtsinbulk = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h1536v1392l-776 338-760-338v-1392zM1436 1327v-926h-1336v926l661 294zM1436 301v-201h-1336v201h1336zM181 599v115h-37v-115h37zM181 747v115h-37v-115h37zM181 895v115h-37v-115h37zM181 1043v115h-37v-115h37zM181 1191v115h-37v-115h37zM207 1334l15-34 105 47-15 33zM343 1394l15-34 105 46-15 34zM478 1454l15-34 105 46-15 34zM614 1513l15-33 104 46-15 34zM797 1526l105-46 15 33-105 47zM932 1466l105-46 15 34-105 46zM1068 1406l105-46 15 34-105 46zM1203 1347l105-47 15 34-105 46zM259 147v36h-114v-36h114zM421 147v36h-115v-36h115zM583 147v36h-115v-36h115zM744 147v36h-114v-36h114zM906 147v36h-114v-36h114zM1068 147v36h-115v-36h115zM1230 147v36h-115v-36h115zM1391 147v36h-114v-36h114zM181 487v79h-37v-115h115v36h-78zM421 451v36h-115v-36h115zM583 451v36h-115v-36h115zM744 451v36h-114v-36h114zM906 451v36h-114v-36h114zM1068 451v36h-115v-36h115zM1230 451v36h-115v-36h115zM1355 566v-79h-78v-36h115v115h-37zM1355 714v-115h37v115h-37zM1355 862v-115h37v115h-37zM1355 1010v-115h37v115h-37zM1355 1158v-115h37v115h-37zM1355 1306v-115h37v115h-37zM760 1271q-129 0-221-91.5t-92-221.5q0-129 92-221t221-92q130 0 221.5 92t91.5 221q0 130-91.5 221.5t-221.5 91.5zM595 890q0 36 19.5 56.5t49.5 25 64 7 64 2 49.5 9 19.5 30.5q0 49-112 49-97 0-123-51h-3l-31 63q67 42 162 42 29 0 56.5-5t55.5-16 45.5-33 17.5-53q0-46-27.5-69.5t-67.5-27-79.5-3-67-5-27.5-25.5q0-21 20.5-33t40.5-15 41-3q34 0 70.5 11t51.5 34h3l30-58q-3-1-21-8.5t-22.5-9-19.5-7-22-7-20-4.5-24-4-23-1q-29 0-56.5 5t-54 16.5-43 34-16.5 53.5z"
+ }
+ }]
+};
+exports.shirtsinbulk = shirtsinbulk;
\ No newline at end of file
diff --git a/dist/fa/shoppingBag.js b/dist/fa/shoppingBag.js
new file mode 100644
index 000000000..df7f3278c
--- /dev/null
+++ b/dist/fa/shoppingBag.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shoppingBag = void 0;
+var shoppingBag = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1757 1408l35 313q3 28-16 50-19 21-48 21h-1664q-29 0-48-21-19-22-16-50l35-313h1722zM1664 569l86 775h-1708l86-775q3-24 21-40.5t43-16.5h256v128q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5v-128h384v128q0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5v-128h256q25 0 43 16.5t21 40.5zM1280 384v256q0 26-19 45t-45 19-45-19-19-45v-256q0-106-75-181t-181-75-181 75-75 181v256q0 26-19 45t-45 19-45-19-19-45v-256q0-159 112.5-271.5t271.5-112.5 271.5 112.5 112.5 271.5z"
+ }
+ }]
+};
+exports.shoppingBag = shoppingBag;
\ No newline at end of file
diff --git a/dist/fa/shoppingBasket.js b/dist/fa/shoppingBasket.js
new file mode 100644
index 000000000..08339e8dc
--- /dev/null
+++ b/dist/fa/shoppingBasket.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shoppingBasket = void 0;
+var shoppingBasket = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1920 768q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5h-15l-115 662q-8 46-44 76t-82 30h-1280q-46 0-82-30t-44-76l-115-662h-15q-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5h1792zM485 1568q26-2 43.5-22.5t15.5-46.5l-32-416q-2-26-22.5-43.5t-46.5-15.5-43.5 22.5-15.5 46.5l32 416q2 25 20.5 42t43.5 17h5zM896 1504v-416q0-26-19-45t-45-19-45 19-19 45v416q0 26 19 45t45 19 45-19 19-45zM1280 1504v-416q0-26-19-45t-45-19-45 19-19 45v416q0 26 19 45t45 19 45-19 19-45zM1632 1509l32-416q2-26-15.5-46.5t-43.5-22.5-46.5 15.5-22.5 43.5l-32 416q-2 26 15.5 46.5t43.5 22.5h5q25 0 43.5-17t20.5-42zM476 292l-93 412h-132l101-441q19-88 89-143.5t160-55.5h167q0-26 19-45t45-19h384q26 0 45 19t19 45h167q90 0 160 55.5t89 143.5l101 441h-132l-93-412q-11-44-45.5-72t-79.5-28h-167q0 26-19 45t-45 19h-384q-26 0-45-19t-19-45h-167q-45 0-79.5 28t-45.5 72z"
+ }
+ }]
+};
+exports.shoppingBasket = shoppingBasket;
\ No newline at end of file
diff --git a/dist/fa/shoppingCart.js b/dist/fa/shoppingCart.js
new file mode 100644
index 000000000..296a33ea9
--- /dev/null
+++ b/dist/fa/shoppingCart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shoppingCart = void 0;
+var shoppingCart = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1536q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM1536 1536q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM1664 448v512q0 24-16.5 42.5t-40.5 21.5l-1044 122q13 60 13 70 0 16-24 64h920q26 0 45 19t19 45-19 45-45 19h-1024q-26 0-45-19t-19-45q0-11 8-31.5t16-36 21.5-40 15.5-29.5l-177-823h-204q-26 0-45-19t-19-45 19-45 45-19h256q16 0 28.5 6.5t19.5 15.5 13 24.5 8 26 5.5 29.5 4.5 26h1201q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.shoppingCart = shoppingCart;
\ No newline at end of file
diff --git a/dist/fa/shower.js b/dist/fa/shower.js
new file mode 100644
index 000000000..a10076b92
--- /dev/null
+++ b/dist/fa/shower.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shower = void 0;
+var shower = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1433 249q10 10 10 23t-10 23l-626 626q-10 10-23 10t-23-10l-82-82q-10-10-10-23t10-23l44-44q-72-91-81.5-207t46.5-215q-74-71-176-71-106 0-181 75t-75 181v1280h-256v-1280q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5q106 0 201 41t166 115q94-39 197-24.5t185 79.5l44-44q10-10 23-10t23 10zM1344 512q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1600 640q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1856 512q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 640q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1408 704q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM1728 640q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 768q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1344 896q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1600 768q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 1024q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM1472 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 1024q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1344 1024q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1216 1152q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM1088 1280q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19z"
+ }
+ }]
+};
+exports.shower = shower;
\ No newline at end of file
diff --git a/dist/fa/signIn.js b/dist/fa/signIn.js
new file mode 100644
index 000000000..ff8c33b24
--- /dev/null
+++ b/dist/fa/signIn.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.signIn = void 0;
+var signIn = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1184 896q0 26-19 45l-544 544q-19 19-45 19t-45-19-19-45v-288h-448q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h448v-288q0-26 19-45t45-19 45 19l544 544q19 19 19 45zM1536 544v704q0 119-84.5 203.5t-203.5 84.5h-320q-13 0-22.5-9.5t-9.5-22.5q0-4-1-20t-0.5-26.5 3-23.5 10-19.5 20.5-6.5h320q66 0 113-47t47-113v-704q0-66-47-113t-113-47h-288-11-13t-11.5-1-11.5-3-8-5.5-7-9-2-13.5q0-4-1-20t-0.5-26.5 3-23.5 10-19.5 20.5-6.5h320q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.signIn = signIn;
\ No newline at end of file
diff --git a/dist/fa/signLanguage.js b/dist/fa/signLanguage.js
new file mode 100644
index 000000000..774e0f105
--- /dev/null
+++ b/dist/fa/signLanguage.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.signLanguage = void 0;
+var signLanguage = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M831 673q32 0 59 18l222 148q61 40 110 97l146 170q40 46 29 106l-72 413q-6 32-29.5 53.5t-55.5 25.5l-527 56-352 32h-9q-39 0-67.5-28t-28.5-68q0-37 27-64t65-32l260-32h-448q-41 0-69.5-30t-26.5-71q2-39 32-65t69-26l442-1-521-64q-41-5-66-37t-19-73q6-35 34.5-57.5t65.5-22.5h10l481 60-351-94q-38-10-62-41.5t-18-68.5q6-36 33-58.5t62-22.5q6 0 20 2l448 96 217 37q1 0 3 0.5t3 0.5q23 0 30.5-23t-12.5-36l-186-125q-35-23-42-63.5t18-73.5q27-38 76-38zM761 875l186 125-218-37-5-2-36-38-238-262q-1-1-2.5-3.5t-2.5-3.5q-24-31-18.5-70t37.5-64q31-23 68-17.5t64 33.5l142 147q-2 1-5 3.5t-4 4.5q-32 45-23 99t55 85zM1648 421l15 266q4 73-11 147l-48 219q-12 59-67 87l-106 54q2-62-39-109l-146-170q-53-61-117-103l-222-148q-34-23-76-23-51 0-88 37l-235-312q-25-33-18-73.5t41-63.5q33-22 71.5-14t62.5 40l266 352-262-455q-21-35-10.5-75t47.5-59q35-18 72.5-6t57.5 46l241 420-136-337q-15-35-4.5-74t44.5-56q37-19 76-6t56 51l193 415 101 196q8 15 23 17.5t27-7.5 11-26l-12-224q-2-41 26-71t69-31q39 0 67 28.5t30 67.5z"
+ }
+ }]
+};
+exports.signLanguage = signLanguage;
\ No newline at end of file
diff --git a/dist/fa/signOut.js b/dist/fa/signOut.js
new file mode 100644
index 000000000..d4c13b3db
--- /dev/null
+++ b/dist/fa/signOut.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.signOut = void 0;
+var signOut = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1440q0 4 1 20t0.5 26.5-3 23.5-10 19.5-20.5 6.5h-320q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h320q13 0 22.5 9.5t9.5 22.5q0 4 1 20t0.5 26.5-3 23.5-10 19.5-20.5 6.5h-320q-66 0-113 47t-47 113v704q0 66 47 113t113 47h288 11 13t11.5 1 11.5 3 8 5.5 7 9 2 13.5zM1568 896q0 26-19 45l-544 544q-19 19-45 19t-45-19-19-45v-288h-448q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h448v-288q0-26 19-45t45-19 45 19l544 544q19 19 19 45z"
+ }
+ }]
+};
+exports.signOut = signOut;
\ No newline at end of file
diff --git a/dist/fa/signal.js b/dist/fa/signal.js
new file mode 100644
index 000000000..a86c0777c
--- /dev/null
+++ b/dist/fa/signal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.signal = void 0;
+var signal = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1440v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM640 1312v320q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-320q0-14 9-23t23-9h192q14 0 23 9t9 23zM1024 1056v576q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h192q14 0 23 9t9 23zM1408 672v960q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-960q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 160v1472q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-1472q0-14 9-23t23-9h192q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.signal = signal;
\ No newline at end of file
diff --git a/dist/fa/signing.js b/dist/fa/signing.js
new file mode 100644
index 000000000..c19cc5a9f
--- /dev/null
+++ b/dist/fa/signing.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.signing = void 0;
+var signing = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M831 673q32 0 59 18l222 148q61 40 110 97l146 170q40 46 29 106l-72 413q-6 32-29.5 53.5t-55.5 25.5l-527 56-352 32h-9q-39 0-67.5-28t-28.5-68q0-37 27-64t65-32l260-32h-448q-41 0-69.5-30t-26.5-71q2-39 32-65t69-26l442-1-521-64q-41-5-66-37t-19-73q6-35 34.5-57.5t65.5-22.5h10l481 60-351-94q-38-10-62-41.5t-18-68.5q6-36 33-58.5t62-22.5q6 0 20 2l448 96 217 37q1 0 3 0.5t3 0.5q23 0 30.5-23t-12.5-36l-186-125q-35-23-42-63.5t18-73.5q27-38 76-38zM761 875l186 125-218-37-5-2-36-38-238-262q-1-1-2.5-3.5t-2.5-3.5q-24-31-18.5-70t37.5-64q31-23 68-17.5t64 33.5l142 147q-2 1-5 3.5t-4 4.5q-32 45-23 99t55 85zM1648 421l15 266q4 73-11 147l-48 219q-12 59-67 87l-106 54q2-62-39-109l-146-170q-53-61-117-103l-222-148q-34-23-76-23-51 0-88 37l-235-312q-25-33-18-73.5t41-63.5q33-22 71.5-14t62.5 40l266 352-262-455q-21-35-10.5-75t47.5-59q35-18 72.5-6t57.5 46l241 420-136-337q-15-35-4.5-74t44.5-56q37-19 76-6t56 51l193 415 101 196q8 15 23 17.5t27-7.5 11-26l-12-224q-2-41 26-71t69-31q39 0 67 28.5t30 67.5z"
+ }
+ }]
+};
+exports.signing = signing;
\ No newline at end of file
diff --git a/dist/fa/simplybuilt.js b/dist/fa/simplybuilt.js
new file mode 100644
index 000000000..79a108e42
--- /dev/null
+++ b/dist/fa/simplybuilt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.simplybuilt = void 0;
+var simplybuilt = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M863 1032q0-112-79.5-191.5t-191.5-79.5-191 79.5-79 191.5 79 191 191 79 191.5-79 79.5-191zM1726 1031q0-112-79-191t-191-79-191.5 79-79.5 191q0 113 79.5 192t191.5 79 191-79.5 79-191.5zM2048 222v1348q0 44-31.5 75.5t-76.5 31.5h-1832q-45 0-76.5-31.5t-31.5-75.5v-1348q0-44 31.5-75.5t76.5-31.5h431q44 0 76 31.5t32 75.5v161h754v-161q0-44 32-75.5t76-31.5h431q45 0 76.5 31.5t31.5 75.5z"
+ }
+ }]
+};
+exports.simplybuilt = simplybuilt;
\ No newline at end of file
diff --git a/dist/fa/sitemap.js b/dist/fa/sitemap.js
new file mode 100644
index 000000000..3ae98eb09
--- /dev/null
+++ b/dist/fa/sitemap.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sitemap = void 0;
+var sitemap = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1248v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192h-512v192h96q40 0 68 28t28 68v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192h-512v192h96q40 0 68 28t28 68v320q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h96v-192q0-52 38-90t90-38h512v-192h-96q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h320q40 0 68 28t28 68v320q0 40-28 68t-68 28h-96v192h512q52 0 90 38t38 90v192h96q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.sitemap = sitemap;
\ No newline at end of file
diff --git a/dist/fa/skyatlas.js b/dist/fa/skyatlas.js
new file mode 100644
index 000000000..7724b039d
--- /dev/null
+++ b/dist/fa/skyatlas.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skyatlas = void 0;
+var skyatlas = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1430 583zM1690 787q148 0 253 98.5t105 244.5q0 157-109 261.5t-267 104.5q-85 0-162-27.5t-138-73.5-118-106-109-126-103.5-132.5-108.5-126.5-117-106-136-73.5-159-27.5q-154 0-251.5 91.5t-97.5 244.5q0 157 104 250t263 93q100 0 208-37.5t193-98.5q5-4 21-18.5t30-24 22-9.5q14 0 24.5 10.5t10.5 24.5q0 24-60 77-101 88-234.5 142t-260.5 54q-133 0-245.5-58t-180-165-67.5-241q0-205 141.5-341t347.5-136q120 0 226.5 43.5t185.5 113 151.5 153 139 167.5 133.5 153.5 149.5 113 172.5 43.5q102 0 168.5-61.5t66.5-162.5q0-95-64.5-159t-159.5-64q-30 0-81.5 18.5t-68.5 18.5q-20 0-35.5-15t-15.5-35q0-18 8.5-57t8.5-59q0-159-107.5-263t-266.5-104q-58 0-111.5 18.5t-84 40.5-55.5 40.5-33 18.5q-15 0-25.5-10.5t-10.5-25.5q0-19 25-46 59-67 147-103.5t182-36.5q191 0 318 125.5t127 315.5q0 37-4 66 57-15 115-15z"
+ }
+ }]
+};
+exports.skyatlas = skyatlas;
\ No newline at end of file
diff --git a/dist/fa/skype.js b/dist/fa/skype.js
new file mode 100644
index 000000000..7cf472137
--- /dev/null
+++ b/dist/fa/skype.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skype = void 0;
+var skype = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1173 1063q0-50-19.5-91.5t-48.5-68.5-73-49-82.5-34-87.5-23l-104-24q-30-7-44-10.5t-35-11.5-30-16-16.5-21-7.5-30q0-77 144-77 43 0 77 12t54 28.5 38 33.5 40 29 48 12q47 0 75.5-32t28.5-77q0-55-56-99.5t-142-67.5-182-23q-68 0-132 15.5t-119.5 47-89 87-33.5 128.5q0 61 19 106.5t56 75.5 80 48.5 103 32.5l146 36q90 22 112 36 32 20 32 60 0 39-40 64.5t-105 25.5q-51 0-91.5-16t-65-38.5-45.5-45-46-38.5-54-16q-50 0-75.5 30t-25.5 75q0 92 122 157.5t291 65.5q73 0 140-18.5t122.5-53.5 88.5-93.5 33-131.5zM1536 1280q0 159-112.5 271.5t-271.5 112.5q-130 0-234-80-77 16-150 16-143 0-273.5-55.5t-225-150-150-225-55.5-273.5q0-73 16-150-80-104-80-234 0-159 112.5-271.5t271.5-112.5q130 0 234 80 77-16 150-16 143 0 273.5 55.5t225 150 150 225 55.5 273.5q0 73-16 150 80 104 80 234z"
+ }
+ }]
+};
+exports.skype = skype;
\ No newline at end of file
diff --git a/dist/fa/slack.js b/dist/fa/slack.js
new file mode 100644
index 000000000..08786f807
--- /dev/null
+++ b/dist/fa/slack.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.slack = void 0;
+var slack = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1519 776q62 0 103.5 40.5t41.5 101.5q0 97-93 130l-172 59 56 167q7 21 7 47 0 59-42 102t-101 43q-47 0-85.5-27t-53.5-72l-55-165-310 106 55 164q8 24 8 47 0 59-42 102t-102 43q-47 0-85-27t-53-72l-55-163-153 53q-29 9-50 9-61 0-101.5-40t-40.5-101q0-47 27.5-85t71.5-53l156-53-105-313-156 54q-26 8-48 8-60 0-101-40.5t-41-100.5q0-47 27.5-85t71.5-53l157-53-53-159q-8-24-8-47 0-60 42-102.5t102-42.5q47 0 85 27t53 72l54 160 310-105-54-160q-8-24-8-47 0-59 42.5-102t101.5-43q47 0 85.5 27.5t53.5 71.5l53 161 162-55q21-6 43-6 60 0 102.5 39.5t42.5 98.5q0 45-30 81.5t-74 51.5l-157 54 105 316 164-56q24-8 46-8zM725 1038l310-105-105-315-310 107z"
+ }
+ }]
+};
+exports.slack = slack;
\ No newline at end of file
diff --git a/dist/fa/sliders.js b/dist/fa/sliders.js
new file mode 100644
index 000000000..ab96b1c25
--- /dev/null
+++ b/dist/fa/sliders.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sliders = void 0;
+var sliders = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352 1408v128h-352v-128h352zM704 1280q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM864 896v128h-864v-128h864zM224 384v128h-224v-128h224zM1536 1408v128h-736v-128h736zM576 256q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM1216 768q26 0 45 19t19 45v256q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h256zM1536 896v128h-224v-128h224zM1536 384v128h-864v-128h864z"
+ }
+ }]
+};
+exports.sliders = sliders;
\ No newline at end of file
diff --git a/dist/fa/slideshare.js b/dist/fa/slideshare.js
new file mode 100644
index 000000000..857a6516d
--- /dev/null
+++ b/dist/fa/slideshare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.slideshare = void 0;
+var slideshare = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M873 740q0 83-63.5 142.5t-152.5 59.5-152.5-59.5-63.5-142.5q0-84 63.5-143t152.5-59 152.5 59 63.5 143zM1375 740q0 83-63 142.5t-153 59.5q-89 0-152.5-59.5t-63.5-142.5q0-84 63.5-143t152.5-59q90 0 153 59t63 143zM1600 920v-667q0-87-32-123.5t-111-36.5h-1112q-83 0-112.5 34t-29.5 126v673q43 23 88.5 40t81 28 81 18.5 71 11 70 4 58.5 0.5 56.5-2 44.5-2q68-1 95 27 6 6 10 9 26 25 61 51 7-91 118-87 5 0 36.5 1.5t43 2 45.5 1 53-1 54.5-4.5 61-8.5 62-13.5 67-19.5 67.5-27 72-34.5zM1763 915q-121 149-372 252 84 285-23 465-66 113-183 148-104 32-182-15-86-51-82-164l-1-326v-1q-8-2-24.5-6t-23.5-5l-1 338q4 114-83 164-79 47-183 15-117-36-182-150-105-180-22-463-251-103-372-252-25-37-4-63t60 1q4 2 11.5 7t10.5 8v-694q0-72 47-123t114-51h1257q67 0 114 51t47 123v694l21-15q39-27 60-1t-4 63z"
+ }
+ }]
+};
+exports.slideshare = slideshare;
\ No newline at end of file
diff --git a/dist/fa/smileO.js b/dist/fa/smileO.js
new file mode 100644
index 000000000..65709ac5d
--- /dev/null
+++ b/dist/fa/smileO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.smileO = void 0;
+var smileO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1134 1075q-37 121-138 195t-228 74-228-74-138-195q-8-25 4-48.5t38-31.5q25-8 48.5 4t31.5 38q25 80 92.5 129.5t151.5 49.5 151.5-49.5 92.5-129.5q8-26 32-38t49-4 37 31.5 4 48.5zM640 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1152 640q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1408 896q0-130-51-248.5t-136.5-204-204-136.5-248.5-51-248.5 51-204 136.5-136.5 204-51 248.5 51 248.5 136.5 204 204 136.5 248.5 51 248.5-51 204-136.5 136.5-204 51-248.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.smileO = smileO;
\ No newline at end of file
diff --git a/dist/fa/snapchat.js b/dist/fa/snapchat.js
new file mode 100644
index 000000000..1c5d6b6ab
--- /dev/null
+++ b/dist/fa/snapchat.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.snapchat = void 0;
+var snapchat = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1279 1148q0-22-22-27-67-15-118-59t-80-108q-7-19-7-25 0-15 19.5-26t43-17 43-20.5 19.5-36.5q0-19-18.5-31.5t-38.5-12.5q-12 0-32 8t-31 8q-4 0-12-2 5-95 5-114 0-79-17-114-36-78-103-121.5t-152-43.5q-199 0-275 165-17 35-17 114 0 19 5 114-4 2-14 2-12 0-32-7.5t-30-7.5q-21 0-38.5 12t-17.5 32q0 21 19.5 35.5t43 20.5 43 17 19.5 26q0 6-7 25-64 138-198 167-22 5-22 27 0 46 137 68 2 5 6 26t11.5 30.5 23.5 9.5q12 0 37.5-4.5t39.5-4.5q35 0 67 15t54 32.5 57.5 32.5 76.5 15q43 0 79-15t57.5-32.5 53.5-32.5 67-15q14 0 39.5 4t38.5 4q16 0 23-10t11-30 6-25q137-22 137-68zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.snapchat = snapchat;
\ No newline at end of file
diff --git a/dist/fa/snapchatGhost.js b/dist/fa/snapchatGhost.js
new file mode 100644
index 000000000..1cc040b83
--- /dev/null
+++ b/dist/fa/snapchatGhost.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.snapchatGhost = void 0;
+var snapchatGhost = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M848 128q134-1 240.5 68.5t163.5 192.5q27 58 27 179 0 47-9 191 14 7 28 7 18 0 51-13.5t51-13.5q29 0 56 18t27 46q0 32-31.5 54t-69 31.5-69 29-31.5 47.5q0 15 12 43 37 82 102.5 150t144.5 101q28 12 80 23 28 6 28 35 0 70-219 103-7 11-11 39t-14 46.5-33 18.5q-20 0-62-6.5t-64-6.5q-37 0-62 5-32 5-63 22.5t-58 38-58 40.5-76 33.5-99 13.5q-52 0-96.5-13.5t-75-33.5-57.5-40.5-58-38-62-22.5q-26-5-63-5-24 0-65.5 7.5t-58.5 7.5q-25 0-35-18.5t-14-47.5-11-40q-219-33-219-103 0-29 28-35 52-11 80-23 78-32 144.5-101t102.5-150q12-28 12-43 0-28-31.5-47.5t-69.5-29.5-69.5-31.5-31.5-52.5q0-27 26-45.5t55-18.5q15 0 48 13t53 13q18 0 32-7-9-142-9-190 0-122 27-180 64-137 172-198t264-63z"
+ }
+ }]
+};
+exports.snapchatGhost = snapchatGhost;
\ No newline at end of file
diff --git a/dist/fa/snapchatSquare.js b/dist/fa/snapchatSquare.js
new file mode 100644
index 000000000..3dd885b83
--- /dev/null
+++ b/dist/fa/snapchatSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.snapchatSquare = void 0;
+var snapchatSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1148q0-22-22-27-67-14-118-58t-80-109q-7-14-7-25 0-15 19.5-26t42.5-17 42.5-20.5 19.5-36.5q0-19-18.5-31.5t-38.5-12.5q-11 0-31 8t-32 8q-4 0-12-2 5-63 5-115 0-78-17-114-36-78-102.5-121.5t-152.5-43.5q-198 0-275 165-18 38-18 115 0 38 6 114-10 2-15 2-11 0-31.5-8t-30.5-8q-20 0-37.5 12.5t-17.5 32.5q0 21 19.5 35.5t42.5 20.5 42.5 17 19.5 26q0 11-7 25-64 138-198 167-22 5-22 27 0 47 138 69 2 5 6 26t11 30.5 23 9.5q13 0 38.5-5t38.5-5q35 0 67.5 15t54.5 32.5 57.5 32.5 76.5 15q43 0 79-15t57.5-32.5 54-32.5 67.5-15q13 0 39 4.5t39 4.5q15 0 22.5-9.5t11.5-31 5-24.5q138-22 138-69zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.snapchatSquare = snapchatSquare;
\ No newline at end of file
diff --git a/dist/fa/snowflakeO.js b/dist/fa/snowflakeO.js
new file mode 100644
index 000000000..6b135a4a6
--- /dev/null
+++ b/dist/fa/snowflakeO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.snowflakeO = void 0;
+var snowflakeO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1566 1117l-167 33 186 107q23 13 29.5 38.5t-6.5 48.5q-14 23-39 29.5t-48-6.5l-186-106 55 160q13 38-12 63.5t-60.5 20.5-48.5-42l-102-300-271-156v313l208 238q16 18 17 39t-11 36.5-28.5 25-37 5.5-36.5-22l-112-128v214q0 26-19 45t-45 19-45-19-19-45v-214l-112 128q-16 18-36.5 22t-37-5.5-28.5-25-11-36.5 17-39l208-238v-313l-271 156-102 300q-13 37-48.5 42t-60.5-20.5-12-63.5l55-160-186 106q-23 13-48 6.5t-39-29.5q-13-23-6.5-48.5t29.5-38.5l186-107-167-33q-29-6-42-29t-8.5-46.5 25.5-40 50-10.5l310 62 271-157-271-157-310 62q-4 1-13 1-27 0-44-18t-19-40 11-43 40-26l167-33-186-107q-23-13-29.5-38.5t6.5-48.5 39-30 48 7l186 106-55-160q-13-38 12-63.5t60.5-20.5 48.5 42l102 300 271 156v-313l-208-238q-16-18-17-39t11-36.5 28.5-25 37-5.5 36.5 22l112 128v-214q0-26 19-45t45-19 45 19 19 45v214l112-128q16-18 36.5-22t37 5.5 28.5 25 11 36.5-17 39l-208 238v313l271-156 102-300q13-37 48.5-42t60.5 20.5 12 63.5l-55 160 186-106q23-13 48-6.5t39 29.5q13 23 6.5 48.5t-29.5 38.5l-186 107 167 33q27 5 40 26t11 43-19 40-44 18q-9 0-13-1l-310-62-271 157 271 157 310-62q29-6 50 10.5t25.5 40-8.5 46.5-42 29z"
+ }
+ }]
+};
+exports.snowflakeO = snowflakeO;
\ No newline at end of file
diff --git a/dist/fa/soccerBallO.js b/dist/fa/soccerBallO.js
new file mode 100644
index 000000000..d663218d9
--- /dev/null
+++ b/dist/fa/soccerBallO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.soccerBallO = void 0;
+var soccerBallO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M609 816l287-208 287 208-109 336h-355zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM1515 1350q149-203 149-454v-3l-102 89-240-224 63-323 134 12q-150-206-389-282l53 124-287 159-287-159 53-124q-239 76-389 282l135-12 62 323-240 224-102-89v3q0 251 149 454l30-132 326 40 139 298-116 69q117 39 240 39t240-39l-116-69 139-298 326-40z"
+ }
+ }]
+};
+exports.soccerBallO = soccerBallO;
\ No newline at end of file
diff --git a/dist/fa/sort.js b/dist/fa/sort.js
new file mode 100644
index 000000000..9e4725117
--- /dev/null
+++ b/dist/fa/sort.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sort = void 0;
+var sort = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45zM1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.sort = sort;
\ No newline at end of file
diff --git a/dist/fa/sortAlphaAsc.js b/dist/fa/sortAlphaAsc.js
new file mode 100644
index 000000000..ac93c15d4
--- /dev/null
+++ b/dist/fa/sortAlphaAsc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortAlphaAsc = void 0;
+var sortAlphaAsc = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1191 408h177l-72-218-12-47q-2-16-2-20h-4l-3 20q0 1-3.5 18t-7.5 29zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1572 1559v233h-584v-90l369-529q12-18 21-27l11-9v-3q-2 0-6.5 0.5t-7.5 0.5q-12 3-30 3h-232v115h-120v-229h567v89l-369 530q-6 8-21 26l-11 11v2l14-2q9-2 30-2h248v-119h121zM1661 662v106h-288v-106h75l-47-144h-243l-47 144h75v106h-287v-106h70l230-662h162l230 662h70z"
+ }
+ }]
+};
+exports.sortAlphaAsc = sortAlphaAsc;
\ No newline at end of file
diff --git a/dist/fa/sortAlphaDesc.js b/dist/fa/sortAlphaDesc.js
new file mode 100644
index 000000000..a655a406b
--- /dev/null
+++ b/dist/fa/sortAlphaDesc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortAlphaDesc = void 0;
+var sortAlphaDesc = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1191 1432h177l-72-218-12-47q-2-16-2-20h-4l-3 20q0 1-3.5 18t-7.5 29zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1661 1686v106h-288v-106h75l-47-144h-243l-47 144h75v106h-287v-106h70l230-662h162l230 662h70zM1572 535v233h-584v-90l369-529q12-18 21-27l11-9v-3q-2 0-6.5 0.5t-7.5 0.5q-12 3-30 3h-232v115h-120v-229h567v89l-369 530q-6 8-21 26l-11 10v3l14-3q9-1 30-1h248v-119h121z"
+ }
+ }]
+};
+exports.sortAlphaDesc = sortAlphaDesc;
\ No newline at end of file
diff --git a/dist/fa/sortAmountAsc.js b/dist/fa/sortAmountAsc.js
new file mode 100644
index 000000000..56f178508
--- /dev/null
+++ b/dist/fa/sortAmountAsc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortAmountAsc = void 0;
+var sortAmountAsc = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1792 1568v192q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h832q14 0 23 9t9 23zM1600 1056v192q0 14-9 23t-23 9h-640q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h640q14 0 23 9t9 23zM1408 544v192q0 14-9 23t-23 9h-448q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h448q14 0 23 9t9 23zM1216 32v192q0 14-9 23t-23 9h-256q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h256q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.sortAmountAsc = sortAmountAsc;
\ No newline at end of file
diff --git a/dist/fa/sortAmountDesc.js b/dist/fa/sortAmountDesc.js
new file mode 100644
index 000000000..e330e594e
--- /dev/null
+++ b/dist/fa/sortAmountDesc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortAmountDesc = void 0;
+var sortAmountDesc = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1216 1568v192q0 14-9 23t-23 9h-256q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h256q14 0 23 9t9 23zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1408 1056v192q0 14-9 23t-23 9h-448q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h448q14 0 23 9t9 23zM1600 544v192q0 14-9 23t-23 9h-640q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h640q14 0 23 9t9 23zM1792 32v192q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h832q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.sortAmountDesc = sortAmountDesc;
\ No newline at end of file
diff --git a/dist/fa/sortAsc.js b/dist/fa/sortAsc.js
new file mode 100644
index 000000000..c7412ea0c
--- /dev/null
+++ b/dist/fa/sortAsc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortAsc = void 0;
+var sortAsc = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.sortAsc = sortAsc;
\ No newline at end of file
diff --git a/dist/fa/sortDesc.js b/dist/fa/sortDesc.js
new file mode 100644
index 000000000..fa17394a2
--- /dev/null
+++ b/dist/fa/sortDesc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortDesc = void 0;
+var sortDesc = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.sortDesc = sortDesc;
\ No newline at end of file
diff --git a/dist/fa/sortDown.js b/dist/fa/sortDown.js
new file mode 100644
index 000000000..d4c6b62e4
--- /dev/null
+++ b/dist/fa/sortDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortDown = void 0;
+var sortDown = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.sortDown = sortDown;
\ No newline at end of file
diff --git a/dist/fa/sortNumericAsc.js b/dist/fa/sortNumericAsc.js
new file mode 100644
index 000000000..985fabb6d
--- /dev/null
+++ b/dist/fa/sortNumericAsc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortNumericAsc = void 0;
+var sortNumericAsc = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1346 1313q0-63-44-116t-103-53q-52 0-83 37t-31 94 36.5 95 104.5 38q50 0 85-27t35-68zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1486 1371q0 62-13 121.5t-41 114-68 95.5-98.5 65.5-127.5 24.5q-62 0-108-16-24-8-42-15l39-113q15 7 31 11 37 13 75 13 84 0 134.5-58.5t66.5-145.5h-2q-21 23-61.5 37t-84.5 14q-106 0-173-71.5t-67-172.5q0-105 72-178t181-73q123 0 205 94.5t82 252.5zM1456 654v114h-469v-114h167v-432q0-7 0.5-19t0.5-17v-16h-2l-7 12q-8 13-26 31l-62 58-82-86 192-185h123v654h165z"
+ }
+ }]
+};
+exports.sortNumericAsc = sortNumericAsc;
\ No newline at end of file
diff --git a/dist/fa/sortNumericDesc.js b/dist/fa/sortNumericDesc.js
new file mode 100644
index 000000000..67ea8653b
--- /dev/null
+++ b/dist/fa/sortNumericDesc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortNumericDesc = void 0;
+var sortNumericDesc = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1346 289q0-63-44-116t-103-53q-52 0-83 37t-31 94 36.5 95 104.5 38q50 0 85-27t35-68zM736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zM1456 1678v114h-469v-114h167v-432q0-7 0.5-19t0.5-17v-16h-2l-7 12q-8 13-26 31l-62 58-82-86 192-185h123v654h165zM1486 347q0 62-13 121.5t-41 114-68 95.5-98.5 65.5-127.5 24.5q-62 0-108-16-24-8-42-15l39-113q15 7 31 11 37 13 75 13 84 0 134.5-58.5t66.5-145.5h-2q-21 23-61.5 37t-84.5 14q-106 0-173-71.5t-67-172.5q0-105 72-178t181-73q123 0 205 94.5t82 252.5z"
+ }
+ }]
+};
+exports.sortNumericDesc = sortNumericDesc;
\ No newline at end of file
diff --git a/dist/fa/sortUp.js b/dist/fa/sortUp.js
new file mode 100644
index 000000000..4001df3e6
--- /dev/null
+++ b/dist/fa/sortUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortUp = void 0;
+var sortUp = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.sortUp = sortUp;
\ No newline at end of file
diff --git a/dist/fa/soundcloud.js b/dist/fa/soundcloud.js
new file mode 100644
index 000000000..3cb2288c7
--- /dev/null
+++ b/dist/fa/soundcloud.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.soundcloud = void 0;
+var soundcloud = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M784 1372l16-241-16-523q-1-10-7.5-17t-16.5-7q-9 0-16 7t-7 17l-14 523 14 241q1 10 7.5 16.5t15.5 6.5q22 0 24-23zM1080 1343l11-211-12-586q0-16-13-24-8-5-16-5t-16 5q-13 8-13 24l-1 6-10 579q0 1 11 236v1q0 10 6 17 9 11 23 11 11 0 20-9 9-7 9-20zM35 1003l20 128-20 126q-2 9-9 9t-9-9l-17-126 17-128q2-9 9-9t9 9zM121 924l26 207-26 203q-2 9-10 9-9 0-9-10l-23-202 23-207q0-9 9-9 8 0 10 9zM401 1377zM213 886l25 245-25 237q0 11-11 11-10 0-12-11l-21-237 21-245q2-12 12-12 11 0 11 12zM307 879l23 252-23 244q-2 13-14 13-13 0-13-13l-21-244 21-252q0-13 13-13 12 0 14 13zM401 897l21 234-21 246q-2 16-16 16-6 0-10.5-4.5t-4.5-11.5l-20-246 20-234q0-6 4.5-10.5t10.5-4.5q14 0 16 15zM784 1372zM495 751l21 380-21 246q0 7-5 12.5t-12 5.5q-16 0-18-18l-18-246 18-380q2-18 18-18 7 0 12 5.5t5 12.5zM589 665l19 468-19 244q0 8-5.5 13.5t-13.5 5.5q-18 0-20-19l-16-244 16-468q2-19 20-19 8 0 13.5 5.5t5.5 13.5zM687 625l18 506-18 242q-2 21-22 21-19 0-21-21l-16-242 16-506q0-9 6.5-15.5t14.5-6.5q9 0 15 6.5t7 15.5zM1079 1367v0 0 0zM881 621l15 510-15 239q0 10-7.5 17.5t-17.5 7.5-17-7-8-18l-14-239 14-510q0-11 7.5-18t17.5-7 17.5 7 7.5 18zM980 640l14 492-14 236q0 11-8 19t-19 8-19-8-9-19l-12-236 12-492q1-12 9-20t19-8 18.5 8 8.5 20zM1192 1132l-14 231v0q0 13-9 22t-22 9-22-9-10-22l-6-114-6-117 12-636v-3q2-15 12-24 9-7 20-7 8 0 15 5 14 8 16 26zM2304 1113q0 117-83 199.5t-200 82.5h-786q-13-2-22-11t-9-22v-899q0-23 28-33 85-34 181-34 195 0 338 131.5t160 323.5q53-22 110-22 117 0 200 83t83 201z"
+ }
+ }]
+};
+exports.soundcloud = soundcloud;
\ No newline at end of file
diff --git a/dist/fa/spaceShuttle.js b/dist/fa/spaceShuttle.js
new file mode 100644
index 000000000..841525a00
--- /dev/null
+++ b/dist/fa/spaceShuttle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spaceShuttle = void 0;
+var spaceShuttle = {
+ "viewBox": "0 0 2176 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M620 1120q-110 64-268 64h-128v-64h-64q-13 0-22.5-23.5t-9.5-56.5q0-24 7-49-58-2-96.5-10.5t-38.5-20.5 38.5-20.5 96.5-10.5q-7-25-7-49 0-33 9.5-56.5t22.5-23.5h64v-64h128q158 0 268 64h1113q42 7 106.5 18t80.5 14q89 15 150 40.5t83.5 47.5 22.5 40-22.5 40-83.5 47.5-150 40.5q-16 3-80.5 14t-106.5 18h-1113zM1739 868q53 36 53 92t-53 92l81 30q68-48 68-122t-68-122zM625 1136h1015q-217 38-456 80-57 0-113 24t-83 48l-28 24-288 288q-26 26-70.5 45t-89.5 19h-96l-93-464h29q157 0 273-64zM352 720h-29l93-464h96q46 0 90 19t70 45l288 288q4 4 11 10.5t30.5 23 48.5 29 61.5 23 72.5 10.5l456 80h-1015q-116-64-273-64z"
+ }
+ }]
+};
+exports.spaceShuttle = spaceShuttle;
\ No newline at end of file
diff --git a/dist/fa/spinner.js b/dist/fa/spinner.js
new file mode 100644
index 000000000..a2f1d6613
--- /dev/null
+++ b/dist/fa/spinner.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner = void 0;
+var spinner = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M526 1394q0 53-37.5 90.5t-90.5 37.5q-52 0-90-38t-38-90q0-53 37.5-90.5t90.5-37.5 90.5 37.5 37.5 90.5zM1024 1600q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM320 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1522 1394q0 52-38 90t-90 38q-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM558 398q0 66-47 113t-113 47-113-47-47-113 47-113 113-47 113 47 47 113zM1728 896q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5 90.5 37.5 37.5 90.5zM1088 192q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zM1618 398q0 93-66 158.5t-158 65.5q-93 0-158.5-65.5t-65.5-158.5q0-92 65.5-158t158.5-66q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.spinner = spinner;
\ No newline at end of file
diff --git a/dist/fa/spoon.js b/dist/fa/spoon.js
new file mode 100644
index 000000000..ac12d5147
--- /dev/null
+++ b/dist/fa/spoon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spoon = void 0;
+var spoon = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 528q0 145-57 243.5t-152 135.5l45 821q2 26-16 45t-44 19h-192q-26 0-44-19t-16-45l45-821q-95-37-152-135.5t-57-243.5q0-128 42.5-249.5t117.5-200 160-78.5 160 78.5 117.5 200 42.5 249.5z"
+ }
+ }]
+};
+exports.spoon = spoon;
\ No newline at end of file
diff --git a/dist/fa/spotify.js b/dist/fa/spotify.js
new file mode 100644
index 000000000..86021bf6a
--- /dev/null
+++ b/dist/fa/spotify.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spotify = void 0;
+var spotify = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1127 1210q0-32-30-51-193-115-447-115-133 0-287 34-42 9-42 52 0 20 13.5 34.5t35.5 14.5q5 0 37-8 132-27 243-27 226 0 397 103 19 11 33 11 19 0 33-13.5t14-34.5zM1223 995q0-40-35-61-237-141-548-141-153 0-303 42-48 13-48 64 0 25 17.5 42.5t42.5 17.5q7 0 37-8 122-33 251-33 279 0 488 124 24 13 38 13 25 0 42.5-17.5t17.5-42.5zM1331 747q0-47-40-70-126-73-293-110.5t-343-37.5q-204 0-364 47-23 7-38.5 25.5t-15.5 48.5q0 31 20.5 52t51.5 21q11 0 40-8 133-37 307-37 159 0 309.5 34t253.5 95q21 12 40 12 29 0 50.5-20.5t21.5-51.5zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.spotify = spotify;
\ No newline at end of file
diff --git a/dist/fa/square.js b/dist/fa/square.js
new file mode 100644
index 000000000..ae5226b36
--- /dev/null
+++ b/dist/fa/square.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square = void 0;
+var square = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.square = square;
\ No newline at end of file
diff --git a/dist/fa/squareO.js b/dist/fa/squareO.js
new file mode 100644
index 000000000..3d8111563
--- /dev/null
+++ b/dist/fa/squareO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.squareO = void 0;
+var squareO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1120 256h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-832q0-66-47-113t-113-47zM1408 416v832q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.squareO = squareO;
\ No newline at end of file
diff --git a/dist/fa/stackExchange.js b/dist/fa/stackExchange.js
new file mode 100644
index 000000000..bb09ec16a
--- /dev/null
+++ b/dist/fa/stackExchange.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stackExchange = void 0;
+var stackExchange = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1259 1253v66q0 85-57.5 144.5t-138.5 59.5h-57l-260 269v-269h-529q-81 0-138.5-59.5t-57.5-144.5v-66h1238zM1259 927v255h-1238v-255h1238zM1259 599v255h-1238v-255h1238zM1259 459v67h-1238v-67q0-84 57.5-143.5t138.5-59.5h846q81 0 138.5 59.5t57.5 143.5z"
+ }
+ }]
+};
+exports.stackExchange = stackExchange;
\ No newline at end of file
diff --git a/dist/fa/stackOverflow.js b/dist/fa/stackOverflow.js
new file mode 100644
index 000000000..f965f23e1
--- /dev/null
+++ b/dist/fa/stackOverflow.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stackOverflow = void 0;
+var stackOverflow = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1289 1632h-1118v-480h-160v640h1438v-640h-160v480zM347 1108l33-157 783 165-33 156zM450 734l67-146 725 339-67 145zM651 378l102-123 614 513-102 123zM1048 0l477 641-128 96-477-641zM330 1471v-159h800v159h-800z"
+ }
+ }]
+};
+exports.stackOverflow = stackOverflow;
\ No newline at end of file
diff --git a/dist/fa/star.js b/dist/fa/star.js
new file mode 100644
index 000000000..93953527e
--- /dev/null
+++ b/dist/fa/star.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.star = void 0;
+var star = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z"
+ }
+ }]
+};
+exports.star = star;
\ No newline at end of file
diff --git a/dist/fa/starHalf.js b/dist/fa/starHalf.js
new file mode 100644
index 000000000..b59751048
--- /dev/null
+++ b/dist/fa/starHalf.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.starHalf = void 0;
+var starHalf = {
+ "viewBox": "0 0 896 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M832 32v1339l-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41z"
+ }
+ }]
+};
+exports.starHalf = starHalf;
\ No newline at end of file
diff --git a/dist/fa/starHalfEmpty.js b/dist/fa/starHalfEmpty.js
new file mode 100644
index 000000000..b8c6ed7ac
--- /dev/null
+++ b/dist/fa/starHalfEmpty.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.starHalfEmpty = void 0;
+var starHalfEmpty = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z"
+ }
+ }]
+};
+exports.starHalfEmpty = starHalfEmpty;
\ No newline at end of file
diff --git a/dist/fa/starHalfFull.js b/dist/fa/starHalfFull.js
new file mode 100644
index 000000000..5f2692d97
--- /dev/null
+++ b/dist/fa/starHalfFull.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.starHalfFull = void 0;
+var starHalfFull = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z"
+ }
+ }]
+};
+exports.starHalfFull = starHalfFull;
\ No newline at end of file
diff --git a/dist/fa/starHalfO.js b/dist/fa/starHalfO.js
new file mode 100644
index 000000000..e5f285f80
--- /dev/null
+++ b/dist/fa/starHalfO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.starHalfO = void 0;
+var starHalfO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1186 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zM1638 695l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z"
+ }
+ }]
+};
+exports.starHalfO = starHalfO;
\ No newline at end of file
diff --git a/dist/fa/starO.js b/dist/fa/starO.js
new file mode 100644
index 000000000..f36f4de30
--- /dev/null
+++ b/dist/fa/starO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.starO = void 0;
+var starO = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1137 1004l306-297-422-62-189-382-189 382-422 62 306 297-73 421 378-199 377 199zM1664 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 50-41 50-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z"
+ }
+ }]
+};
+exports.starO = starO;
\ No newline at end of file
diff --git a/dist/fa/steam.js b/dist/fa/steam.js
new file mode 100644
index 000000000..678172d1c
--- /dev/null
+++ b/dist/fa/steam.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.steam = void 0;
+var steam = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1582 582q0 101-71.5 172.5t-172.5 71.5-172.5-71.5-71.5-172.5 71.5-172.5 172.5-71.5 172.5 71.5 71.5 172.5zM812 1324q0-104-73-177t-177-73q-27 0-54 6l104 42q77 31 109.5 106.5t1.5 151.5q-31 77-107 109t-152 1q-21-8-62-24.5t-61-24.5q32 60 91 96.5t130 36.5q104 0 177-73t73-177zM1642 583q0-126-89.5-215.5t-215.5-89.5q-127 0-216.5 89.5t-89.5 215.5q0 127 89.5 216t216.5 89q126 0 215.5-89t89.5-216zM1792 583q0 189-133.5 322t-321.5 133l-437 319q-12 129-109 218t-229 89q-121 0-214-76t-118-192l-230-92v-429l389 157q79-48 173-48 13 0 35 2l284-407q2-187 135.5-319t320.5-132q188 0 321.5 133.5t133.5 321.5z"
+ }
+ }]
+};
+exports.steam = steam;
\ No newline at end of file
diff --git a/dist/fa/steamSquare.js b/dist/fa/steamSquare.js
new file mode 100644
index 000000000..52dad19c2
--- /dev/null
+++ b/dist/fa/steamSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.steamSquare = void 0;
+var steamSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1242 647q0-80-57-136.5t-137-56.5-136.5 57-56.5 136q0 80 56.5 136.5t136.5 56.5 137-56.5 57-136.5zM632 1235q0 83-58 140.5t-140 57.5q-56 0-103-29t-72-77q52 20 98 40 60 24 120-1.5t85-86.5q24-60-1.5-120t-86.5-84l-82-33q22-5 42-5 82 0 140 57.5t58 140.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-153l172 69q20 92 93.5 152t168.5 60q104 0 181-70t87-173l345-252q150 0 255.5-105.5t105.5-254.5q0-150-105.5-255.5t-255.5-105.5q-148 0-253 104.5t-107 252.5l-225 322q-9-1-28-1-75 0-137 37l-297-119v-468q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5zM1289 649q0 100-71 170.5t-171 70.5-170.5-70.5-70.5-170.5 70.5-171 170.5-71q101 0 171.5 70.5t70.5 171.5z"
+ }
+ }]
+};
+exports.steamSquare = steamSquare;
\ No newline at end of file
diff --git a/dist/fa/stepBackward.js b/dist/fa/stepBackward.js
new file mode 100644
index 000000000..360383629
--- /dev/null
+++ b/dist/fa/stepBackward.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stepBackward = void 0;
+var stepBackward = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M979 141q19-19 32-13t13 32v1472q0 26-13 32t-32-13l-710-710q-9-9-13-19v678q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h128q26 0 45 19t19 45v678q4-10 13-19z"
+ }
+ }]
+};
+exports.stepBackward = stepBackward;
\ No newline at end of file
diff --git a/dist/fa/stepForward.js b/dist/fa/stepForward.js
new file mode 100644
index 000000000..9139c3907
--- /dev/null
+++ b/dist/fa/stepForward.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stepForward = void 0;
+var stepForward = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45 1651q-19 19-32 13t-13-32v-1472q0-26 13-32t32 13l710 710q9 9 13 19v-678q0-26 19-45t45-19h128q26 0 45 19t19 45v1408q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-678q-4 10-13 19z"
+ }
+ }]
+};
+exports.stepForward = stepForward;
\ No newline at end of file
diff --git a/dist/fa/stethoscope.js b/dist/fa/stethoscope.js
new file mode 100644
index 000000000..0dbbad597
--- /dev/null
+++ b/dist/fa/stethoscope.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stethoscope = void 0;
+var stethoscope = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 704q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 704q0 62-35.5 111t-92.5 70v395q0 159-131.5 271.5t-316.5 112.5-316.5-112.5-131.5-271.5v-132q-164-20-274-128t-110-252v-512q0-26 19-45t45-19q6 0 16 2 17-30 47-48t65-18q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5q-33 0-64-18v402q0 106 94 181t226 75 226-75 94-181v-402q-31 18-64 18-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5q35 0 65 18t47 48q10-2 16-2 26 0 45 19t19 45v512q0 144-110 252t-274 128v132q0 106 94 181t226 75 226-75 94-181v-395q-57-21-92.5-70t-35.5-111q0-80 56-136t136-56 136 56 56 136z"
+ }
+ }]
+};
+exports.stethoscope = stethoscope;
\ No newline at end of file
diff --git a/dist/fa/stickyNote.js b/dist/fa/stickyNote.js
new file mode 100644
index 000000000..337dd636f
--- /dev/null
+++ b/dist/fa/stickyNote.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stickyNote = void 0;
+var stickyNote = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1248v416h-928q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1344q40 0 68 28t28 68v928h-416q-40 0-68 28t-28 68zM1152 1280h381q-15 82-65 132l-184 184q-50 50-132 65v-381z"
+ }
+ }]
+};
+exports.stickyNote = stickyNote;
\ No newline at end of file
diff --git a/dist/fa/stickyNoteO.js b/dist/fa/stickyNoteO.js
new file mode 100644
index 000000000..2927181d8
--- /dev/null
+++ b/dist/fa/stickyNoteO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stickyNoteO = void 0;
+var stickyNoteO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1400 1280h-248v248q29-10 41-22l185-185q12-12 22-41zM1120 1152h288v-896h-1280v1280h896v-288q0-40 28-68t68-28zM1536 224v1024q0 40-20 88t-48 76l-184 184q-28 28-76 48t-88 20h-1024q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h1344q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.stickyNoteO = stickyNoteO;
\ No newline at end of file
diff --git a/dist/fa/stop.js b/dist/fa/stop.js
new file mode 100644
index 000000000..8ca1098a6
--- /dev/null
+++ b/dist/fa/stop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stop = void 0;
+var stop = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 192v1408q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h1408q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.stop = stop;
\ No newline at end of file
diff --git a/dist/fa/stopCircle.js b/dist/fa/stopCircle.js
new file mode 100644
index 000000000..a8f8ea556
--- /dev/null
+++ b/dist/fa/stopCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stopCircle = void 0;
+var stopCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 1184v-576q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23-9t9-23zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.stopCircle = stopCircle;
\ No newline at end of file
diff --git a/dist/fa/stopCircleO.js b/dist/fa/stopCircleO.js
new file mode 100644
index 000000000..19ff4fcc4
--- /dev/null
+++ b/dist/fa/stopCircleO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stopCircleO = void 0;
+var stopCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 128q209 0 385.5 103t279.5 279.5 103 385.5-103 385.5-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103zM768 1440q148 0 273-73t198-198 73-273-73-273-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73zM480 1216q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h576q14 0 23 9t9 23v576q0 14-9 23t-23 9h-576z"
+ }
+ }]
+};
+exports.stopCircleO = stopCircleO;
\ No newline at end of file
diff --git a/dist/fa/streetView.js b/dist/fa/streetView.js
new file mode 100644
index 000000000..c0a031285
--- /dev/null
+++ b/dist/fa/streetView.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.streetView = void 0;
+var streetView = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1408 1536q0 63-61.5 113.5t-164 81-225 46-253.5 15.5-253.5-15.5-225-46-164-81-61.5-113.5q0-49 33-88.5t91-66.5 118-44.5 131-29.5q26-5 48 10.5t26 41.5q5 26-10.5 48t-41.5 26q-58 10-106 23.5t-76.5 25.5-48.5 23.5-27.5 19.5-8.5 12q3 11 27 26.5t73 33 114 32.5 160.5 25 201.5 10 201.5-10 160.5-25 114-33 73-33.5 27-27.5q-1-4-8.5-11t-27.5-19-48.5-23.5-76.5-25-106-23.5q-26-4-41.5-26t-10.5-48q4-26 26-41.5t48-10.5q71 12 131 29.5t118 44.5 91 66.5 33 88.5zM1024 640v384q0 26-19 45t-45 19h-64v384q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-384h-64q-26 0-45-19t-19-45v-384q0-53 37.5-90.5t90.5-37.5h384q53 0 90.5 37.5t37.5 90.5zM928 256q0 93-65.5 158.5t-158.5 65.5-158.5-65.5-65.5-158.5 65.5-158.5 158.5-65.5 158.5 65.5 65.5 158.5z"
+ }
+ }]
+};
+exports.streetView = streetView;
\ No newline at end of file
diff --git a/dist/fa/strikethrough.js b/dist/fa/strikethrough.js
new file mode 100644
index 000000000..d412a15ef
--- /dev/null
+++ b/dist/fa/strikethrough.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.strikethrough = void 0;
+var strikethrough = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1760 896q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1728zM483 832q-28-35-51-80-48-98-48-188 0-181 134-309 133-127 393-127 50 0 167 19 66 12 177 48 10 38 21 118 14 123 14 183 0 18-5 45l-12 3-84-6-14-2q-50-149-103-205-88-91-210-91-114 0-182 59-67 58-67 146 0 73 66 140t279 129q69 20 173 66 58 28 95 52h-743zM990 1088h411q7 39 7 92 0 111-41 212-23 56-71 104-37 35-109 81-80 48-153 66-80 21-203 21-114 0-195-23l-140-40q-57-16-72-28-8-8-8-22v-13q0-108-2-156-1-30 0-68l2-37v-44l102-2q15 34 30 71t22.5 56 12.5 27q35 57 80 94 43 36 105 57 59 22 132 22 64 0 139-27 77-26 122-86 47-61 47-129 0-84-81-157-34-29-137-71z"
+ }
+ }]
+};
+exports.strikethrough = strikethrough;
\ No newline at end of file
diff --git a/dist/fa/stumbleupon.js b/dist/fa/stumbleupon.js
new file mode 100644
index 000000000..bfe62e364
--- /dev/null
+++ b/dist/fa/stumbleupon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stumbleupon = void 0;
+var stumbleupon = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1062 712v-118q0-42-30-72t-72-30-72 30-30 72v612q0 175-126 299t-303 124q-178 0-303.5-125.5t-125.5-303.5v-266h328v262q0 43 30 72.5t72 29.5 72-29.5 30-72.5v-620q0-171 126.5-292t301.5-121q176 0 302 122t126 294v136l-195 58zM1592 934h328v266q0 178-125.5 303.5t-303.5 125.5q-177 0-303-124.5t-126-300.5v-268l131 61 195-58v270q0 42 30 71.5t72 29.5 72-29.5 30-71.5v-275z"
+ }
+ }]
+};
+exports.stumbleupon = stumbleupon;
\ No newline at end of file
diff --git a/dist/fa/stumbleuponCircle.js b/dist/fa/stumbleuponCircle.js
new file mode 100644
index 000000000..11e8a1997
--- /dev/null
+++ b/dist/fa/stumbleuponCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stumbleuponCircle = void 0;
+var stumbleuponCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M866 839l90-27v-62q0-79-58-135t-138-56-138 55.5-58 134.5v283q0 20-14 33.5t-33 13.5-32.5-13.5-13.5-33.5v-120h-151v122q0 82 57.5 139t139.5 57q81 0 138.5-56.5t57.5-136.5v-280q0-19 13.5-33t33.5-14q19 0 32.5 14t13.5 33v54zM1199 1034v-122h-150v126q0 20-13.5 33.5t-33.5 13.5q-19 0-32.5-14t-13.5-33v-123l-90 26-60-28v123q0 80 58 137t139 57 138.5-57 57.5-139zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.stumbleuponCircle = stumbleuponCircle;
\ No newline at end of file
diff --git a/dist/fa/subscript.js b/dist/fa/subscript.js
new file mode 100644
index 000000000..31e0364de
--- /dev/null
+++ b/dist/fa/subscript.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.subscript = void 0;
+var subscript = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M897 1369v167h-248l-159-252-24-42q-8-9-11-21h-3q-1 3-2.5 6.5t-3.5 8-3 6.5q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zM1536 1586v206h-514l-4-27q-3-45-3-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 80-65 188-65 110 0 178 59.5t68 158.5q0 66-34.5 118.5t-84 86-99.5 62.5-87 63-41 73h232v-80h126z"
+ }
+ }]
+};
+exports.subscript = subscript;
\ No newline at end of file
diff --git a/dist/fa/subway.js b/dist/fa/subway.js
new file mode 100644
index 000000000..883c8abe7
--- /dev/null
+++ b/dist/fa/subway.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.subway = void 0;
+var subway = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 0q185 0 316.5 93.5t131.5 226.5v896q0 130-125.5 222t-305.5 97l213 202q16 15 8 35t-30 20h-1056q-22 0-30-20t8-35l213-202q-180-5-305.5-97t-125.5-222v-896q0-133 131.5-226.5t316.5-93.5h640zM288 1312q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM704 768v-512h-544v512h544zM1248 1312q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM1408 768v-512h-576v512h576z"
+ }
+ }]
+};
+exports.subway = subway;
\ No newline at end of file
diff --git a/dist/fa/suitcase.js b/dist/fa/suitcase.js
new file mode 100644
index 000000000..1abc1e619
--- /dev/null
+++ b/dist/fa/suitcase.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.suitcase = void 0;
+var suitcase = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 384h512v-128h-512v128zM288 384v1280h-64q-92 0-158-66t-66-158v-832q0-92 66-158t158-66h64zM1408 384v1280h-1024v-1280h128v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h128zM1792 608v832q0 92-66 158t-158 66h-64v-1280h64q92 0 158 66t66 158z"
+ }
+ }]
+};
+exports.suitcase = suitcase;
\ No newline at end of file
diff --git a/dist/fa/sunO.js b/dist/fa/sunO.js
new file mode 100644
index 000000000..24b31f21b
--- /dev/null
+++ b/dist/fa/sunO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sunO = void 0;
+var sunO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1472 896q0-117-45.5-223.5t-123-184-184-123-223.5-45.5-223.5 45.5-184 123-123 184-45.5 223.5 45.5 223.5 123 184 184 123 223.5 45.5 223.5-45.5 184-123 123-184 45.5-223.5zM1748 1173q-4 15-20 20l-292 96v306q0 16-13 26-15 10-29 4l-292-94-180 248q-10 13-26 13t-26-13l-180-248-292 94q-14 6-29-4-13-10-13-26v-306l-292-96q-16-5-20-20-5-17 4-29l180-248-180-248q-9-13-4-29 4-15 20-20l292-96v-306q0-16 13-26 15-10 29-4l292 94 180-248q9-12 26-12t26 12l180 248 292-94q14-6 29 4 13 10 13 26v306l292 96q16 5 20 20 5 16-4 29l-180 248 180 248q9 12 4 29z"
+ }
+ }]
+};
+exports.sunO = sunO;
\ No newline at end of file
diff --git a/dist/fa/superpowers.js b/dist/fa/superpowers.js
new file mode 100644
index 000000000..99edcb9bb
--- /dev/null
+++ b/dist/fa/superpowers.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.superpowers = void 0;
+var superpowers = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1473 929q7-118-33-226.5t-113-189-177-131-221-57.5q-116-7-225.5 32t-192 110.5-135 175-59.5 220.5q-7 118 33 226.5t113 189 177.5 131 221.5 57.5q155 9 293-59t224-195.5 94-283.5zM1792 0l-349 348q120 117 180.5 272t50.5 321q-11 183-102 339t-241 255.5-332 124.5l-999 132 347-347q-120-116-180.5-271.5t-50.5-321.5q11-184 102-340t241.5-255.5 332.5-124.5q167-22 500-66t500-66z"
+ }
+ }]
+};
+exports.superpowers = superpowers;
\ No newline at end of file
diff --git a/dist/fa/superscript.js b/dist/fa/superscript.js
new file mode 100644
index 000000000..c8c00fc6d
--- /dev/null
+++ b/dist/fa/superscript.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.superscript = void 0;
+var superscript = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M897 1369v167h-248l-159-252-24-42q-8-9-11-21h-3q-1 3-2.5 6.5t-3.5 8-3 6.5q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zM1534 690v206h-514l-3-27q-4-28-4-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 83-65 188-65 110 0 178 59.5t68 158.5q0 56-24.5 103t-62 76.5-81.5 58.5-82 50.5-65.5 51.5-30.5 63h232v-80h126z"
+ }
+ }]
+};
+exports.superscript = superscript;
\ No newline at end of file
diff --git a/dist/fa/support.js b/dist/fa/support.js
new file mode 100644
index 000000000..8c09a1b4c
--- /dev/null
+++ b/dist/fa/support.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.support = void 0;
+var support = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90zM218 1257l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361zM896 1664q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90zM896 1280q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5zM1380 1063l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z"
+ }
+ }]
+};
+exports.support = support;
\ No newline at end of file
diff --git a/dist/fa/table.js b/dist/fa/table.js
new file mode 100644
index 000000000..bcf8e900d
--- /dev/null
+++ b/dist/fa/table.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.table = void 0;
+var table = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM512 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM512 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1024 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 992v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1536 608v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zM1664 288v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.table = table;
\ No newline at end of file
diff --git a/dist/fa/tablet.js b/dist/fa/tablet.js
new file mode 100644
index 000000000..68aa64f1e
--- /dev/null
+++ b/dist/fa/tablet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tablet = void 0;
+var tablet = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1408q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1024 1248v-960q0-13-9.5-22.5t-22.5-9.5h-832q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h832q13 0 22.5-9.5t9.5-22.5zM1152 288v1088q0 66-47 113t-113 47h-832q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h832q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.tablet = tablet;
\ No newline at end of file
diff --git a/dist/fa/tachometer.js b/dist/fa/tachometer.js
new file mode 100644
index 000000000..6dfa8f128
--- /dev/null
+++ b/dist/fa/tachometer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tachometer = void 0;
+var tachometer = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM576 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1004 1185l101-382q6-26-7.5-48.5t-38.5-29.5-48 6.5-30 39.5l-101 382q-60 5-107 43.5t-63 98.5q-20 77 20 146t117 89 146-20 89-117q16-60-6-117t-72-91zM1664 1152q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1472 704q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1792 1152q0 261-141 483-19 29-54 29h-1402q-35 0-54-29-141-221-141-483 0-182 71-348t191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.tachometer = tachometer;
\ No newline at end of file
diff --git a/dist/fa/tag.js b/dist/fa/tag.js
new file mode 100644
index 000000000..34289c123
--- /dev/null
+++ b/dist/fa/tag.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tag = void 0;
+var tag = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448 448q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1515 1024q0 53-37 90l-491 492q-39 37-91 37-53 0-90-37l-715-716q-38-37-64.5-101t-26.5-117v-416q0-52 38-90t90-38h416q53 0 117 26.5t102 64.5l715 714q37 39 37 91z"
+ }
+ }]
+};
+exports.tag = tag;
\ No newline at end of file
diff --git a/dist/fa/tags.js b/dist/fa/tags.js
new file mode 100644
index 000000000..21a110a9c
--- /dev/null
+++ b/dist/fa/tags.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tags = void 0;
+var tags = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448 448q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1515 1024q0 53-37 90l-491 492q-39 37-91 37-53 0-90-37l-715-716q-38-37-64.5-101t-26.5-117v-416q0-52 38-90t90-38h416q53 0 117 26.5t102 64.5l715 714q37 39 37 91zM1899 1024q0 53-37 90l-491 492q-39 37-91 37-36 0-59-14t-53-45l470-470q37-37 37-90 0-52-37-91l-715-714q-38-38-102-64.5t-117-26.5h224q53 0 117 26.5t102 64.5l715 714q37 39 37 91z"
+ }
+ }]
+};
+exports.tags = tags;
\ No newline at end of file
diff --git a/dist/fa/tasks.js b/dist/fa/tasks.js
new file mode 100644
index 000000000..73478fb60
--- /dev/null
+++ b/dist/fa/tasks.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tasks = void 0;
+var tasks = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1408h640v-128h-640v128zM640 896h1024v-128h-1024v128zM1280 384h384v-128h-384v128zM1792 1216v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 704v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45zM1792 192v256q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h1664q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.tasks = tasks;
\ No newline at end of file
diff --git a/dist/fa/taxi.js b/dist/fa/taxi.js
new file mode 100644
index 000000000..bc617dc83
--- /dev/null
+++ b/dist/fa/taxi.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.taxi = void 0;
+var taxi = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1824 896q93 0 158.5 65.5t65.5 158.5v384q0 14-9 23t-23 9h-96v64q0 80-56 136t-136 56-136-56-56-136v-64h-1024v64q0 80-56 136t-136 56-136-56-56-136v-64h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h128v-224q0-14 9-23t23-9h448q14 0 23 9t9 23v224h128q98 0 179 63.5t104 157.5l105 419h28zM320 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47zM516 896h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5zM1728 1376q66 0 113-47t47-113-47-113-113-47-113 47-47 113 47 113 113 47z"
+ }
+ }]
+};
+exports.taxi = taxi;
\ No newline at end of file
diff --git a/dist/fa/telegram.js b/dist/fa/telegram.js
new file mode 100644
index 000000000..ca00d18b4
--- /dev/null
+++ b/dist/fa/telegram.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.telegram = void 0;
+var telegram = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1189 1307l147-693q9-44-10.5-63t-51.5-7l-864 333q-29 11-39.5 25t-2.5 26.5 32 19.5l221 69 513-323q21-14 32-6 7 5-4 15l-415 375v0 0l-16 228q23 0 45-22l108-104 224 165q64 36 81-38zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.telegram = telegram;
\ No newline at end of file
diff --git a/dist/fa/television.js b/dist/fa/television.js
new file mode 100644
index 000000000..2c1fa04c3
--- /dev/null
+++ b/dist/fa/television.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.television = void 0;
+var television = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1248v-960q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 288v960q0 66-47 113t-113 47h-736v128h352q14 0 23 9t9 23v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-128h-736q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.television = television;
\ No newline at end of file
diff --git a/dist/fa/tencentWeibo.js b/dist/fa/tencentWeibo.js
new file mode 100644
index 000000000..548fcb4a2
--- /dev/null
+++ b/dist/fa/tencentWeibo.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tencentWeibo = void 0;
+var tencentWeibo = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M842 572q0 80-57 136.5t-136 56.5q-60 0-111-35-62 67-115 146-247 371-202 859 1 22-12.5 38.5t-34.5 18.5h-5q-20 0-35-13.5t-17-33.5q-14-126-3.5-247.5t29.5-217 54-186 69-155.5 74-125q61-90 132-165-16-35-16-77 0-80 56.5-136.5t136.5-56.5 136.5 56.5 56.5 136.5zM1223 583q0 158-78 292t-212.5 212-292.5 78q-64 0-131-14-21-5-32.5-23.5t-6.5-39.5q5-20 23-31.5t39-7.5q51 13 108 13 97 0 186-38t153-102 102-153 38-186-38-186-102-153-153-102-186-38-186 38-153 102-102 153-38 186q0 114 52 218 10 20 3.5 40t-25.5 30-39.5 3-30.5-26q-64-123-64-265 0-119 46.5-227t124.5-186 186-124 226-46q158 0 292.5 78t212.5 212.5 78 292.5z"
+ }
+ }]
+};
+exports.tencentWeibo = tencentWeibo;
\ No newline at end of file
diff --git a/dist/fa/terminal.js b/dist/fa/terminal.js
new file mode 100644
index 000000000..8eaaa11fe
--- /dev/null
+++ b/dist/fa/terminal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.terminal = void 0;
+var terminal = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M585 983l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23zM1664 1440v64q0 14-9 23t-23 9h-960q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h960q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.terminal = terminal;
\ No newline at end of file
diff --git a/dist/fa/textHeight.js b/dist/fa/textHeight.js
new file mode 100644
index 000000000..17fcf4c9c
--- /dev/null
+++ b/dist/fa/textHeight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.textHeight = void 0;
+var textHeight = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1744 1408q33 0 42 18.5t-11 44.5l-126 162q-20 26-49 26t-49-26l-126-162q-20-26-11-44.5t42-18.5h80v-1024h-80q-33 0-42-18.5t11-44.5l126-162q20-26 49-26t49 26l126 162q20 26 11 44.5t-42 18.5h-80v1024h80zM81 129l54 27q12 5 211 5 44 0 132-2t132-2q36 0 107.5 0.5t107.5 0.5h293q6 0 21 0.5t20.5 0 16-3 17.5-9 15-17.5l42-1q4 0 14 0.5t14 0.5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-48t-14.5-73.5-7.5-35.5q-6-8-12-12.5t-15.5-6-13-2.5-18-0.5-16.5 0.5q-17 0-66.5-0.5t-74.5-0.5-64 2-71 6q-9 81-8 136 0 94 2 388t2 455q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q19-42 19-383 0-101-3-303t-3-303v-117q0-2 0.5-15.5t0.5-25-1-25.5-3-24-5-14q-11-12-162-12-33 0-93 12t-80 26q-19 13-34 72.5t-31.5 111-42.5 53.5q-42-26-56-44v-383z"
+ }
+ }]
+};
+exports.textHeight = textHeight;
\ No newline at end of file
diff --git a/dist/fa/textWidth.js b/dist/fa/textWidth.js
new file mode 100644
index 000000000..8c6106186
--- /dev/null
+++ b/dist/fa/textWidth.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.textWidth = void 0;
+var textWidth = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M81 129l54 27q12 5 211 5 44 0 132-2t132-2q70 0 246.5-1t304.5-0.5 247 4.5q33 1 56-31l42-1q4 0 14 0.5t14 0.5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-47.5t-15-73.5-7-36q-10-13-27-19-5-2-66-2-30 0-93-1t-103-1-94 2-96 7q-9 81-8 136l1 152v-52q0 55 1 154t1.5 180 0.5 153q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q7-16 11.5-74t6-145.5 1.5-155-0.5-153.5-0.5-89q0-7-2.5-21.5t-2.5-22.5q0-7 0.5-44t1-73 0-76.5-3-67.5-6.5-32q-11-12-162-12-41 0-163 13.5t-138 24.5q-19 12-34 71.5t-31.5 111.5-42.5 54q-42-26-56-44v-383zM1310 1411q12 0 42 19.5t57.5 41.5 59.5 49 36 30q26 21 26 49t-26 49q-4 3-36 30t-59.5 49-57.5 41.5-42 19.5q-13 0-20.5-10.5t-10-28.5-2.5-33.5 1.5-33 1.5-19.5h-1024q0 2 1.5 19.5t1.5 33-2.5 33.5-10 28.5-20.5 10.5q-12 0-42-19.5t-57.5-41.5-59.5-49-36-30q-26-21-26-49t26-49q4-3 36-30t59.5-49 57.5-41.5 42-19.5q13 0 20.5 10.5t10 28.5 2.5 33.5-1.5 33-1.5 19.5h1024q0-2-1.5-19.5t-1.5-33 2.5-33.5 10-28.5 20.5-10.5z"
+ }
+ }]
+};
+exports.textWidth = textWidth;
\ No newline at end of file
diff --git a/dist/fa/th.js b/dist/fa/th.js
new file mode 100644
index 000000000..3c8a975e8
--- /dev/null
+++ b/dist/fa/th.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.th = void 0;
+var th = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1152 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.th = th;
\ No newline at end of file
diff --git a/dist/fa/thLarge.js b/dist/fa/thLarge.js
new file mode 100644
index 000000000..614efdb33
--- /dev/null
+++ b/dist/fa/thLarge.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thLarge = void 0;
+var thLarge = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 1024v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM768 256v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM1664 1024v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90zM1664 256v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90z"
+ }
+ }]
+};
+exports.thLarge = thLarge;
\ No newline at end of file
diff --git a/dist/fa/thList.js b/dist/fa/thList.js
new file mode 100644
index 000000000..ca2dc5f4d
--- /dev/null
+++ b/dist/fa/thList.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thList = void 0;
+var thList = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM512 736v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 1248v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zM512 224v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zM1792 736v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zM1792 224v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.thList = thList;
\ No newline at end of file
diff --git a/dist/fa/themeisle.js b/dist/fa/themeisle.js
new file mode 100644
index 000000000..92f8a01f2
--- /dev/null
+++ b/dist/fa/themeisle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.themeisle = void 0;
+var themeisle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M852 309q0 29-17 52.5t-45 23.5-45-23.5-17-52.5 17-52.5 45-23.5 45 23.5 17 52.5zM688 1685v-114q0-30-20.5-51.5t-50.5-21.5-50 21.5-20 51.5v114q0 30 20.5 52t49.5 22q30 0 50.5-22t20.5-52zM860 1685v-114q0-30-20-51.5t-50-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22q29 0 49.5-22t20.5-52zM1034 1685v-114q0-30-20.5-51.5t-50.5-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22 50.5-22 20.5-52zM1208 1685v-114q0-30-20.5-51.5t-50.5-21.5-50.5 21.5-20.5 51.5v114q0 30 20.5 52t50.5 22 50.5-22 20.5-52zM1476 1001q-84 160-232 259.5t-323 99.5q-123 0-229.5-51.5t-178.5-137-113-197.5-41-232q0-88 21-174-104 175-104 390 0 162 65 312t185 251q30-57 91-57 56 0 86 50 32-50 87-50 56 0 86 50 32-50 87-50t87 50q30-50 86-50 28 0 52.5 15.5t37.5 40.5q112-94 177-231.5t73-287.5zM1326 972q0-75-72-75-17 0-47 6-95 19-149 19-226 0-226-243 0-86 30-204-83 127-83 275 0 150 89 260.5t235 110.5q111 0 210-70 13-48 13-79zM884 313q0-50-32-89.5t-81-39.5-81 39.5-32 89.5q0 51 31.5 90.5t81.5 39.5 81.5-39.5 31.5-90.5zM1513 652q0-96-37.5-179t-113-137-173.5-54q-77 0-149 35t-127 94q-48 159-48 268 0 104 45.5 157t147.5 53q53 0 142-19 36-6 53-6 51 0 77.5 28t26.5 80q0 26-4 46 75-68 117.5-165.5t42.5-200.5zM1792 869q0 111-33.5 249.5t-93.5 204.5q-58 64-195 142.5t-228 104.5l-4 1v114q0 43-29.5 75t-72.5 32q-56 0-86-50-32 50-87 50t-87-50q-30 50-86 50-55 0-87-50-30 50-86 50-47 0-75-33.5t-28-81.5q-90 68-198 68-118 0-211-80 54-1 106-20-113-31-182-127 32 7 71 7 89 0 164-46-192-192-240-306-24-56-24-160 0-57 9-125.5t31.5-146.5 55-141 86.5-105 120-42q59 0 81 52 19-29 42-54 2-3 12-13t13-16q10-15 23-38t25-42 28-39q87-111 211.5-177t260.5-66q35 0 62 4 59-64 146-64 83 0 140 57 5 5 5 12 0 5-6 13.5t-12.5 16-16 17l-10.5 10.5q17 6 36 18t19 24q0 6-16 25 157 138 197 378 25-30 60-30 45 0 100 49 90 80 90 279z"
+ }
+ }]
+};
+exports.themeisle = themeisle;
\ No newline at end of file
diff --git a/dist/fa/thermometer.js b/dist/fa/thermometer.js
new file mode 100644
index 000000000..20c3d7a7e
--- /dev/null
+++ b/dist/fa/thermometer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometer = void 0;
+var thermometer = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer = thermometer;
\ No newline at end of file
diff --git a/dist/fa/thermometer0.js b/dist/fa/thermometer0.js
new file mode 100644
index 000000000..36f0d7f00
--- /dev/null
+++ b/dist/fa/thermometer0.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometer0 = void 0;
+var thermometer0 = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-79 56-135.5t136-56.5 136 56.5 56 135.5zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer0 = thermometer0;
\ No newline at end of file
diff --git a/dist/fa/thermometer1.js b/dist/fa/thermometer1.js
new file mode 100644
index 000000000..0eef0e29a
--- /dev/null
+++ b/dist/fa/thermometer1.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometer1 = void 0;
+var thermometer1 = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-139h128v139q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer1 = thermometer1;
\ No newline at end of file
diff --git a/dist/fa/thermometer2.js b/dist/fa/thermometer2.js
new file mode 100644
index 000000000..742ee308f
--- /dev/null
+++ b/dist/fa/thermometer2.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometer2 = void 0;
+var thermometer2 = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-395h128v395q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer2 = thermometer2;
\ No newline at end of file
diff --git a/dist/fa/thermometer3.js b/dist/fa/thermometer3.js
new file mode 100644
index 000000000..d83a8e577
--- /dev/null
+++ b/dist/fa/thermometer3.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometer3 = void 0;
+var thermometer3 = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-651h128v651q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer3 = thermometer3;
\ No newline at end of file
diff --git a/dist/fa/thermometer4.js b/dist/fa/thermometer4.js
new file mode 100644
index 000000000..25dafe367
--- /dev/null
+++ b/dist/fa/thermometer4.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometer4 = void 0;
+var thermometer4 = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometer4 = thermometer4;
\ No newline at end of file
diff --git a/dist/fa/thermometerEmpty.js b/dist/fa/thermometerEmpty.js
new file mode 100644
index 000000000..06c92d243
--- /dev/null
+++ b/dist/fa/thermometerEmpty.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometerEmpty = void 0;
+var thermometerEmpty = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-79 56-135.5t136-56.5 136 56.5 56 135.5zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometerEmpty = thermometerEmpty;
\ No newline at end of file
diff --git a/dist/fa/thermometerFull.js b/dist/fa/thermometerFull.js
new file mode 100644
index 000000000..02062f029
--- /dev/null
+++ b/dist/fa/thermometerFull.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometerFull = void 0;
+var thermometerFull = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-907h128v907q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometerFull = thermometerFull;
\ No newline at end of file
diff --git a/dist/fa/thermometerHalf.js b/dist/fa/thermometerHalf.js
new file mode 100644
index 000000000..15e10e3f8
--- /dev/null
+++ b/dist/fa/thermometerHalf.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometerHalf = void 0;
+var thermometerHalf = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-395h128v395q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometerHalf = thermometerHalf;
\ No newline at end of file
diff --git a/dist/fa/thermometerQuarter.js b/dist/fa/thermometerQuarter.js
new file mode 100644
index 000000000..4c9d55ba6
--- /dev/null
+++ b/dist/fa/thermometerQuarter.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometerQuarter = void 0;
+var thermometerQuarter = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-139h128v139q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometerQuarter = thermometerQuarter;
\ No newline at end of file
diff --git a/dist/fa/thermometerThreeQuarters.js b/dist/fa/thermometerThreeQuarters.js
new file mode 100644
index 000000000..6ee4947db
--- /dev/null
+++ b/dist/fa/thermometerThreeQuarters.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometerThreeQuarters = void 0;
+var thermometerThreeQuarters = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1344q0 80-56 136t-136 56-136-56-56-136q0-60 35-110t93-71v-651h128v651q58 21 93 71t35 110zM768 1344q0-77-34-144t-94-112v-768q0-80-56-136t-136-56-136 56-56 136v768q-60 45-94 112t-34 144q0 133 93.5 226.5t226.5 93.5 226.5-93.5 93.5-226.5zM896 1344q0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-182 128-313v-711q0-133 93.5-226.5t226.5-93.5 226.5 93.5 93.5 226.5v711q128 131 128 313zM1024 768v128h-192v-128h192zM1024 512v128h-192v-128h192zM1024 256v128h-192v-128h192z"
+ }
+ }]
+};
+exports.thermometerThreeQuarters = thermometerThreeQuarters;
\ No newline at end of file
diff --git a/dist/fa/thumbTack.js b/dist/fa/thumbTack.js
new file mode 100644
index 000000000..274cf4d60
--- /dev/null
+++ b/dist/fa/thumbTack.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thumbTack = void 0;
+var thumbTack = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480 864v-448q0-14-9-23t-23-9-23 9-9 23v448q0 14 9 23t23 9 23-9 9-23zM1152 1216q0 26-19 45t-45 19h-429l-51 483q-2 12-10.5 20.5t-20.5 8.5h-1q-27 0-32-27l-76-485h-404q-26 0-45-19t-19-45q0-123 78.5-221.5t177.5-98.5v-512q-52 0-90-38t-38-90 38-90 90-38h640q52 0 90 38t38 90-38 90-90 38v512q99 0 177.5 98.5t78.5 221.5z"
+ }
+ }]
+};
+exports.thumbTack = thumbTack;
\ No newline at end of file
diff --git a/dist/fa/thumbsDown.js b/dist/fa/thumbsDown.js
new file mode 100644
index 000000000..dd60360fa
--- /dev/null
+++ b/dist/fa/thumbsDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thumbsDown = void 0;
+var thumbsDown = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 576q0 26-19 45t-45 19q-27 0-45.5-19t-18.5-45q0-27 18.5-45.5t45.5-18.5q26 0 45 18.5t19 45.5zM416 1088v-640q0-26-19-45t-45-19h-288q-26 0-45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45-19t19-45zM1545 939q55 61 55 149-1 78-57.5 135t-134.5 57h-277q4 14 8 24t11 22 10 18q18 37 27 57t19 58.5 10 76.5q0 24-0.5 39t-5 45-12 50-24 45-40 40.5-60 26-82.5 10.5q-26 0-45-19-20-20-34-50t-19.5-52-12.5-61q-9-42-13.5-60.5t-17.5-48.5-31-48q-33-33-101-120-49-64-101-121t-76-59q-25-2-43-20.5t-18-43.5v-641q0-26 19-44.5t45-19.5q35-1 158-44 77-26 120.5-39.5t121.5-29 144-15.5h17 76 36q133 2 197 78 58 69 49 181 39 37 54 94 17 61 0 117 46 61 43 137 0 32-15 76z"
+ }
+ }]
+};
+exports.thumbsDown = thumbsDown;
\ No newline at end of file
diff --git a/dist/fa/thumbsODown.js b/dist/fa/thumbsODown.js
new file mode 100644
index 000000000..5f4e47334
--- /dev/null
+++ b/dist/fa/thumbsODown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thumbsODown = void 0;
+var thumbsODown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 448q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 1024q0-35-21.5-81t-53.5-47q15-17 25-47.5t10-55.5q0-69-53-119 18-31 18-69 0-37-17.5-73.5t-47.5-52.5q5-30 5-56 0-85-49-126t-136-41h-128q-131 0-342 73-5 2-29 10.5t-35.5 12.5-35 11.5-38 11-33 6.5-31.5 3h-32v640h32q16 0 35.5 9t40 27 38.5 35.5 40 44 34.5 42.5 31.5 41 23 30q55 68 77 91 41 43 59.5 109.5t30.5 125.5 38 85q96 0 128-47t32-145q0-59-48-160.5t-48-159.5h352q50 0 89-38.5t39-89.5zM1536 1025q0 103-76 179t-180 76h-176q48 99 48 192 0 118-35 186-35 69-102 101.5t-151 32.5q-51 0-90-37-34-33-54-82t-25.5-90.5-17.5-84.5-31-64q-48-50-107-127-101-131-137-155h-274q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h288q22 0 138-40 128-44 223-66t200-22h112q140 0 226.5 79t85.5 216v5q60 77 60 178 0 22-3 43 38 67 38 144 0 36-9 69 49 73 49 163z"
+ }
+ }]
+};
+exports.thumbsODown = thumbsODown;
\ No newline at end of file
diff --git a/dist/fa/thumbsOUp.js b/dist/fa/thumbsOUp.js
new file mode 100644
index 000000000..d82f28b0d
--- /dev/null
+++ b/dist/fa/thumbsOUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thumbsOUp = void 0;
+var thumbsOUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1344q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1408 768q0-51-39-89.5t-89-38.5h-352q0-58 48-159.5t48-160.5q0-98-32-145t-128-47q-26 26-38 85t-30.5 125.5-59.5 109.5q-22 23-77 91-4 5-23 30t-31.5 41-34.5 42.5-40 44-38.5 35.5-40 27-35.5 9h-32v640h32q13 0 31.5 3t33 6.5 38 11 35 11.5 35.5 12.5 29 10.5q211 73 342 73h121q192 0 192-167 0-26-5-56 30-16 47.5-52.5t17.5-73.5-18-69q53-50 53-119 0-25-10-55.5t-25-47.5q32-1 53.5-47t21.5-81zM1536 767q0 89-49 163 9 33 9 69 0 77-38 144 3 21 3 43 0 101-60 178 1 139-85 219.5t-227 80.5h-36-93q-96 0-189.5-22.5t-216.5-65.5q-116-40-138-40h-288q-53 0-90.5-37.5t-37.5-90.5v-640q0-53 37.5-90.5t90.5-37.5h274q36-24 137-155 58-75 107-128 24-25 35.5-85.5t30.5-126.5 62-108q39-37 90-37 84 0 151 32.5t102 101.5 35 186q0 93-48 192h176q104 0 180 76t76 179z"
+ }
+ }]
+};
+exports.thumbsOUp = thumbsOUp;
\ No newline at end of file
diff --git a/dist/fa/thumbsUp.js b/dist/fa/thumbsUp.js
new file mode 100644
index 000000000..a3645d6f1
--- /dev/null
+++ b/dist/fa/thumbsUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thumbsUp = void 0;
+var thumbsUp = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1344q0-26-19-45t-45-19q-27 0-45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45-18.5t19-45.5zM416 832v640q0 26-19 45t-45 19h-288q-26 0-45-19t-19-45v-640q0-26 19-45t45-19h288q26 0 45 19t19 45zM1600 832q0 86-55 149 15 44 15 76 3 76-43 137 17 56 0 117-15 57-54 94 9 112-49 181-64 76-197 78h-36-76-17q-66 0-144-15.5t-121.5-29-120.5-39.5q-123-43-158-44-26-1-45-19.5t-19-44.5v-641q0-25 18-43.5t43-20.5q24-2 76-59t101-121q68-87 101-120 18-18 31-48t17.5-48.5 13.5-60.5q7-39 12.5-61t19.5-52 34-50q19-19 45-19 46 0 82.5 10.5t60 26 40 40.5 24 45 12 50 5 45 0.5 39q0 38-9.5 76t-19 60-27.5 56q-3 6-10 18t-11 22-8 24h277q78 0 135 57t57 135z"
+ }
+ }]
+};
+exports.thumbsUp = thumbsUp;
\ No newline at end of file
diff --git a/dist/fa/ticket.js b/dist/fa/ticket.js
new file mode 100644
index 000000000..ccaa93415
--- /dev/null
+++ b/dist/fa/ticket.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ticket = void 0;
+var ticket = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 452l316 316-572 572-316-316zM813 1431l618-618q19-19 19-45t-19-45l-362-362q-18-18-45-18t-45 18l-618 618q-19 19-19 45t19 45l362 362q18 18 45 18t45-18zM1702 794l-907 908q-37 37-90.5 37t-90.5-37l-126-126q56-56 56-136t-56-136-136-56-136 56l-125-126q-37-37-37-90.5t37-90.5l907-906q37-37 90.5-37t90.5 37l125 125q-56 56-56 136t56 136 136 56 136-56l126 125q37 37 37 90.5t-37 90.5z"
+ }
+ }]
+};
+exports.ticket = ticket;
\ No newline at end of file
diff --git a/dist/fa/times.js b/dist/fa/times.js
new file mode 100644
index 000000000..0fd0d9f06
--- /dev/null
+++ b/dist/fa/times.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.times = void 0;
+var times = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1298 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z"
+ }
+ }]
+};
+exports.times = times;
\ No newline at end of file
diff --git a/dist/fa/timesCircle.js b/dist/fa/timesCircle.js
new file mode 100644
index 000000000..05698c12d
--- /dev/null
+++ b/dist/fa/timesCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.timesCircle = void 0;
+var timesCircle = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1149 1122q0-26-19-45l-181-181 181-181q19-19 19-45 0-27-19-46l-90-90q-19-19-46-19-26 0-45 19l-181 181-181-181q-19-19-45-19-27 0-46 19l-90 90q-19 19-19 46 0 26 19 45l181 181-181 181q-19 19-19 45 0 27 19 46l90 90q19 19 46 19 26 0 45-19l181-181 181 181q19 19 45 19 27 0 46-19l90-90q19-19 19-46zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.timesCircle = timesCircle;
\ No newline at end of file
diff --git a/dist/fa/timesCircleO.js b/dist/fa/timesCircleO.js
new file mode 100644
index 000000000..c07c8c630
--- /dev/null
+++ b/dist/fa/timesCircleO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.timesCircleO = void 0;
+var timesCircleO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1097 1079l-146 146q-10 10-23 10t-23-10l-137-137-137 137q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l137-137-137-137q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l137 137 137-137q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-137 137 137 137q10 10 10 23t-10 23zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"
+ }
+ }]
+};
+exports.timesCircleO = timesCircleO;
\ No newline at end of file
diff --git a/dist/fa/timesRectangle.js b/dist/fa/timesRectangle.js
new file mode 100644
index 000000000..ac0651415
--- /dev/null
+++ b/dist/fa/timesRectangle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.timesRectangle = void 0;
+var timesRectangle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1175 1321l146-146q10-10 10-23t-10-23l-233-233 233-233q10-10 10-23t-10-23l-146-146q-10-10-23-10t-23 10l-233 233-233-233q-10-10-23-10t-23 10l-146 146q-10 10-10 23t10 23l233 233-233 233q-10 10-10 23t10 23l146 146q10 10 23 10t23-10l233-233 233 233q10 10 23 10t23-10zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.timesRectangle = timesRectangle;
\ No newline at end of file
diff --git a/dist/fa/timesRectangleO.js b/dist/fa/timesRectangleO.js
new file mode 100644
index 000000000..d3f609915
--- /dev/null
+++ b/dist/fa/timesRectangleO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.timesRectangleO = void 0;
+var timesRectangleO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1257 1111l-146 146q-10 10-23 10t-23-10l-169-169-169 169q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l169-169-169-169q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l169 169 169-169q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-169 169 169 169q10 10 10 23t-10 23zM256 1408h1280v-1024h-1280v1024zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.timesRectangleO = timesRectangleO;
\ No newline at end of file
diff --git a/dist/fa/tint.js b/dist/fa/tint.js
new file mode 100644
index 000000000..9ad73d41f
--- /dev/null
+++ b/dist/fa/tint.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tint = void 0;
+var tint = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1152q0-36-20-69-1-1-15.5-22.5t-25.5-38-25-44-21-50.5q-4-16-21-16t-21 16q-7 23-21 50.5t-25 44-25.5 38-15.5 22.5q-20 33-20 69 0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zM1024 1024q0 212-150 362t-362 150-362-150-150-362q0-145 81-275 6-9 62.5-90.5t101-151 99.5-178 83-201.5q9-30 34-47t51-17 51.5 17 33.5 47q28 93 83 201.5t99.5 178 101 151 62.5 90.5q81 127 81 275z"
+ }
+ }]
+};
+exports.tint = tint;
\ No newline at end of file
diff --git a/dist/fa/toggleDown.js b/dist/fa/toggleDown.js
new file mode 100644
index 000000000..62452ca44
--- /dev/null
+++ b/dist/fa/toggleDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toggleDown = void 0;
+var toggleDown = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1145 675q18 35-5 66l-320 448q-19 27-52 27t-52-27l-320-448q-23-31-5-66 17-35 57-35h640q40 0 57 35zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.toggleDown = toggleDown;
\ No newline at end of file
diff --git a/dist/fa/toggleLeft.js b/dist/fa/toggleLeft.js
new file mode 100644
index 000000000..34e4b3605
--- /dev/null
+++ b/dist/fa/toggleLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toggleLeft = void 0;
+var toggleLeft = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 576v640q0 26-19 45t-45 19q-20 0-37-12l-448-320q-27-19-27-52t27-52l448-320q17-12 37-12 26 0 45 19t19 45zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.toggleLeft = toggleLeft;
\ No newline at end of file
diff --git a/dist/fa/toggleOff.js b/dist/fa/toggleOff.js
new file mode 100644
index 000000000..58ef898d5
--- /dev/null
+++ b/dist/fa/toggleOff.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toggleOff = void 0;
+var toggleOff = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 896q0-104-40.5-198.5t-109.5-163.5-163.5-109.5-198.5-40.5-198.5 40.5-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5 198.5-40.5 163.5-109.5 109.5-163.5 40.5-198.5zM1920 896q0-104-40.5-198.5t-109.5-163.5-163.5-109.5-198.5-40.5h-386q119 90 188.5 224t69.5 288-69.5 288-188.5 224h386q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5zM2048 896q0 130-51 248.5t-136.5 204-204 136.5-248.5 51h-768q-130 0-248.5-51t-204-136.5-136.5-204-51-248.5 51-248.5 136.5-204 204-136.5 248.5-51h768q130 0 248.5 51t204 136.5 136.5 204 51 248.5z"
+ }
+ }]
+};
+exports.toggleOff = toggleOff;
\ No newline at end of file
diff --git a/dist/fa/toggleOn.js b/dist/fa/toggleOn.js
new file mode 100644
index 000000000..8f6b00eaa
--- /dev/null
+++ b/dist/fa/toggleOn.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toggleOn = void 0;
+var toggleOn = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 896q0-130 51-248.5t136.5-204 204-136.5 248.5-51h768q130 0 248.5 51t204 136.5 136.5 204 51 248.5-51 248.5-136.5 204-204 136.5-248.5 51h-768q-130 0-248.5-51t-204-136.5-136.5-204-51-248.5zM1408 1408q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5-198.5 40.5-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5z"
+ }
+ }]
+};
+exports.toggleOn = toggleOn;
\ No newline at end of file
diff --git a/dist/fa/toggleRight.js b/dist/fa/toggleRight.js
new file mode 100644
index 000000000..94d623a32
--- /dev/null
+++ b/dist/fa/toggleRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toggleRight = void 0;
+var toggleRight = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 896q0 33-27 52l-448 320q-31 23-66 5-35-17-35-57v-640q0-40 35-57 35-18 66 5l448 320q27 19 27 52zM1280 1376v-960q0-14-9-23t-23-9h-960q-14 0-23 9t-9 23v960q0 14 9 23t23 9h960q14 0 23-9t9-23zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.toggleRight = toggleRight;
\ No newline at end of file
diff --git a/dist/fa/toggleUp.js b/dist/fa/toggleUp.js
new file mode 100644
index 000000000..ce1b140f5
--- /dev/null
+++ b/dist/fa/toggleUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toggleUp = void 0;
+var toggleUp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1145 1117q-17 35-57 35h-640q-40 0-57-35-18-35 5-66l320-448q19-27 52-27t52 27l320 448q23 31 5 66zM1280 1376v-960q0-13-9.5-22.5t-22.5-9.5h-960q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5-9.5t9.5-22.5zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.toggleUp = toggleUp;
\ No newline at end of file
diff --git a/dist/fa/trademark.js b/dist/fa/trademark.js
new file mode 100644
index 000000000..50f2c9b44
--- /dev/null
+++ b/dist/fa/trademark.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trademark = void 0;
+var trademark = {
+ "viewBox": "0 0 1973 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M857 544v117q0 13-9.5 22t-22.5 9h-298v812q0 13-9 22.5t-22 9.5h-135q-13 0-22.5-9t-9.5-23v-812h-297q-13 0-22.5-9t-9.5-22v-117q0-14 9-23t23-9h793q13 0 22.5 9.5t9.5 22.5zM1895 541l77 961q1 13-8 24-10 10-23 10h-134q-12 0-21-8.5t-10-20.5l-46-588-189 425q-8 19-29 19h-120q-20 0-29-19l-188-427-45 590q-1 12-10 20.5t-21 8.5h-135q-13 0-23-10-9-10-9-24l78-961q1-12 10-20.5t21-8.5h142q20 0 29 19l220 520q10 24 20 51 3-7 9.5-24.5t10.5-26.5l221-520q9-19 29-19h141q13 0 22 8.5t10 20.5z"
+ }
+ }]
+};
+exports.trademark = trademark;
\ No newline at end of file
diff --git a/dist/fa/train.js b/dist/fa/train.js
new file mode 100644
index 000000000..d674472b0
--- /dev/null
+++ b/dist/fa/train.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.train = void 0;
+var train = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1088 0q185 0 316.5 93.5t131.5 226.5v896q0 130-125.5 222t-305.5 97l213 202q16 15 8 35t-30 20h-1056q-22 0-30-20t8-35l213-202q-180-5-305.5-97t-125.5-222v-896q0-133 131.5-226.5t316.5-93.5h640zM768 1344q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM1344 768v-512h-1152v512h1152z"
+ }
+ }]
+};
+exports.train = train;
\ No newline at end of file
diff --git a/dist/fa/transgender.js b/dist/fa/transgender.js
new file mode 100644
index 000000000..be028b2cf
--- /dev/null
+++ b/dist/fa/transgender.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.transgender = void 0;
+var transgender = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-149-16-270.5-103t-186.5-223.5-53-291.5q16-204 160-353.5t347-172.5q118-14 228 19t198 103l255-254h-134q-14 0-23-9t-9-23v-64zM576 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.transgender = transgender;
\ No newline at end of file
diff --git a/dist/fa/transgenderAlt.js b/dist/fa/transgenderAlt.js
new file mode 100644
index 000000000..12e682f8c
--- /dev/null
+++ b/dist/fa/transgenderAlt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.transgenderAlt = void 0;
+var transgenderAlt = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q126 158 126 359 0 221-147.5 384.5t-364.5 187.5v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-217-24-364.5-187.5t-147.5-384.5q0-201 126-359l-52-53-101 111q-9 10-22 10.5t-23-7.5l-48-44q-10-8-10.5-21.5t8.5-23.5l105-115-111-112v134q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-288q0-26 19-45t45-19h288q14 0 23 9t9 23v64q0 14-9 23t-23 9h-133l106 107 86-94q9-10 22-10.5t23 7.5l48 44q10 8 10.5 21.5t-8.5 23.5l-90 99 57 56q158-126 359-126t359 126l255-254h-134q-14 0-23-9t-9-23v-64zM832 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5 131.5 316.5 316.5 131.5z"
+ }
+ }]
+};
+exports.transgenderAlt = transgenderAlt;
\ No newline at end of file
diff --git a/dist/fa/trash.js b/dist/fa/trash.js
new file mode 100644
index 000000000..092f5a812
--- /dev/null
+++ b/dist/fa/trash.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trash = void 0;
+var trash = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM768 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM1024 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zM480 384h448l-48-117q-7-9-17-11h-317q-10 2-17 11zM1408 416v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.trash = trash;
\ No newline at end of file
diff --git a/dist/fa/trashO.js b/dist/fa/trashO.js
new file mode 100644
index 000000000..64bb63f8b
--- /dev/null
+++ b/dist/fa/trashO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trashO = void 0;
+var trashO = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM768 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM1024 736v576q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-576q0-14 9-23t23-9h64q14 0 23 9t9 23zM1152 1460v-948h-896v948q0 22 7 40.5t14.5 27 10.5 8.5h832q3 0 10.5-8.5t14.5-27 7-40.5zM480 384h448l-48-117q-7-9-17-11h-317q-10 2-17 11zM1408 416v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.trashO = trashO;
\ No newline at end of file
diff --git a/dist/fa/tree.js b/dist/fa/tree.js
new file mode 100644
index 000000000..8438a9f2c
--- /dev/null
+++ b/dist/fa/tree.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tree = void 0;
+var tree = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1504 1472q0 26-19 45t-45 19h-462q1 17 6 87.5t5 108.5q0 25-18 42.5t-43 17.5h-320q-25 0-43-17.5t-18-42.5q0-38 5-108.5t6-87.5h-462q-26 0-45-19t-19-45 19-45l402-403h-229q-26 0-45-19t-19-45 19-45l402-403h-197q-26 0-45-19t-19-45 19-45l384-384q19-19 45-19t45 19l384 384q19 19 19 45t-19 45-45 19h-197l402 403q19 19 19 45t-19 45-45 19h-229l402 403q19 19 19 45z"
+ }
+ }]
+};
+exports.tree = tree;
\ No newline at end of file
diff --git a/dist/fa/trello.js b/dist/fa/trello.js
new file mode 100644
index 000000000..1ac95b058
--- /dev/null
+++ b/dist/fa/trello.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trello = void 0;
+var trello = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 1344v-1024q0-14-9-23t-23-9h-480q-14 0-23 9t-9 23v1024q0 14 9 23t23 9h480q14 0 23-9t9-23zM1376 960v-640q0-14-9-23t-23-9h-480q-14 0-23 9t-9 23v640q0 14 9 23t23 9h480q14 0 23-9t9-23zM1536 192v1408q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-1408q0-26 19-45t45-19h1408q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.trello = trello;
\ No newline at end of file
diff --git a/dist/fa/tripadvisor.js b/dist/fa/tripadvisor.js
new file mode 100644
index 000000000..89c834870
--- /dev/null
+++ b/dist/fa/tripadvisor.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tripadvisor = void 0;
+var tripadvisor = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M651 997q0 39-27.5 66.5t-65.5 27.5q-39 0-66.5-27.5t-27.5-66.5q0-38 27.5-65.5t66.5-27.5q38 0 65.5 27.5t27.5 65.5zM1805 996q0 39-27.5 66.5t-66.5 27.5-66.5-27.5-27.5-66.5 27.5-66 66.5-27 66.5 27 27.5 66zM765 997q0-79-56.5-136t-136.5-57-136.5 56.5-56.5 136.5 56.5 136.5 136.5 56.5 136.5-56.5 56.5-136.5zM1918 996q0-80-56.5-136.5t-136.5-56.5q-79 0-136 56.5t-57 136.5 56.5 136.5 136.5 56.5 136.5-56.5 56.5-136.5zM850 997q0 116-81.5 197.5t-196.5 81.5q-116 0-197.5-82t-81.5-197 82-196.5 197-81.5 196.5 81.5 81.5 196.5zM2004 996q0 115-81.5 196.5t-197.5 81.5q-115 0-196.5-81.5t-81.5-196.5 81.5-196.5 196.5-81.5q116 0 197.5 81.5t81.5 196.5zM1040 999q0-191-135.5-326.5t-326.5-135.5q-125 0-231 62t-168 168.5-62 231.5 62 231.5 168 168.5 231 62q191 0 326.5-135.5t135.5-326.5zM1708 426q-254-111-556-111-319 0-573 110 117 0 223 45.5t182.5 122.5 122 183 45.5 223q0-115 43.5-219.5t118-180.5 177.5-123 217-50zM2187 999q0-191-135-326.5t-326-135.5-326.5 135.5-135.5 326.5 135.5 326.5 326.5 135.5 326-135.5 135-326.5zM1921 433h383q-44 51-75 114.5t-40 114.5q110 151 110 337 0 156-77 288t-209 208.5-287 76.5q-133 0-249-56t-196-155q-47 56-129 179-11-22-53.5-82.5t-74.5-97.5q-80 99-196.5 155.5t-249.5 56.5q-155 0-287-76.5t-209-208.5-77-288q0-186 110-337-9-51-40-114.5t-75-114.5h365q149-100 355-156.5t432-56.5q224 0 421 56t348 157z"
+ }
+ }]
+};
+exports.tripadvisor = tripadvisor;
\ No newline at end of file
diff --git a/dist/fa/trophy.js b/dist/fa/trophy.js
new file mode 100644
index 000000000..2944db711
--- /dev/null
+++ b/dist/fa/trophy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trophy = void 0;
+var trophy = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M458 883q-74-162-74-371h-256v96q0 78 94.5 162t235.5 113zM1536 608v-96h-256q0 209-74 371 141-29 235.5-113t94.5-162zM1664 480v128q0 71-41.5 143t-112 130-173 97.5-215.5 44.5q-42 54-95 95-38 34-52.5 72.5t-14.5 89.5q0 54 30.5 91t97.5 37q75 0 133.5 45.5t58.5 114.5v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-69 58.5-114.5t133.5-45.5q67 0 97.5-37t30.5-91q0-51-14.5-89.5t-52.5-72.5q-53-41-95-95-113-5-215.5-44.5t-173-97.5-112-130-41.5-143v-128q0-40 28-68t68-28h288v-96q0-66 47-113t113-47h576q66 0 113 47t47 113v96h288q40 0 68 28t28 68z"
+ }
+ }]
+};
+exports.trophy = trophy;
\ No newline at end of file
diff --git a/dist/fa/truck.js b/dist/fa/truck.js
new file mode 100644
index 000000000..ad719eb3e
--- /dev/null
+++ b/dist/fa/truck.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.truck = void 0;
+var truck = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M640 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM256 896h384v-256h-158q-13 0-22 9l-195 195q-9 9-9 22v30zM1536 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM1792 320v1024q0 15-4 26.5t-13.5 18.5-16.5 11.5-23.5 6-22.5 2-25.5 0-22.5-0.5q0 106-75 181t-181 75-181-75-75-181h-384q0 106-75 181t-181 75-181-75-75-181h-64q-3 0-22.5 0.5t-25.5 0-22.5-2-23.5-6-16.5-11.5-13.5-18.5-4-26.5q0-26 19-45t45-19v-320q0-8-0.5-35t0-38 2.5-34.5 6.5-37 14-30.5 22.5-30l198-198q19-19 50.5-32t58.5-13h160v-192q0-26 19-45t45-19h1024q26 0 45 19t19 45z"
+ }
+ }]
+};
+exports.truck = truck;
\ No newline at end of file
diff --git a/dist/fa/tryIcon.js b/dist/fa/tryIcon.js
new file mode 100644
index 000000000..f76195d92
--- /dev/null
+++ b/dist/fa/tryIcon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tryIcon = void 0;
+var tryIcon = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 832q0 191-94.5 353t-256.5 256.5-353 94.5h-160q-14 0-23-9t-9-23v-611l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-93l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-250q0-14 9-23t23-9h160q14 0 23 9t9 23v181l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v93l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v487q188-13 318-151t130-328q0-14 9-23t23-9h160q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.tryIcon = tryIcon;
\ No newline at end of file
diff --git a/dist/fa/tty.js b/dist/fa/tty.js
new file mode 100644
index 000000000..88752670a
--- /dev/null
+++ b/dist/fa/tty.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tty = void 0;
+var tty = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM256 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM832 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM640 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM66 768q-28 0-47-19t-19-46v-129h514v129q0 27-19 46t-46 19h-383zM1216 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1024 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1600 1312v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1408 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 520v13h-514v-10q0-104-382-102-382 1-382 102v10h-514v-13q0-17 8.5-43t34-64 65.5-75.5 110.5-76 160-67.5 224-47.5 293.5-18.5 293 18.5 224 47.5 160.5 67.5 110.5 76 65.5 75.5 34 64 8.5 43zM1792 928v192q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h192q14 0 23 9t9 23zM1792 574v129q0 27-19 46t-46 19h-384q-27 0-46-19t-19-46v-129h514z"
+ }
+ }]
+};
+exports.tty = tty;
\ No newline at end of file
diff --git a/dist/fa/tumblr.js b/dist/fa/tumblr.js
new file mode 100644
index 000000000..694602c2b
--- /dev/null
+++ b/dist/fa/tumblr.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tumblr = void 0;
+var tumblr = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M944 1329l80 237q-23 35-111 66t-177 32q-104 2-190.5-26t-142.5-74-95-106-55.5-120-16.5-118v-544h-168v-215q72-26 129-69.5t91-90 58-102 34-99 15-88.5q1-5 4.5-8.5t7.5-3.5h244v424h333v252h-334v518q0 30 6.5 56t22.5 52.5 49.5 41.5 81.5 14q78-2 134-29z"
+ }
+ }]
+};
+exports.tumblr = tumblr;
\ No newline at end of file
diff --git a/dist/fa/tumblrSquare.js b/dist/fa/tumblrSquare.js
new file mode 100644
index 000000000..c83405b98
--- /dev/null
+++ b/dist/fa/tumblrSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tumblrSquare = void 0;
+var tumblrSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1136 1461l-62-183q-44 22-103 22-36 1-62-10.5t-38.5-31.5-17.5-40.5-5-43.5v-398h257v-194h-256v-326h-188q-8 0-9 10-5 44-17.5 87t-39 95-77 95-118.5 68v165h130v418q0 57 21.5 115t65 111 121 85.5 176.5 30.5q69-1 136.5-25t85.5-50zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.tumblrSquare = tumblrSquare;
\ No newline at end of file
diff --git a/dist/fa/turkishLira.js b/dist/fa/turkishLira.js
new file mode 100644
index 000000000..b6e0a700d
--- /dev/null
+++ b/dist/fa/turkishLira.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.turkishLira = void 0;
+var turkishLira = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 832q0 191-94.5 353t-256.5 256.5-353 94.5h-160q-14 0-23-9t-9-23v-611l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-93l-215 66q-3 1-9 1-10 0-19-6-13-10-13-26v-128q0-23 23-31l233-71v-250q0-14 9-23t23-9h160q14 0 23 9t9 23v181l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v93l375-116q15-5 28 5t13 26v128q0 23-23 31l-393 121v487q188-13 318-151t130-328q0-14 9-23t23-9h160q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.turkishLira = turkishLira;
\ No newline at end of file
diff --git a/dist/fa/tv.js b/dist/fa/tv.js
new file mode 100644
index 000000000..de0b635b6
--- /dev/null
+++ b/dist/fa/tv.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tv = void 0;
+var tv = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1248v-960q0-13-9.5-22.5t-22.5-9.5h-1600q-13 0-22.5 9.5t-9.5 22.5v960q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5zM1920 288v960q0 66-47 113t-113 47h-736v128h352q14 0 23 9t9 23v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h352v-128h-736q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h1600q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.tv = tv;
\ No newline at end of file
diff --git a/dist/fa/twitch.js b/dist/fa/twitch.js
new file mode 100644
index 000000000..cd4f29015
--- /dev/null
+++ b/dist/fa/twitch.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twitch = void 0;
+var twitch = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 434v434h-145v-434h145zM1294 434v434h-145v-434h145zM1294 1194l253-254v-795h-1194v1049h326v217l217-217h398zM1692 0v1013l-434 434h-326l-217 217h-217v-217h-398v-1158l109-289h1483z"
+ }
+ }]
+};
+exports.twitch = twitch;
\ No newline at end of file
diff --git a/dist/fa/twitter.js b/dist/fa/twitter.js
new file mode 100644
index 000000000..0087f04df
--- /dev/null
+++ b/dist/fa/twitter.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twitter = void 0;
+var twitter = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1620 408q-67 98-162 167 1 14 1 42 0 130-38 259.5t-115.5 248.5-184.5 210.5-258 146-323 54.5q-271 0-496-145 35 4 78 4 225 0 401-138-105-2-188-64.5t-114-159.5q33 5 61 5 43 0 85-11-112-23-185.5-111.5t-73.5-205.5v-4q68 38 146 41-66-44-105-115t-39-154q0-88 44-163 121 149 294.5 238.5t371.5 99.5q-8-38-8-74 0-134 94.5-228.5t228.5-94.5q140 0 236 102 109-21 205-78-37 115-142 178 93-10 186-50z"
+ }
+ }]
+};
+exports.twitter = twitter;
\ No newline at end of file
diff --git a/dist/fa/twitterSquare.js b/dist/fa/twitterSquare.js
new file mode 100644
index 000000000..6abac0385
--- /dev/null
+++ b/dist/fa/twitterSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twitterSquare = void 0;
+var twitterSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 610q-56 25-121 34 68-40 93-117-65 38-134 51-61-66-153-66-87 0-148.5 61.5t-61.5 148.5q0 29 5 48-129-7-242-65t-192-155q-29 50-29 106 0 114 91 175-47-1-100-26v2q0 75 50 133.5t123 72.5q-29 8-51 8-13 0-39-4 21 63 74.5 104t121.5 42q-116 90-261 90-26 0-50-3 148 94 322 94 112 0 210-35.5t168-95 120.5-137 75-162 24.5-168.5q0-18-1-27 63-45 105-109zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.twitterSquare = twitterSquare;
\ No newline at end of file
diff --git a/dist/fa/umbrella.js b/dist/fa/umbrella.js
new file mode 100644
index 000000000..cc5027d16
--- /dev/null
+++ b/dist/fa/umbrella.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.umbrella = void 0;
+var umbrella = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 828v580q0 104-76 180t-180 76-180-76-76-180q0-26 19-45t45-19 45 19 19 45q0 50 39 89t89 39 89-39 39-89v-580q33-11 64-11t64 11zM1664 855q0 13-9.5 22.5t-22.5 9.5q-11 0-23-10-49-46-93-69t-102-23q-68 0-128 37t-103 97q-7 10-17.5 28t-14.5 24q-11 17-28 17-18 0-29-17-4-6-14.5-24t-17.5-28q-43-60-102.5-97t-127.5-37-127.5 37-102.5 97q-7 10-17.5 28t-14.5 24q-11 17-29 17-17 0-28-17-4-6-14.5-24t-17.5-28q-43-60-103-97t-128-37q-58 0-102 23t-93 69q-12 10-23 10-13 0-22.5-9.5t-9.5-22.5q0-5 1-7 45-183 172.5-319.5t298-204.5 360.5-68q140 0 274.5 40t246.5 113.5 194.5 187 115.5 251.5q1 2 1 7zM896 128v98q-42-2-64-2t-64 2v-98q0-26 19-45t45-19 45 19 19 45z"
+ }
+ }]
+};
+exports.umbrella = umbrella;
\ No newline at end of file
diff --git a/dist/fa/underline.js b/dist/fa/underline.js
new file mode 100644
index 000000000..05d45e57b
--- /dev/null
+++ b/dist/fa/underline.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.underline = void 0;
+var underline = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48 223q-37-2-45-4l-3-88q13-1 40-1 60 0 112 4 132 7 166 7 86 0 168-3 116-4 146-5 56 0 86-2l-1 14 2 64v9q-60 9-124 9-60 0-79 25-13 14-13 132 0 13 0.5 32.5t0.5 25.5l1 229 14 280q6 124 51 202 35 59 96 92 88 47 177 47 104 0 191-28 56-18 99-51 48-36 65-64 36-56 53-114 21-73 21-229 0-79-3.5-128t-11-122.5-13.5-159.5l-4-59q-5-67-24-88-34-35-77-34l-100 2-14-3 2-86h84l205 10q76 3 196-10l18 2q6 38 6 51 0 7-4 31-45 12-84 13-73 11-79 17-15 15-15 41 0 7 1.5 27t1.5 31q8 19 22 396 6 195-15 304-15 76-41 122-38 65-112 123-75 57-182 89-109 33-255 33-167 0-284-46-119-47-179-122-61-76-83-195-16-80-16-237v-333q0-188-17-213-25-36-147-39zM1536 1632v-64q0-14-9-23t-23-9h-1472q-14 0-23 9t-9 23v64q0 14 9 23t23 9h1472q14 0 23-9t9-23z"
+ }
+ }]
+};
+exports.underline = underline;
\ No newline at end of file
diff --git a/dist/fa/undo.js b/dist/fa/undo.js
new file mode 100644
index 000000000..befb19c00
--- /dev/null
+++ b/dist/fa/undo.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.undo = void 0;
+var undo = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z"
+ }
+ }]
+};
+exports.undo = undo;
\ No newline at end of file
diff --git a/dist/fa/universalAccess.js b/dist/fa/universalAccess.js
new file mode 100644
index 000000000..e9e5b1fbd
--- /dev/null
+++ b/dist/fa/universalAccess.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.universalAccess = void 0;
+var universalAccess = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1374 657q-6-26-28.5-39.5t-48.5-7.5q-261 62-401 62t-401-62q-26-6-48.5 7.5t-28.5 39.5 7.5 48.5 39.5 28.5q194 46 303 58-2 158-15.5 269t-26.5 155.5-41 115.5l-9 21q-10 25 1 49t36 34q9 4 23 4 44 0 60-41l8-20q54-139 71-259h42q17 120 71 259l8 20q16 41 60 41 14 0 23-4 25-10 36-34t1-49l-9-21q-28-71-41-115.5t-26.5-155.5-15.5-269q109-12 303-58 26-6 39.5-28.5t7.5-48.5zM1024 512q0-53-37.5-90.5t-90.5-37.5-90.5 37.5-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5zM1600 896q0 143-55.5 273.5t-150 225-225 150-273.5 55.5-273.5-55.5-225-150-150-225-55.5-273.5 55.5-273.5 150-225 225-150 273.5-55.5 273.5 55.5 225 150 150 225 55.5 273.5zM896 128q-156 0-298 61t-245 164-164 245-61 298 61 298 164 245 245 164 298 61 298-61 245-164 164-245 61-298-61-298-164-245-245-164-298-61zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.universalAccess = universalAccess;
\ No newline at end of file
diff --git a/dist/fa/university.js b/dist/fa/university.js
new file mode 100644
index 000000000..ad92b5c3c
--- /dev/null
+++ b/dist/fa/university.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.university = void 0;
+var university = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M960 0l960 384v128h-128q0 26-20.5 45t-48.5 19h-1526q-28 0-48.5-19t-20.5-45h-128v-128zM256 640h256v768h128v-768h256v768h128v-768h256v768h128v-768h256v768h59q28 0 48.5 19t20.5 45v64h-1664v-64q0-26 20.5-45t48.5-19h59v-768zM1851 1600q28 0 48.5 19t20.5 45v128h-1920v-128q0-26 20.5-45t48.5-19h1782z"
+ }
+ }]
+};
+exports.university = university;
\ No newline at end of file
diff --git a/dist/fa/unlink.js b/dist/fa/unlink.js
new file mode 100644
index 000000000..be51d85e4
--- /dev/null
+++ b/dist/fa/unlink.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.unlink = void 0;
+var unlink = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M439 1271l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zM608 1312v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM384 1088q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1648 1216q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zM1031 492l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zM1664 576q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zM1120 32v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zM1527 183l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z"
+ }
+ }]
+};
+exports.unlink = unlink;
\ No newline at end of file
diff --git a/dist/fa/unlock.js b/dist/fa/unlock.js
new file mode 100644
index 000000000..ef49df44c
--- /dev/null
+++ b/dist/fa/unlock.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.unlock = void 0;
+var unlock = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 576v256q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45v-256q0-106-75-181t-181-75-181 75-75 181v192h96q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h672v-192q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5z"
+ }
+ }]
+};
+exports.unlock = unlock;
\ No newline at end of file
diff --git a/dist/fa/unlockAlt.js b/dist/fa/unlockAlt.js
new file mode 100644
index 000000000..ba999cd01
--- /dev/null
+++ b/dist/fa/unlockAlt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.unlockAlt = void 0;
+var unlockAlt = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1056 768q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-320q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45q0-106-75-181t-181-75-181 75-75 181v320h736z"
+ }
+ }]
+};
+exports.unlockAlt = unlockAlt;
\ No newline at end of file
diff --git a/dist/fa/unsorted.js b/dist/fa/unsorted.js
new file mode 100644
index 000000000..ef5ec2e68
--- /dev/null
+++ b/dist/fa/unsorted.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.unsorted = void 0;
+var unsorted = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45zM1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z"
+ }
+ }]
+};
+exports.unsorted = unsorted;
\ No newline at end of file
diff --git a/dist/fa/upload.js b/dist/fa/upload.js
new file mode 100644
index 000000000..acd524e7d
--- /dev/null
+++ b/dist/fa/upload.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.upload = void 0;
+var upload = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1536 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1664 1248v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h427q21 56 70.5 92t110.5 36h256q61 0 110.5-36t70.5-92h427q40 0 68 28t28 68zM1339 600q-17 40-59 40h-256v448q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-448h-256q-42 0-59-40-17-39 14-69l448-448q18-19 45-19t45 19l448 448q31 30 14 69z"
+ }
+ }]
+};
+exports.upload = upload;
\ No newline at end of file
diff --git a/dist/fa/usb.js b/dist/fa/usb.js
new file mode 100644
index 000000000..29bf90d4f
--- /dev/null
+++ b/dist/fa/usb.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.usb = void 0;
+var usb = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2288 805q16 8 16 27t-16 27l-320 192q-8 5-16 5-9 0-16-4-16-10-16-28v-128h-858q37 58 83 165 16 37 24.5 55t24 49 27 47 27 34 31.5 26 33 8h96v-96q0-14 9-23t23-9h320q14 0 23 9t9 23v320q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23v-96h-96q-32 0-61-10t-51-23.5-45-40.5-37-46-33.5-57-28.5-57.5-28-60.5q-23-53-37-81.5t-36-65-44.5-53.5-46.5-17h-360q-22 84-91 138t-157 54q-106 0-181-75t-75-181 75-181 181-75q88 0 157 54t91 138h104q24 0 46.5-17t44.5-53.5 36-65 37-81.5q19-41 28-60.5t28.5-57.5 33.5-57 37-46 45-40.5 51-23.5 61-10h107q21-57 70-92.5t111-35.5q80 0 136 56t56 136-56 136-136 56q-62 0-111-35.5t-70-92.5h-107q-17 0-33 8t-31.5 26-27 34-27 47-24 49-24.5 55q-46 107-83 165h1114v-128q0-18 16-28t32 1z"
+ }
+ }]
+};
+exports.usb = usb;
\ No newline at end of file
diff --git a/dist/fa/usd.js b/dist/fa/usd.js
new file mode 100644
index 000000000..eae1586a2
--- /dev/null
+++ b/dist/fa/usd.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.usd = void 0;
+var usd = {
+ "viewBox": "0 0 1024 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M978 1185q0 153-99.5 263.5t-258.5 136.5v175q0 14-9 23t-23 9h-135q-13 0-22.5-9.5t-9.5-22.5v-175q-66-9-127.5-31t-101.5-44.5-74-48-46.5-37.5-17.5-18q-17-21-2-41l103-135q7-10 23-12 15-2 24 9l2 2q113 99 243 125 37 8 74 8 81 0 142.5-43t61.5-122q0-28-15-53t-33.5-42-58.5-37.5-66-32-80-32.5q-39-16-61.5-25t-61.5-26.5-62.5-31-56.5-35.5-53.5-42.5-43.5-49-35.5-58-21-66.5-8.5-78q0-138 98-242t255-134v-180q0-13 9.5-22.5t22.5-9.5h135q14 0 23 9t9 23v176q57 6 110.5 23t87 33.5 63.5 37.5 39 29 15 14q17 18 5 38l-81 146q-8 15-23 16-14 3-27-7-3-3-14.5-12t-39-26.5-58.5-32-74.5-26-85.5-11.5q-95 0-155 43t-60 111q0 26 8.5 48t29.5 41.5 39.5 33 56 31 60.5 27 70 27.5q53 20 81 31.5t76 35 75.5 42.5 62 50 53 63.5 31.5 76.5 13 94z"
+ }
+ }]
+};
+exports.usd = usd;
\ No newline at end of file
diff --git a/dist/fa/user.js b/dist/fa/user.js
new file mode 100644
index 000000000..6e1d5a664
--- /dev/null
+++ b/dist/fa/user.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user = void 0;
+var user = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1280 1399q0 109-62.5 187t-150.5 78h-854q-88 0-150.5-78t-62.5-187q0-85 8.5-160.5t31.5-152 58.5-131 94-89 134.5-34.5q131 128 313 128t313-128q76 0 134.5 34.5t94 89 58.5 131 31.5 152 8.5 160.5zM1024 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z"
+ }
+ }]
+};
+exports.user = user;
\ No newline at end of file
diff --git a/dist/fa/userCircle.js b/dist/fa/userCircle.js
new file mode 100644
index 000000000..042ce6a13
--- /dev/null
+++ b/dist/fa/userCircle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userCircle = void 0;
+var userCircle = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1523 1339q-22-155-87.5-257.5t-184.5-118.5q-67 74-159.5 115.5t-195.5 41.5-195.5-41.5-159.5-115.5q-119 16-184.5 118.5t-87.5 257.5q106 150 271 237.5t356 87.5 356-87.5 271-237.5zM1280 640q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5zM1792 896q0 182-71 347.5t-190.5 286-285.5 191.5-349 71q-182 0-348-71t-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.userCircle = userCircle;
\ No newline at end of file
diff --git a/dist/fa/userCircleO.js b/dist/fa/userCircleO.js
new file mode 100644
index 000000000..58c24fb8d
--- /dev/null
+++ b/dist/fa/userCircleO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userCircleO = void 0;
+var userCircleO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M896 0q182 0 348 71t286 191 191 286 71 348q0 181-70.5 347t-190.5 286-286 191.5-349 71.5-349-71-285.5-191.5-190.5-286-71-347.5 71-348 191-286 286-191 348-71zM1515 1351q149-205 149-455 0-156-61-298t-164-245-245-164-298-61-298 61-245 164-164 245-61 298q0 250 149 455 66-327 306-327 131 128 313 128t313-128q240 0 306 327zM1280 704q0-159-112.5-271.5t-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5z"
+ }
+ }]
+};
+exports.userCircleO = userCircleO;
\ No newline at end of file
diff --git a/dist/fa/userMd.js b/dist/fa/userMd.js
new file mode 100644
index 000000000..1f5cd1340
--- /dev/null
+++ b/dist/fa/userMd.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userMd = void 0;
+var userMd = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1344q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM1408 1405q0 121-73 190t-194 69h-874q-121 0-194-69t-73-190q0-68 5.5-131t24-138 47.5-132.5 81-103 120-60.5q-22 52-22 120v203q-58 20-93 70t-35 111q0 80 56 136t136 56 136-56 56-136q0-61-35.5-111t-92.5-70v-203q0-62 25-93 132 104 295 104t295-104q25 31 25 93v64q-106 0-181 75t-75 181v89q-32 29-32 71 0 40 28 68t68 28 68-28 28-68q0-42-32-71v-89q0-52 38-90t90-38 90 38 38 90v89q-32 29-32 71 0 40 28 68t68 28 68-28 28-68q0-42-32-71v-89q0-68-34.5-127.5t-93.5-93.5q0-10 0.5-42.5t0-48-2.5-41.5-7-47-13-40q68 15 120 60.5t81 103 47.5 132.5 24 138 5.5 131zM1088 512q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z"
+ }
+ }]
+};
+exports.userMd = userMd;
\ No newline at end of file
diff --git a/dist/fa/userO.js b/dist/fa/userO.js
new file mode 100644
index 000000000..1c4e604b0
--- /dev/null
+++ b/dist/fa/userO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userO = void 0;
+var userO = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1201 784q47 14 89.5 38t89 73 79.5 115.5 55 172 22 236.5q0 154-100 263.5t-241 109.5h-854q-141 0-241-109.5t-100-263.5q0-131 22-236.5t55-172 79.5-115.5 89-73 89.5-38q-79-125-79-272 0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5 198.5 40.5 163.5 109.5 109.5 163.5 40.5 198.5q0 147-79 272zM768 128q-159 0-271.5 112.5t-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5-112.5-271.5-271.5-112.5zM1195 1664q88 0 150.5-71.5t62.5-173.5q0-239-78.5-377t-225.5-145q-145 127-336 127t-336-127q-147 7-225.5 145t-78.5 377q0 102 62.5 173.5t150.5 71.5h854z"
+ }
+ }]
+};
+exports.userO = userO;
\ No newline at end of file
diff --git a/dist/fa/userPlus.js b/dist/fa/userPlus.js
new file mode 100644
index 000000000..12b523250
--- /dev/null
+++ b/dist/fa/userPlus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userPlus = void 0;
+var userPlus = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 896q-159 0-271.5-112.5t-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5-112.5 271.5-271.5 112.5zM1664 1024h352q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-352v352q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-352h-352q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h352v-352q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5v352zM928 1248q0 52 38 90t90 38h256v238q-68 50-171 50h-874q-121 0-194-69t-73-190q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q19 0 39 17 79 61 154.5 91.5t164.5 30.5 164.5-30.5 154.5-91.5q20-17 39-17 132 0 217 96h-223q-52 0-90 38t-38 90v192z"
+ }
+ }]
+};
+exports.userPlus = userPlus;
\ No newline at end of file
diff --git a/dist/fa/userSecret.js b/dist/fa/userSecret.js
new file mode 100644
index 000000000..4b0819dc2
--- /dev/null
+++ b/dist/fa/userSecret.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userSecret = void 0;
+var userSecret = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M576 1536l96-448-96-128-128-64zM832 1536l128-640-128 64-96 128zM992 526q-2-4-4-6-10-8-96-8-70 0-167 19-7 2-21 2t-21-2q-97-19-167-19-86 0-96 8-2 2-4 6 2 18 4 27 2 3 7.5 6.5t7.5 10.5q2 4 7.5 20.5t7 20.5 7.5 17 8.5 17 9 14 12 13.5 14 9.5 17.5 8 20.5 4 24.5 2q36 0 59-12.5t32.5-30 14.5-34.5 11.5-29.5 17.5-12.5h12q11 0 17.5 12.5t11.5 29.5 14.5 34.5 32.5 30 59 12.5q13 0 24.5-2t20.5-4 17.5-8 14-9.5 12-13.5 9-14 8.5-17 7.5-17 7-20.5 7.5-20.5q2-7 7.5-10.5t7.5-6.5q2-9 4-27zM1408 1405q0 121-73 190t-194 69h-874q-121 0-194-69t-73-190q0-61 4.5-118t19-125.5 37.5-123.5 63.5-103.5 93.5-74.5l-90-220h214q-22-64-22-128 0-12 2-32-194-40-194-96 0-57 210-99 17-62 51.5-134t70.5-114q32-37 76-37 30 0 84 31t84 31 84-31 84-31q44 0 76 37 36 42 70.5 114t51.5 134q210 42 210 99 0 56-194 96 7 81-20 160h214l-82 225q63 33 107.5 96.5t65.5 143.5 29 151.5 8 148.5z"
+ }
+ }]
+};
+exports.userSecret = userSecret;
\ No newline at end of file
diff --git a/dist/fa/userTimes.js b/dist/fa/userTimes.js
new file mode 100644
index 000000000..442e1c2b2
--- /dev/null
+++ b/dist/fa/userTimes.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userTimes = void 0;
+var userTimes = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M704 896q-159 0-271.5-112.5t-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5-112.5 271.5-271.5 112.5zM1781 1216l249 249q9 9 9 23 0 13-9 22l-136 136q-9 9-22 9-14 0-23-9l-249-249-249 249q-9 9-23 9-13 0-22-9l-136-136q-9-9-9-22 0-14 9-23l249-249-249-249q-9-9-9-23 0-13 9-22l136-136q9-9 22-9 14 0 23 9l249 249 249-249q9-9 23-9 13 0 22 9l136 136q9 9 9 22 0 14-9 23zM1283 1216l-181 181q-37 37-37 91 0 53 37 90l83 83q-21 3-44 3h-874q-121 0-194-69t-73-190q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q19 0 39 17 154 122 319 122t319-122q20-17 39-17 28 0 57 6-28 27-41 50t-13 56q0 54 37 91z"
+ }
+ }]
+};
+exports.userTimes = userTimes;
\ No newline at end of file
diff --git a/dist/fa/users.js b/dist/fa/users.js
new file mode 100644
index 000000000..0c5e73598
--- /dev/null
+++ b/dist/fa/users.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.users = void 0;
+var users = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M593 896q-162 5-265 128h-134q-82 0-138-40.5t-56-118.5q0-353 124-353 6 0 43.5 21t97.5 42.5 119 21.5q67 0 133-23-5 37-5 66 0 139 81 256zM1664 1533q0 120-73 189.5t-194 69.5h-874q-121 0-194-69.5t-73-189.5q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q10 0 43 21.5t73 48 107 48 135 21.5 135-21.5 107-48 73-48 43-21.5q61 0 111.5 20t85.5 53.5 62 81 43 97.5 26.5 108.5 14 109 3.5 103.5zM640 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zM1344 640q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zM1920 865q0 78-56 118.5t-138 40.5h-134q-103-123-265-128 81-117 81-256 0-29-5-66 66 23 133 23 59 0 119-21.5t97.5-42.5 43.5-21q124 0 124 353zM1792 256q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181z"
+ }
+ }]
+};
+exports.users = users;
\ No newline at end of file
diff --git a/dist/fa/vcard.js b/dist/fa/vcard.js
new file mode 100644
index 000000000..b8f107a20
--- /dev/null
+++ b/dist/fa/vcard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vcard = void 0;
+var vcard = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1131q0-64-9-117.5t-29.5-103-60.5-78-97-28.5q-6 4-30 18t-37.5 21.5-35.5 17.5-43 14.5-42 4.5-42-4.5-43-14.5-35.5-17.5-37.5-21.5-30-18q-57 0-97 28.5t-60.5 78-29.5 103-9 117.5 37 106.5 91 42.5h512q54 0 91-42.5t37-106.5zM867 611q0-94-66.5-160.5t-160.5-66.5-160.5 66.5-66.5 160.5 66.5 160.5 160.5 66.5 160.5-66.5 66.5-160.5zM1792 1120v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM1792 860v-56q0-15-10.5-25.5t-25.5-10.5h-568q-15 0-25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5-10.5t10.5-25.5zM1792 608v-64q0-14-9-23t-23-9h-576q-14 0-23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23-9t9-23zM2048 288v1216q0 66-47 113t-113 47h-352v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-768v-96q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v96h-352q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.vcard = vcard;
\ No newline at end of file
diff --git a/dist/fa/vcardO.js b/dist/fa/vcardO.js
new file mode 100644
index 000000000..7d62e3aaf
--- /dev/null
+++ b/dist/fa/vcardO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vcardO = void 0;
+var vcardO = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1131q0 64-37 106.5t-91 42.5h-512q-54 0-91-42.5t-37-106.5 9-117.5 29.5-103 60.5-78 97-28.5q6 4 30 18t37.5 21.5 35.5 17.5 43 14.5 42 4.5 42-4.5 43-14.5 35.5-17.5 37.5-21.5 30-18q57 0 97 28.5t60.5 78 29.5 103 9 117.5zM867 611q0 94-66.5 160.5t-160.5 66.5-160.5-66.5-66.5-160.5 66.5-160.5 160.5-66.5 160.5 66.5 66.5 160.5zM1792 1056v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1792 804v56q0 15-10.5 25.5t-25.5 10.5h-568q-15 0-25.5-10.5t-10.5-25.5v-56q0-15 10.5-25.5t25.5-10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 544v64q0 14-9 23t-23 9h-576q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h576q14 0 23 9t9 23zM1920 1504v-1216q0-13-9.5-22.5t-22.5-9.5h-1728q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h352v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h768v-96q0-14 9-23t23-9h64q14 0 23 9t9 23v96h352q13 0 22.5-9.5t9.5-22.5zM2048 288v1216q0 66-47 113t-113 47h-1728q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1728q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.vcardO = vcardO;
\ No newline at end of file
diff --git a/dist/fa/venus.js b/dist/fa/venus.js
new file mode 100644
index 000000000..70c369c3a
--- /dev/null
+++ b/dist/fa/venus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.venus = void 0;
+var venus = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1152 576q0 221-147.5 384.5t-364.5 187.5v260h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-260q-150-16-271.5-103t-186-224-52.5-292q11-134 80.5-249t182-188 245.5-88q170-19 319 54t236 212 87 306zM128 576q0 185 131.5 316.5t316.5 131.5 316.5-131.5 131.5-316.5-131.5-316.5-316.5-131.5-316.5 131.5-131.5 316.5z"
+ }
+ }]
+};
+exports.venus = venus;
\ No newline at end of file
diff --git a/dist/fa/venusDouble.js b/dist/fa/venusDouble.js
new file mode 100644
index 000000000..6554ad593
--- /dev/null
+++ b/dist/fa/venusDouble.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.venusDouble = void 0;
+var venusDouble = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1790 529q12 155-52.5 292t-186 224-271.5 103v260h224q14 0 23 9t9 23v64q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-512v224q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-224h-224q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h224v-260q-150-16-271.5-103t-186-224-52.5-292q17-206 164.5-356.5t352.5-169.5q206-21 377 94 171-115 377-94 205 19 352.5 169.5t164.5 356.5zM896 889q128-131 128-313t-128-313q-128 131-128 313t128 313zM576 1024q115 0 218-57-154-165-154-391 0-224 154-391-103-57-218-57-185 0-316.5 131.5t-131.5 316.5 131.5 316.5 316.5 131.5zM1152 1408v-260q-137-15-256-94-119 79-256 94v260h512zM1216 1024q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5q-115 0-218 57 154 167 154 391 0 226-154 391 103 57 218 57z"
+ }
+ }]
+};
+exports.venusDouble = venusDouble;
\ No newline at end of file
diff --git a/dist/fa/venusMars.js b/dist/fa/venusMars.js
new file mode 100644
index 000000000..8b45a479d
--- /dev/null
+++ b/dist/fa/venusMars.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.venusMars = void 0;
+var venusMars = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1664 32q0-14 9-23t23-9h288q26 0 45 19t19 45v288q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-134l-254 255q76 95 107.5 214t9.5 247q-32 180-164.5 310t-313.5 157q-223 34-409-90-117 78-256 93v132h96q14 0 23 9t9 23v64q0 14-9 23t-23 9h-96v96q0 14-9 23t-23 9h-64q-14 0-23-9t-9-23v-96h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h96v-132q-155-17-279.5-109.5t-187-237.5-39.5-307q25-187 159.5-322.5t320.5-164.5q224-34 410 90 146-97 320-97 201 0 359 126l255-254h-134q-14 0-23-9t-9-23v-64zM896 1145q128-131 128-313t-128-313q-128 131-128 313t128 313zM128 832q0 185 131.5 316.5t316.5 131.5q117 0 218-57-154-167-154-391t154-391q-101-57-218-57-185 0-316.5 131.5t-131.5 316.5zM1216 1280q185 0 316.5-131.5t131.5-316.5-131.5-316.5-316.5-131.5q-117 0-218 57 154 167 154 391t-154 391q101 57 218 57z"
+ }
+ }]
+};
+exports.venusMars = venusMars;
\ No newline at end of file
diff --git a/dist/fa/viacoin.js b/dist/fa/viacoin.js
new file mode 100644
index 000000000..52a252300
--- /dev/null
+++ b/dist/fa/viacoin.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.viacoin = void 0;
+var viacoin = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1536 0l-192 448h192v192h-274l-55 128h329v192h-411l-357 832-357-832h-411v-192h329l-55-128h-274v-192h192l-192-448h256l323 768h378l323-768h256zM768 1216l108-256h-216z"
+ }
+ }]
+};
+exports.viacoin = viacoin;
\ No newline at end of file
diff --git a/dist/fa/viadeo.js b/dist/fa/viadeo.js
new file mode 100644
index 000000000..2519951d1
--- /dev/null
+++ b/dist/fa/viadeo.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.viadeo = void 0;
+var viadeo = {
+ "viewBox": "0 0 1280 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1050 1106q0 215-147 374-148 161-378 161-232 0-378-161-147-159-147-374 0-147 68-270.5t189-196.5 268-73q96 0 182 31-32 62-39 126-66-28-143-28-167 0-280.5 123t-113.5 291q0 170 112.5 288.5t281.5 118.5 281-118.5 112-288.5q0-89-32-166 66-13 123-49 41 98 41 212zM846 917q0 192-79.5 345t-238.5 253l-14 1q-29 0-62-5 83-32 146.5-102.5t99.5-154.5 58.5-189 30-192.5 7.5-178.5q0-69-3-103 55 160 55 326zM791 589v2q-73-214-206-440 88 59 142.5 186.5t63.5 251.5zM1035 792q-83 0-160-75 218-120 290-247 19-37 21-56-42 94-139.5 166.5t-204.5 97.5q-35-54-35-113 0-37 17-79t43-68q46-44 157-74 59-16 106-58.5t74-100.5q74 105 74 253 0 109-24 170-32 77-88.5 130.5t-130.5 53.5z"
+ }
+ }]
+};
+exports.viadeo = viadeo;
\ No newline at end of file
diff --git a/dist/fa/viadeoSquare.js b/dist/fa/viadeoSquare.js
new file mode 100644
index 000000000..6e2c81e44
--- /dev/null
+++ b/dist/fa/viadeoSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.viadeoSquare = void 0;
+var viadeoSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1050 1041q0-78-28-147-41 25-85 34 22 50 22 114 0 117-77 198.5t-193 81.5-193.5-81.5-77.5-198.5q0-115 78-199.5t193-84.5q53 0 98 19 4-43 27-87-60-21-125-21-154 0-257.5 108.5t-103.5 263.5 103.5 261 257.5 106 257.5-106.5 103.5-260.5zM872 686q2 24 2 71 0 63-5 123t-20.5 132.5-40.5 130-68.5 106-100.5 70.5q21 3 42 3h10q219-139 219-411 0-116-38-225zM872 686q-4-80-44-171.5t-98-130.5q92 156 142 302zM1207 581q0-102-51-174-41 86-124 109-69 19-109 53.5t-40 99.5q0 40 24 77 74-17 140.5-67t95.5-115q-4 52-74.5 111.5t-138.5 97.5q52 52 110 52 51 0 90-37t60-90q17-42 17-117zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.viadeoSquare = viadeoSquare;
\ No newline at end of file
diff --git a/dist/fa/videoCamera.js b/dist/fa/videoCamera.js
new file mode 100644
index 000000000..01c0d1a7a
--- /dev/null
+++ b/dist/fa/videoCamera.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.videoCamera = void 0;
+var videoCamera = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 352v1088q0 42-39 59-13 5-25 5-27 0-45-19l-403-403v166q0 119-84.5 203.5t-203.5 84.5h-704q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h704q119 0 203.5 84.5t84.5 203.5v165l403-402q18-19 45-19 12 0 25 5 39 17 39 59z"
+ }
+ }]
+};
+exports.videoCamera = videoCamera;
\ No newline at end of file
diff --git a/dist/fa/vimeo.js b/dist/fa/vimeo.js
new file mode 100644
index 000000000..b8ebc70b3
--- /dev/null
+++ b/dist/fa/vimeo.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vimeo = void 0;
+var vimeo = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1709 518q-10 236-332 651-333 431-562 431-142 0-240-263-44-160-132-482-72-262-157-262-18 0-127 76l-77-98q24-21 108-96.5t130-115.5q156-138 241-146 95-9 153 55.5t81 203.5q44 287 66 373 55 249 120 249 51 0 154-161 101-161 109-246 13-139-109-139-57 0-121 26 120-393 459-382 251 8 236 326z"
+ }
+ }]
+};
+exports.vimeo = vimeo;
\ No newline at end of file
diff --git a/dist/fa/vimeoSquare.js b/dist/fa/vimeoSquare.js
new file mode 100644
index 000000000..ecaea35c8
--- /dev/null
+++ b/dist/fa/vimeoSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vimeoSquare = void 0;
+var vimeoSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1292 638q10-216-161-222-231-8-312 261 44-19 82-19 85 0 74 96-4 57-74 167t-105 110q-43 0-82-169-13-54-45-255-30-189-160-177-59 7-164 100l-81 72-81 72 52 67q76-52 87-52 57 0 107 179 15 55 45 164.5t45 164.5q68 179 164 179 157 0 383-294 220-283 226-444zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.vimeoSquare = vimeoSquare;
\ No newline at end of file
diff --git a/dist/fa/vine.js b/dist/fa/vine.js
new file mode 100644
index 000000000..c67d5207e
--- /dev/null
+++ b/dist/fa/vine.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vine = void 0;
+var vine = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1497 827v198q-101 23-198 23-65 136-165.5 271t-181.5 215.5-128 106.5q-80 45-162-3-28-17-60.5-43.5t-85-83.5-102.5-128.5-107.5-184-105.5-244-91.5-314.5-70.5-390h283q26 218 70 398.5t104.5 317 121.5 235.5 140 195q169-169 287-406-142-72-223-220t-81-333q0-192 104-314.5t284-122.5q178 0 273 105.5t95 297.5q0 159-58 286-7 1-19.5 3t-46 2-63-6-62-25.5-50.5-51.5q31-103 31-184 0-87-29-132t-79-45q-53 0-85 49.5t-32 140.5q0 186 105 293.5t267 107.5q62 0 121-14z"
+ }
+ }]
+};
+exports.vine = vine;
\ No newline at end of file
diff --git a/dist/fa/vk.js b/dist/fa/vk.js
new file mode 100644
index 000000000..d03ccd0e4
--- /dev/null
+++ b/dist/fa/vk.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vk = void 0;
+var vk = {
+ "viewBox": "0 0 1920 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1917 520q23 64-150 294-24 32-65 85-40 51-55 72t-30.5 49.5-12 42 13 34.5 32.5 43 57 53q4 2 5 4 141 131 191 221 3 5 6.5 12.5t7 26.5-0.5 34-25 27.5-59 12.5l-256 4q-24 5-56-5t-52-22l-20-12q-30-21-70-64t-68.5-77.5-61-58-56.5-15.5q-3 1-8 3.5t-17 14.5-21.5 29.5-17 52-6.5 77.5q0 15-3.5 27.5t-7.5 18.5l-4 5q-18 19-53 22h-115q-71 4-146-16.5t-131.5-53-103-66-70.5-57.5l-25-24q-10-10-27.5-30t-71.5-91-106-151-122.5-211-130.5-272q-6-16-6-27t3-16l4-6q15-19 57-19l274-2q12 2 23 6.5t16 8.5l5 3q16 11 24 32 20 50 46 103.5t41 81.5l16 29q29 60 56 104t48.5 68.5 41.5 38.5 34 14 27-5q2-1 5-5t12-22 13.5-47 9.5-81 0-125q-2-40-9-73t-14-46l-6-12q-25-34-85-43-13-2 5-24 16-19 38-30 53-26 239-24 82 1 135 13 20 5 33.5 13.5t20.5 24 10.5 32 3.5 45.5-1 55-2.5 70.5-1.5 82.5q0 11-1 42t-0.5 48 3.5 40.5 11.5 39 22.5 24.5q8 2 17 4t26-11 38-34.5 52-67 68-107.5q60-104 107-225 4-10 10-17.5t11-10.5l4-3 5-2.5t13-3 20-0.5l288-2q39-5 64 2.5t31 16.5z"
+ }
+ }]
+};
+exports.vk = vk;
\ No newline at end of file
diff --git a/dist/fa/volumeControlPhone.js b/dist/fa/volumeControlPhone.js
new file mode 100644
index 000000000..cd3a49310
--- /dev/null
+++ b/dist/fa/volumeControlPhone.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeControlPhone = void 0;
+var volumeControlPhone = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M617 1689q0-11-13-58t-31-107-20-69q-1-4-5-26.5t-8.5-36-13.5-21.5q-15-14-51-14-23 0-70 5.5t-71 5.5q-34 0-47-11-6-5-11-15.5t-7.5-20-6.5-24-5-18.5q-37-128-37-255t37-255q1-4 5-18.5t6.5-24 7.5-20 11-15.5q13-11 47-11 24 0 71 5.5t70 5.5q36 0 51-14 9-8 13.5-21.5t8.5-36 5-26.5q2-9 20-69t31-107 13-58q0-22-43.5-52.5t-75.5-42.5q-20-8-45-8-34 0-98 18-57 17-96.5 40.5t-71 66-46 70-45.5 94.5q-6 12-9 19-49 107-68 216t-19 244 19 244 68 216q56 122 83 161 63 91 179 127l6 2q64 18 98 18 25 0 45-8 32-12 75.5-42.5t43.5-52.5zM776 776q-26 0-45-19t-19-45.5 19-45.5q37-37 37-90 0-52-37-91-19-19-19-45t19-45 45-19 45 19q75 75 75 181t-75 181q-21 19-45 19zM957 957q-27 0-45-19-19-19-19-45t19-45q112-114 112-272t-112-272q-19-19-19-45t19-45 45-19 45 19q150 150 150 362t-150 362q-18 19-45 19zM1138 1138q-27 0-45-19-19-19-19-45t19-45q90-91 138.5-208t48.5-245-48.5-245-138.5-208q-19-19-19-45t19-45 45-19 45 19q109 109 167 249t58 294-58 294-167 249q-18 19-45 19z"
+ }
+ }]
+};
+exports.volumeControlPhone = volumeControlPhone;
\ No newline at end of file
diff --git a/dist/fa/volumeDown.js b/dist/fa/volumeDown.js
new file mode 100644
index 000000000..0e1b598d8
--- /dev/null
+++ b/dist/fa/volumeDown.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeDown = void 0;
+var volumeDown = {
+ "viewBox": "0 0 1152 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45zM1152 896q0 76-42.5 141.5t-112.5 93.5q-10 5-25 5-26 0-45-18.5t-19-45.5q0-21 12-35.5t29-25 34-23 29-36 12-56.5-12-56.5-29-36-34-23-29-25-12-35.5q0-27 19-45.5t45-18.5q15 0 25 5 70 27 112.5 93t42.5 142z"
+ }
+ }]
+};
+exports.volumeDown = volumeDown;
\ No newline at end of file
diff --git a/dist/fa/volumeOff.js b/dist/fa/volumeOff.js
new file mode 100644
index 000000000..47ad680ac
--- /dev/null
+++ b/dist/fa/volumeOff.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeOff = void 0;
+var volumeOff = {
+ "viewBox": "0 0 768 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45z"
+ }
+ }]
+};
+exports.volumeOff = volumeOff;
\ No newline at end of file
diff --git a/dist/fa/volumeUp.js b/dist/fa/volumeUp.js
new file mode 100644
index 000000000..bb74bfcf8
--- /dev/null
+++ b/dist/fa/volumeUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeUp = void 0;
+var volumeUp = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M768 352v1088q0 26-19 45t-45 19-45-19l-333-333h-262q-26 0-45-19t-19-45v-384q0-26 19-45t45-19h262l333-333q19-19 45-19t45 19 19 45zM1152 896q0 76-42.5 141.5t-112.5 93.5q-10 5-25 5-26 0-45-18.5t-19-45.5q0-21 12-35.5t29-25 34-23 29-36 12-56.5-12-56.5-29-36-34-23-29-25-12-35.5q0-27 19-45.5t45-18.5q15 0 25 5 70 27 112.5 93t42.5 142zM1408 896q0 153-85 282.5t-225 188.5q-13 5-25 5-27 0-46-19t-19-45q0-39 39-59 56-29 76-44 74-54 115.5-135.5t41.5-173.5-41.5-173.5-115.5-135.5q-20-15-76-44-39-20-39-59 0-26 19-45t45-19q13 0 26 5 140 59 225 188.5t85 282.5zM1664 896q0 230-127 422.5t-338 283.5q-13 5-26 5-26 0-45-19t-19-45q0-36 39-59 7-4 22.5-10.5t22.5-10.5q46-25 82-51 123-91 192-227t69-289-69-289-192-227q-36-26-82-51-7-4-22.5-10.5t-22.5-10.5q-39-23-39-59 0-26 19-45t45-19q13 0 26 5 211 91 338 283.5t127 422.5z"
+ }
+ }]
+};
+exports.volumeUp = volumeUp;
\ No newline at end of file
diff --git a/dist/fa/warning.js b/dist/fa/warning.js
new file mode 100644
index 000000000..146bda06c
--- /dev/null
+++ b/dist/fa/warning.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.warning = void 0;
+var warning = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zM1022 1001l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zM1008 67l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z"
+ }
+ }]
+};
+exports.warning = warning;
\ No newline at end of file
diff --git a/dist/fa/wechat.js b/dist/fa/wechat.js
new file mode 100644
index 000000000..f36f9902c
--- /dev/null
+++ b/dist/fa/wechat.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wechat = void 0;
+var wechat = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M580 461q0-41-25-66t-66-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 66-24.5t25-65.5zM1323 968q0-28-25.5-50t-65.5-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q40 0 65.5-22t25.5-51zM1087 461q0-41-24.5-66t-65.5-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 65.5-24.5t24.5-65.5zM1722 968q0-28-26-50t-65-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q39 0 65-22t26-51zM1456 571q-31-4-70-4-169 0-311 77t-223.5 208.5-81.5 287.5q0 78 23 152-35 3-68 3-26 0-50-1.5t-55-6.5-44.5-7-54.5-10.5-50-10.5l-253 127 72-218q-290-203-290-490 0-169 97.5-311t264-223.5 363.5-81.5q176 0 332.5 66t262 182.5 136.5 260.5zM2048 1132q0 117-68.5 223.5t-185.5 193.5l55 181-199-109q-150 37-218 37-169 0-311-70.5t-223.5-191.5-81.5-264 81.5-264 223.5-191.5 311-70.5q161 0 303 70.5t227.5 192 85.5 263.5z"
+ }
+ }]
+};
+exports.wechat = wechat;
\ No newline at end of file
diff --git a/dist/fa/weibo.js b/dist/fa/weibo.js
new file mode 100644
index 000000000..12348dc04
--- /dev/null
+++ b/dist/fa/weibo.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weibo = void 0;
+var weibo = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M675 1284q21-34 11-69t-45-50q-34-14-73-1t-60 46q-22 34-13 68.5t43 50.5 74.5 2.5 62.5-47.5zM769 1163q8-13 3.5-26.5t-17.5-18.5q-14-5-28.5 0.5t-21.5 18.5q-17 31 13 45 14 5 29-0.5t22-18.5zM943 1270q-45 102-158 150t-224 12q-107-34-147.5-126.5t6.5-187.5q47-93 151.5-139t210.5-19q111 29 158.5 119.5t2.5 190.5zM1255 1110q-9-96-89-170t-208.5-109-274.5-21q-223 23-369.5 141.5t-132.5 264.5q9 96 89 170t208.5 109 274.5 21q223-23 369.5-141.5t132.5-264.5zM1563 1114q0 68-37 139.5t-109 137-168.5 117.5-226 83-270.5 31-275-33.5-240.5-93-171.5-151-65-199.5q0-115 69.5-245t197.5-258q169-169 341.5-236t246.5 7q65 64 20 209-4 14-1 20t10 7 14.5-0.5 13.5-3.5l6-2q139-59 246-59t153 61q45 63 0 178-2 13-4.5 20t4.5 12.5 12 7.5 17 6q57 18 103 47t80 81.5 34 116.5zM1489 490q42 47 54.5 108.5t-6.5 117.5q-8 23-29.5 34t-44.5 4q-23-8-34-29.5t-4-44.5q20-63-24-111t-107-35q-24 5-45-8t-25-37q-5-24 8-44.5t37-25.5q60-13 119 5.5t101 65.5zM1670 327q87 96 112.5 222.5t-13.5 241.5q-9 27-34 40t-52 4-40-34-5-52q28-82 10-172t-80-158q-62-69-148-95.5t-173-8.5q-28 6-52-9.5t-30-43.5 9.5-51.5 43.5-29.5q123-26 244 11.5t208 134.5z"
+ }
+ }]
+};
+exports.weibo = weibo;
\ No newline at end of file
diff --git a/dist/fa/weixin.js b/dist/fa/weixin.js
new file mode 100644
index 000000000..cae47b4f9
--- /dev/null
+++ b/dist/fa/weixin.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weixin = void 0;
+var weixin = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M580 461q0-41-25-66t-66-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 66-24.5t25-65.5zM1323 968q0-28-25.5-50t-65.5-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q40 0 65.5-22t25.5-51zM1087 461q0-41-24.5-66t-65.5-25q-43 0-76 25.5t-33 65.5q0 39 33 64.5t76 25.5q41 0 65.5-24.5t24.5-65.5zM1722 968q0-28-26-50t-65-22q-27 0-49.5 22.5t-22.5 49.5q0 28 22.5 50.5t49.5 22.5q39 0 65-22t26-51zM1456 571q-31-4-70-4-169 0-311 77t-223.5 208.5-81.5 287.5q0 78 23 152-35 3-68 3-26 0-50-1.5t-55-6.5-44.5-7-54.5-10.5-50-10.5l-253 127 72-218q-290-203-290-490 0-169 97.5-311t264-223.5 363.5-81.5q176 0 332.5 66t262 182.5 136.5 260.5zM2048 1132q0 117-68.5 223.5t-185.5 193.5l55 181-199-109q-150 37-218 37-169 0-311-70.5t-223.5-191.5-81.5-264 81.5-264 223.5-191.5 311-70.5q161 0 303 70.5t227.5 192 85.5 263.5z"
+ }
+ }]
+};
+exports.weixin = weixin;
\ No newline at end of file
diff --git a/dist/fa/whatsapp.js b/dist/fa/whatsapp.js
new file mode 100644
index 000000000..d966a6808
--- /dev/null
+++ b/dist/fa/whatsapp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.whatsapp = void 0;
+var whatsapp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M985 974q13 0 97.5 44t89.5 53q2 5 2 15 0 33-17 76-16 39-71 65.5t-102 26.5q-57 0-190-62-98-45-170-118t-148-185q-72-107-71-194v-8q3-91 74-158 24-22 52-22 6 0 18 1.5t19 1.5q19 0 26.5 6.5t15.5 27.5q8 20 33 88t25 75q0 21-34.5 57.5t-34.5 46.5q0 7 5 15 34 73 102 137 56 53 151 101 12 7 22 7 15 0 54-48.5t52-48.5zM782 1504q127 0 243.5-50t200.5-134 134-200.5 50-243.5-50-243.5-134-200.5-200.5-134-243.5-50-243.5 50-200.5 134-134 200.5-50 243.5q0 203 120 368l-79 233 242-77q158 104 345 104zM782 122q153 0 292.5 60t240.5 161 161 240.5 60 292.5-60 292.5-161 240.5-240.5 161-292.5 60q-195 0-365-94l-417 134 136-405q-108-178-108-389 0-153 60-292.5t161-240.5 240.5-161 292.5-60z"
+ }
+ }]
+};
+exports.whatsapp = whatsapp;
\ No newline at end of file
diff --git a/dist/fa/wheelchair.js b/dist/fa/wheelchair.js
new file mode 100644
index 000000000..198267b41
--- /dev/null
+++ b/dist/fa/wheelchair.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wheelchair = void 0;
+var wheelchair = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1023 1187l102 204q-58 179-210 290t-339 111q-156 0-288.5-77.5t-210-210-77.5-288.5q0-181 104.5-330t274.5-211l17 131q-122 54-195 165.5t-73 244.5q0 185 131.5 316.5t316.5 131.5q126 0 232.5-65t165-175.5 49.5-236.5zM1571 1287l58 114-256 128q-13 7-29 7-40 0-57-35l-239-477h-472q-24 0-42.5-16.5t-21.5-40.5l-96-779q-2-17 6-42 14-51 57-82.5t97-31.5q66 0 113 47t47 113q0 69-52 117.5t-120 41.5l37 289h423v128h-407l16 128h455q40 0 57 35l228 455z"
+ }
+ }]
+};
+exports.wheelchair = wheelchair;
\ No newline at end of file
diff --git a/dist/fa/wheelchairAlt.js b/dist/fa/wheelchairAlt.js
new file mode 100644
index 000000000..bfb2ecf3e
--- /dev/null
+++ b/dist/fa/wheelchairAlt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wheelchairAlt = void 0;
+var wheelchairAlt = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1438 813q34 35 29 82l-44 551q-4 42-34.5 70t-71.5 28q-6 0-9-1-44-3-72.5-36.5t-25.5-77.5l35-429-143 8q55 113 55 240 0 216-148 372l-137-137q91-101 91-235 0-145-102.5-248t-247.5-103q-134 0-236 92l-137-138q120-114 284-141l264-300-149-87-181 161q-33 30-77 27.5t-73-35.5-26.5-77 34.5-73l239-213q26-23 60-26.5t64 14.5l488 283q36 21 48 68 17 67-26 117l-205 232 371-20q49-3 83 32zM1240 356q-74 0-126-52t-52-126 52-126 126-52 126.5 52 52.5 126-52.5 126-126.5 52zM613 1598q106 0 196-61l139 139q-146 116-335 116-148 0-273.5-73t-198.5-198-73-273q0-188 116-336l139 139q-60 88-60 197 0 145 102.5 247.5t247.5 102.5z"
+ }
+ }]
+};
+exports.wheelchairAlt = wheelchairAlt;
\ No newline at end of file
diff --git a/dist/fa/wifi.js b/dist/fa/wifi.js
new file mode 100644
index 000000000..698b02638
--- /dev/null
+++ b/dist/fa/wifi.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wifi = void 0;
+var wifi = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1024 1523q-20 0-93-73.5t-73-93.5q0-32 62.5-54t103.5-22 103.5 22 62.5 54q0 20-73 93.5t-93 73.5zM1294 1252q-2 0-40-25t-101.5-50-128.5-25-128.5 25-101 50-40.5 25q-18 0-93.5-75t-75.5-93q0-13 10-23 78-77 196-121t233-44 233 44 196 121q10 10 10 23 0 18-75.5 93t-93.5 75zM1567 980q-11 0-23-8-136-105-252-154.5t-268-49.5q-85 0-170.5 22t-149 53-113.5 62-79 53-31 22q-17 0-92-75t-75-93q0-12 10-22 132-132 320-205t380-73 380 73 320 205q10 10 10 22 0 18-75 93t-92 75zM1838 709q-11 0-22-9-179-157-371.5-236.5t-420.5-79.5-420.5 79.5-371.5 236.5q-11 9-22 9-17 0-92.5-75t-75.5-93q0-13 10-23 187-186 445-288t527-102 527 102 445 288q10 10 10 23 0 18-75.5 93t-92.5 75z"
+ }
+ }]
+};
+exports.wifi = wifi;
\ No newline at end of file
diff --git a/dist/fa/wikipediaW.js b/dist/fa/wikipediaW.js
new file mode 100644
index 000000000..df098ffc0
--- /dev/null
+++ b/dist/fa/wikipediaW.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wikipediaW = void 0;
+var wikipediaW = {
+ "viewBox": "0 0 2304 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1494 1639l-295-695q-25 49-158.5 305.5t-198.5 389.5q-1 1-27.5 0.5t-26.5-1.5q-82-193-255.5-587t-259.5-596q-21-50-66.5-107.5t-103.5-100.5-102-43q0-5-0.5-24t-0.5-27h583v50q-39 2-79.5 16t-66.5 43-10 64q26 59 216.5 499t235.5 540q31-61 140-266.5t131-247.5q-19-39-126-281t-136-295q-38-69-201-71v-50l513 1v47q-60 2-93.5 25t-12.5 69q33 70 87 189.5t86 187.5q110-214 173-363 24-55-10-79.5t-129-26.5q1-7 1-25v-24q64 0 170.5-0.5t180-1 92.5-0.5v49q-62 2-119 33t-90 81l-213 442q13 33 127.5 290t121.5 274l441-1017q-14-38-49.5-62.5t-65-31.5-55.5-8v-50l460 4 1 2-1 44q-139 4-201 145-526 1216-559 1291h-49z"
+ }
+ }]
+};
+exports.wikipediaW = wikipediaW;
\ No newline at end of file
diff --git a/dist/fa/windowClose.js b/dist/fa/windowClose.js
new file mode 100644
index 000000000..2c67b3e63
--- /dev/null
+++ b/dist/fa/windowClose.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.windowClose = void 0;
+var windowClose = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1175 1321l146-146q10-10 10-23t-10-23l-233-233 233-233q10-10 10-23t-10-23l-146-146q-10-10-23-10t-23 10l-233 233-233-233q-10-10-23-10t-23 10l-146 146q-10 10-10 23t10 23l233 233-233 233q-10 10-10 23t10 23l146 146q10 10 23 10t23-10l233-233 233 233q10 10 23 10t23-10zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.windowClose = windowClose;
\ No newline at end of file
diff --git a/dist/fa/windowCloseO.js b/dist/fa/windowCloseO.js
new file mode 100644
index 000000000..33951aa81
--- /dev/null
+++ b/dist/fa/windowCloseO.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.windowCloseO = void 0;
+var windowCloseO = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1257 1111l-146 146q-10 10-23 10t-23-10l-169-169-169 169q-10 10-23 10t-23-10l-146-146q-10-10-10-23t10-23l169-169-169-169q-10-10-10-23t10-23l146-146q10-10 23-10t23 10l169 169 169-169q10-10 23-10t23 10l146 146q10 10 10 23t-10 23l-169 169 169 169q10 10 10 23t-10 23zM256 1408h1280v-1024h-1280v1024zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.windowCloseO = windowCloseO;
\ No newline at end of file
diff --git a/dist/fa/windowMaximize.js b/dist/fa/windowMaximize.js
new file mode 100644
index 000000000..e0f81a242
--- /dev/null
+++ b/dist/fa/windowMaximize.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.windowMaximize = void 0;
+var windowMaximize = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1408h1280v-768h-1280v768zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.windowMaximize = windowMaximize;
\ No newline at end of file
diff --git a/dist/fa/windowMinimize.js b/dist/fa/windowMinimize.js
new file mode 100644
index 000000000..b7b5e1f42
--- /dev/null
+++ b/dist/fa/windowMinimize.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.windowMinimize = void 0;
+var windowMinimize = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1792 1312v192q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-192q0-66 47-113t113-47h1472q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.windowMinimize = windowMinimize;
\ No newline at end of file
diff --git a/dist/fa/windowRestore.js b/dist/fa/windowRestore.js
new file mode 100644
index 000000000..2c631b5ec
--- /dev/null
+++ b/dist/fa/windowRestore.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.windowRestore = void 0;
+var windowRestore = {
+ "viewBox": "0 0 2048 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256 1536h768v-512h-768v512zM1280 1024h512v-768h-768v256h96q66 0 113 47t47 113v352zM2048 160v960q0 66-47 113t-113 47h-608v352q0 66-47 113t-113 47h-960q-66 0-113-47t-47-113v-960q0-66 47-113t113-47h608v-352q0-66 47-113t113-47h960q66 0 113 47t47 113z"
+ }
+ }]
+};
+exports.windowRestore = windowRestore;
\ No newline at end of file
diff --git a/dist/fa/windows.js b/dist/fa/windows.js
new file mode 100644
index 000000000..6bf9d6f2c
--- /dev/null
+++ b/dist/fa/windows.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.windows = void 0;
+var windows = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M682 1006v651l-682-94v-557h682zM682 263v659h-682v-565zM1664 1006v786l-907-125v-661h907zM1664 128v794h-907v-669z"
+ }
+ }]
+};
+exports.windows = windows;
\ No newline at end of file
diff --git a/dist/fa/won.js b/dist/fa/won.js
new file mode 100644
index 000000000..2f2d5e356
--- /dev/null
+++ b/dist/fa/won.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.won = void 0;
+var won = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M514 1195l81-299h-159l75 300q1 1 1 3t1 3q0-1 0.5-3.5t0.5-3.5zM630 768l35-128h-292l32 128h225zM822 768h139l-35-128h-70zM1271 1196l78-300h-162l81 299q0 1 0.5 3.5t1.5 3.5q0-1 0.5-3t0.5-3zM1382 768l33-128h-297l34 128h230zM1792 800v64q0 14-9 23t-23 9h-213l-164 616q-7 24-31 24h-159q-24 0-31-24l-166-616h-209l-167 616q-7 24-31 24h-159q-11 0-19.5-7t-10.5-17l-160-616h-208q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h175l-33-128h-142q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h109l-89-344q-5-15 5-28 10-12 26-12h137q26 0 31 24l90 360h359l97-360q7-24 31-24h126q24 0 31 24l98 360h365l93-360q5-24 31-24h137q16 0 26 12 10 13 5 28l-91 344h111q14 0 23 9t9 23v64q0 14-9 23t-23 9h-145l-34 128h179q14 0 23 9t9 23z"
+ }
+ }]
+};
+exports.won = won;
\ No newline at end of file
diff --git a/dist/fa/wordpress.js b/dist/fa/wordpress.js
new file mode 100644
index 000000000..8740f5a71
--- /dev/null
+++ b/dist/fa/wordpress.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wordpress = void 0;
+var wordpress = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M127 896q0-163 67-313l367 1005q-196-95-315-281t-119-411zM1415 857q0 19-2.5 38.5t-10 49.5-11.5 44-17.5 59-17.5 58l-76 256-278-826q46-3 88-8 19-2 26-18.5t-2.5-31-28.5-13.5l-205 10q-75-1-202-10-12-1-20.5 5t-11.5 15-1.5 18.5 9 16.5 19.5 8l80 8 120 328-168 504-280-832q46-3 88-8 19-2 26-18.5t-2.5-31-28.5-13.5l-205 10q-7 0-23-0.5t-26-0.5q105-160 274.5-253.5t367.5-93.5q147 0 280.5 53t238.5 149h-10q-55 0-92 40.5t-37 95.5q0 12 2 24t4 21.5 8 23 9 21 12 22.5 12.5 21 14.5 24 14 23q63 107 63 212zM909 963l237 647q1 6 5 11-126 44-255 44-112 0-217-32zM1570 527q95 174 95 369 0 209-104 385.5t-279 278.5l235-678q59-169 59-276 0-42-6-79zM896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71zM896 1751q173 0 331.5-68t273-182.5 182.5-273 68-331.5-68-331.5-182.5-273-273-182.5-331.5-68-331.5 68-273 182.5-182.5 273-68 331.5 68 331.5 182.5 273 273 182.5 331.5 68z"
+ }
+ }]
+};
+exports.wordpress = wordpress;
\ No newline at end of file
diff --git a/dist/fa/wpbeginner.js b/dist/fa/wpbeginner.js
new file mode 100644
index 000000000..69bd4fd02
--- /dev/null
+++ b/dist/fa/wpbeginner.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wpbeginner = void 0;
+var wpbeginner = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 832h160v-224h-160v224zM1221 1164v-92q-104 36-243 38-135 1-259.5-46.5t-220.5-122.5l1 96q88 80 212 128.5t272 47.5q129 0 238-49zM640 832h640v-224h-640v224zM1792 800q0 187-99 352 89 102 89 229 0 157-129.5 268t-313.5 111q-122 0-225-52.5t-161-140.5q-19 1-57 1t-57-1q-58 88-161 140.5t-225 52.5q-184 0-313.5-111t-129.5-268q0-127 89-229-99-165-99-352 0-209 120-385.5t326.5-279.5 449.5-103 449.5 103 326.5 279.5 120 385.5z"
+ }
+ }]
+};
+exports.wpbeginner = wpbeginner;
\ No newline at end of file
diff --git a/dist/fa/wpexplorer.js b/dist/fa/wpexplorer.js
new file mode 100644
index 000000000..672f5add2
--- /dev/null
+++ b/dist/fa/wpexplorer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wpexplorer = void 0;
+var wpexplorer = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M948 1028l163 329h-51l-175-350-171 350h-49l179-374-78-33 21-49 240 102-21 50zM563 436l304 130-130 304-304-130zM907 621l240 103-103 239-239-102zM1188 771l191 81-82 190-190-81zM1680 896q0-159-62-304t-167.5-250.5-250.5-167.5-304-62-304 62-250.5 167.5-167.5 250.5-62 304 62 304 167.5 250.5 250.5 167.5 304 62 304-62 250.5-167.5 167.5-250.5 62-304zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z"
+ }
+ }]
+};
+exports.wpexplorer = wpexplorer;
\ No newline at end of file
diff --git a/dist/fa/wpforms.js b/dist/fa/wpforms.js
new file mode 100644
index 000000000..b3d4e402d
--- /dev/null
+++ b/dist/fa/wpforms.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wpforms = void 0;
+var wpforms = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M515 911v128h-252v-128h252zM515 656v127h-252v-127h252zM1273 1167v128h-341v-128h341zM1273 911v128h-672v-128h672zM1273 656v127h-672v-127h672zM1408 1516v-1240q0-8-6-14t-14-6h-32l-378 256-210-171-210 171-378-256h-32q-8 0-14 6t-6 14v1240q0 8 6 14t14 6h1240q8 0 14-6t6-14zM553 406l185-150h-406zM983 406l221-150h-406zM1536 276v1240q0 62-43 105t-105 43h-1240q-62 0-105-43t-43-105v-1240q0-62 43-105t105-43h1240q62 0 105 43t43 105z"
+ }
+ }]
+};
+exports.wpforms = wpforms;
\ No newline at end of file
diff --git a/dist/fa/wrench.js b/dist/fa/wrench.js
new file mode 100644
index 000000000..5ff9a7d95
--- /dev/null
+++ b/dist/fa/wrench.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wrench = void 0;
+var wrench = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zM1028 1052l-682 682q-37 37-90 37-52 0-91-37l-106-108q-38-36-38-90 0-53 38-91l681-681q39 98 114.5 173.5t173.5 114.5zM1662 617q0 39-23 106-47 134-164.5 217.5t-258.5 83.5q-185 0-316.5-131.5t-131.5-316.5 131.5-316.5 316.5-131.5q58 0 121.5 16.5t107.5 46.5q16 11 16 28t-16 28l-293 169v224l193 107q5-3 79-48.5t135.5-81 70.5-35.5q15 0 23.5 10t8.5 25z"
+ }
+ }]
+};
+exports.wrench = wrench;
\ No newline at end of file
diff --git a/dist/fa/xing.js b/dist/fa/xing.js
new file mode 100644
index 000000000..2824f3538
--- /dev/null
+++ b/dist/fa/xing.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.xing = void 0;
+var xing = {
+ "viewBox": "0 0 1408 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M597 667q-10 18-257 456-27 46-65 46h-239q-21 0-31-17t0-36l253-448q1 0 0-1l-161-279q-12-22-1-37 9-15 32-15h239q40 0 66 45zM1403 25q11 16 0 37l-528 934v1l336 615q11 20 1 37-10 15-32 15h-239q-42 0-66-45l-339-622q18-32 531-942 25-45 64-45h241q22 0 31 15z"
+ }
+ }]
+};
+exports.xing = xing;
\ No newline at end of file
diff --git a/dist/fa/xingSquare.js b/dist/fa/xingSquare.js
new file mode 100644
index 000000000..1084bed6d
--- /dev/null
+++ b/dist/fa/xingSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.xingSquare = void 0;
+var xingSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M685 765q0-1-126-222-21-34-52-34h-184q-18 0-26 11-7 12 1 29l125 216v1l-196 346q-9 14 0 28 8 13 24 13h185q31 0 50-36zM1309 268q-7-12-24-12h-187q-30 0-49 35l-411 729q1 2 262 481 20 35 52 35h184q18 0 25-12 8-13-1-28l-260-476v-1l409-723q8-16 0-28zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.xingSquare = xingSquare;
\ No newline at end of file
diff --git a/dist/fa/yCombinator.js b/dist/fa/yCombinator.js
new file mode 100644
index 000000000..9794a9cba
--- /dev/null
+++ b/dist/fa/yCombinator.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yCombinator = void 0;
+var yCombinator = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 128v1536h-1536v-1536h1536z"
+ }
+ }]
+};
+exports.yCombinator = yCombinator;
\ No newline at end of file
diff --git a/dist/fa/yCombinatorSquare.js b/dist/fa/yCombinatorSquare.js
new file mode 100644
index 000000000..37475c9aa
--- /dev/null
+++ b/dist/fa/yCombinatorSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yCombinatorSquare = void 0;
+var yCombinatorSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.yCombinatorSquare = yCombinatorSquare;
\ No newline at end of file
diff --git a/dist/fa/yahoo.js b/dist/fa/yahoo.js
new file mode 100644
index 000000000..b973690e4
--- /dev/null
+++ b/dist/fa/yahoo.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yahoo = void 0;
+var yahoo = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M859 957l13 707q-62-11-105-11-41 0-105 11l13-707q-40-69-168.5-295.5t-216.5-374.5-181-287q58 15 108 15 44 0 111-15 63 111 133.5 229.5t167 276.5 138.5 227q37-61 109.5-177.5t117.5-190 105-176 107-189.5q54 14 107 14 56 0 114-14v0q-28 39-60 88.5t-49.5 78.5-56.5 96-49 84q-146 248-353 610z"
+ }
+ }]
+};
+exports.yahoo = yahoo;
\ No newline at end of file
diff --git a/dist/fa/yc.js b/dist/fa/yc.js
new file mode 100644
index 000000000..94094b21f
--- /dev/null
+++ b/dist/fa/yc.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yc = void 0;
+var yc = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 128v1536h-1536v-1536h1536z"
+ }
+ }]
+};
+exports.yc = yc;
\ No newline at end of file
diff --git a/dist/fa/ycSquare.js b/dist/fa/ycSquare.js
new file mode 100644
index 000000000..0fc8c5e30
--- /dev/null
+++ b/dist/fa/ycSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ycSquare = void 0;
+var ycSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M809 1004l266-499h-112l-157 312q-24 48-44 92l-42-92-155-312h-120l263 493v324h101v-318zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.ycSquare = ycSquare;
\ No newline at end of file
diff --git a/dist/fa/yelp.js b/dist/fa/yelp.js
new file mode 100644
index 000000000..46e02b726
--- /dev/null
+++ b/dist/fa/yelp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yelp = void 0;
+var yelp = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M773 1319v127q-1 292-6 305-12 32-51 40-54 9-181.5-38t-162.5-89q-13-15-17-36-1-12 4-26 4-10 34-47t181-216q1 0 60-70 15-19 39.5-24.5t49.5 3.5q24 10 37.5 29t12.5 42zM624 1068q-3 55-52 70l-120 39q-275 88-292 88-35-2-54-36-12-25-17-75-8-76 1-166.5t30-124.5 56-32q13 0 202 77 71 29 115 47l84 34q23 9 35.5 30.5t11.5 48.5zM1450 1365q-7 54-91.5 161t-135.5 127q-37 14-63-7-14-10-184-287l-47-77q-14-21-11.5-46t19.5-46q35-43 83-26 1 1 119 40 203 66 242 79.5t47 20.5q28 22 22 61zM778 733q5 102-54 122-58 17-114-71l-378-598q-8-35 19-62 41-43 207.5-89.5t224.5-31.5q40 10 49 45 3 18 22 305.5t24 379.5zM1440 841q3 39-26 59-15 10-329 86-67 15-91 23l1-2q-23 6-46-4t-37-32q-30-47 0-87 1-1 75-102 125-171 150-204t34-39q28-19 65-2 48 23 123 133.5t81 167.5v3z"
+ }
+ }]
+};
+exports.yelp = yelp;
\ No newline at end of file
diff --git a/dist/fa/yen.js b/dist/fa/yen.js
new file mode 100644
index 000000000..98e81f13a
--- /dev/null
+++ b/dist/fa/yen.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yen = void 0;
+var yen = {
+ "viewBox": "0 0 1027 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M603 1536h-172q-13 0-22.5-9t-9.5-23v-330h-288q-13 0-22.5-9t-9.5-23v-103q0-13 9.5-22.5t22.5-9.5h288v-85h-288q-13 0-22.5-9t-9.5-23v-104q0-13 9.5-22.5t22.5-9.5h214l-321-578q-8-16 0-32 10-16 28-16h194q19 0 29 18l215 425q19 38 56 125 10-24 30.5-68t27.5-61l191-420q8-19 29-19h191q17 0 27 16 9 14 1 31l-313 579h215q13 0 22.5 9.5t9.5 22.5v104q0 14-9.5 23t-22.5 9h-290v85h290q13 0 22.5 9.5t9.5 22.5v103q0 14-9.5 23t-22.5 9h-290v330q0 13-9.5 22.5t-22.5 9.5z"
+ }
+ }]
+};
+exports.yen = yen;
\ No newline at end of file
diff --git a/dist/fa/yoast.js b/dist/fa/yoast.js
new file mode 100644
index 000000000..0a99f3c1a
--- /dev/null
+++ b/dist/fa/yoast.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yoast = void 0;
+var yoast = {
+ "viewBox": "0 0 1664 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M339 218h691l-26 72h-665q-110 0-188.5 79t-78.5 189v771q0 95 60.5 169.5t153.5 93.5q23 5 98 5v72h-45q-140 0-239.5-100t-99.5-240v-771q0-140 99.5-240t239.5-100zM1190 0h247l-482 1294q-23 61-40.5 103.5t-45 98-54 93.5-64.5 78.5-79.5 65-95.5 41-116 18.5v-195q163-26 220-182 20-52 20-105 0-54-20-106l-285-733h228l187 585zM1664 558v1111h-795q37-55 45-73h678v-1038q0-85-49.5-155t-129.5-99l25-67q101 34 163.5 123.5t62.5 197.5z"
+ }
+ }]
+};
+exports.yoast = yoast;
\ No newline at end of file
diff --git a/dist/fa/youtube.js b/dist/fa/youtube.js
new file mode 100644
index 000000000..961425818
--- /dev/null
+++ b/dist/fa/youtube.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.youtube = void 0;
+var youtube = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M971 1244v211q0 67-39 67-23 0-45-22v-301q22-22 45-22 39 0 39 67zM1309 1245v46h-90v-46q0-68 45-68t45 68zM343 1027h107v-94h-312v94h105v569h100v-569zM631 1596h89v-494h-89v378q-30 42-57 42-18 0-21-21-1-3-1-35v-364h-89v391q0 49 8 73 12 37 58 37 48 0 102-61v54zM1060 1448v-197q0-73-9-99-17-56-71-56-50 0-93 54v-217h-89v663h89v-48q45 55 93 55 54 0 71-55 9-27 9-100zM1398 1438v-13h-91q0 51-2 61-7 36-40 36-46 0-46-69v-87h179v-103q0-79-27-116-39-51-106-51-68 0-107 51-28 37-28 116v173q0 79 29 116 39 51 108 51 72 0 108-53 18-27 21-54 2-9 2-58zM790 525v-210q0-69-43-69t-43 69v210q0 70 43 70t43-70zM1509 1276q0 234-26 350-14 59-58 99t-102 46q-184 21-555 21t-555-21q-58-6-102.5-46t-57.5-99q-26-112-26-350 0-234 26-350 14-59 58-99t103-47q183-20 554-20t555 20q58 7 102.5 47t57.5 99q26 112 26 350zM511 0h102l-121 399v271h-100v-271q-14-74-61-212-37-103-65-187h106l71 263zM881 333v175q0 81-28 118-38 51-106 51-67 0-105-51-28-38-28-118v-175q0-80 28-117 38-51 105-51 68 0 106 51 28 37 28 117zM1216 171v499h-91v-55q-53 62-103 62-46 0-59-37-8-24-8-75v-394h91v367q0 33 1 35 3 22 21 22 27 0 57-43v-381h91z"
+ }
+ }]
+};
+exports.youtube = youtube;
\ No newline at end of file
diff --git a/dist/fa/youtubePlay.js b/dist/fa/youtubePlay.js
new file mode 100644
index 000000000..f2e93245e
--- /dev/null
+++ b/dist/fa/youtubePlay.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.youtubePlay = void 0;
+var youtubePlay = {
+ "viewBox": "0 0 1792 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M711 1128l484-250-484-253v503zM896 266q168 0 324.5 4.5t229.5 9.5l73 4q1 0 17 1.5t23 3 23.5 4.5 28.5 8 28 13 31 19.5 29 26.5q6 6 15.5 18.5t29 58.5 26.5 101q8 64 12.5 136.5t5.5 113.5v40 136q1 145-18 290-7 55-25 99.5t-32 61.5l-14 17q-14 15-29 26.5t-31 19-28 12.5-28.5 8-24 4.5-23 3-16.5 1.5q-251 19-627 19-207-2-359.5-6.5t-200.5-7.5l-49-4-36-4q-36-5-54.5-10t-51-21-56.5-41q-6-6-15.5-18.5t-29-58.5-26.5-101q-8-64-12.5-136.5t-5.5-113.5v-40-136q-1-145 18-290 7-55 25-99.5t32-61.5l14-17q14-15 29-26.5t31-19.5 28-13 28.5-8 23.5-4.5 23-3 17-1.5q251-18 627-18z"
+ }
+ }]
+};
+exports.youtubePlay = youtubePlay;
\ No newline at end of file
diff --git a/dist/fa/youtubeSquare.js b/dist/fa/youtubeSquare.js
new file mode 100644
index 000000000..7e223d216
--- /dev/null
+++ b/dist/fa/youtubeSquare.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.youtubeSquare = void 0;
+var youtubeSquare = {
+ "viewBox": "0 0 1536 1792",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M919 1303v-157q0-50-29-50-17 0-33 16v224q16 16 33 16 29 0 29-49zM1103 1181h66v-34q0-51-33-51t-33 51v34zM532 915v70h-80v423h-74v-423h-78v-70h232zM733 1041v367h-67v-40q-39 45-76 45-33 0-42-28-6-17-6-54v-290h66v270q0 24 1 26 1 15 15 15 20 0 42-31v-280h67zM985 1152v146q0 52-7 73-12 42-53 42-35 0-68-41v36h-67v-493h67v161q32-40 68-40 41 0 53 42 7 21 7 74zM1236 1281v9q0 29-2 43-3 22-15 40-27 40-80 40-52 0-81-38-21-27-21-86v-129q0-59 20-86 29-38 80-38t78 38q21 29 21 86v76h-133v65q0 51 34 51 24 0 30-26 0-1 0.5-7t0.5-16.5v-21.5h68zM785 457v156q0 51-32 51t-32-51v-156q0-52 32-52t32 52zM1318 1170q0-177-19-260-10-44-43-73.5t-76-34.5q-136-15-412-15-275 0-411 15-44 5-76.5 34.5t-42.5 73.5q-20 87-20 260 0 176 20 260 10 43 42.5 73t75.5 35q137 15 412 15t412-15q43-5 75.5-35t42.5-73q20-84 20-260zM563 519l90-296h-75l-51 195-53-195h-78q7 23 23 69l24 69q35 103 46 158v201h74v-201zM852 600v-130q0-58-21-87-29-38-78-38-51 0-78 38-21 29-21 87v130q0 58 21 87 27 38 78 38 49 0 78-38 21-27 21-87zM1033 720h67v-370h-67v283q-22 31-42 31-15 0-16-16-1-2-1-26v-272h-67v293q0 37 6 55 11 27 43 27 36 0 77-45v40zM1536 416v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"
+ }
+ }]
+};
+exports.youtubeSquare = youtubeSquare;
\ No newline at end of file
diff --git a/dist/feather/activity.js b/dist/feather/activity.js
new file mode 100644
index 000000000..684be6e7c
--- /dev/null
+++ b/dist/feather/activity.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.activity = void 0;
+var activity = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "22 12 18 12 15 21 9 3 6 12 2 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.activity = activity;
\ No newline at end of file
diff --git a/dist/feather/airplay.js b/dist/feather/airplay.js
new file mode 100644
index 000000000..0bea276cc
--- /dev/null
+++ b/dist/feather/airplay.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.airplay = void 0;
+var airplay = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "12 15 17 21 7 21 12 15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.airplay = airplay;
\ No newline at end of file
diff --git a/dist/feather/alertCircle.js b/dist/feather/alertCircle.js
new file mode 100644
index 000000000..9556f3ee2
--- /dev/null
+++ b/dist/feather/alertCircle.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alertCircle = void 0;
+var alertCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "16",
+ "x2": "12",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alertCircle = alertCircle;
\ No newline at end of file
diff --git a/dist/feather/alertOctagon.js b/dist/feather/alertOctagon.js
new file mode 100644
index 000000000..c7a6eefc6
--- /dev/null
+++ b/dist/feather/alertOctagon.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alertOctagon = void 0;
+var alertOctagon = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "16",
+ "x2": "12",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alertOctagon = alertOctagon;
\ No newline at end of file
diff --git a/dist/feather/alertTriangle.js b/dist/feather/alertTriangle.js
new file mode 100644
index 000000000..0c485768f
--- /dev/null
+++ b/dist/feather/alertTriangle.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alertTriangle = void 0;
+var alertTriangle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "9",
+ "x2": "12",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "17",
+ "x2": "12",
+ "y2": "17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alertTriangle = alertTriangle;
\ No newline at end of file
diff --git a/dist/feather/alignCenter.js b/dist/feather/alignCenter.js
new file mode 100644
index 000000000..b9ced8dba
--- /dev/null
+++ b/dist/feather/alignCenter.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignCenter = void 0;
+var alignCenter = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "10",
+ "x2": "6",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "6",
+ "x2": "3",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "14",
+ "x2": "3",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "18",
+ "x2": "6",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alignCenter = alignCenter;
\ No newline at end of file
diff --git a/dist/feather/alignJustify.js b/dist/feather/alignJustify.js
new file mode 100644
index 000000000..a2fa344d4
--- /dev/null
+++ b/dist/feather/alignJustify.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignJustify = void 0;
+var alignJustify = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "10",
+ "x2": "3",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "6",
+ "x2": "3",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "14",
+ "x2": "3",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "18",
+ "x2": "3",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alignJustify = alignJustify;
\ No newline at end of file
diff --git a/dist/feather/alignLeft.js b/dist/feather/alignLeft.js
new file mode 100644
index 000000000..30f755b43
--- /dev/null
+++ b/dist/feather/alignLeft.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignLeft = void 0;
+var alignLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "10",
+ "x2": "3",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "6",
+ "x2": "3",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "14",
+ "x2": "3",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "18",
+ "x2": "3",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alignLeft = alignLeft;
\ No newline at end of file
diff --git a/dist/feather/alignRight.js b/dist/feather/alignRight.js
new file mode 100644
index 000000000..57e80c095
--- /dev/null
+++ b/dist/feather/alignRight.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignRight = void 0;
+var alignRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "10",
+ "x2": "7",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "6",
+ "x2": "3",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "14",
+ "x2": "3",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "18",
+ "x2": "7",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alignRight = alignRight;
\ No newline at end of file
diff --git a/dist/feather/anchor.js b/dist/feather/anchor.js
new file mode 100644
index 000000000..5e3ddbeb0
--- /dev/null
+++ b/dist/feather/anchor.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.anchor = void 0;
+var anchor = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "5",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22",
+ "x2": "12",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 12H2a10 10 0 0 0 20 0h-3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.anchor = anchor;
\ No newline at end of file
diff --git a/dist/feather/aperture.js b/dist/feather/aperture.js
new file mode 100644
index 000000000..355fe9afd
--- /dev/null
+++ b/dist/feather/aperture.js
@@ -0,0 +1,80 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.aperture = void 0;
+var aperture = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.31",
+ "y1": "8",
+ "x2": "20.05",
+ "y2": "17.94"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9.69",
+ "y1": "8",
+ "x2": "21.17",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "7.38",
+ "y1": "12",
+ "x2": "13.12",
+ "y2": "2.06"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9.69",
+ "y1": "16",
+ "x2": "3.95",
+ "y2": "6.06"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.31",
+ "y1": "16",
+ "x2": "2.83",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16.62",
+ "y1": "12",
+ "x2": "10.88",
+ "y2": "21.94"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.aperture = aperture;
\ No newline at end of file
diff --git a/dist/feather/archive.js b/dist/feather/archive.js
new file mode 100644
index 000000000..1109888f4
--- /dev/null
+++ b/dist/feather/archive.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.archive = void 0;
+var archive = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "21 8 21 21 3 21 3 8"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "3",
+ "width": "22",
+ "height": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "12",
+ "x2": "14",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.archive = archive;
\ No newline at end of file
diff --git a/dist/feather/arrowDown.js b/dist/feather/arrowDown.js
new file mode 100644
index 000000000..8501ce9aa
--- /dev/null
+++ b/dist/feather/arrowDown.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDown = void 0;
+var arrowDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "5",
+ "x2": "12",
+ "y2": "19"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "19 12 12 19 5 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowDown = arrowDown;
\ No newline at end of file
diff --git a/dist/feather/arrowDownCircle.js b/dist/feather/arrowDownCircle.js
new file mode 100644
index 000000000..839d5edb5
--- /dev/null
+++ b/dist/feather/arrowDownCircle.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDownCircle = void 0;
+var arrowDownCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8 12 12 16 16 12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowDownCircle = arrowDownCircle;
\ No newline at end of file
diff --git a/dist/feather/arrowDownLeft.js b/dist/feather/arrowDownLeft.js
new file mode 100644
index 000000000..3b1465429
--- /dev/null
+++ b/dist/feather/arrowDownLeft.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDownLeft = void 0;
+var arrowDownLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "7",
+ "x2": "7",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 17 7 17 7 7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowDownLeft = arrowDownLeft;
\ No newline at end of file
diff --git a/dist/feather/arrowDownRight.js b/dist/feather/arrowDownRight.js
new file mode 100644
index 000000000..a546c1536
--- /dev/null
+++ b/dist/feather/arrowDownRight.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDownRight = void 0;
+var arrowDownRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "7",
+ "y1": "7",
+ "x2": "17",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 7 17 17 7 17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowDownRight = arrowDownRight;
\ No newline at end of file
diff --git a/dist/feather/arrowLeft.js b/dist/feather/arrowLeft.js
new file mode 100644
index 000000000..960edd761
--- /dev/null
+++ b/dist/feather/arrowLeft.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowLeft = void 0;
+var arrowLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "19",
+ "y1": "12",
+ "x2": "5",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 19 5 12 12 5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowLeft = arrowLeft;
\ No newline at end of file
diff --git a/dist/feather/arrowLeftCircle.js b/dist/feather/arrowLeftCircle.js
new file mode 100644
index 000000000..f712bd501
--- /dev/null
+++ b/dist/feather/arrowLeftCircle.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowLeftCircle = void 0;
+var arrowLeftCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 8 8 12 12 16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "12",
+ "x2": "8",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowLeftCircle = arrowLeftCircle;
\ No newline at end of file
diff --git a/dist/feather/arrowRight.js b/dist/feather/arrowRight.js
new file mode 100644
index 000000000..e4996158f
--- /dev/null
+++ b/dist/feather/arrowRight.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowRight = void 0;
+var arrowRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "5",
+ "y1": "12",
+ "x2": "19",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 5 19 12 12 19"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowRight = arrowRight;
\ No newline at end of file
diff --git a/dist/feather/arrowRightCircle.js b/dist/feather/arrowRightCircle.js
new file mode 100644
index 000000000..70f4b63b4
--- /dev/null
+++ b/dist/feather/arrowRightCircle.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowRightCircle = void 0;
+var arrowRightCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 16 16 12 12 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowRightCircle = arrowRightCircle;
\ No newline at end of file
diff --git a/dist/feather/arrowUp.js b/dist/feather/arrowUp.js
new file mode 100644
index 000000000..e7cb24f6d
--- /dev/null
+++ b/dist/feather/arrowUp.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUp = void 0;
+var arrowUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "19",
+ "x2": "12",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "5 12 12 5 19 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowUp = arrowUp;
\ No newline at end of file
diff --git a/dist/feather/arrowUpCircle.js b/dist/feather/arrowUpCircle.js
new file mode 100644
index 000000000..71311ad4a
--- /dev/null
+++ b/dist/feather/arrowUpCircle.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUpCircle = void 0;
+var arrowUpCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "16 12 12 8 8 12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "16",
+ "x2": "12",
+ "y2": "8"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowUpCircle = arrowUpCircle;
\ No newline at end of file
diff --git a/dist/feather/arrowUpLeft.js b/dist/feather/arrowUpLeft.js
new file mode 100644
index 000000000..bfcb7f800
--- /dev/null
+++ b/dist/feather/arrowUpLeft.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUpLeft = void 0;
+var arrowUpLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "17",
+ "x2": "7",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 17 7 7 17 7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowUpLeft = arrowUpLeft;
\ No newline at end of file
diff --git a/dist/feather/arrowUpRight.js b/dist/feather/arrowUpRight.js
new file mode 100644
index 000000000..674b6b999
--- /dev/null
+++ b/dist/feather/arrowUpRight.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUpRight = void 0;
+var arrowUpRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "7",
+ "y1": "17",
+ "x2": "17",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 7 17 7 17 17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowUpRight = arrowUpRight;
\ No newline at end of file
diff --git a/dist/feather/atSign.js b/dist/feather/atSign.js
new file mode 100644
index 000000000..65fa133d6
--- /dev/null
+++ b/dist/feather/atSign.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.atSign = void 0;
+var atSign = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.atSign = atSign;
\ No newline at end of file
diff --git a/dist/feather/award.js b/dist/feather/award.js
new file mode 100644
index 000000000..04b7d5293
--- /dev/null
+++ b/dist/feather/award.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.award = void 0;
+var award = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "8",
+ "r": "7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8.21 13.89 7 23 12 20 17 23 15.79 13.88"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.award = award;
\ No newline at end of file
diff --git a/dist/feather/barChart.js b/dist/feather/barChart.js
new file mode 100644
index 000000000..f38037c96
--- /dev/null
+++ b/dist/feather/barChart.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.barChart = void 0;
+var barChart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "20",
+ "x2": "12",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "20",
+ "x2": "18",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "20",
+ "x2": "6",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.barChart = barChart;
\ No newline at end of file
diff --git a/dist/feather/barChart2.js b/dist/feather/barChart2.js
new file mode 100644
index 000000000..40f41b4ba
--- /dev/null
+++ b/dist/feather/barChart2.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.barChart2 = void 0;
+var barChart2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "20",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "20",
+ "x2": "12",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "20",
+ "x2": "6",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.barChart2 = barChart2;
\ No newline at end of file
diff --git a/dist/feather/battery.js b/dist/feather/battery.js
new file mode 100644
index 000000000..f839722cb
--- /dev/null
+++ b/dist/feather/battery.js
@@ -0,0 +1,38 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery = void 0;
+var battery = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "6",
+ "width": "18",
+ "height": "12",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "13",
+ "x2": "23",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.battery = battery;
\ No newline at end of file
diff --git a/dist/feather/batteryCharging.js b/dist/feather/batteryCharging.js
new file mode 100644
index 000000000..8a23492c7
--- /dev/null
+++ b/dist/feather/batteryCharging.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryCharging = void 0;
+var batteryCharging = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "13",
+ "x2": "23",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "11 6 7 12 13 12 9 18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.batteryCharging = batteryCharging;
\ No newline at end of file
diff --git a/dist/feather/bell.js b/dist/feather/bell.js
new file mode 100644
index 000000000..23c9e5fee
--- /dev/null
+++ b/dist/feather/bell.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bell = void 0;
+var bell = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 17H2a3 3 0 0 0 3-3V9a7 7 0 0 1 14 0v5a3 3 0 0 0 3 3zm-8.27 4a2 2 0 0 1-3.46 0"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bell = bell;
\ No newline at end of file
diff --git a/dist/feather/bellOff.js b/dist/feather/bellOff.js
new file mode 100644
index 000000000..e091d3a55
--- /dev/null
+++ b/dist/feather/bellOff.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bellOff = void 0;
+var bellOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.56 2.9A7 7 0 0 1 19 9v4m-2 4H2a3 3 0 0 0 3-3V9a7 7 0 0 1 .78-3.22M13.73 21a2 2 0 0 1-3.46 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bellOff = bellOff;
\ No newline at end of file
diff --git a/dist/feather/bluetooth.js b/dist/feather/bluetooth.js
new file mode 100644
index 000000000..1c53afebb
--- /dev/null
+++ b/dist/feather/bluetooth.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bluetooth = void 0;
+var bluetooth = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bluetooth = bluetooth;
\ No newline at end of file
diff --git a/dist/feather/bold.js b/dist/feather/bold.js
new file mode 100644
index 000000000..3e50eab9e
--- /dev/null
+++ b/dist/feather/bold.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bold = void 0;
+var bold = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bold = bold;
\ No newline at end of file
diff --git a/dist/feather/book.js b/dist/feather/book.js
new file mode 100644
index 000000000..f8651ab7b
--- /dev/null
+++ b/dist/feather/book.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.book = void 0;
+var book = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 19.5A2.5 2.5 0 0 1 6.5 17H20"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.book = book;
\ No newline at end of file
diff --git a/dist/feather/bookOpen.js b/dist/feather/bookOpen.js
new file mode 100644
index 000000000..67525a2f8
--- /dev/null
+++ b/dist/feather/bookOpen.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookOpen = void 0;
+var bookOpen = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bookOpen = bookOpen;
\ No newline at end of file
diff --git a/dist/feather/bookmark.js b/dist/feather/bookmark.js
new file mode 100644
index 000000000..840339c45
--- /dev/null
+++ b/dist/feather/bookmark.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookmark = void 0;
+var bookmark = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bookmark = bookmark;
\ No newline at end of file
diff --git a/dist/feather/box.js b/dist/feather/box.js
new file mode 100644
index 000000000..6aff0fbf2
--- /dev/null
+++ b/dist/feather/box.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.box = void 0;
+var box = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.89 1.45l8 4A2 2 0 0 1 22 7.24v9.53a2 2 0 0 1-1.11 1.79l-8 4a2 2 0 0 1-1.79 0l-8-4a2 2 0 0 1-1.1-1.8V7.24a2 2 0 0 1 1.11-1.79l8-4a2 2 0 0 1 1.78 0z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "2.32 6.16 12 11 21.68 6.16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22.76",
+ "x2": "12",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.box = box;
\ No newline at end of file
diff --git a/dist/feather/briefcase.js b/dist/feather/briefcase.js
new file mode 100644
index 000000000..040a67536
--- /dev/null
+++ b/dist/feather/briefcase.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.briefcase = void 0;
+var briefcase = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "7",
+ "width": "20",
+ "height": "14",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.briefcase = briefcase;
\ No newline at end of file
diff --git a/dist/feather/calendar.js b/dist/feather/calendar.js
new file mode 100644
index 000000000..06ec81dc4
--- /dev/null
+++ b/dist/feather/calendar.js
@@ -0,0 +1,56 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendar = void 0;
+var calendar = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "4",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "2",
+ "x2": "16",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "2",
+ "x2": "8",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "10",
+ "x2": "21",
+ "y2": "10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.calendar = calendar;
\ No newline at end of file
diff --git a/dist/feather/camera.js b/dist/feather/camera.js
new file mode 100644
index 000000000..8c8349bbe
--- /dev/null
+++ b/dist/feather/camera.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.camera = void 0;
+var camera = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "13",
+ "r": "4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.camera = camera;
\ No newline at end of file
diff --git a/dist/feather/cameraOff.js b/dist/feather/cameraOff.js
new file mode 100644
index 000000000..fdaa62893
--- /dev/null
+++ b/dist/feather/cameraOff.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cameraOff = void 0;
+var cameraOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cameraOff = cameraOff;
\ No newline at end of file
diff --git a/dist/feather/cast.js b/dist/feather/cast.js
new file mode 100644
index 000000000..09e8536cc
--- /dev/null
+++ b/dist/feather/cast.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cast = void 0;
+var cast = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "20",
+ "x2": "2",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cast = cast;
\ No newline at end of file
diff --git a/dist/feather/check.js b/dist/feather/check.js
new file mode 100644
index 000000000..02a8987bc
--- /dev/null
+++ b/dist/feather/check.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.check = void 0;
+var check = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "20 6 9 17 4 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.check = check;
\ No newline at end of file
diff --git a/dist/feather/checkCircle.js b/dist/feather/checkCircle.js
new file mode 100644
index 000000000..b587e49b5
--- /dev/null
+++ b/dist/feather/checkCircle.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkCircle = void 0;
+var checkCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 11.08V12a10 10 0 1 1-5.93-9.14"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "22 4 12 14.01 9 11.01"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.checkCircle = checkCircle;
\ No newline at end of file
diff --git a/dist/feather/checkSquare.js b/dist/feather/checkSquare.js
new file mode 100644
index 000000000..bfa2e956a
--- /dev/null
+++ b/dist/feather/checkSquare.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkSquare = void 0;
+var checkSquare = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "9 11 12 14 22 4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.checkSquare = checkSquare;
\ No newline at end of file
diff --git a/dist/feather/chevronDown.js b/dist/feather/chevronDown.js
new file mode 100644
index 000000000..a1bf9e6be
--- /dev/null
+++ b/dist/feather/chevronDown.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronDown = void 0;
+var chevronDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "6 9 12 15 18 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronDown = chevronDown;
\ No newline at end of file
diff --git a/dist/feather/chevronLeft.js b/dist/feather/chevronLeft.js
new file mode 100644
index 000000000..7ad08d12b
--- /dev/null
+++ b/dist/feather/chevronLeft.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronLeft = void 0;
+var chevronLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "15 18 9 12 15 6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronLeft = chevronLeft;
\ No newline at end of file
diff --git a/dist/feather/chevronRight.js b/dist/feather/chevronRight.js
new file mode 100644
index 000000000..aaebaf0a7
--- /dev/null
+++ b/dist/feather/chevronRight.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronRight = void 0;
+var chevronRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "9 18 15 12 9 6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronRight = chevronRight;
\ No newline at end of file
diff --git a/dist/feather/chevronUp.js b/dist/feather/chevronUp.js
new file mode 100644
index 000000000..94da27189
--- /dev/null
+++ b/dist/feather/chevronUp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronUp = void 0;
+var chevronUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "18 15 12 9 6 15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronUp = chevronUp;
\ No newline at end of file
diff --git a/dist/feather/chevronsDown.js b/dist/feather/chevronsDown.js
new file mode 100644
index 000000000..55285b697
--- /dev/null
+++ b/dist/feather/chevronsDown.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronsDown = void 0;
+var chevronsDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "7 13 12 18 17 13"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 6 12 11 17 6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronsDown = chevronsDown;
\ No newline at end of file
diff --git a/dist/feather/chevronsLeft.js b/dist/feather/chevronsLeft.js
new file mode 100644
index 000000000..58b8a840a
--- /dev/null
+++ b/dist/feather/chevronsLeft.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronsLeft = void 0;
+var chevronsLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "11 17 6 12 11 7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "18 17 13 12 18 7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronsLeft = chevronsLeft;
\ No newline at end of file
diff --git a/dist/feather/chevronsRight.js b/dist/feather/chevronsRight.js
new file mode 100644
index 000000000..df39358ce
--- /dev/null
+++ b/dist/feather/chevronsRight.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronsRight = void 0;
+var chevronsRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "13 17 18 12 13 7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "6 17 11 12 6 7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronsRight = chevronsRight;
\ No newline at end of file
diff --git a/dist/feather/chevronsUp.js b/dist/feather/chevronsUp.js
new file mode 100644
index 000000000..32ff041c3
--- /dev/null
+++ b/dist/feather/chevronsUp.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronsUp = void 0;
+var chevronsUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "17 11 12 6 7 11"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 18 12 13 7 18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronsUp = chevronsUp;
\ No newline at end of file
diff --git a/dist/feather/chrome.js b/dist/feather/chrome.js
new file mode 100644
index 000000000..1ee111129
--- /dev/null
+++ b/dist/feather/chrome.js
@@ -0,0 +1,61 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chrome = void 0;
+var chrome = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21.17",
+ "y1": "8",
+ "x2": "12",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3.95",
+ "y1": "6.06",
+ "x2": "8.54",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10.88",
+ "y1": "21.94",
+ "x2": "15.46",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chrome = chrome;
\ No newline at end of file
diff --git a/dist/feather/circle.js b/dist/feather/circle.js
new file mode 100644
index 000000000..9e1880d74
--- /dev/null
+++ b/dist/feather/circle.js
@@ -0,0 +1,26 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle = void 0;
+var circle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.circle = circle;
\ No newline at end of file
diff --git a/dist/feather/clipboard.js b/dist/feather/clipboard.js
new file mode 100644
index 000000000..b06ea2415
--- /dev/null
+++ b/dist/feather/clipboard.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clipboard = void 0;
+var clipboard = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "8",
+ "y": "2",
+ "width": "8",
+ "height": "4",
+ "rx": "1",
+ "ry": "1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.clipboard = clipboard;
\ No newline at end of file
diff --git a/dist/feather/clock.js b/dist/feather/clock.js
new file mode 100644
index 000000000..f67b45dde
--- /dev/null
+++ b/dist/feather/clock.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clock = void 0;
+var clock = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 6 12 12 16 14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.clock = clock;
\ No newline at end of file
diff --git a/dist/feather/cloud.js b/dist/feather/cloud.js
new file mode 100644
index 000000000..ae65ef43e
--- /dev/null
+++ b/dist/feather/cloud.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud = void 0;
+var cloud = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloud = cloud;
\ No newline at end of file
diff --git a/dist/feather/cloudDrizzle.js b/dist/feather/cloudDrizzle.js
new file mode 100644
index 000000000..6cf7e0eab
--- /dev/null
+++ b/dist/feather/cloudDrizzle.js
@@ -0,0 +1,78 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudDrizzle = void 0;
+var cloudDrizzle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "19",
+ "x2": "8",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "13",
+ "x2": "8",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "19",
+ "x2": "16",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "13",
+ "x2": "16",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "21",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "15",
+ "x2": "12",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloudDrizzle = cloudDrizzle;
\ No newline at end of file
diff --git a/dist/feather/cloudLightning.js b/dist/feather/cloudLightning.js
new file mode 100644
index 000000000..a8e8c73d1
--- /dev/null
+++ b/dist/feather/cloudLightning.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudLightning = void 0;
+var cloudLightning = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "13 11 9 17 15 17 11 23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloudLightning = cloudLightning;
\ No newline at end of file
diff --git a/dist/feather/cloudOff.js b/dist/feather/cloudOff.js
new file mode 100644
index 000000000..2ba6dd65a
--- /dev/null
+++ b/dist/feather/cloudOff.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudOff = void 0;
+var cloudOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloudOff = cloudOff;
\ No newline at end of file
diff --git a/dist/feather/cloudRain.js b/dist/feather/cloudRain.js
new file mode 100644
index 000000000..ae112c296
--- /dev/null
+++ b/dist/feather/cloudRain.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudRain = void 0;
+var cloudRain = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "13",
+ "x2": "16",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "13",
+ "x2": "8",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "15",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloudRain = cloudRain;
\ No newline at end of file
diff --git a/dist/feather/cloudSnow.js b/dist/feather/cloudSnow.js
new file mode 100644
index 000000000..626077e64
--- /dev/null
+++ b/dist/feather/cloudSnow.js
@@ -0,0 +1,78 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudSnow = void 0;
+var cloudSnow = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "16",
+ "x2": "8",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "20",
+ "x2": "8",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "18",
+ "x2": "12",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22",
+ "x2": "12",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "16",
+ "x2": "16",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "20",
+ "x2": "16",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloudSnow = cloudSnow;
\ No newline at end of file
diff --git a/dist/feather/code.js b/dist/feather/code.js
new file mode 100644
index 000000000..a22ecb02a
--- /dev/null
+++ b/dist/feather/code.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.code = void 0;
+var code = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "16 18 22 12 16 6"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8 6 2 12 8 18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.code = code;
\ No newline at end of file
diff --git a/dist/feather/codepen.js b/dist/feather/codepen.js
new file mode 100644
index 000000000..db221a4e4
--- /dev/null
+++ b/dist/feather/codepen.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.codepen = void 0;
+var codepen = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22",
+ "x2": "12",
+ "y2": "15.5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "22 8.5 12 15.5 2 8.5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "2 15.5 12 8.5 22 15.5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "8.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.codepen = codepen;
\ No newline at end of file
diff --git a/dist/feather/command.js b/dist/feather/command.js
new file mode 100644
index 000000000..b3d072beb
--- /dev/null
+++ b/dist/feather/command.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.command = void 0;
+var command = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.command = command;
\ No newline at end of file
diff --git a/dist/feather/compass.js b/dist/feather/compass.js
new file mode 100644
index 000000000..3f22ef4c3
--- /dev/null
+++ b/dist/feather/compass.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.compass = void 0;
+var compass = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.compass = compass;
\ No newline at end of file
diff --git a/dist/feather/copy.js b/dist/feather/copy.js
new file mode 100644
index 000000000..5aa7457f9
--- /dev/null
+++ b/dist/feather/copy.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.copy = void 0;
+var copy = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "9",
+ "y": "9",
+ "width": "13",
+ "height": "13",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.copy = copy;
\ No newline at end of file
diff --git a/dist/feather/cornerDownLeft.js b/dist/feather/cornerDownLeft.js
new file mode 100644
index 000000000..557a84760
--- /dev/null
+++ b/dist/feather/cornerDownLeft.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cornerDownLeft = void 0;
+var cornerDownLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "9 10 4 15 9 20"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 4v7a4 4 0 0 1-4 4H4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerDownLeft = cornerDownLeft;
\ No newline at end of file
diff --git a/dist/feather/cornerDownRight.js b/dist/feather/cornerDownRight.js
new file mode 100644
index 000000000..6ab0c9532
--- /dev/null
+++ b/dist/feather/cornerDownRight.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cornerDownRight = void 0;
+var cornerDownRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "15 10 20 15 15 20"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 4v7a4 4 0 0 0 4 4h12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerDownRight = cornerDownRight;
\ No newline at end of file
diff --git a/dist/feather/cornerLeftDown.js b/dist/feather/cornerLeftDown.js
new file mode 100644
index 000000000..e9e09808f
--- /dev/null
+++ b/dist/feather/cornerLeftDown.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cornerLeftDown = void 0;
+var cornerLeftDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "14 15 9 20 4 15"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 4h-7a4 4 0 0 0-4 4v12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerLeftDown = cornerLeftDown;
\ No newline at end of file
diff --git a/dist/feather/cornerLeftUp.js b/dist/feather/cornerLeftUp.js
new file mode 100644
index 000000000..0c5733b18
--- /dev/null
+++ b/dist/feather/cornerLeftUp.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cornerLeftUp = void 0;
+var cornerLeftUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "14 9 9 4 4 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 20h-7a4 4 0 0 1-4-4V4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerLeftUp = cornerLeftUp;
\ No newline at end of file
diff --git a/dist/feather/cornerRightDown.js b/dist/feather/cornerRightDown.js
new file mode 100644
index 000000000..19652b9c6
--- /dev/null
+++ b/dist/feather/cornerRightDown.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cornerRightDown = void 0;
+var cornerRightDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "10 15 15 20 20 15"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 4h7a4 4 0 0 1 4 4v12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerRightDown = cornerRightDown;
\ No newline at end of file
diff --git a/dist/feather/cornerRightUp.js b/dist/feather/cornerRightUp.js
new file mode 100644
index 000000000..fb6286e4e
--- /dev/null
+++ b/dist/feather/cornerRightUp.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cornerRightUp = void 0;
+var cornerRightUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "10 9 15 4 20 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 20h7a4 4 0 0 0 4-4V4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerRightUp = cornerRightUp;
\ No newline at end of file
diff --git a/dist/feather/cornerUpLeft.js b/dist/feather/cornerUpLeft.js
new file mode 100644
index 000000000..e0e7a8b65
--- /dev/null
+++ b/dist/feather/cornerUpLeft.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cornerUpLeft = void 0;
+var cornerUpLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "9 14 4 9 9 4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 20v-7a4 4 0 0 0-4-4H4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerUpLeft = cornerUpLeft;
\ No newline at end of file
diff --git a/dist/feather/cornerUpRight.js b/dist/feather/cornerUpRight.js
new file mode 100644
index 000000000..d99256e4a
--- /dev/null
+++ b/dist/feather/cornerUpRight.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cornerUpRight = void 0;
+var cornerUpRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "15 14 20 9 15 4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 20v-7a4 4 0 0 1 4-4h12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerUpRight = cornerUpRight;
\ No newline at end of file
diff --git a/dist/feather/cpu.js b/dist/feather/cpu.js
new file mode 100644
index 000000000..42f6248e8
--- /dev/null
+++ b/dist/feather/cpu.js
@@ -0,0 +1,110 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cpu = void 0;
+var cpu = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "4",
+ "y": "4",
+ "width": "16",
+ "height": "16",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "9",
+ "y": "9",
+ "width": "6",
+ "height": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "1",
+ "x2": "9",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "1",
+ "x2": "15",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "20",
+ "x2": "9",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "20",
+ "x2": "15",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "9",
+ "x2": "23",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "14",
+ "x2": "23",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "9",
+ "x2": "4",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "14",
+ "x2": "4",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cpu = cpu;
\ No newline at end of file
diff --git a/dist/feather/creditCard.js b/dist/feather/creditCard.js
new file mode 100644
index 000000000..8248e711e
--- /dev/null
+++ b/dist/feather/creditCard.js
@@ -0,0 +1,38 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.creditCard = void 0;
+var creditCard = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "4",
+ "width": "22",
+ "height": "16",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "10",
+ "x2": "23",
+ "y2": "10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.creditCard = creditCard;
\ No newline at end of file
diff --git a/dist/feather/crop.js b/dist/feather/crop.js
new file mode 100644
index 000000000..f7a9f3711
--- /dev/null
+++ b/dist/feather/crop.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crop = void 0;
+var crop = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.13 1L6 16a2 2 0 0 0 2 2h15"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M1 6.13L16 6a2 2 0 0 1 2 2v15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.crop = crop;
\ No newline at end of file
diff --git a/dist/feather/crosshair.js b/dist/feather/crosshair.js
new file mode 100644
index 000000000..301f3a65b
--- /dev/null
+++ b/dist/feather/crosshair.js
@@ -0,0 +1,62 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crosshair = void 0;
+var crosshair = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "22",
+ "y1": "12",
+ "x2": "18",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "12",
+ "x2": "2",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "6",
+ "x2": "12",
+ "y2": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22",
+ "x2": "12",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.crosshair = crosshair;
\ No newline at end of file
diff --git a/dist/feather/database.js b/dist/feather/database.js
new file mode 100644
index 000000000..cedf5791e
--- /dev/null
+++ b/dist/feather/database.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.database = void 0;
+var database = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "cx": "12",
+ "cy": "5",
+ "rx": "9",
+ "ry": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.database = database;
\ No newline at end of file
diff --git a/dist/feather/deleteIconic.js b/dist/feather/deleteIconic.js
new file mode 100644
index 000000000..85f21dfb9
--- /dev/null
+++ b/dist/feather/deleteIconic.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.deleteIconic = void 0;
+var deleteIconic = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "9",
+ "x2": "12",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "9",
+ "x2": "18",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.deleteIconic = deleteIconic;
\ No newline at end of file
diff --git a/dist/feather/disc.js b/dist/feather/disc.js
new file mode 100644
index 000000000..9fec774ad
--- /dev/null
+++ b/dist/feather/disc.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.disc = void 0;
+var disc = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.disc = disc;
\ No newline at end of file
diff --git a/dist/feather/dollarSign.js b/dist/feather/dollarSign.js
new file mode 100644
index 000000000..b39f37eed
--- /dev/null
+++ b/dist/feather/dollarSign.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dollarSign = void 0;
+var dollarSign = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "1",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.dollarSign = dollarSign;
\ No newline at end of file
diff --git a/dist/feather/download.js b/dist/feather/download.js
new file mode 100644
index 000000000..23b845819
--- /dev/null
+++ b/dist/feather/download.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.download = void 0;
+var download = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 10 12 15 17 10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "15",
+ "x2": "12",
+ "y2": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.download = download;
\ No newline at end of file
diff --git a/dist/feather/downloadCloud.js b/dist/feather/downloadCloud.js
new file mode 100644
index 000000000..ca17d1939
--- /dev/null
+++ b/dist/feather/downloadCloud.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.downloadCloud = void 0;
+var downloadCloud = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "8 17 12 21 16 17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "12",
+ "x2": "12",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.downloadCloud = downloadCloud;
\ No newline at end of file
diff --git a/dist/feather/droplet.js b/dist/feather/droplet.js
new file mode 100644
index 000000000..086a294e6
--- /dev/null
+++ b/dist/feather/droplet.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.droplet = void 0;
+var droplet = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.droplet = droplet;
\ No newline at end of file
diff --git a/dist/feather/edit.js b/dist/feather/edit.js
new file mode 100644
index 000000000..b670ab05a
--- /dev/null
+++ b/dist/feather/edit.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.edit = void 0;
+var edit = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20 14.66V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.34"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "18 2 22 6 12 16 8 16 8 12 18 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.edit = edit;
\ No newline at end of file
diff --git a/dist/feather/edit2.js b/dist/feather/edit2.js
new file mode 100644
index 000000000..b4416615d
--- /dev/null
+++ b/dist/feather/edit2.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.edit2 = void 0;
+var edit2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "16 3 21 8 8 21 3 21 3 16 16 3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.edit2 = edit2;
\ No newline at end of file
diff --git a/dist/feather/edit3.js b/dist/feather/edit3.js
new file mode 100644
index 000000000..7f21d3fe5
--- /dev/null
+++ b/dist/feather/edit3.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.edit3 = void 0;
+var edit3 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "14 2 18 6 7 17 3 17 3 13 14 2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "22",
+ "x2": "21",
+ "y2": "22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.edit3 = edit3;
\ No newline at end of file
diff --git a/dist/feather/externalLink.js b/dist/feather/externalLink.js
new file mode 100644
index 000000000..640ee1fc8
--- /dev/null
+++ b/dist/feather/externalLink.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.externalLink = void 0;
+var externalLink = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "15 3 21 3 21 9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "14",
+ "x2": "21",
+ "y2": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.externalLink = externalLink;
\ No newline at end of file
diff --git a/dist/feather/eye.js b/dist/feather/eye.js
new file mode 100644
index 000000000..426937bdb
--- /dev/null
+++ b/dist/feather/eye.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eye = void 0;
+var eye = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.eye = eye;
\ No newline at end of file
diff --git a/dist/feather/eyeOff.js b/dist/feather/eyeOff.js
new file mode 100644
index 000000000..2393df945
--- /dev/null
+++ b/dist/feather/eyeOff.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eyeOff = void 0;
+var eyeOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.eyeOff = eyeOff;
\ No newline at end of file
diff --git a/dist/feather/facebook.js b/dist/feather/facebook.js
new file mode 100644
index 000000000..c4c2ee44c
--- /dev/null
+++ b/dist/feather/facebook.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.facebook = void 0;
+var facebook = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.facebook = facebook;
\ No newline at end of file
diff --git a/dist/feather/fastForward.js b/dist/feather/fastForward.js
new file mode 100644
index 000000000..6c949f5b9
--- /dev/null
+++ b/dist/feather/fastForward.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fastForward = void 0;
+var fastForward = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "13 19 22 12 13 5 13 19"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "2 19 11 12 2 5 2 19"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.fastForward = fastForward;
\ No newline at end of file
diff --git a/dist/feather/feather.js b/dist/feather/feather.js
new file mode 100644
index 000000000..e8da5f25f
--- /dev/null
+++ b/dist/feather/feather.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.feather = void 0;
+var feather = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "8",
+ "x2": "2",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "15",
+ "x2": "9",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.feather = feather;
\ No newline at end of file
diff --git a/dist/feather/file.js b/dist/feather/file.js
new file mode 100644
index 000000000..6be78d315
--- /dev/null
+++ b/dist/feather/file.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.file = void 0;
+var file = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "13 2 13 9 20 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.file = file;
\ No newline at end of file
diff --git a/dist/feather/fileMinus.js b/dist/feather/fileMinus.js
new file mode 100644
index 000000000..0d63dd894
--- /dev/null
+++ b/dist/feather/fileMinus.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileMinus = void 0;
+var fileMinus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "14 2 14 8 20 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "15",
+ "x2": "15",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.fileMinus = fileMinus;
\ No newline at end of file
diff --git a/dist/feather/filePlus.js b/dist/feather/filePlus.js
new file mode 100644
index 000000000..416508d75
--- /dev/null
+++ b/dist/feather/filePlus.js
@@ -0,0 +1,48 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filePlus = void 0;
+var filePlus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "14 2 14 8 20 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "18",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "15",
+ "x2": "15",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.filePlus = filePlus;
\ No newline at end of file
diff --git a/dist/feather/fileText.js b/dist/feather/fileText.js
new file mode 100644
index 000000000..65ea2cb22
--- /dev/null
+++ b/dist/feather/fileText.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileText = void 0;
+var fileText = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "14 2 14 8 20 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "13",
+ "x2": "8",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "17",
+ "x2": "8",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "10 9 9 9 8 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.fileText = fileText;
\ No newline at end of file
diff --git a/dist/feather/film.js b/dist/feather/film.js
new file mode 100644
index 000000000..16d366a34
--- /dev/null
+++ b/dist/feather/film.js
@@ -0,0 +1,92 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.film = void 0;
+var film = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "2",
+ "width": "20",
+ "height": "20",
+ "rx": "2.18",
+ "ry": "2.18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "7",
+ "y1": "2",
+ "x2": "7",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "2",
+ "x2": "17",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "12",
+ "x2": "22",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "7",
+ "x2": "7",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "17",
+ "x2": "7",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "17",
+ "x2": "22",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "7",
+ "x2": "22",
+ "y2": "7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.film = film;
\ No newline at end of file
diff --git a/dist/feather/filter.js b/dist/feather/filter.js
new file mode 100644
index 000000000..b6e0cfbed
--- /dev/null
+++ b/dist/feather/filter.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filter = void 0;
+var filter = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.filter = filter;
\ No newline at end of file
diff --git a/dist/feather/flag.js b/dist/feather/flag.js
new file mode 100644
index 000000000..6c972d907
--- /dev/null
+++ b/dist/feather/flag.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flag = void 0;
+var flag = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "22",
+ "x2": "4",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.flag = flag;
\ No newline at end of file
diff --git a/dist/feather/folder.js b/dist/feather/folder.js
new file mode 100644
index 000000000..f5446546f
--- /dev/null
+++ b/dist/feather/folder.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder = void 0;
+var folder = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.folder = folder;
\ No newline at end of file
diff --git a/dist/feather/folderMinus.js b/dist/feather/folderMinus.js
new file mode 100644
index 000000000..e87a8a8e0
--- /dev/null
+++ b/dist/feather/folderMinus.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folderMinus = void 0;
+var folderMinus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "14",
+ "x2": "15",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.folderMinus = folderMinus;
\ No newline at end of file
diff --git a/dist/feather/folderPlus.js b/dist/feather/folderPlus.js
new file mode 100644
index 000000000..74bed35f2
--- /dev/null
+++ b/dist/feather/folderPlus.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folderPlus = void 0;
+var folderPlus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "11",
+ "x2": "12",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "14",
+ "x2": "15",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.folderPlus = folderPlus;
\ No newline at end of file
diff --git a/dist/feather/gift.js b/dist/feather/gift.js
new file mode 100644
index 000000000..a6c6ccd1d
--- /dev/null
+++ b/dist/feather/gift.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gift = void 0;
+var gift = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "20 12 20 22 4 22 4 12"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "7",
+ "width": "20",
+ "height": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22",
+ "x2": "12",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gift = gift;
\ No newline at end of file
diff --git a/dist/feather/gitBranch.js b/dist/feather/gitBranch.js
new file mode 100644
index 000000000..a03c751a6
--- /dev/null
+++ b/dist/feather/gitBranch.js
@@ -0,0 +1,49 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gitBranch = void 0;
+var gitBranch = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "3",
+ "x2": "6",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "6",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18 9a9 9 0 0 1-9 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gitBranch = gitBranch;
\ No newline at end of file
diff --git a/dist/feather/gitCommit.js b/dist/feather/gitCommit.js
new file mode 100644
index 000000000..b692ac361
--- /dev/null
+++ b/dist/feather/gitCommit.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gitCommit = void 0;
+var gitCommit = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1.05",
+ "y1": "12",
+ "x2": "7",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17.01",
+ "y1": "12",
+ "x2": "22.96",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gitCommit = gitCommit;
\ No newline at end of file
diff --git a/dist/feather/gitMerge.js b/dist/feather/gitMerge.js
new file mode 100644
index 000000000..f9e2523e7
--- /dev/null
+++ b/dist/feather/gitMerge.js
@@ -0,0 +1,40 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gitMerge = void 0;
+var gitMerge = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "6",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 21V9a9 9 0 0 0 9 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gitMerge = gitMerge;
\ No newline at end of file
diff --git a/dist/feather/gitPullRequest.js b/dist/feather/gitPullRequest.js
new file mode 100644
index 000000000..89c740730
--- /dev/null
+++ b/dist/feather/gitPullRequest.js
@@ -0,0 +1,49 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gitPullRequest = void 0;
+var gitPullRequest = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "6",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M13 6h3a2 2 0 0 1 2 2v7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "9",
+ "x2": "6",
+ "y2": "21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gitPullRequest = gitPullRequest;
\ No newline at end of file
diff --git a/dist/feather/github.js b/dist/feather/github.js
new file mode 100644
index 000000000..9cdf0c58b
--- /dev/null
+++ b/dist/feather/github.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.github = void 0;
+var github = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.github = github;
\ No newline at end of file
diff --git a/dist/feather/gitlab.js b/dist/feather/gitlab.js
new file mode 100644
index 000000000..773de7639
--- /dev/null
+++ b/dist/feather/gitlab.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gitlab = void 0;
+var gitlab = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gitlab = gitlab;
\ No newline at end of file
diff --git a/dist/feather/globe.js b/dist/feather/globe.js
new file mode 100644
index 000000000..35d96481c
--- /dev/null
+++ b/dist/feather/globe.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.globe = void 0;
+var globe = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "12",
+ "x2": "22",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.globe = globe;
\ No newline at end of file
diff --git a/dist/feather/grid.js b/dist/feather/grid.js
new file mode 100644
index 000000000..ff258a2c9
--- /dev/null
+++ b/dist/feather/grid.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.grid = void 0;
+var grid = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "7",
+ "height": "7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "14",
+ "y": "3",
+ "width": "7",
+ "height": "7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "14",
+ "y": "14",
+ "width": "7",
+ "height": "7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "14",
+ "width": "7",
+ "height": "7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.grid = grid;
\ No newline at end of file
diff --git a/dist/feather/hardDrive.js b/dist/feather/hardDrive.js
new file mode 100644
index 000000000..3f4bfcb03
--- /dev/null
+++ b/dist/feather/hardDrive.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hardDrive = void 0;
+var hardDrive = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "22",
+ "y1": "12",
+ "x2": "2",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "16",
+ "x2": "6",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "16",
+ "x2": "10",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.hardDrive = hardDrive;
\ No newline at end of file
diff --git a/dist/feather/hash.js b/dist/feather/hash.js
new file mode 100644
index 000000000..26397a575
--- /dev/null
+++ b/dist/feather/hash.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hash = void 0;
+var hash = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "9",
+ "x2": "20",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "15",
+ "x2": "20",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "3",
+ "x2": "8",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "3",
+ "x2": "14",
+ "y2": "21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.hash = hash;
\ No newline at end of file
diff --git a/dist/feather/headphones.js b/dist/feather/headphones.js
new file mode 100644
index 000000000..e279d469e
--- /dev/null
+++ b/dist/feather/headphones.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.headphones = void 0;
+var headphones = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 18v-6a9 9 0 0 1 18 0v6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.headphones = headphones;
\ No newline at end of file
diff --git a/dist/feather/heart.js b/dist/feather/heart.js
new file mode 100644
index 000000000..282c01ebc
--- /dev/null
+++ b/dist/feather/heart.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heart = void 0;
+var heart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.heart = heart;
\ No newline at end of file
diff --git a/dist/feather/helpCircle.js b/dist/feather/helpCircle.js
new file mode 100644
index 000000000..080358195
--- /dev/null
+++ b/dist/feather/helpCircle.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.helpCircle = void 0;
+var helpCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "17",
+ "x2": "12",
+ "y2": "17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.helpCircle = helpCircle;
\ No newline at end of file
diff --git a/dist/feather/home.js b/dist/feather/home.js
new file mode 100644
index 000000000..65295656d
--- /dev/null
+++ b/dist/feather/home.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.home = void 0;
+var home = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "9 22 9 12 15 12 15 22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.home = home;
\ No newline at end of file
diff --git a/dist/feather/image.js b/dist/feather/image.js
new file mode 100644
index 000000000..2eb4b19b0
--- /dev/null
+++ b/dist/feather/image.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.image = void 0;
+var image = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8.5",
+ "cy": "8.5",
+ "r": "1.5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "21 15 16 10 5 21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.image = image;
\ No newline at end of file
diff --git a/dist/feather/inbox.js b/dist/feather/inbox.js
new file mode 100644
index 000000000..94f33260f
--- /dev/null
+++ b/dist/feather/inbox.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inbox = void 0;
+var inbox = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "22 12 16 12 14 15 10 15 8 12 2 12"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.inbox = inbox;
\ No newline at end of file
diff --git a/dist/feather/index.js b/dist/feather/index.js
new file mode 100644
index 000000000..bb8687c03
--- /dev/null
+++ b/dist/feather/index.js
@@ -0,0 +1,8715 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filePlus = exports.fileMinus = exports.file = exports.feather = exports.fastForward = exports.facebook = exports.eyeOff = exports.eye = exports.externalLink = exports.edit3 = exports.edit2 = exports.edit = exports.droplet = exports.downloadCloud = exports.download = exports.dollarSign = exports.disc = exports.deleteIconic = exports.database = exports.crosshair = exports.crop = exports.creditCard = exports.cpu = exports.cornerUpRight = exports.cornerUpLeft = exports.cornerRightUp = exports.cornerRightDown = exports.cornerLeftUp = exports.cornerLeftDown = exports.cornerDownRight = exports.cornerDownLeft = exports.copy = exports.compass = exports.command = exports.codepen = exports.code = exports.cloudSnow = exports.cloudRain = exports.cloudOff = exports.cloudLightning = exports.cloudDrizzle = exports.cloud = exports.clock = exports.clipboard = exports.circle = exports.chrome = exports.chevronsUp = exports.chevronsRight = exports.chevronsLeft = exports.chevronsDown = exports.chevronUp = exports.chevronRight = exports.chevronLeft = exports.chevronDown = exports.checkSquare = exports.checkCircle = exports.check = exports.cast = exports.cameraOff = exports.camera = exports.calendar = exports.briefcase = exports.box = exports.bookmark = exports.bookOpen = exports.book = exports.bold = exports.bluetooth = exports.bellOff = exports.bell = exports.batteryCharging = exports.battery = exports.barChart2 = exports.barChart = exports.award = exports.atSign = exports.arrowUpRight = exports.arrowUpLeft = exports.arrowUpCircle = exports.arrowUp = exports.arrowRightCircle = exports.arrowRight = exports.arrowLeftCircle = exports.arrowLeft = exports.arrowDownRight = exports.arrowDownLeft = exports.arrowDownCircle = exports.arrowDown = exports.archive = exports.aperture = exports.anchor = exports.alignRight = exports.alignLeft = exports.alignJustify = exports.alignCenter = exports.alertTriangle = exports.alertOctagon = exports.alertCircle = exports.airplay = exports.activity = void 0;
+exports.shield = exports.share2 = exports.share = exports.settings = exports.server = exports.send = exports.search = exports.scissors = exports.save = exports.rss = exports.rotateCw = exports.rotateCcw = exports.rewind = exports.repeat = exports.refreshCw = exports.refreshCcw = exports.radio = exports.printer = exports.power = exports.pocket = exports.plusSquare = exports.plusCircle = exports.plus = exports.playCircle = exports.play = exports.pieChart = exports.phoneOutgoing = exports.phoneOff = exports.phoneMissed = exports.phoneIncoming = exports.phoneForwarded = exports.phoneCall = exports.phone = exports.percent = exports.pauseCircle = exports.pause = exports.paperclip = exports.packageIcon = exports.octagon = exports.navigation2 = exports.navigation = exports.music = exports.move = exports.moreVertical = exports.moreHorizontal = exports.moon = exports.monitor = exports.minusSquare = exports.minusCircle = exports.minus = exports.minimize2 = exports.minimize = exports.micOff = exports.mic = exports.messageSquare = exports.messageCircle = exports.menu = exports.maximize2 = exports.maximize = exports.mapPin = exports.map = exports.mail = exports.logOut = exports.logIn = exports.lock = exports.loader = exports.list = exports.linkedin = exports.link2 = exports.link = exports.lifeBuoy = exports.layout = exports.layers = exports.italic = exports.instagram = exports.info = exports.inbox = exports.image = exports.home = exports.helpCircle = exports.heart = exports.headphones = exports.hash = exports.hardDrive = exports.grid = exports.globe = exports.gitlab = exports.github = exports.gitPullRequest = exports.gitMerge = exports.gitCommit = exports.gitBranch = exports.gift = exports.folderPlus = exports.folderMinus = exports.folder = exports.flag = exports.filter = exports.film = exports.fileText = void 0;
+exports.zoomOut = exports.zoomIn = exports.zapOff = exports.zap = exports.youtube = exports.xSquare = exports.xCircle = exports.x = exports.wind = exports.wifiOff = exports.wifi = exports.watch = exports.volumeX = exports.volume2 = exports.volume1 = exports.volume = exports.voicemail = exports.videoOff = exports.video = exports.users = exports.userX = exports.userPlus = exports.userMinus = exports.userCheck = exports.user = exports.uploadCloud = exports.upload = exports.unlock = exports.underline = exports.umbrella = exports.type = exports.twitter = exports.tv = exports.truck = exports.triangle = exports.trendingUp = exports.trendingDown = exports.trash2 = exports.trash = exports.toggleRight = exports.toggleLeft = exports.thumbsUp = exports.thumbsDown = exports.thermometer = exports.terminal = exports.target = exports.tag = exports.tablet = exports.sunset = exports.sunrise = exports.sun = exports.stopCircle = exports.star = exports.square = exports.speaker = exports.smartphone = exports.sliders = exports.slash = exports.slack = exports.skipForward = exports.skipBack = exports.sidebar = exports.shuffle = exports.shoppingCart = exports.shoppingBag = exports.shieldOff = void 0;
+var activity = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "22 12 18 12 15 21 9 3 6 12 2 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.activity = activity;
+var airplay = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "12 15 17 21 7 21 12 15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.airplay = airplay;
+var alertCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "16",
+ "x2": "12",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alertCircle = alertCircle;
+var alertOctagon = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "16",
+ "x2": "12",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alertOctagon = alertOctagon;
+var alertTriangle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "9",
+ "x2": "12",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "17",
+ "x2": "12",
+ "y2": "17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alertTriangle = alertTriangle;
+var alignCenter = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "10",
+ "x2": "6",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "6",
+ "x2": "3",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "14",
+ "x2": "3",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "18",
+ "x2": "6",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alignCenter = alignCenter;
+var alignJustify = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "10",
+ "x2": "3",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "6",
+ "x2": "3",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "14",
+ "x2": "3",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "18",
+ "x2": "3",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alignJustify = alignJustify;
+var alignLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "10",
+ "x2": "3",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "6",
+ "x2": "3",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "14",
+ "x2": "3",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "18",
+ "x2": "3",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alignLeft = alignLeft;
+var alignRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "10",
+ "x2": "7",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "6",
+ "x2": "3",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "14",
+ "x2": "3",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "18",
+ "x2": "7",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.alignRight = alignRight;
+var anchor = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "5",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22",
+ "x2": "12",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 12H2a10 10 0 0 0 20 0h-3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.anchor = anchor;
+var aperture = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.31",
+ "y1": "8",
+ "x2": "20.05",
+ "y2": "17.94"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9.69",
+ "y1": "8",
+ "x2": "21.17",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "7.38",
+ "y1": "12",
+ "x2": "13.12",
+ "y2": "2.06"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9.69",
+ "y1": "16",
+ "x2": "3.95",
+ "y2": "6.06"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.31",
+ "y1": "16",
+ "x2": "2.83",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16.62",
+ "y1": "12",
+ "x2": "10.88",
+ "y2": "21.94"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.aperture = aperture;
+var archive = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "21 8 21 21 3 21 3 8"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "3",
+ "width": "22",
+ "height": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "12",
+ "x2": "14",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.archive = archive;
+var arrowDownCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8 12 12 16 16 12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowDownCircle = arrowDownCircle;
+var arrowDownLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "7",
+ "x2": "7",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 17 7 17 7 7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowDownLeft = arrowDownLeft;
+var arrowDownRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "7",
+ "y1": "7",
+ "x2": "17",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 7 17 17 7 17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowDownRight = arrowDownRight;
+var arrowDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "5",
+ "x2": "12",
+ "y2": "19"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "19 12 12 19 5 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowDown = arrowDown;
+var arrowLeftCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 8 8 12 12 16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "12",
+ "x2": "8",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowLeftCircle = arrowLeftCircle;
+var arrowLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "19",
+ "y1": "12",
+ "x2": "5",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 19 5 12 12 5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowLeft = arrowLeft;
+var arrowRightCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 16 16 12 12 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowRightCircle = arrowRightCircle;
+var arrowRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "5",
+ "y1": "12",
+ "x2": "19",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 5 19 12 12 19"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowRight = arrowRight;
+var arrowUpCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "16 12 12 8 8 12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "16",
+ "x2": "12",
+ "y2": "8"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowUpCircle = arrowUpCircle;
+var arrowUpLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "17",
+ "x2": "7",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 17 7 7 17 7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowUpLeft = arrowUpLeft;
+var arrowUpRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "7",
+ "y1": "17",
+ "x2": "17",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 7 17 7 17 17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowUpRight = arrowUpRight;
+var arrowUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "19",
+ "x2": "12",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "5 12 12 5 19 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.arrowUp = arrowUp;
+var atSign = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.atSign = atSign;
+var award = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "8",
+ "r": "7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8.21 13.89 7 23 12 20 17 23 15.79 13.88"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.award = award;
+var barChart2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "20",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "20",
+ "x2": "12",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "20",
+ "x2": "6",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.barChart2 = barChart2;
+var barChart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "20",
+ "x2": "12",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "20",
+ "x2": "18",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "20",
+ "x2": "6",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.barChart = barChart;
+var batteryCharging = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "13",
+ "x2": "23",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "11 6 7 12 13 12 9 18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.batteryCharging = batteryCharging;
+var battery = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "6",
+ "width": "18",
+ "height": "12",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "13",
+ "x2": "23",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.battery = battery;
+var bellOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8.56 2.9A7 7 0 0 1 19 9v4m-2 4H2a3 3 0 0 0 3-3V9a7 7 0 0 1 .78-3.22M13.73 21a2 2 0 0 1-3.46 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bellOff = bellOff;
+var bell = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 17H2a3 3 0 0 0 3-3V9a7 7 0 0 1 14 0v5a3 3 0 0 0 3 3zm-8.27 4a2 2 0 0 1-3.46 0"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bell = bell;
+var bluetooth = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bluetooth = bluetooth;
+var bold = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bold = bold;
+var bookOpen = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bookOpen = bookOpen;
+var book = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 19.5A2.5 2.5 0 0 1 6.5 17H20"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.book = book;
+var bookmark = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.bookmark = bookmark;
+var box = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.89 1.45l8 4A2 2 0 0 1 22 7.24v9.53a2 2 0 0 1-1.11 1.79l-8 4a2 2 0 0 1-1.79 0l-8-4a2 2 0 0 1-1.1-1.8V7.24a2 2 0 0 1 1.11-1.79l8-4a2 2 0 0 1 1.78 0z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "2.32 6.16 12 11 21.68 6.16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22.76",
+ "x2": "12",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.box = box;
+var briefcase = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "7",
+ "width": "20",
+ "height": "14",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.briefcase = briefcase;
+var calendar = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "4",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "2",
+ "x2": "16",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "2",
+ "x2": "8",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "10",
+ "x2": "21",
+ "y2": "10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.calendar = calendar;
+var cameraOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cameraOff = cameraOff;
+var camera = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "13",
+ "r": "4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.camera = camera;
+var cast = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "20",
+ "x2": "2",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cast = cast;
+var checkCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 11.08V12a10 10 0 1 1-5.93-9.14"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "22 4 12 14.01 9 11.01"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.checkCircle = checkCircle;
+var checkSquare = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "9 11 12 14 22 4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.checkSquare = checkSquare;
+var check = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "20 6 9 17 4 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.check = check;
+var chevronDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "6 9 12 15 18 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronDown = chevronDown;
+var chevronLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "15 18 9 12 15 6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronLeft = chevronLeft;
+var chevronRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "9 18 15 12 9 6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronRight = chevronRight;
+var chevronUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "18 15 12 9 6 15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronUp = chevronUp;
+var chevronsDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "7 13 12 18 17 13"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 6 12 11 17 6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronsDown = chevronsDown;
+var chevronsLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "11 17 6 12 11 7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "18 17 13 12 18 7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronsLeft = chevronsLeft;
+var chevronsRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "13 17 18 12 13 7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "6 17 11 12 6 7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronsRight = chevronsRight;
+var chevronsUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "17 11 12 6 7 11"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 18 12 13 7 18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chevronsUp = chevronsUp;
+var chrome = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21.17",
+ "y1": "8",
+ "x2": "12",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3.95",
+ "y1": "6.06",
+ "x2": "8.54",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10.88",
+ "y1": "21.94",
+ "x2": "15.46",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.chrome = chrome;
+var circle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.circle = circle;
+var clipboard = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "8",
+ "y": "2",
+ "width": "8",
+ "height": "4",
+ "rx": "1",
+ "ry": "1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.clipboard = clipboard;
+var clock = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 6 12 12 16 14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.clock = clock;
+var cloudDrizzle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "19",
+ "x2": "8",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "13",
+ "x2": "8",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "19",
+ "x2": "16",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "13",
+ "x2": "16",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "21",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "15",
+ "x2": "12",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloudDrizzle = cloudDrizzle;
+var cloudLightning = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "13 11 9 17 15 17 11 23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloudLightning = cloudLightning;
+var cloudOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloudOff = cloudOff;
+var cloudRain = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "13",
+ "x2": "16",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "13",
+ "x2": "8",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "15",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloudRain = cloudRain;
+var cloudSnow = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "16",
+ "x2": "8",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "20",
+ "x2": "8",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "18",
+ "x2": "12",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22",
+ "x2": "12",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "16",
+ "x2": "16",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "20",
+ "x2": "16",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloudSnow = cloudSnow;
+var cloud = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cloud = cloud;
+var code = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "16 18 22 12 16 6"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8 6 2 12 8 18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.code = code;
+var codepen = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22",
+ "x2": "12",
+ "y2": "15.5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "22 8.5 12 15.5 2 8.5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "2 15.5 12 8.5 22 15.5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "8.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.codepen = codepen;
+var command = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.command = command;
+var compass = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.compass = compass;
+var copy = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "9",
+ "y": "9",
+ "width": "13",
+ "height": "13",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.copy = copy;
+var cornerDownLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "9 10 4 15 9 20"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 4v7a4 4 0 0 1-4 4H4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerDownLeft = cornerDownLeft;
+var cornerDownRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "15 10 20 15 15 20"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 4v7a4 4 0 0 0 4 4h12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerDownRight = cornerDownRight;
+var cornerLeftDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "14 15 9 20 4 15"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 4h-7a4 4 0 0 0-4 4v12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerLeftDown = cornerLeftDown;
+var cornerLeftUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "14 9 9 4 4 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 20h-7a4 4 0 0 1-4-4V4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerLeftUp = cornerLeftUp;
+var cornerRightDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "10 15 15 20 20 15"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 4h7a4 4 0 0 1 4 4v12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerRightDown = cornerRightDown;
+var cornerRightUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "10 9 15 4 20 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 20h7a4 4 0 0 0 4-4V4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerRightUp = cornerRightUp;
+var cornerUpLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "9 14 4 9 9 4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 20v-7a4 4 0 0 0-4-4H4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerUpLeft = cornerUpLeft;
+var cornerUpRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "15 14 20 9 15 4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 20v-7a4 4 0 0 1 4-4h12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cornerUpRight = cornerUpRight;
+var cpu = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "4",
+ "y": "4",
+ "width": "16",
+ "height": "16",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "9",
+ "y": "9",
+ "width": "6",
+ "height": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "1",
+ "x2": "9",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "1",
+ "x2": "15",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "20",
+ "x2": "9",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "20",
+ "x2": "15",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "9",
+ "x2": "23",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "14",
+ "x2": "23",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "9",
+ "x2": "4",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "14",
+ "x2": "4",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.cpu = cpu;
+var creditCard = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "4",
+ "width": "22",
+ "height": "16",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "10",
+ "x2": "23",
+ "y2": "10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.creditCard = creditCard;
+var crop = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.13 1L6 16a2 2 0 0 0 2 2h15"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M1 6.13L16 6a2 2 0 0 1 2 2v15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.crop = crop;
+var crosshair = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "22",
+ "y1": "12",
+ "x2": "18",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "12",
+ "x2": "2",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "6",
+ "x2": "12",
+ "y2": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22",
+ "x2": "12",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.crosshair = crosshair;
+var database = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "cx": "12",
+ "cy": "5",
+ "rx": "9",
+ "ry": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.database = database;
+var deleteIconic = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "9",
+ "x2": "12",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "9",
+ "x2": "18",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.deleteIconic = deleteIconic;
+var disc = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.disc = disc;
+var dollarSign = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "1",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.dollarSign = dollarSign;
+var downloadCloud = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "8 17 12 21 16 17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "12",
+ "x2": "12",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.downloadCloud = downloadCloud;
+var download = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 10 12 15 17 10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "15",
+ "x2": "12",
+ "y2": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.download = download;
+var droplet = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.droplet = droplet;
+var edit2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "16 3 21 8 8 21 3 21 3 16 16 3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.edit2 = edit2;
+var edit3 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "14 2 18 6 7 17 3 17 3 13 14 2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "22",
+ "x2": "21",
+ "y2": "22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.edit3 = edit3;
+var edit = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20 14.66V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.34"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "18 2 22 6 12 16 8 16 8 12 18 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.edit = edit;
+var externalLink = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "15 3 21 3 21 9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "14",
+ "x2": "21",
+ "y2": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.externalLink = externalLink;
+var eyeOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.eyeOff = eyeOff;
+var eye = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.eye = eye;
+var facebook = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.facebook = facebook;
+var fastForward = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "13 19 22 12 13 5 13 19"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "2 19 11 12 2 5 2 19"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.fastForward = fastForward;
+var feather = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "8",
+ "x2": "2",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "15",
+ "x2": "9",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.feather = feather;
+var fileMinus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "14 2 14 8 20 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "15",
+ "x2": "15",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.fileMinus = fileMinus;
+var filePlus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "14 2 14 8 20 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "18",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "15",
+ "x2": "15",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.filePlus = filePlus;
+var fileText = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "14 2 14 8 20 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "13",
+ "x2": "8",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "17",
+ "x2": "8",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "10 9 9 9 8 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.fileText = fileText;
+var file = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "13 2 13 9 20 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.file = file;
+var film = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "2",
+ "width": "20",
+ "height": "20",
+ "rx": "2.18",
+ "ry": "2.18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "7",
+ "y1": "2",
+ "x2": "7",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "2",
+ "x2": "17",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "12",
+ "x2": "22",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "7",
+ "x2": "7",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "17",
+ "x2": "7",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "17",
+ "x2": "22",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "7",
+ "x2": "22",
+ "y2": "7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.film = film;
+var filter = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.filter = filter;
+var flag = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "22",
+ "x2": "4",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.flag = flag;
+var folderMinus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "14",
+ "x2": "15",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.folderMinus = folderMinus;
+var folderPlus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "11",
+ "x2": "12",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "14",
+ "x2": "15",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.folderPlus = folderPlus;
+var folder = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.folder = folder;
+var gift = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "20 12 20 22 4 22 4 12"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "7",
+ "width": "20",
+ "height": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22",
+ "x2": "12",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gift = gift;
+var gitBranch = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "3",
+ "x2": "6",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "6",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18 9a9 9 0 0 1-9 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gitBranch = gitBranch;
+var gitCommit = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1.05",
+ "y1": "12",
+ "x2": "7",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17.01",
+ "y1": "12",
+ "x2": "22.96",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gitCommit = gitCommit;
+var gitMerge = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "6",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 21V9a9 9 0 0 0 9 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gitMerge = gitMerge;
+var gitPullRequest = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "6",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M13 6h3a2 2 0 0 1 2 2v7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "9",
+ "x2": "6",
+ "y2": "21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gitPullRequest = gitPullRequest;
+var github = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.github = github;
+var gitlab = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.gitlab = gitlab;
+var globe = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "12",
+ "x2": "22",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.globe = globe;
+var grid = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "7",
+ "height": "7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "14",
+ "y": "3",
+ "width": "7",
+ "height": "7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "14",
+ "y": "14",
+ "width": "7",
+ "height": "7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "14",
+ "width": "7",
+ "height": "7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.grid = grid;
+var hardDrive = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "22",
+ "y1": "12",
+ "x2": "2",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "16",
+ "x2": "6",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "16",
+ "x2": "10",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.hardDrive = hardDrive;
+var hash = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "9",
+ "x2": "20",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "15",
+ "x2": "20",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "3",
+ "x2": "8",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "3",
+ "x2": "14",
+ "y2": "21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.hash = hash;
+var headphones = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 18v-6a9 9 0 0 1 18 0v6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.headphones = headphones;
+var heart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.heart = heart;
+var helpCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "17",
+ "x2": "12",
+ "y2": "17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.helpCircle = helpCircle;
+var home = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "9 22 9 12 15 12 15 22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.home = home;
+var image = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8.5",
+ "cy": "8.5",
+ "r": "1.5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "21 15 16 10 5 21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.image = image;
+var inbox = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "22 12 16 12 14 15 10 15 8 12 2 12"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.inbox = inbox;
+var info = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "16",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "8"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.info = info;
+var instagram = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "2",
+ "width": "20",
+ "height": "20",
+ "rx": "5",
+ "ry": "5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17.5",
+ "y1": "6.5",
+ "x2": "17.5",
+ "y2": "6.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.instagram = instagram;
+var italic = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "19",
+ "y1": "4",
+ "x2": "10",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14",
+ "y1": "20",
+ "x2": "5",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "4",
+ "x2": "9",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.italic = italic;
+var layers = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "12 2 2 7 12 12 22 7 12 2"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "2 17 12 22 22 17"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "2 12 12 17 22 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.layers = layers;
+var layout = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "9",
+ "x2": "21",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "21",
+ "x2": "9",
+ "y2": "9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.layout = layout;
+var lifeBuoy = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.93",
+ "y1": "4.93",
+ "x2": "9.17",
+ "y2": "9.17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.83",
+ "y1": "14.83",
+ "x2": "19.07",
+ "y2": "19.07"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.83",
+ "y1": "9.17",
+ "x2": "19.07",
+ "y2": "4.93"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.83",
+ "y1": "9.17",
+ "x2": "18.36",
+ "y2": "5.64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.93",
+ "y1": "19.07",
+ "x2": "9.17",
+ "y2": "14.83"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.lifeBuoy = lifeBuoy;
+var link2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.link2 = link2;
+var link = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.link = link;
+var linkedin = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "9",
+ "width": "4",
+ "height": "12"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "4",
+ "cy": "4",
+ "r": "2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.linkedin = linkedin;
+var list = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "6",
+ "x2": "21",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "21",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "18",
+ "x2": "21",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "6",
+ "x2": "3",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "12",
+ "x2": "3",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "18",
+ "x2": "3",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.list = list;
+var loader = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "18",
+ "x2": "12",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.93",
+ "y1": "4.93",
+ "x2": "7.76",
+ "y2": "7.76"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16.24",
+ "y1": "16.24",
+ "x2": "19.07",
+ "y2": "19.07"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "12",
+ "x2": "6",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "12",
+ "x2": "22",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.93",
+ "y1": "19.07",
+ "x2": "7.76",
+ "y2": "16.24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16.24",
+ "y1": "7.76",
+ "x2": "19.07",
+ "y2": "4.93"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.loader = loader;
+var lock = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "11",
+ "width": "18",
+ "height": "11",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7 11V7a5 5 0 0 1 10 0v4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.lock = lock;
+var logIn = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "10 17 15 12 10 7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "12",
+ "x2": "3",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.logIn = logIn;
+var logOut = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "16 17 21 12 16 7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "12",
+ "x2": "9",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.logOut = logOut;
+var mail = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "22,6 12,13 2,6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.mail = mail;
+var mapPin = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "10",
+ "r": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.mapPin = mapPin;
+var map = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "2",
+ "x2": "8",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "6",
+ "x2": "16",
+ "y2": "22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.map = map;
+var maximize2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "15 3 21 3 21 9"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "9 21 3 21 3 15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "3",
+ "x2": "14",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "21",
+ "x2": "10",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.maximize2 = maximize2;
+var maximize = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.maximize = maximize;
+var menu = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "12",
+ "x2": "21",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "6",
+ "x2": "21",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "18",
+ "x2": "21",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.menu = menu;
+var messageCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.messageCircle = messageCircle;
+var messageSquare = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.messageSquare = messageSquare;
+var micOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "19",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "23",
+ "x2": "16",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.micOff = micOff;
+var mic = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 10v2a7 7 0 0 1-14 0v-2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "19",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "23",
+ "x2": "16",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.mic = mic;
+var minimize2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "4 14 10 14 10 20"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "20 10 14 10 14 4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14",
+ "y1": "10",
+ "x2": "21",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "21",
+ "x2": "10",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.minimize2 = minimize2;
+var minimize = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.minimize = minimize;
+var minusCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.minusCircle = minusCircle;
+var minusSquare = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.minusSquare = minusSquare;
+var minus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "5",
+ "y1": "12",
+ "x2": "19",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.minus = minus;
+var monitor = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "3",
+ "width": "20",
+ "height": "14",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "21",
+ "x2": "16",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "17",
+ "x2": "12",
+ "y2": "21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.monitor = monitor;
+var moon = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.moon = moon;
+var moreHorizontal = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "19",
+ "cy": "12",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "5",
+ "cy": "12",
+ "r": "1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.moreHorizontal = moreHorizontal;
+var moreVertical = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "5",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "19",
+ "r": "1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.moreVertical = moreVertical;
+var move = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "5 9 2 12 5 15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "9 5 12 2 15 5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "15 19 12 22 9 19"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "19 9 22 12 19 15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "12",
+ "x2": "22",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.move = move;
+var music = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9 17H5a2 2 0 0 0-2 2 2 2 0 0 0 2 2h2a2 2 0 0 0 2-2zm12-2h-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2h2a2 2 0 0 0 2-2z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "9 17 9 5 21 3 21 15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.music = music;
+var navigation2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "12 2 19 21 12 17 5 21 12 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.navigation2 = navigation2;
+var navigation = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "3 11 22 2 13 21 11 13 3 11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.navigation = navigation;
+var octagon = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.octagon = octagon;
+var packageIcon = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.89 1.45l8 4A2 2 0 0 1 22 7.24v9.53a2 2 0 0 1-1.11 1.79l-8 4a2 2 0 0 1-1.79 0l-8-4a2 2 0 0 1-1.1-1.8V7.24a2 2 0 0 1 1.11-1.79l8-4a2 2 0 0 1 1.78 0z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "2.32 6.16 12 11 21.68 6.16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22.76",
+ "x2": "12",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "7",
+ "y1": "3.5",
+ "x2": "17",
+ "y2": "8.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.packageIcon = packageIcon;
+var paperclip = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.paperclip = paperclip;
+var pauseCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "15",
+ "x2": "10",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14",
+ "y1": "15",
+ "x2": "14",
+ "y2": "9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.pauseCircle = pauseCircle;
+var pause = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "6",
+ "y": "4",
+ "width": "4",
+ "height": "16"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "14",
+ "y": "4",
+ "width": "4",
+ "height": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.pause = pause;
+var percent = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "19",
+ "y1": "5",
+ "x2": "5",
+ "y2": "19"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6.5",
+ "cy": "6.5",
+ "r": "2.5"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "17.5",
+ "cy": "17.5",
+ "r": "2.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.percent = percent;
+var phoneCall = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneCall = phoneCall;
+var phoneForwarded = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "19 1 23 5 19 9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "5",
+ "x2": "23",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneForwarded = phoneForwarded;
+var phoneIncoming = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "16 2 16 8 22 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "1",
+ "x2": "16",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneIncoming = phoneIncoming;
+var phoneMissed = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "1",
+ "x2": "17",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "1",
+ "x2": "23",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneMissed = phoneMissed;
+var phoneOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "1",
+ "x2": "1",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneOff = phoneOff;
+var phoneOutgoing = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "23 7 23 1 17 1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "8",
+ "x2": "23",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneOutgoing = phoneOutgoing;
+var phone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phone = phone;
+var pieChart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21.21 15.89A10 10 0 1 1 8 2.83"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 12A10 10 0 0 0 12 2v10z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.pieChart = pieChart;
+var playCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "10 8 16 12 10 16 10 8"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.playCircle = playCircle;
+var play = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "5 3 19 12 5 21 5 3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.play = play;
+var plusCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.plusCircle = plusCircle;
+var plusSquare = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.plusSquare = plusSquare;
+var plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "5",
+ "x2": "12",
+ "y2": "19"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "5",
+ "y1": "12",
+ "x2": "19",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.plus = plus;
+var pocket = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8 10 12 14 16 10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.pocket = pocket;
+var power = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.36 6.64a9 9 0 1 1-12.73 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.power = power;
+var printer = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "6 9 6 2 18 2 18 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "6",
+ "y": "14",
+ "width": "12",
+ "height": "8"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.printer = printer;
+var radio = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.radio = radio;
+var refreshCcw = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "1 4 1 10 7 10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "23 20 23 14 17 14"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.refreshCcw = refreshCcw;
+var refreshCw = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "23 4 23 10 17 10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "1 20 1 14 7 14"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.refreshCw = refreshCw;
+var repeat = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "17 1 21 5 17 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3 11V9a4 4 0 0 1 4-4h14"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 23 3 19 7 15"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 13v2a4 4 0 0 1-4 4H3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.repeat = repeat;
+var rewind = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11 19 2 12 11 5 11 19"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "22 19 13 12 22 5 22 19"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.rewind = rewind;
+var rotateCcw = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "1 4 1 10 7 10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3.51 15a9 9 0 1 0 2.13-9.36L1 10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.rotateCcw = rotateCcw;
+var rotateCw = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "23 4 23 10 17 10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.49 15a9 9 0 1 1-2.12-9.36L23 10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.rotateCw = rotateCw;
+var rss = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 11a9 9 0 0 1 9 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 4a16 16 0 0 1 16 16"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "5",
+ "cy": "19",
+ "r": "1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.rss = rss;
+var save = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 21 17 13 7 13 7 21"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 3 7 8 15 8"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.save = save;
+var scissors = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "6",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "4",
+ "x2": "8.12",
+ "y2": "15.88"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.47",
+ "y1": "14.48",
+ "x2": "20",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8.12",
+ "y1": "8.12",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.scissors = scissors;
+var search = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "11",
+ "cy": "11",
+ "r": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "21",
+ "x2": "16.65",
+ "y2": "16.65"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.search = search;
+var send = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "22",
+ "y1": "2",
+ "x2": "11",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "22 2 15 22 11 13 2 9 22 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.send = send;
+var server = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "2",
+ "width": "20",
+ "height": "8",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "14",
+ "width": "20",
+ "height": "8",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "6",
+ "x2": "6",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "18",
+ "x2": "6",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.server = server;
+var settings = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.settings = settings;
+var share2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "5",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "19",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8.59",
+ "y1": "13.51",
+ "x2": "15.42",
+ "y2": "17.49"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15.41",
+ "y1": "6.51",
+ "x2": "8.59",
+ "y2": "10.49"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.share2 = share2;
+var share = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "16 6 12 2 8 6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.share = share;
+var shieldOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.shieldOff = shieldOff;
+var shield = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.shield = shield;
+var shoppingBag = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "6",
+ "x2": "21",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16 10a4 4 0 0 1-8 0"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.shoppingBag = shoppingBag;
+var shoppingCart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "9",
+ "cy": "21",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "20",
+ "cy": "21",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.shoppingCart = shoppingCart;
+var shuffle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "16 3 21 3 21 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "20",
+ "x2": "21",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "21 16 21 21 16 21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "15",
+ "x2": "21",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "4",
+ "x2": "9",
+ "y2": "9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.shuffle = shuffle;
+var sidebar = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "3",
+ "x2": "9",
+ "y2": "21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.sidebar = sidebar;
+var skipBack = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "19 20 9 12 19 4 19 20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "5",
+ "y1": "19",
+ "x2": "5",
+ "y2": "5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.skipBack = skipBack;
+var skipForward = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "5 4 15 12 5 20 5 4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "19",
+ "y1": "5",
+ "x2": "19",
+ "y2": "19"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.skipForward = skipForward;
+var slack = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22.08 9C19.81 1.41 16.54-.35 9 1.92S-.35 7.46 1.92 15 7.46 24.35 15 22.08 24.35 16.54 22.08 9z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12.57",
+ "y1": "5.99",
+ "x2": "16.15",
+ "y2": "16.39"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "7.85",
+ "y1": "7.61",
+ "x2": "11.43",
+ "y2": "18.01"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16.39",
+ "y1": "7.85",
+ "x2": "5.99",
+ "y2": "11.43"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18.01",
+ "y1": "12.57",
+ "x2": "7.61",
+ "y2": "16.15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.slack = slack;
+var slash = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.93",
+ "y1": "4.93",
+ "x2": "19.07",
+ "y2": "19.07"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.slash = slash;
+var sliders = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "21",
+ "x2": "4",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "10",
+ "x2": "4",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "21",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "21",
+ "x2": "20",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "12",
+ "x2": "20",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "14",
+ "x2": "7",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "8",
+ "x2": "15",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "16",
+ "x2": "23",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.sliders = sliders;
+var smartphone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "2",
+ "width": "14",
+ "height": "20",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "18",
+ "x2": "12",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.smartphone = smartphone;
+var speaker = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "4",
+ "y": "2",
+ "width": "16",
+ "height": "20",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "14",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "6",
+ "x2": "12",
+ "y2": "6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.speaker = speaker;
+var square = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.square = square;
+var star = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.star = star;
+var stopCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "9",
+ "y": "9",
+ "width": "6",
+ "height": "6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.stopCircle = stopCircle;
+var sun = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "1",
+ "x2": "12",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "21",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.22",
+ "y1": "4.22",
+ "x2": "5.64",
+ "y2": "5.64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18.36",
+ "y1": "18.36",
+ "x2": "19.78",
+ "y2": "19.78"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "12",
+ "x2": "3",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "12",
+ "x2": "23",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.22",
+ "y1": "19.78",
+ "x2": "5.64",
+ "y2": "18.36"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18.36",
+ "y1": "5.64",
+ "x2": "19.78",
+ "y2": "4.22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.sun = sun;
+var sunrise = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17 18a5 5 0 0 0-10 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.22",
+ "y1": "10.22",
+ "x2": "5.64",
+ "y2": "11.64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "18",
+ "x2": "3",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "18",
+ "x2": "23",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18.36",
+ "y1": "11.64",
+ "x2": "19.78",
+ "y2": "10.22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "22",
+ "x2": "1",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8 6 12 2 16 6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.sunrise = sunrise;
+var sunset = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17 18a5 5 0 0 0-10 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "9",
+ "x2": "12",
+ "y2": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.22",
+ "y1": "10.22",
+ "x2": "5.64",
+ "y2": "11.64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "18",
+ "x2": "3",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "18",
+ "x2": "23",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18.36",
+ "y1": "11.64",
+ "x2": "19.78",
+ "y2": "10.22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "22",
+ "x2": "1",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "16 5 12 9 8 5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.sunset = sunset;
+var tablet = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "4",
+ "y": "2",
+ "width": "16",
+ "height": "20",
+ "rx": "2",
+ "ry": "2",
+ "transform": "rotate(180 12 12)"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "18",
+ "x2": "12",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.tablet = tablet;
+var tag = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "7",
+ "y1": "7",
+ "x2": "7",
+ "y2": "7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.tag = tag;
+var target = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.target = target;
+var terminal = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "4 17 10 11 4 5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "19",
+ "x2": "20",
+ "y2": "19"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.terminal = terminal;
+var thermometer = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.thermometer = thermometer;
+var thumbsDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.thumbsDown = thumbsDown;
+var thumbsUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.thumbsUp = thumbsUp;
+var toggleLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "5",
+ "width": "22",
+ "height": "14",
+ "rx": "7",
+ "ry": "7"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.toggleLeft = toggleLeft;
+var toggleRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "5",
+ "width": "22",
+ "height": "14",
+ "rx": "7",
+ "ry": "7"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "16",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.toggleRight = toggleRight;
+var trash2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "3 6 5 6 21 6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "11",
+ "x2": "10",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14",
+ "y1": "11",
+ "x2": "14",
+ "y2": "17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.trash2 = trash2;
+var trash = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "3 6 5 6 21 6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.trash = trash;
+var trendingDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "23 18 13.5 8.5 8.5 13.5 1 6"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 18 23 18 23 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.trendingDown = trendingDown;
+var trendingUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "23 6 13.5 15.5 8.5 10.5 1 18"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 6 23 6 23 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.trendingUp = trendingUp;
+var triangle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.triangle = triangle;
+var truck = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "3",
+ "width": "15",
+ "height": "13"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "16 8 20 8 23 11 23 16 16 16 16 8"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "5.5",
+ "cy": "18.5",
+ "r": "2.5"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "18.5",
+ "cy": "18.5",
+ "r": "2.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.truck = truck;
+var tv = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "7",
+ "width": "20",
+ "height": "15",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 2 12 7 7 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.tv = tv;
+var twitter = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.twitter = twitter;
+var type = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "4 7 4 4 20 4 20 7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "20",
+ "x2": "15",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "4",
+ "x2": "12",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.type = type;
+var umbrella = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.umbrella = umbrella;
+var underline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "21",
+ "x2": "20",
+ "y2": "21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.underline = underline;
+var unlock = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "11",
+ "width": "18",
+ "height": "11",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7 11V7a5 5 0 0 1 9.9-1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.unlock = unlock;
+var uploadCloud = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "16 16 12 12 8 16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "12",
+ "x2": "12",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "16 16 12 12 8 16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.uploadCloud = uploadCloud;
+var upload = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 8 12 3 7 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "3",
+ "x2": "12",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.upload = upload;
+var userCheck = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8.5",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 11 19 13 23 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.userCheck = userCheck;
+var userMinus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8.5",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "11",
+ "x2": "17",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.userMinus = userMinus;
+var userPlus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8.5",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "8",
+ "x2": "20",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "11",
+ "x2": "17",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.userPlus = userPlus;
+var userX = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8.5",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "8",
+ "x2": "23",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "8",
+ "x2": "18",
+ "y2": "13"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.userX = userX;
+var user = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.user = user;
+var users = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "9",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M23 21v-2a4 4 0 0 0-3-3.87"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16 3.13a4 4 0 0 1 0 7.75"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.users = users;
+var videoOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.videoOff = videoOff;
+var video = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "23 7 16 12 23 17 23 7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "5",
+ "width": "15",
+ "height": "14",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.video = video;
+var voicemail = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "5.5",
+ "cy": "11.5",
+ "r": "4.5"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "18.5",
+ "cy": "11.5",
+ "r": "4.5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "5.5",
+ "y1": "16",
+ "x2": "18.5",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.voicemail = voicemail;
+var volume1 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15.54 8.46a5 5 0 0 1 0 7.07"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.volume1 = volume1;
+var volume2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.volume2 = volume2;
+var volumeX = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "9",
+ "x2": "17",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "9",
+ "x2": "23",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.volumeX = volumeX;
+var volume = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.volume = volume;
+var watch = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 9 12 12 13.5 13.5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.watch = watch;
+var wifiOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16.72 11.06A10.94 10.94 0 0 1 19 12.55"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 12.55a10.94 10.94 0 0 1 5.17-2.39"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M10.71 5.05A16 16 0 0 1 22.58 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M1.42 9a15.91 15.91 0 0 1 4.7-2.88"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M8.53 16.11a6 6 0 0 1 6.95 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "20",
+ "x2": "12",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.wifiOff = wifiOff;
+var wifi = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 12.55a11 11 0 0 1 14.08 0"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M1.42 9a16 16 0 0 1 21.16 0"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M8.53 16.11a6 6 0 0 1 6.95 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "20",
+ "x2": "12",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.wifi = wifi;
+var wind = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.wind = wind;
+var xCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "9",
+ "x2": "9",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "9",
+ "x2": "15",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.xCircle = xCircle;
+var xSquare = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "9",
+ "x2": "15",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "9",
+ "x2": "9",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.xSquare = xSquare;
+var x = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "6",
+ "x2": "6",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "6",
+ "x2": "18",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.x = x;
+var youtube = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.youtube = youtube;
+var zapOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "12.41 6.75 13 2 10.57 4.92"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "18.57 12.91 21 10 15.66 10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8 8 3 14 12 14 11 22 16 16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.zapOff = zapOff;
+var zap = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "13 2 3 14 12 14 11 22 21 10 12 10 13 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.zap = zap;
+var zoomIn = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "11",
+ "cy": "11",
+ "r": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "21",
+ "x2": "16.65",
+ "y2": "16.65"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "11",
+ "y1": "8",
+ "x2": "11",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.zoomIn = zoomIn;
+var zoomOut = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "11",
+ "cy": "11",
+ "r": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "21",
+ "x2": "16.65",
+ "y2": "16.65"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.zoomOut = zoomOut;
\ No newline at end of file
diff --git a/dist/feather/info.js b/dist/feather/info.js
new file mode 100644
index 000000000..7887260f0
--- /dev/null
+++ b/dist/feather/info.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.info = void 0;
+var info = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "16",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "8"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.info = info;
\ No newline at end of file
diff --git a/dist/feather/instagram.js b/dist/feather/instagram.js
new file mode 100644
index 000000000..aea37ee4b
--- /dev/null
+++ b/dist/feather/instagram.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.instagram = void 0;
+var instagram = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "2",
+ "width": "20",
+ "height": "20",
+ "rx": "5",
+ "ry": "5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17.5",
+ "y1": "6.5",
+ "x2": "17.5",
+ "y2": "6.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.instagram = instagram;
\ No newline at end of file
diff --git a/dist/feather/italic.js b/dist/feather/italic.js
new file mode 100644
index 000000000..8541c8abd
--- /dev/null
+++ b/dist/feather/italic.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.italic = void 0;
+var italic = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "19",
+ "y1": "4",
+ "x2": "10",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14",
+ "y1": "20",
+ "x2": "5",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "4",
+ "x2": "9",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.italic = italic;
\ No newline at end of file
diff --git a/dist/feather/layers.js b/dist/feather/layers.js
new file mode 100644
index 000000000..6d25088c8
--- /dev/null
+++ b/dist/feather/layers.js
@@ -0,0 +1,36 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.layers = void 0;
+var layers = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "12 2 2 7 12 12 22 7 12 2"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "2 17 12 22 22 17"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "2 12 12 17 22 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.layers = layers;
\ No newline at end of file
diff --git a/dist/feather/layout.js b/dist/feather/layout.js
new file mode 100644
index 000000000..a3a2becbe
--- /dev/null
+++ b/dist/feather/layout.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.layout = void 0;
+var layout = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "9",
+ "x2": "21",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "21",
+ "x2": "9",
+ "y2": "9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.layout = layout;
\ No newline at end of file
diff --git a/dist/feather/lifeBuoy.js b/dist/feather/lifeBuoy.js
new file mode 100644
index 000000000..b51fa7743
--- /dev/null
+++ b/dist/feather/lifeBuoy.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lifeBuoy = void 0;
+var lifeBuoy = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.93",
+ "y1": "4.93",
+ "x2": "9.17",
+ "y2": "9.17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.83",
+ "y1": "14.83",
+ "x2": "19.07",
+ "y2": "19.07"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.83",
+ "y1": "9.17",
+ "x2": "19.07",
+ "y2": "4.93"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.83",
+ "y1": "9.17",
+ "x2": "18.36",
+ "y2": "5.64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.93",
+ "y1": "19.07",
+ "x2": "9.17",
+ "y2": "14.83"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.lifeBuoy = lifeBuoy;
\ No newline at end of file
diff --git a/dist/feather/link.js b/dist/feather/link.js
new file mode 100644
index 000000000..8b9644c81
--- /dev/null
+++ b/dist/feather/link.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.link = void 0;
+var link = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.link = link;
\ No newline at end of file
diff --git a/dist/feather/link2.js b/dist/feather/link2.js
new file mode 100644
index 000000000..286de6b72
--- /dev/null
+++ b/dist/feather/link2.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.link2 = void 0;
+var link2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.link2 = link2;
\ No newline at end of file
diff --git a/dist/feather/linkedin.js b/dist/feather/linkedin.js
new file mode 100644
index 000000000..f93e3cc94
--- /dev/null
+++ b/dist/feather/linkedin.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.linkedin = void 0;
+var linkedin = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "9",
+ "width": "4",
+ "height": "12"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "4",
+ "cy": "4",
+ "r": "2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.linkedin = linkedin;
\ No newline at end of file
diff --git a/dist/feather/list.js b/dist/feather/list.js
new file mode 100644
index 000000000..37de69b1a
--- /dev/null
+++ b/dist/feather/list.js
@@ -0,0 +1,72 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.list = void 0;
+var list = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "6",
+ "x2": "21",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "21",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "18",
+ "x2": "21",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "6",
+ "x2": "3",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "12",
+ "x2": "3",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "18",
+ "x2": "3",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.list = list;
\ No newline at end of file
diff --git a/dist/feather/loader.js b/dist/feather/loader.js
new file mode 100644
index 000000000..dca323bc5
--- /dev/null
+++ b/dist/feather/loader.js
@@ -0,0 +1,90 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loader = void 0;
+var loader = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "18",
+ "x2": "12",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.93",
+ "y1": "4.93",
+ "x2": "7.76",
+ "y2": "7.76"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16.24",
+ "y1": "16.24",
+ "x2": "19.07",
+ "y2": "19.07"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "12",
+ "x2": "6",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "12",
+ "x2": "22",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.93",
+ "y1": "19.07",
+ "x2": "7.76",
+ "y2": "16.24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16.24",
+ "y1": "7.76",
+ "x2": "19.07",
+ "y2": "4.93"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.loader = loader;
\ No newline at end of file
diff --git a/dist/feather/lock.js b/dist/feather/lock.js
new file mode 100644
index 000000000..76b7d324c
--- /dev/null
+++ b/dist/feather/lock.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lock = void 0;
+var lock = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "11",
+ "width": "18",
+ "height": "11",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7 11V7a5 5 0 0 1 10 0v4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.lock = lock;
\ No newline at end of file
diff --git a/dist/feather/logIn.js b/dist/feather/logIn.js
new file mode 100644
index 000000000..4cdedfa3c
--- /dev/null
+++ b/dist/feather/logIn.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.logIn = void 0;
+var logIn = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "10 17 15 12 10 7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "12",
+ "x2": "3",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.logIn = logIn;
\ No newline at end of file
diff --git a/dist/feather/logOut.js b/dist/feather/logOut.js
new file mode 100644
index 000000000..4f2b1576f
--- /dev/null
+++ b/dist/feather/logOut.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.logOut = void 0;
+var logOut = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "16 17 21 12 16 7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "12",
+ "x2": "9",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.logOut = logOut;
\ No newline at end of file
diff --git a/dist/feather/mail.js b/dist/feather/mail.js
new file mode 100644
index 000000000..389880311
--- /dev/null
+++ b/dist/feather/mail.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mail = void 0;
+var mail = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "22,6 12,13 2,6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.mail = mail;
\ No newline at end of file
diff --git a/dist/feather/map.js b/dist/feather/map.js
new file mode 100644
index 000000000..4b7b4291d
--- /dev/null
+++ b/dist/feather/map.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map = void 0;
+var map = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "2",
+ "x2": "8",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "6",
+ "x2": "16",
+ "y2": "22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.map = map;
\ No newline at end of file
diff --git a/dist/feather/mapPin.js b/dist/feather/mapPin.js
new file mode 100644
index 000000000..86b89c8ef
--- /dev/null
+++ b/dist/feather/mapPin.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mapPin = void 0;
+var mapPin = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "10",
+ "r": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.mapPin = mapPin;
\ No newline at end of file
diff --git a/dist/feather/maximize.js b/dist/feather/maximize.js
new file mode 100644
index 000000000..259cb60b3
--- /dev/null
+++ b/dist/feather/maximize.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.maximize = void 0;
+var maximize = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.maximize = maximize;
\ No newline at end of file
diff --git a/dist/feather/maximize2.js b/dist/feather/maximize2.js
new file mode 100644
index 000000000..38402688f
--- /dev/null
+++ b/dist/feather/maximize2.js
@@ -0,0 +1,48 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.maximize2 = void 0;
+var maximize2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "15 3 21 3 21 9"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "9 21 3 21 3 15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "3",
+ "x2": "14",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "21",
+ "x2": "10",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.maximize2 = maximize2;
\ No newline at end of file
diff --git a/dist/feather/menu.js b/dist/feather/menu.js
new file mode 100644
index 000000000..da8f5a12f
--- /dev/null
+++ b/dist/feather/menu.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.menu = void 0;
+var menu = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "12",
+ "x2": "21",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "6",
+ "x2": "21",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "18",
+ "x2": "21",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.menu = menu;
\ No newline at end of file
diff --git a/dist/feather/messageCircle.js b/dist/feather/messageCircle.js
new file mode 100644
index 000000000..cb5ac1b10
--- /dev/null
+++ b/dist/feather/messageCircle.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.messageCircle = void 0;
+var messageCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.messageCircle = messageCircle;
\ No newline at end of file
diff --git a/dist/feather/messageSquare.js b/dist/feather/messageSquare.js
new file mode 100644
index 000000000..b98928063
--- /dev/null
+++ b/dist/feather/messageSquare.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.messageSquare = void 0;
+var messageSquare = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.messageSquare = messageSquare;
\ No newline at end of file
diff --git a/dist/feather/mic.js b/dist/feather/mic.js
new file mode 100644
index 000000000..4475b8c8e
--- /dev/null
+++ b/dist/feather/mic.js
@@ -0,0 +1,48 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mic = void 0;
+var mic = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 10v2a7 7 0 0 1-14 0v-2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "19",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "23",
+ "x2": "16",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.mic = mic;
\ No newline at end of file
diff --git a/dist/feather/micOff.js b/dist/feather/micOff.js
new file mode 100644
index 000000000..27879ea54
--- /dev/null
+++ b/dist/feather/micOff.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.micOff = void 0;
+var micOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "19",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "23",
+ "x2": "16",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.micOff = micOff;
\ No newline at end of file
diff --git a/dist/feather/minimize.js b/dist/feather/minimize.js
new file mode 100644
index 000000000..3d561d65d
--- /dev/null
+++ b/dist/feather/minimize.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minimize = void 0;
+var minimize = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.minimize = minimize;
\ No newline at end of file
diff --git a/dist/feather/minimize2.js b/dist/feather/minimize2.js
new file mode 100644
index 000000000..08cf68817
--- /dev/null
+++ b/dist/feather/minimize2.js
@@ -0,0 +1,48 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minimize2 = void 0;
+var minimize2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "4 14 10 14 10 20"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "20 10 14 10 14 4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14",
+ "y1": "10",
+ "x2": "21",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "21",
+ "x2": "10",
+ "y2": "14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.minimize2 = minimize2;
\ No newline at end of file
diff --git a/dist/feather/minus.js b/dist/feather/minus.js
new file mode 100644
index 000000000..90e4ffa07
--- /dev/null
+++ b/dist/feather/minus.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minus = void 0;
+var minus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "5",
+ "y1": "12",
+ "x2": "19",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.minus = minus;
\ No newline at end of file
diff --git a/dist/feather/minusCircle.js b/dist/feather/minusCircle.js
new file mode 100644
index 000000000..11b9dc56b
--- /dev/null
+++ b/dist/feather/minusCircle.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minusCircle = void 0;
+var minusCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.minusCircle = minusCircle;
\ No newline at end of file
diff --git a/dist/feather/minusSquare.js b/dist/feather/minusSquare.js
new file mode 100644
index 000000000..06b3d9e44
--- /dev/null
+++ b/dist/feather/minusSquare.js
@@ -0,0 +1,38 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minusSquare = void 0;
+var minusSquare = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.minusSquare = minusSquare;
\ No newline at end of file
diff --git a/dist/feather/monitor.js b/dist/feather/monitor.js
new file mode 100644
index 000000000..13ee010d6
--- /dev/null
+++ b/dist/feather/monitor.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.monitor = void 0;
+var monitor = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "3",
+ "width": "20",
+ "height": "14",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "21",
+ "x2": "16",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "17",
+ "x2": "12",
+ "y2": "21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.monitor = monitor;
\ No newline at end of file
diff --git a/dist/feather/moon.js b/dist/feather/moon.js
new file mode 100644
index 000000000..9ed398ff0
--- /dev/null
+++ b/dist/feather/moon.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.moon = void 0;
+var moon = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.moon = moon;
\ No newline at end of file
diff --git a/dist/feather/moreHorizontal.js b/dist/feather/moreHorizontal.js
new file mode 100644
index 000000000..88cec9ea3
--- /dev/null
+++ b/dist/feather/moreHorizontal.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.moreHorizontal = void 0;
+var moreHorizontal = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "19",
+ "cy": "12",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "5",
+ "cy": "12",
+ "r": "1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.moreHorizontal = moreHorizontal;
\ No newline at end of file
diff --git a/dist/feather/moreVertical.js b/dist/feather/moreVertical.js
new file mode 100644
index 000000000..bdac1d633
--- /dev/null
+++ b/dist/feather/moreVertical.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.moreVertical = void 0;
+var moreVertical = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "5",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "19",
+ "r": "1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.moreVertical = moreVertical;
\ No newline at end of file
diff --git a/dist/feather/move.js b/dist/feather/move.js
new file mode 100644
index 000000000..181c1e2fe
--- /dev/null
+++ b/dist/feather/move.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.move = void 0;
+var move = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "5 9 2 12 5 15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "9 5 12 2 15 5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "15 19 12 22 9 19"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "19 9 22 12 19 15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "2",
+ "y1": "12",
+ "x2": "22",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.move = move;
\ No newline at end of file
diff --git a/dist/feather/music.js b/dist/feather/music.js
new file mode 100644
index 000000000..c9ffd53e5
--- /dev/null
+++ b/dist/feather/music.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music = void 0;
+var music = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9 17H5a2 2 0 0 0-2 2 2 2 0 0 0 2 2h2a2 2 0 0 0 2-2zm12-2h-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2h2a2 2 0 0 0 2-2z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "9 17 9 5 21 3 21 15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.music = music;
\ No newline at end of file
diff --git a/dist/feather/navigation.js b/dist/feather/navigation.js
new file mode 100644
index 000000000..86224cd8f
--- /dev/null
+++ b/dist/feather/navigation.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.navigation = void 0;
+var navigation = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "3 11 22 2 13 21 11 13 3 11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.navigation = navigation;
\ No newline at end of file
diff --git a/dist/feather/navigation2.js b/dist/feather/navigation2.js
new file mode 100644
index 000000000..32d54e3e3
--- /dev/null
+++ b/dist/feather/navigation2.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.navigation2 = void 0;
+var navigation2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "12 2 19 21 12 17 5 21 12 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.navigation2 = navigation2;
\ No newline at end of file
diff --git a/dist/feather/octagon.js b/dist/feather/octagon.js
new file mode 100644
index 000000000..df66bb9ff
--- /dev/null
+++ b/dist/feather/octagon.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.octagon = void 0;
+var octagon = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.octagon = octagon;
\ No newline at end of file
diff --git a/dist/feather/packageIcon.js b/dist/feather/packageIcon.js
new file mode 100644
index 000000000..3ee321d79
--- /dev/null
+++ b/dist/feather/packageIcon.js
@@ -0,0 +1,48 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.packageIcon = void 0;
+var packageIcon = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.89 1.45l8 4A2 2 0 0 1 22 7.24v9.53a2 2 0 0 1-1.11 1.79l-8 4a2 2 0 0 1-1.79 0l-8-4a2 2 0 0 1-1.1-1.8V7.24a2 2 0 0 1 1.11-1.79l8-4a2 2 0 0 1 1.78 0z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "2.32 6.16 12 11 21.68 6.16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "22.76",
+ "x2": "12",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "7",
+ "y1": "3.5",
+ "x2": "17",
+ "y2": "8.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.packageIcon = packageIcon;
\ No newline at end of file
diff --git a/dist/feather/paperclip.js b/dist/feather/paperclip.js
new file mode 100644
index 000000000..9455f2439
--- /dev/null
+++ b/dist/feather/paperclip.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paperclip = void 0;
+var paperclip = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.paperclip = paperclip;
\ No newline at end of file
diff --git a/dist/feather/pause.js b/dist/feather/pause.js
new file mode 100644
index 000000000..6b94be894
--- /dev/null
+++ b/dist/feather/pause.js
@@ -0,0 +1,36 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pause = void 0;
+var pause = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "6",
+ "y": "4",
+ "width": "4",
+ "height": "16"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "14",
+ "y": "4",
+ "width": "4",
+ "height": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.pause = pause;
\ No newline at end of file
diff --git a/dist/feather/pauseCircle.js b/dist/feather/pauseCircle.js
new file mode 100644
index 000000000..a774ecca9
--- /dev/null
+++ b/dist/feather/pauseCircle.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pauseCircle = void 0;
+var pauseCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "15",
+ "x2": "10",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14",
+ "y1": "15",
+ "x2": "14",
+ "y2": "9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.pauseCircle = pauseCircle;
\ No newline at end of file
diff --git a/dist/feather/percent.js b/dist/feather/percent.js
new file mode 100644
index 000000000..f31bf3f58
--- /dev/null
+++ b/dist/feather/percent.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.percent = void 0;
+var percent = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "19",
+ "y1": "5",
+ "x2": "5",
+ "y2": "19"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6.5",
+ "cy": "6.5",
+ "r": "2.5"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "17.5",
+ "cy": "17.5",
+ "r": "2.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.percent = percent;
\ No newline at end of file
diff --git a/dist/feather/phone.js b/dist/feather/phone.js
new file mode 100644
index 000000000..a98554f0f
--- /dev/null
+++ b/dist/feather/phone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phone = void 0;
+var phone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phone = phone;
\ No newline at end of file
diff --git a/dist/feather/phoneCall.js b/dist/feather/phoneCall.js
new file mode 100644
index 000000000..2abb35db3
--- /dev/null
+++ b/dist/feather/phoneCall.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phoneCall = void 0;
+var phoneCall = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneCall = phoneCall;
\ No newline at end of file
diff --git a/dist/feather/phoneForwarded.js b/dist/feather/phoneForwarded.js
new file mode 100644
index 000000000..b13b13e78
--- /dev/null
+++ b/dist/feather/phoneForwarded.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phoneForwarded = void 0;
+var phoneForwarded = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "19 1 23 5 19 9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "5",
+ "x2": "23",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneForwarded = phoneForwarded;
\ No newline at end of file
diff --git a/dist/feather/phoneIncoming.js b/dist/feather/phoneIncoming.js
new file mode 100644
index 000000000..5d264d40b
--- /dev/null
+++ b/dist/feather/phoneIncoming.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phoneIncoming = void 0;
+var phoneIncoming = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "16 2 16 8 22 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "1",
+ "x2": "16",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneIncoming = phoneIncoming;
\ No newline at end of file
diff --git a/dist/feather/phoneMissed.js b/dist/feather/phoneMissed.js
new file mode 100644
index 000000000..c904c694b
--- /dev/null
+++ b/dist/feather/phoneMissed.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phoneMissed = void 0;
+var phoneMissed = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "1",
+ "x2": "17",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "1",
+ "x2": "23",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneMissed = phoneMissed;
\ No newline at end of file
diff --git a/dist/feather/phoneOff.js b/dist/feather/phoneOff.js
new file mode 100644
index 000000000..4c3bbf072
--- /dev/null
+++ b/dist/feather/phoneOff.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phoneOff = void 0;
+var phoneOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "1",
+ "x2": "1",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneOff = phoneOff;
\ No newline at end of file
diff --git a/dist/feather/phoneOutgoing.js b/dist/feather/phoneOutgoing.js
new file mode 100644
index 000000000..9cfd02df0
--- /dev/null
+++ b/dist/feather/phoneOutgoing.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phoneOutgoing = void 0;
+var phoneOutgoing = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "23 7 23 1 17 1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16",
+ "y1": "8",
+ "x2": "23",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.phoneOutgoing = phoneOutgoing;
\ No newline at end of file
diff --git a/dist/feather/pieChart.js b/dist/feather/pieChart.js
new file mode 100644
index 000000000..e2138d00f
--- /dev/null
+++ b/dist/feather/pieChart.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pieChart = void 0;
+var pieChart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21.21 15.89A10 10 0 1 1 8 2.83"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 12A10 10 0 0 0 12 2v10z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.pieChart = pieChart;
\ No newline at end of file
diff --git a/dist/feather/play.js b/dist/feather/play.js
new file mode 100644
index 000000000..18f551305
--- /dev/null
+++ b/dist/feather/play.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.play = void 0;
+var play = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "5 3 19 12 5 21 5 3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.play = play;
\ No newline at end of file
diff --git a/dist/feather/playCircle.js b/dist/feather/playCircle.js
new file mode 100644
index 000000000..f06e66581
--- /dev/null
+++ b/dist/feather/playCircle.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.playCircle = void 0;
+var playCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "10 8 16 12 10 16 10 8"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.playCircle = playCircle;
\ No newline at end of file
diff --git a/dist/feather/plus.js b/dist/feather/plus.js
new file mode 100644
index 000000000..c0c6225a3
--- /dev/null
+++ b/dist/feather/plus.js
@@ -0,0 +1,36 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plus = void 0;
+var plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "5",
+ "x2": "12",
+ "y2": "19"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "5",
+ "y1": "12",
+ "x2": "19",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.plus = plus;
\ No newline at end of file
diff --git a/dist/feather/plusCircle.js b/dist/feather/plusCircle.js
new file mode 100644
index 000000000..f2a97406d
--- /dev/null
+++ b/dist/feather/plusCircle.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plusCircle = void 0;
+var plusCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.plusCircle = plusCircle;
\ No newline at end of file
diff --git a/dist/feather/plusSquare.js b/dist/feather/plusSquare.js
new file mode 100644
index 000000000..ecb83a024
--- /dev/null
+++ b/dist/feather/plusSquare.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plusSquare = void 0;
+var plusSquare = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "12",
+ "x2": "16",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.plusSquare = plusSquare;
\ No newline at end of file
diff --git a/dist/feather/pocket.js b/dist/feather/pocket.js
new file mode 100644
index 000000000..49cbcfdf2
--- /dev/null
+++ b/dist/feather/pocket.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pocket = void 0;
+var pocket = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8 10 12 14 16 10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.pocket = pocket;
\ No newline at end of file
diff --git a/dist/feather/power.js b/dist/feather/power.js
new file mode 100644
index 000000000..bae35922c
--- /dev/null
+++ b/dist/feather/power.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.power = void 0;
+var power = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18.36 6.64a9 9 0 1 1-12.73 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.power = power;
\ No newline at end of file
diff --git a/dist/feather/printer.js b/dist/feather/printer.js
new file mode 100644
index 000000000..e61ab7c81
--- /dev/null
+++ b/dist/feather/printer.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.printer = void 0;
+var printer = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "6 9 6 2 18 2 18 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "6",
+ "y": "14",
+ "width": "12",
+ "height": "8"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.printer = printer;
\ No newline at end of file
diff --git a/dist/feather/radio.js b/dist/feather/radio.js
new file mode 100644
index 000000000..0a2aafd30
--- /dev/null
+++ b/dist/feather/radio.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.radio = void 0;
+var radio = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.radio = radio;
\ No newline at end of file
diff --git a/dist/feather/refreshCcw.js b/dist/feather/refreshCcw.js
new file mode 100644
index 000000000..6af2936c5
--- /dev/null
+++ b/dist/feather/refreshCcw.js
@@ -0,0 +1,36 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.refreshCcw = void 0;
+var refreshCcw = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "1 4 1 10 7 10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "23 20 23 14 17 14"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.refreshCcw = refreshCcw;
\ No newline at end of file
diff --git a/dist/feather/refreshCw.js b/dist/feather/refreshCw.js
new file mode 100644
index 000000000..5f4492822
--- /dev/null
+++ b/dist/feather/refreshCw.js
@@ -0,0 +1,36 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.refreshCw = void 0;
+var refreshCw = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "23 4 23 10 17 10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "1 20 1 14 7 14"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.refreshCw = refreshCw;
\ No newline at end of file
diff --git a/dist/feather/repeat.js b/dist/feather/repeat.js
new file mode 100644
index 000000000..c77847844
--- /dev/null
+++ b/dist/feather/repeat.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.repeat = void 0;
+var repeat = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "17 1 21 5 17 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3 11V9a4 4 0 0 1 4-4h14"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 23 3 19 7 15"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 13v2a4 4 0 0 1-4 4H3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.repeat = repeat;
\ No newline at end of file
diff --git a/dist/feather/rewind.js b/dist/feather/rewind.js
new file mode 100644
index 000000000..dd1fc4df8
--- /dev/null
+++ b/dist/feather/rewind.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rewind = void 0;
+var rewind = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11 19 2 12 11 5 11 19"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "22 19 13 12 22 5 22 19"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.rewind = rewind;
\ No newline at end of file
diff --git a/dist/feather/rotateCcw.js b/dist/feather/rotateCcw.js
new file mode 100644
index 000000000..771645b68
--- /dev/null
+++ b/dist/feather/rotateCcw.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rotateCcw = void 0;
+var rotateCcw = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "1 4 1 10 7 10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3.51 15a9 9 0 1 0 2.13-9.36L1 10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.rotateCcw = rotateCcw;
\ No newline at end of file
diff --git a/dist/feather/rotateCw.js b/dist/feather/rotateCw.js
new file mode 100644
index 000000000..604ea3bbb
--- /dev/null
+++ b/dist/feather/rotateCw.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rotateCw = void 0;
+var rotateCw = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "23 4 23 10 17 10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.49 15a9 9 0 1 1-2.12-9.36L23 10"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.rotateCw = rotateCw;
\ No newline at end of file
diff --git a/dist/feather/rss.js b/dist/feather/rss.js
new file mode 100644
index 000000000..29f76868b
--- /dev/null
+++ b/dist/feather/rss.js
@@ -0,0 +1,38 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rss = void 0;
+var rss = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 11a9 9 0 0 1 9 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 4a16 16 0 0 1 16 16"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "5",
+ "cy": "19",
+ "r": "1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.rss = rss;
\ No newline at end of file
diff --git a/dist/feather/save.js b/dist/feather/save.js
new file mode 100644
index 000000000..16935d976
--- /dev/null
+++ b/dist/feather/save.js
@@ -0,0 +1,36 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.save = void 0;
+var save = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 21 17 13 7 13 7 21"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "7 3 7 8 15 8"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.save = save;
\ No newline at end of file
diff --git a/dist/feather/scissors.js b/dist/feather/scissors.js
new file mode 100644
index 000000000..c65c41eed
--- /dev/null
+++ b/dist/feather/scissors.js
@@ -0,0 +1,61 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.scissors = void 0;
+var scissors = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "6",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "4",
+ "x2": "8.12",
+ "y2": "15.88"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14.47",
+ "y1": "14.48",
+ "x2": "20",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8.12",
+ "y1": "8.12",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.scissors = scissors;
\ No newline at end of file
diff --git a/dist/feather/search.js b/dist/feather/search.js
new file mode 100644
index 000000000..337336953
--- /dev/null
+++ b/dist/feather/search.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.search = void 0;
+var search = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "11",
+ "cy": "11",
+ "r": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "21",
+ "x2": "16.65",
+ "y2": "16.65"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.search = search;
\ No newline at end of file
diff --git a/dist/feather/send.js b/dist/feather/send.js
new file mode 100644
index 000000000..80360140b
--- /dev/null
+++ b/dist/feather/send.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.send = void 0;
+var send = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "22",
+ "y1": "2",
+ "x2": "11",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "22 2 15 22 11 13 2 9 22 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.send = send;
\ No newline at end of file
diff --git a/dist/feather/server.js b/dist/feather/server.js
new file mode 100644
index 000000000..db0977685
--- /dev/null
+++ b/dist/feather/server.js
@@ -0,0 +1,58 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.server = void 0;
+var server = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "2",
+ "width": "20",
+ "height": "8",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "14",
+ "width": "20",
+ "height": "8",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "6",
+ "x2": "6",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "18",
+ "x2": "6",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.server = server;
\ No newline at end of file
diff --git a/dist/feather/settings.js b/dist/feather/settings.js
new file mode 100644
index 000000000..2dec847b8
--- /dev/null
+++ b/dist/feather/settings.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.settings = void 0;
+var settings = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.settings = settings;
\ No newline at end of file
diff --git a/dist/feather/share.js b/dist/feather/share.js
new file mode 100644
index 000000000..d30c98771
--- /dev/null
+++ b/dist/feather/share.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.share = void 0;
+var share = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "16 6 12 2 8 6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.share = share;
\ No newline at end of file
diff --git a/dist/feather/share2.js b/dist/feather/share2.js
new file mode 100644
index 000000000..566a38fbd
--- /dev/null
+++ b/dist/feather/share2.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.share2 = void 0;
+var share2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "5",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "6",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "19",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8.59",
+ "y1": "13.51",
+ "x2": "15.42",
+ "y2": "17.49"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15.41",
+ "y1": "6.51",
+ "x2": "8.59",
+ "y2": "10.49"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.share2 = share2;
\ No newline at end of file
diff --git a/dist/feather/shield.js b/dist/feather/shield.js
new file mode 100644
index 000000000..882d561ec
--- /dev/null
+++ b/dist/feather/shield.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shield = void 0;
+var shield = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.shield = shield;
\ No newline at end of file
diff --git a/dist/feather/shieldOff.js b/dist/feather/shieldOff.js
new file mode 100644
index 000000000..ff971d8c4
--- /dev/null
+++ b/dist/feather/shieldOff.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shieldOff = void 0;
+var shieldOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.shieldOff = shieldOff;
\ No newline at end of file
diff --git a/dist/feather/shoppingBag.js b/dist/feather/shoppingBag.js
new file mode 100644
index 000000000..9337f5bd7
--- /dev/null
+++ b/dist/feather/shoppingBag.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shoppingBag = void 0;
+var shoppingBag = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "3",
+ "y1": "6",
+ "x2": "21",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16 10a4 4 0 0 1-8 0"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.shoppingBag = shoppingBag;
\ No newline at end of file
diff --git a/dist/feather/shoppingCart.js b/dist/feather/shoppingCart.js
new file mode 100644
index 000000000..3bcd67452
--- /dev/null
+++ b/dist/feather/shoppingCart.js
@@ -0,0 +1,40 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shoppingCart = void 0;
+var shoppingCart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "9",
+ "cy": "21",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "20",
+ "cy": "21",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.shoppingCart = shoppingCart;
\ No newline at end of file
diff --git a/dist/feather/shuffle.js b/dist/feather/shuffle.js
new file mode 100644
index 000000000..b8663b57d
--- /dev/null
+++ b/dist/feather/shuffle.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shuffle = void 0;
+var shuffle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "16 3 21 3 21 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "20",
+ "x2": "21",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "21 16 21 21 16 21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "15",
+ "x2": "21",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "4",
+ "x2": "9",
+ "y2": "9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.shuffle = shuffle;
\ No newline at end of file
diff --git a/dist/feather/sidebar.js b/dist/feather/sidebar.js
new file mode 100644
index 000000000..6e1b45d2b
--- /dev/null
+++ b/dist/feather/sidebar.js
@@ -0,0 +1,38 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sidebar = void 0;
+var sidebar = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "3",
+ "x2": "9",
+ "y2": "21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.sidebar = sidebar;
\ No newline at end of file
diff --git a/dist/feather/skipBack.js b/dist/feather/skipBack.js
new file mode 100644
index 000000000..826890877
--- /dev/null
+++ b/dist/feather/skipBack.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skipBack = void 0;
+var skipBack = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "19 20 9 12 19 4 19 20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "5",
+ "y1": "19",
+ "x2": "5",
+ "y2": "5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.skipBack = skipBack;
\ No newline at end of file
diff --git a/dist/feather/skipForward.js b/dist/feather/skipForward.js
new file mode 100644
index 000000000..4adb1d166
--- /dev/null
+++ b/dist/feather/skipForward.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skipForward = void 0;
+var skipForward = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "5 4 15 12 5 20 5 4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "19",
+ "y1": "5",
+ "x2": "19",
+ "y2": "19"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.skipForward = skipForward;
\ No newline at end of file
diff --git a/dist/feather/slack.js b/dist/feather/slack.js
new file mode 100644
index 000000000..9e6ea4d1d
--- /dev/null
+++ b/dist/feather/slack.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.slack = void 0;
+var slack = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22.08 9C19.81 1.41 16.54-.35 9 1.92S-.35 7.46 1.92 15 7.46 24.35 15 22.08 24.35 16.54 22.08 9z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12.57",
+ "y1": "5.99",
+ "x2": "16.15",
+ "y2": "16.39"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "7.85",
+ "y1": "7.61",
+ "x2": "11.43",
+ "y2": "18.01"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "16.39",
+ "y1": "7.85",
+ "x2": "5.99",
+ "y2": "11.43"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18.01",
+ "y1": "12.57",
+ "x2": "7.61",
+ "y2": "16.15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.slack = slack;
\ No newline at end of file
diff --git a/dist/feather/slash.js b/dist/feather/slash.js
new file mode 100644
index 000000000..0245a2552
--- /dev/null
+++ b/dist/feather/slash.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.slash = void 0;
+var slash = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.93",
+ "y1": "4.93",
+ "x2": "19.07",
+ "y2": "19.07"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.slash = slash;
\ No newline at end of file
diff --git a/dist/feather/sliders.js b/dist/feather/sliders.js
new file mode 100644
index 000000000..220c68a41
--- /dev/null
+++ b/dist/feather/sliders.js
@@ -0,0 +1,99 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sliders = void 0;
+var sliders = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "21",
+ "x2": "4",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "10",
+ "x2": "4",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "21",
+ "x2": "12",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "8",
+ "x2": "12",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "21",
+ "x2": "20",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "12",
+ "x2": "20",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "14",
+ "x2": "7",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "8",
+ "x2": "15",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "16",
+ "x2": "23",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.sliders = sliders;
\ No newline at end of file
diff --git a/dist/feather/smartphone.js b/dist/feather/smartphone.js
new file mode 100644
index 000000000..8d7bb226d
--- /dev/null
+++ b/dist/feather/smartphone.js
@@ -0,0 +1,38 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.smartphone = void 0;
+var smartphone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "2",
+ "width": "14",
+ "height": "20",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "18",
+ "x2": "12",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.smartphone = smartphone;
\ No newline at end of file
diff --git a/dist/feather/speaker.js b/dist/feather/speaker.js
new file mode 100644
index 000000000..0baca1573
--- /dev/null
+++ b/dist/feather/speaker.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.speaker = void 0;
+var speaker = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "4",
+ "y": "2",
+ "width": "16",
+ "height": "20",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "14",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "6",
+ "x2": "12",
+ "y2": "6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.speaker = speaker;
\ No newline at end of file
diff --git a/dist/feather/square.js b/dist/feather/square.js
new file mode 100644
index 000000000..b2300f018
--- /dev/null
+++ b/dist/feather/square.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square = void 0;
+var square = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.square = square;
\ No newline at end of file
diff --git a/dist/feather/star.js b/dist/feather/star.js
new file mode 100644
index 000000000..c8f8e790d
--- /dev/null
+++ b/dist/feather/star.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.star = void 0;
+var star = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.star = star;
\ No newline at end of file
diff --git a/dist/feather/stopCircle.js b/dist/feather/stopCircle.js
new file mode 100644
index 000000000..301177c8c
--- /dev/null
+++ b/dist/feather/stopCircle.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stopCircle = void 0;
+var stopCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "9",
+ "y": "9",
+ "width": "6",
+ "height": "6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.stopCircle = stopCircle;
\ No newline at end of file
diff --git a/dist/feather/sun.js b/dist/feather/sun.js
new file mode 100644
index 000000000..1a6dcfd7b
--- /dev/null
+++ b/dist/feather/sun.js
@@ -0,0 +1,98 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sun = void 0;
+var sun = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "1",
+ "x2": "12",
+ "y2": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "21",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.22",
+ "y1": "4.22",
+ "x2": "5.64",
+ "y2": "5.64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18.36",
+ "y1": "18.36",
+ "x2": "19.78",
+ "y2": "19.78"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "12",
+ "x2": "3",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "12",
+ "x2": "23",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.22",
+ "y1": "19.78",
+ "x2": "5.64",
+ "y2": "18.36"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18.36",
+ "y1": "5.64",
+ "x2": "19.78",
+ "y2": "4.22"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.sun = sun;
\ No newline at end of file
diff --git a/dist/feather/sunrise.js b/dist/feather/sunrise.js
new file mode 100644
index 000000000..25b76f0d8
--- /dev/null
+++ b/dist/feather/sunrise.js
@@ -0,0 +1,84 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sunrise = void 0;
+var sunrise = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17 18a5 5 0 0 0-10 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "2",
+ "x2": "12",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.22",
+ "y1": "10.22",
+ "x2": "5.64",
+ "y2": "11.64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "18",
+ "x2": "3",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "18",
+ "x2": "23",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18.36",
+ "y1": "11.64",
+ "x2": "19.78",
+ "y2": "10.22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "22",
+ "x2": "1",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8 6 12 2 16 6"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.sunrise = sunrise;
\ No newline at end of file
diff --git a/dist/feather/sunset.js b/dist/feather/sunset.js
new file mode 100644
index 000000000..3bd39d105
--- /dev/null
+++ b/dist/feather/sunset.js
@@ -0,0 +1,84 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sunset = void 0;
+var sunset = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17 18a5 5 0 0 0-10 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "9",
+ "x2": "12",
+ "y2": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4.22",
+ "y1": "10.22",
+ "x2": "5.64",
+ "y2": "11.64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "18",
+ "x2": "3",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "18",
+ "x2": "23",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18.36",
+ "y1": "11.64",
+ "x2": "19.78",
+ "y2": "10.22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "22",
+ "x2": "1",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "16 5 12 9 8 5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.sunset = sunset;
\ No newline at end of file
diff --git a/dist/feather/tablet.js b/dist/feather/tablet.js
new file mode 100644
index 000000000..efc7e10a6
--- /dev/null
+++ b/dist/feather/tablet.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tablet = void 0;
+var tablet = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "4",
+ "y": "2",
+ "width": "16",
+ "height": "20",
+ "rx": "2",
+ "ry": "2",
+ "transform": "rotate(180 12 12)"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "18",
+ "x2": "12",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.tablet = tablet;
\ No newline at end of file
diff --git a/dist/feather/tag.js b/dist/feather/tag.js
new file mode 100644
index 000000000..4ef89e165
--- /dev/null
+++ b/dist/feather/tag.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tag = void 0;
+var tag = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "7",
+ "y1": "7",
+ "x2": "7",
+ "y2": "7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.tag = tag;
\ No newline at end of file
diff --git a/dist/feather/target.js b/dist/feather/target.js
new file mode 100644
index 000000000..72ec0c4f7
--- /dev/null
+++ b/dist/feather/target.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.target = void 0;
+var target = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.target = target;
\ No newline at end of file
diff --git a/dist/feather/terminal.js b/dist/feather/terminal.js
new file mode 100644
index 000000000..d0369006f
--- /dev/null
+++ b/dist/feather/terminal.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.terminal = void 0;
+var terminal = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "4 17 10 11 4 5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "19",
+ "x2": "20",
+ "y2": "19"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.terminal = terminal;
\ No newline at end of file
diff --git a/dist/feather/thermometer.js b/dist/feather/thermometer.js
new file mode 100644
index 000000000..50b854468
--- /dev/null
+++ b/dist/feather/thermometer.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometer = void 0;
+var thermometer = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.thermometer = thermometer;
\ No newline at end of file
diff --git a/dist/feather/thumbsDown.js b/dist/feather/thumbsDown.js
new file mode 100644
index 000000000..37bf69ebd
--- /dev/null
+++ b/dist/feather/thumbsDown.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thumbsDown = void 0;
+var thumbsDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.thumbsDown = thumbsDown;
\ No newline at end of file
diff --git a/dist/feather/thumbsUp.js b/dist/feather/thumbsUp.js
new file mode 100644
index 000000000..f4cb12991
--- /dev/null
+++ b/dist/feather/thumbsUp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thumbsUp = void 0;
+var thumbsUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.thumbsUp = thumbsUp;
\ No newline at end of file
diff --git a/dist/feather/toggleLeft.js b/dist/feather/toggleLeft.js
new file mode 100644
index 000000000..c11232c4b
--- /dev/null
+++ b/dist/feather/toggleLeft.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toggleLeft = void 0;
+var toggleLeft = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "5",
+ "width": "22",
+ "height": "14",
+ "rx": "7",
+ "ry": "7"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.toggleLeft = toggleLeft;
\ No newline at end of file
diff --git a/dist/feather/toggleRight.js b/dist/feather/toggleRight.js
new file mode 100644
index 000000000..2dbda7885
--- /dev/null
+++ b/dist/feather/toggleRight.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toggleRight = void 0;
+var toggleRight = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "5",
+ "width": "22",
+ "height": "14",
+ "rx": "7",
+ "ry": "7"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "16",
+ "cy": "12",
+ "r": "3"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.toggleRight = toggleRight;
\ No newline at end of file
diff --git a/dist/feather/trash.js b/dist/feather/trash.js
new file mode 100644
index 000000000..af0f51e85
--- /dev/null
+++ b/dist/feather/trash.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trash = void 0;
+var trash = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "3 6 5 6 21 6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.trash = trash;
\ No newline at end of file
diff --git a/dist/feather/trash2.js b/dist/feather/trash2.js
new file mode 100644
index 000000000..a61fbf859
--- /dev/null
+++ b/dist/feather/trash2.js
@@ -0,0 +1,48 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trash2 = void 0;
+var trash2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "3 6 5 6 21 6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "10",
+ "y1": "11",
+ "x2": "10",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "14",
+ "y1": "11",
+ "x2": "14",
+ "y2": "17"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.trash2 = trash2;
\ No newline at end of file
diff --git a/dist/feather/trendingDown.js b/dist/feather/trendingDown.js
new file mode 100644
index 000000000..e13ee3b2d
--- /dev/null
+++ b/dist/feather/trendingDown.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trendingDown = void 0;
+var trendingDown = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "23 18 13.5 8.5 8.5 13.5 1 6"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 18 23 18 23 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.trendingDown = trendingDown;
\ No newline at end of file
diff --git a/dist/feather/trendingUp.js b/dist/feather/trendingUp.js
new file mode 100644
index 000000000..74bdb7754
--- /dev/null
+++ b/dist/feather/trendingUp.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trendingUp = void 0;
+var trendingUp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "23 6 13.5 15.5 8.5 10.5 1 18"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 6 23 6 23 12"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.trendingUp = trendingUp;
\ No newline at end of file
diff --git a/dist/feather/triangle.js b/dist/feather/triangle.js
new file mode 100644
index 000000000..6c9d8a6c7
--- /dev/null
+++ b/dist/feather/triangle.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.triangle = void 0;
+var triangle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.triangle = triangle;
\ No newline at end of file
diff --git a/dist/feather/truck.js b/dist/feather/truck.js
new file mode 100644
index 000000000..3381210b3
--- /dev/null
+++ b/dist/feather/truck.js
@@ -0,0 +1,49 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.truck = void 0;
+var truck = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "3",
+ "width": "15",
+ "height": "13"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "16 8 20 8 23 11 23 16 16 16 16 8"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "5.5",
+ "cy": "18.5",
+ "r": "2.5"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "18.5",
+ "cy": "18.5",
+ "r": "2.5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.truck = truck;
\ No newline at end of file
diff --git a/dist/feather/tv.js b/dist/feather/tv.js
new file mode 100644
index 000000000..1e9fec9ff
--- /dev/null
+++ b/dist/feather/tv.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tv = void 0;
+var tv = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "2",
+ "y": "7",
+ "width": "20",
+ "height": "15",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 2 12 7 7 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.tv = tv;
\ No newline at end of file
diff --git a/dist/feather/twitter.js b/dist/feather/twitter.js
new file mode 100644
index 000000000..8b0db8891
--- /dev/null
+++ b/dist/feather/twitter.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twitter = void 0;
+var twitter = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.twitter = twitter;
\ No newline at end of file
diff --git a/dist/feather/type.js b/dist/feather/type.js
new file mode 100644
index 000000000..481009c5a
--- /dev/null
+++ b/dist/feather/type.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.type = void 0;
+var type = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "4 7 4 4 20 4 20 7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "20",
+ "x2": "15",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "4",
+ "x2": "12",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.type = type;
\ No newline at end of file
diff --git a/dist/feather/umbrella.js b/dist/feather/umbrella.js
new file mode 100644
index 000000000..c67d198a0
--- /dev/null
+++ b/dist/feather/umbrella.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.umbrella = void 0;
+var umbrella = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.umbrella = umbrella;
\ No newline at end of file
diff --git a/dist/feather/underline.js b/dist/feather/underline.js
new file mode 100644
index 000000000..cccdae80d
--- /dev/null
+++ b/dist/feather/underline.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.underline = void 0;
+var underline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "4",
+ "y1": "21",
+ "x2": "20",
+ "y2": "21"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.underline = underline;
\ No newline at end of file
diff --git a/dist/feather/unlock.js b/dist/feather/unlock.js
new file mode 100644
index 000000000..276cc9461
--- /dev/null
+++ b/dist/feather/unlock.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.unlock = void 0;
+var unlock = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "11",
+ "width": "18",
+ "height": "11",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7 11V7a5 5 0 0 1 9.9-1"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.unlock = unlock;
\ No newline at end of file
diff --git a/dist/feather/upload.js b/dist/feather/upload.js
new file mode 100644
index 000000000..4dbd1fe43
--- /dev/null
+++ b/dist/feather/upload.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.upload = void 0;
+var upload = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 8 12 3 7 8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "3",
+ "x2": "12",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.upload = upload;
\ No newline at end of file
diff --git a/dist/feather/uploadCloud.js b/dist/feather/uploadCloud.js
new file mode 100644
index 000000000..e0cfddae2
--- /dev/null
+++ b/dist/feather/uploadCloud.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.uploadCloud = void 0;
+var uploadCloud = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "16 16 12 12 8 16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "12",
+ "x2": "12",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "16 16 12 12 8 16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.uploadCloud = uploadCloud;
\ No newline at end of file
diff --git a/dist/feather/user.js b/dist/feather/user.js
new file mode 100644
index 000000000..56cb65935
--- /dev/null
+++ b/dist/feather/user.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user = void 0;
+var user = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.user = user;
\ No newline at end of file
diff --git a/dist/feather/userCheck.js b/dist/feather/userCheck.js
new file mode 100644
index 000000000..cca5b1f8f
--- /dev/null
+++ b/dist/feather/userCheck.js
@@ -0,0 +1,38 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userCheck = void 0;
+var userCheck = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8.5",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "17 11 19 13 23 9"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.userCheck = userCheck;
\ No newline at end of file
diff --git a/dist/feather/userMinus.js b/dist/feather/userMinus.js
new file mode 100644
index 000000000..5c95cd304
--- /dev/null
+++ b/dist/feather/userMinus.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userMinus = void 0;
+var userMinus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8.5",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "11",
+ "x2": "17",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.userMinus = userMinus;
\ No newline at end of file
diff --git a/dist/feather/userPlus.js b/dist/feather/userPlus.js
new file mode 100644
index 000000000..449cbd178
--- /dev/null
+++ b/dist/feather/userPlus.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userPlus = void 0;
+var userPlus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8.5",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "20",
+ "y1": "8",
+ "x2": "20",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "11",
+ "x2": "17",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.userPlus = userPlus;
\ No newline at end of file
diff --git a/dist/feather/userX.js b/dist/feather/userX.js
new file mode 100644
index 000000000..d0b7107d4
--- /dev/null
+++ b/dist/feather/userX.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userX = void 0;
+var userX = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "8.5",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "8",
+ "x2": "23",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "8",
+ "x2": "18",
+ "y2": "13"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.userX = userX;
\ No newline at end of file
diff --git a/dist/feather/users.js b/dist/feather/users.js
new file mode 100644
index 000000000..772e7bb37
--- /dev/null
+++ b/dist/feather/users.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.users = void 0;
+var users = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "9",
+ "cy": "7",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M23 21v-2a4 4 0 0 0-3-3.87"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16 3.13a4 4 0 0 1 0 7.75"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.users = users;
\ No newline at end of file
diff --git a/dist/feather/video.js b/dist/feather/video.js
new file mode 100644
index 000000000..a19e60ffd
--- /dev/null
+++ b/dist/feather/video.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.video = void 0;
+var video = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "23 7 16 12 23 17 23 7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "5",
+ "width": "15",
+ "height": "14",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.video = video;
\ No newline at end of file
diff --git a/dist/feather/videoOff.js b/dist/feather/videoOff.js
new file mode 100644
index 000000000..20763717b
--- /dev/null
+++ b/dist/feather/videoOff.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.videoOff = void 0;
+var videoOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.videoOff = videoOff;
\ No newline at end of file
diff --git a/dist/feather/voicemail.js b/dist/feather/voicemail.js
new file mode 100644
index 000000000..320912292
--- /dev/null
+++ b/dist/feather/voicemail.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.voicemail = void 0;
+var voicemail = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "5.5",
+ "cy": "11.5",
+ "r": "4.5"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "18.5",
+ "cy": "11.5",
+ "r": "4.5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "5.5",
+ "y1": "16",
+ "x2": "18.5",
+ "y2": "16"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.voicemail = voicemail;
\ No newline at end of file
diff --git a/dist/feather/volume.js b/dist/feather/volume.js
new file mode 100644
index 000000000..8f0575e18
--- /dev/null
+++ b/dist/feather/volume.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume = void 0;
+var volume = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.volume = volume;
\ No newline at end of file
diff --git a/dist/feather/volume1.js b/dist/feather/volume1.js
new file mode 100644
index 000000000..3a01008ea
--- /dev/null
+++ b/dist/feather/volume1.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume1 = void 0;
+var volume1 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15.54 8.46a5 5 0 0 1 0 7.07"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.volume1 = volume1;
\ No newline at end of file
diff --git a/dist/feather/volume2.js b/dist/feather/volume2.js
new file mode 100644
index 000000000..74bc2c75a
--- /dev/null
+++ b/dist/feather/volume2.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume2 = void 0;
+var volume2 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.volume2 = volume2;
\ No newline at end of file
diff --git a/dist/feather/volumeX.js b/dist/feather/volumeX.js
new file mode 100644
index 000000000..b6f5789f5
--- /dev/null
+++ b/dist/feather/volumeX.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeX = void 0;
+var volumeX = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11 5 6 9 2 9 2 15 6 15 11 19 11 5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "23",
+ "y1": "9",
+ "x2": "17",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "17",
+ "y1": "9",
+ "x2": "23",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.volumeX = volumeX;
\ No newline at end of file
diff --git a/dist/feather/watch.js b/dist/feather/watch.js
new file mode 100644
index 000000000..adaa98009
--- /dev/null
+++ b/dist/feather/watch.js
@@ -0,0 +1,38 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.watch = void 0;
+var watch = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "7"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "12 9 12 12 13.5 13.5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.watch = watch;
\ No newline at end of file
diff --git a/dist/feather/wifi.js b/dist/feather/wifi.js
new file mode 100644
index 000000000..648b3d821
--- /dev/null
+++ b/dist/feather/wifi.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wifi = void 0;
+var wifi = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 12.55a11 11 0 0 1 14.08 0"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M1.42 9a16 16 0 0 1 21.16 0"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M8.53 16.11a6 6 0 0 1 6.95 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "20",
+ "x2": "12",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.wifi = wifi;
\ No newline at end of file
diff --git a/dist/feather/wifiOff.js b/dist/feather/wifiOff.js
new file mode 100644
index 000000000..549ed6f7f
--- /dev/null
+++ b/dist/feather/wifiOff.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wifiOff = void 0;
+var wifiOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16.72 11.06A10.94 10.94 0 0 1 19 12.55"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 12.55a10.94 10.94 0 0 1 5.17-2.39"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M10.71 5.05A16 16 0 0 1 22.58 9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M1.42 9a15.91 15.91 0 0 1 4.7-2.88"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M8.53 16.11a6 6 0 0 1 6.95 0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "12",
+ "y1": "20",
+ "x2": "12",
+ "y2": "20"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.wifiOff = wifiOff;
\ No newline at end of file
diff --git a/dist/feather/wind.js b/dist/feather/wind.js
new file mode 100644
index 000000000..1c7a01737
--- /dev/null
+++ b/dist/feather/wind.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wind = void 0;
+var wind = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.wind = wind;
\ No newline at end of file
diff --git a/dist/feather/x.js b/dist/feather/x.js
new file mode 100644
index 000000000..5863a929a
--- /dev/null
+++ b/dist/feather/x.js
@@ -0,0 +1,36 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.x = void 0;
+var x = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "x1": "18",
+ "y1": "6",
+ "x2": "6",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "6",
+ "y1": "6",
+ "x2": "18",
+ "y2": "18"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.x = x;
\ No newline at end of file
diff --git a/dist/feather/xCircle.js b/dist/feather/xCircle.js
new file mode 100644
index 000000000..09b6f3f0c
--- /dev/null
+++ b/dist/feather/xCircle.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.xCircle = void 0;
+var xCircle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "9",
+ "x2": "9",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "9",
+ "x2": "15",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.xCircle = xCircle;
\ No newline at end of file
diff --git a/dist/feather/xSquare.js b/dist/feather/xSquare.js
new file mode 100644
index 000000000..cc746bdd8
--- /dev/null
+++ b/dist/feather/xSquare.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.xSquare = void 0;
+var xSquare = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "3",
+ "y": "3",
+ "width": "18",
+ "height": "18",
+ "rx": "2",
+ "ry": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "9",
+ "y1": "9",
+ "x2": "15",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "15",
+ "y1": "9",
+ "x2": "9",
+ "y2": "15"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.xSquare = xSquare;
\ No newline at end of file
diff --git a/dist/feather/youtube.js b/dist/feather/youtube.js
new file mode 100644
index 000000000..59c2a6804
--- /dev/null
+++ b/dist/feather/youtube.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.youtube = void 0;
+var youtube = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.youtube = youtube;
\ No newline at end of file
diff --git a/dist/feather/zap.js b/dist/feather/zap.js
new file mode 100644
index 000000000..d3685965c
--- /dev/null
+++ b/dist/feather/zap.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.zap = void 0;
+var zap = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "13 2 3 14 12 14 11 22 21 10 12 10 13 2"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.zap = zap;
\ No newline at end of file
diff --git a/dist/feather/zapOff.js b/dist/feather/zapOff.js
new file mode 100644
index 000000000..487112f10
--- /dev/null
+++ b/dist/feather/zapOff.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.zapOff = void 0;
+var zapOff = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "points": "12.41 6.75 13 2 10.57 4.92"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "18.57 12.91 21 10 15.66 10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "points": "8 8 3 14 12 14 11 22 16 16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.zapOff = zapOff;
\ No newline at end of file
diff --git a/dist/feather/zoomIn.js b/dist/feather/zoomIn.js
new file mode 100644
index 000000000..c399da4fb
--- /dev/null
+++ b/dist/feather/zoomIn.js
@@ -0,0 +1,53 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.zoomIn = void 0;
+var zoomIn = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "11",
+ "cy": "11",
+ "r": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "21",
+ "x2": "16.65",
+ "y2": "16.65"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "11",
+ "y1": "8",
+ "x2": "11",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.zoomIn = zoomIn;
\ No newline at end of file
diff --git a/dist/feather/zoomOut.js b/dist/feather/zoomOut.js
new file mode 100644
index 000000000..90e7fca50
--- /dev/null
+++ b/dist/feather/zoomOut.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.zoomOut = void 0;
+var zoomOut = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "11",
+ "cy": "11",
+ "r": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "21",
+ "y1": "21",
+ "x2": "16.65",
+ "y2": "16.65"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "x1": "8",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }],
+ "attribs": {
+ "fill": "none",
+ "stroke": "currentColor",
+ "stroke-width": "2",
+ "stroke-linecap": "round",
+ "stroke-linejoin": "round"
+ }
+};
+exports.zoomOut = zoomOut;
\ No newline at end of file
diff --git a/dist/horizontalCenter.js b/dist/horizontalCenter.js
new file mode 100644
index 000000000..c426ab0da
--- /dev/null
+++ b/dist/horizontalCenter.js
@@ -0,0 +1,46 @@
+"use strict";
+
+function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.horizontalCenter = exports["default"] = void 0;
+
+var _react = _interopRequireWildcard(require("react"));
+
+function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
+
+function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
+
+function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
+
+var horizontalCenter = function horizontalCenter(Component) {
+ var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
+ _ref$rAlign = _ref.rAlign,
+ rAlign = _ref$rAlign === void 0 ? false : _ref$rAlign,
+ _ref$space = _ref.space,
+ space = _ref$space === void 0 ? 4 : _ref$space;
+
+ return function (props) {
+ return /*#__PURE__*/_react["default"].createElement(Component, props, /*#__PURE__*/_react["default"].createElement("div", {
+ style: {
+ display: 'inline-flex',
+ justifyContent: 'center',
+ 'alignItems': 'center'
+ }
+ }, _react.Children.toArray(props.children).map(function (child, idx) {
+ var spacerField = rAlign ? 'paddingLeft' : 'paddingRight';
+ return /*#__PURE__*/_react["default"].createElement("div", {
+ key: idx,
+ style: _defineProperty({
+ display: 'inline-block'
+ }, spacerField, space)
+ }, child);
+ })));
+ };
+};
+
+exports.horizontalCenter = horizontalCenter;
+var _default = horizontalCenter;
+exports["default"] = _default;
\ No newline at end of file
diff --git a/dist/icomoon/IE.js b/dist/icomoon/IE.js
new file mode 100644
index 000000000..8ba4f792c
--- /dev/null
+++ b/dist/icomoon/IE.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.IE = void 0;
+var IE = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.472 9.825h3.688c0.028-0.256 0.040-0.517 0.040-0.784 0-1.253-0.336-2.429-0.924-3.442 0.607-1.614 0.586-2.984-0.227-3.803-0.773-0.77-2.848-0.645-5.194 0.394-0.174-0.013-0.349-0.020-0.526-0.020-3.22 0-5.921 2.216-6.667 5.201 1.010-1.293 2.072-2.231 3.492-2.913-0.129 0.121-0.882 0.87-1.009 0.996-3.743 3.742-4.923 8.63-3.653 9.9 0.965 0.965 2.715 0.802 4.725-0.182 0.934 0.476 1.992 0.744 3.113 0.744 3.018 0 5.575-1.942 6.501-4.648h-3.717c-0.511 0.943-1.512 1.586-2.66 1.586s-2.148-0.642-2.66-1.586c-0.227-0.426-0.358-0.915-0.358-1.432v-0.011h6.035zM5.442 8.013c0.085-1.517 1.347-2.728 2.887-2.728s2.802 1.21 2.887 2.728h-5.774zM14.015 2.559c0.524 0.529 0.511 1.503 0.063 2.719-0.768-1.17-1.883-2.093-3.2-2.619 1.408-0.604 2.553-0.684 3.137-0.1zM1.461 15.113c-0.668-0.669-0.467-2.072 0.394-3.763 0.536 1.504 1.581 2.767 2.927 3.581-1.491 0.677-2.712 0.792-3.321 0.182z"
+ }
+ }]
+};
+exports.IE = IE;
\ No newline at end of file
diff --git a/dist/icomoon/IcoMoon.js b/dist/icomoon/IcoMoon.js
new file mode 100644
index 000000000..177d94be4
--- /dev/null
+++ b/dist/icomoon/IcoMoon.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.IcoMoon = void 0;
+var IcoMoon = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.055 8c0-1.022 0.829-1.851 1.851-1.851s1.851 0.829 1.851 1.851c0 1.022-0.829 1.851-1.851 1.851s-1.851-0.829-1.851-1.851zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM5.928 14.989c-2.406-1.4-4.023-4.005-4.023-6.989s1.617-5.589 4.023-6.989c2.406 1.399 4.025 4.005 4.025 6.989s-1.618 5.589-4.025 6.989z"
+ }
+ }]
+};
+exports.IcoMoon = IcoMoon;
\ No newline at end of file
diff --git a/dist/icomoon/accessibility.js b/dist/icomoon/accessibility.js
new file mode 100644
index 000000000..081a2ec23
--- /dev/null
+++ b/dist/icomoon/accessibility.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.accessibility = void 0;
+var accessibility = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 5l5.15-2.221-0.371-0.929-6.279 2.15h-1l-6.279-2.15-0.371 0.929 5.15 2.221v4l-2.051 6.634 0.935 0.355 2.902-6.489h0.429l2.902 6.489 0.935-0.355-2.051-6.634z"
+ }
+ }]
+};
+exports.accessibility = accessibility;
\ No newline at end of file
diff --git a/dist/icomoon/addressBook.js b/dist/icomoon/addressBook.js
new file mode 100644
index 000000000..f81be6198
--- /dev/null
+++ b/dist/icomoon/addressBook.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.addressBook = void 0;
+var addressBook = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 0v16h12v-16h-12zM9 4.005c1.102 0 1.995 0.893 1.995 1.995s-0.893 1.995-1.995 1.995-1.995-0.893-1.995-1.995 0.893-1.995 1.995-1.995v0zM12 12h-6v-1c0-1.105 0.895-2 2-2v0h2c1.105 0 2 0.895 2 2v1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 1h1.5v3h-1.5v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 5h1.5v3h-1.5v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 9h1.5v3h-1.5v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 13h1.5v3h-1.5v-3z"
+ }
+ }]
+};
+exports.addressBook = addressBook;
\ No newline at end of file
diff --git a/dist/icomoon/aidKit.js b/dist/icomoon/aidKit.js
new file mode 100644
index 000000000..350776227
--- /dev/null
+++ b/dist/icomoon/aidKit.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.aidKit = void 0;
+var aidKit = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 4h-3v-2c0-0.55-0.45-1-1-1h-4c-0.55 0-1 0.45-1 1v2h-3c-1.1 0-2 0.9-2 2v8c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-8c0-1.1-0.9-2-2-2zM6 2h4v2h-4v-2zM12 11h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z"
+ }
+ }]
+};
+exports.aidKit = aidKit;
\ No newline at end of file
diff --git a/dist/icomoon/airplane.js b/dist/icomoon/airplane.js
new file mode 100644
index 000000000..d434cc09d
--- /dev/null
+++ b/dist/icomoon/airplane.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.airplane = void 0;
+var airplane = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 9.999l-2.857-2.857 6.857-5.143-2-2-8.571 3.429-2.698-2.699c-0.778-0.778-1.864-0.964-2.414-0.414s-0.364 1.636 0.414 2.414l2.698 2.698-3.429 8.572 2 2 5.144-6.857 2.857 2.857v4h2l1-3 3-1v-2l-4 0z"
+ }
+ }]
+};
+exports.airplane = airplane;
\ No newline at end of file
diff --git a/dist/icomoon/alarm.js b/dist/icomoon/alarm.js
new file mode 100644
index 000000000..391594f87
--- /dev/null
+++ b/dist/icomoon/alarm.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alarm = void 0;
+var alarm = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 2c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.134-7-7-7zM8 14.625c-3.107 0-5.625-2.518-5.625-5.625s2.518-5.625 5.625-5.625c3.107 0 5.625 2.518 5.625 5.625s-2.518 5.625-5.625 5.625zM14.606 4.487c0.251-0.438 0.394-0.946 0.394-1.487 0-1.657-1.343-3-3-3-0.966 0-1.825 0.457-2.374 1.166 2.061 0.426 3.831 1.644 4.98 3.322v0zM6.374 1.166c-0.549-0.709-1.408-1.166-2.374-1.166-1.657 0-3 1.343-3 3 0 0.541 0.143 1.049 0.394 1.487 1.148-1.678 2.919-2.896 4.98-3.322z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 9v-4h-1v5h4v-1z"
+ }
+ }]
+};
+exports.alarm = alarm;
\ No newline at end of file
diff --git a/dist/icomoon/amazon.js b/dist/icomoon/amazon.js
new file mode 100644
index 000000000..f1a5fd133
--- /dev/null
+++ b/dist/icomoon/amazon.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.amazon = void 0;
+var amazon = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.463 13.831c-1.753 1.294-4.291 1.981-6.478 1.981-3.066 0-5.825-1.131-7.912-3.019-0.163-0.147-0.019-0.35 0.178-0.234 2.253 1.313 5.041 2.1 7.919 2.1 1.941 0 4.075-0.403 6.041-1.238 0.294-0.125 0.544 0.197 0.253 0.409z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.191 13c-0.225-0.287-1.481-0.137-2.047-0.069-0.172 0.019-0.197-0.128-0.044-0.238 1.003-0.703 2.647-0.5 2.838-0.266 0.194 0.238-0.050 1.884-0.991 2.672-0.144 0.122-0.281 0.056-0.219-0.103 0.216-0.528 0.688-1.709 0.463-1.997z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.053 11.838l0.003 0.003c0.387-0.341 1.084-0.95 1.478-1.278 0.156-0.125 0.128-0.334 0.006-0.509-0.353-0.488-0.728-0.884-0.728-1.784v-3c0-1.272 0.088-2.438-0.847-3.313-0.738-0.706-1.963-0.956-2.9-0.956-1.831 0-3.875 0.684-4.303 2.947-0.047 0.241 0.131 0.369 0.287 0.403l1.866 0.203c0.175-0.009 0.3-0.181 0.334-0.356 0.159-0.778 0.813-1.156 1.547-1.156 0.397 0 0.847 0.144 1.081 0.5 0.269 0.397 0.234 0.938 0.234 1.397v0.25c-1.116 0.125-2.575 0.206-3.619 0.666-1.206 0.522-2.053 1.584-2.053 3.147 0 2 1.259 3 2.881 3 1.369 0 2.116-0.322 3.172-1.403 0.35 0.506 0.463 0.753 1.103 1.284 0.147 0.078 0.328 0.072 0.456-0.044zM9.113 7.144c0 0.75 0.019 1.375-0.359 2.041-0.306 0.544-0.791 0.875-1.331 0.875-0.737 0-1.169-0.563-1.169-1.394 0-1.641 1.472-1.938 2.863-1.938v0.416z"
+ }
+ }]
+};
+exports.amazon = amazon;
\ No newline at end of file
diff --git a/dist/icomoon/android.js b/dist/icomoon/android.js
new file mode 100644
index 000000000..045029bb9
--- /dev/null
+++ b/dist/icomoon/android.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.android = void 0;
+var android = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 6c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1zM2 6c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1zM3.5 11.5c0 0.828 0.672 1.5 1.5 1.5v0 2c0 0.55 0.45 1 1 1s1-0.45 1-1v-2h2v2c0 0.55 0.45 1 1 1s1-0.45 1-1v-2c0.828 0 1.5-0.672 1.5-1.5v-5.5h-9v5.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.472 5c-0.152-1.373-0.922-2.559-2.025-3.276l0.5-1.001c0.123-0.247 0.023-0.547-0.224-0.671s-0.547-0.023-0.671 0.224l-0.502 1.004-0.13-0.052c-0.446-0.148-0.924-0.229-1.42-0.229s-0.974 0.081-1.42 0.229l-0.13 0.052-0.502-1.004c-0.123-0.247-0.424-0.347-0.671-0.224s-0.347 0.424-0.224 0.671l0.5 1.001c-1.103 0.716-1.873 1.903-2.025 3.276v0.5h8.972v-0.5h-0.028zM6.5 4c-0.276 0-0.5-0.224-0.5-0.5s0.223-0.499 0.499-0.5c0 0 0.001 0 0.001 0s0.001-0 0.001-0c0.276 0.001 0.499 0.224 0.499 0.5s-0.224 0.5-0.5 0.5zM9.5 4c-0.276 0-0.5-0.224-0.5-0.5s0.223-0.499 0.499-0.5c0 0 0.001 0 0.001 0s0.001-0 0.002-0c0.276 0.001 0.499 0.224 0.499 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.android = android;
\ No newline at end of file
diff --git a/dist/icomoon/angry.js b/dist/icomoon/angry.js
new file mode 100644
index 000000000..2b910f637
--- /dev/null
+++ b/dist/icomoon/angry.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angry = void 0;
+var angry = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772zM11.985 4.379c0.067 0.268-0.096 0.539-0.364 0.606-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054 0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606z"
+ }
+ }]
+};
+exports.angry = angry;
\ No newline at end of file
diff --git a/dist/icomoon/angry2.js b/dist/icomoon/angry2.js
new file mode 100644
index 000000000..3cbabbd55
--- /dev/null
+++ b/dist/icomoon/angry2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.angry2 = void 0;
+var angry2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM9.001 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772z"
+ }
+ }]
+};
+exports.angry2 = angry2;
\ No newline at end of file
diff --git a/dist/icomoon/appleinc.js b/dist/icomoon/appleinc.js
new file mode 100644
index 000000000..fb5dab44b
--- /dev/null
+++ b/dist/icomoon/appleinc.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.appleinc = void 0;
+var appleinc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.367 8.501c-0.020-2.026 1.652-2.998 1.727-3.046-0.94-1.375-2.404-1.564-2.926-1.585-1.246-0.126-2.431 0.734-3.064 0.734-0.631 0-1.607-0.715-2.64-0.696-1.358 0.020-2.61 0.79-3.31 2.006-1.411 2.448-0.361 6.076 1.014 8.061 0.672 0.972 1.473 2.064 2.525 2.025 1.013-0.040 1.396-0.656 2.621-0.656s1.569 0.656 2.641 0.635c1.090-0.020 1.781-0.991 2.448-1.966 0.772-1.128 1.089-2.219 1.108-2.275-0.024-0.011-2.126-0.816-2.147-3.236zM10.353 2.555c0.558-0.677 0.935-1.617 0.832-2.555-0.804 0.033-1.779 0.536-2.356 1.212-0.518 0.6-0.971 1.557-0.85 2.476 0.898 0.070 1.815-0.456 2.373-1.132z"
+ }
+ }]
+};
+exports.appleinc = appleinc;
\ No newline at end of file
diff --git a/dist/icomoon/arrowDown.js b/dist/icomoon/arrowDown.js
new file mode 100644
index 000000000..9fa5bea76
--- /dev/null
+++ b/dist/icomoon/arrowDown.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDown = void 0;
+var arrowDown = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 15.5l7.5-7.5h-4.5v-8h-6v8h-4.5z"
+ }
+ }]
+};
+exports.arrowDown = arrowDown;
\ No newline at end of file
diff --git a/dist/icomoon/arrowDown2.js b/dist/icomoon/arrowDown2.js
new file mode 100644
index 000000000..672e6628f
--- /dev/null
+++ b/dist/icomoon/arrowDown2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDown2 = void 0;
+var arrowDown2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.707 9.707l-5 5c-0.39 0.391-1.024 0.391-1.414 0l-5-5c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l3.293 3.293v-9.586c0-0.552 0.448-1 1-1s1 0.448 1 1v9.586l3.293-3.293c0.195-0.195 0.451-0.293 0.707-0.293s0.512 0.098 0.707 0.293c0.391 0.391 0.391 1.024 0 1.414z"
+ }
+ }]
+};
+exports.arrowDown2 = arrowDown2;
\ No newline at end of file
diff --git a/dist/icomoon/arrowDownLeft.js b/dist/icomoon/arrowDownLeft.js
new file mode 100644
index 000000000..4adeedbc4
--- /dev/null
+++ b/dist/icomoon/arrowDownLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDownLeft = void 0;
+var arrowDownLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 16l-4-4 8.5-8.5-3.5-3.5-8.5 8.5-4-4v11.5h11.5z"
+ }
+ }]
+};
+exports.arrowDownLeft = arrowDownLeft;
\ No newline at end of file
diff --git a/dist/icomoon/arrowDownLeft2.js b/dist/icomoon/arrowDownLeft2.js
new file mode 100644
index 000000000..171e151e6
--- /dev/null
+++ b/dist/icomoon/arrowDownLeft2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDownLeft2 = void 0;
+var arrowDownLeft2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.293 2.293l-8.293 8.293v-3.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v6c0 0.404 0.244 0.769 0.617 0.924 0.124 0.051 0.254 0.076 0.383 0.076v0.001l6-0c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3.586l8.293-8.293c0.195-0.195 0.293-0.451 0.293-0.707s-0.098-0.512-0.293-0.707c-0.39-0.391-1.024-0.391-1.414 0v0z"
+ }
+ }]
+};
+exports.arrowDownLeft2 = arrowDownLeft2;
\ No newline at end of file
diff --git a/dist/icomoon/arrowDownRight.js b/dist/icomoon/arrowDownRight.js
new file mode 100644
index 000000000..4c03dabab
--- /dev/null
+++ b/dist/icomoon/arrowDownRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDownRight = void 0;
+var arrowDownRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 4.5l-4 4-8.5-8.5-3.5 3.5 8.5 8.5-4 4h11.5v-11.5z"
+ }
+ }]
+};
+exports.arrowDownRight = arrowDownRight;
\ No newline at end of file
diff --git a/dist/icomoon/arrowDownRight2.js b/dist/icomoon/arrowDownRight2.js
new file mode 100644
index 000000000..49e7b68a7
--- /dev/null
+++ b/dist/icomoon/arrowDownRight2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDownRight2 = void 0;
+var arrowDownRight2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.293 3.707l8.293 8.293h-3.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h6c0.404 0 0.769-0.244 0.924-0.617 0.051-0.124 0.076-0.254 0.076-0.383h0.001v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1v3.586l-8.293-8.293c-0.195-0.195-0.451-0.293-0.707-0.293s-0.512 0.098-0.707 0.293c-0.391 0.39-0.391 1.024 0 1.414z"
+ }
+ }]
+};
+exports.arrowDownRight2 = arrowDownRight2;
\ No newline at end of file
diff --git a/dist/icomoon/arrowLeft.js b/dist/icomoon/arrowLeft.js
new file mode 100644
index 000000000..4bd4c31fd
--- /dev/null
+++ b/dist/icomoon/arrowLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowLeft = void 0;
+var arrowLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.5 8l7.5 7.5v-4.5h8v-6h-8v-4.5z"
+ }
+ }]
+};
+exports.arrowLeft = arrowLeft;
\ No newline at end of file
diff --git a/dist/icomoon/arrowLeft2.js b/dist/icomoon/arrowLeft2.js
new file mode 100644
index 000000000..097666424
--- /dev/null
+++ b/dist/icomoon/arrowLeft2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowLeft2 = void 0;
+var arrowLeft2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.293 13.707l-5-5c-0.391-0.39-0.391-1.024 0-1.414l5-5c0.391-0.391 1.024-0.391 1.414 0s0.391 1.024 0 1.414l-3.293 3.293h9.586c0.552 0 1 0.448 1 1s-0.448 1-1 1h-9.586l3.293 3.293c0.195 0.195 0.293 0.451 0.293 0.707s-0.098 0.512-0.293 0.707c-0.391 0.391-1.024 0.391-1.414 0z"
+ }
+ }]
+};
+exports.arrowLeft2 = arrowLeft2;
\ No newline at end of file
diff --git a/dist/icomoon/arrowRight.js b/dist/icomoon/arrowRight.js
new file mode 100644
index 000000000..6b1ad512a
--- /dev/null
+++ b/dist/icomoon/arrowRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowRight = void 0;
+var arrowRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.5 8l-7.5-7.5v4.5h-8v6h8v4.5z"
+ }
+ }]
+};
+exports.arrowRight = arrowRight;
\ No newline at end of file
diff --git a/dist/icomoon/arrowRight2.js b/dist/icomoon/arrowRight2.js
new file mode 100644
index 000000000..f36fa2cc2
--- /dev/null
+++ b/dist/icomoon/arrowRight2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowRight2 = void 0;
+var arrowRight2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.707 13.707l5-5c0.391-0.39 0.391-1.024 0-1.414l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l3.293 3.293h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.195 0.195-0.293 0.451-0.293 0.707s0.098 0.512 0.293 0.707c0.391 0.391 1.024 0.391 1.414 0z"
+ }
+ }]
+};
+exports.arrowRight2 = arrowRight2;
\ No newline at end of file
diff --git a/dist/icomoon/arrowUp.js b/dist/icomoon/arrowUp.js
new file mode 100644
index 000000000..52926f8e7
--- /dev/null
+++ b/dist/icomoon/arrowUp.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUp = void 0;
+var arrowUp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0.5l-7.5 7.5h4.5v8h6v-8h4.5z"
+ }
+ }]
+};
+exports.arrowUp = arrowUp;
\ No newline at end of file
diff --git a/dist/icomoon/arrowUp2.js b/dist/icomoon/arrowUp2.js
new file mode 100644
index 000000000..9f1ec1ae8
--- /dev/null
+++ b/dist/icomoon/arrowUp2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUp2 = void 0;
+var arrowUp2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.707 6.293l-5-5c-0.39-0.391-1.024-0.391-1.414 0l-5 5c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l3.293-3.293v9.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-9.586l3.293 3.293c0.195 0.195 0.451 0.293 0.707 0.293s0.512-0.098 0.707-0.293c0.391-0.391 0.391-1.024 0-1.414z"
+ }
+ }]
+};
+exports.arrowUp2 = arrowUp2;
\ No newline at end of file
diff --git a/dist/icomoon/arrowUpLeft.js b/dist/icomoon/arrowUpLeft.js
new file mode 100644
index 000000000..f4a8fda5a
--- /dev/null
+++ b/dist/icomoon/arrowUpLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUpLeft = void 0;
+var arrowUpLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 11.5l4-4 8.5 8.5 3.5-3.5-8.5-8.5 4-4h-11.5v11.5z"
+ }
+ }]
+};
+exports.arrowUpLeft = arrowUpLeft;
\ No newline at end of file
diff --git a/dist/icomoon/arrowUpLeft2.js b/dist/icomoon/arrowUpLeft2.js
new file mode 100644
index 000000000..e0bd6ce74
--- /dev/null
+++ b/dist/icomoon/arrowUpLeft2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUpLeft2 = void 0;
+var arrowUpLeft2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.707 12.293l-8.293-8.293h3.586c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.404 0-0.769 0.244-0.924 0.617-0.051 0.124-0.076 0.254-0.076 0.383h-0.001v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-3.586l8.293 8.293c0.195 0.195 0.451 0.293 0.707 0.293s0.512-0.098 0.707-0.293c0.391-0.39 0.391-1.024 0-1.414z"
+ }
+ }]
+};
+exports.arrowUpLeft2 = arrowUpLeft2;
\ No newline at end of file
diff --git a/dist/icomoon/arrowUpRight.js b/dist/icomoon/arrowUpRight.js
new file mode 100644
index 000000000..a4bc65aa9
--- /dev/null
+++ b/dist/icomoon/arrowUpRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUpRight = void 0;
+var arrowUpRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 0l4 4-8.5 8.5 3.5 3.5 8.5-8.5 4 4v-11.5h-11.5z"
+ }
+ }]
+};
+exports.arrowUpRight = arrowUpRight;
\ No newline at end of file
diff --git a/dist/icomoon/arrowUpRight2.js b/dist/icomoon/arrowUpRight2.js
new file mode 100644
index 000000000..6150da5b3
--- /dev/null
+++ b/dist/icomoon/arrowUpRight2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUpRight2 = void 0;
+var arrowUpRight2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.707 13.707l8.293-8.293v3.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.404-0.244-0.769-0.617-0.924-0.124-0.051-0.254-0.076-0.383-0.076v-0.001h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1h3.586l-8.293 8.293c-0.195 0.195-0.293 0.451-0.293 0.707s0.098 0.512 0.293 0.707c0.39 0.391 1.024 0.391 1.414 0z"
+ }
+ }]
+};
+exports.arrowUpRight2 = arrowUpRight2;
\ No newline at end of file
diff --git a/dist/icomoon/attachment.js b/dist/icomoon/attachment.js
new file mode 100644
index 000000000..037202431
--- /dev/null
+++ b/dist/icomoon/attachment.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.attachment = void 0;
+var attachment = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.404 5.11l-1.015-1.014-5.075 5.074c-0.841 0.841-0.841 2.204 0 3.044s2.204 0.841 3.045 0l6.090-6.089c1.402-1.401 1.402-3.673 0-5.074s-3.674-1.402-5.075 0l-6.394 6.393c-0.005 0.005-0.010 0.009-0.014 0.013-1.955 1.955-1.955 5.123 0 7.077s5.123 1.954 7.078 0c0.004-0.004 0.008-0.009 0.013-0.014l0.001 0.001 4.365-4.364-1.015-1.014-4.365 4.363c-0.005 0.004-0.009 0.009-0.013 0.013-1.392 1.392-3.656 1.392-5.048 0s-1.392-3.655 0-5.047c0.005-0.005 0.009-0.009 0.014-0.013l-0.001-0.001 6.395-6.393c0.839-0.84 2.205-0.84 3.045 0s0.839 2.205 0 3.044l-6.090 6.089c-0.28 0.28-0.735 0.28-1.015 0s-0.28-0.735 0-1.014l5.075-5.075z"
+ }
+ }]
+};
+exports.attachment = attachment;
\ No newline at end of file
diff --git a/dist/icomoon/backward.js b/dist/icomoon/backward.js
new file mode 100644
index 000000000..5a33115c5
--- /dev/null
+++ b/dist/icomoon/backward.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.backward = void 0;
+var backward = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11 10.5l-3.5-2.5 3.5-2.5zM7 10.5l-3.5-2.5 3.5-2.5z"
+ }
+ }]
+};
+exports.backward = backward;
\ No newline at end of file
diff --git a/dist/icomoon/backward2.js b/dist/icomoon/backward2.js
new file mode 100644
index 000000000..381948d4c
--- /dev/null
+++ b/dist/icomoon/backward2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.backward2 = void 0;
+var backward2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 2.5v5l5-5v11l-5-5v5l-5.5-5.5z"
+ }
+ }]
+};
+exports.backward2 = backward2;
\ No newline at end of file
diff --git a/dist/icomoon/baffled.js b/dist/icomoon/baffled.js
new file mode 100644
index 000000000..81edf6943
--- /dev/null
+++ b/dist/icomoon/baffled.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.baffled = void 0;
+var baffled = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM5.5 4c-1.378 0-2.5 1.122-2.5 2.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5-1.122-2.5-2.5-2.5v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM10.5 4c-1.379 0-2.5 1.122-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.122 2.5-2.5-1.121-2.5-2.5-2.5v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 11h4v1h-4v-1z"
+ }
+ }]
+};
+exports.baffled = baffled;
\ No newline at end of file
diff --git a/dist/icomoon/baffled2.js b/dist/icomoon/baffled2.js
new file mode 100644
index 000000000..da3557974
--- /dev/null
+++ b/dist/icomoon/baffled2.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.baffled2 = void 0;
+var baffled2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4 6.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5zM10 12h-4v-1h4v1zM10.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z"
+ }
+ }]
+};
+exports.baffled2 = baffled2;
\ No newline at end of file
diff --git a/dist/icomoon/barcode.js b/dist/icomoon/barcode.js
new file mode 100644
index 000000000..8fdcf008b
--- /dev/null
+++ b/dist/icomoon/barcode.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.barcode = void 0;
+var barcode = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 2h2v10h-2zM3 2h1v10h-1zM5 2h1v10h-1zM8 2h1v10h-1zM12 2h1v10h-1zM15 2h1v10h-1zM10 2h0.5v10h-0.5zM7 2h0.5v10h-0.5zM13.5 2h0.5v10h-0.5zM0 13h1v1h-1zM3 13h1v1h-1zM5 13h1v1h-1zM10 13h1v1h-1zM15 13h1v1h-1zM12 13h2v1h-2zM7 13h2v1h-2z"
+ }
+ }]
+};
+exports.barcode = barcode;
\ No newline at end of file
diff --git a/dist/icomoon/basecamp.js b/dist/icomoon/basecamp.js
new file mode 100644
index 000000000..35c8add44
--- /dev/null
+++ b/dist/icomoon/basecamp.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basecamp = void 0;
+var basecamp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1.666c-2.919 0-5.169 2.444-6.444 4.838-0.719 1.347-1.222 2.822-1.453 4.331-0.025 0.172-0.050 0.344-0.069 0.519-0.009 0.094-0.019 0.188-0.025 0.281-0.009 0.119-0.003 0.156 0.059 0.256 0.187 0.303 0.409 0.584 0.659 0.838 0.512 0.525 1.134 0.928 1.794 1.241 1.503 0.709 3.2 0.966 4.85 1.022 1.703 0.056 3.453-0.084 5.081-0.616 1.391-0.453 2.731-1.244 3.503-2.522 0.084-0.137 0.025-0.341 0.009-0.5-0.019-0.191-0.044-0.378-0.075-0.566-0.056-0.369-0.131-0.731-0.222-1.094-0.181-0.738-0.428-1.463-0.728-2.159-1.088-2.525-3.1-5.219-5.963-5.775-0.322-0.063-0.65-0.094-0.978-0.094zM8.1 13.909c-1.784 0-3.728-0.159-5.334-1.019-0.625-0.334-1.262-0.819-1.563-1.484-0.087-0.194-0.056-0.269-0.016-0.497 0.028-0.147 0.041-0.291 0.106-0.428 0.091-0.191 0.184-0.378 0.281-0.566 0.328-0.634 0.681-1.262 1.091-1.853 0.203-0.291 0.419-0.578 0.669-0.828 0.175-0.175 0.388-0.362 0.634-0.422 0.756-0.181 1.334 0.694 1.794 1.134 0.222 0.213 0.519 0.453 0.85 0.412 0.228-0.028 0.431-0.206 0.594-0.353 0.553-0.497 0.997-1.112 1.456-1.691 0.228-0.284 0.453-0.572 0.7-0.844 0.166-0.184 0.347-0.394 0.569-0.513 0.397-0.216 0.903 0.228 1.178 0.456 0.469 0.391 0.884 0.847 1.281 1.309 0.378 0.441 0.744 0.888 1.066 1.372 0.497 0.75 0.928 1.55 1.322 2.359 0.084 0.175 0.113 0.294 0.144 0.488 0.019 0.106 0.059 0.228 0.044 0.338-0.022 0.153-0.128 0.319-0.206 0.444-0.188 0.297-0.441 0.553-0.719 0.769-1.166 0.903-2.744 1.203-4.178 1.338-0.588 0.056-1.175 0.078-1.762 0.078z"
+ }
+ }]
+};
+exports.basecamp = basecamp;
\ No newline at end of file
diff --git a/dist/icomoon/behance.js b/dist/icomoon/behance.js
new file mode 100644
index 000000000..79a65c4b9
--- /dev/null
+++ b/dist/icomoon/behance.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.behance = void 0;
+var behance = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.641 3.206c0.472 0 0.897 0.041 1.284 0.125 0.388 0.081 0.716 0.219 0.994 0.406 0.275 0.188 0.487 0.438 0.644 0.75 0.15 0.309 0.225 0.697 0.225 1.156 0 0.497-0.112 0.909-0.338 1.241-0.228 0.331-0.559 0.6-1.003 0.813 0.606 0.175 1.053 0.481 1.353 0.916 0.3 0.438 0.444 0.963 0.444 1.581 0 0.5-0.097 0.928-0.287 1.291-0.194 0.366-0.456 0.662-0.778 0.891-0.325 0.231-0.7 0.4-1.119 0.509-0.416 0.109-0.844 0.166-1.287 0.166h-4.772v-9.844h4.641zM4.359 7.181c0.384 0 0.703-0.091 0.953-0.275 0.25-0.181 0.369-0.481 0.369-0.894 0-0.228-0.041-0.419-0.122-0.566-0.084-0.147-0.194-0.263-0.334-0.344-0.138-0.084-0.294-0.141-0.478-0.172-0.178-0.034-0.366-0.050-0.556-0.050h-2.025v2.3h2.194zM4.478 11.372c0.213 0 0.416-0.019 0.606-0.063 0.194-0.044 0.366-0.109 0.509-0.209 0.144-0.097 0.266-0.225 0.353-0.394 0.088-0.166 0.128-0.378 0.128-0.637 0-0.506-0.144-0.869-0.428-1.088-0.284-0.216-0.662-0.322-1.131-0.322h-2.35v2.709h2.313z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.331 11.338c0.294 0.287 0.716 0.431 1.266 0.431 0.394 0 0.738-0.1 1.022-0.3s0.456-0.412 0.522-0.631h1.725c-0.278 0.859-0.697 1.469-1.272 1.838-0.566 0.369-1.259 0.556-2.063 0.556-0.563 0-1.066-0.091-1.519-0.269-0.453-0.181-0.831-0.434-1.15-0.766-0.309-0.331-0.553-0.725-0.725-1.188-0.169-0.459-0.256-0.969-0.256-1.519 0-0.534 0.088-1.031 0.262-1.491 0.178-0.463 0.422-0.859 0.747-1.194s0.706-0.6 1.156-0.794c0.447-0.194 0.941-0.291 1.488-0.291 0.603 0 1.131 0.116 1.584 0.353 0.45 0.234 0.822 0.55 1.113 0.944s0.497 0.847 0.625 1.353c0.128 0.506 0.172 1.034 0.137 1.588h-5.147c0 0.559 0.188 1.094 0.484 1.378zM13.578 7.594c-0.231-0.256-0.628-0.397-1.106-0.397-0.313 0-0.572 0.053-0.778 0.159-0.203 0.106-0.369 0.237-0.497 0.394-0.125 0.156-0.213 0.325-0.262 0.503-0.050 0.172-0.081 0.331-0.091 0.469h3.188c-0.047-0.5-0.219-0.869-0.453-1.128z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.444 4h3.991v0.972h-3.991v-0.972z"
+ }
+ }]
+};
+exports.behance = behance;
\ No newline at end of file
diff --git a/dist/icomoon/behance2.js b/dist/icomoon/behance2.js
new file mode 100644
index 000000000..f5a6f9e9e
--- /dev/null
+++ b/dist/icomoon/behance2.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.behance2 = void 0;
+var behance2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.316 7.009c0.203-0.147 0.3-0.391 0.3-0.728 0-0.188-0.031-0.341-0.097-0.459-0.069-0.119-0.156-0.213-0.272-0.278-0.112-0.069-0.241-0.116-0.388-0.141-0.144-0.028-0.297-0.041-0.453-0.041h-1.647v1.869h1.781c0.313 0.003 0.572-0.072 0.775-0.222z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.594 8.697c-0.231-0.175-0.537-0.262-0.919-0.262h-1.916v2.203h1.878c0.175 0 0.338-0.016 0.494-0.050s0.297-0.088 0.416-0.169c0.119-0.078 0.216-0.184 0.287-0.319s0.106-0.309 0.106-0.519c0-0.412-0.116-0.706-0.347-0.884z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM10.488 4.209h3.241v0.791h-3.241v-0.791zM8.463 10.725c-0.156 0.297-0.369 0.537-0.631 0.725-0.266 0.188-0.569 0.325-0.909 0.416-0.338 0.091-0.688 0.134-1.044 0.134h-3.878v-7.997h3.769c0.381 0 0.728 0.034 1.044 0.1 0.313 0.066 0.581 0.178 0.806 0.331 0.222 0.153 0.397 0.356 0.522 0.609 0.122 0.25 0.184 0.566 0.184 0.938 0 0.403-0.091 0.737-0.275 1.006s-0.453 0.487-0.816 0.659c0.494 0.141 0.856 0.391 1.097 0.744 0.244 0.356 0.363 0.784 0.363 1.284 0.003 0.409-0.075 0.759-0.231 1.050zM14.991 9.488h-4.178c0 0.456 0.156 0.891 0.394 1.125 0.238 0.231 0.581 0.35 1.028 0.35 0.322 0 0.597-0.081 0.831-0.244 0.231-0.162 0.372-0.334 0.425-0.512h1.4c-0.225 0.697-0.566 1.194-1.031 1.494-0.459 0.3-1.022 0.45-1.675 0.45-0.456 0-0.866-0.075-1.234-0.219-0.369-0.147-0.675-0.353-0.934-0.622-0.253-0.269-0.447-0.591-0.588-0.966-0.137-0.372-0.209-0.787-0.209-1.234 0-0.434 0.072-0.838 0.213-1.213 0.144-0.375 0.344-0.7 0.606-0.969 0.262-0.272 0.575-0.487 0.938-0.647 0.363-0.156 0.762-0.234 1.206-0.234 0.491 0 0.919 0.094 1.287 0.287 0.366 0.191 0.666 0.447 0.903 0.769s0.403 0.688 0.509 1.1c0.103 0.406 0.137 0.834 0.109 1.284z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.134 7.247c-0.253 0-0.466 0.044-0.631 0.131s-0.3 0.194-0.403 0.319c-0.103 0.128-0.172 0.263-0.213 0.409-0.041 0.141-0.066 0.269-0.072 0.381h2.588c-0.037-0.406-0.178-0.706-0.366-0.916-0.194-0.213-0.512-0.325-0.903-0.325z"
+ }
+ }]
+};
+exports.behance2 = behance2;
\ No newline at end of file
diff --git a/dist/icomoon/bell.js b/dist/icomoon/bell.js
new file mode 100644
index 000000000..7b6717876
--- /dev/null
+++ b/dist/icomoon/bell.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bell = void 0;
+var bell = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16.023 12.5c0-4.5-4-3.5-4-7 0-0.29-0.028-0.538-0.079-0.749-0.263-1.766-1.44-3.183-2.965-3.615 0.014-0.062 0.021-0.125 0.021-0.191 0-0.52-0.45-0.945-1-0.945s-1 0.425-1 0.945c0 0.065 0.007 0.129 0.021 0.191-1.71 0.484-2.983 2.208-3.020 4.273-0.001 0.030-0.001 0.060-0.001 0.091 0 3.5-4 2.5-4 7 0 1.191 2.665 2.187 6.234 2.439 0.336 0.631 1.001 1.061 1.766 1.061s1.43-0.43 1.766-1.061c3.568-0.251 6.234-1.248 6.234-2.439 0-0.004-0-0.007-0-0.011l0.024 0.011zM12.91 13.345c-0.847 0.226-1.846 0.389-2.918 0.479-0.089-1.022-0.947-1.824-1.992-1.824s-1.903 0.802-1.992 1.824c-1.072-0.090-2.071-0.253-2.918-0.479-1.166-0.311-1.724-0.659-1.928-0.845 0.204-0.186 0.762-0.534 1.928-0.845 1.356-0.362 3.1-0.561 4.91-0.561s3.554 0.199 4.91 0.561c1.166 0.311 1.724 0.659 1.928 0.845-0.204 0.186-0.762 0.534-1.928 0.845z"
+ }
+ }]
+};
+exports.bell = bell;
\ No newline at end of file
diff --git a/dist/icomoon/bin.js b/dist/icomoon/bin.js
new file mode 100644
index 000000000..e5807ff81
--- /dev/null
+++ b/dist/icomoon/bin.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bin = void 0;
+var bin = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 5v10c0 0.55 0.45 1 1 1h9c0.55 0 1-0.45 1-1v-10h-11zM5 14h-1v-7h1v7zM7 14h-1v-7h1v7zM9 14h-1v-7h1v7zM11 14h-1v-7h1v7z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.25 2h-3.25v-1.25c0-0.412-0.338-0.75-0.75-0.75h-3.5c-0.412 0-0.75 0.338-0.75 0.75v1.25h-3.25c-0.413 0-0.75 0.337-0.75 0.75v1.25h13v-1.25c0-0.413-0.338-0.75-0.75-0.75zM9 2h-3v-0.987h3v0.987z"
+ }
+ }]
+};
+exports.bin = bin;
\ No newline at end of file
diff --git a/dist/icomoon/bin2.js b/dist/icomoon/bin2.js
new file mode 100644
index 000000000..981a70d61
--- /dev/null
+++ b/dist/icomoon/bin2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bin2 = void 0;
+var bin2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 16h10l1-11h-12zM10 2v-2h-4v2h-5v3l1-1h12l1 1v-3h-5zM9 2h-2v-1h2v1z"
+ }
+ }]
+};
+exports.bin2 = bin2;
\ No newline at end of file
diff --git a/dist/icomoon/binoculars.js b/dist/icomoon/binoculars.js
new file mode 100644
index 000000000..a6c5897dc
--- /dev/null
+++ b/dist/icomoon/binoculars.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.binoculars = void 0;
+var binoculars = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 0h6v1h-6zM9 0h6v1h-6zM14.875 5h-0.875v-4h-4v4h-4v-4h-4v4h-0.875c-0.619 0-1.125 0.506-1.125 1.125v8.75c0 0.619 0.506 1.125 1.125 1.125h4.75c0.619 0 1.125-0.506 1.125-1.125v-5.875h2v5.875c0 0.619 0.506 1.125 1.125 1.125h4.75c0.619 0 1.125-0.506 1.125-1.125v-8.75c0-0.619-0.506-1.125-1.125-1.125zM5.438 15h-3.875c-0.309 0-0.563-0.225-0.563-0.5s0.253-0.5 0.563-0.5h3.875c0.309 0 0.563 0.225 0.563 0.5s-0.253 0.5-0.563 0.5zM8.5 8h-1c-0.275 0-0.5-0.225-0.5-0.5s0.225-0.5 0.5-0.5h1c0.275 0 0.5 0.225 0.5 0.5s-0.225 0.5-0.5 0.5zM14.438 15h-3.875c-0.309 0-0.563-0.225-0.563-0.5s0.253-0.5 0.563-0.5h3.875c0.309 0 0.563 0.225 0.563 0.5s-0.253 0.5-0.563 0.5z"
+ }
+ }]
+};
+exports.binoculars = binoculars;
\ No newline at end of file
diff --git a/dist/icomoon/blocked.js b/dist/icomoon/blocked.js
new file mode 100644
index 000000000..6a42b2d0b
--- /dev/null
+++ b/dist/icomoon/blocked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.blocked = void 0;
+var blocked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.657 2.343c-1.511-1.511-3.52-2.343-5.657-2.343s-4.146 0.832-5.657 2.343c-1.511 1.511-2.343 3.52-2.343 5.657s0.832 4.146 2.343 5.657c1.511 1.511 3.52 2.343 5.657 2.343s4.146-0.832 5.657-2.343c1.511-1.511 2.343-3.52 2.343-5.657s-0.832-4.146-2.343-5.657zM14 8c0 1.294-0.412 2.494-1.111 3.475l-8.364-8.364c0.981-0.699 2.181-1.111 3.475-1.111 3.308 0 6 2.692 6 6zM2 8c0-1.294 0.412-2.494 1.111-3.475l8.364 8.364c-0.981 0.699-2.181 1.111-3.475 1.111-3.308 0-6-2.692-6-6z"
+ }
+ }]
+};
+exports.blocked = blocked;
\ No newline at end of file
diff --git a/dist/icomoon/blog.js b/dist/icomoon/blog.js
new file mode 100644
index 000000000..d0c0b3e74
--- /dev/null
+++ b/dist/icomoon/blog.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.blog = void 0;
+var blog = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 0v1.5c1.148 0 2.261 0.225 3.308 0.667 1.012 0.428 1.921 1.041 2.702 1.822s1.394 1.69 1.822 2.702c0.443 1.047 0.667 2.16 0.667 3.308h1.5c0-5.523-4.477-10-10-10z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 3v1.5c1.469 0 2.85 0.572 3.889 1.611s1.611 2.42 1.611 3.889h1.5c0-3.866-3.134-7-7-7z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 6l-1 1-3.5 1-3 6.5 0.396 0.396 3.638-3.638c-0.022-0.083-0.034-0.169-0.034-0.259 0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1c-0.090 0-0.176-0.012-0.259-0.034l-3.638 3.638 0.396 0.396 6.5-3 1-3.5 1-1-2.5-2.5z"
+ }
+ }]
+};
+exports.blog = blog;
\ No newline at end of file
diff --git a/dist/icomoon/blogger.js b/dist/icomoon/blogger.js
new file mode 100644
index 000000000..b0b281759
--- /dev/null
+++ b/dist/icomoon/blogger.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.blogger = void 0;
+var blogger = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.966 6h-0.897c-0.549 0-1.031-0.465-1.069-1v0c0-2.854-2.301-5-5.175-5h-2.622c-2.872 0-5.201 2.313-5.203 5.167v5.669c0 2.854 2.331 5.165 5.203 5.165h5.6c2.874 0 5.197-2.311 5.197-5.165v-3.662c0-0.57-0.46-1.173-1.034-1.173zM5 4h3c0.55 0 1 0.45 1 1s-0.45 1-1 1h-3c-0.55 0-1-0.45-1-1s0.45-1 1-1zM11 12h-6c-0.55 0-1-0.45-1-1s0.45-1 1-1h6c0.55 0 1 0.45 1 1s-0.45 1-1 1z"
+ }
+ }]
+};
+exports.blogger = blogger;
\ No newline at end of file
diff --git a/dist/icomoon/blogger2.js b/dist/icomoon/blogger2.js
new file mode 100644
index 000000000..e57d20438
--- /dev/null
+++ b/dist/icomoon/blogger2.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.blogger2 = void 0;
+var blogger2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM14 10.125c0 2.141-1.741 3.875-3.897 3.875h-4.2c-2.156 0-3.903-1.734-3.903-3.875v-4.25c0-2.141 1.747-3.875 3.903-3.875h1.966c2.156 0 3.881 1.609 3.881 3.75 0.028 0.4 0.391 0.75 0.8 0.75h0.672c0.431 0 0.775 0.453 0.775 0.881v2.744z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 10c0 0.55-0.45 1-1 1h-4c-0.55 0-1-0.45-1-1v0c0-0.55 0.45-1 1-1h4c0.55 0 1 0.45 1 1v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 6c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v0c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v0z"
+ }
+ }]
+};
+exports.blogger2 = blogger2;
\ No newline at end of file
diff --git a/dist/icomoon/bold.js b/dist/icomoon/bold.js
new file mode 100644
index 000000000..94d5d5009
--- /dev/null
+++ b/dist/icomoon/bold.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bold = void 0;
+var bold = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.061 7.573c0.586-0.696 0.939-1.594 0.939-2.573 0-2.206-1.794-4-4-4h-5v14h6c2.206 0 4-1.794 4-4 0-1.452-0.778-2.726-1.939-3.427zM6 3h1.586c0.874 0 1.586 0.897 1.586 2s-0.711 2-1.586 2h-1.586v-4zM8.484 13h-2.484v-4h2.484c0.913 0 1.656 0.897 1.656 2s-0.743 2-1.656 2z"
+ }
+ }]
+};
+exports.bold = bold;
\ No newline at end of file
diff --git a/dist/icomoon/book.js b/dist/icomoon/book.js
new file mode 100644
index 000000000..46b1a4a70
--- /dev/null
+++ b/dist/icomoon/book.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.book = void 0;
+var book = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 2v13h-10.5c-0.829 0-1.5-0.672-1.5-1.5s0.671-1.5 1.5-1.5h9.5v-12h-10c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12v-14h-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.501 13v0c-0 0-0.001 0-0.001 0-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0 0 0.001-0 0.001-0v0h9.498v-1h-9.498z"
+ }
+ }]
+};
+exports.book = book;
\ No newline at end of file
diff --git a/dist/icomoon/bookmark.js b/dist/icomoon/bookmark.js
new file mode 100644
index 000000000..f5dca35b3
--- /dev/null
+++ b/dist/icomoon/bookmark.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookmark = void 0;
+var bookmark = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 0v16l5-5 5 5v-16z"
+ }
+ }]
+};
+exports.bookmark = bookmark;
\ No newline at end of file
diff --git a/dist/icomoon/bookmarks.js b/dist/icomoon/bookmarks.js
new file mode 100644
index 000000000..fa4cb7f2e
--- /dev/null
+++ b/dist/icomoon/bookmarks.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookmarks = void 0;
+var bookmarks = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 2v14l5-5 5 5v-14zM12 0h-10v14l1-1v-12h9z"
+ }
+ }]
+};
+exports.bookmarks = bookmarks;
\ No newline at end of file
diff --git a/dist/icomoon/books.js b/dist/icomoon/books.js
new file mode 100644
index 000000000..8fe3ebf7c
--- /dev/null
+++ b/dist/icomoon/books.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.books = void 0;
+var books = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM3 5h-2v-1h2v1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM8 5h-2v-1h2v1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.954 2.773l-2.679 1.35c-0.246 0.124-0.345 0.426-0.222 0.671l4.5 8.93c0.124 0.246 0.426 0.345 0.671 0.222l2.679-1.35c0.246-0.124 0.345-0.426 0.222-0.671l-4.5-8.93c-0.124-0.246-0.426-0.345-0.671-0.222z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 13.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z"
+ }
+ }]
+};
+exports.books = books;
\ No newline at end of file
diff --git a/dist/icomoon/boxAdd.js b/dist/icomoon/boxAdd.js
new file mode 100644
index 000000000..bbb27b5da
--- /dev/null
+++ b/dist/icomoon/boxAdd.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.boxAdd = void 0;
+var boxAdd = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 1h-10l-3 3v10.5c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-10.5l-3-3zM8 13l-5-4h3v-3h4v3h3l-5 4zM2.414 3l1-1h9.172l1 1h-11.172z"
+ }
+ }]
+};
+exports.boxAdd = boxAdd;
\ No newline at end of file
diff --git a/dist/icomoon/boxRemove.js b/dist/icomoon/boxRemove.js
new file mode 100644
index 000000000..8c9ec696c
--- /dev/null
+++ b/dist/icomoon/boxRemove.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.boxRemove = void 0;
+var boxRemove = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 1h-10l-3 3v10.5c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-10.5l-3-3zM10 10v3h-4v-3h-3l5-4 5 4h-3zM2.414 3l1-1h9.171l1 1h-11.171z"
+ }
+ }]
+};
+exports.boxRemove = boxRemove;
\ No newline at end of file
diff --git a/dist/icomoon/briefcase.js b/dist/icomoon/briefcase.js
new file mode 100644
index 000000000..ad114b5d1
--- /dev/null
+++ b/dist/icomoon/briefcase.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.briefcase = void 0;
+var briefcase = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 4h-4v-1c0-0.55-0.45-1-1-1h-4c-0.55 0-1 0.45-1 1v1h-4c-0.55 0-1 0.45-1 1v9c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-9c0-0.55-0.45-1-1-1zM6 3.002c0.001-0.001 0.001-0.001 0.002-0.002h3.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998h-4v-0.998zM15 8h-2v1.5c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1.5h-6v1.5c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1.5h-2v-1h14v1z"
+ }
+ }]
+};
+exports.briefcase = briefcase;
\ No newline at end of file
diff --git a/dist/icomoon/brightnessContrast.js b/dist/icomoon/brightnessContrast.js
new file mode 100644
index 000000000..bbfb1f0ca
--- /dev/null
+++ b/dist/icomoon/brightnessContrast.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.brightnessContrast = void 0;
+var brightnessContrast = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 4c-2.209 0-4 1.791-4 4s1.791 4 4 4 4-1.791 4-4-1.791-4-4-4zM8 10.5v-5c1.379 0 2.5 1.122 2.5 2.5s-1.121 2.5-2.5 2.5zM8 13c0.552 0 1 0.448 1 1v1c0 0.552-0.448 1-1 1s-1-0.448-1-1v-1c0-0.552 0.448-1 1-1zM8 3c-0.552 0-1-0.448-1-1v-1c0-0.552 0.448-1 1-1s1 0.448 1 1v1c0 0.552-0.448 1-1 1zM15 7c0.552 0 1 0.448 1 1s-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1zM3 8c0 0.552-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1c0.552 0 1 0.448 1 1zM12.95 11.536l0.707 0.707c0.39 0.39 0.39 1.024 0 1.414s-1.024 0.39-1.414 0l-0.707-0.707c-0.39-0.39-0.39-1.024 0-1.414s1.024-0.39 1.414 0zM3.050 4.464l-0.707-0.707c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l0.707 0.707c0.391 0.391 0.391 1.024 0 1.414s-1.024 0.391-1.414 0zM12.95 4.464c-0.39 0.391-1.024 0.391-1.414 0s-0.39-1.024 0-1.414l0.707-0.707c0.39-0.391 1.024-0.391 1.414 0s0.39 1.024 0 1.414l-0.707 0.707zM3.050 11.536c0.39-0.39 1.024-0.39 1.414 0s0.391 1.024 0 1.414l-0.707 0.707c-0.391 0.39-1.024 0.39-1.414 0s-0.391-1.024 0-1.414l0.707-0.707z"
+ }
+ }]
+};
+exports.brightnessContrast = brightnessContrast;
\ No newline at end of file
diff --git a/dist/icomoon/bubble.js b/dist/icomoon/bubble.js
new file mode 100644
index 000000000..bf4b8a45d
--- /dev/null
+++ b/dist/icomoon/bubble.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bubble = void 0;
+var bubble = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1c4.418 0 8 2.91 8 6.5s-3.582 6.5-8 6.5c-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z"
+ }
+ }]
+};
+exports.bubble = bubble;
\ No newline at end of file
diff --git a/dist/icomoon/bubble2.js b/dist/icomoon/bubble2.js
new file mode 100644
index 000000000..b96decf67
--- /dev/null
+++ b/dist/icomoon/bubble2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bubble2 = void 0;
+var bubble2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 3c-0.858 0-1.687 0.135-2.464 0.402-0.73 0.251-1.38 0.605-1.932 1.054-1.035 0.841-1.604 1.922-1.604 3.044 0 0.63 0.175 1.24 0.52 1.815 0.356 0.592 0.89 1.134 1.547 1.566 0.474 0.312 0.793 0.812 0.878 1.373 0.028 0.187 0.046 0.376 0.053 0.564 0.117-0.097 0.23-0.201 0.342-0.312 0.377-0.377 0.887-0.586 1.414-0.586 0.084 0 0.168 0.005 0.252 0.016 0.328 0.042 0.662 0.063 0.995 0.063 0.858 0 1.687-0.135 2.464-0.402 0.73-0.251 1.38-0.605 1.932-1.054 1.035-0.841 1.604-1.922 1.604-3.044s-0.57-2.203-1.604-3.044c-0.552-0.448-1.202-0.803-1.932-1.054-0.777-0.267-1.606-0.402-2.464-0.402zM8 1v0c4.418 0 8 2.91 8 6.5s-3.582 6.5-8 6.5c-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z"
+ }
+ }]
+};
+exports.bubble2 = bubble2;
\ No newline at end of file
diff --git a/dist/icomoon/bubbles.js b/dist/icomoon/bubbles.js
new file mode 100644
index 000000000..cae455e15
--- /dev/null
+++ b/dist/icomoon/bubbles.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bubbles = void 0;
+var bubbles = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M17 14.081c0 0.711 0.407 1.327 1 1.628v0.249c-0.166 0.023-0.335 0.035-0.508 0.035-1.063 0-2.021-0.446-2.699-1.16-0.41 0.109-0.844 0.168-1.293 0.168-2.485 0-4.5-1.791-4.5-4s2.015-4 4.5-4c2.485 0 4.5 1.791 4.5 4 0 0.865-0.309 1.665-0.834 2.32-0.107 0.232-0.166 0.489-0.166 0.761zM8 0c4.351 0 7.89 2.822 7.997 6.336-0.768-0.343-1.619-0.524-2.497-0.524-1.493 0-2.903 0.523-3.971 1.472-1.107 0.984-1.717 2.304-1.717 3.716 0 0.698 0.149 1.373 0.433 1.997-0.082 0.002-0.164 0.003-0.246 0.003-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z"
+ }
+ }]
+};
+exports.bubbles = bubbles;
\ No newline at end of file
diff --git a/dist/icomoon/bubbles2.js b/dist/icomoon/bubbles2.js
new file mode 100644
index 000000000..8838a9bba
--- /dev/null
+++ b/dist/icomoon/bubbles2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bubbles2 = void 0;
+var bubbles2 = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 0v0c4.142 0 7.5 2.717 7.5 6.069s-3.358 6.069-7.5 6.069c-0.398 0-0.788-0.025-1.169-0.074-1.611 1.605-3.471 1.892-5.331 1.935v-0.393c1.004-0.49 1.813-1.382 1.813-2.402 0-0.142-0.011-0.282-0.032-0.419-1.696-1.113-2.781-2.812-2.781-4.717 0-3.352 3.358-6.069 7.5-6.069zM15.563 13.604c0 0.874 0.567 1.639 1.438 2.059v0.337c-1.611-0.036-3.090-0.283-4.487-1.658-0.33 0.041-0.669 0.063-1.013 0.063-1.492 0-2.866-0.402-3.963-1.079 2.261-0.008 4.395-0.732 6.013-2.042 0.816-0.66 1.459-1.435 1.913-2.302 0.481-0.92 0.724-1.9 0.724-2.913 0-0.163-0.007-0.326-0.020-0.487 1.134 0.936 1.832 2.213 1.832 3.62 0 1.633-0.94 3.089-2.41 4.043-0.018 0.117-0.027 0.237-0.027 0.359z"
+ }
+ }]
+};
+exports.bubbles2 = bubbles2;
\ No newline at end of file
diff --git a/dist/icomoon/bubbles3.js b/dist/icomoon/bubbles3.js
new file mode 100644
index 000000000..ccd0f83de
--- /dev/null
+++ b/dist/icomoon/bubbles3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bubbles3 = void 0;
+var bubbles3 = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M17 14.081c0 0.711 0.407 1.327 1 1.628v0.249c-0.166 0.023-0.335 0.035-0.508 0.035-1.063 0-2.021-0.446-2.699-1.16-0.41 0.109-0.844 0.168-1.293 0.168-2.485 0-4.5-1.791-4.5-4s2.015-4 4.5-4c2.485 0 4.5 1.791 4.5 4 0 0.865-0.309 1.665-0.834 2.32-0.107 0.232-0.166 0.489-0.166 0.761zM3.604 3.456c-1.035 0.841-1.604 1.922-1.604 3.044 0 0.63 0.175 1.24 0.52 1.815 0.356 0.592 0.89 1.134 1.547 1.566 0.474 0.312 0.793 0.812 0.878 1.373 0.028 0.187 0.046 0.376 0.053 0.564 0.117-0.097 0.23-0.201 0.342-0.312 0.377-0.377 0.887-0.586 1.414-0.586 0.084 0 0.168 0.005 0.252 0.016 0.327 0.042 0.662 0.063 0.994 0.063v2c-0.424-0-0.84-0.027-1.246-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5 4.351 0 7.89 2.822 7.997 6.336-0.642-0.286-1.341-0.46-2.067-0.509-0.18-0.876-0.709-1.7-1.535-2.371-0.552-0.448-1.202-0.803-1.932-1.054-0.777-0.267-1.606-0.402-2.464-0.402s-1.687 0.135-2.464 0.402c-0.73 0.251-1.38 0.605-1.932 1.054z"
+ }
+ }]
+};
+exports.bubbles3 = bubbles3;
\ No newline at end of file
diff --git a/dist/icomoon/bubbles4.js b/dist/icomoon/bubbles4.js
new file mode 100644
index 000000000..8b7cba579
--- /dev/null
+++ b/dist/icomoon/bubbles4.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bubbles4 = void 0;
+var bubbles4 = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 2c-0.792 0-1.556 0.124-2.272 0.369-0.671 0.23-1.267 0.554-1.773 0.963-0.938 0.759-1.455 1.731-1.455 2.737 0 0.562 0.157 1.109 0.467 1.623 0.323 0.537 0.811 1.028 1.41 1.421 0.476 0.312 0.796 0.812 0.881 1.374 0.014 0.094 0.025 0.188 0.034 0.282 0.043-0.039 0.085-0.080 0.127-0.122 0.377-0.376 0.886-0.583 1.411-0.583 0.084 0 0.167 0.005 0.251 0.016 0.303 0.038 0.611 0.058 0.918 0.058 0.792 0 1.556-0.124 2.272-0.369 0.671-0.23 1.267-0.554 1.774-0.963 0.938-0.759 1.455-1.731 1.455-2.737s-0.517-1.978-1.455-2.737c-0.506-0.41-1.103-0.734-1.774-0.963-0.716-0.245-1.48-0.369-2.272-0.369zM7.5 0v0c4.142 0 7.5 2.717 7.5 6.069s-3.358 6.069-7.5 6.069c-0.398 0-0.788-0.025-1.169-0.074-1.611 1.605-3.471 1.892-5.331 1.935v-0.393c1.004-0.49 1.813-1.382 1.813-2.402 0-0.142-0.011-0.282-0.032-0.419-1.696-1.113-2.781-2.812-2.781-4.717 0-3.352 3.358-6.069 7.5-6.069zM15.563 13.604c0 0.874 0.567 1.639 1.438 2.059v0.337c-1.611-0.036-3.090-0.283-4.487-1.658-0.33 0.041-0.669 0.063-1.013 0.063-1.492 0-2.866-0.402-3.963-1.079 2.261-0.008 4.395-0.732 6.013-2.042 0.816-0.66 1.459-1.435 1.913-2.302 0.481-0.92 0.724-1.9 0.724-2.913 0-0.163-0.007-0.326-0.020-0.487 1.134 0.936 1.832 2.213 1.832 3.62 0 1.633-0.94 3.089-2.41 4.043-0.018 0.117-0.027 0.237-0.027 0.359z"
+ }
+ }]
+};
+exports.bubbles4 = bubbles4;
\ No newline at end of file
diff --git a/dist/icomoon/bug.js b/dist/icomoon/bug.js
new file mode 100644
index 000000000..8803c6a14
--- /dev/null
+++ b/dist/icomoon/bug.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bug = void 0;
+var bug = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9v-1h-3.020c-0.092-1.136-0.497-2.172-1.12-3.004h2.53l1.095-4.379-0.97-0.243-0.905 3.621h-2.729c-0.014-0.011-0.028-0.021-0.042-0.032 0.105-0.305 0.162-0.632 0.162-0.972 0-1.653-1.343-2.992-3-2.992s-3 1.34-3 2.992c0 0.34 0.057 0.667 0.162 0.972-0.014 0.011-0.028 0.021-0.042 0.032h-2.729l-0.905-3.621-0.97 0.243 1.095 4.379h2.53c-0.623 0.832-1.028 1.868-1.12 3.004h-3.020v1h3.021c0.059 0.713 0.242 1.388 0.526 1.996h-1.937l-1.095 4.379 0.97 0.243 0.905-3.621h1.756c0.917 1.219 2.303 1.996 3.854 1.996s2.937-0.777 3.854-1.996h1.756l0.905 3.621 0.97-0.243-1.095-4.379h-1.937c0.283-0.608 0.466-1.283 0.526-1.996h3.021z"
+ }
+ }]
+};
+exports.bug = bug;
\ No newline at end of file
diff --git a/dist/icomoon/bullhorn.js b/dist/icomoon/bullhorn.js
new file mode 100644
index 000000000..d7d3dd3b3
--- /dev/null
+++ b/dist/icomoon/bullhorn.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bullhorn = void 0;
+var bullhorn = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 6.707c0-3.139-0.919-5.687-2.054-5.707 0.005-0 0.009-0 0.014-0h-1.296c0 0-3.044 2.287-7.425 3.184-0.134 0.708-0.219 1.551-0.219 2.523s0.085 1.816 0.219 2.523c4.382 0.897 7.425 3.184 7.425 3.184h1.296c-0.005 0-0.009-0-0.014-0.001 1.136-0.020 2.054-2.567 2.054-5.707zM13.513 11.551c-0.147 0-0.305-0.152-0.387-0.243-0.197-0.22-0.387-0.562-0.55-0.989-0.363-0.957-0.564-2.239-0.564-3.611s0.2-2.655 0.564-3.611c0.162-0.428 0.353-0.77 0.55-0.99 0.081-0.091 0.24-0.243 0.387-0.243s0.305 0.152 0.387 0.243c0.197 0.22 0.387 0.562 0.55 0.99 0.363 0.957 0.564 2.239 0.564 3.611s-0.2 2.655-0.564 3.611c-0.162 0.428-0.353 0.77-0.55 0.989-0.081 0.091-0.24 0.243-0.387 0.243zM3.935 6.707c0-0.812 0.060-1.6 0.173-2.33-0.74 0.102-1.39 0.161-2.193 0.161-1.048 0-1.048 0-1.048 0l-0.867 1.479v1.378l0.867 1.479c0 0 0 0 1.048 0 0.803 0 1.453 0.059 2.193 0.161-0.113-0.729-0.173-1.518-0.173-2.33zM5.752 10.034l-2-0.383 1.279 5.024c0.066 0.26 0.324 0.391 0.573 0.291l1.852-0.741c0.249-0.1 0.349-0.374 0.222-0.611l-1.926-3.581zM13.513 8.574c-0.057 0-0.118-0.059-0.149-0.094-0.076-0.085-0.149-0.217-0.212-0.381-0.14-0.369-0.217-0.863-0.217-1.392s0.077-1.023 0.217-1.392c0.063-0.165 0.136-0.297 0.212-0.381 0.031-0.035 0.092-0.094 0.149-0.094s0.118 0.059 0.149 0.094c0.076 0.085 0.149 0.217 0.212 0.381 0.14 0.369 0.217 0.863 0.217 1.392s-0.077 1.023-0.217 1.392c-0.063 0.165-0.136 0.297-0.212 0.381-0.031 0.035-0.092 0.094-0.149 0.094z"
+ }
+ }]
+};
+exports.bullhorn = bullhorn;
\ No newline at end of file
diff --git a/dist/icomoon/calculator.js b/dist/icomoon/calculator.js
new file mode 100644
index 000000000..2b4bcfcae
--- /dev/null
+++ b/dist/icomoon/calculator.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calculator = void 0;
+var calculator = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 1h-5c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM6 5h-5v-1h5v1zM14 1h-5c-0.55 0-1 0.45-1 1v13c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-13c0-0.55-0.45-1-1-1zM14 10h-5v-1h5v1zM14 7h-5v-1h5v1zM6 9h-5c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM6 13h-2v2h-1v-2h-2v-1h2v-2h1v2h2v1z"
+ }
+ }]
+};
+exports.calculator = calculator;
\ No newline at end of file
diff --git a/dist/icomoon/calendar.js b/dist/icomoon/calendar.js
new file mode 100644
index 000000000..39b59195f
--- /dev/null
+++ b/dist/icomoon/calendar.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendar = void 0;
+var calendar = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 6h2v2h-2zM8 6h2v2h-2zM11 6h2v2h-2zM2 12h2v2h-2zM5 12h2v2h-2zM8 12h2v2h-2zM5 9h2v2h-2zM8 9h2v2h-2zM11 9h2v2h-2zM2 9h2v2h-2zM13 0v1h-2v-1h-7v1h-2v-1h-2v16h15v-16h-2zM14 15h-13v-11h13v11z"
+ }
+ }]
+};
+exports.calendar = calendar;
\ No newline at end of file
diff --git a/dist/icomoon/camera.js b/dist/icomoon/camera.js
new file mode 100644
index 000000000..42a9585d1
--- /dev/null
+++ b/dist/icomoon/camera.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.camera = void 0;
+var camera = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.75 9.5c0 1.795 1.455 3.25 3.25 3.25s3.25-1.455 3.25-3.25-1.455-3.25-3.25-3.25-3.25 1.455-3.25 3.25zM15 4h-3.5c-0.25-1-0.5-2-1.5-2h-4c-1 0-1.25 1-1.5 2h-3.5c-0.55 0-1 0.45-1 1v9c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-9c0-0.55-0.45-1-1-1zM8 13.938c-2.451 0-4.438-1.987-4.438-4.438s1.987-4.438 4.438-4.438c2.451 0 4.438 1.987 4.438 4.438s-1.987 4.438-4.438 4.438zM15 7h-2v-1h2v1z"
+ }
+ }]
+};
+exports.camera = camera;
\ No newline at end of file
diff --git a/dist/icomoon/cancelCircle.js b/dist/icomoon/cancelCircle.js
new file mode 100644
index 000000000..dcc2d62dc
--- /dev/null
+++ b/dist/icomoon/cancelCircle.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cancelCircle = void 0;
+var cancelCircle = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.5 4l-2.5 2.5-2.5-2.5-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 2.5-2.5 2.5 2.5 1.5-1.5-2.5-2.5 2.5-2.5z"
+ }
+ }]
+};
+exports.cancelCircle = cancelCircle;
\ No newline at end of file
diff --git a/dist/icomoon/cart.js b/dist/icomoon/cart.js
new file mode 100644
index 000000000..81111566a
--- /dev/null
+++ b/dist/icomoon/cart.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cart = void 0;
+var cart = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 14.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 14.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8v-6h-12c0-0.552-0.448-1-1-1h-3v1h2l0.751 6.438c-0.458 0.367-0.751 0.93-0.751 1.562 0 1.105 0.895 2 2 2h12v-1h-12c-0.552 0-1-0.448-1-1 0-0.003 0-0.007 0-0.010l13-1.99z"
+ }
+ }]
+};
+exports.cart = cart;
\ No newline at end of file
diff --git a/dist/icomoon/checkboxChecked.js b/dist/icomoon/checkboxChecked.js
new file mode 100644
index 000000000..4021a8b3a
--- /dev/null
+++ b/dist/icomoon/checkboxChecked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkboxChecked = void 0;
+var checkboxChecked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 0h-12c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM7 12.414l-3.707-3.707 1.414-1.414 2.293 2.293 4.793-4.793 1.414 1.414-6.207 6.207z"
+ }
+ }]
+};
+exports.checkboxChecked = checkboxChecked;
\ No newline at end of file
diff --git a/dist/icomoon/checkboxUnchecked.js b/dist/icomoon/checkboxUnchecked.js
new file mode 100644
index 000000000..1f5144729
--- /dev/null
+++ b/dist/icomoon/checkboxUnchecked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkboxUnchecked = void 0;
+var checkboxUnchecked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 0h-12c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM14 14h-12v-12h12v12z"
+ }
+ }]
+};
+exports.checkboxUnchecked = checkboxUnchecked;
\ No newline at end of file
diff --git a/dist/icomoon/checkmark.js b/dist/icomoon/checkmark.js
new file mode 100644
index 000000000..ea5be549e
--- /dev/null
+++ b/dist/icomoon/checkmark.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkmark = void 0;
+var checkmark = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 2l-7.5 7.5-3.5-3.5-2.5 2.5 6 6 10-10z"
+ }
+ }]
+};
+exports.checkmark = checkmark;
\ No newline at end of file
diff --git a/dist/icomoon/checkmark2.js b/dist/icomoon/checkmark2.js
new file mode 100644
index 000000000..6ca6f4306
--- /dev/null
+++ b/dist/icomoon/checkmark2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkmark2 = void 0;
+var checkmark2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.21 14.339l-6.217-6.119 3.084-3.035 3.133 3.083 6.713-6.607 3.084 3.035-9.797 9.643zM1.686 8.22l4.524 4.453 8.104-7.976-1.391-1.369-6.713 6.607-3.133-3.083-1.391 1.369z"
+ }
+ }]
+};
+exports.checkmark2 = checkmark2;
\ No newline at end of file
diff --git a/dist/icomoon/chrome.js b/dist/icomoon/chrome.js
new file mode 100644
index 000000000..cafdd83d5
--- /dev/null
+++ b/dist/icomoon/chrome.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chrome = void 0;
+var chrome = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.036 6.977l-2.29-3.966c1.466-1.835 3.722-3.012 6.254-3.012 2.929 0 5.489 1.574 6.883 3.922h-6.528c-0.117-0.010-0.236-0.016-0.356-0.016-1.904 0-3.509 1.307-3.964 3.071zM10.864 5.078h4.585c0.355 0.905 0.551 1.891 0.551 2.922 0 4.388-3.533 7.95-7.909 7.999l3.272-5.667c0.461-0.662 0.731-1.466 0.731-2.332 0-1.143-0.471-2.178-1.23-2.922zM5.094 8c0-1.603 1.304-2.906 2.906-2.906s2.906 1.304 2.906 2.906c0 1.602-1.304 2.906-2.906 2.906s-2.906-1.304-2.906-2.906zM9.097 11.944l-2.29 3.967c-3.852-0.576-6.806-3.899-6.806-7.911 0-1.425 0.373-2.763 1.026-3.922l3.266 5.657c0.654 1.392 2.070 2.359 3.707 2.359 0.38 0 0.747-0.052 1.097-0.149z"
+ }
+ }]
+};
+exports.chrome = chrome;
\ No newline at end of file
diff --git a/dist/icomoon/circleDown.js b/dist/icomoon/circleDown.js
new file mode 100644
index 000000000..0b5c96380
--- /dev/null
+++ b/dist/icomoon/circleDown.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleDown = void 0;
+var circleDown = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8 3.582 8 8 8 8-3.582 8-8zM1.5 8c0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.957 5.543l-1.414 1.414 4.457 4.457 4.457-4.457-1.414-1.414-3.043 3.043z"
+ }
+ }]
+};
+exports.circleDown = circleDown;
\ No newline at end of file
diff --git a/dist/icomoon/circleLeft.js b/dist/icomoon/circleLeft.js
new file mode 100644
index 000000000..63968c0c4
--- /dev/null
+++ b/dist/icomoon/circleLeft.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleLeft = void 0;
+var circleLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.457 4.957l-1.414-1.414-4.457 4.457 4.457 4.457 1.414-1.414-3.043-3.043z"
+ }
+ }]
+};
+exports.circleLeft = circleLeft;
\ No newline at end of file
diff --git a/dist/icomoon/circleRight.js b/dist/icomoon/circleRight.js
new file mode 100644
index 000000000..6494feeba
--- /dev/null
+++ b/dist/icomoon/circleRight.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleRight = void 0;
+var circleRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.543 11.043l1.414 1.414 4.457-4.457-4.457-4.457-1.414 1.414 3.043 3.043z"
+ }
+ }]
+};
+exports.circleRight = circleRight;
\ No newline at end of file
diff --git a/dist/icomoon/circleUp.js b/dist/icomoon/circleUp.js
new file mode 100644
index 000000000..b0776f611
--- /dev/null
+++ b/dist/icomoon/circleUp.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleUp = void 0;
+var circleUp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 8c0 4.418 3.582 8 8 8s8-3.582 8-8-3.582-8-8-8-8 3.582-8 8zM14.5 8c0 3.59-2.91 6.5-6.5 6.5s-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.043 10.457l1.414-1.414-4.457-4.457-4.457 4.457 1.414 1.414 3.043-3.043z"
+ }
+ }]
+};
+exports.circleUp = circleUp;
\ No newline at end of file
diff --git a/dist/icomoon/clearFormatting.js b/dist/icomoon/clearFormatting.js
new file mode 100644
index 000000000..efb81fd13
--- /dev/null
+++ b/dist/icomoon/clearFormatting.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clearFormatting = void 0;
+var clearFormatting = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 14h9v2h-9zM14 2h-4.727l-2.871 11h-2.067l2.871-11h-4.205v-2h11zM14.528 16l-2.028-2.028-2.028 2.028-0.972-0.972 2.028-2.028-2.028-2.028 0.972-0.972 2.028 2.028 2.028-2.028 0.972 0.972-2.028 2.028 2.028 2.028z"
+ }
+ }]
+};
+exports.clearFormatting = clearFormatting;
\ No newline at end of file
diff --git a/dist/icomoon/clipboard.js b/dist/icomoon/clipboard.js
new file mode 100644
index 000000000..07f0ffcb2
--- /dev/null
+++ b/dist/icomoon/clipboard.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clipboard = void 0;
+var clipboard = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 2h-4.5c0-1.105-0.895-2-2-2s-2 0.895-2 2h-4.5c-0.276 0-0.5 0.224-0.5 0.5v13c0 0.276 0.224 0.5 0.5 0.5h13c0.276 0 0.5-0.224 0.5-0.5v-13c0-0.276-0.224-0.5-0.5-0.5zM8 1c0.552 0 1 0.448 1 1s-0.448 1-1 1c-0.552 0-1-0.448-1-1s0.448-1 1-1zM14 15h-12v-12h2v1.5c0 0.276 0.224 0.5 0.5 0.5h7c0.276 0 0.5-0.224 0.5-0.5v-1.5h2v12z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 13.414l-3.207-3.707 0.914-0.914 2.293 1.793 4.293-3.793 0.914 0.914z"
+ }
+ }]
+};
+exports.clipboard = clipboard;
\ No newline at end of file
diff --git a/dist/icomoon/clock.js b/dist/icomoon/clock.js
new file mode 100644
index 000000000..0555d5640
--- /dev/null
+++ b/dist/icomoon/clock.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clock = void 0;
+var clock = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.293 11.707l-3.293-3.293v-4.414h2v3.586l2.707 2.707zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z"
+ }
+ }]
+};
+exports.clock = clock;
\ No newline at end of file
diff --git a/dist/icomoon/clock2.js b/dist/icomoon/clock2.js
new file mode 100644
index 000000000..0b2308e96
--- /dev/null
+++ b/dist/icomoon/clock2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clock2 = void 0;
+var clock2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM10.293 11.707l-3.293-3.293v-4.414h2v3.586l2.707 2.707-1.414 1.414z"
+ }
+ }]
+};
+exports.clock2 = clock2;
\ No newline at end of file
diff --git a/dist/icomoon/cloud.js b/dist/icomoon/cloud.js
new file mode 100644
index 000000000..308c8225e
--- /dev/null
+++ b/dist/icomoon/cloud.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud = void 0;
+var cloud = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 10.274c0-1.283-0.886-2.358-2.078-2.648-0.051-2.011-1.695-3.626-3.717-3.626-1.184 0-2.239 0.555-2.92 1.418-0.382-0.494-0.98-0.812-1.652-0.812-1.153 0-2.088 0.936-2.088 2.089 0 0.101 0.007 0.199 0.021 0.296-0.175-0.032-0.356-0.049-0.54-0.049-1.672-0-3.027 1.356-3.027 3.029s1.355 3.029 3.027 3.029l10.254-0c1.502-0.003 2.719-1.222 2.719-2.726z"
+ }
+ }]
+};
+exports.cloud = cloud;
\ No newline at end of file
diff --git a/dist/icomoon/cloudCheck.js b/dist/icomoon/cloudCheck.js
new file mode 100644
index 000000000..75b0c2309
--- /dev/null
+++ b/dist/icomoon/cloudCheck.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudCheck = void 0;
+var cloudCheck = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.942 8.039c0.038-0.174 0.058-0.354 0.058-0.539 0-1.381-1.119-2.5-2.5-2.5-0.222 0-0.438 0.029-0.643 0.084-0.387-1.209-1.52-2.084-2.857-2.084-1.365 0-2.516 0.911-2.88 2.159-0.355-0.103-0.731-0.159-1.12-0.159-2.209 0-4 1.791-4 4s1.791 4 4 4h9.5c1.381 0 2.5-1.119 2.5-2.5 0-1.23-0.888-2.252-2.058-2.461zM6.5 12l-2.5-2.5 1-1 1.5 1.5 3.5-3.5 1 1-4.5 4.5z"
+ }
+ }]
+};
+exports.cloudCheck = cloudCheck;
\ No newline at end of file
diff --git a/dist/icomoon/cloudDownload.js b/dist/icomoon/cloudDownload.js
new file mode 100644
index 000000000..d87f78663
--- /dev/null
+++ b/dist/icomoon/cloudDownload.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudDownload = void 0;
+var cloudDownload = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.922 5.626c-0.051-2.011-1.695-3.626-3.717-3.626-1.184 0-2.239 0.555-2.92 1.418-0.382-0.494-0.98-0.812-1.652-0.812-1.153 0-2.088 0.936-2.088 2.089 0 0.101 0.007 0.199 0.021 0.296-0.175-0.032-0.356-0.049-0.54-0.049-1.672-0-3.027 1.356-3.027 3.029s1.355 3.029 3.027 3.029h1.434l3.539 3.664 3.539-3.664 1.742-0c1.502-0.003 2.719-1.222 2.719-2.726 0-1.283-0.886-2.358-2.078-2.648zM8 13l-3-3h2v-3h2v3h2l-3 3z"
+ }
+ }]
+};
+exports.cloudDownload = cloudDownload;
\ No newline at end of file
diff --git a/dist/icomoon/cloudUpload.js b/dist/icomoon/cloudUpload.js
new file mode 100644
index 000000000..1263b9be1
--- /dev/null
+++ b/dist/icomoon/cloudUpload.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudUpload = void 0;
+var cloudUpload = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.942 6.039c0.038-0.174 0.058-0.354 0.058-0.539 0-1.381-1.119-2.5-2.5-2.5-0.222 0-0.438 0.029-0.643 0.084-0.387-1.209-1.52-2.084-2.857-2.084-1.365 0-2.516 0.911-2.88 2.159-0.355-0.103-0.731-0.159-1.12-0.159-2.209 0-4 1.791-4 4s1.791 4 4 4h2v3h4v-3h3.5c1.381 0 2.5-1.119 2.5-2.5 0-1.23-0.888-2.253-2.058-2.461zM9 10v3h-2v-3h-2.5l3.5-3.5 3.5 3.5h-2.5z"
+ }
+ }]
+};
+exports.cloudUpload = cloudUpload;
\ No newline at end of file
diff --git a/dist/icomoon/clubs.js b/dist/icomoon/clubs.js
new file mode 100644
index 000000000..b78ab3850
--- /dev/null
+++ b/dist/icomoon/clubs.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clubs = void 0;
+var clubs = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.294 6.137c-0.922 0-1.751 0.384-2.341 1.011-0.25 0.265-0.684 0.58-1.153 0.856 0.22-0.842 0.917-1.902 1.4-2.367 0.619-0.596 1-1.435 1-2.367 0-1.795-1.429-3.252-3.2-3.271-1.771 0.019-3.2 1.475-3.2 3.271 0 0.932 0.38 1.771 1 2.367 0.484 0.465 1.18 1.525 1.4 2.367-0.469-0.277-0.903-0.591-1.153-0.856-0.59-0.627-1.419-1.011-2.341-1.011-1.787 0-3.236 1.463-3.236 3.271s1.448 3.271 3.236 3.271c0.923 0 1.751-0.396 2.341-1.023 0.263-0.279 0.726-0.627 1.223-0.916-0.047 2.308-1.149 4.003-2.271 4.67v0.59h6v-0.59c-1.122-0.668-2.224-2.363-2.271-4.67 0.498 0.289 0.961 0.637 1.223 0.916 0.59 0.626 1.419 1.023 2.341 1.023 1.787 0 3.236-1.464 3.236-3.271s-1.448-3.271-3.236-3.271z"
+ }
+ }]
+};
+exports.clubs = clubs;
\ No newline at end of file
diff --git a/dist/icomoon/codepen.js b/dist/icomoon/codepen.js
new file mode 100644
index 000000000..f7c7b0588
--- /dev/null
+++ b/dist/icomoon/codepen.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.codepen = void 0;
+var codepen = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.777 5.751l-7-4.667c-0.168-0.112-0.387-0.112-0.555 0l-7 4.667c-0.139 0.093-0.223 0.249-0.223 0.416v4.667c0 0.167 0.084 0.323 0.223 0.416l7 4.667c0.084 0.056 0.181 0.084 0.277 0.084s0.193-0.028 0.277-0.084l7-4.667c0.139-0.093 0.223-0.249 0.223-0.416v-4.667c0-0.167-0.084-0.323-0.223-0.416zM7.5 10.232l-2.599-1.732 2.599-1.732 2.599 1.732-2.599 1.732zM8 5.899v-3.465l5.599 3.732-2.599 1.732-3-2zM7 5.899l-3 2-2.599-1.732 5.599-3.732v3.465zM3.099 8.5l-2.099 1.399v-2.798l2.099 1.399zM4 9.101l3 2v3.465l-5.599-3.732 2.599-1.732zM8 11.101l3-2 2.599 1.732-5.599 3.732v-3.465zM11.901 8.5l2.099-1.399v2.798l-2.099-1.399z"
+ }
+ }]
+};
+exports.codepen = codepen;
\ No newline at end of file
diff --git a/dist/icomoon/cog.js b/dist/icomoon/cog.js
new file mode 100644
index 000000000..4fdf1f4b5
--- /dev/null
+++ b/dist/icomoon/cog.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cog = void 0;
+var cog = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.59 9.535c-0.839-1.454-0.335-3.317 1.127-4.164l-1.572-2.723c-0.449 0.263-0.972 0.414-1.529 0.414-1.68 0-3.042-1.371-3.042-3.062h-3.145c0.004 0.522-0.126 1.051-0.406 1.535-0.839 1.454-2.706 1.948-4.17 1.106l-1.572 2.723c0.453 0.257 0.845 0.634 1.123 1.117 0.838 1.452 0.336 3.311-1.12 4.16l1.572 2.723c0.448-0.261 0.967-0.41 1.522-0.41 1.675 0 3.033 1.362 3.042 3.046h3.145c-0.001-0.517 0.129-1.040 0.406-1.519 0.838-1.452 2.7-1.947 4.163-1.11l1.572-2.723c-0.45-0.257-0.839-0.633-1.116-1.113zM8 11.24c-1.789 0-3.24-1.45-3.24-3.24s1.45-3.24 3.24-3.24c1.789 0 3.24 1.45 3.24 3.24s-1.45 3.24-3.24 3.24z"
+ }
+ }]
+};
+exports.cog = cog;
\ No newline at end of file
diff --git a/dist/icomoon/cogs.js b/dist/icomoon/cogs.js
new file mode 100644
index 000000000..4e86b8135
--- /dev/null
+++ b/dist/icomoon/cogs.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cogs = void 0;
+var cogs = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.683 11.282l0.645-0.903-0.707-0.707-0.903 0.645c-0.168-0.094-0.347-0.168-0.535-0.222l-0.183-1.095h-1l-0.183 1.095c-0.188 0.053-0.368 0.128-0.535 0.222l-0.903-0.645-0.707 0.707 0.645 0.903c-0.094 0.168-0.168 0.347-0.222 0.535l-1.095 0.183v1l1.095 0.183c0.053 0.188 0.128 0.368 0.222 0.535l-0.645 0.903 0.707 0.707 0.903-0.645c0.168 0.094 0.347 0.168 0.535 0.222l0.183 1.095h1l0.183-1.095c0.188-0.053 0.368-0.128 0.535-0.222l0.903 0.645 0.707-0.707-0.645-0.903c0.094-0.168 0.168-0.347 0.222-0.535l1.095-0.182v-1l-1.095-0.183c-0.053-0.188-0.128-0.368-0.222-0.535zM3.5 13.5c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM16 6v-1l-1.053-0.191c-0.019-0.126-0.044-0.25-0.074-0.372l0.899-0.58-0.383-0.924-1.046 0.226c-0.066-0.108-0.136-0.213-0.211-0.315l0.609-0.88-0.707-0.707-0.88 0.609c-0.102-0.074-0.207-0.145-0.315-0.211l0.226-1.046-0.924-0.383-0.58 0.899c-0.122-0.030-0.246-0.054-0.372-0.074l-0.191-1.053h-1l-0.191 1.053c-0.126 0.019-0.25 0.044-0.372 0.074l-0.58-0.899-0.924 0.383 0.226 1.046c-0.108 0.066-0.213 0.136-0.315 0.211l-0.88-0.609-0.707 0.707 0.609 0.88c-0.074 0.102-0.145 0.207-0.211 0.315l-1.046-0.226-0.383 0.924 0.899 0.58c-0.030 0.122-0.054 0.246-0.074 0.372l-1.053 0.191v1l1.053 0.191c0.019 0.126 0.044 0.25 0.074 0.372l-0.899 0.58 0.383 0.924 1.046-0.226c0.066 0.108 0.136 0.213 0.211 0.315l-0.609 0.88 0.707 0.707 0.88-0.609c0.102 0.074 0.207 0.145 0.315 0.211l-0.226 1.046 0.924 0.383 0.58-0.899c0.122 0.030 0.246 0.054 0.372 0.074l0.191 1.053h1l0.191-1.053c0.126-0.019 0.25-0.044 0.372-0.074l0.58 0.899 0.924-0.383-0.226-1.046c0.108-0.066 0.213-0.136 0.315-0.211l0.88 0.609 0.707-0.707-0.609-0.88c0.074-0.102 0.145-0.207 0.211-0.315l1.046 0.226 0.383-0.924-0.899-0.58c0.030-0.122 0.054-0.246 0.074-0.372l1.053-0.191zM10.5 7.675c-1.201 0-2.175-0.974-2.175-2.175s0.974-2.175 2.175-2.175 2.175 0.974 2.175 2.175c0 1.201-0.974 2.175-2.175 2.175z"
+ }
+ }]
+};
+exports.cogs = cogs;
\ No newline at end of file
diff --git a/dist/icomoon/coinDollar.js b/dist/icomoon/coinDollar.js
new file mode 100644
index 000000000..d7841171c
--- /dev/null
+++ b/dist/icomoon/coinDollar.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.coinDollar = void 0;
+var coinDollar = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6zM8 8v-2h2v-1h-2v-1h-1v1h-2v4h2v2h-2v1h2v1h1v-1h2l-0-4h-2zM7 8h-1v-2h1v2zM9 11h-1v-2h1v2z"
+ }
+ }]
+};
+exports.coinDollar = coinDollar;
\ No newline at end of file
diff --git a/dist/icomoon/coinEuro.js b/dist/icomoon/coinEuro.js
new file mode 100644
index 000000000..6eb410e77
--- /dev/null
+++ b/dist/icomoon/coinEuro.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.coinEuro = void 0;
+var coinEuro = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.482 10.068c-0.239-0.139-0.545-0.058-0.684 0.181-0.27 0.463-0.767 0.751-1.298 0.751h-2c-0.652 0-1.208-0.418-1.414-1h2.414c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2.5v-1h2.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2.414c0.206-0.582 0.762-1 1.414-1h2c0.531 0 1.028 0.288 1.298 0.751 0.139 0.239 0.445 0.32 0.684 0.181s0.32-0.445 0.181-0.684c-0.448-0.77-1.277-1.249-2.162-1.249h-2c-1.207 0-2.217 0.86-2.45 2h-0.55c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5v1h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.55c0.232 1.14 1.242 2 2.45 2h2c0.886 0 1.714-0.478 2.162-1.249 0.139-0.239 0.058-0.545-0.181-0.684z"
+ }
+ }]
+};
+exports.coinEuro = coinEuro;
\ No newline at end of file
diff --git a/dist/icomoon/coinPound.js b/dist/icomoon/coinPound.js
new file mode 100644
index 000000000..1e9a1b706
--- /dev/null
+++ b/dist/icomoon/coinPound.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.coinPound = void 0;
+var coinPound = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 11h-3.5v-2h1.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-0.5c0-0.827 0.673-1.5 1.5-1.5 0.534 0 1.032 0.288 1.3 0.75 0.138 0.239 0.444 0.321 0.683 0.182s0.321-0.444 0.182-0.683c-0.446-0.771-1.276-1.25-2.165-1.25-1.378 0-2.5 1.122-2.5 2.5v0.5h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5v3h4.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5z"
+ }
+ }]
+};
+exports.coinPound = coinPound;
\ No newline at end of file
diff --git a/dist/icomoon/coinYen.js b/dist/icomoon/coinYen.js
new file mode 100644
index 000000000..0e2df51dd
--- /dev/null
+++ b/dist/icomoon/coinYen.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.coinYen = void 0;
+var coinYen = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 9c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.066l1.482-2.223c0.153-0.23 0.091-0.54-0.139-0.693s-0.54-0.091-0.693 0.139l-1.584 2.376-1.584-2.376c-0.153-0.23-0.464-0.292-0.693-0.139s-0.292 0.464-0.139 0.693l1.482 2.223h-1.066c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h1.5v1h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h1.5v1.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-1.5h1.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-1h1.5z"
+ }
+ }]
+};
+exports.coinYen = coinYen;
\ No newline at end of file
diff --git a/dist/icomoon/command.js b/dist/icomoon/command.js
new file mode 100644
index 000000000..aac72e763
--- /dev/null
+++ b/dist/icomoon/command.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.command = void 0;
+var command = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 14c-1.379 0-2.5-1.121-2.5-2.5v-1.5h-2v1.5c0 1.379-1.122 2.5-2.5 2.5s-2.5-1.121-2.5-2.5 1.122-2.5 2.5-2.5h1.5v-2h-1.5c-1.378 0-2.5-1.122-2.5-2.5s1.122-2.5 2.5-2.5 2.5 1.122 2.5 2.5v1.5h2v-1.5c0-1.378 1.121-2.5 2.5-2.5s2.5 1.122 2.5 2.5-1.121 2.5-2.5 2.5h-1.5v2h1.5c1.379 0 2.5 1.121 2.5 2.5s-1.121 2.5-2.5 2.5zM10 10v1.5c0 0.827 0.673 1.5 1.5 1.5s1.5-0.673 1.5-1.5-0.673-1.5-1.5-1.5h-1.5zM4.5 10c-0.827 0-1.5 0.673-1.5 1.5s0.673 1.5 1.5 1.5 1.5-0.673 1.5-1.5v-1.5h-1.5zM7 9h2v-2h-2v2zM10 6h1.5c0.827 0 1.5-0.673 1.5-1.5s-0.673-1.5-1.5-1.5-1.5 0.673-1.5 1.5v1.5zM4.5 3c-0.827 0-1.5 0.673-1.5 1.5s0.673 1.5 1.5 1.5h1.5v-1.5c0-0.827-0.673-1.5-1.5-1.5z"
+ }
+ }]
+};
+exports.command = command;
\ No newline at end of file
diff --git a/dist/icomoon/compass.js b/dist/icomoon/compass.js
new file mode 100644
index 000000000..6ec9abd55
--- /dev/null
+++ b/dist/icomoon/compass.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.compass = void 0;
+var compass = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.5 16c-0.036 0-0.072-0.004-0.108-0.012-0.229-0.051-0.392-0.254-0.392-0.488v-7.5h-7.5c-0.234 0-0.437-0.163-0.488-0.392s0.064-0.462 0.277-0.561l15-7c0.191-0.089 0.416-0.049 0.565 0.1s0.188 0.374 0.1 0.565l-7 15c-0.083 0.179-0.262 0.289-0.453 0.289zM2.754 7h5.746c0.276 0 0.5 0.224 0.5 0.5v5.746l5.465-11.712-11.712 5.465z"
+ }
+ }]
+};
+exports.compass = compass;
\ No newline at end of file
diff --git a/dist/icomoon/compass2.js b/dist/icomoon/compass2.js
new file mode 100644
index 000000000..a531cd771
--- /dev/null
+++ b/dist/icomoon/compass2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.compass2 = void 0;
+var compass2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM1.5 8c0-3.59 2.91-6.5 6.5-6.5 1.712 0 3.269 0.662 4.43 1.744l-6.43 2.756-2.756 6.43c-1.082-1.161-1.744-2.718-1.744-4.43zM9.143 9.143l-4.001 1.715 1.715-4.001 2.286 2.286zM8 14.5c-1.712 0-3.269-0.662-4.43-1.744l6.43-2.756 2.756-6.43c1.082 1.161 1.744 2.718 1.744 4.43 0 3.59-2.91 6.5-6.5 6.5z"
+ }
+ }]
+};
+exports.compass2 = compass2;
\ No newline at end of file
diff --git a/dist/icomoon/confused.js b/dist/icomoon/confused.js
new file mode 100644
index 000000000..feb750ebb
--- /dev/null
+++ b/dist/icomoon/confused.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.confused = void 0;
+var confused = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.345 10h1.014c0.144 1.133-0.507 2.258-1.624 2.665-1.295 0.472-2.733-0.199-3.204-1.494-0.283-0.777-1.145-1.179-1.923-0.896-0.712 0.259-1.109 1.005-0.953 1.725h-1.013c-0.144-1.133 0.507-2.258 1.624-2.665 1.295-0.472 2.733 0.199 3.204 1.494 0.283 0.777 1.145 1.179 1.923 0.896 0.712-0.259 1.109-1.005 0.953-1.725z"
+ }
+ }]
+};
+exports.confused = confused;
\ No newline at end of file
diff --git a/dist/icomoon/confused2.js b/dist/icomoon/confused2.js
new file mode 100644
index 000000000..4212bead2
--- /dev/null
+++ b/dist/icomoon/confused2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.confused2 = void 0;
+var confused2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM10.735 12.665c-1.295 0.472-2.733-0.199-3.204-1.494-0.283-0.777-1.145-1.179-1.923-0.896-0.712 0.259-1.109 1.005-0.953 1.725h-1.013c-0.144-1.133 0.507-2.258 1.624-2.665 1.295-0.472 2.733 0.199 3.204 1.494 0.283 0.777 1.145 1.179 1.923 0.896 0.712-0.259 1.109-1.005 0.953-1.725h1.014c0.144 1.133-0.507 2.258-1.624 2.665z"
+ }
+ }]
+};
+exports.confused2 = confused2;
\ No newline at end of file
diff --git a/dist/icomoon/connection.js b/dist/icomoon/connection.js
new file mode 100644
index 000000000..63590b40c
--- /dev/null
+++ b/dist/icomoon/connection.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.connection = void 0;
+var connection = {
+ "viewBox": "0 0 20 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 9c1.654 0 3.154 0.673 4.241 1.759l-1.414 1.414c-0.724-0.724-1.724-1.173-2.827-1.173s-2.103 0.449-2.827 1.173l-1.414-1.414c1.086-1.086 2.586-1.759 4.241-1.759zM2.929 7.929c1.889-1.889 4.4-2.929 7.071-2.929s5.182 1.040 7.071 2.929l-1.414 1.414c-1.511-1.511-3.52-2.343-5.657-2.343s-4.146 0.832-5.657 2.343l-1.414-1.414zM15.45 2.101c1.667 0.705 3.164 1.715 4.45 3v0l-1.414 1.414c-2.267-2.266-5.28-3.515-8.485-3.515s-6.219 1.248-8.485 3.515l-1.414-1.414c1.285-1.285 2.783-2.295 4.45-3 1.727-0.73 3.56-1.101 5.45-1.101s3.723 0.37 5.45 1.101zM9 14c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1z"
+ }
+ }]
+};
+exports.connection = connection;
\ No newline at end of file
diff --git a/dist/icomoon/contrast.js b/dist/icomoon/contrast.js
new file mode 100644
index 000000000..fc03e8e82
--- /dev/null
+++ b/dist/icomoon/contrast.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.contrast = void 0;
+var contrast = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM2 8c0-3.314 2.686-6 6-6v12c-3.314 0-6-2.686-6-6z"
+ }
+ }]
+};
+exports.contrast = contrast;
\ No newline at end of file
diff --git a/dist/icomoon/cool.js b/dist/icomoon/cool.js
new file mode 100644
index 000000000..62eca2050
--- /dev/null
+++ b/dist/icomoon/cool.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cool = void 0;
+var cool = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM12.5 4c0.275 0 0.5 0.225 0.5 0.5v1.5c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1h-2c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-1.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v0.5h2v-0.5c0-0.275 0.225-0.5 0.5-0.5h3zM8 12c1.456 0 2.731-0.778 3.43-1.942l0.857 0.515c-0.874 1.454-2.467 2.427-4.288 2.427-0.757 0-1.475-0.169-2.118-0.47l0.518-0.864c0.49 0.214 1.031 0.334 1.6 0.334z"
+ }
+ }]
+};
+exports.cool = cool;
\ No newline at end of file
diff --git a/dist/icomoon/cool2.js b/dist/icomoon/cool2.js
new file mode 100644
index 000000000..1d9330507
--- /dev/null
+++ b/dist/icomoon/cool2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cool2 = void 0;
+var cool2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM8 13c-0.757 0-1.475-0.169-2.118-0.47l0.518-0.864c0.49 0.214 1.031 0.334 1.6 0.334 1.456 0 2.731-0.778 3.43-1.942l0.858 0.515c-0.874 1.454-2.467 2.427-4.288 2.427zM13 6c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1h-2c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-1.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v0.5h2v-0.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v1.5z"
+ }
+ }]
+};
+exports.cool2 = cool2;
\ No newline at end of file
diff --git a/dist/icomoon/copy.js b/dist/icomoon/copy.js
new file mode 100644
index 000000000..135d5ffdd
--- /dev/null
+++ b/dist/icomoon/copy.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.copy = void 0;
+var copy = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 4v-4h-7l-3 3v9h6v4h10v-12h-6zM3 1.414v1.586h-1.586l1.586-1.586zM1 11v-7h3v-3h5v3l-3 3v4h-5zM9 5.414v1.586h-1.586l1.586-1.586zM15 15h-8v-7h3v-3h5v10z"
+ }
+ }]
+};
+exports.copy = copy;
\ No newline at end of file
diff --git a/dist/icomoon/creditCard.js b/dist/icomoon/creditCard.js
new file mode 100644
index 000000000..dd68758a5
--- /dev/null
+++ b/dist/icomoon/creditCard.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.creditCard = void 0;
+var creditCard = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 2h-13c-0.825 0-1.5 0.675-1.5 1.5v9c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-9c0-0.825-0.675-1.5-1.5-1.5zM1.5 3h13c0.271 0 0.5 0.229 0.5 0.5v1.5h-14v-1.5c0-0.271 0.229-0.5 0.5-0.5zM14.5 13h-13c-0.271 0-0.5-0.229-0.5-0.5v-4.5h14v4.5c0 0.271-0.229 0.5-0.5 0.5zM2 10h1v2h-1zM4 10h1v2h-1zM6 10h1v2h-1z"
+ }
+ }]
+};
+exports.creditCard = creditCard;
\ No newline at end of file
diff --git a/dist/icomoon/crop.js b/dist/icomoon/crop.js
new file mode 100644
index 000000000..e6ae17812
--- /dev/null
+++ b/dist/icomoon/crop.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crop = void 0;
+var crop = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 4l3-3-1-1-3 3h-7v-3h-2v3h-3v2h3v8h8v3h2v-3h3v-2h-3v-7zM5 5h5l-5 5v-5zM6 11l5-5v5h-5z"
+ }
+ }]
+};
+exports.crop = crop;
\ No newline at end of file
diff --git a/dist/icomoon/cross.js b/dist/icomoon/cross.js
new file mode 100644
index 000000000..2e06e7654
--- /dev/null
+++ b/dist/icomoon/cross.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cross = void 0;
+var cross = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.854 12.854c-0-0-0-0-0-0l-4.854-4.854 4.854-4.854c0-0 0-0 0-0 0.052-0.052 0.090-0.113 0.114-0.178 0.066-0.178 0.028-0.386-0.114-0.529l-2.293-2.293c-0.143-0.143-0.351-0.181-0.529-0.114-0.065 0.024-0.126 0.062-0.178 0.114 0 0-0 0-0 0l-4.854 4.854-4.854-4.854c-0-0-0-0-0-0-0.052-0.052-0.113-0.090-0.178-0.114-0.178-0.066-0.386-0.029-0.529 0.114l-2.293 2.293c-0.143 0.143-0.181 0.351-0.114 0.529 0.024 0.065 0.062 0.126 0.114 0.178 0 0 0 0 0 0l4.854 4.854-4.854 4.854c-0 0-0 0-0 0-0.052 0.052-0.090 0.113-0.114 0.178-0.066 0.178-0.029 0.386 0.114 0.529l2.293 2.293c0.143 0.143 0.351 0.181 0.529 0.114 0.065-0.024 0.126-0.062 0.178-0.114 0-0 0-0 0-0l4.854-4.854 4.854 4.854c0 0 0 0 0 0 0.052 0.052 0.113 0.090 0.178 0.114 0.178 0.066 0.386 0.029 0.529-0.114l2.293-2.293c0.143-0.143 0.181-0.351 0.114-0.529-0.024-0.065-0.062-0.126-0.114-0.178z"
+ }
+ }]
+};
+exports.cross = cross;
\ No newline at end of file
diff --git a/dist/icomoon/crying.js b/dist/icomoon/crying.js
new file mode 100644
index 000000000..5639b38b5
--- /dev/null
+++ b/dist/icomoon/crying.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crying = void 0;
+var crying = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 13.375c-0.128 0-0.256-0.049-0.354-0.146-0.072-0.072-0.46-0.229-1.146-0.229s-1.075 0.157-1.146 0.229c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.471-0.471 1.453-0.521 1.854-0.521s1.383 0.051 1.854 0.521c0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 9c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 12c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 9c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 12c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.crying = crying;
\ No newline at end of file
diff --git a/dist/icomoon/crying2.js b/dist/icomoon/crying2.js
new file mode 100644
index 000000000..ea8ff226b
--- /dev/null
+++ b/dist/icomoon/crying2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crying2 = void 0;
+var crying2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 11.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM5 8.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM5.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5zM9.854 13.229c-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.072-0.072-0.46-0.229-1.146-0.229s-1.075 0.157-1.146 0.229c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.471-0.471 1.453-0.521 1.854-0.521s1.383 0.051 1.854 0.521c0.195 0.195 0.195 0.512 0 0.707zM12 11.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM12 8.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM12.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.crying2 = crying2;
\ No newline at end of file
diff --git a/dist/icomoon/css3.js b/dist/icomoon/css3.js
new file mode 100644
index 000000000..3314e3f48
--- /dev/null
+++ b/dist/icomoon/css3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.css3 = void 0;
+var css3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.381 0.758l-0.537 2.686h10.934l-0.342 1.735h-10.94l-0.53 2.686h10.933l-0.61 3.063-4.406 1.46-3.819-1.46 0.261-1.329h-2.686l-0.639 3.224 6.316 2.417 7.281-2.417 2.403-12.066z"
+ }
+ }]
+};
+exports.css3 = css3;
\ No newline at end of file
diff --git a/dist/icomoon/ctrl.js b/dist/icomoon/ctrl.js
new file mode 100644
index 000000000..f40dd4028
--- /dev/null
+++ b/dist/icomoon/ctrl.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ctrl = void 0;
+var ctrl = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 7c-0.139 0-0.278-0.058-0.377-0.171l-3.124-3.57-3.124 3.57c-0.182 0.208-0.498 0.229-0.706 0.047s-0.229-0.498-0.047-0.706l3.5-4c0.095-0.108 0.232-0.171 0.376-0.171s0.281 0.062 0.376 0.171l3.5 4c0.182 0.208 0.161 0.524-0.047 0.706-0.095 0.083-0.212 0.124-0.329 0.124z"
+ }
+ }]
+};
+exports.ctrl = ctrl;
\ No newline at end of file
diff --git a/dist/icomoon/database.js b/dist/icomoon/database.js
new file mode 100644
index 000000000..2561b1377
--- /dev/null
+++ b/dist/icomoon/database.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.database = void 0;
+var database = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 1.119-8 2.5v2c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-2c0-1.381-3.582-2.5-8-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 8.5c-4.418 0-8-1.119-8-2.5v3c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-3c0 1.381-3.582 2.5-8 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 13c-4.418 0-8-1.119-8-2.5v3c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-3c0 1.381-3.582 2.5-8 2.5z"
+ }
+ }]
+};
+exports.database = database;
\ No newline at end of file
diff --git a/dist/icomoon/delicious.js b/dist/icomoon/delicious.js
new file mode 100644
index 000000000..7410b398e
--- /dev/null
+++ b/dist/icomoon/delicious.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.delicious = void 0;
+var delicious = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0v16h16v-16h-16zM8 15v-7h-7v-7h7v7h7v7h-7z"
+ }
+ }]
+};
+exports.delicious = delicious;
\ No newline at end of file
diff --git a/dist/icomoon/deviantart.js b/dist/icomoon/deviantart.js
new file mode 100644
index 000000000..a4dd05779
--- /dev/null
+++ b/dist/icomoon/deviantart.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.deviantart = void 0;
+var deviantart = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.953 2.909v-2.909h-2.909l-0.291 0.294-1.375 2.616-0.431 0.291h-4.9v3.994h2.694l0.241 0.291-2.934 5.606v2.909h2.909l0.291-0.294 1.375-2.616 0.431-0.291h4.9v-3.994h-2.694l-0.241-0.294z"
+ }
+ }]
+};
+exports.deviantart = deviantart;
\ No newline at end of file
diff --git a/dist/icomoon/diamonds.js b/dist/icomoon/diamonds.js
new file mode 100644
index 000000000..385debc25
--- /dev/null
+++ b/dist/icomoon/diamonds.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.diamonds = void 0;
+var diamonds = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0l-5 8 5 8 5-8z"
+ }
+ }]
+};
+exports.diamonds = diamonds;
\ No newline at end of file
diff --git a/dist/icomoon/dice.js b/dist/icomoon/dice.js
new file mode 100644
index 000000000..a6656c3be
--- /dev/null
+++ b/dist/icomoon/dice.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dice = void 0;
+var dice = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 3h-8c-1.375 0-2.5 1.125-2.5 2.5v8c0 1.375 1.125 2.5 2.5 2.5h8c1.375 0 2.5-1.125 2.5-2.5v-8c0-1.375-1.125-2.5-2.5-2.5zM6.5 14c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM6.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM9.5 11c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.5 14c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.949 2c-0.233-1.138-1.245-2-2.449-2h-8c-1.375 0-2.5 1.125-2.5 2.5v8c0 1.204 0.862 2.216 2 2.449v-9.949c0-0.55 0.45-1 1-1h9.949z"
+ }
+ }]
+};
+exports.dice = dice;
\ No newline at end of file
diff --git a/dist/icomoon/display.js b/dist/icomoon/display.js
new file mode 100644
index 000000000..0ea8be49a
--- /dev/null
+++ b/dist/icomoon/display.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.display = void 0;
+var display = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1v10h16v-10h-16zM15 10h-14v-8h14v8zM10.5 12h-5l-0.5 2-1 1h8l-1-1z"
+ }
+ }]
+};
+exports.display = display;
\ No newline at end of file
diff --git a/dist/icomoon/download.js b/dist/icomoon/download.js
new file mode 100644
index 000000000..566db7291
--- /dev/null
+++ b/dist/icomoon/download.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.download = void 0;
+var download = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 9l4-4h-3v-4h-2v4h-3zM11.636 7.364l-1.121 1.121 4.064 1.515-6.579 2.453-6.579-2.453 4.064-1.515-1.121-1.121-4.364 1.636v4l8 3 8-3v-4z"
+ }
+ }]
+};
+exports.download = download;
\ No newline at end of file
diff --git a/dist/icomoon/download2.js b/dist/icomoon/download2.js
new file mode 100644
index 000000000..dd6e99fa8
--- /dev/null
+++ b/dist/icomoon/download2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.download2 = void 0;
+var download2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 8h-2.5l-3.5 3.5-3.5-3.5h-2.5l-2 4v1h16v-1l-2-4zM0 14h16v1h-16v-1zM9 5v-4h-2v4h-3.5l4.5 4.5 4.5-4.5h-3.5z"
+ }
+ }]
+};
+exports.download2 = download2;
\ No newline at end of file
diff --git a/dist/icomoon/download3.js b/dist/icomoon/download3.js
new file mode 100644
index 000000000..84eb5fe9c
--- /dev/null
+++ b/dist/icomoon/download3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.download3 = void 0;
+var download3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 7l-4 4-4-4h2.5v-6h3v6zM7.5 11h-7.5v4h15v-4h-7.5zM14 13h-2v-1h2v1z"
+ }
+ }]
+};
+exports.download3 = download3;
\ No newline at end of file
diff --git a/dist/icomoon/drawer.js b/dist/icomoon/drawer.js
new file mode 100644
index 000000000..ee570c122
--- /dev/null
+++ b/dist/icomoon/drawer.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.drawer = void 0;
+var drawer = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.89 10.188l-4-5c-0.095-0.119-0.239-0.188-0.39-0.188h-7c-0.152 0-0.296 0.069-0.39 0.188l-4 5c-0.071 0.089-0.11 0.199-0.11 0.312v4.5c0 0.552 0.448 1 1 1h14c0.552 0 1-0.448 1-1v-4.5c0-0.114-0.039-0.224-0.11-0.312zM15 11h-3.5l-2 2h-3l-2-2h-3.5v-0.325l3.74-4.675h6.519l3.74 4.675v0.325z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 8h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 10h-9c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h9c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.drawer = drawer;
\ No newline at end of file
diff --git a/dist/icomoon/drawer2.js b/dist/icomoon/drawer2.js
new file mode 100644
index 000000000..e57b4341b
--- /dev/null
+++ b/dist/icomoon/drawer2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.drawer2 = void 0;
+var drawer2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.89 10.188l-4-5c-0.095-0.119-0.239-0.188-0.39-0.188h-7c-0.152 0-0.296 0.069-0.39 0.188l-4 5c-0.071 0.089-0.11 0.199-0.11 0.312v4.5c0 0.552 0.448 1 1 1h14c0.552 0 1-0.448 1-1v-4.5c0-0.114-0.039-0.224-0.11-0.312zM15 11h-3.5l-2 2h-3l-2-2h-3.5v-0.325l3.74-4.675h6.519l3.74 4.675v0.325z"
+ }
+ }]
+};
+exports.drawer2 = drawer2;
\ No newline at end of file
diff --git a/dist/icomoon/dribbble.js b/dist/icomoon/dribbble.js
new file mode 100644
index 000000000..0c39b97a6
--- /dev/null
+++ b/dist/icomoon/dribbble.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dribbble = void 0;
+var dribbble = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c-4.412 0-8-3.588-8-8s3.587-8 8-8c4.412 0 8 3.587 8 8s-3.588 8-8 8v0zM14.747 9.094c-0.234-0.075-2.116-0.634-4.256-0.291 0.894 2.456 1.256 4.456 1.328 4.872 1.531-1.037 2.625-2.678 2.928-4.581v0zM10.669 14.3c-0.103-0.6-0.497-2.688-1.456-5.181-0.016 0.006-0.031 0.009-0.044 0.016-3.856 1.344-5.241 4.016-5.362 4.266 1.159 0.903 2.616 1.444 4.194 1.444 0.947 0 1.85-0.194 2.669-0.544v0zM2.922 12.578c0.156-0.266 2.031-3.369 5.553-4.509 0.088-0.028 0.178-0.056 0.269-0.081-0.172-0.388-0.359-0.778-0.553-1.159-3.409 1.022-6.722 0.978-7.022 0.975-0.003 0.069-0.003 0.138-0.003 0.209 0 1.753 0.666 3.356 1.756 4.566v0zM1.313 6.609c0.306 0.003 3.122 0.016 6.319-0.831-1.131-2.013-2.353-3.706-2.534-3.953-1.913 0.903-3.344 2.666-3.784 4.784v0zM6.4 1.366c0.188 0.253 1.431 1.944 2.55 4 2.431-0.909 3.459-2.294 3.581-2.469-1.206-1.072-2.794-1.722-4.531-1.722-0.55 0.003-1.088 0.069-1.6 0.191v0zM13.291 3.691c-0.144 0.194-1.291 1.663-3.816 2.694 0.159 0.325 0.313 0.656 0.453 0.991 0.050 0.119 0.1 0.234 0.147 0.353 2.275-0.284 4.534 0.172 4.759 0.219-0.016-1.612-0.594-3.094-1.544-4.256v0z"
+ }
+ }]
+};
+exports.dribbble = dribbble;
\ No newline at end of file
diff --git a/dist/icomoon/drive.js b/dist/icomoon/drive.js
new file mode 100644
index 000000000..9849484e7
--- /dev/null
+++ b/dist/icomoon/drive.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.drive = void 0;
+var drive = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 14h10c1.657 0 3-1.343 3-3h-16c0 1.657 1.343 3 3 3zM13 12h1v1h-1v-1zM15 2h-14l-1 8h16z"
+ }
+ }]
+};
+exports.drive = drive;
\ No newline at end of file
diff --git a/dist/icomoon/dropbox.js b/dist/icomoon/dropbox.js
new file mode 100644
index 000000000..38d65d835
--- /dev/null
+++ b/dist/icomoon/dropbox.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dropbox = void 0;
+var dropbox = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 0.5l-3.5 3 4.5 3 3.5-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 3.5l-3.5-3-4.5 3 3.5 3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 6.5l3.5 3-4.5 2.5-3.5-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 9l-4.5-2.5-3.5 3 4.5 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.377 13.212l-3.377-2.895-3.377 2.895-2.123-1.179v1.467l5.5 2.5 5.5-2.5v-1.467z"
+ }
+ }]
+};
+exports.dropbox = dropbox;
\ No newline at end of file
diff --git a/dist/icomoon/droplet.js b/dist/icomoon/droplet.js
new file mode 100644
index 000000000..bce4438db
--- /dev/null
+++ b/dist/icomoon/droplet.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.droplet = void 0;
+var droplet = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.51 7.393c-1.027-2.866-3.205-5.44-5.51-7.393-2.305 1.953-4.482 4.527-5.51 7.393-0.635 1.772-0.698 3.696 0.197 5.397 1.029 1.955 3.104 3.21 5.313 3.21s4.284-1.255 5.313-3.21c0.895-1.701 0.832-3.624 0.197-5.397zM11.543 11.859c-0.684 1.301-2.075 2.141-3.543 2.141-0.861 0-1.696-0.29-2.377-0.791 0.207 0.027 0.416 0.041 0.627 0.041 1.835 0 3.573-1.050 4.428-2.676 0.701-1.333 0.64-2.716 0.373-3.818 0.227 0.44 0.42 0.878 0.576 1.311 0.353 0.985 0.625 2.443-0.084 3.791z"
+ }
+ }]
+};
+exports.droplet = droplet;
\ No newline at end of file
diff --git a/dist/icomoon/earth.js b/dist/icomoon/earth.js
new file mode 100644
index 000000000..9468e19ba
--- /dev/null
+++ b/dist/icomoon/earth.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.earth = void 0;
+var earth = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 15c-0.984 0-1.92-0.203-2.769-0.57l3.643-4.098c0.081-0.092 0.126-0.21 0.126-0.332v-1.5c0-0.276-0.224-0.5-0.5-0.5-1.765 0-3.628-1.835-3.646-1.854-0.094-0.094-0.221-0.146-0.354-0.146h-2c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.189 0.107 0.363 0.276 0.447l1.724 0.862v2.936c-1.813-1.265-3-3.366-3-5.745 0-1.074 0.242-2.091 0.674-3h1.826c0.133 0 0.26-0.053 0.354-0.146l2-2c0.094-0.094 0.146-0.221 0.146-0.354v-1.21c0.634-0.189 1.305-0.29 2-0.29 1.1 0 2.141 0.254 3.067 0.706-0.065 0.055-0.128 0.112-0.188 0.172-0.567 0.567-0.879 1.32-0.879 2.121s0.312 1.555 0.879 2.121c0.569 0.569 1.332 0.879 2.119 0.879 0.049 0 0.099-0.001 0.149-0.004 0.216 0.809 0.605 2.917-0.131 5.818-0.007 0.027-0.011 0.055-0.013 0.082-1.271 1.298-3.042 2.104-5.002 2.104z"
+ }
+ }]
+};
+exports.earth = earth;
\ No newline at end of file
diff --git a/dist/icomoon/edge.js b/dist/icomoon/edge.js
new file mode 100644
index 000000000..5582933ae
--- /dev/null
+++ b/dist/icomoon/edge.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.edge = void 0;
+var edge = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.241 7.103c0.469-3.7 2.994-7.056 7.519-7.103 2.731 0.053 4.978 1.291 6.316 3.65 0.672 1.231 0.881 2.525 0.925 3.953v1.678h-10.041c0.047 4.141 6.094 4 8.697 2.175v3.372c-1.525 0.916-4.984 1.734-7.662 0.681-2.281-0.856-3.906-3.244-3.897-5.541-0.075-2.978 1.481-4.95 3.897-6.072-0.513 0.634-0.903 1.334-1.106 2.547h5.669c0 0 0.331-3.388-3.209-3.388-3.338 0.116-5.744 2.056-7.106 4.047v0z"
+ }
+ }]
+};
+exports.edge = edge;
\ No newline at end of file
diff --git a/dist/icomoon/eject.js b/dist/icomoon/eject.js
new file mode 100644
index 000000000..d69d04a02
--- /dev/null
+++ b/dist/icomoon/eject.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eject = void 0;
+var eject = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 12h16v2h-16zM8 2l8 8h-16z"
+ }
+ }]
+};
+exports.eject = eject;
\ No newline at end of file
diff --git a/dist/icomoon/ello.js b/dist/icomoon/ello.js
new file mode 100644
index 000000000..f0bf07e88
--- /dev/null
+++ b/dist/icomoon/ello.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ello = void 0;
+var ello = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM12.885 9.212c-0.575 2.23-2.584 3.788-4.885 3.788s-4.31-1.558-4.885-3.788c-0.097-0.377 0.131-0.764 0.508-0.861 0.058-0.015 0.118-0.023 0.177-0.023 0.322 0 0.604 0.218 0.684 0.531 0.414 1.605 1.86 2.727 3.516 2.727s3.102-1.121 3.516-2.727c0.081-0.313 0.362-0.531 0.684-0.531 0.060 0 0.12 0.008 0.178 0.023 0.183 0.047 0.336 0.163 0.432 0.326s0.123 0.353 0.075 0.536z"
+ }
+ }]
+};
+exports.ello = ello;
\ No newline at end of file
diff --git a/dist/icomoon/embed.js b/dist/icomoon/embed.js
new file mode 100644
index 000000000..142ff22d4
--- /dev/null
+++ b/dist/icomoon/embed.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.embed = void 0;
+var embed = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 11.5l1.5 1.5 5-5-5-5-1.5 1.5 3.5 3.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 4.5l-1.5-1.5-5 5 5 5 1.5-1.5-3.5-3.5z"
+ }
+ }]
+};
+exports.embed = embed;
\ No newline at end of file
diff --git a/dist/icomoon/embed2.js b/dist/icomoon/embed2.js
new file mode 100644
index 000000000..e0b8bd451
--- /dev/null
+++ b/dist/icomoon/embed2.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.embed2 = void 0;
+var embed2 = {
+ "viewBox": "0 0 20 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 11.5l1.5 1.5 5-5-5-5-1.5 1.5 3.5 3.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 4.5l-1.5-1.5-5 5 5 5 1.5-1.5-3.5-3.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.958 2.352l1.085 0.296-3 11-1.085-0.296 3-11z"
+ }
+ }]
+};
+exports.embed2 = embed2;
\ No newline at end of file
diff --git a/dist/icomoon/enlarge.js b/dist/icomoon/enlarge.js
new file mode 100644
index 000000000..86e9fdfbd
--- /dev/null
+++ b/dist/icomoon/enlarge.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.enlarge = void 0;
+var enlarge = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 0h-6.5l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 16v-6.5l-2.5 2.5-3-3-1.5 1.5 3 3-2.5 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 16h6.5l-2.5-2.5 3-3-1.5-1.5-3 3-2.5-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0v6.5l2.5-2.5 3 3 1.5-1.5-3-3 2.5-2.5z"
+ }
+ }]
+};
+exports.enlarge = enlarge;
\ No newline at end of file
diff --git a/dist/icomoon/enlarge2.js b/dist/icomoon/enlarge2.js
new file mode 100644
index 000000000..25c392663
--- /dev/null
+++ b/dist/icomoon/enlarge2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.enlarge2 = void 0;
+var enlarge2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 0v6.5l-2.5-2.5-3 3-1.5-1.5 3-3-2.5-2.5zM7 10.5l-3 3 2.5 2.5h-6.5v-6.5l2.5 2.5 3-3z"
+ }
+ }]
+};
+exports.enlarge2 = enlarge2;
\ No newline at end of file
diff --git a/dist/icomoon/enter.js b/dist/icomoon/enter.js
new file mode 100644
index 000000000..eab79af5e
--- /dev/null
+++ b/dist/icomoon/enter.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.enter = void 0;
+var enter = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 8h-5v-2h5v-2l3 3-3 3zM16 0v13l-6 3v-3h-6v-4h1v3h5v-9l4-2h-9v4h-1v-5z"
+ }
+ }]
+};
+exports.enter = enter;
\ No newline at end of file
diff --git a/dist/icomoon/envelop.js b/dist/icomoon/envelop.js
new file mode 100644
index 000000000..b0cf474ec
--- /dev/null
+++ b/dist/icomoon/envelop.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.envelop = void 0;
+var envelop = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 2h-13c-0.825 0-1.5 0.675-1.5 1.5v10c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-10c0-0.825-0.675-1.5-1.5-1.5zM6.23 8.6l-4.23 3.295v-7.838l4.23 4.543zM2.756 4h10.488l-5.244 3.938-5.244-3.938zM6.395 8.777l1.605 1.723 1.605-1.723 3.29 4.223h-9.79l3.29-4.223zM9.77 8.6l4.23-4.543v7.838l-4.23-3.295z"
+ }
+ }]
+};
+exports.envelop = envelop;
\ No newline at end of file
diff --git a/dist/icomoon/equalizer.js b/dist/icomoon/equalizer.js
new file mode 100644
index 000000000..b05ede47e
--- /dev/null
+++ b/dist/icomoon/equalizer.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.equalizer = void 0;
+var equalizer = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 2v-0.25c0-0.413-0.338-0.75-0.75-0.75h-2.5c-0.413 0-0.75 0.337-0.75 0.75v0.25h-3v2h3v0.25c0 0.412 0.337 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h9v-2h-9zM4 4v-2h2v2h-2zM13 6.75c0-0.412-0.338-0.75-0.75-0.75h-2.5c-0.412 0-0.75 0.338-0.75 0.75v0.25h-9v2h9v0.25c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h3v-2h-3v-0.25zM10 9v-2h2v2h-2zM7 11.75c0-0.412-0.338-0.75-0.75-0.75h-2.5c-0.413 0-0.75 0.338-0.75 0.75v0.25h-3v2h3v0.25c0 0.412 0.337 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h9v-2h-9v-0.25zM4 14v-2h2v2h-2z"
+ }
+ }]
+};
+exports.equalizer = equalizer;
\ No newline at end of file
diff --git a/dist/icomoon/equalizer2.js b/dist/icomoon/equalizer2.js
new file mode 100644
index 000000000..e6f6b1e38
--- /dev/null
+++ b/dist/icomoon/equalizer2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.equalizer2 = void 0;
+var equalizer2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 7h0.25c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-0.25v-3h-2v3h-0.25c-0.412 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v9h2v-9zM12 4h2v2h-2v-2zM9.25 13c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-0.25v-9h-2v9h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v3h2v-3h0.25zM7 10h2v2h-2v-2zM4.25 7c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-0.25v-3h-2v3h-0.25c-0.413 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.337 0.75 0.75 0.75h0.25v9h2v-9h0.25zM2 4h2v2h-2v-2z"
+ }
+ }]
+};
+exports.equalizer2 = equalizer2;
\ No newline at end of file
diff --git a/dist/icomoon/evil.js b/dist/icomoon/evil.js
new file mode 100644
index 000000000..35993855d
--- /dev/null
+++ b/dist/icomoon/evil.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.evil = void 0;
+var evil = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 7c-0.552 0-1-0.448-1-1 0-0.018 0.001-0.036 0.002-0.054 0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1zM4.379 4.985c-0.268-0.067-0.431-0.338-0.364-0.606s0.338-0.431 0.606-0.364c0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334zM8 11.5c1.274 0 2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427s-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699zM16 1c0-0.711-0.149-1.387-0.416-2-0.525 1.201-1.507 2.155-2.726 2.643-1.347-1.031-3.030-1.643-4.857-1.643s-3.51 0.613-4.857 1.643c-1.22-0.488-2.202-1.443-2.726-2.643-0.268 0.613-0.416 1.289-0.416 2 0 1.15 0.388 2.208 1.040 3.053-0.662 1.165-1.040 2.512-1.040 3.947 0 4.418 3.582 8 8 8s8-3.582 8-8c0-1.436-0.378-2.783-1.040-3.947 0.652-0.845 1.040-1.903 1.040-3.053zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"
+ }
+ }]
+};
+exports.evil = evil;
\ No newline at end of file
diff --git a/dist/icomoon/evil2.js b/dist/icomoon/evil2.js
new file mode 100644
index 000000000..492a04ac2
--- /dev/null
+++ b/dist/icomoon/evil2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.evil2 = void 0;
+var evil2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 1c0-0.711-0.149-1.387-0.416-2-0.525 1.201-1.507 2.155-2.726 2.643-1.347-1.031-3.030-1.643-4.857-1.643s-3.51 0.613-4.857 1.643c-1.22-0.488-2.202-1.443-2.726-2.643-0.268 0.613-0.416 1.289-0.416 2 0 1.15 0.388 2.208 1.040 3.053-0.662 1.165-1.040 2.512-1.040 3.947 0 4.418 3.582 8 8 8s8-3.582 8-8c0-1.436-0.378-2.783-1.040-3.947 0.652-0.845 1.040-1.903 1.040-3.053zM9.001 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM8 13c-1.82 0-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427z"
+ }
+ }]
+};
+exports.evil2 = evil2;
\ No newline at end of file
diff --git a/dist/icomoon/exit.js b/dist/icomoon/exit.js
new file mode 100644
index 000000000..7597b5f6c
--- /dev/null
+++ b/dist/icomoon/exit.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.exit = void 0;
+var exit = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 10v-2h-5v-2h5v-2l3 3zM11 9v4h-5v3l-6-3v-13h11v5h-1v-4h-8l4 2v9h4v-3z"
+ }
+ }]
+};
+exports.exit = exit;
\ No newline at end of file
diff --git a/dist/icomoon/eye.js b/dist/icomoon/eye.js
new file mode 100644
index 000000000..d8382b287
--- /dev/null
+++ b/dist/icomoon/eye.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eye = void 0;
+var eye = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 3c-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-1.486-2.968-4.511-5-8-5zM11.945 5.652c0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.737-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.481-0.085-0.942-0.241-1.369 0.062 0.037 0.124 0.075 0.185 0.114v0zM8 6.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z"
+ }
+ }]
+};
+exports.eye = eye;
\ No newline at end of file
diff --git a/dist/icomoon/eyeBlocked.js b/dist/icomoon/eyeBlocked.js
new file mode 100644
index 000000000..f42898179
--- /dev/null
+++ b/dist/icomoon/eyeBlocked.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eyeBlocked = void 0;
+var eyeBlocked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.78 0.22c-0.293-0.293-0.768-0.293-1.061 0l-3.159 3.159c-0.812-0.246-1.671-0.378-2.561-0.378-3.489 0-6.514 2.032-8 5 0.643 1.283 1.573 2.391 2.703 3.236l-2.484 2.484c-0.293 0.293-0.293 0.768 0 1.061 0.146 0.146 0.338 0.22 0.53 0.22s0.384-0.073 0.53-0.22l13.5-13.5c0.293-0.293 0.293-0.768 0-1.061zM6.5 5c0.66 0 1.22 0.426 1.421 1.019l-1.902 1.902c-0.592-0.201-1.019-0.761-1.019-1.421 0-0.828 0.672-1.5 1.5-1.5zM1.721 8c0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 0.858 0.27 1.652 0.73 2.303l-0.952 0.952c-0.819-0.576-1.519-1.311-2.057-2.162z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 6.906c0-0.424-0.066-0.833-0.189-1.217l-5.028 5.028c0.384 0.123 0.793 0.189 1.217 0.189 2.209 0 4-1.791 4-4z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.969 4.531l-1.084 1.084c0.020 0.012 0.040 0.024 0.059 0.037 0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152-0.604 0-1.202-0.074-1.781-0.219l-1.201 1.201c0.933 0.335 1.937 0.518 2.982 0.518 3.489 0 6.514-2.032 8-5-0.703-1.405-1.752-2.6-3.031-3.469z"
+ }
+ }]
+};
+exports.eyeBlocked = eyeBlocked;
\ No newline at end of file
diff --git a/dist/icomoon/eyeMinus.js b/dist/icomoon/eyeMinus.js
new file mode 100644
index 000000000..fbdceb5d5
--- /dev/null
+++ b/dist/icomoon/eyeMinus.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eyeMinus = void 0;
+var eyeMinus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 2h6v2h-6v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.599 5h-4.599v-1.944c-0.328-0.037-0.662-0.056-1-0.056-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-0.584-1.167-1.407-2.189-2.401-3zM6.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM11.944 10.348c-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.736-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.481-0.085-0.942-0.241-1.369 0.062 0.037 0.124 0.075 0.185 0.114 0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348z"
+ }
+ }]
+};
+exports.eyeMinus = eyeMinus;
\ No newline at end of file
diff --git a/dist/icomoon/eyePlus.js b/dist/icomoon/eyePlus.js
new file mode 100644
index 000000000..f40d64560
--- /dev/null
+++ b/dist/icomoon/eyePlus.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eyePlus = void 0;
+var eyePlus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 2h-2v-2h-2v2h-2v2h2v2h2v-2h2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.498 6.969c0.288 0.32 0.55 0.665 0.782 1.031-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.736-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.011-0-0.022-0-0.032-1.708-0.44-2.973-1.979-2.999-3.817-0.329-0.037-0.662-0.057-1.001-0.057-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-0.276-0.55-0.604-1.069-0.979-1.548-0.457 0.268-0.973 0.449-1.523 0.517zM6.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5z"
+ }
+ }]
+};
+exports.eyePlus = eyePlus;
\ No newline at end of file
diff --git a/dist/icomoon/eyedropper.js b/dist/icomoon/eyedropper.js
new file mode 100644
index 000000000..c56bad5ca
--- /dev/null
+++ b/dist/icomoon/eyedropper.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eyedropper = void 0;
+var eyedropper = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.414 0.586c-0.781-0.781-2.047-0.781-2.828 0l-2.689 2.689-1.896-1.896-2.121 2.121 1.663 1.663-7.377 7.377c-0.126 0.126-0.179 0.296-0.161 0.46h-0.004v2.5c0 0.276 0.224 0.5 0.5 0.5h2.5c0 0 0.042 0 0.063 0 0.144 0 0.288-0.055 0.398-0.165l7.377-7.377 1.663 1.663 2.121-2.121-1.896-1.896 2.689-2.689c0.781-0.781 0.781-2.047 0-2.828zM2.705 15h-1.705v-1.705l7.337-7.337 1.704 1.704-7.337 7.337z"
+ }
+ }]
+};
+exports.eyedropper = eyedropper;
\ No newline at end of file
diff --git a/dist/icomoon/facebook.js b/dist/icomoon/facebook.js
new file mode 100644
index 000000000..68de25089
--- /dev/null
+++ b/dist/icomoon/facebook.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.facebook = void 0;
+var facebook = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 3h2.5v-3h-2.5c-1.93 0-3.5 1.57-3.5 3.5v1.5h-2v3h2v8h3v-8h2.5l0.5-3h-3v-1.5c0-0.271 0.229-0.5 0.5-0.5z"
+ }
+ }]
+};
+exports.facebook = facebook;
\ No newline at end of file
diff --git a/dist/icomoon/facebook2.js b/dist/icomoon/facebook2.js
new file mode 100644
index 000000000..a84ac6854
--- /dev/null
+++ b/dist/icomoon/facebook2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.facebook2 = void 0;
+var facebook2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h6.5v-7h-2v-2h2v-1c0-1.653 1.347-3 3-3h2v2h-2c-0.55 0-1 0.45-1 1v1h3l-0.5 2h-2.5v7h4.5c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5z"
+ }
+ }]
+};
+exports.facebook2 = facebook2;
\ No newline at end of file
diff --git a/dist/icomoon/feed.js b/dist/icomoon/feed.js
new file mode 100644
index 000000000..03021278b
--- /dev/null
+++ b/dist/icomoon/feed.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.feed = void 0;
+var feed = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 8c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10.38 3.602c1.56 0.846 2.62 2.498 2.62 4.398s-1.059 3.552-2.62 4.398c0.689-1.096 1.12-2.66 1.12-4.398s-0.431-3.302-1.12-4.398zM4.5 8c0 1.738 0.431 3.302 1.12 4.398-1.56-0.846-2.62-2.498-2.62-4.398s1.059-3.552 2.62-4.398c-0.689 1.096-1.12 2.66-1.12 4.398zM1.5 8c0 2.686 0.85 5.097 2.198 6.746-2.223-1.421-3.698-3.911-3.698-6.746s1.474-5.325 3.698-6.746c-1.348 1.649-2.198 4.060-2.198 6.746zM12.302 1.254c2.223 1.421 3.698 3.911 3.698 6.746s-1.474 5.325-3.698 6.746c1.348-1.649 2.198-4.060 2.198-6.746s-0.85-5.097-2.198-6.746z"
+ }
+ }]
+};
+exports.feed = feed;
\ No newline at end of file
diff --git a/dist/icomoon/fileEmpty.js b/dist/icomoon/fileEmpty.js
new file mode 100644
index 000000000..38ad3dd11
--- /dev/null
+++ b/dist/icomoon/fileEmpty.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileEmpty = void 0;
+var fileEmpty = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.fileEmpty = fileEmpty;
\ No newline at end of file
diff --git a/dist/icomoon/fileExcel.js b/dist/icomoon/fileExcel.js
new file mode 100644
index 000000000..00cd65dcb
--- /dev/null
+++ b/dist/icomoon/fileExcel.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileExcel = void 0;
+var fileExcel = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.61 6h-2.114l-1.496 2.204-1.496-2.204h-2.114l2.534 3.788-2.859 4.212h3.935v-1.431h-0.784l0.784-1.172 1.741 2.603h2.194l-2.859-4.212 2.534-3.788z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.fileExcel = fileExcel;
\ No newline at end of file
diff --git a/dist/icomoon/fileMusic.js b/dist/icomoon/fileMusic.js
new file mode 100644
index 000000000..823d39a32
--- /dev/null
+++ b/dist/icomoon/fileMusic.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileMusic = void 0;
+var fileMusic = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.817 6.113c-0.116-0.095-0.268-0.133-0.415-0.104l-5 1c-0.234 0.047-0.402 0.252-0.402 0.49v3.701c-0.294-0.128-0.636-0.201-1-0.201-1.105 0-2 0.672-2 1.5s0.895 1.5 2 1.5 2-0.672 2-1.5v-3.59l4-0.8v2.091c-0.294-0.128-0.636-0.201-1-0.201-1.105 0-2 0.672-2 1.5s0.895 1.5 2 1.5 2-0.672 2-1.5v-5c0-0.15-0.067-0.292-0.183-0.387z"
+ }
+ }]
+};
+exports.fileMusic = fileMusic;
\ No newline at end of file
diff --git a/dist/icomoon/fileOpenoffice.js b/dist/icomoon/fileOpenoffice.js
new file mode 100644
index 000000000..eae05ddf2
--- /dev/null
+++ b/dist/icomoon/fileOpenoffice.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileOpenoffice = void 0;
+var fileOpenoffice = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.785 7.37c-0.948-0.448-2.156-0.538-3.044 0.095 1.080-0.103 2.265 0.076 3.049 0.893 0.75-0.861 1.939-1.022 3.015-0.933-0.898-0.596-2.082-0.516-3.019-0.054v0zM10.401 9.465c-1.068-0.025-2.101 0.362-2.986 0.939-1.675-0.712-3.793-0.58-5.219 0.609 0.411-0.015 0.813-0.116 1.22-0.169 1.487-0.148 3.072 0.221 4.196 1.247 0.465-0.68 1.119-1.223 1.87-1.561 0.986-0.477 2.096-0.526 3.169-0.539-0.651-0.448-1.478-0.531-2.249-0.526z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.fileOpenoffice = fileOpenoffice;
\ No newline at end of file
diff --git a/dist/icomoon/filePdf.js b/dist/icomoon/filePdf.js
new file mode 100644
index 000000000..933a992b8
--- /dev/null
+++ b/dist/icomoon/filePdf.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filePdf = void 0;
+var filePdf = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.156 9.211c-0.213-0.21-0.686-0.321-1.406-0.331-0.487-0.005-1.073 0.038-1.69 0.124-0.276-0.159-0.561-0.333-0.784-0.542-0.601-0.561-1.103-1.34-1.415-2.197 0.020-0.080 0.038-0.15 0.054-0.222 0 0 0.339-1.923 0.249-2.573-0.012-0.089-0.020-0.115-0.044-0.184l-0.029-0.076c-0.092-0.212-0.273-0.437-0.556-0.425l-0.171-0.005c-0.316 0-0.573 0.161-0.64 0.403-0.205 0.757 0.007 1.889 0.39 3.355l-0.098 0.239c-0.275 0.67-0.619 1.345-0.923 1.94l-0.040 0.077c-0.32 0.626-0.61 1.157-0.873 1.607l-0.271 0.144c-0.020 0.010-0.485 0.257-0.594 0.323-0.926 0.553-1.539 1.18-1.641 1.678-0.032 0.159-0.008 0.362 0.156 0.456l0.263 0.132c0.114 0.057 0.234 0.086 0.357 0.086 0.659 0 1.425-0.821 2.48-2.662 1.218-0.396 2.604-0.726 3.819-0.908 0.926 0.521 2.065 0.883 2.783 0.883 0.128 0 0.238-0.012 0.327-0.036 0.138-0.037 0.254-0.115 0.325-0.222 0.139-0.21 0.168-0.499 0.13-0.795-0.011-0.088-0.081-0.196-0.157-0.271zM3.307 12.72c0.12-0.329 0.596-0.979 1.3-1.556 0.044-0.036 0.153-0.138 0.253-0.233-0.736 1.174-1.229 1.642-1.553 1.788zM7.476 3.12c0.212 0 0.333 0.534 0.343 1.035s-0.107 0.853-0.252 1.113c-0.12-0.385-0.179-0.992-0.179-1.389 0 0-0.009-0.759 0.088-0.759v0zM6.232 9.961c0.148-0.264 0.301-0.543 0.458-0.839 0.383-0.724 0.624-1.29 0.804-1.755 0.358 0.651 0.804 1.205 1.328 1.649 0.065 0.055 0.135 0.111 0.207 0.166-1.066 0.211-1.987 0.467-2.798 0.779v0zM12.952 9.901c-0.065 0.041-0.251 0.064-0.37 0.064-0.386 0-0.864-0.176-1.533-0.464 0.257-0.019 0.493-0.029 0.705-0.029 0.387 0 0.502-0.002 0.88 0.095s0.383 0.293 0.318 0.333v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.filePdf = filePdf;
\ No newline at end of file
diff --git a/dist/icomoon/filePicture.js b/dist/icomoon/filePicture.js
new file mode 100644
index 000000000..889ca307a
--- /dev/null
+++ b/dist/icomoon/filePicture.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filePicture = void 0;
+var filePicture = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 14h-10v-2l3-5 4.109 5 2.891-2v4z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 7.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5c0.828 0 1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.filePicture = filePicture;
\ No newline at end of file
diff --git a/dist/icomoon/filePlay.js b/dist/icomoon/filePlay.js
new file mode 100644
index 000000000..70d52450a
--- /dev/null
+++ b/dist/icomoon/filePlay.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filePlay = void 0;
+var filePlay = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 6l5 3.5-5 3.5v-7z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.filePlay = filePlay;
\ No newline at end of file
diff --git a/dist/icomoon/fileText.js b/dist/icomoon/fileText.js
new file mode 100644
index 000000000..7fab0a2ba
--- /dev/null
+++ b/dist/icomoon/fileText.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileText = void 0;
+var fileText = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 0h-12c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h12c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13 14h-11v-12h11v12zM4 7h7v1h-7zM4 9h7v1h-7zM4 11h7v1h-7zM4 5h7v1h-7z"
+ }
+ }]
+};
+exports.fileText = fileText;
\ No newline at end of file
diff --git a/dist/icomoon/fileText2.js b/dist/icomoon/fileText2.js
new file mode 100644
index 000000000..bab24fe54
--- /dev/null
+++ b/dist/icomoon/fileText2.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileText2 = void 0;
+var fileText2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 13h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 11h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 9h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.fileText2 = fileText2;
\ No newline at end of file
diff --git a/dist/icomoon/fileVideo.js b/dist/icomoon/fileVideo.js
new file mode 100644
index 000000000..de14bf879
--- /dev/null
+++ b/dist/icomoon/fileVideo.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileVideo = void 0;
+var fileVideo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0 0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0 0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 8h5v5h-5v-5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 10l3-2v5l-3-2z"
+ }
+ }]
+};
+exports.fileVideo = fileVideo;
\ No newline at end of file
diff --git a/dist/icomoon/fileWord.js b/dist/icomoon/fileWord.js
new file mode 100644
index 000000000..3dbbc95fb
--- /dev/null
+++ b/dist/icomoon/fileWord.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileWord = void 0;
+var fileWord = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.997 7.436h0.691l-0.797 3.534-1.036-4.969h-1.665l-1.205 4.969-0.903-4.969h-1.741l1.767 7.998h1.701l1.192-4.73 1.066 4.73h1.568l2.025-7.998h-2.663v1.435z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.fileWord = fileWord;
\ No newline at end of file
diff --git a/dist/icomoon/fileZip.js b/dist/icomoon/fileZip.js
new file mode 100644
index 000000000..ae8f5cd5a
--- /dev/null
+++ b/dist/icomoon/fileZip.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fileZip = void 0;
+var fileZip = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0 0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0 0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 1h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 2h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 3h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 4h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 5h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 6h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 7h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 8h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 13.25c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-1.25v-1h-2v4.25zM7 12v1h-2v-1h2z"
+ }
+ }]
+};
+exports.fileZip = fileZip;
\ No newline at end of file
diff --git a/dist/icomoon/filesEmpty.js b/dist/icomoon/filesEmpty.js
new file mode 100644
index 000000000..2b68b5305
--- /dev/null
+++ b/dist/icomoon/filesEmpty.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filesEmpty = void 0;
+var filesEmpty = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 5.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-5.75c-0.689 0-1.25 0.561-1.25 1.25v11.5c0 0.689 0.561 1.25 1.25 1.25h9.5c0.689 0 1.25-0.561 1.25-1.25v-7.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 4.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-9.5c-0.136 0-0.25-0.114-0.25-0.25v-11.5c0-0.135 0.114-0.25 0.25-0.25 0 0 5.749-0 5.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v7.75z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.421 0.659c-0.806-0.591-1.197-0.659-1.421-0.659h-5.75c-0.689 0-1.25 0.561-1.25 1.25v11.5c0 0.604 0.43 1.109 1 1.225v-12.725c0-0.135 0.115-0.25 0.25-0.25h7.607c-0.151-0.124-0.297-0.238-0.437-0.341z"
+ }
+ }]
+};
+exports.filesEmpty = filesEmpty;
\ No newline at end of file
diff --git a/dist/icomoon/film.js b/dist/icomoon/film.js
new file mode 100644
index 000000000..63cfe2812
--- /dev/null
+++ b/dist/icomoon/film.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.film = void 0;
+var film = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 2v12h16v-12h-16zM3 13h-2v-2h2v2zM3 9h-2v-2h2v2zM3 5h-2v-2h2v2zM12 13h-8v-10h8v10zM15 13h-2v-2h2v2zM15 9h-2v-2h2v2zM15 5h-2v-2h2v2zM6 5v6l4-3z"
+ }
+ }]
+};
+exports.film = film;
\ No newline at end of file
diff --git a/dist/icomoon/filter.js b/dist/icomoon/filter.js
new file mode 100644
index 000000000..bbfcca55d
--- /dev/null
+++ b/dist/icomoon/filter.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filter = void 0;
+var filter = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 1.119-8 2.5v1.5l6 6v5c0 0.552 0.895 1 2 1s2-0.448 2-1v-5l6-6v-1.5c0-1.381-3.582-2.5-8-2.5zM1.475 2.169c0.374-0.213 0.9-0.416 1.52-0.586 1.374-0.376 3.152-0.583 5.005-0.583s3.631 0.207 5.005 0.583c0.62 0.17 1.146 0.372 1.52 0.586 0.247 0.141 0.38 0.26 0.442 0.331-0.062 0.071-0.195 0.19-0.442 0.331-0.374 0.213-0.9 0.416-1.52 0.586-1.374 0.376-3.152 0.583-5.005 0.583s-3.631-0.207-5.005-0.583c-0.62-0.17-1.146-0.372-1.52-0.586-0.247-0.141-0.38-0.26-0.442-0.331 0.062-0.071 0.195-0.19 0.442-0.331z"
+ }
+ }]
+};
+exports.filter = filter;
\ No newline at end of file
diff --git a/dist/icomoon/finder.js b/dist/icomoon/finder.js
new file mode 100644
index 000000000..bd48b21b6
--- /dev/null
+++ b/dist/icomoon/finder.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.finder = void 0;
+var finder = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.894 12.16c-0-0.001-0-0.001-0-0.002 0 0.001 0 0.001 0 0.002z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.916 12.727c-0-0.004-0-0.007-0.001-0.011 0 0.004 0 0.007 0.001 0.011z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.903 12.442c-0-0.003-0-0.006-0-0.008 0 0.003 0 0.006 0 0.008z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 0h-14c-0.55 0-1 0.45-1 1v14c0 0.55 0.45 1 1 1h7.716c0.001 0 0.001 0 0.002 0s0.001-0 0.002-0h6.28c0.55 0 1-0.45 1-1v-14c0-0.55-0.45-1-1-1zM3 3.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1zM15 15h-5.86c-0.105-0.658-0.17-1.336-0.209-1.994 0 0.002 0 0.004 0 0.005-0.308 0.034-0.618 0.051-0.931 0.051-2.088 0-4.1-0.76-5.664-2.141-0.233-0.206-0.255-0.561-0.050-0.794s0.561-0.255 0.794-0.050c1.358 1.199 3.105 1.859 4.919 1.859 0.298 0 0.595-0.018 0.888-0.053-0.034-1.847 0.107-3.311 0.11-3.334 0.014-0.141-0.032-0.28-0.127-0.385s-0.229-0.164-0.371-0.164h-1.487c0.022-0.541 0.079-1.466 0.234-2.503 0.295-1.981 0.812-3.528 1.502-4.497h6.251v14z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 5c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.445 13.050c-0.057 0.003-0.114 0.005-0.171 0.007 0.057-0.002 0.114-0.004 0.171-0.007z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 13.063c0.073 0 0.146-0.001 0.22-0.003-0.073 0.002-0.146 0.003-0.22 0.003z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.423 11.925c0.012-0.001 0.024-0.001 0.037-0.002-0.012 0.001-0.024 0.001-0.037 0.002z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.204 11.934c0.017-0 0.034-0.001 0.050-0.002-0.017 0.001-0.034 0.001-0.050 0.002z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.713 10.128c-0.206-0.233-0.561-0.255-0.794-0.050-1.135 1.002-2.542 1.627-4.032 1.806 0.007 0.364 0.020 0.742 0.043 1.127 1.749-0.191 3.403-0.916 4.733-2.090 0.233-0.206 0.255-0.561 0.050-0.794z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.93 13.012c-0.072 0.008-0.144 0.015-0.216 0.021 0.072-0.006 0.144-0.013 0.216-0.021z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.68 13.035c-0.061 0.005-0.122 0.009-0.183 0.013 0.061-0.004 0.122-0.008 0.183-0.013z"
+ }
+ }]
+};
+exports.finder = finder;
\ No newline at end of file
diff --git a/dist/icomoon/fire.js b/dist/icomoon/fire.js
new file mode 100644
index 000000000..6ad502cf5
--- /dev/null
+++ b/dist/icomoon/fire.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fire = void 0;
+var fire = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.016 16c-1.066-2.219-0.498-3.49 0.321-4.688 0.897-1.312 1.129-2.61 1.129-2.61s0.706 0.917 0.423 2.352c1.246-1.387 1.482-3.598 1.293-4.445 2.817 1.969 4.021 6.232 2.399 9.392 8.631-4.883 2.147-12.19 1.018-13.013 0.376 0.823 0.448 2.216-0.313 2.893-1.287-4.879-4.468-5.879-4.468-5.879 0.376 2.516-1.364 5.268-3.042 7.324-0.059-1.003-0.122-1.696-0.649-2.656-0.118 1.823-1.511 3.309-1.889 5.135-0.511 2.473 0.383 4.284 3.777 6.197z"
+ }
+ }]
+};
+exports.fire = fire;
\ No newline at end of file
diff --git a/dist/icomoon/firefox.js b/dist/icomoon/firefox.js
new file mode 100644
index 000000000..a4a988e56
--- /dev/null
+++ b/dist/icomoon/firefox.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.firefox = void 0;
+var firefox = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.977 5.221l-0.185 1.189c0 0-0.265-2.201-0.59-3.024-0.498-1.261-0.719-1.251-0.72-1.249 0.333 0.847 0.273 1.302 0.273 1.302s-0.591-1.609-2.152-2.121c-1.729-0.567-2.665-0.412-2.773-0.383-0.016-0-0.032-0-0.047-0 0.013 0.001 0.025 0.002 0.038 0.003-0.001 0-0.001 0.001-0.001 0.001 0.007 0.009 1.911 0.333 2.249 0.797 0 0-0.809 0-1.614 0.232-0.036 0.010 2.961 0.374 3.574 3.37 0 0-0.329-0.686-0.735-0.802 0.267 0.813 0.199 2.356-0.056 3.123-0.033 0.099-0.066-0.426-0.568-0.652 0.161 1.151-0.010 2.976-0.808 3.479-0.062 0.039 0.5-1.802 0.113-1.090-2.23 3.419-4.866 1.578-6.051 0.767 0.607 0.132 1.76-0.021 2.271-0.4 0.001-0 0.001-0.001 0.002-0.001 0.554-0.379 0.882-0.656 1.177-0.59s0.491-0.23 0.262-0.493c-0.229-0.263-0.786-0.625-1.539-0.428-0.531 0.139-1.19 0.727-2.194 0.132-0.771-0.457-0.844-0.837-0.851-1.1 0.019-0.093 0.043-0.18 0.072-0.26 0.089-0.248 0.358-0.323 0.508-0.382 0.254 0.044 0.473 0.123 0.703 0.241 0.003-0.076 0.004-0.178-0-0.293 0.022-0.044 0.008-0.176-0.027-0.337-0.020-0.161-0.053-0.328-0.106-0.48 0-0 0-0 0-0s0.002-0.001 0.002-0.001c0.001-0.001 0.002-0.002 0.003-0.003s0-0.001 0.001-0.001c0.001-0.002 0.002-0.004 0.003-0.007 0.016-0.072 0.188-0.211 0.402-0.361 0.192-0.134 0.417-0.277 0.595-0.387 0.157-0.098 0.277-0.17 0.302-0.189 0.010-0.007 0.021-0.016 0.034-0.026 0.002-0.002 0.005-0.004 0.007-0.006s0.003-0.002 0.004-0.004c0.085-0.067 0.211-0.194 0.237-0.462 0-0.001 0-0.001 0-0.002 0.001-0.008 0.001-0.016 0.002-0.024 0-0.006 0.001-0.011 0.001-0.017 0-0.004 0-0.009 0.001-0.013 0-0.011 0.001-0.021 0.001-0.032 0-0.001 0-0.001 0-0.002 0-0.026-0-0.053-0.002-0.081-0.001-0.016-0.002-0.030-0.005-0.043-0-0.001-0-0.001-0-0.002s-0.001-0.003-0.001-0.004-0.001-0.005-0.002-0.007c-0-0-0-0-0-0.001-0.001-0.003-0.002-0.005-0.003-0.007-0-0-0-0-0-0-0.027-0.064-0.13-0.088-0.554-0.096-0-0-0.001-0-0.001-0v0c-0.173-0.003-0.399-0.003-0.695-0.002-0.52 0.002-0.807-0.508-0.898-0.705 0.126-0.695 0.489-1.19 1.085-1.525 0.011-0.006 0.009-0.012-0.004-0.015 0.117-0.071-1.41-0.002-2.112 0.891-0.623-0.155-1.166-0.144-1.635-0.035-0.090-0.003-0.202-0.014-0.335-0.041-0.311-0.282-0.757-0.803-0.781-1.425 0 0-0.001 0.001-0.004 0.003-0-0.006-0.001-0.012-0.001-0.018 0 0-0.949 0.729-0.807 2.717-0 0.032-0.001 0.062-0.002 0.092-0.257 0.348-0.384 0.641-0.394 0.706-0.228 0.463-0.458 1.16-0.646 2.218 0 0 0.131-0.417 0.395-0.889-0.194 0.594-0.346 1.518-0.257 2.904 0 0 0.024-0.307 0.107-0.75 0.065 0.86 0.352 1.921 1.076 3.169 1.39 2.396 3.526 3.605 5.887 3.791 0.419 0.035 0.845 0.035 1.272 0.003 0.039-0.003 0.079-0.006 0.118-0.009 0.484-0.034 0.971-0.107 1.457-0.224 6.643-1.606 5.921-9.628 5.921-9.628z"
+ }
+ }]
+};
+exports.firefox = firefox;
\ No newline at end of file
diff --git a/dist/icomoon/first.js b/dist/icomoon/first.js
new file mode 100644
index 000000000..3d6dcb403
--- /dev/null
+++ b/dist/icomoon/first.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.first = void 0;
+var first = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 14v-12h2v5.5l5-5v5l5-5v11l-5-5v5l-5-5v5.5z"
+ }
+ }]
+};
+exports.first = first;
\ No newline at end of file
diff --git a/dist/icomoon/fiveHundredPX.js b/dist/icomoon/fiveHundredPX.js
new file mode 100644
index 000000000..ae6859c41
--- /dev/null
+++ b/dist/icomoon/fiveHundredPX.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fiveHundredPX = void 0;
+var fiveHundredPX = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.953 10.512c0.003 0.009 0.088 0.238 0.134 0.353 0.263 0.622 0.641 1.184 1.122 1.666s1.041 0.859 1.666 1.122c0.647 0.272 1.331 0.412 2.037 0.412s1.394-0.137 2.037-0.412c0.625-0.262 1.184-0.641 1.666-1.122s0.859-1.041 1.122-1.666c0.272-0.647 0.412-1.331 0.412-2.037s-0.137-1.394-0.412-2.037c-0.262-0.625-0.641-1.184-1.122-1.666s-1.041-0.859-1.666-1.122c-0.647-0.272-1.331-0.413-2.037-0.413-0.716 0-1.431 0.144-2.066 0.413-0.509 0.216-1.372 0.769-1.875 1.291l-0.003 0.003v-4.313h7.241c0.262-0.003 0.262-0.372 0.262-0.491 0-0.122 0-0.487-0.266-0.491h-7.828c-0.213 0-0.344 0.178-0.344 0.341v6.066c0 0.197 0.244 0.338 0.472 0.384 0.444 0.094 0.544-0.047 0.653-0.197l0.016-0.019c0.166-0.247 0.681-0.766 0.688-0.772 0.806-0.806 1.884-1.25 3.037-1.25 1.147 0 2.222 0.444 3.028 1.25 0.809 0.809 1.256 1.881 1.256 3.019 0 1.141-0.444 2.216-1.25 3.019-0.794 0.794-1.906 1.25-3.047 1.25-0.772 0-1.519-0.206-2.159-0.597l0.003-3.688c0-0.491 0.213-1.028 0.572-1.431 0.409-0.463 0.972-0.716 1.588-0.716 0.594 0 1.15 0.225 1.566 0.634 0.409 0.406 0.637 0.95 0.637 1.528 0 1.231-0.969 2.197-2.206 2.197-0.238 0-0.672-0.106-0.691-0.109-0.25-0.075-0.356 0.272-0.391 0.387-0.134 0.441 0.069 0.528 0.109 0.541 0.397 0.125 0.659 0.147 1.003 0.147 1.747 0 3.169-1.422 3.169-3.169 0-1.734-1.422-3.144-3.166-3.144-0.856 0-1.659 0.328-2.263 0.919-0.575 0.566-0.903 1.319-0.903 2.069v0.019c-0.003 0.094-0.003 2.306-0.006 3.031l-0.003-0.003c-0.328-0.363-0.653-0.919-0.869-1.488-0.084-0.222-0.275-0.184-0.534-0.103-0.125 0.034-0.469 0.141-0.391 0.394v0zM7.675 9.647c0 0.106 0.097 0.2 0.156 0.253l0.019 0.019c0.1 0.097 0.194 0.147 0.281 0.147 0.072 0 0.116-0.034 0.131-0.050 0.044-0.041 0.537-0.544 0.588-0.591l0.553 0.55c0.050 0.056 0.106 0.088 0.172 0.088 0.088 0 0.184-0.053 0.284-0.156 0.238-0.244 0.119-0.375 0.063-0.438l-0.559-0.559 0.584-0.588c0.128-0.137 0.016-0.284-0.097-0.397-0.162-0.162-0.322-0.206-0.422-0.112l-0.581 0.581-0.588-0.588c-0.031-0.031-0.072-0.047-0.113-0.047-0.078 0-0.172 0.053-0.275 0.156-0.181 0.181-0.219 0.306-0.125 0.406l0.588 0.584-0.584 0.584c-0.053 0.050-0.078 0.103-0.075 0.156zM8.953 1.716c-0.938 0-1.938 0.191-2.669 0.506-0.078 0.031-0.125 0.094-0.134 0.181-0.009 0.084 0.013 0.194 0.069 0.337 0.047 0.116 0.166 0.425 0.4 0.334 0.75-0.288 1.581-0.444 2.334-0.444 0.856 0 1.688 0.169 2.469 0.497 0.622 0.263 1.206 0.644 1.844 1.194 0.047 0.041 0.097 0.059 0.147 0.059 0.125 0 0.244-0.122 0.347-0.237 0.169-0.191 0.287-0.35 0.119-0.509-0.609-0.575-1.275-1.006-2.1-1.356-0.894-0.372-1.847-0.563-2.825-0.563zM14.006 13.3v0c-0.113-0.113-0.209-0.178-0.294-0.203s-0.162-0.006-0.222 0.053l-0.056 0.056c-0.581 0.581-1.259 1.037-2.012 1.356-0.781 0.331-1.609 0.497-2.463 0.497-0.856 0-1.684-0.169-2.463-0.497-0.753-0.319-1.431-0.775-2.013-1.356-0.606-0.606-1.063-1.284-1.356-2.012-0.288-0.713-0.381-1.247-0.413-1.422-0.003-0.016-0.006-0.028-0.006-0.037-0.041-0.206-0.231-0.222-0.503-0.178-0.112 0.019-0.459 0.072-0.428 0.319v0.006c0.091 0.578 0.253 1.144 0.481 1.681 0.366 0.866 0.891 1.644 1.559 2.313s1.447 1.191 2.313 1.559c0.897 0.378 1.85 0.572 2.831 0.572s1.934-0.194 2.831-0.572c0.866-0.366 1.644-0.891 2.313-1.559 0 0 0.037-0.037 0.059-0.059 0.069-0.084 0.134-0.225-0.159-0.516z"
+ }
+ }]
+};
+exports.fiveHundredPX = fiveHundredPX;
\ No newline at end of file
diff --git a/dist/icomoon/flag.js b/dist/icomoon/flag.js
new file mode 100644
index 000000000..b288c125e
--- /dev/null
+++ b/dist/icomoon/flag.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flag = void 0;
+var flag = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0h2v16h-2v-16z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 10.047c1.291 0 2.415-0.312 3-0.773v-8c-0.585 0.461-1.709 0.773-3 0.773s-2.415-0.312-3-0.773v8c0.585 0.461 1.709 0.773 3 0.773z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 0.508c-0.733-0.312-1.805-0.508-3-0.508-1.506 0-2.818 0.312-3.5 0.773v8c0.682-0.461 1.994-0.773 3.5-0.773 1.195 0 2.267 0.197 3 0.508v-8z"
+ }
+ }]
+};
+exports.flag = flag;
\ No newline at end of file
diff --git a/dist/icomoon/flattr.js b/dist/icomoon/flattr.js
new file mode 100644
index 000000000..019bad66c
--- /dev/null
+++ b/dist/icomoon/flattr.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flattr = void 0;
+var flattr = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.743 0c-3.802 0-5.743 2.19-5.743 6.279v0 8.579l3.725-3.729v-4.358c0-1.694 0.449-2.772 1.955-3.014v0c0.526-0.103 1.621-0.067 2.317-0.067v0 2.587c0 0.024 0.003 0.066 0.009 0.087v0c0.029 0.105 0.124 0.181 0.236 0.182v0c0.063 0 0.123-0.033 0.184-0.093v0l6.455-6.453-9.139-0.001zM12.275 4.871v4.358c0 1.694-0.449 2.772-1.955 3.014v0c-0.526 0.103-1.621 0.067-2.317 0.067v0-2.587c0-0.023-0.003-0.066-0.009-0.087v0c-0.029-0.105-0.124-0.182-0.236-0.182v0c-0.064-0-0.123 0.033-0.184 0.093v0l-6.455 6.453 9.139 0.001c3.802 0 5.743-2.19 5.743-6.279v0-8.579l-3.725 3.729z"
+ }
+ }]
+};
+exports.flattr = flattr;
\ No newline at end of file
diff --git a/dist/icomoon/flickr.js b/dist/icomoon/flickr.js
new file mode 100644
index 000000000..e4a300ab9
--- /dev/null
+++ b/dist/icomoon/flickr.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flickr = void 0;
+var flickr = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5zM9 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5z"
+ }
+ }]
+};
+exports.flickr = flickr;
\ No newline at end of file
diff --git a/dist/icomoon/flickr2.js b/dist/icomoon/flickr2.js
new file mode 100644
index 000000000..18833a23b
--- /dev/null
+++ b/dist/icomoon/flickr2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flickr2 = void 0;
+var flickr2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 6.5c-1.103 0-2 0.897-2 2s0.897 2 2 2c1.103 0 2-0.897 2-2s-0.897-2-2-2zM12.5 5v0c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5c0-1.933 1.567-3.5 3.5-3.5zM0 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5z"
+ }
+ }]
+};
+exports.flickr2 = flickr2;
\ No newline at end of file
diff --git a/dist/icomoon/flickr3.js b/dist/icomoon/flickr3.js
new file mode 100644
index 000000000..72f521784
--- /dev/null
+++ b/dist/icomoon/flickr3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flickr3 = void 0;
+var flickr3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5zM11.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5c1.381 0 2.5 1.119 2.5 2.5s-1.119 2.5-2.5 2.5z"
+ }
+ }]
+};
+exports.flickr3 = flickr3;
\ No newline at end of file
diff --git a/dist/icomoon/flickr4.js b/dist/icomoon/flickr4.js
new file mode 100644
index 000000000..85b80f6d4
--- /dev/null
+++ b/dist/icomoon/flickr4.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flickr4 = void 0;
+var flickr4 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.606-8 8.055s3.582 8.055 8 8.055 8-3.606 8-8.055-3.582-8.055-8-8.055zM4.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5zM11.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5z"
+ }
+ }]
+};
+exports.flickr4 = flickr4;
\ No newline at end of file
diff --git a/dist/icomoon/floppyDisk.js b/dist/icomoon/floppyDisk.js
new file mode 100644
index 000000000..c4bf9b013
--- /dev/null
+++ b/dist/icomoon/floppyDisk.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.floppyDisk = void 0;
+var floppyDisk = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 0h-14v16h16v-14l-2-2zM8 2h2v4h-2v-4zM14 14h-12v-12h1v5h9v-5h1.172l0.828 0.828v11.172z"
+ }
+ }]
+};
+exports.floppyDisk = floppyDisk;
\ No newline at end of file
diff --git a/dist/icomoon/folder.js b/dist/icomoon/folder.js
new file mode 100644
index 000000000..bc2a316a7
--- /dev/null
+++ b/dist/icomoon/folder.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder = void 0;
+var folder = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 2l2 2h7v11h-16v-13z"
+ }
+ }]
+};
+exports.folder = folder;
\ No newline at end of file
diff --git a/dist/icomoon/folderDownload.js b/dist/icomoon/folderDownload.js
new file mode 100644
index 000000000..78676ebfb
--- /dev/null
+++ b/dist/icomoon/folderDownload.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folderDownload = void 0;
+var folderDownload = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 4l-2-2h-7v13h16v-11h-7zM8 13.5l-3.5-3.5h2.5v-4h2v4h2.5l-3.5 3.5z"
+ }
+ }]
+};
+exports.folderDownload = folderDownload;
\ No newline at end of file
diff --git a/dist/icomoon/folderMinus.js b/dist/icomoon/folderMinus.js
new file mode 100644
index 000000000..adab5e3de
--- /dev/null
+++ b/dist/icomoon/folderMinus.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folderMinus = void 0;
+var folderMinus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 4l-2-2h-7v13h16v-11h-7zM11 11h-6v-2h6v2z"
+ }
+ }]
+};
+exports.folderMinus = folderMinus;
\ No newline at end of file
diff --git a/dist/icomoon/folderOpen.js b/dist/icomoon/folderOpen.js
new file mode 100644
index 000000000..681f0e979
--- /dev/null
+++ b/dist/icomoon/folderOpen.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folderOpen = void 0;
+var folderOpen = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 15l3-8h-13l-3 8zM2 6l-2 9v-13h4.5l2 2h6.5v2z"
+ }
+ }]
+};
+exports.folderOpen = folderOpen;
\ No newline at end of file
diff --git a/dist/icomoon/folderPlus.js b/dist/icomoon/folderPlus.js
new file mode 100644
index 000000000..b376d7a8e
--- /dev/null
+++ b/dist/icomoon/folderPlus.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folderPlus = void 0;
+var folderPlus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 4l-2-2h-7v13h16v-11h-7zM11 11h-2v2h-2v-2h-2v-2h2v-2h2v2h2v2z"
+ }
+ }]
+};
+exports.folderPlus = folderPlus;
\ No newline at end of file
diff --git a/dist/icomoon/folderUpload.js b/dist/icomoon/folderUpload.js
new file mode 100644
index 000000000..f16709a15
--- /dev/null
+++ b/dist/icomoon/folderUpload.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folderUpload = void 0;
+var folderUpload = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 4l-2-2h-7v13h16v-11h-7zM8 7.5l3.5 3.5h-2.5v4h-2v-4h-2.5l3.5-3.5z"
+ }
+ }]
+};
+exports.folderUpload = folderUpload;
\ No newline at end of file
diff --git a/dist/icomoon/font.js b/dist/icomoon/font.js
new file mode 100644
index 000000000..5835360d1
--- /dev/null
+++ b/dist/icomoon/font.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.font = void 0;
+var font = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.494 0.253c-1.414 0-2.322-0.253-3.779-0.253-4.708 0-6.903 2.681-6.903 5.404 0 1.604 0.76 2.132 2.259 2.132-0.106-0.232-0.296-0.486-0.296-1.626 0-3.188 1.203-4.117 2.744-4.18 0 0-1.264 12.396-4.934 13.883v0.385h4.947l1.688-8h3.091l0.689-2h-3.358l0.812-3.847c0.929 0.19 1.837 0.38 2.618 0.38 0.971 0 1.858-0.296 2.343-2.533-0.591 0.19-1.224 0.253-1.921 0.253z"
+ }
+ }]
+};
+exports.font = font;
\ No newline at end of file
diff --git a/dist/icomoon/fontSize.js b/dist/icomoon/fontSize.js
new file mode 100644
index 000000000..63644e065
--- /dev/null
+++ b/dist/icomoon/fontSize.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fontSize = void 0;
+var fontSize = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 8h6v2h-2v6h-2v-6h-2zM15 4h-3.934v12h-2.133v-12h-3.934v-2h10z"
+ }
+ }]
+};
+exports.fontSize = fontSize;
\ No newline at end of file
diff --git a/dist/icomoon/forward.js b/dist/icomoon/forward.js
new file mode 100644
index 000000000..ecda31bef
--- /dev/null
+++ b/dist/icomoon/forward.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.forward = void 0;
+var forward = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.096 0c-1.777 3.219-2.076 8.13 4.904 7.966v-3.966l6 6-6 6v-3.881c-8.359 0.218-9.29-7.378-4.904-12.119z"
+ }
+ }]
+};
+exports.forward = forward;
\ No newline at end of file
diff --git a/dist/icomoon/forward2.js b/dist/icomoon/forward2.js
new file mode 100644
index 000000000..8790d1db8
--- /dev/null
+++ b/dist/icomoon/forward2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.forward2 = void 0;
+var forward2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5.5l3.5 2.5-3.5 2.5zM9 5.5l3.5 2.5-3.5 2.5z"
+ }
+ }]
+};
+exports.forward2 = forward2;
\ No newline at end of file
diff --git a/dist/icomoon/forward3.js b/dist/icomoon/forward3.js
new file mode 100644
index 000000000..9b73b3449
--- /dev/null
+++ b/dist/icomoon/forward3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.forward3 = void 0;
+var forward3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 13.5v-5l-5 5v-11l5 5v-5l5.5 5.5z"
+ }
+ }]
+};
+exports.forward3 = forward3;
\ No newline at end of file
diff --git a/dist/icomoon/foursquare.js b/dist/icomoon/foursquare.js
new file mode 100644
index 000000000..480f18d9d
--- /dev/null
+++ b/dist/icomoon/foursquare.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.foursquare = void 0;
+var foursquare = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.306 1.408c-0.188-0.256-0.488-0.408-0.806-0.408h-9.5c-0.552 0-1 0.448-1 1v12c0 0.404 0.244 0.769 0.617 0.924 0.124 0.051 0.254 0.076 0.382 0.076 0.26 0 0.516-0.102 0.707-0.293l3.707-3.707h2.586c0.437 0 0.824-0.284 0.954-0.702l2.5-8c0.095-0.304 0.040-0.634-0.149-0.891zM10.515 5h-3.515c-0.552 0-1 0.448-1 1s0.448 1 1 1h2.89l-0.625 2h-2.265c-0.265 0-0.52 0.105-0.707 0.293l-2.293 2.293v-8.586h7.14l-0.625 2z"
+ }
+ }]
+};
+exports.foursquare = foursquare;
\ No newline at end of file
diff --git a/dist/icomoon/frustrated.js b/dist/icomoon/frustrated.js
new file mode 100644
index 000000000..0476487ac
--- /dev/null
+++ b/dist/icomoon/frustrated.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.frustrated = void 0;
+var frustrated = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.724 4.428c-0.543-0.271-1.080-0.407-1.102-0.413-0.268-0.067-0.539 0.096-0.606 0.364s0.096 0.539 0.364 0.606c0.275 0.070 0.602 0.189 0.89 0.334-0.166 0.179-0.268 0.418-0.268 0.681 0 0.552 0.448 1 1 1s1-0.448 1-1c0-0.018-0.001-0.036-0.002-0.054-0.032-0.741-0.706-1.234-1.275-1.518z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM3.695 12.87c0.167 0.083 0.356 0.13 0.555 0.13h7.5c0.199 0 0.387-0.047 0.555-0.13-1.147 1.014-2.654 1.63-4.305 1.63s-3.158-0.616-4.305-1.63zM4 11.75v-1.5c0-0.136 0.114-0.25 0.25-0.25h1.75v2h-1.75c-0.136 0-0.25-0.114-0.25-0.25zM7 12v-2h2v2h-2zM10 12v-2h1.75c0.136 0 0.25 0.114 0.25 0.25v1.5c0 0.136-0.114 0.25-0.25 0.25h-1.75zM12.87 12.305c0.083-0.167 0.13-0.356 0.13-0.555v-1.5c0-0.689-0.561-1.25-1.25-1.25h-7.5c-0.689 0-1.25 0.561-1.25 1.25v1.5c0 0.199 0.047 0.387 0.13 0.555-1.014-1.147-1.63-2.654-1.63-4.305 0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5c0 1.651-0.616 3.158-1.63 4.305z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.379 4.015c-0.023 0.006-0.559 0.141-1.102 0.413-0.568 0.284-1.243 0.776-1.275 1.518-0.001 0.018-0.002 0.036-0.002 0.054 0 0.552 0.448 1 1 1s1-0.448 1-1c0-0.263-0.102-0.503-0.268-0.681 0.288-0.144 0.614-0.264 0.89-0.334 0.268-0.067 0.431-0.338 0.364-0.606s-0.338-0.431-0.606-0.364z"
+ }
+ }]
+};
+exports.frustrated = frustrated;
\ No newline at end of file
diff --git a/dist/icomoon/frustrated2.js b/dist/icomoon/frustrated2.js
new file mode 100644
index 000000000..78e9e639a
--- /dev/null
+++ b/dist/icomoon/frustrated2.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.frustrated2 = void 0;
+var frustrated2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 10.25v1.5c0 0.136 0.114 0.25 0.25 0.25h1.75v-2h-1.75c-0.136 0-0.25 0.114-0.25 0.25z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 10h2v2h-2v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.75 10h-1.75v2h1.75c0.136 0 0.25-0.114 0.25-0.25v-1.5c0-0.136-0.114-0.25-0.25-0.25z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM9.002 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM13 11.75c0 0.689-0.561 1.25-1.25 1.25h-7.5c-0.689 0-1.25-0.561-1.25-1.25v-1.5c0-0.689 0.561-1.25 1.25-1.25h7.5c0.689 0 1.25 0.561 1.25 1.25v1.5z"
+ }
+ }]
+};
+exports.frustrated2 = frustrated2;
\ No newline at end of file
diff --git a/dist/icomoon/gift.js b/dist/icomoon/gift.js
new file mode 100644
index 000000000..d12fe1783
--- /dev/null
+++ b/dist/icomoon/gift.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gift = void 0;
+var gift = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.055 5c0.283-0.201 0.555-0.425 0.804-0.674 0.522-0.522 0.871-1.164 0.983-1.808 0.123-0.706-0.057-1.362-0.494-1.798-0.348-0.348-0.82-0.533-1.365-0.533-0.775 0-1.593 0.372-2.242 1.021-1.039 1.039-1.644 2.472-1.97 3.496-0.241-1.028-0.722-2.416-1.657-3.351-0.501-0.501-1.142-0.759-1.748-0.759-0.495 0-0.965 0.172-1.317 0.523-0.781 0.781-0.675 2.153 0.236 3.064 0.325 0.325 0.705 0.595 1.105 0.819h-3.391v4h1v7h12v-7h1v-4h-2.945zM10.536 2.003c0.433-0.433 0.974-0.692 1.446-0.692 0.167 0 0.402 0.035 0.57 0.203 0.407 0.407 0.178 1.349-0.489 2.016-0.687 0.687-1.61 1.159-2.413 1.47h-0.792c0.29-0.899 0.813-2.132 1.678-2.997zM3.655 2.514c-0.011-0.143-0.001-0.41 0.191-0.601 0.16-0.16 0.372-0.194 0.521-0.194v0c0.332 0 0.679 0.157 0.952 0.429 0.529 0.529 0.965 1.371 1.26 2.436 0.008 0.029 0.016 0.057 0.023 0.086-0.028-0.008-0.057-0.015-0.086-0.023-1.064-0.295-1.906-0.731-2.436-1.26-0.247-0.247-0.403-0.565-0.426-0.872zM7 15h-4v-6.5h4v6.5zM7 8h-5v-2h5v2zM13 15h-4v-6.5h4v6.5zM14 8h-5v-2h5v2z"
+ }
+ }]
+};
+exports.gift = gift;
\ No newline at end of file
diff --git a/dist/icomoon/git.js b/dist/icomoon/git.js
new file mode 100644
index 000000000..d19fd199e
--- /dev/null
+++ b/dist/icomoon/git.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.git = void 0;
+var git = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.698 7.287l-6.986-6.986c-0.402-0.402-1.055-0.402-1.457 0l-1.623 1.623 1.221 1.221c0.196-0.094 0.415-0.146 0.647-0.146 0.828 0 1.5 0.672 1.5 1.5 0 0.232-0.053 0.451-0.146 0.647l2 2c0.196-0.094 0.415-0.146 0.647-0.146 0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5c0-0.232 0.053-0.451 0.146-0.647l-2-2c-0.048 0.023-0.097 0.043-0.147 0.061v4.171c0.583 0.206 1 0.761 1 1.414 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.653 0.417-1.208 1-1.414v-4.171c-0.583-0.206-1-0.761-1-1.414 0-0.232 0.053-0.451 0.146-0.647l-1.221-1.221-4.623 4.623c-0.402 0.403-0.402 1.055 0 1.458l6.986 6.986c0.402 0.402 1.054 0.402 1.457 0l6.953-6.953c0.402-0.403 0.402-1.055-0-1.458z"
+ }
+ }]
+};
+exports.git = git;
\ No newline at end of file
diff --git a/dist/icomoon/github.js b/dist/icomoon/github.js
new file mode 100644
index 000000000..1b971ed17
--- /dev/null
+++ b/dist/icomoon/github.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.github = void 0;
+var github = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0.198c-4.418 0-8 3.582-8 8 0 3.535 2.292 6.533 5.471 7.591 0.4 0.074 0.547-0.174 0.547-0.385 0-0.191-0.008-0.821-0.011-1.489-2.226 0.484-2.695-0.944-2.695-0.944-0.364-0.925-0.888-1.171-0.888-1.171-0.726-0.497 0.055-0.486 0.055-0.486 0.803 0.056 1.226 0.824 1.226 0.824 0.714 1.223 1.872 0.869 2.328 0.665 0.072-0.517 0.279-0.87 0.508-1.070-1.777-0.202-3.645-0.888-3.645-3.954 0-0.873 0.313-1.587 0.824-2.147-0.083-0.202-0.357-1.015 0.077-2.117 0 0 0.672-0.215 2.201 0.82 0.638-0.177 1.322-0.266 2.002-0.269 0.68 0.003 1.365 0.092 2.004 0.269 1.527-1.035 2.198-0.82 2.198-0.82 0.435 1.102 0.162 1.916 0.079 2.117 0.513 0.56 0.823 1.274 0.823 2.147 0 3.073-1.872 3.749-3.653 3.947 0.287 0.248 0.543 0.735 0.543 1.481 0 1.070-0.009 1.932-0.009 2.195 0 0.213 0.144 0.462 0.55 0.384 3.177-1.059 5.466-4.057 5.466-7.59 0-4.418-3.582-8-8-8z"
+ }
+ }]
+};
+exports.github = github;
\ No newline at end of file
diff --git a/dist/icomoon/glass.js b/dist/icomoon/glass.js
new file mode 100644
index 000000000..3a7107b52
--- /dev/null
+++ b/dist/icomoon/glass.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.glass = void 0;
+var glass = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.153 0.263c-0.087-0.162-0.256-0.263-0.44-0.263h-7.425c-0.184 0-0.353 0.101-0.44 0.263-0.554 1.032-0.847 2.237-0.847 3.487 0 1.647 0.506 3.2 1.424 4.374 0.71 0.907 1.601 1.508 2.576 1.753v5.123h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-5.123c0.975-0.244 1.866-0.846 2.576-1.753 0.918-1.174 1.424-2.727 1.424-4.374 0-1.249-0.293-2.455-0.847-3.487zM4.595 1h6.809c0.39 0.827 0.595 1.771 0.595 2.75 0 0.084-0.002 0.167-0.005 0.25h-7.991c-0.003-0.083-0.005-0.166-0.005-0.25-0-0.979 0.205-1.923 0.595-2.75z"
+ }
+ }]
+};
+exports.glass = glass;
\ No newline at end of file
diff --git a/dist/icomoon/glass2.js b/dist/icomoon/glass2.js
new file mode 100644
index 000000000..0cd8caed6
--- /dev/null
+++ b/dist/icomoon/glass2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.glass2 = void 0;
+var glass2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.893 2.809c0.118-0.151 0.14-0.355 0.057-0.527s-0.258-0.281-0.45-0.281h-11c-0.191 0-0.366 0.109-0.45 0.281s-0.062 0.377 0.057 0.527l4.893 6.228v5.963h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-5.963l4.893-6.228zM12.471 3l-1.571 2h-5.8l-1.571-2h8.943z"
+ }
+ }]
+};
+exports.glass2 = glass2;
\ No newline at end of file
diff --git a/dist/icomoon/google.js b/dist/icomoon/google.js
new file mode 100644
index 000000000..8026f8629
--- /dev/null
+++ b/dist/icomoon/google.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.google = void 0;
+var google = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.159 6.856v2.744h4.537c-0.184 1.178-1.372 3.45-4.537 3.45-2.731 0-4.959-2.262-4.959-5.050s2.228-5.050 4.959-5.050c1.553 0 2.594 0.663 3.188 1.234l2.172-2.091c-1.394-1.306-3.2-2.094-5.359-2.094-4.422 0-8 3.578-8 8s3.578 8 8 8c4.616 0 7.681-3.247 7.681-7.816 0-0.525-0.056-0.925-0.125-1.325l-7.556-0.003z"
+ }
+ }]
+};
+exports.google = google;
\ No newline at end of file
diff --git a/dist/icomoon/google2.js b/dist/icomoon/google2.js
new file mode 100644
index 000000000..7f3f62a49
--- /dev/null
+++ b/dist/icomoon/google2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.google2 = void 0;
+var google2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM8.119 14c-3.316 0-6-2.684-6-6s2.684-6 6-6c1.619 0 2.975 0.591 4.019 1.569l-1.628 1.569c-0.447-0.428-1.225-0.925-2.391-0.925-2.050 0-3.719 1.697-3.719 3.787s1.672 3.787 3.719 3.787c2.375 0 3.266-1.706 3.403-2.588h-3.403v-2.056h5.666c0.050 0.3 0.094 0.6 0.094 0.994 0.003 3.428-2.294 5.863-5.759 5.863z"
+ }
+ }]
+};
+exports.google2 = google2;
\ No newline at end of file
diff --git a/dist/icomoon/google3.js b/dist/icomoon/google3.js
new file mode 100644
index 000000000..977c86bc3
--- /dev/null
+++ b/dist/icomoon/google3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.google3 = void 0;
+var google3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM8.119 14c-3.316 0-6-2.684-6-6s2.684-6 6-6c1.619 0 2.975 0.591 4.019 1.569l-1.628 1.569c-0.447-0.428-1.225-0.925-2.391-0.925-2.050 0-3.719 1.697-3.719 3.787s1.672 3.787 3.719 3.787c2.375 0 3.266-1.706 3.403-2.588h-3.403v-2.056h5.666c0.050 0.3 0.094 0.6 0.094 0.994 0.003 3.428-2.294 5.863-5.759 5.863z"
+ }
+ }]
+};
+exports.google3 = google3;
\ No newline at end of file
diff --git a/dist/icomoon/googleDrive.js b/dist/icomoon/googleDrive.js
new file mode 100644
index 000000000..0787fffe9
--- /dev/null
+++ b/dist/icomoon/googleDrive.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.googleDrive = void 0;
+var googleDrive = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.844 10l-2.884 5h9.072l2.884-5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.506 9l-4.619-8h-5.775l4.619 8z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.534 2l-4.534 7.856 2.888 5 4.534-7.856z"
+ }
+ }]
+};
+exports.googleDrive = googleDrive;
\ No newline at end of file
diff --git a/dist/icomoon/googlePlus.js b/dist/icomoon/googlePlus.js
new file mode 100644
index 000000000..df6f3f7f3
--- /dev/null
+++ b/dist/icomoon/googlePlus.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.googlePlus = void 0;
+var googlePlus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.091 7.147v1.747h2.888c-0.116 0.75-0.872 2.197-2.888 2.197-1.737 0-3.156-1.441-3.156-3.216s1.419-3.216 3.156-3.216c0.991 0 1.65 0.422 2.028 0.784l1.381-1.331c-0.888-0.828-2.037-1.331-3.409-1.331-2.816 0.003-5.091 2.278-5.091 5.094s2.275 5.091 5.091 5.091c2.937 0 4.888-2.066 4.888-4.975 0-0.334-0.037-0.591-0.081-0.844h-4.806z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 7h-1.5v-1.5h-1.5v1.5h-1.5v1.5h1.5v1.5h1.5v-1.5h1.5z"
+ }
+ }]
+};
+exports.googlePlus = googlePlus;
\ No newline at end of file
diff --git a/dist/icomoon/googlePlus2.js b/dist/icomoon/googlePlus2.js
new file mode 100644
index 000000000..d34a6f2d4
--- /dev/null
+++ b/dist/icomoon/googlePlus2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.googlePlus2 = void 0;
+var googlePlus2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 12c-2.212 0-4-1.787-4-4s1.788-4 4-4c1.081 0 1.984 0.394 2.681 1.047l-1.088 1.044c-0.297-0.284-0.816-0.616-1.594-0.616-1.366 0-2.481 1.131-2.481 2.525s1.116 2.525 2.481 2.525c1.584 0 2.178-1.137 2.269-1.725h-2.269v-1.372h3.778c0.034 0.2 0.063 0.4 0.063 0.663 0 2.287-1.531 3.909-3.841 3.909zM14 8h-1v1h-1v-1h-1v-1h1v-1h1v1h1v1z"
+ }
+ }]
+};
+exports.googlePlus2 = googlePlus2;
\ No newline at end of file
diff --git a/dist/icomoon/googlePlus3.js b/dist/icomoon/googlePlus3.js
new file mode 100644
index 000000000..7c25bf9c1
--- /dev/null
+++ b/dist/icomoon/googlePlus3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.googlePlus3 = void 0;
+var googlePlus3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM6 12c-2.212 0-4-1.787-4-4s1.788-4 4-4c1.081 0 1.984 0.394 2.681 1.047l-1.088 1.044c-0.297-0.284-0.816-0.616-1.594-0.616-1.366 0-2.481 1.131-2.481 2.525s1.116 2.525 2.481 2.525c1.584 0 2.178-1.137 2.269-1.725h-2.269v-1.372h3.778c0.034 0.2 0.063 0.4 0.063 0.663 0 2.287-1.531 3.909-3.841 3.909zM13 8v1h-1v-1h-1v-1h1v-1h1v1h1v1h-1z"
+ }
+ }]
+};
+exports.googlePlus3 = googlePlus3;
\ No newline at end of file
diff --git a/dist/icomoon/grin.js b/dist/icomoon/grin.js
new file mode 100644
index 000000000..4449fe784
--- /dev/null
+++ b/dist/icomoon/grin.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.grin = void 0;
+var grin = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM3 8v1c0 2.2 1.8 4 4 4h2c2.2 0 4-1.8 4-4v-1h-10zM6 11.828c-0.415-0.148-0.796-0.388-1.118-0.71-0.569-0.569-0.882-1.321-0.882-2.118h2v2.828zM9 12h-2v-3h2v3zM11.118 11.118c-0.322 0.322-0.703 0.562-1.118 0.71v-2.828h2c0 0.797-0.313 1.549-0.882 2.118zM3.521 6c0 0 0 0 0 0 0.153 0 0.283-0.11 0.308-0.261 0.096-0.573 0.589-0.989 1.171-0.989s1.074 0.416 1.171 0.989c0.025 0.151 0.156 0.261 0.308 0.261s0.283-0.11 0.308-0.261c0.017-0.101 0.025-0.202 0.025-0.302 0-0.999-0.813-1.813-1.813-1.813s-1.813 0.813-1.813 1.813c0 0.1 0.009 0.201 0.025 0.302 0.025 0.151 0.156 0.261 0.308 0.261zM9.521 6c0 0 0 0 0 0 0.153 0 0.283-0.11 0.308-0.261 0.096-0.573 0.589-0.989 1.171-0.989s1.074 0.416 1.171 0.989c0.025 0.151 0.156 0.261 0.308 0.261s0.283-0.11 0.308-0.261c0.017-0.101 0.025-0.202 0.025-0.302 0-0.999-0.813-1.813-1.813-1.813s-1.813 0.813-1.813 1.813c0 0.1 0.008 0.201 0.025 0.302 0.025 0.151 0.156 0.261 0.308 0.261z"
+ }
+ }]
+};
+exports.grin = grin;
\ No newline at end of file
diff --git a/dist/icomoon/grin2.js b/dist/icomoon/grin2.js
new file mode 100644
index 000000000..9a6fce508
--- /dev/null
+++ b/dist/icomoon/grin2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.grin2 = void 0;
+var grin2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 3.688c0.999 0 1.813 0.813 1.813 1.813 0 0.1-0.009 0.201-0.025 0.302-0.025 0.151-0.156 0.261-0.308 0.261s-0.283-0.11-0.308-0.261c-0.096-0.573-0.589-0.833-1.171-0.833s-1.074 0.26-1.171 0.833c-0.025 0.151-0.156 0.261-0.308 0.261-0 0 0 0-0 0-0.153 0-0.283-0.11-0.308-0.261-0.017-0.101-0.025-0.202-0.025-0.302 0-0.999 0.813-1.813 1.813-1.813zM5 3.688c0.999 0 1.813 0.813 1.813 1.813 0 0.1-0.009 0.201-0.025 0.302-0.025 0.151-0.156 0.261-0.308 0.261s-0.283-0.11-0.308-0.261c-0.096-0.573-0.589-0.833-1.171-0.833s-1.074 0.26-1.171 0.833c-0.025 0.151-0.156 0.261-0.308 0.261 0 0 0 0 0 0-0.153 0-0.283-0.11-0.308-0.261-0.017-0.101-0.025-0.202-0.025-0.302 0-0.999 0.813-1.813 1.813-1.813zM3 9h3v3.873c-1.72-0.447-3-2.018-3-3.873zM7 13v-4h2v4h-2zM10 12.873v-3.873h3c0 1.855-1.28 3.426-3 3.873z"
+ }
+ }]
+};
+exports.grin2 = grin2;
\ No newline at end of file
diff --git a/dist/icomoon/hackernews.js b/dist/icomoon/hackernews.js
new file mode 100644
index 000000000..6e37c0e08
--- /dev/null
+++ b/dist/icomoon/hackernews.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hackernews = void 0;
+var hackernews = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0v16h16v-16h-16zM8.5 9.125v3.375h-1v-3.375l-2.734-5.125h1.134l2.1 3.938 2.1-3.938h1.134l-2.734 5.125z"
+ }
+ }]
+};
+exports.hackernews = hackernews;
\ No newline at end of file
diff --git a/dist/icomoon/hammer.js b/dist/icomoon/hammer.js
new file mode 100644
index 000000000..3d34773e6
--- /dev/null
+++ b/dist/icomoon/hammer.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hammer = void 0;
+var hammer = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.781 12.953l-4.712-4.712c-0.292-0.292-0.769-0.292-1.061 0l-0.354 0.354-2.875-2.875 4.72-4.72h-5l-2.22 2.22-0.22-0.22h-1.061v1.061l0.22 0.22-3.22 3.22 2.5 2.5 3.22-3.22 2.875 2.875-0.354 0.354c-0.292 0.292-0.292 0.769 0 1.061l4.712 4.712c0.292 0.292 0.769 0.292 1.061 0l1.768-1.768c0.292-0.292 0.292-0.769 0-1.061z"
+ }
+ }]
+};
+exports.hammer = hammer;
\ No newline at end of file
diff --git a/dist/icomoon/hammer2.js b/dist/icomoon/hammer2.js
new file mode 100644
index 000000000..407955595
--- /dev/null
+++ b/dist/icomoon/hammer2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hammer2 = void 0;
+var hammer2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.784 14.309l-8.572-7.804 0.399-0.4c0.326-0.327 0.503-0.75 0.53-1.181 0.016-0.007 0.031-0.014 0.046-0.023l1.609-1.006c0.218-0.256 0.202-0.66-0.036-0.898l-2.799-2.806c-0.237-0.238-0.641-0.254-0.896-0.036l-1.004 1.614c-0.008 0.015-0.015 0.031-0.022 0.046-0.43 0.027-0.852 0.204-1.178 0.531l-1.522 1.527c-0.327 0.327-0.503 0.75-0.53 1.181-0.016 0.007-0.031 0.014-0.046 0.023l-1.609 1.006c-0.218 0.256-0.202 0.66 0.036 0.898l2.799 2.806c0.237 0.238 0.641 0.254 0.896 0.036l1.004-1.614c0.008-0.015 0.015-0.031 0.023-0.046 0.43-0.027 0.852-0.204 1.178-0.531l0.442-0.443 7.783 8.596c0.226 0.249 0.573 0.289 0.773 0.089l0.787-0.789c0.199-0.2 0.159-0.549-0.089-0.775z"
+ }
+ }]
+};
+exports.hammer2 = hammer2;
\ No newline at end of file
diff --git a/dist/icomoon/hangouts.js b/dist/icomoon/hangouts.js
new file mode 100644
index 000000000..4e6fd61a5
--- /dev/null
+++ b/dist/icomoon/hangouts.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hangouts = void 0;
+var hangouts = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.997 0c-3.816 0-6.909 3.094-6.909 6.909 0 3.616 3.294 6.547 6.909 6.547v2.544c4.197-2.128 6.916-5.556 6.916-9.091 0-3.816-3.1-6.909-6.916-6.909zM7 8c0 0.828-0.447 1.5-1 1.5v-1.5h-2v-3h3v3zM12 8c0 0.828-0.447 1.5-1 1.5v-1.5h-2v-3h3v3z"
+ }
+ }]
+};
+exports.hangouts = hangouts;
\ No newline at end of file
diff --git a/dist/icomoon/happy.js b/dist/icomoon/happy.js
new file mode 100644
index 000000000..c03123487
--- /dev/null
+++ b/dist/icomoon/happy.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.happy = void 0;
+var happy = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM8 9.356c1.812 0 3.535-0.481 5-1.327-0.228 2.788-2.393 4.971-5 4.971s-4.772-2.186-5-4.973c1.465 0.845 3.188 1.329 5 1.329zM4 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5z"
+ }
+ }]
+};
+exports.happy = happy;
\ No newline at end of file
diff --git a/dist/icomoon/happy2.js b/dist/icomoon/happy2.js
new file mode 100644
index 000000000..76bc113e3
--- /dev/null
+++ b/dist/icomoon/happy2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.happy2 = void 0;
+var happy2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM5 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM8 14c-2.607 0-4.772-2.186-5-4.973 1.465 0.846 3.188 1.329 5 1.329s3.535-0.481 5-1.327c-0.228 2.788-2.393 4.971-5 4.971z"
+ }
+ }]
+};
+exports.happy2 = happy2;
\ No newline at end of file
diff --git a/dist/icomoon/headphones.js b/dist/icomoon/headphones.js
new file mode 100644
index 000000000..b926a619f
--- /dev/null
+++ b/dist/icomoon/headphones.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.headphones = void 0;
+var headphones = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 9h-1v7h1c0.275 0 0.5-0.225 0.5-0.5v-6c0-0.275-0.225-0.5-0.5-0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 9c-0.275 0-0.5 0.225-0.5 0.5v6c0 0.275 0.225 0.5 0.5 0.5h1v-7h-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8c0 0.96 0.169 1.88 0.479 2.732-0.304 0.519-0.479 1.123-0.479 1.768 0 1.763 1.304 3.222 3 3.464v-6.928c-0.499 0.071-0.963 0.248-1.371 0.506-0.084-0.417-0.129-0.849-0.129-1.292 0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5c0 0.442-0.044 0.874-0.128 1.292-0.408-0.259-0.873-0.435-1.372-0.507v6.929c1.696-0.243 3-1.701 3-3.464 0-0.645-0.175-1.249-0.479-1.768 0.31-0.853 0.479-1.773 0.479-2.732z"
+ }
+ }]
+};
+exports.headphones = headphones;
\ No newline at end of file
diff --git a/dist/icomoon/heart.js b/dist/icomoon/heart.js
new file mode 100644
index 000000000..a141cc855
--- /dev/null
+++ b/dist/icomoon/heart.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heart = void 0;
+var heart = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.8 1c-1.682 0-3.129 1.368-3.799 2.797-0.671-1.429-2.118-2.797-3.8-2.797-2.318 0-4.2 1.882-4.2 4.2 0 4.716 4.758 5.953 8 10.616 3.065-4.634 8-6.050 8-10.616 0-2.319-1.882-4.2-4.2-4.2z"
+ }
+ }]
+};
+exports.heart = heart;
\ No newline at end of file
diff --git a/dist/icomoon/heartBroken.js b/dist/icomoon/heartBroken.js
new file mode 100644
index 000000000..bc08782dc
--- /dev/null
+++ b/dist/icomoon/heartBroken.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heartBroken = void 0;
+var heartBroken = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.8 1c2.318 0 4.2 1.882 4.2 4.2 0 4.566-4.935 5.982-8 10.616-3.243-4.663-8-5.9-8-10.616 0-2.319 1.882-4.2 4.2-4.2 0.943 0 1.812 0.43 2.512 1.060l-1.213 1.94 3.5 2-2 5 5.5-6-3.5-2 0.967-1.451c0.553-0.34 1.175-0.549 1.833-0.549z"
+ }
+ }]
+};
+exports.heartBroken = heartBroken;
\ No newline at end of file
diff --git a/dist/icomoon/hipster.js b/dist/icomoon/hipster.js
new file mode 100644
index 000000000..fd85a8291
--- /dev/null
+++ b/dist/icomoon/hipster.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hipster = void 0;
+var hipster = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.561 8.439c-0.586-0.586-1.536-0.586-2.121 0s-0.586 1.536 0 2.121c0.019 0.019 0.038 0.037 0.058 0.055 1.352 1.227 4.503-0.029 4.503-1.615-0.969 0.625-1.726 0.153-2.439-0.561z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.439 8.439c0.586-0.586 1.536-0.586 2.121 0s0.586 1.536 0 2.121c-0.019 0.019-0.038 0.037-0.058 0.055-1.352 1.227-4.503-0.029-4.503-1.615 0.969 0.625 1.726 0.153 2.439-0.561z"
+ }
+ }]
+};
+exports.hipster = hipster;
\ No newline at end of file
diff --git a/dist/icomoon/hipster2.js b/dist/icomoon/hipster2.js
new file mode 100644
index 000000000..64a205c6e
--- /dev/null
+++ b/dist/icomoon/hipster2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hipster2 = void 0;
+var hipster2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM8.497 10.615c-0.020-0.018-0.039-0.036-0.058-0.055-0.293-0.293-0.439-0.677-0.439-1.060-0 0.384-0.146 0.768-0.439 1.060-0.019 0.019-0.038 0.037-0.058 0.055-1.352 1.227-4.503-0.029-4.503-1.615 0.969 0.625 1.726 0.153 2.439-0.561 0.586-0.586 1.536-0.586 2.121 0 0.293 0.293 0.439 0.677 0.439 1.060 0-0.384 0.146-0.768 0.439-1.060 0.586-0.586 1.536-0.586 2.121 0 0.713 0.714 1.471 1.186 2.439 0.561 0 1.586-3.151 2.842-4.503 1.615z"
+ }
+ }]
+};
+exports.hipster2 = hipster2;
\ No newline at end of file
diff --git a/dist/icomoon/history.js b/dist/icomoon/history.js
new file mode 100644
index 000000000..b4e44a3be
--- /dev/null
+++ b/dist/icomoon/history.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.history = void 0;
+var history = {
+ "viewBox": "0 0 17 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 1c3.866 0 7 3.134 7 7s-3.134 7-7 7v-1.5c1.469 0 2.85-0.572 3.889-1.611s1.611-2.42 1.611-3.889c0-1.469-0.572-2.85-1.611-3.889s-2.42-1.611-3.889-1.611c-1.469 0-2.85 0.572-3.889 1.611-0.799 0.799-1.322 1.801-1.52 2.889h2.909l-3.5 4-3.5-4h2.571c0.485-3.392 3.402-6 6.929-6zM13 7v2h-4v-5h2v3z"
+ }
+ }]
+};
+exports.history = history;
\ No newline at end of file
diff --git a/dist/icomoon/home.js b/dist/icomoon/home.js
new file mode 100644
index 000000000..a99e7cb9a
--- /dev/null
+++ b/dist/icomoon/home.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.home = void 0;
+var home = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9.226l-8-6.21-8 6.21v-2.532l8-6.21 8 6.21zM14 9v6h-4v-4h-4v4h-4v-6l6-4.5z"
+ }
+ }]
+};
+exports.home = home;
\ No newline at end of file
diff --git a/dist/icomoon/home2.js b/dist/icomoon/home2.js
new file mode 100644
index 000000000..08d82e945
--- /dev/null
+++ b/dist/icomoon/home2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.home2 = void 0;
+var home2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0.5l-8 8 1.5 1.5 1.5-1.5v6.5h4v-3h2v3h4v-6.5l1.5 1.5 1.5-1.5-8-8zM8 7c-0.552 0-1-0.448-1-1s0.448-1 1-1c0.552 0 1 0.448 1 1s-0.448 1-1 1z"
+ }
+ }]
+};
+exports.home2 = home2;
\ No newline at end of file
diff --git a/dist/icomoon/home3.js b/dist/icomoon/home3.js
new file mode 100644
index 000000000..adc8a6dca
--- /dev/null
+++ b/dist/icomoon/home3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.home3 = void 0;
+var home3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9.5l-3-3v-4.5h-2v2.5l-3-3-8 8v0.5h2v5h5v-3h2v3h5v-5h2z"
+ }
+ }]
+};
+exports.home3 = home3;
\ No newline at end of file
diff --git a/dist/icomoon/hourGlass.js b/dist/icomoon/hourGlass.js
new file mode 100644
index 000000000..b5eeac8e1
--- /dev/null
+++ b/dist/icomoon/hourGlass.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hourGlass = void 0;
+var hourGlass = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.39 8c2.152-1.365 3.61-3.988 3.61-7 0-0.339-0.019-0.672-0.054-1h-13.891c-0.036 0.328-0.054 0.661-0.054 1 0 3.012 1.457 5.635 3.609 7-2.152 1.365-3.609 3.988-3.609 7 0 0.339 0.019 0.672 0.054 1h13.891c0.036-0.328 0.054-0.661 0.054-1 0-3.012-1.457-5.635-3.609-7zM2.5 15c0-2.921 1.253-5.397 3.5-6.214v-1.572c-2.247-0.817-3.5-3.294-3.5-6.214v0h11c0 2.921-1.253 5.397-3.5 6.214v1.572c2.247 0.817 3.5 3.294 3.5 6.214h-11zM9.682 10.462c-1.12-0.635-1.181-1.459-1.182-1.959v-1.004c0-0.5 0.059-1.327 1.184-1.963 0.602-0.349 1.122-0.88 1.516-1.537h-6.4c0.395 0.657 0.916 1.188 1.518 1.538 1.12 0.635 1.181 1.459 1.182 1.959v1.004c0 0.5-0.059 1.327-1.184 1.963-1.135 0.659-1.98 1.964-2.236 3.537h7.839c-0.256-1.574-1.102-2.879-2.238-3.538z"
+ }
+ }]
+};
+exports.hourGlass = hourGlass;
\ No newline at end of file
diff --git a/dist/icomoon/htmlFive.js b/dist/icomoon/htmlFive.js
new file mode 100644
index 000000000..9f6501cd5
--- /dev/null
+++ b/dist/icomoon/htmlFive.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.htmlFive = void 0;
+var htmlFive = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.946 0l1.284 14.4 5.762 1.6 5.777-1.602 1.286-14.398h-14.108zM12.26 4.71h-6.758l0.161 1.809h6.437l-0.485 5.422-3.623 1.004-3.618-1.004-0.247-2.774h1.773l0.126 1.41 1.967 0.53 0.004-0.001 1.968-0.531 0.204-2.29h-6.121l-0.476-5.341h8.847l-0.158 1.766z"
+ }
+ }]
+};
+exports.htmlFive = htmlFive;
\ No newline at end of file
diff --git a/dist/icomoon/htmlFive2.js b/dist/icomoon/htmlFive2.js
new file mode 100644
index 000000000..1b2050f6c
--- /dev/null
+++ b/dist/icomoon/htmlFive2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.htmlFive2 = void 0;
+var htmlFive2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.946 0l1.284 14.4 5.762 1.6 5.777-1.602 1.286-14.398h-14.108zM12.668 13.482l-4.644 1.287v0.007l-0.012-0.004-0.012 0.004v-0.007l-4.644-1.287-1.098-12.304h11.508l-1.098 12.304zM10.168 8.284l-0.204 2.29-1.972 0.532-1.967-0.53-0.126-1.41h-1.773l0.247 2.774 3.626 1.003 3.615-1.003 0.485-5.422h-6.437l-0.161-1.809h6.758l0.158-1.766h-8.847l0.477 5.341z"
+ }
+ }]
+};
+exports.htmlFive2 = htmlFive2;
\ No newline at end of file
diff --git a/dist/icomoon/image.js b/dist/icomoon/image.js
new file mode 100644
index 000000000..f5de209e2
--- /dev/null
+++ b/dist/icomoon/image.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.image = void 0;
+var image = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.998 2c0.001 0.001 0.001 0.001 0.002 0.002v11.996c-0.001 0.001-0.001 0.001-0.002 0.002h-13.996c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996zM15 1h-14c-0.55 0-1 0.45-1 1v12c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-12c0-0.55-0.45-1-1-1v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 4.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 13h-12v-2l3.5-6 4 5h1l3.5-3z"
+ }
+ }]
+};
+exports.image = image;
\ No newline at end of file
diff --git a/dist/icomoon/images.js b/dist/icomoon/images.js
new file mode 100644
index 000000000..c94af5151
--- /dev/null
+++ b/dist/icomoon/images.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.images = void 0;
+var images = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M17 2h-1v-1c0-0.55-0.45-1-1-1h-14c-0.55 0-1 0.45-1 1v12c0 0.55 0.45 1 1 1h1v1c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-12c0-0.55-0.45-1-1-1zM2 3v10h-0.998c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998h-12c-0.55 0-1 0.45-1 1v0zM17 14.998c-0.001 0.001-0.001 0.001-0.002 0.002h-13.996c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996c0.001 0.001 0.001 0.001 0.002 0.002v11.996z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 5.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 14h-12v-2l3.5-6 4 5h1l3.5-3z"
+ }
+ }]
+};
+exports.images = images;
\ No newline at end of file
diff --git a/dist/icomoon/indentDecrease.js b/dist/icomoon/indentDecrease.js
new file mode 100644
index 000000000..0fd3df452
--- /dev/null
+++ b/dist/icomoon/indentDecrease.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.indentDecrease = void 0;
+var indentDecrease = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 7h10v2h-10zM6 10h10v2h-10zM0 13h16v2h-16zM4 5v6l-4-3z"
+ }
+ }]
+};
+exports.indentDecrease = indentDecrease;
\ No newline at end of file
diff --git a/dist/icomoon/indentIncrease.js b/dist/icomoon/indentIncrease.js
new file mode 100644
index 000000000..5c0235c46
--- /dev/null
+++ b/dist/icomoon/indentIncrease.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.indentIncrease = void 0;
+var indentIncrease = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 7h10v2h-10zM6 10h10v2h-10zM0 13h16v2h-16zM0 11v-6l4 3z"
+ }
+ }]
+};
+exports.indentIncrease = indentIncrease;
\ No newline at end of file
diff --git a/dist/icomoon/index.js b/dist/icomoon/index.js
new file mode 100644
index 000000000..7a0f0f03a
--- /dev/null
+++ b/dist/icomoon/index.js
@@ -0,0 +1,7145 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cool = exports.contrast = exports.connection = exports.confused2 = exports.confused = exports.compass2 = exports.compass = exports.command = exports.coinYen = exports.coinPound = exports.coinEuro = exports.coinDollar = exports.cogs = exports.cog = exports.codepen = exports.clubs = exports.cloudUpload = exports.cloudDownload = exports.cloudCheck = exports.cloud = exports.clock2 = exports.clock = exports.clipboard = exports.clearFormatting = exports.circleUp = exports.circleRight = exports.circleLeft = exports.circleDown = exports.chrome = exports.checkmark2 = exports.checkmark = exports.checkboxUnchecked = exports.checkboxChecked = exports.cart = exports.cancelCircle = exports.camera = exports.calendar = exports.calculator = exports.bullhorn = exports.bug = exports.bubbles4 = exports.bubbles3 = exports.bubbles2 = exports.bubbles = exports.bubble2 = exports.bubble = exports.brightnessContrast = exports.briefcase = exports.boxRemove = exports.boxAdd = exports.books = exports.bookmarks = exports.bookmark = exports.book = exports.bold = exports.blogger2 = exports.blogger = exports.blog = exports.blocked = exports.binoculars = exports.bin2 = exports.bin = exports.bell = exports.behance2 = exports.behance = exports.basecamp = exports.barcode = exports.baffled2 = exports.baffled = exports.backward2 = exports.backward = exports.attachment = exports.arrowUpRight2 = exports.arrowUpRight = exports.arrowUpLeft2 = exports.arrowUpLeft = exports.arrowUp2 = exports.arrowUp = exports.arrowRight2 = exports.arrowRight = exports.arrowLeft2 = exports.arrowLeft = exports.arrowDownRight2 = exports.arrowDownRight = exports.arrowDownLeft2 = exports.arrowDownLeft = exports.arrowDown2 = exports.arrowDown = exports.appleinc = exports.angry2 = exports.angry = exports.android = exports.amazon = exports.alarm = exports.airplane = exports.aidKit = exports.addressBook = exports.accessibility = exports.IcoMoon = exports.IE = void 0;
+exports.googlePlus3 = exports.googlePlus2 = exports.googlePlus = exports.googleDrive = exports.google3 = exports.google2 = exports.google = exports.glass2 = exports.glass = exports.github = exports.git = exports.gift = exports.frustrated2 = exports.frustrated = exports.foursquare = exports.forward3 = exports.forward2 = exports.forward = exports.fontSize = exports.font = exports.folderUpload = exports.folderPlus = exports.folderOpen = exports.folderMinus = exports.folderDownload = exports.folder = exports.floppyDisk = exports.flickr4 = exports.flickr3 = exports.flickr2 = exports.flickr = exports.flattr = exports.flag = exports.fiveHundredPX = exports.first = exports.firefox = exports.fire = exports.finder = exports.filter = exports.film = exports.filesEmpty = exports.fileZip = exports.fileWord = exports.fileVideo = exports.fileText2 = exports.fileText = exports.filePlay = exports.filePicture = exports.filePdf = exports.fileOpenoffice = exports.fileMusic = exports.fileExcel = exports.fileEmpty = exports.feed = exports.facebook2 = exports.facebook = exports.eyedropper = exports.eyePlus = exports.eyeMinus = exports.eyeBlocked = exports.eye = exports.exit = exports.evil2 = exports.evil = exports.equalizer2 = exports.equalizer = exports.envelop = exports.enter = exports.enlarge2 = exports.enlarge = exports.embed2 = exports.embed = exports.ello = exports.eject = exports.edge = exports.earth = exports.droplet = exports.dropbox = exports.drive = exports.dribbble = exports.drawer2 = exports.drawer = exports.download3 = exports.download2 = exports.download = exports.display = exports.dice = exports.diamonds = exports.deviantart = exports.delicious = exports.database = exports.ctrl = exports.css3 = exports.crying2 = exports.crying = exports.cross = exports.crop = exports.creditCard = exports.copy = exports.cool2 = void 0;
+exports.paragraphCenter = exports.paintFormat = exports.pagebreak = exports.pageBreak = exports.pacman = exports.opt = exports.opera = exports.onedrive = exports.omega = exports.office = exports.npm = exports.notification = exports.next2 = exports.next = exports.newspaper = exports.newTab = exports.neutral2 = exports.neutral = exports.music = exports.mug = exports.moveUp = exports.moveDown = exports.mobile2 = exports.mobile = exports.minus = exports.mic = exports.meter2 = exports.meter = exports.menu4 = exports.menu3 = exports.menu2 = exports.menu = exports.map2 = exports.map = exports.manWoman = exports.man = exports.makeGroup = exports.mail4 = exports.mail3 = exports.mail2 = exports.mail = exports.magnet = exports.magicWand = exports.ltr = exports.loop2 = exports.loop = exports.lock = exports.location2 = exports.location = exports.listNumbered = exports.list2 = exports.list = exports.linkedin2 = exports.linkedin = exports.link = exports.ligature2 = exports.ligature = exports.lifebuoy = exports.libreoffice = exports.library = exports.leaf = exports.lastfm2 = exports.lastfm = exports.last = exports.laptop = exports.lanyrd = exports.lab = exports.keyboard = exports.key2 = exports.key = exports.joomla = exports.italic = exports.instagram = exports.insertTemplate = exports.info = exports.infinite = exports.indentIncrease = exports.indentDecrease = exports.images = exports.image = exports.htmlFive2 = exports.htmlFive = exports.hourGlass = exports.home3 = exports.home2 = exports.home = exports.history = exports.hipster2 = exports.hipster = exports.heartBroken = exports.heart = exports.headphones = exports.happy2 = exports.happy = exports.hangouts = exports.hammer2 = exports.hammer = exports.hackernews = exports.grin2 = exports.grin = void 0;
+exports.stackoverflow = exports.stack = exports.spotify = exports.spoonKnife = exports.spinner9 = exports.spinner8 = exports.spinner7 = exports.spinner6 = exports.spinner5 = exports.spinner4 = exports.spinner3 = exports.spinner2 = exports.spinner11 = exports.spinner10 = exports.spinner = exports.sphere = exports.spellCheck = exports.spades = exports.soundcloud2 = exports.soundcloud = exports.sortNumericAsc = exports.sortNumbericDesc = exports.sortAmountDesc = exports.sortAmountAsc = exports.sortAlphaDesc = exports.sortAlphaAsc = exports.smile2 = exports.smile = exports.sleepy2 = exports.sleepy = exports.skype = exports.sinaWeibo = exports.sigma = exports.shuffle = exports.shrink2 = exports.shrink = exports.shocked2 = exports.shocked = exports.shift = exports.shield = exports.share2 = exports.share = exports.section = exports.search = exports.scissors = exports.safari = exports.sad2 = exports.sad = exports.rtl = exports.rss2 = exports.rss = exports.rocket = exports.road = exports.reply = exports.renren = exports.redo2 = exports.redo = exports.reddit = exports.radioUnchecked = exports.radioChecked2 = exports.radioChecked = exports.quotesRight = exports.quotesLeft = exports.quill = exports.question = exports.qrcode = exports.pushpin = exports.profile = exports.printer = exports.priceTags = exports.priceTag = exports.previous2 = exports.previous = exports.powerCord = exports.power = exports.pointUp = exports.pointRight = exports.pointLeft = exports.pointDown = exports.podcast = exports.plus = exports.play3 = exports.play2 = exports.play = exports.pinterest2 = exports.pinterest = exports.pilcrow = exports.pieChart = exports.phoneHangUp = exports.phone = exports.pencil2 = exports.pencil = exports.pen = exports.paypal = exports.pause2 = exports.pause = exports.paste = exports.paragraphRight = exports.paragraphLeft = exports.paragraphJustify = void 0;
+exports.zoomOut = exports.zoomIn = exports.youtube2 = exports.youtube = exports.yelp = exports.yahoo2 = exports.yahoo = exports.xing2 = exports.xing = exports.wrench = exports.wordpress = exports.wondering2 = exports.wondering = exports.woman = exports.wink2 = exports.wink = exports.windows8 = exports.windows = exports.wikipedia = exports.whatsapp = exports.warning = exports.volumeMute2 = exports.volumeMute = exports.volumeMedium = exports.volumeLow = exports.volumeIncrease = exports.volumeHigh = exports.volumeDecrease = exports.vk = exports.vine = exports.vimeo2 = exports.vimeo = exports.videoCamera = exports.users = exports.userTie = exports.userPlus = exports.userMinus = exports.userCheck = exports.user = exports.upload3 = exports.upload2 = exports.upload = exports.unlocked = exports.ungroup = exports.undo2 = exports.undo = exports.underline = exports.twitter = exports.twitch = exports.tv = exports.tux = exports.tumblr2 = exports.tumblr = exports.truck = exports.trophy = exports.trello = exports.tree = exports.tongue2 = exports.tongue = exports.ticket = exports.textWidth = exports.textHeight = exports.textColor = exports.terminal = exports.telegram = exports.target = exports.tablet = exports.table2 = exports.table = exports.tab = exports.switchIcon = exports.svg = exports.superscript2 = exports.superscript = exports.sun = exports.subscript2 = exports.subscript = exports.stumbleupon2 = exports.stumbleupon = exports.strikethrough = exports.stopwatch = exports.stop2 = exports.stop = exports.steam2 = exports.steam = exports.statsDots = exports.statsBars2 = exports.statsBars = exports.starHalf = exports.starFull = exports.starEmpty = void 0;
+var home = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9.226l-8-6.21-8 6.21v-2.532l8-6.21 8 6.21zM14 9v6h-4v-4h-4v4h-4v-6l6-4.5z"
+ }
+ }]
+};
+exports.home = home;
+var home2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0.5l-8 8 1.5 1.5 1.5-1.5v6.5h4v-3h2v3h4v-6.5l1.5 1.5 1.5-1.5-8-8zM8 7c-0.552 0-1-0.448-1-1s0.448-1 1-1c0.552 0 1 0.448 1 1s-0.448 1-1 1z"
+ }
+ }]
+};
+exports.home2 = home2;
+var home3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9.5l-3-3v-4.5h-2v2.5l-3-3-8 8v0.5h2v5h5v-3h2v3h5v-5h2z"
+ }
+ }]
+};
+exports.home3 = home3;
+var office = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 16h8v-16h-8v16zM5 2h2v2h-2v-2zM5 6h2v2h-2v-2zM5 10h2v2h-2v-2zM1 2h2v2h-2v-2zM1 6h2v2h-2v-2zM1 10h2v2h-2v-2zM9 5h7v1h-7zM9 16h2v-4h3v4h2v-9h-7z"
+ }
+ }]
+};
+exports.office = office;
+var newspaper = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 4v-2h-14v11c0 0.552 0.448 1 1 1h13.5c0.828 0 1.5-0.672 1.5-1.5v-8.5h-2zM13 13h-12v-10h12v10zM2 5h10v1h-10zM8 7h4v1h-4zM8 9h4v1h-4zM8 11h3v1h-3zM2 7h5v5h-5z"
+ }
+ }]
+};
+exports.newspaper = newspaper;
+var pencil = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 0c1.381 0 2.5 1.119 2.5 2.5 0 0.563-0.186 1.082-0.5 1.5l-1 1-3.5-3.5 1-1c0.418-0.314 0.937-0.5 1.5-0.5zM1 11.5l-1 4.5 4.5-1 9.25-9.25-3.5-3.5-9.25 9.25zM11.181 5.681l-7 7-0.862-0.862 7-7 0.862 0.862z"
+ }
+ }]
+};
+exports.pencil = pencil;
+var pencil2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 10l2-1 7-7-1-1-7 7-1 2zM4.52 13.548c-0.494-1.043-1.026-1.574-2.069-2.069l1.548-4.262 2-1.217 6-6h-3l-6 6-3 10 10-3 6-6v-3l-6 6-1.217 2z"
+ }
+ }]
+};
+exports.pencil2 = pencil2;
+var quill = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 16c2-6 7.234-16 16-16-4.109 3.297-6 11-9 11s-3 0-3 0l-3 5h-1z"
+ }
+ }]
+};
+exports.quill = quill;
+var pen = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.909 4.561l-4.47-4.47c-0.146-0.146-0.338-0.113-0.427 0.073l-0.599 1.248 4.175 4.175 1.248-0.599c0.186-0.089 0.219-0.282 0.073-0.427z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.615 2.115l-4.115 0.343c-0.273 0.034-0.501 0.092-0.58 0.449-0 0-0 0.001-0 0.001-1.116 5.36-4.92 10.591-4.92 10.591l0.896 0.896 4.25-4.25c-0.094-0.196-0.146-0.415-0.146-0.647 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5c-0.232 0-0.451-0.053-0.647-0.146l-4.25 4.25 0.896 0.896c0 0 5.231-3.804 10.591-4.92 0-0 0.001-0 0.001-0 0.357-0.078 0.415-0.306 0.449-0.58l0.343-4.115-4.269-4.269z"
+ }
+ }]
+};
+exports.pen = pen;
+var blog = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 0v1.5c1.148 0 2.261 0.225 3.308 0.667 1.012 0.428 1.921 1.041 2.702 1.822s1.394 1.69 1.822 2.702c0.443 1.047 0.667 2.16 0.667 3.308h1.5c0-5.523-4.477-10-10-10z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 3v1.5c1.469 0 2.85 0.572 3.889 1.611s1.611 2.42 1.611 3.889h1.5c0-3.866-3.134-7-7-7z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 6l-1 1-3.5 1-3 6.5 0.396 0.396 3.638-3.638c-0.022-0.083-0.034-0.169-0.034-0.259 0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1c-0.090 0-0.176-0.012-0.259-0.034l-3.638 3.638 0.396 0.396 6.5-3 1-3.5 1-1-2.5-2.5z"
+ }
+ }]
+};
+exports.blog = blog;
+var eyedropper = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.414 0.586c-0.781-0.781-2.047-0.781-2.828 0l-2.689 2.689-1.896-1.896-2.121 2.121 1.663 1.663-7.377 7.377c-0.126 0.126-0.179 0.296-0.161 0.46h-0.004v2.5c0 0.276 0.224 0.5 0.5 0.5h2.5c0 0 0.042 0 0.063 0 0.144 0 0.288-0.055 0.398-0.165l7.377-7.377 1.663 1.663 2.121-2.121-1.896-1.896 2.689-2.689c0.781-0.781 0.781-2.047 0-2.828zM2.705 15h-1.705v-1.705l7.337-7.337 1.704 1.704-7.337 7.337z"
+ }
+ }]
+};
+exports.eyedropper = eyedropper;
+var droplet = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.51 7.393c-1.027-2.866-3.205-5.44-5.51-7.393-2.305 1.953-4.482 4.527-5.51 7.393-0.635 1.772-0.698 3.696 0.197 5.397 1.029 1.955 3.104 3.21 5.313 3.21s4.284-1.255 5.313-3.21c0.895-1.701 0.832-3.624 0.197-5.397zM11.543 11.859c-0.684 1.301-2.075 2.141-3.543 2.141-0.861 0-1.696-0.29-2.377-0.791 0.207 0.027 0.416 0.041 0.627 0.041 1.835 0 3.573-1.050 4.428-2.676 0.701-1.333 0.64-2.716 0.373-3.818 0.227 0.44 0.42 0.878 0.576 1.311 0.353 0.985 0.625 2.443-0.084 3.791z"
+ }
+ }]
+};
+exports.droplet = droplet;
+var paintFormat = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9v-6h-3v-1c0-0.55-0.45-1-1-1h-11c-0.55 0-1 0.45-1 1v3c0 0.55 0.45 1 1 1h11c0.55 0 1-0.45 1-1v-1h2v4h-9v2h-0.5c-0.276 0-0.5 0.224-0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5h2c0.276 0 0.5-0.224 0.5-0.5v-5c0-0.276-0.224-0.5-0.5-0.5h-0.5v-1h9zM12 3h-11v-1h11v1z"
+ }
+ }]
+};
+exports.paintFormat = paintFormat;
+var image = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.998 2c0.001 0.001 0.001 0.001 0.002 0.002v11.996c-0.001 0.001-0.001 0.001-0.002 0.002h-13.996c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996zM15 1h-14c-0.55 0-1 0.45-1 1v12c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-12c0-0.55-0.45-1-1-1v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 4.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 13h-12v-2l3.5-6 4 5h1l3.5-3z"
+ }
+ }]
+};
+exports.image = image;
+var images = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M17 2h-1v-1c0-0.55-0.45-1-1-1h-14c-0.55 0-1 0.45-1 1v12c0 0.55 0.45 1 1 1h1v1c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-12c0-0.55-0.45-1-1-1zM2 3v10h-0.998c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998h-12c-0.55 0-1 0.45-1 1v0zM17 14.998c-0.001 0.001-0.001 0.001-0.002 0.002h-13.996c-0.001-0.001-0.001-0.001-0.002-0.002v-11.996c0.001-0.001 0.001-0.001 0.002-0.002h13.996c0.001 0.001 0.001 0.001 0.002 0.002v11.996z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 5.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 14h-12v-2l3.5-6 4 5h1l3.5-3z"
+ }
+ }]
+};
+exports.images = images;
+var camera = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.75 9.5c0 1.795 1.455 3.25 3.25 3.25s3.25-1.455 3.25-3.25-1.455-3.25-3.25-3.25-3.25 1.455-3.25 3.25zM15 4h-3.5c-0.25-1-0.5-2-1.5-2h-4c-1 0-1.25 1-1.5 2h-3.5c-0.55 0-1 0.45-1 1v9c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-9c0-0.55-0.45-1-1-1zM8 13.938c-2.451 0-4.438-1.987-4.438-4.438s1.987-4.438 4.438-4.438c2.451 0 4.438 1.987 4.438 4.438s-1.987 4.438-4.438 4.438zM15 7h-2v-1h2v1z"
+ }
+ }]
+};
+exports.camera = camera;
+var headphones = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 9h-1v7h1c0.275 0 0.5-0.225 0.5-0.5v-6c0-0.275-0.225-0.5-0.5-0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 9c-0.275 0-0.5 0.225-0.5 0.5v6c0 0.275 0.225 0.5 0.5 0.5h1v-7h-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8c0 0.96 0.169 1.88 0.479 2.732-0.304 0.519-0.479 1.123-0.479 1.768 0 1.763 1.304 3.222 3 3.464v-6.928c-0.499 0.071-0.963 0.248-1.371 0.506-0.084-0.417-0.129-0.849-0.129-1.292 0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5c0 0.442-0.044 0.874-0.128 1.292-0.408-0.259-0.873-0.435-1.372-0.507v6.929c1.696-0.243 3-1.701 3-3.464 0-0.645-0.175-1.249-0.479-1.768 0.31-0.853 0.479-1.773 0.479-2.732z"
+ }
+ }]
+};
+exports.headphones = headphones;
+var music = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 0h1v11.5c0 1.381-1.567 2.5-3.5 2.5s-3.5-1.119-3.5-2.5c0-1.381 1.567-2.5 3.5-2.5 0.979 0 1.865 0.287 2.5 0.751v-5.751l-8 1.778v7.722c0 1.381-1.567 2.5-3.5 2.5s-3.5-1.119-3.5-2.5c0-1.381 1.567-2.5 3.5-2.5 0.979 0 1.865 0.287 2.5 0.751v-9.751l9-2z"
+ }
+ }]
+};
+exports.music = music;
+var play = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.331 2.502c-2.244-0.323-4.724-0.502-7.331-0.502s-5.087 0.179-7.331 0.502c-0.43 1.683-0.669 3.543-0.669 5.498s0.239 3.815 0.669 5.498c2.244 0.323 4.724 0.502 7.331 0.502s5.087-0.179 7.331-0.502c0.43-1.683 0.669-3.543 0.669-5.498s-0.239-3.815-0.669-5.498zM6 11v-6l5 3-5 3z"
+ }
+ }]
+};
+exports.play = play;
+var film = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 2v12h16v-12h-16zM3 13h-2v-2h2v2zM3 9h-2v-2h2v2zM3 5h-2v-2h2v2zM12 13h-8v-10h8v10zM15 13h-2v-2h2v2zM15 9h-2v-2h2v2zM15 5h-2v-2h2v2zM6 5v6l4-3z"
+ }
+ }]
+};
+exports.film = film;
+var videoCamera = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 4.5c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5zM0 4.5c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5zM12 9.5v-1.5c0-0.55-0.45-1-1-1h-10c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h10c0.55 0 1-0.45 1-1v-1.5l4 2.5v-7l-4 2.5zM10 12h-8v-3h8v3z"
+ }
+ }]
+};
+exports.videoCamera = videoCamera;
+var dice = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 3h-8c-1.375 0-2.5 1.125-2.5 2.5v8c0 1.375 1.125 2.5 2.5 2.5h8c1.375 0 2.5-1.125 2.5-2.5v-8c0-1.375-1.125-2.5-2.5-2.5zM6.5 14c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM6.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM9.5 11c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.5 14c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5zM12.949 2c-0.233-1.138-1.245-2-2.449-2h-8c-1.375 0-2.5 1.125-2.5 2.5v8c0 1.204 0.862 2.216 2 2.449v-9.949c0-0.55 0.45-1 1-1h9.949z"
+ }
+ }]
+};
+exports.dice = dice;
+var pacman = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.074 2.794c-1.467-1.71-3.644-2.794-6.074-2.794-4.418 0-8 3.582-8 8s3.582 8 8 8c2.43 0 4.607-1.084 6.074-2.794l-5.074-5.206 5.074-5.206zM11 1.884c0.616 0 1.116 0.499 1.116 1.116s-0.499 1.116-1.116 1.116-1.116-0.499-1.116-1.116c0-0.616 0.499-1.116 1.116-1.116z"
+ }
+ }]
+};
+exports.pacman = pacman;
+var spades = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.775 5.44c-3.024-2.248-4.067-4.047-4.774-5.44v0c-0 0-0-0-0-0v0c-0.708 1.393-1.75 3.192-4.774 5.44-5.157 3.833-0.303 9.182 3.965 6.238-0.278 1.827-1.227 3.159-2.191 3.733v0.59h6v-0.59c-0.964-0.574-1.913-1.906-2.191-3.733 4.268 2.944 9.122-2.405 3.965-6.238z"
+ }
+ }]
+};
+exports.spades = spades;
+var clubs = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.294 6.137c-0.922 0-1.751 0.384-2.341 1.011-0.25 0.265-0.684 0.58-1.153 0.856 0.22-0.842 0.917-1.902 1.4-2.367 0.619-0.596 1-1.435 1-2.367 0-1.795-1.429-3.252-3.2-3.271-1.771 0.019-3.2 1.475-3.2 3.271 0 0.932 0.38 1.771 1 2.367 0.484 0.465 1.18 1.525 1.4 2.367-0.469-0.277-0.903-0.591-1.153-0.856-0.59-0.627-1.419-1.011-2.341-1.011-1.787 0-3.236 1.463-3.236 3.271s1.448 3.271 3.236 3.271c0.923 0 1.751-0.396 2.341-1.023 0.263-0.279 0.726-0.627 1.223-0.916-0.047 2.308-1.149 4.003-2.271 4.67v0.59h6v-0.59c-1.122-0.668-2.224-2.363-2.271-4.67 0.498 0.289 0.961 0.637 1.223 0.916 0.59 0.626 1.419 1.023 2.341 1.023 1.787 0 3.236-1.464 3.236-3.271s-1.448-3.271-3.236-3.271z"
+ }
+ }]
+};
+exports.clubs = clubs;
+var diamonds = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0l-5 8 5 8 5-8z"
+ }
+ }]
+};
+exports.diamonds = diamonds;
+var bullhorn = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 6.707c0-3.139-0.919-5.687-2.054-5.707 0.005-0 0.009-0 0.014-0h-1.296c0 0-3.044 2.287-7.425 3.184-0.134 0.708-0.219 1.551-0.219 2.523s0.085 1.816 0.219 2.523c4.382 0.897 7.425 3.184 7.425 3.184h1.296c-0.005 0-0.009-0-0.014-0.001 1.136-0.020 2.054-2.567 2.054-5.707zM13.513 11.551c-0.147 0-0.305-0.152-0.387-0.243-0.197-0.22-0.387-0.562-0.55-0.989-0.363-0.957-0.564-2.239-0.564-3.611s0.2-2.655 0.564-3.611c0.162-0.428 0.353-0.77 0.55-0.99 0.081-0.091 0.24-0.243 0.387-0.243s0.305 0.152 0.387 0.243c0.197 0.22 0.387 0.562 0.55 0.99 0.363 0.957 0.564 2.239 0.564 3.611s-0.2 2.655-0.564 3.611c-0.162 0.428-0.353 0.77-0.55 0.989-0.081 0.091-0.24 0.243-0.387 0.243zM3.935 6.707c0-0.812 0.060-1.6 0.173-2.33-0.74 0.102-1.39 0.161-2.193 0.161-1.048 0-1.048 0-1.048 0l-0.867 1.479v1.378l0.867 1.479c0 0 0 0 1.048 0 0.803 0 1.453 0.059 2.193 0.161-0.113-0.729-0.173-1.518-0.173-2.33zM5.752 10.034l-2-0.383 1.279 5.024c0.066 0.26 0.324 0.391 0.573 0.291l1.852-0.741c0.249-0.1 0.349-0.374 0.222-0.611l-1.926-3.581zM13.513 8.574c-0.057 0-0.118-0.059-0.149-0.094-0.076-0.085-0.149-0.217-0.212-0.381-0.14-0.369-0.217-0.863-0.217-1.392s0.077-1.023 0.217-1.392c0.063-0.165 0.136-0.297 0.212-0.381 0.031-0.035 0.092-0.094 0.149-0.094s0.118 0.059 0.149 0.094c0.076 0.085 0.149 0.217 0.212 0.381 0.14 0.369 0.217 0.863 0.217 1.392s-0.077 1.023-0.217 1.392c-0.063 0.165-0.136 0.297-0.212 0.381-0.031 0.035-0.092 0.094-0.149 0.094z"
+ }
+ }]
+};
+exports.bullhorn = bullhorn;
+var connection = {
+ "viewBox": "0 0 20 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 9c1.654 0 3.154 0.673 4.241 1.759l-1.414 1.414c-0.724-0.724-1.724-1.173-2.827-1.173s-2.103 0.449-2.827 1.173l-1.414-1.414c1.086-1.086 2.586-1.759 4.241-1.759zM2.929 7.929c1.889-1.889 4.4-2.929 7.071-2.929s5.182 1.040 7.071 2.929l-1.414 1.414c-1.511-1.511-3.52-2.343-5.657-2.343s-4.146 0.832-5.657 2.343l-1.414-1.414zM15.45 2.101c1.667 0.705 3.164 1.715 4.45 3v0l-1.414 1.414c-2.267-2.266-5.28-3.515-8.485-3.515s-6.219 1.248-8.485 3.515l-1.414-1.414c1.285-1.285 2.783-2.295 4.45-3 1.727-0.73 3.56-1.101 5.45-1.101s3.723 0.37 5.45 1.101zM9 14c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1z"
+ }
+ }]
+};
+exports.connection = connection;
+var podcast = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8c0 3.438 2.169 6.37 5.214 7.501l-0.214 0.499h6l-0.214-0.499c3.045-1.131 5.214-4.063 5.214-7.501zM7.606 9.919c-0.356-0.153-0.606-0.507-0.606-0.919 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.412-0.25 0.766-0.606 0.919l-0.394-0.919-0.394 0.919zM8.41 9.958c0.908-0.189 1.59-0.994 1.59-1.958 0-1.105-0.895-2-2-2s-2 0.895-2 2c0 0.964 0.682 1.768 1.59 1.957l-1.166 2.721c-1.425-0.612-2.424-2.028-2.424-3.677 0-2.209 1.791-4.188 4-4.188s4 1.978 4 4.188c0 1.649-0.999 3.066-2.424 3.677l-1.166-2.72zM10.757 15.433l-1.155-2.695c1.976-0.668 3.398-2.537 3.398-4.738 0-2.761-2.239-5-5-5s-5 2.239-5 5c0 2.201 1.422 4.070 3.398 4.738l-1.155 2.695c-2.494-1.070-4.24-3.547-4.24-6.433 0-3.865 3.133-7.185 6.997-7.185s6.997 3.32 6.997 7.185c0 2.886-1.747 5.363-4.24 6.433z"
+ }
+ }]
+};
+exports.podcast = podcast;
+var feed = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 8c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10.38 3.602c1.56 0.846 2.62 2.498 2.62 4.398s-1.059 3.552-2.62 4.398c0.689-1.096 1.12-2.66 1.12-4.398s-0.431-3.302-1.12-4.398zM4.5 8c0 1.738 0.431 3.302 1.12 4.398-1.56-0.846-2.62-2.498-2.62-4.398s1.059-3.552 2.62-4.398c-0.689 1.096-1.12 2.66-1.12 4.398zM1.5 8c0 2.686 0.85 5.097 2.198 6.746-2.223-1.421-3.698-3.911-3.698-6.746s1.474-5.325 3.698-6.746c-1.348 1.649-2.198 4.060-2.198 6.746zM12.302 1.254c2.223 1.421 3.698 3.911 3.698 6.746s-1.474 5.325-3.698 6.746c1.348-1.649 2.198-4.060 2.198-6.746s-0.85-5.097-2.198-6.746z"
+ }
+ }]
+};
+exports.feed = feed;
+var mic = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 11c1.381 0 2.5-1.119 2.5-2.5v-6c0-1.381-1.119-2.5-2.5-2.5s-2.5 1.119-2.5 2.5v6c0 1.381 1.119 2.5 2.5 2.5zM11 7v1.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5v-1.5h-1v1.5c0 2.316 1.75 4.223 4 4.472v2.028h-2v1h5v-1h-2v-2.028c2.25-0.249 4-2.156 4-4.472v-1.5h-1z"
+ }
+ }]
+};
+exports.mic = mic;
+var book = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 2v13h-10.5c-0.829 0-1.5-0.672-1.5-1.5s0.671-1.5 1.5-1.5h9.5v-12h-10c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12v-14h-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.501 13v0c-0 0-0.001 0-0.001 0-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0 0 0.001-0 0.001-0v0h9.498v-1h-9.498z"
+ }
+ }]
+};
+exports.book = book;
+var books = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM3 5h-2v-1h2v1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM8 5h-2v-1h2v1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.954 2.773l-2.679 1.35c-0.246 0.124-0.345 0.426-0.222 0.671l4.5 8.93c0.124 0.246 0.426 0.345 0.671 0.222l2.679-1.35c0.246-0.124 0.345-0.426 0.222-0.671l-4.5-8.93c-0.124-0.246-0.426-0.345-0.671-0.222z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 13.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z"
+ }
+ }]
+};
+exports.books = books;
+var library = {
+ "viewBox": "0 0 17 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 15v-1h-1v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-1v1h-1v1h17v-1h-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0h1l8 5v1h-17v-1l8-5z"
+ }
+ }]
+};
+exports.library = library;
+var fileText = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 0h-12c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h12c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13 14h-11v-12h11v12zM4 7h7v1h-7zM4 9h7v1h-7zM4 11h7v1h-7zM4 5h7v1h-7z"
+ }
+ }]
+};
+exports.fileText = fileText;
+var profile = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 0h-12c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h12c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13 14h-11v-12h11v12zM4 9h7v1h-7zM4 11h7v1h-7zM5 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM7.5 6h-2c-0.825 0-1.5 0.45-1.5 1v1h5v-1c0-0.55-0.675-1-1.5-1z"
+ }
+ }]
+};
+exports.profile = profile;
+var fileEmpty = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.fileEmpty = fileEmpty;
+var filesEmpty = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 5.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-5.75c-0.689 0-1.25 0.561-1.25 1.25v11.5c0 0.689 0.561 1.25 1.25 1.25h9.5c0.689 0 1.25-0.561 1.25-1.25v-7.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 4.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-9.5c-0.136 0-0.25-0.114-0.25-0.25v-11.5c0-0.135 0.114-0.25 0.25-0.25 0 0 5.749-0 5.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v7.75z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.421 0.659c-0.806-0.591-1.197-0.659-1.421-0.659h-5.75c-0.689 0-1.25 0.561-1.25 1.25v11.5c0 0.604 0.43 1.109 1 1.225v-12.725c0-0.135 0.115-0.25 0.25-0.25h7.607c-0.151-0.124-0.297-0.238-0.437-0.341z"
+ }
+ }]
+};
+exports.filesEmpty = filesEmpty;
+var fileText2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 13h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 11h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 9h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.fileText2 = fileText2;
+var filePicture = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 14h-10v-2l3-5 4.109 5 2.891-2v4z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 7.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5c0.828 0 1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.filePicture = filePicture;
+var fileMusic = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.817 6.113c-0.116-0.095-0.268-0.133-0.415-0.104l-5 1c-0.234 0.047-0.402 0.252-0.402 0.49v3.701c-0.294-0.128-0.636-0.201-1-0.201-1.105 0-2 0.672-2 1.5s0.895 1.5 2 1.5 2-0.672 2-1.5v-3.59l4-0.8v2.091c-0.294-0.128-0.636-0.201-1-0.201-1.105 0-2 0.672-2 1.5s0.895 1.5 2 1.5 2-0.672 2-1.5v-5c0-0.15-0.067-0.292-0.183-0.387z"
+ }
+ }]
+};
+exports.fileMusic = fileMusic;
+var filePlay = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 6l5 3.5-5 3.5v-7z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.filePlay = filePlay;
+var fileVideo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0 0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0 0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 8h5v5h-5v-5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 10l3-2v5l-3-2z"
+ }
+ }]
+};
+exports.fileVideo = fileVideo;
+var fileZip = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0 0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0 0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 1h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 2h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 3h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 4h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 5h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 6h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 7h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 8h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 13.25c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-1.25v-1h-2v4.25zM7 12v1h-2v-1h2z"
+ }
+ }]
+};
+exports.fileZip = fileZip;
+var copy = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 4v-4h-7l-3 3v9h6v4h10v-12h-6zM3 1.414v1.586h-1.586l1.586-1.586zM1 11v-7h3v-3h5v3l-3 3v4h-5zM9 5.414v1.586h-1.586l1.586-1.586zM15 15h-8v-7h3v-3h5v10z"
+ }
+ }]
+};
+exports.copy = copy;
+var paste = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 2h-2v-1c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v1h-2v2h8v-2zM8 2h-2v-0.998c0.001-0.001 0.001-0.001 0.002-0.002h1.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998zM13 5v-2.5c0-0.275-0.225-0.5-0.5-0.5h-1v1h0.5v2h-3l-3 3v4h-4v-9h0.5v-1h-1c-0.275 0-0.5 0.225-0.5 0.5v10c0 0.275 0.225 0.5 0.5 0.5h4.5v3h10v-11h-3zM9 6.414v1.586h-1.586l1.586-1.586zM15 15h-8v-6h3v-3h5v9z"
+ }
+ }]
+};
+exports.paste = paste;
+var stack = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 5l-8-4-8 4 8 4 8-4zM8 2.328l5.345 2.672-5.345 2.672-5.345-2.672 5.345-2.672zM14.398 7.199l1.602 0.801-8 4-8-4 1.602-0.801 6.398 3.199zM14.398 10.199l1.602 0.801-8 4-8-4 1.602-0.801 6.398 3.199z"
+ }
+ }]
+};
+exports.stack = stack;
+var folder = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 2l2 2h7v11h-16v-13z"
+ }
+ }]
+};
+exports.folder = folder;
+var folderOpen = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 15l3-8h-13l-3 8zM2 6l-2 9v-13h4.5l2 2h6.5v2z"
+ }
+ }]
+};
+exports.folderOpen = folderOpen;
+var folderPlus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 4l-2-2h-7v13h16v-11h-7zM11 11h-2v2h-2v-2h-2v-2h2v-2h2v2h2v2z"
+ }
+ }]
+};
+exports.folderPlus = folderPlus;
+var folderMinus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 4l-2-2h-7v13h16v-11h-7zM11 11h-6v-2h6v2z"
+ }
+ }]
+};
+exports.folderMinus = folderMinus;
+var folderDownload = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 4l-2-2h-7v13h16v-11h-7zM8 13.5l-3.5-3.5h2.5v-4h2v4h2.5l-3.5 3.5z"
+ }
+ }]
+};
+exports.folderDownload = folderDownload;
+var folderUpload = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 4l-2-2h-7v13h16v-11h-7zM8 7.5l3.5 3.5h-2.5v4h-2v-4h-2.5l3.5-3.5z"
+ }
+ }]
+};
+exports.folderUpload = folderUpload;
+var priceTag = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.25 0h-6c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l7.439-7.439c0.292-0.292 0.53-0.868 0.53-1.28v-6c0-0.412-0.338-0.75-0.75-0.75zM11.5 6c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z"
+ }
+ }]
+};
+exports.priceTag = priceTag;
+var priceTags = {
+ "viewBox": "0 0 20 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M19.25 0h-6c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l7.439-7.439c0.292-0.292 0.53-0.868 0.53-1.28v-6c0-0.412-0.337-0.75-0.75-0.75zM15.5 6c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 8.5l8.5-8.5h-1.25c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l0.47-0.47-6.5-6.5z"
+ }
+ }]
+};
+exports.priceTags = priceTags;
+var barcode = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 2h2v10h-2zM3 2h1v10h-1zM5 2h1v10h-1zM8 2h1v10h-1zM12 2h1v10h-1zM15 2h1v10h-1zM10 2h0.5v10h-0.5zM7 2h0.5v10h-0.5zM13.5 2h0.5v10h-0.5zM0 13h1v1h-1zM3 13h1v1h-1zM5 13h1v1h-1zM10 13h1v1h-1zM15 13h1v1h-1zM12 13h2v1h-2zM7 13h2v1h-2z"
+ }
+ }]
+};
+exports.barcode = barcode;
+var qrcode = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 1h-4v4h4v-4zM6 0v0 6h-6v-6h6zM2 2h2v2h-2zM15 1h-4v4h4v-4zM16 0v0 6h-6v-6h6zM12 2h2v2h-2zM5 11h-4v4h4v-4zM6 10v0 6h-6v-6h6zM2 12h2v2h-2zM7 0h1v1h-1zM8 1h1v1h-1zM7 2h1v1h-1zM8 3h1v1h-1zM7 4h1v1h-1zM8 5h1v1h-1zM7 6h1v1h-1zM7 8h1v1h-1zM8 9h1v1h-1zM7 10h1v1h-1zM8 11h1v1h-1zM7 12h1v1h-1zM8 13h1v1h-1zM7 14h1v1h-1zM8 15h1v1h-1zM15 8h1v1h-1zM1 8h1v1h-1zM2 7h1v1h-1zM0 7h1v1h-1zM4 7h1v1h-1zM5 8h1v1h-1zM6 7h1v1h-1zM9 8h1v1h-1zM10 7h1v1h-1zM11 8h1v1h-1zM12 7h1v1h-1zM13 8h1v1h-1zM14 7h1v1h-1zM15 10h1v1h-1zM9 10h1v1h-1zM10 9h1v1h-1zM11 10h1v1h-1zM13 10h1v1h-1zM14 9h1v1h-1zM15 12h1v1h-1zM9 12h1v1h-1zM10 11h1v1h-1zM12 11h1v1h-1zM13 12h1v1h-1zM14 11h1v1h-1zM15 14h1v1h-1zM10 13h1v1h-1zM11 14h1v1h-1zM12 13h1v1h-1zM13 14h1v1h-1zM10 15h1v1h-1zM12 15h1v1h-1zM14 15h1v1h-1z"
+ }
+ }]
+};
+exports.qrcode = qrcode;
+var ticket = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 5l2 2-4 4-2-2zM15.649 4.649l-1.149-1.149-0.5 0.5c-0.256 0.256-0.61 0.414-1 0.414-0.781 0-1.414-0.633-1.414-1.414 0-0.391 0.158-0.744 0.415-1l0.5-0.5-1.149-1.149c-0.468-0.468-1.235-0.468-1.703 0l-9.297 9.297c-0.468 0.468-0.468 1.235 0 1.703l1.149 1.149 0.499-0.499c0.256-0.256 0.61-0.415 1.001-0.415 0.781 0 1.414 0.633 1.414 1.414 0 0.391-0.158 0.744-0.415 1l-0.5 0.5 1.149 1.149c0.468 0.468 1.234 0.468 1.703 0l9.297-9.297c0.468-0.468 0.468-1.235 0-1.703zM7 13l-4-4 6-6 4 4-6 6z"
+ }
+ }]
+};
+exports.ticket = ticket;
+var cart = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 14.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 14.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8v-6h-12c0-0.552-0.448-1-1-1h-3v1h2l0.751 6.438c-0.458 0.367-0.751 0.93-0.751 1.562 0 1.105 0.895 2 2 2h12v-1h-12c-0.552 0-1-0.448-1-1 0-0.003 0-0.007 0-0.010l13-1.99z"
+ }
+ }]
+};
+exports.cart = cart;
+var coinDollar = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6zM8 8v-2h2v-1h-2v-1h-1v1h-2v4h2v2h-2v1h2v1h1v-1h2l-0-4h-2zM7 8h-1v-2h1v2zM9 11h-1v-2h1v2z"
+ }
+ }]
+};
+exports.coinDollar = coinDollar;
+var coinEuro = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.482 10.068c-0.239-0.139-0.545-0.058-0.684 0.181-0.27 0.463-0.767 0.751-1.298 0.751h-2c-0.652 0-1.208-0.418-1.414-1h2.414c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2.5v-1h2.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2.414c0.206-0.582 0.762-1 1.414-1h2c0.531 0 1.028 0.288 1.298 0.751 0.139 0.239 0.445 0.32 0.684 0.181s0.32-0.445 0.181-0.684c-0.448-0.77-1.277-1.249-2.162-1.249h-2c-1.207 0-2.217 0.86-2.45 2h-0.55c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5v1h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.55c0.232 1.14 1.242 2 2.45 2h2c0.886 0 1.714-0.478 2.162-1.249 0.139-0.239 0.058-0.545-0.181-0.684z"
+ }
+ }]
+};
+exports.coinEuro = coinEuro;
+var coinPound = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 11h-3.5v-2h1.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-0.5c0-0.827 0.673-1.5 1.5-1.5 0.534 0 1.032 0.288 1.3 0.75 0.138 0.239 0.444 0.321 0.683 0.182s0.321-0.444 0.182-0.683c-0.446-0.771-1.276-1.25-2.165-1.25-1.378 0-2.5 1.122-2.5 2.5v0.5h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5v3h4.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5z"
+ }
+ }]
+};
+exports.coinPound = coinPound;
+var coinYen = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM7.5 14.5c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 9c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.066l1.482-2.223c0.153-0.23 0.091-0.54-0.139-0.693s-0.54-0.091-0.693 0.139l-1.584 2.376-1.584-2.376c-0.153-0.23-0.464-0.292-0.693-0.139s-0.292 0.464-0.139 0.693l1.482 2.223h-1.066c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h1.5v1h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h1.5v1.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-1.5h1.5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-1h1.5z"
+ }
+ }]
+};
+exports.coinYen = coinYen;
+var creditCard = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 2h-13c-0.825 0-1.5 0.675-1.5 1.5v9c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-9c0-0.825-0.675-1.5-1.5-1.5zM1.5 3h13c0.271 0 0.5 0.229 0.5 0.5v1.5h-14v-1.5c0-0.271 0.229-0.5 0.5-0.5zM14.5 13h-13c-0.271 0-0.5-0.229-0.5-0.5v-4.5h14v4.5c0 0.271-0.229 0.5-0.5 0.5zM2 10h1v2h-1zM4 10h1v2h-1zM6 10h1v2h-1z"
+ }
+ }]
+};
+exports.creditCard = creditCard;
+var calculator = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 1h-5c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM6 5h-5v-1h5v1zM14 1h-5c-0.55 0-1 0.45-1 1v13c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-13c0-0.55-0.45-1-1-1zM14 10h-5v-1h5v1zM14 7h-5v-1h5v1zM6 9h-5c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h5c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM6 13h-2v2h-1v-2h-2v-1h2v-2h1v2h2v1z"
+ }
+ }]
+};
+exports.calculator = calculator;
+var lifebuoy = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 8c0-1.657 1.343-3 3-3s3 1.343 3 3-1.343 3-3 3-3-1.343-3-3zM14.468 10.679v0l-2.772-1.148c0.196-0.472 0.304-0.989 0.304-1.531s-0.108-1.059-0.304-1.531l2.772-1.148c0.342 0.825 0.532 1.73 0.532 2.679s-0.189 1.854-0.532 2.679v0zM10.679 1.532v0 0l-1.148 2.772c-0.472-0.196-0.989-0.304-1.531-0.304s-1.059 0.108-1.531 0.304l-1.148-2.772c0.825-0.342 1.73-0.532 2.679-0.532s1.854 0.189 2.679 0.532zM1.532 5.321l2.772 1.148c-0.196 0.472-0.304 0.989-0.304 1.531s0.108 1.059 0.304 1.531l-2.772 1.148c-0.342-0.825-0.532-1.73-0.532-2.679s0.189-1.854 0.532-2.679zM5.321 14.468l1.148-2.772c0.472 0.196 0.989 0.304 1.531 0.304s1.059-0.108 1.531-0.304l1.148 2.772c-0.825 0.342-1.73 0.532-2.679 0.532s-1.854-0.189-2.679-0.532z"
+ }
+ }]
+};
+exports.lifebuoy = lifebuoy;
+var phone = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 10c-1 1-1 2-2 2s-2-1-3-2-2-2-2-3 1-1 2-2-2-4-3-4-3 3-3 3c0 2 2.055 6.055 4 8s6 4 8 4c0 0 3-2 3-3s-3-4-4-3z"
+ }
+ }]
+};
+exports.phone = phone;
+var phoneHangUp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.897 9c0.125 0.867 0.207 2.053-0.182 2.507-0.643 0.751-4.714 0.751-4.714-0.751 0-0.756 0.67-1.252 0.027-2.003-0.632-0.738-1.766-0.75-3.027-0.751s-2.394 0.012-3.027 0.751c-0.643 0.751 0.027 1.247 0.027 2.003 0 1.501-4.071 1.501-4.714 0.751-0.389-0.454-0.307-1.64-0.182-2.507 0.096-0.579 0.339-1.203 1.118-2 0-0 0-0 0-0 1.168-1.090 2.935-1.98 6.716-2v-0c0.021 0 0.042 0 0.063 0s0.041-0 0.063-0v0c3.781 0.019 5.548 0.91 6.716 2 0 0 0 0 0 0 0.778 0.797 1.022 1.421 1.118 2z"
+ }
+ }]
+};
+exports.phoneHangUp = phoneHangUp;
+var addressBook = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 0v16h12v-16h-12zM9 4.005c1.102 0 1.995 0.893 1.995 1.995s-0.893 1.995-1.995 1.995-1.995-0.893-1.995-1.995 0.893-1.995 1.995-1.995v0zM12 12h-6v-1c0-1.105 0.895-2 2-2v0h2c1.105 0 2 0.895 2 2v1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 1h1.5v3h-1.5v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 5h1.5v3h-1.5v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 9h1.5v3h-1.5v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 13h1.5v3h-1.5v-3z"
+ }
+ }]
+};
+exports.addressBook = addressBook;
+var envelop = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 2h-13c-0.825 0-1.5 0.675-1.5 1.5v10c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-10c0-0.825-0.675-1.5-1.5-1.5zM6.23 8.6l-4.23 3.295v-7.838l4.23 4.543zM2.756 4h10.488l-5.244 3.938-5.244-3.938zM6.395 8.777l1.605 1.723 1.605-1.723 3.29 4.223h-9.79l3.29-4.223zM9.77 8.6l4.23-4.543v7.838l-4.23-3.295z"
+ }
+ }]
+};
+exports.envelop = envelop;
+var pushpin = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.5 0l-1.5 1.5 1.5 1.5-3.5 4h-3.5l2.75 2.75-4.25 5.635v0.615h0.615l5.635-4.25 2.75 2.75v-3.5l4-3.5 1.5 1.5 1.5-1.5-7.5-7.5zM7 8.5l-1-1 3.5-3.5 1 1-3.5 3.5z"
+ }
+ }]
+};
+exports.pushpin = pushpin;
+var location = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-2.761 0-5 2.239-5 5 0 5 5 11 5 11s5-6 5-11c0-2.761-2.239-5-5-5zM8 8c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3z"
+ }
+ }]
+};
+exports.location = location;
+var location2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-2.761 0-5 2.239-5 5 0 5 5 11 5 11s5-6 5-11c0-2.761-2.239-5-5-5zM8 8.063c-1.691 0-3.063-1.371-3.063-3.063s1.371-3.063 3.063-3.063 3.063 1.371 3.063 3.063-1.371 3.063-3.063 3.063zM6.063 5c0-1.070 0.867-1.938 1.938-1.938s1.938 0.867 1.938 1.938c0 1.070-0.867 1.938-1.938 1.938s-1.938-0.867-1.938-1.938z"
+ }
+ }]
+};
+exports.location2 = location2;
+var compass = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.5 16c-0.036 0-0.072-0.004-0.108-0.012-0.229-0.051-0.392-0.254-0.392-0.488v-7.5h-7.5c-0.234 0-0.437-0.163-0.488-0.392s0.064-0.462 0.277-0.561l15-7c0.191-0.089 0.416-0.049 0.565 0.1s0.188 0.374 0.1 0.565l-7 15c-0.083 0.179-0.262 0.289-0.453 0.289zM2.754 7h5.746c0.276 0 0.5 0.224 0.5 0.5v5.746l5.465-11.712-11.712 5.465z"
+ }
+ }]
+};
+exports.compass = compass;
+var compass2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM1.5 8c0-3.59 2.91-6.5 6.5-6.5 1.712 0 3.269 0.662 4.43 1.744l-6.43 2.756-2.756 6.43c-1.082-1.161-1.744-2.718-1.744-4.43zM9.143 9.143l-4.001 1.715 1.715-4.001 2.286 2.286zM8 14.5c-1.712 0-3.269-0.662-4.43-1.744l6.43-2.756 2.756-6.43c1.082 1.161 1.744 2.718 1.744 4.43 0 3.59-2.91 6.5-6.5 6.5z"
+ }
+ }]
+};
+exports.compass2 = compass2;
+var map = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3l5-2v12l-5 2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 0.5l5 3v11.5l-5-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 3.5l4-3v12l-4 3z"
+ }
+ }]
+};
+exports.map = map;
+var map2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.5 3l-5-2-5.5 2v12l5.5-2 5 2 5.5-2v-12l-5.5 2zM6 2.277l4 1.6v9.846l-4-1.6v-9.846zM1 3.7l4-1.455v9.872l-4 1.454v-9.872zM15 12.3l-4 1.455v-9.872l4-1.455v9.872z"
+ }
+ }]
+};
+exports.map2 = map2;
+var history = {
+ "viewBox": "0 0 17 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 1c3.866 0 7 3.134 7 7s-3.134 7-7 7v-1.5c1.469 0 2.85-0.572 3.889-1.611s1.611-2.42 1.611-3.889c0-1.469-0.572-2.85-1.611-3.889s-2.42-1.611-3.889-1.611c-1.469 0-2.85 0.572-3.889 1.611-0.799 0.799-1.322 1.801-1.52 2.889h2.909l-3.5 4-3.5-4h2.571c0.485-3.392 3.402-6 6.929-6zM13 7v2h-4v-5h2v3z"
+ }
+ }]
+};
+exports.history = history;
+var clock = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.293 11.707l-3.293-3.293v-4.414h2v3.586l2.707 2.707zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z"
+ }
+ }]
+};
+exports.clock = clock;
+var clock2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM10.293 11.707l-3.293-3.293v-4.414h2v3.586l2.707 2.707-1.414 1.414z"
+ }
+ }]
+};
+exports.clock2 = clock2;
+var alarm = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 2c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.134-7-7-7zM8 14.625c-3.107 0-5.625-2.518-5.625-5.625s2.518-5.625 5.625-5.625c3.107 0 5.625 2.518 5.625 5.625s-2.518 5.625-5.625 5.625zM14.606 4.487c0.251-0.438 0.394-0.946 0.394-1.487 0-1.657-1.343-3-3-3-0.966 0-1.825 0.457-2.374 1.166 2.061 0.426 3.831 1.644 4.98 3.322v0zM6.374 1.166c-0.549-0.709-1.408-1.166-2.374-1.166-1.657 0-3 1.343-3 3 0 0.541 0.143 1.049 0.394 1.487 1.148-1.678 2.919-2.896 4.98-3.322z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 9v-4h-1v5h4v-1z"
+ }
+ }]
+};
+exports.alarm = alarm;
+var bell = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16.023 12.5c0-4.5-4-3.5-4-7 0-0.29-0.028-0.538-0.079-0.749-0.263-1.766-1.44-3.183-2.965-3.615 0.014-0.062 0.021-0.125 0.021-0.191 0-0.52-0.45-0.945-1-0.945s-1 0.425-1 0.945c0 0.065 0.007 0.129 0.021 0.191-1.71 0.484-2.983 2.208-3.020 4.273-0.001 0.030-0.001 0.060-0.001 0.091 0 3.5-4 2.5-4 7 0 1.191 2.665 2.187 6.234 2.439 0.336 0.631 1.001 1.061 1.766 1.061s1.43-0.43 1.766-1.061c3.568-0.251 6.234-1.248 6.234-2.439 0-0.004-0-0.007-0-0.011l0.024 0.011zM12.91 13.345c-0.847 0.226-1.846 0.389-2.918 0.479-0.089-1.022-0.947-1.824-1.992-1.824s-1.903 0.802-1.992 1.824c-1.072-0.090-2.071-0.253-2.918-0.479-1.166-0.311-1.724-0.659-1.928-0.845 0.204-0.186 0.762-0.534 1.928-0.845 1.356-0.362 3.1-0.561 4.91-0.561s3.554 0.199 4.91 0.561c1.166 0.311 1.724 0.659 1.928 0.845-0.204 0.186-0.762 0.534-1.928 0.845z"
+ }
+ }]
+};
+exports.bell = bell;
+var stopwatch = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 3.019v-1.019h2v-1c0-0.552-0.448-1-1-1h-3c-0.552 0-1 0.448-1 1v1h2v1.019c-3.356 0.255-6 3.059-6 6.481 0 3.59 2.91 6.5 6.5 6.5s6.5-2.91 6.5-6.5c0-3.422-2.644-6.226-6-6.481zM11.036 13.036c-0.944 0.944-2.2 1.464-3.536 1.464s-2.591-0.52-3.536-1.464c-0.944-0.944-1.464-2.2-1.464-3.536s0.52-2.591 1.464-3.536c0.907-0.907 2.101-1.422 3.377-1.462l-0.339 4.907c-0.029 0.411 0.195 0.591 0.497 0.591s0.527-0.18 0.497-0.591l-0.339-4.907c1.276 0.040 2.47 0.555 3.377 1.462 0.944 0.944 1.464 2.2 1.464 3.536s-0.52 2.591-1.464 3.536z"
+ }
+ }]
+};
+exports.stopwatch = stopwatch;
+var calendar = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 6h2v2h-2zM8 6h2v2h-2zM11 6h2v2h-2zM2 12h2v2h-2zM5 12h2v2h-2zM8 12h2v2h-2zM5 9h2v2h-2zM8 9h2v2h-2zM11 9h2v2h-2zM2 9h2v2h-2zM13 0v1h-2v-1h-7v1h-2v-1h-2v16h15v-16h-2zM14 15h-13v-11h13v11z"
+ }
+ }]
+};
+exports.calendar = calendar;
+var printer = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 1h8v2h-8v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 4h-14c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h3v4h8v-4h3c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM2 7c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM11 14h-6v-5h6v5z"
+ }
+ }]
+};
+exports.printer = printer;
+var keyboard = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M17 2h-16c-0.55 0-1 0.45-1 1v10c0 0.55 0.45 1 1 1h16c0.55 0 1-0.45 1-1v-10c0-0.55-0.45-1-1-1zM10 4h2v2h-2v-2zM13 7v2h-2v-2h2zM7 4h2v2h-2v-2zM10 7v2h-2v-2h2zM4 4h2v2h-2v-2zM7 7v2h-2v-2h2zM2 4h1v2h-1v-2zM2 7h2v2h-2v-2zM3 12h-1v-2h1v2zM12 12h-8v-2h8v2zM16 12h-3v-2h3v2zM16 9h-2v-2h2v2zM16 6h-3v-2h3v2z"
+ }
+ }]
+};
+exports.keyboard = keyboard;
+var display = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1v10h16v-10h-16zM15 10h-14v-8h14v8zM10.5 12h-5l-0.5 2-1 1h8l-1-1z"
+ }
+ }]
+};
+exports.display = display;
+var laptop = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 11v-8c0-0.55-0.45-1-1-1h-10c-0.55 0-1 0.45-1 1v8h-2v3h16v-3h-2zM10 13h-4v-1h4v1zM13 11h-10v-7.998c0.001-0.001 0.001-0.001 0.002-0.002h9.996c0.001 0.001 0.001 0.001 0.002 0.002v7.998z"
+ }
+ }]
+};
+exports.laptop = laptop;
+var mobile = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 0h-7c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h7c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 0.75h4v0.5h-4v-0.5zM8 15c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM12 12h-8v-10h8v10z"
+ }
+ }]
+};
+exports.mobile = mobile;
+var mobile2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 0h-9c-0.55 0-1 0.45-1 1v14c0 0.55 0.45 1 1 1h9c0.55 0 1-0.45 1-1v-14c0-0.55-0.45-1-1-1zM7.5 15.278c-0.43 0-0.778-0.348-0.778-0.778s0.348-0.778 0.778-0.778 0.778 0.348 0.778 0.778-0.348 0.778-0.778 0.778zM12 13h-9v-11h9v11z"
+ }
+ }]
+};
+exports.mobile2 = mobile2;
+var tablet = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 0h-10c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h10c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM7.5 15.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM12 14h-9v-12h9v12z"
+ }
+ }]
+};
+exports.tablet = tablet;
+var tv = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.331 4.502c-1.388-0.199-2.865-0.344-4.407-0.425l2.576-2.576-1-1-3.509 3.509c-0.328-0.006-0.659-0.009-0.991-0.009v0l-4-4-1 1 3.034 3.034c-1.889 0.066-3.693 0.227-5.365 0.467-0.43 1.683-0.669 3.543-0.669 5.498s0.239 3.815 0.669 5.498c2.244 0.323 4.724 0.502 7.331 0.502s5.087-0.179 7.331-0.502c0.43-1.683 0.669-3.543 0.669-5.498s-0.239-3.815-0.669-5.498zM13.498 13.666c-1.683 0.215-3.543 0.334-5.498 0.334s-3.815-0.119-5.498-0.334c-0.323-1.122-0.502-2.362-0.502-3.666s0.179-2.543 0.502-3.666c1.683-0.215 3.543-0.334 5.498-0.334s3.815 0.119 5.498 0.334c0.323 1.122 0.502 2.362 0.502 3.666s-0.179 2.543-0.502 3.666z"
+ }
+ }]
+};
+exports.tv = tv;
+var drawer = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.89 10.188l-4-5c-0.095-0.119-0.239-0.188-0.39-0.188h-7c-0.152 0-0.296 0.069-0.39 0.188l-4 5c-0.071 0.089-0.11 0.199-0.11 0.312v4.5c0 0.552 0.448 1 1 1h14c0.552 0 1-0.448 1-1v-4.5c0-0.114-0.039-0.224-0.11-0.312zM15 11h-3.5l-2 2h-3l-2-2h-3.5v-0.325l3.74-4.675h6.519l3.74 4.675v0.325z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 8h-7c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 10h-9c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h9c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.drawer = drawer;
+var drawer2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.89 10.188l-4-5c-0.095-0.119-0.239-0.188-0.39-0.188h-7c-0.152 0-0.296 0.069-0.39 0.188l-4 5c-0.071 0.089-0.11 0.199-0.11 0.312v4.5c0 0.552 0.448 1 1 1h14c0.552 0 1-0.448 1-1v-4.5c0-0.114-0.039-0.224-0.11-0.312zM15 11h-3.5l-2 2h-3l-2-2h-3.5v-0.325l3.74-4.675h6.519l3.74 4.675v0.325z"
+ }
+ }]
+};
+exports.drawer2 = drawer2;
+var boxAdd = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 1h-10l-3 3v10.5c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-10.5l-3-3zM8 13l-5-4h3v-3h4v3h3l-5 4zM2.414 3l1-1h9.172l1 1h-11.172z"
+ }
+ }]
+};
+exports.boxAdd = boxAdd;
+var boxRemove = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 1h-10l-3 3v10.5c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-10.5l-3-3zM10 10v3h-4v-3h-3l5-4 5 4h-3zM2.414 3l1-1h9.171l1 1h-11.171z"
+ }
+ }]
+};
+exports.boxRemove = boxRemove;
+var download = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 9l4-4h-3v-4h-2v4h-3zM11.636 7.364l-1.121 1.121 4.064 1.515-6.579 2.453-6.579-2.453 4.064-1.515-1.121-1.121-4.364 1.636v4l8 3 8-3v-4z"
+ }
+ }]
+};
+exports.download = download;
+var upload = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9h2v-4h3l-4-4-4 4h3zM10 6.75v1.542l4.579 1.708-6.579 2.453-6.579-2.453 4.579-1.708v-1.542l-6 2.25v4l8 3 8-3v-4z"
+ }
+ }]
+};
+exports.upload = upload;
+var floppyDisk = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 0h-14v16h16v-14l-2-2zM8 2h2v4h-2v-4zM14 14h-12v-12h1v5h9v-5h1.172l0.828 0.828v11.172z"
+ }
+ }]
+};
+exports.floppyDisk = floppyDisk;
+var drive = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 14h10c1.657 0 3-1.343 3-3h-16c0 1.657 1.343 3 3 3zM13 12h1v1h-1v-1zM15 2h-14l-1 8h16z"
+ }
+ }]
+};
+exports.drive = drive;
+var database = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 1.119-8 2.5v2c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-2c0-1.381-3.582-2.5-8-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 8.5c-4.418 0-8-1.119-8-2.5v3c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-3c0 1.381-3.582 2.5-8 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 13c-4.418 0-8-1.119-8-2.5v3c0 1.381 3.582 2.5 8 2.5s8-1.119 8-2.5v-3c0 1.381-3.582 2.5-8 2.5z"
+ }
+ }]
+};
+exports.database = database;
+var undo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1c-2.209 0-4.209 0.896-5.657 2.343l-2.343-2.343v6h6l-2.243-2.243c1.086-1.086 2.586-1.757 4.243-1.757 3.314 0 6 2.686 6 6 0 1.792-0.786 3.401-2.032 4.5l1.323 1.5c1.661-1.466 2.709-3.611 2.709-6 0-4.418-3.582-8-8-8z"
+ }
+ }]
+};
+exports.undo = undo;
+var redo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 9c0 2.389 1.048 4.534 2.709 6l1.323-1.5c-1.246-1.099-2.031-2.708-2.031-4.5 0-3.314 2.686-6 6-6 1.657 0 3.157 0.672 4.243 1.757l-2.243 2.243h6v-6l-2.343 2.343c-1.448-1.448-3.448-2.343-5.657-2.343-4.418 0-8 3.582-8 8z"
+ }
+ }]
+};
+exports.redo = redo;
+var undo2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.904 16c1.777-3.219 2.076-8.13-4.904-7.966v3.966l-6-6 6-6v3.881c8.359-0.218 9.29 7.378 4.904 12.119z"
+ }
+ }]
+};
+exports.undo2 = undo2;
+var redo2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 3.881v-3.881l6 6-6 6v-3.966c-6.98-0.164-6.681 4.747-4.904 7.966-4.386-4.741-3.455-12.337 4.904-12.119z"
+ }
+ }]
+};
+exports.redo2 = redo2;
+var forward = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.096 0c-1.777 3.219-2.076 8.13 4.904 7.966v-3.966l6 6-6 6v-3.881c-8.359 0.218-9.29-7.378-4.904-12.119z"
+ }
+ }]
+};
+exports.forward = forward;
+var reply = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 12.119v3.881l-6-6 6-6v3.966c6.98 0.164 6.681-4.747 4.904-7.966 4.386 4.741 3.455 12.337-4.904 12.119z"
+ }
+ }]
+};
+exports.reply = reply;
+var bubble = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1c4.418 0 8 2.91 8 6.5s-3.582 6.5-8 6.5c-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z"
+ }
+ }]
+};
+exports.bubble = bubble;
+var bubbles = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M17 14.081c0 0.711 0.407 1.327 1 1.628v0.249c-0.166 0.023-0.335 0.035-0.508 0.035-1.063 0-2.021-0.446-2.699-1.16-0.41 0.109-0.844 0.168-1.293 0.168-2.485 0-4.5-1.791-4.5-4s2.015-4 4.5-4c2.485 0 4.5 1.791 4.5 4 0 0.865-0.309 1.665-0.834 2.32-0.107 0.232-0.166 0.489-0.166 0.761zM8 0c4.351 0 7.89 2.822 7.997 6.336-0.768-0.343-1.619-0.524-2.497-0.524-1.493 0-2.903 0.523-3.971 1.472-1.107 0.984-1.717 2.304-1.717 3.716 0 0.698 0.149 1.373 0.433 1.997-0.082 0.002-0.164 0.003-0.246 0.003-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z"
+ }
+ }]
+};
+exports.bubbles = bubbles;
+var bubbles2 = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 0v0c4.142 0 7.5 2.717 7.5 6.069s-3.358 6.069-7.5 6.069c-0.398 0-0.788-0.025-1.169-0.074-1.611 1.605-3.471 1.892-5.331 1.935v-0.393c1.004-0.49 1.813-1.382 1.813-2.402 0-0.142-0.011-0.282-0.032-0.419-1.696-1.113-2.781-2.812-2.781-4.717 0-3.352 3.358-6.069 7.5-6.069zM15.563 13.604c0 0.874 0.567 1.639 1.438 2.059v0.337c-1.611-0.036-3.090-0.283-4.487-1.658-0.33 0.041-0.669 0.063-1.013 0.063-1.492 0-2.866-0.402-3.963-1.079 2.261-0.008 4.395-0.732 6.013-2.042 0.816-0.66 1.459-1.435 1.913-2.302 0.481-0.92 0.724-1.9 0.724-2.913 0-0.163-0.007-0.326-0.020-0.487 1.134 0.936 1.832 2.213 1.832 3.62 0 1.633-0.94 3.089-2.41 4.043-0.018 0.117-0.027 0.237-0.027 0.359z"
+ }
+ }]
+};
+exports.bubbles2 = bubbles2;
+var bubble2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 3c-0.858 0-1.687 0.135-2.464 0.402-0.73 0.251-1.38 0.605-1.932 1.054-1.035 0.841-1.604 1.922-1.604 3.044 0 0.63 0.175 1.24 0.52 1.815 0.356 0.592 0.89 1.134 1.547 1.566 0.474 0.312 0.793 0.812 0.878 1.373 0.028 0.187 0.046 0.376 0.053 0.564 0.117-0.097 0.23-0.201 0.342-0.312 0.377-0.377 0.887-0.586 1.414-0.586 0.084 0 0.168 0.005 0.252 0.016 0.328 0.042 0.662 0.063 0.995 0.063 0.858 0 1.687-0.135 2.464-0.402 0.73-0.251 1.38-0.605 1.932-1.054 1.035-0.841 1.604-1.922 1.604-3.044s-0.57-2.203-1.604-3.044c-0.552-0.448-1.202-0.803-1.932-1.054-0.777-0.267-1.606-0.402-2.464-0.402zM8 1v0c4.418 0 8 2.91 8 6.5s-3.582 6.5-8 6.5c-0.424 0-0.841-0.027-1.247-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5z"
+ }
+ }]
+};
+exports.bubble2 = bubble2;
+var bubbles3 = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M17 14.081c0 0.711 0.407 1.327 1 1.628v0.249c-0.166 0.023-0.335 0.035-0.508 0.035-1.063 0-2.021-0.446-2.699-1.16-0.41 0.109-0.844 0.168-1.293 0.168-2.485 0-4.5-1.791-4.5-4s2.015-4 4.5-4c2.485 0 4.5 1.791 4.5 4 0 0.865-0.309 1.665-0.834 2.32-0.107 0.232-0.166 0.489-0.166 0.761zM3.604 3.456c-1.035 0.841-1.604 1.922-1.604 3.044 0 0.63 0.175 1.24 0.52 1.815 0.356 0.592 0.89 1.134 1.547 1.566 0.474 0.312 0.793 0.812 0.878 1.373 0.028 0.187 0.046 0.376 0.053 0.564 0.117-0.097 0.23-0.201 0.342-0.312 0.377-0.377 0.887-0.586 1.414-0.586 0.084 0 0.168 0.005 0.252 0.016 0.327 0.042 0.662 0.063 0.994 0.063v2c-0.424-0-0.84-0.027-1.246-0.079-1.718 1.718-3.77 2.027-5.753 2.072v-0.421c1.071-0.525 2-1.48 2-2.572 0-0.152-0.012-0.302-0.034-0.448-1.809-1.192-2.966-3.012-2.966-5.052 0-3.59 3.582-6.5 8-6.5 4.351 0 7.89 2.822 7.997 6.336-0.642-0.286-1.341-0.46-2.067-0.509-0.18-0.876-0.709-1.7-1.535-2.371-0.552-0.448-1.202-0.803-1.932-1.054-0.777-0.267-1.606-0.402-2.464-0.402s-1.687 0.135-2.464 0.402c-0.73 0.251-1.38 0.605-1.932 1.054z"
+ }
+ }]
+};
+exports.bubbles3 = bubbles3;
+var bubbles4 = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 2c-0.792 0-1.556 0.124-2.272 0.369-0.671 0.23-1.267 0.554-1.773 0.963-0.938 0.759-1.455 1.731-1.455 2.737 0 0.562 0.157 1.109 0.467 1.623 0.323 0.537 0.811 1.028 1.41 1.421 0.476 0.312 0.796 0.812 0.881 1.374 0.014 0.094 0.025 0.188 0.034 0.282 0.043-0.039 0.085-0.080 0.127-0.122 0.377-0.376 0.886-0.583 1.411-0.583 0.084 0 0.167 0.005 0.251 0.016 0.303 0.038 0.611 0.058 0.918 0.058 0.792 0 1.556-0.124 2.272-0.369 0.671-0.23 1.267-0.554 1.774-0.963 0.938-0.759 1.455-1.731 1.455-2.737s-0.517-1.978-1.455-2.737c-0.506-0.41-1.103-0.734-1.774-0.963-0.716-0.245-1.48-0.369-2.272-0.369zM7.5 0v0c4.142 0 7.5 2.717 7.5 6.069s-3.358 6.069-7.5 6.069c-0.398 0-0.788-0.025-1.169-0.074-1.611 1.605-3.471 1.892-5.331 1.935v-0.393c1.004-0.49 1.813-1.382 1.813-2.402 0-0.142-0.011-0.282-0.032-0.419-1.696-1.113-2.781-2.812-2.781-4.717 0-3.352 3.358-6.069 7.5-6.069zM15.563 13.604c0 0.874 0.567 1.639 1.438 2.059v0.337c-1.611-0.036-3.090-0.283-4.487-1.658-0.33 0.041-0.669 0.063-1.013 0.063-1.492 0-2.866-0.402-3.963-1.079 2.261-0.008 4.395-0.732 6.013-2.042 0.816-0.66 1.459-1.435 1.913-2.302 0.481-0.92 0.724-1.9 0.724-2.913 0-0.163-0.007-0.326-0.020-0.487 1.134 0.936 1.832 2.213 1.832 3.62 0 1.633-0.94 3.089-2.41 4.043-0.018 0.117-0.027 0.237-0.027 0.359z"
+ }
+ }]
+};
+exports.bubbles4 = bubbles4;
+var user = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 11.041v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h14c0-2.015-2.608-3.682-6-3.959z"
+ }
+ }]
+};
+exports.user = user;
+var users = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 12.041v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h14c0-2.015-2.608-3.682-6-3.959z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.112 12.427c0.864-0.565 1.939-0.994 3.122-1.256-0.235-0.278-0.449-0.588-0.633-0.922-0.475-0.863-0.726-1.813-0.726-2.748 0-1.344 0-2.614 0.478-3.653 0.464-1.008 1.299-1.633 2.488-1.867-0.264-1.195-0.968-1.98-2.841-1.98-3 0-3 2.015-3 4.5 0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h4.359c0.227-0.202 0.478-0.393 0.753-0.573z"
+ }
+ }]
+};
+exports.users = users;
+var userPlus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 11.5c0-2.363 1.498-4.383 3.594-5.159 0.254-0.571 0.406-1.206 0.406-1.841 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h6.208c-0.135-0.477-0.208-0.98-0.208-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 7c-2.485 0-4.5 2.015-4.5 4.5s2.015 4.5 4.5 4.5c2.485 0 4.5-2.015 4.5-4.5s-2.015-4.5-4.5-4.5zM14 12h-2v2h-1v-2h-2v-1h2v-2h1v2h2v1z"
+ }
+ }]
+};
+exports.userPlus = userPlus;
+var userMinus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 11.5c0-2.363 1.498-4.383 3.594-5.159 0.254-0.571 0.406-1.206 0.406-1.841 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h6.208c-0.135-0.477-0.208-0.98-0.208-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 7c-2.485 0-4.5 2.015-4.5 4.5s2.015 4.5 4.5 4.5c2.485 0 4.5-2.015 4.5-4.5s-2.015-4.5-4.5-4.5zM14 12h-5v-1h5v1z"
+ }
+ }]
+};
+exports.userMinus = userMinus;
+var userCheck = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 9.5l-4.5 4.5-1.5-1.5-1 1 2.5 2.5 5.5-5.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 12h5v-1.799c-1.050-0.613-2.442-1.033-4-1.16v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h7v-1z"
+ }
+ }]
+};
+exports.userCheck = userCheck;
+var userTie = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 3c0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.657-1.343 3-3 3s-3-1.343-3-3zM12.001 7h-0.553l-3.111 6.316 1.163-5.816-1.5-1.5-1.5 1.5 1.163 5.816-3.111-6.316h-0.554c-1.999 0-1.999 1.344-1.999 3v5h12v-5c0-1.656 0-3-1.999-3z"
+ }
+ }]
+};
+exports.userTie = userTie;
+var quotesLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.516 7c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5l-0.016-0.5c0-3.866 3.134-7 7-7v2c-1.336 0-2.591 0.52-3.536 1.464-0.182 0.182-0.348 0.375-0.497 0.578 0.179-0.028 0.362-0.043 0.548-0.043zM12.516 7c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5l-0.016-0.5c0-3.866 3.134-7 7-7v2c-1.336 0-2.591 0.52-3.536 1.464-0.182 0.182-0.348 0.375-0.497 0.578 0.179-0.028 0.362-0.043 0.549-0.043z"
+ }
+ }]
+};
+exports.quotesLeft = quotesLeft;
+var quotesRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 10c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5 3.5 1.567 3.5 3.5l0.016 0.5c0 3.866-3.134 7-7 7v-2c1.336 0 2.591-0.52 3.536-1.464 0.182-0.182 0.348-0.375 0.497-0.578-0.179 0.028-0.362 0.043-0.549 0.043zM3.5 10c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5 3.5 1.567 3.5 3.5l0.016 0.5c0 3.866-3.134 7-7 7v-2c1.336 0 2.591-0.52 3.536-1.464 0.182-0.182 0.348-0.375 0.497-0.578-0.179 0.028-0.362 0.043-0.549 0.043z"
+ }
+ }]
+};
+exports.quotesRight = quotesRight;
+var hourGlass = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.39 8c2.152-1.365 3.61-3.988 3.61-7 0-0.339-0.019-0.672-0.054-1h-13.891c-0.036 0.328-0.054 0.661-0.054 1 0 3.012 1.457 5.635 3.609 7-2.152 1.365-3.609 3.988-3.609 7 0 0.339 0.019 0.672 0.054 1h13.891c0.036-0.328 0.054-0.661 0.054-1 0-3.012-1.457-5.635-3.609-7zM2.5 15c0-2.921 1.253-5.397 3.5-6.214v-1.572c-2.247-0.817-3.5-3.294-3.5-6.214v0h11c0 2.921-1.253 5.397-3.5 6.214v1.572c2.247 0.817 3.5 3.294 3.5 6.214h-11zM9.682 10.462c-1.12-0.635-1.181-1.459-1.182-1.959v-1.004c0-0.5 0.059-1.327 1.184-1.963 0.602-0.349 1.122-0.88 1.516-1.537h-6.4c0.395 0.657 0.916 1.188 1.518 1.538 1.12 0.635 1.181 1.459 1.182 1.959v1.004c0 0.5-0.059 1.327-1.184 1.963-1.135 0.659-1.98 1.964-2.236 3.537h7.839c-0.256-1.574-1.102-2.879-2.238-3.538z"
+ }
+ }]
+};
+exports.hourGlass = hourGlass;
+var spinner = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10.243 3.757c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM13 8c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.243 12.243c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM7 14c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM2.757 12.243c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM2.257 3.757c0 0 0 0 0 0 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0 0 0 0 0 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM0.875 8c0-0.621 0.504-1.125 1.125-1.125s1.125 0.504 1.125 1.125c0 0.621-0.504 1.125-1.125 1.125s-1.125-0.504-1.125-1.125z"
+ }
+ }]
+};
+exports.spinner = spinner;
+var spinner2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8c-0.020-1.045-0.247-2.086-0.665-3.038-0.417-0.953-1.023-1.817-1.766-2.53s-1.624-1.278-2.578-1.651c-0.953-0.374-1.978-0.552-2.991-0.531-1.013 0.020-2.021 0.24-2.943 0.646-0.923 0.405-1.758 0.992-2.449 1.712s-1.237 1.574-1.597 2.497c-0.361 0.923-0.533 1.914-0.512 2.895 0.020 0.981 0.234 1.955 0.627 2.847 0.392 0.892 0.961 1.7 1.658 2.368s1.523 1.195 2.416 1.543c0.892 0.348 1.851 0.514 2.799 0.493 0.949-0.020 1.89-0.227 2.751-0.608 0.862-0.379 1.642-0.929 2.287-1.604s1.154-1.472 1.488-2.335c0.204-0.523 0.342-1.069 0.415-1.622 0.019 0.001 0.039 0.002 0.059 0.002 0.552 0 1-0.448 1-1 0-0.028-0.001-0.056-0.004-0.083h0.004zM14.411 10.655c-0.367 0.831-0.898 1.584-1.55 2.206s-1.422 1.112-2.254 1.434c-0.832 0.323-1.723 0.476-2.608 0.454-0.884-0.020-1.759-0.215-2.56-0.57-0.801-0.354-1.526-0.867-2.125-1.495s-1.071-1.371-1.38-2.173c-0.31-0.801-0.457-1.66-0.435-2.512s0.208-1.694 0.551-2.464c0.342-0.77 0.836-1.468 1.441-2.044s1.321-1.029 2.092-1.326c0.771-0.298 1.596-0.438 2.416-0.416s1.629 0.202 2.368 0.532c0.74 0.329 1.41 0.805 1.963 1.387s0.988 1.27 1.272 2.011c0.285 0.74 0.418 1.532 0.397 2.32h0.004c-0.002 0.027-0.004 0.055-0.004 0.083 0 0.516 0.39 0.94 0.892 0.994-0.097 0.544-0.258 1.075-0.481 1.578z"
+ }
+ }]
+};
+exports.spinner2 = spinner2;
+var spinner3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 4.736c-0.515 0-0.933-0.418-0.933-0.933v-2.798c0-0.515 0.418-0.933 0.933-0.933s0.933 0.418 0.933 0.933v2.798c0 0.515-0.418 0.933-0.933 0.933z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 15.577c-0.322 0-0.583-0.261-0.583-0.583v-2.798c0-0.322 0.261-0.583 0.583-0.583s0.583 0.261 0.583 0.583v2.798c0 0.322-0.261 0.583-0.583 0.583z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.902 5.24c-0.302 0-0.596-0.157-0.758-0.437l-1.399-2.423c-0.241-0.418-0.098-0.953 0.32-1.194s0.953-0.098 1.194 0.32l1.399 2.423c0.241 0.418 0.098 0.953-0.32 1.194-0.138 0.079-0.288 0.117-0.436 0.117z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.498 14.582c-0.181 0-0.358-0.094-0.455-0.262l-1.399-2.423c-0.145-0.251-0.059-0.572 0.192-0.717s0.572-0.059 0.717 0.192l1.399 2.423c0.145 0.251 0.059 0.572-0.192 0.717-0.083 0.048-0.173 0.070-0.262 0.070z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.365 6.718c-0.138 0-0.279-0.035-0.407-0.109l-2.423-1.399c-0.39-0.225-0.524-0.724-0.299-1.115s0.724-0.524 1.115-0.299l2.423 1.399c0.39 0.225 0.524 0.724 0.299 1.115-0.151 0.262-0.425 0.408-0.707 0.408z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.057 11.964c-0.079 0-0.159-0.020-0.233-0.063l-2.423-1.399c-0.223-0.129-0.299-0.414-0.171-0.637s0.414-0.299 0.637-0.171l2.423 1.399c0.223 0.129 0.299 0.414 0.171 0.637-0.086 0.15-0.243 0.233-0.404 0.233z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.803 8.758h-2.798c-0.418 0-0.758-0.339-0.758-0.758s0.339-0.758 0.758-0.758h2.798c0.419 0 0.758 0.339 0.758 0.758s-0.339 0.758-0.758 0.758z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.995 8.466c-0 0 0 0 0 0h-2.798c-0.258-0-0.466-0.209-0.466-0.466s0.209-0.466 0.466-0.466c0 0 0 0 0 0h2.798c0.258 0 0.466 0.209 0.466 0.466s-0.209 0.466-0.466 0.466z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.943 12.197c-0.242 0-0.477-0.125-0.606-0.35-0.193-0.335-0.079-0.762 0.256-0.955l2.423-1.399c0.335-0.193 0.762-0.079 0.955 0.256s0.079 0.762-0.256 0.955l-2.423 1.399c-0.11 0.064-0.23 0.094-0.349 0.094z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.635 6.368c-0.161 0-0.318-0.084-0.404-0.233-0.129-0.223-0.052-0.508 0.171-0.637l2.423-1.399c0.223-0.129 0.508-0.052 0.637 0.171s0.052 0.508-0.171 0.637l-2.423 1.399c-0.073 0.042-0.154 0.063-0.233 0.063z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.502 14.699c-0.109 0-0.219-0.028-0.32-0.086-0.307-0.177-0.412-0.569-0.235-0.876l1.399-2.423c0.177-0.307 0.569-0.412 0.876-0.235s0.412 0.569 0.235 0.876l-1.399 2.423c-0.119 0.206-0.334 0.321-0.556 0.321z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.098 4.832c-0.079 0-0.159-0.020-0.233-0.063-0.223-0.129-0.299-0.414-0.171-0.637l1.399-2.423c0.129-0.223 0.414-0.299 0.637-0.171s0.299 0.414 0.171 0.637l-1.399 2.423c-0.086 0.15-0.243 0.233-0.404 0.233z"
+ }
+ }]
+};
+exports.spinner3 = spinner3;
+var spinner4 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 8c0-0.19 0.011-0.378 0.032-0.563l-2.89-0.939c-0.092 0.487-0.141 0.989-0.141 1.502 0 2.3 0.971 4.374 2.526 5.833l1.786-2.458c-0.814-0.889-1.312-2.074-1.312-3.375zM13 8c0 1.301-0.497 2.486-1.312 3.375l1.786 2.458c1.555-1.459 2.526-3.533 2.526-5.833 0-0.513-0.049-1.015-0.141-1.502l-2.89 0.939c0.021 0.185 0.032 0.373 0.032 0.563zM9 3.1c1.436 0.292 2.649 1.199 3.351 2.435l2.89-0.939c-1.144-2.428-3.473-4.188-6.241-4.534v3.038zM3.649 5.535c0.702-1.236 1.914-2.143 3.351-2.435v-3.038c-2.769 0.345-5.097 2.105-6.241 4.534l2.89 0.939zM10.071 12.552c-0.631 0.288-1.332 0.448-2.071 0.448s-1.44-0.16-2.071-0.448l-1.786 2.458c1.144 0.631 2.458 0.99 3.857 0.99s2.713-0.359 3.857-0.99l-1.786-2.458z"
+ }
+ }]
+};
+exports.spinner4 = spinner4;
+var spinner5 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 4c2.209 0 4 1.791 4 4s-1.791 4-4 4-4-1.791-4-4 1.791-4 4-4zM12.773 12.773c-1.275 1.275-2.97 1.977-4.773 1.977s-3.498-0.702-4.773-1.977-1.977-2.97-1.977-4.773c0-1.803 0.702-3.498 1.977-4.773l1.061 1.061c0 0 0 0 0 0-2.047 2.047-2.047 5.378 0 7.425 0.992 0.992 2.31 1.538 3.712 1.538s2.721-0.546 3.712-1.538c2.047-2.047 2.047-5.378 0-7.425l1.061-1.061c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773z"
+ }
+ }]
+};
+exports.spinner5 = spinner5;
+var spinner6 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM12.359 8c0 0 0 0 0 0 0-0.906 0.735-1.641 1.641-1.641s1.641 0.735 1.641 1.641c0 0 0 0 0 0 0 0.906-0.735 1.641-1.641 1.641s-1.641-0.735-1.641-1.641zM10.757 12.243c0-0.821 0.665-1.486 1.486-1.486s1.486 0.665 1.486 1.486c0 0.821-0.665 1.486-1.486 1.486s-1.486-0.665-1.486-1.486zM6.654 14c0-0.743 0.603-1.346 1.346-1.346s1.346 0.603 1.346 1.346c0 0.743-0.603 1.346-1.346 1.346s-1.346-0.603-1.346-1.346zM2.538 12.243c0-0.673 0.546-1.219 1.219-1.219s1.219 0.546 1.219 1.219c0 0.673-0.546 1.219-1.219 1.219s-1.219-0.546-1.219-1.219zM0.896 8c0-0.61 0.494-1.104 1.104-1.104s1.104 0.494 1.104 1.104c0 0.61-0.494 1.104-1.104 1.104s-1.104-0.494-1.104-1.104zM2.757 3.757c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM14.054 3.757c0 1-0.811 1.811-1.812 1.811s-1.812-0.811-1.812-1.811c0-1.001 0.811-1.811 1.812-1.811s1.812 0.811 1.812 1.811z"
+ }
+ }]
+};
+exports.spinner6 = spinner6;
+var spinner7 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 14.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM0 8c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM13 8c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM1.904 3.404c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM11.096 12.596c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM1.904 12.596c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM11.096 3.404c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5z"
+ }
+ }]
+};
+exports.spinner7 = spinner7;
+var spinner8 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c-2.137 0-4.146-0.832-5.657-2.343s-2.343-3.52-2.343-5.657c0-1.513 0.425-2.986 1.228-4.261 0.781-1.239 1.885-2.24 3.193-2.895l0.672 1.341c-1.063 0.533-1.961 1.347-2.596 2.354-0.652 1.034-0.997 2.231-0.997 3.461 0 3.584 2.916 6.5 6.5 6.5s6.5-2.916 6.5-6.5c0-1.23-0.345-2.426-0.997-3.461-0.635-1.008-1.533-1.822-2.596-2.354l0.672-1.341c1.308 0.655 2.412 1.656 3.193 2.895 0.803 1.274 1.228 2.748 1.228 4.261 0 2.137-0.832 4.146-2.343 5.657s-3.52 2.343-5.657 2.343z"
+ }
+ }]
+};
+exports.spinner8 = spinner8;
+var spinner9 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.355 0-7.898 3.481-7.998 7.812 0.092-3.779 2.966-6.812 6.498-6.812 3.59 0 6.5 3.134 6.5 7 0 0.828 0.672 1.5 1.5 1.5s1.5-0.672 1.5-1.5c0-4.418-3.582-8-8-8zM8 16c4.355 0 7.898-3.481 7.998-7.812-0.092 3.779-2.966 6.812-6.498 6.812-3.59 0-6.5-3.134-6.5-7 0-0.828-0.672-1.5-1.5-1.5s-1.5 0.672-1.5 1.5c0 4.418 3.582 8 8 8z"
+ }
+ }]
+};
+exports.spinner9 = spinner9;
+var spinner10 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.001 8.025l-0 0c0 0 0 0.001 0 0.003 0.002 0.061 0.009 0.12 0.021 0.177 0.003 0.027 0.007 0.057 0.011 0.090 0.003 0.029 0.007 0.061 0.011 0.095 0.006 0.040 0.012 0.083 0.019 0.128 0.013 0.090 0.028 0.189 0.045 0.296 0.021 0.101 0.044 0.21 0.068 0.326 0.011 0.058 0.028 0.117 0.044 0.178s0.032 0.123 0.049 0.188c0.009 0.032 0.016 0.065 0.027 0.097s0.021 0.065 0.031 0.098 0.043 0.134 0.065 0.203c0.006 0.017 0.011 0.035 0.017 0.052s0.013 0.034 0.019 0.052 0.026 0.070 0.039 0.105c0.027 0.070 0.053 0.142 0.081 0.215 0.031 0.071 0.062 0.144 0.094 0.218 0.016 0.037 0.032 0.074 0.048 0.111s0.035 0.073 0.053 0.111 0.073 0.148 0.11 0.224c0.039 0.075 0.081 0.149 0.123 0.224 0.021 0.037 0.042 0.075 0.063 0.113s0.045 0.074 0.068 0.112 0.093 0.149 0.14 0.224c0.198 0.295 0.417 0.587 0.66 0.864 0.245 0.275 0.511 0.535 0.792 0.775 0.284 0.236 0.582 0.452 0.886 0.642 0.306 0.188 0.619 0.349 0.928 0.487 0.078 0.032 0.156 0.063 0.232 0.095 0.038 0.015 0.076 0.032 0.115 0.046s0.077 0.027 0.115 0.041 0.151 0.054 0.226 0.078c0.075 0.022 0.15 0.044 0.224 0.066 0.037 0.011 0.073 0.022 0.109 0.031s0.073 0.018 0.109 0.027 0.143 0.035 0.213 0.052c0.070 0.014 0.139 0.027 0.207 0.040 0.034 0.006 0.067 0.013 0.101 0.019 0.017 0.003 0.033 0.006 0.049 0.009s0.033 0.005 0.049 0.007c0.066 0.009 0.13 0.018 0.192 0.027 0.031 0.004 0.062 0.009 0.093 0.013s0.061 0.006 0.091 0.009 0.118 0.010 0.174 0.015c0.056 0.005 0.111 0.011 0.164 0.012 0.004 0 0.007 0 0.011 0 0.010 0.544 0.453 0.982 1 0.982 0.008 0 0.017-0 0.025-0.001v0c0 0 0.001-0 0.004-0 0.061-0.002 0.12-0.009 0.177-0.021 0.027-0.003 0.057-0.007 0.090-0.011 0.029-0.003 0.061-0.007 0.095-0.011 0.040-0.006 0.083-0.012 0.128-0.019 0.090-0.013 0.189-0.028 0.296-0.045 0.101-0.021 0.21-0.044 0.326-0.068 0.058-0.011 0.117-0.028 0.178-0.044s0.123-0.033 0.188-0.049c0.032-0.009 0.065-0.016 0.097-0.027s0.065-0.021 0.098-0.031 0.134-0.043 0.203-0.065c0.017-0.006 0.035-0.011 0.052-0.017s0.034-0.013 0.052-0.019 0.070-0.026 0.105-0.039c0.070-0.027 0.142-0.053 0.215-0.081 0.071-0.031 0.144-0.062 0.218-0.094 0.037-0.016 0.074-0.032 0.111-0.048s0.073-0.035 0.111-0.053 0.148-0.073 0.224-0.11c0.075-0.039 0.149-0.081 0.224-0.123 0.037-0.021 0.075-0.042 0.113-0.063s0.074-0.045 0.112-0.068 0.149-0.093 0.224-0.14c0.295-0.197 0.587-0.417 0.864-0.66 0.275-0.245 0.535-0.511 0.775-0.792 0.236-0.284 0.452-0.582 0.642-0.886 0.188-0.306 0.349-0.619 0.487-0.928 0.032-0.078 0.063-0.156 0.095-0.232 0.015-0.038 0.032-0.076 0.046-0.115s0.027-0.077 0.040-0.115 0.054-0.151 0.078-0.226c0.022-0.075 0.044-0.15 0.066-0.224 0.011-0.037 0.022-0.073 0.031-0.109s0.018-0.073 0.027-0.109 0.035-0.143 0.052-0.213c0.014-0.070 0.027-0.139 0.040-0.207 0.006-0.034 0.013-0.067 0.019-0.101 0.003-0.017 0.006-0.033 0.009-0.049s0.005-0.033 0.007-0.050c0.009-0.065 0.018-0.13 0.027-0.192 0.004-0.031 0.009-0.062 0.013-0.093s0.006-0.061 0.009-0.091 0.010-0.118 0.015-0.174c0.005-0.056 0.011-0.111 0.012-0.165 0-0.008 0.001-0.016 0.001-0.025 0.55-0.002 0.996-0.449 0.996-1 0-0.008-0-0.017-0.001-0.025h0c0 0-0-0.001-0-0.003-0.002-0.061-0.009-0.12-0.021-0.177-0.003-0.027-0.007-0.057-0.011-0.090-0.003-0.029-0.007-0.061-0.011-0.095-0.006-0.040-0.012-0.083-0.019-0.128-0.013-0.090-0.028-0.189-0.045-0.296-0.021-0.101-0.044-0.21-0.068-0.326-0.011-0.058-0.028-0.117-0.044-0.178s-0.032-0.123-0.049-0.188c-0.009-0.032-0.016-0.065-0.027-0.097s-0.021-0.065-0.031-0.098-0.043-0.134-0.065-0.203c-0.005-0.017-0.011-0.035-0.017-0.052s-0.013-0.034-0.019-0.052-0.026-0.070-0.039-0.105c-0.027-0.070-0.053-0.142-0.081-0.215-0.031-0.071-0.062-0.144-0.094-0.218-0.016-0.037-0.032-0.074-0.048-0.111s-0.035-0.073-0.053-0.111-0.073-0.148-0.11-0.224c-0.039-0.075-0.081-0.149-0.123-0.224-0.021-0.037-0.042-0.075-0.063-0.113s-0.045-0.074-0.068-0.112-0.093-0.149-0.14-0.224c-0.197-0.295-0.417-0.587-0.66-0.864-0.245-0.275-0.511-0.535-0.792-0.775-0.284-0.236-0.582-0.452-0.886-0.642-0.306-0.188-0.619-0.349-0.928-0.487-0.078-0.032-0.156-0.063-0.232-0.095-0.038-0.015-0.076-0.032-0.115-0.046s-0.077-0.027-0.115-0.040-0.151-0.054-0.226-0.078c-0.075-0.022-0.15-0.044-0.224-0.066-0.037-0.010-0.073-0.022-0.109-0.031s-0.073-0.018-0.109-0.027-0.143-0.035-0.213-0.052c-0.070-0.014-0.139-0.027-0.207-0.040-0.034-0.006-0.067-0.013-0.101-0.019-0.017-0.003-0.033-0.006-0.049-0.009s-0.033-0.005-0.049-0.007c-0.066-0.009-0.13-0.018-0.192-0.027-0.031-0.004-0.062-0.009-0.093-0.013s-0.061-0.006-0.091-0.009-0.118-0.010-0.174-0.015c-0.056-0.005-0.111-0.011-0.164-0.012-0.013-0-0.026-0.001-0.039-0.001-0.010-0.543-0.454-0.981-0.999-0.981-0.008 0-0.017 0-0.025 0.001l-0-0c0 0-0.001 0-0.003 0-0.061 0.002-0.12 0.009-0.177 0.021-0.027 0.003-0.057 0.007-0.090 0.011-0.029 0.003-0.061 0.007-0.095 0.011-0.040 0.006-0.083 0.012-0.128 0.019-0.090 0.013-0.189 0.028-0.296 0.045-0.101 0.021-0.21 0.044-0.326 0.068-0.058 0.011-0.117 0.028-0.178 0.044s-0.123 0.033-0.188 0.049c-0.032 0.009-0.065 0.016-0.097 0.027s-0.065 0.021-0.098 0.031-0.134 0.043-0.203 0.065c-0.017 0.006-0.035 0.011-0.052 0.017s-0.034 0.013-0.052 0.019-0.070 0.026-0.105 0.039c-0.070 0.027-0.142 0.053-0.215 0.081-0.071 0.031-0.144 0.062-0.218 0.094-0.037 0.016-0.074 0.032-0.111 0.048s-0.073 0.035-0.111 0.053-0.148 0.073-0.224 0.11c-0.075 0.039-0.149 0.081-0.224 0.123-0.037 0.021-0.075 0.042-0.113 0.063s-0.074 0.045-0.112 0.068-0.149 0.093-0.224 0.14c-0.295 0.198-0.587 0.417-0.864 0.66-0.275 0.245-0.535 0.511-0.775 0.792-0.236 0.284-0.452 0.582-0.642 0.886-0.188 0.306-0.349 0.619-0.487 0.928-0.032 0.078-0.063 0.156-0.095 0.232-0.015 0.038-0.032 0.076-0.046 0.115s-0.027 0.077-0.040 0.115-0.054 0.151-0.078 0.226c-0.022 0.075-0.044 0.15-0.066 0.224-0.011 0.037-0.022 0.073-0.032 0.109s-0.018 0.073-0.027 0.109-0.035 0.143-0.052 0.213c-0.014 0.070-0.027 0.139-0.040 0.207-0.006 0.034-0.013 0.067-0.019 0.101-0.003 0.017-0.006 0.033-0.009 0.049s-0.005 0.033-0.007 0.050c-0.009 0.065-0.018 0.13-0.027 0.192-0.004 0.031-0.009 0.062-0.013 0.093s-0.006 0.061-0.009 0.091-0.010 0.118-0.015 0.174c-0.005 0.056-0.011 0.111-0.012 0.165-0 0.009-0.001 0.017-0.001 0.025-0.537 0.017-0.967 0.458-0.967 0.999 0 0.008 0 0.017 0.001 0.025zM1.149 7.011c0.001-0.003 0.001-0.006 0.002-0.009 0.010-0.051 0.026-0.102 0.040-0.155s0.030-0.107 0.045-0.163c0.008-0.028 0.015-0.056 0.024-0.084s0.019-0.057 0.028-0.086 0.038-0.116 0.058-0.176c0.005-0.015 0.010-0.030 0.015-0.045s0.012-0.030 0.017-0.045 0.023-0.060 0.035-0.091 0.048-0.123 0.073-0.186c0.028-0.062 0.056-0.125 0.084-0.189 0.014-0.032 0.028-0.064 0.043-0.096s0.032-0.064 0.048-0.096 0.065-0.128 0.098-0.194c0.034-0.065 0.073-0.128 0.109-0.194 0.018-0.032 0.037-0.065 0.056-0.098s0.040-0.064 0.061-0.096c0.041-0.064 0.082-0.129 0.124-0.194 0.176-0.255 0.369-0.506 0.583-0.744 0.217-0.236 0.451-0.459 0.697-0.665 0.25-0.202 0.511-0.385 0.776-0.547 0.268-0.159 0.541-0.294 0.808-0.41 0.068-0.027 0.135-0.053 0.202-0.079 0.033-0.013 0.066-0.027 0.099-0.038s0.067-0.022 0.1-0.033 0.131-0.045 0.196-0.065c0.065-0.018 0.13-0.036 0.194-0.054 0.032-0.009 0.063-0.019 0.095-0.026s0.063-0.014 0.094-0.021 0.123-0.028 0.184-0.042c0.061-0.011 0.12-0.021 0.179-0.032 0.029-0.005 0.058-0.010 0.087-0.015 0.014-0.003 0.029-0.005 0.043-0.008s0.029-0.003 0.043-0.005c0.056-0.007 0.112-0.014 0.166-0.020 0.027-0.003 0.053-0.007 0.080-0.010s0.053-0.004 0.078-0.006 0.102-0.007 0.15-0.011c0.049-0.003 0.095-0.008 0.142-0.008 0.091-0.002 0.177-0.004 0.256-0.006 0.073 0.003 0.14 0.005 0.2 0.007 0.030 0.001 0.058 0.002 0.085 0.002 0.033 0.002 0.064 0.004 0.093 0.006 0.033 0.002 0.063 0.004 0.091 0.006 0.051 0.008 0.103 0.012 0.156 0.012 0.007 0 0.015-0 0.022-0.001 0.002 0 0.004 0 0.004 0v-0c0.487-0.012 0.887-0.372 0.962-0.84 0.008 0.002 0.017 0.004 0.025 0.006 0.051 0.010 0.102 0.026 0.155 0.040s0.107 0.030 0.163 0.045c0.028 0.008 0.056 0.015 0.084 0.024s0.057 0.019 0.086 0.028 0.116 0.038 0.176 0.058c0.015 0.005 0.030 0.010 0.045 0.015s0.030 0.012 0.045 0.017 0.060 0.023 0.091 0.035 0.123 0.048 0.186 0.073c0.062 0.028 0.125 0.056 0.189 0.084 0.032 0.014 0.064 0.028 0.096 0.043s0.064 0.032 0.096 0.048 0.128 0.065 0.194 0.098c0.065 0.034 0.129 0.073 0.194 0.109 0.032 0.018 0.065 0.037 0.098 0.056s0.064 0.040 0.096 0.061 0.129 0.082 0.194 0.124c0.255 0.176 0.506 0.369 0.744 0.583 0.236 0.217 0.459 0.451 0.665 0.697 0.202 0.25 0.385 0.511 0.547 0.776 0.159 0.268 0.294 0.541 0.41 0.808 0.027 0.068 0.053 0.135 0.079 0.202 0.013 0.033 0.027 0.066 0.038 0.099s0.022 0.067 0.033 0.1 0.045 0.131 0.065 0.196c0.018 0.065 0.036 0.13 0.054 0.194 0.009 0.032 0.019 0.063 0.026 0.095s0.014 0.063 0.021 0.094 0.028 0.123 0.042 0.184c0.011 0.061 0.021 0.12 0.032 0.179 0.005 0.029 0.010 0.058 0.015 0.087 0.003 0.014 0.005 0.029 0.008 0.043s0.003 0.029 0.005 0.043c0.007 0.056 0.014 0.112 0.020 0.166 0.003 0.027 0.007 0.053 0.010 0.080s0.004 0.053 0.006 0.078 0.007 0.102 0.011 0.15c0.003 0.049 0.008 0.095 0.008 0.142 0.002 0.091 0.004 0.177 0.006 0.256-0.003 0.073-0.005 0.14-0.007 0.2-0.001 0.030-0.002 0.058-0.002 0.085-0.002 0.033-0.004 0.064-0.006 0.093-0.002 0.033-0.004 0.063-0.006 0.091-0.008 0.051-0.012 0.103-0.012 0.156 0 0.007 0 0.015 0.001 0.022-0 0.002-0 0.004-0 0.004h0c0.012 0.481 0.363 0.877 0.823 0.959-0.001 0.005-0.002 0.009-0.003 0.014-0.010 0.051-0.025 0.102-0.040 0.155s-0.030 0.107-0.045 0.163c-0.008 0.028-0.015 0.056-0.024 0.084s-0.019 0.057-0.028 0.086-0.039 0.116-0.058 0.176c-0.005 0.015-0.010 0.030-0.015 0.045s-0.012 0.030-0.017 0.045-0.023 0.060-0.035 0.091-0.048 0.123-0.073 0.186c-0.028 0.062-0.056 0.125-0.084 0.189-0.014 0.032-0.028 0.064-0.043 0.096s-0.032 0.064-0.048 0.096-0.065 0.128-0.098 0.194c-0.034 0.065-0.073 0.129-0.109 0.194-0.018 0.032-0.037 0.065-0.056 0.098s-0.040 0.064-0.061 0.096-0.082 0.129-0.124 0.194c-0.176 0.255-0.369 0.506-0.583 0.744-0.217 0.236-0.451 0.459-0.697 0.665-0.25 0.202-0.511 0.385-0.776 0.547-0.268 0.159-0.541 0.294-0.808 0.41-0.068 0.027-0.135 0.053-0.202 0.079-0.033 0.013-0.066 0.027-0.099 0.038s-0.067 0.022-0.1 0.033-0.131 0.045-0.196 0.065c-0.065 0.018-0.13 0.036-0.194 0.054-0.032 0.009-0.063 0.019-0.095 0.026s-0.063 0.014-0.094 0.021-0.123 0.028-0.184 0.042c-0.061 0.011-0.12 0.021-0.179 0.032-0.029 0.005-0.058 0.010-0.087 0.015-0.014 0.003-0.028 0.005-0.043 0.008s-0.029 0.003-0.043 0.005c-0.056 0.007-0.112 0.014-0.166 0.020-0.027 0.003-0.053 0.007-0.080 0.010s-0.053 0.004-0.078 0.006-0.102 0.007-0.15 0.011c-0.049 0.003-0.095 0.008-0.142 0.008-0.091 0.002-0.177 0.004-0.256 0.006-0.073-0.003-0.14-0.005-0.2-0.007-0.030-0.001-0.058-0.002-0.085-0.002-0.033-0.002-0.064-0.004-0.093-0.006-0.033-0.002-0.063-0.004-0.091-0.006-0.051-0.008-0.103-0.012-0.156-0.012-0.007 0-0.015 0-0.022 0.001-0.002-0-0.003-0-0.003-0v0c-0.484 0.012-0.883 0.369-0.961 0.834-0.050-0.010-0.101-0.025-0.153-0.039s-0.107-0.030-0.163-0.045c-0.028-0.008-0.056-0.015-0.084-0.024s-0.057-0.019-0.086-0.028-0.116-0.039-0.176-0.058c-0.015-0.005-0.030-0.010-0.045-0.015s-0.030-0.012-0.045-0.017-0.060-0.023-0.091-0.035-0.123-0.048-0.186-0.073c-0.062-0.028-0.125-0.056-0.189-0.084-0.032-0.014-0.064-0.028-0.096-0.043s-0.064-0.032-0.096-0.048-0.128-0.065-0.194-0.098c-0.065-0.034-0.129-0.073-0.194-0.109-0.032-0.018-0.065-0.037-0.098-0.056s-0.064-0.040-0.096-0.061c-0.064-0.041-0.129-0.082-0.194-0.124-0.255-0.175-0.506-0.369-0.744-0.583-0.236-0.217-0.459-0.451-0.665-0.697-0.202-0.25-0.385-0.511-0.547-0.776-0.159-0.268-0.294-0.541-0.41-0.808-0.027-0.068-0.053-0.135-0.079-0.202-0.013-0.033-0.027-0.066-0.038-0.099s-0.022-0.067-0.033-0.1-0.045-0.131-0.065-0.196c-0.018-0.065-0.036-0.13-0.054-0.194-0.009-0.032-0.019-0.063-0.026-0.095s-0.014-0.063-0.021-0.094-0.028-0.123-0.042-0.184c-0.011-0.061-0.021-0.12-0.032-0.179-0.005-0.029-0.010-0.058-0.015-0.087-0.003-0.014-0.005-0.028-0.008-0.043s-0.003-0.029-0.005-0.043c-0.007-0.056-0.014-0.112-0.020-0.166-0.003-0.027-0.007-0.053-0.010-0.080s-0.004-0.053-0.006-0.078-0.007-0.101-0.011-0.15c-0.003-0.049-0.008-0.095-0.008-0.142-0.002-0.091-0.004-0.177-0.006-0.256 0.003-0.073 0.005-0.14 0.007-0.2 0.001-0.030 0.002-0.058 0.002-0.085 0.002-0.033 0.004-0.064 0.006-0.093 0.002-0.033 0.004-0.063 0.006-0.091 0.008-0.051 0.012-0.103 0.012-0.156 0-0.007-0-0.015-0.001-0.022 0-0.002 0-0.003 0-0.003h-0c-0.012-0.49-0.377-0.893-0.851-0.964z"
+ }
+ }]
+};
+exports.spinner10 = spinner10;
+var spinner11 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 6h-6l2.243-2.243c-1.133-1.133-2.64-1.757-4.243-1.757s-3.109 0.624-4.243 1.757c-1.133 1.133-1.757 2.64-1.757 4.243s0.624 3.109 1.757 4.243c1.133 1.133 2.64 1.757 4.243 1.757s3.109-0.624 4.243-1.757c0.095-0.095 0.185-0.192 0.273-0.292l1.505 1.317c-1.466 1.674-3.62 2.732-6.020 2.732-4.418 0-8-3.582-8-8s3.582-8 8-8c2.209 0 4.209 0.896 5.656 2.344l2.343-2.344v6z"
+ }
+ }]
+};
+exports.spinner11 = spinner11;
+var binoculars = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 0h6v1h-6zM9 0h6v1h-6zM14.875 5h-0.875v-4h-4v4h-4v-4h-4v4h-0.875c-0.619 0-1.125 0.506-1.125 1.125v8.75c0 0.619 0.506 1.125 1.125 1.125h4.75c0.619 0 1.125-0.506 1.125-1.125v-5.875h2v5.875c0 0.619 0.506 1.125 1.125 1.125h4.75c0.619 0 1.125-0.506 1.125-1.125v-8.75c0-0.619-0.506-1.125-1.125-1.125zM5.438 15h-3.875c-0.309 0-0.563-0.225-0.563-0.5s0.253-0.5 0.563-0.5h3.875c0.309 0 0.563 0.225 0.563 0.5s-0.253 0.5-0.563 0.5zM8.5 8h-1c-0.275 0-0.5-0.225-0.5-0.5s0.225-0.5 0.5-0.5h1c0.275 0 0.5 0.225 0.5 0.5s-0.225 0.5-0.5 0.5zM14.438 15h-3.875c-0.309 0-0.563-0.225-0.563-0.5s0.253-0.5 0.563-0.5h3.875c0.309 0 0.563 0.225 0.563 0.5s-0.253 0.5-0.563 0.5z"
+ }
+ }]
+};
+exports.binoculars = binoculars;
+var search = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4z"
+ }
+ }]
+};
+exports.search = search;
+var zoomIn = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4zM7 3h-2v2h-2v2h2v2h2v-2h2v-2h-2z"
+ }
+ }]
+};
+exports.zoomIn = zoomIn;
+var zoomOut = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4zM3 5h6v2h-6z"
+ }
+ }]
+};
+exports.zoomOut = zoomOut;
+var enlarge = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 0h-6.5l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 16v-6.5l-2.5 2.5-3-3-1.5 1.5 3 3-2.5 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 16h6.5l-2.5-2.5 3-3-1.5-1.5-3 3-2.5-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0v6.5l2.5-2.5 3 3 1.5-1.5-3-3 2.5-2.5z"
+ }
+ }]
+};
+exports.enlarge = enlarge;
+var shrink = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 7h6.5l-2.5-2.5 3-3-1.5-1.5-3 3-2.5-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 9v6.5l2.5-2.5 3 3 1.5-1.5-3-3 2.5-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9h-6.5l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 7v-6.5l-2.5 2.5-3-3-1.5 1.5 3 3-2.5 2.5z"
+ }
+ }]
+};
+exports.shrink = shrink;
+var enlarge2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 0v6.5l-2.5-2.5-3 3-1.5-1.5 3-3-2.5-2.5zM7 10.5l-3 3 2.5 2.5h-6.5v-6.5l2.5 2.5 3-3z"
+ }
+ }]
+};
+exports.enlarge2 = enlarge2;
+var shrink2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9v6.5l-2.5-2.5-3 3-1.5-1.5 3-3-2.5-2.5zM16 1.5l-3 3 2.5 2.5h-6.5v-6.5l2.5 2.5 3-3z"
+ }
+ }]
+};
+exports.shrink2 = shrink2;
+var key = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 0c-2.761 0-5 2.239-5 5 0 0.313 0.029 0.619 0.084 0.916l-6.084 6.084v3c0 0.552 0.448 1 1 1h1v-1h2v-2h2v-2h2l1.298-1.298c0.531 0.192 1.105 0.298 1.702 0.298 2.761 0 5-2.239 5-5s-2.239-5-5-5zM12.498 5.002c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z"
+ }
+ }]
+};
+exports.key = key;
+var key2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.658 4.91l-1.58-1.58c-0.387-0.387-1.021-1.021-1.409-1.409l-1.58-1.58c-0.387-0.387-1.077-0.456-1.533-0.152l-4.319 2.88c-0.456 0.304-0.628 0.954-0.383 1.444l1.101 2.203c0.034 0.067 0.073 0.139 0.115 0.213l-5.571 5.571-0.5 3.5h3v-1h2v-2h2v-2h2v-1.112c0.1 0.060 0.196 0.113 0.284 0.157l2.203 1.101c0.49 0.245 1.14 0.072 1.444-0.383l2.88-4.319c0.304-0.456 0.236-1.146-0.152-1.533zM2.354 13.354l-0.707-0.707 4.868-4.868 0.707 0.707-4.868 4.868zM14.328 6.621l-0.707 0.707c-0.194 0.194-0.513 0.194-0.707 0l-4.243-4.243c-0.194-0.194-0.194-0.513 0-0.707l0.707-0.707c0.194-0.194 0.513-0.194 0.707 0l4.243 4.243c0.194 0.194 0.194 0.513 0 0.707z"
+ }
+ }]
+};
+exports.key2 = key2;
+var lock = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.25 7h-0.25v-3c0-1.654-1.346-3-3-3h-2c-1.654 0-3 1.346-3 3v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v7.5c0 0.412 0.338 0.75 0.75 0.75h8.5c0.412 0 0.75-0.338 0.75-0.75v-7.5c0-0.412-0.338-0.75-0.75-0.75zM3 4c0-0.551 0.449-1 1-1h2c0.551 0 1 0.449 1 1v3h-4v-3z"
+ }
+ }]
+};
+exports.lock = lock;
+var unlocked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 1c1.654 0 3 1.346 3 3v3h-2v-3c0-0.551-0.449-1-1-1h-2c-0.551 0-1 0.449-1 1v3h0.25c0.412 0 0.75 0.338 0.75 0.75v7.5c0 0.412-0.338 0.75-0.75 0.75h-8.5c-0.412 0-0.75-0.338-0.75-0.75v-7.5c0-0.412 0.338-0.75 0.75-0.75h6.25v-3c0-1.654 1.346-3 3-3h2z"
+ }
+ }]
+};
+exports.unlocked = unlocked;
+var wrench = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.671 12.779l-7.196-6.168c0.335-0.63 0.525-1.348 0.525-2.111 0-2.485-2.015-4.5-4.5-4.5-0.455 0-0.893 0.068-1.307 0.193l2.6 2.6c0.389 0.389 0.389 1.025 0 1.414l-1.586 1.586c-0.389 0.389-1.025 0.389-1.414 0l-2.6-2.6c-0.125 0.414-0.193 0.852-0.193 1.307 0 2.485 2.015 4.5 4.5 4.5 0.763 0 1.482-0.19 2.111-0.525l6.168 7.196c0.358 0.418 0.969 0.441 1.358 0.052l1.586-1.586c0.389-0.389 0.365-1-0.052-1.358z"
+ }
+ }]
+};
+exports.wrench = wrench;
+var equalizer = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 2v-0.25c0-0.413-0.338-0.75-0.75-0.75h-2.5c-0.413 0-0.75 0.337-0.75 0.75v0.25h-3v2h3v0.25c0 0.412 0.337 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h9v-2h-9zM4 4v-2h2v2h-2zM13 6.75c0-0.412-0.338-0.75-0.75-0.75h-2.5c-0.412 0-0.75 0.338-0.75 0.75v0.25h-9v2h9v0.25c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h3v-2h-3v-0.25zM10 9v-2h2v2h-2zM7 11.75c0-0.412-0.338-0.75-0.75-0.75h-2.5c-0.413 0-0.75 0.338-0.75 0.75v0.25h-3v2h3v0.25c0 0.412 0.337 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-0.25h9v-2h-9v-0.25zM4 14v-2h2v2h-2z"
+ }
+ }]
+};
+exports.equalizer = equalizer;
+var equalizer2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 7h0.25c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-0.25v-3h-2v3h-0.25c-0.412 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v9h2v-9zM12 4h2v2h-2v-2zM9.25 13c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-0.25v-9h-2v9h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v3h2v-3h0.25zM7 10h2v2h-2v-2zM4.25 7c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-0.25v-3h-2v3h-0.25c-0.413 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.337 0.75 0.75 0.75h0.25v9h2v-9h0.25zM2 4h2v2h-2v-2z"
+ }
+ }]
+};
+exports.equalizer2 = equalizer2;
+var cog = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.59 9.535c-0.839-1.454-0.335-3.317 1.127-4.164l-1.572-2.723c-0.449 0.263-0.972 0.414-1.529 0.414-1.68 0-3.042-1.371-3.042-3.062h-3.145c0.004 0.522-0.126 1.051-0.406 1.535-0.839 1.454-2.706 1.948-4.17 1.106l-1.572 2.723c0.453 0.257 0.845 0.634 1.123 1.117 0.838 1.452 0.336 3.311-1.12 4.16l1.572 2.723c0.448-0.261 0.967-0.41 1.522-0.41 1.675 0 3.033 1.362 3.042 3.046h3.145c-0.001-0.517 0.129-1.040 0.406-1.519 0.838-1.452 2.7-1.947 4.163-1.11l1.572-2.723c-0.45-0.257-0.839-0.633-1.116-1.113zM8 11.24c-1.789 0-3.24-1.45-3.24-3.24s1.45-3.24 3.24-3.24c1.789 0 3.24 1.45 3.24 3.24s-1.45 3.24-3.24 3.24z"
+ }
+ }]
+};
+exports.cog = cog;
+var cogs = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.683 11.282l0.645-0.903-0.707-0.707-0.903 0.645c-0.168-0.094-0.347-0.168-0.535-0.222l-0.183-1.095h-1l-0.183 1.095c-0.188 0.053-0.368 0.128-0.535 0.222l-0.903-0.645-0.707 0.707 0.645 0.903c-0.094 0.168-0.168 0.347-0.222 0.535l-1.095 0.183v1l1.095 0.183c0.053 0.188 0.128 0.368 0.222 0.535l-0.645 0.903 0.707 0.707 0.903-0.645c0.168 0.094 0.347 0.168 0.535 0.222l0.183 1.095h1l0.183-1.095c0.188-0.053 0.368-0.128 0.535-0.222l0.903 0.645 0.707-0.707-0.645-0.903c0.094-0.168 0.168-0.347 0.222-0.535l1.095-0.182v-1l-1.095-0.183c-0.053-0.188-0.128-0.368-0.222-0.535zM3.5 13.5c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM16 6v-1l-1.053-0.191c-0.019-0.126-0.044-0.25-0.074-0.372l0.899-0.58-0.383-0.924-1.046 0.226c-0.066-0.108-0.136-0.213-0.211-0.315l0.609-0.88-0.707-0.707-0.88 0.609c-0.102-0.074-0.207-0.145-0.315-0.211l0.226-1.046-0.924-0.383-0.58 0.899c-0.122-0.030-0.246-0.054-0.372-0.074l-0.191-1.053h-1l-0.191 1.053c-0.126 0.019-0.25 0.044-0.372 0.074l-0.58-0.899-0.924 0.383 0.226 1.046c-0.108 0.066-0.213 0.136-0.315 0.211l-0.88-0.609-0.707 0.707 0.609 0.88c-0.074 0.102-0.145 0.207-0.211 0.315l-1.046-0.226-0.383 0.924 0.899 0.58c-0.030 0.122-0.054 0.246-0.074 0.372l-1.053 0.191v1l1.053 0.191c0.019 0.126 0.044 0.25 0.074 0.372l-0.899 0.58 0.383 0.924 1.046-0.226c0.066 0.108 0.136 0.213 0.211 0.315l-0.609 0.88 0.707 0.707 0.88-0.609c0.102 0.074 0.207 0.145 0.315 0.211l-0.226 1.046 0.924 0.383 0.58-0.899c0.122 0.030 0.246 0.054 0.372 0.074l0.191 1.053h1l0.191-1.053c0.126-0.019 0.25-0.044 0.372-0.074l0.58 0.899 0.924-0.383-0.226-1.046c0.108-0.066 0.213-0.136 0.315-0.211l0.88 0.609 0.707-0.707-0.609-0.88c0.074-0.102 0.145-0.207 0.211-0.315l1.046 0.226 0.383-0.924-0.899-0.58c0.030-0.122 0.054-0.246 0.074-0.372l1.053-0.191zM10.5 7.675c-1.201 0-2.175-0.974-2.175-2.175s0.974-2.175 2.175-2.175 2.175 0.974 2.175 2.175c0 1.201-0.974 2.175-2.175 2.175z"
+ }
+ }]
+};
+exports.cogs = cogs;
+var hammer = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.781 12.953l-4.712-4.712c-0.292-0.292-0.769-0.292-1.061 0l-0.354 0.354-2.875-2.875 4.72-4.72h-5l-2.22 2.22-0.22-0.22h-1.061v1.061l0.22 0.22-3.22 3.22 2.5 2.5 3.22-3.22 2.875 2.875-0.354 0.354c-0.292 0.292-0.292 0.769 0 1.061l4.712 4.712c0.292 0.292 0.769 0.292 1.061 0l1.768-1.768c0.292-0.292 0.292-0.769 0-1.061z"
+ }
+ }]
+};
+exports.hammer = hammer;
+var magicWand = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 3l-2-2h-1v1l2 2zM5 0h1v2h-1zM9 5h2v1h-2zM10 2v-1h-1l-2 2 1 1zM0 5h2v1h-2zM5 9h1v2h-1zM1 9v1h1l2-2-1-1zM15.781 13.781l-9.939-9.939c-0.292-0.292-0.769-0.292-1.061 0l-0.939 0.939c-0.292 0.292-0.292 0.769 0 1.061l9.939 9.939c0.292 0.292 0.769 0.292 1.061 0l0.939-0.939c0.292-0.292 0.292-0.769 0-1.061zM7.5 8.5l-3-3 1-1 3 3-1 1z"
+ }
+ }]
+};
+exports.magicWand = magicWand;
+var aidKit = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 4h-3v-2c0-0.55-0.45-1-1-1h-4c-0.55 0-1 0.45-1 1v2h-3c-1.1 0-2 0.9-2 2v8c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-8c0-1.1-0.9-2-2-2zM6 2h4v2h-4v-2zM12 11h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z"
+ }
+ }]
+};
+exports.aidKit = aidKit;
+var bug = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9v-1h-3.020c-0.092-1.136-0.497-2.172-1.12-3.004h2.53l1.095-4.379-0.97-0.243-0.905 3.621h-2.729c-0.014-0.011-0.028-0.021-0.042-0.032 0.105-0.305 0.162-0.632 0.162-0.972 0-1.653-1.343-2.992-3-2.992s-3 1.34-3 2.992c0 0.34 0.057 0.667 0.162 0.972-0.014 0.011-0.028 0.021-0.042 0.032h-2.729l-0.905-3.621-0.97 0.243 1.095 4.379h2.53c-0.623 0.832-1.028 1.868-1.12 3.004h-3.020v1h3.021c0.059 0.713 0.242 1.388 0.526 1.996h-1.937l-1.095 4.379 0.97 0.243 0.905-3.621h1.756c0.917 1.219 2.303 1.996 3.854 1.996s2.937-0.777 3.854-1.996h1.756l0.905 3.621 0.97-0.243-1.095-4.379h-1.937c0.283-0.608 0.466-1.283 0.526-1.996h3.021z"
+ }
+ }]
+};
+exports.bug = bug;
+var pieChart = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9v-7c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7c0-1.126-0.266-2.189-0.738-3.131l-6.262 3.131zM14.262 3.869c-1.149-2.294-3.521-3.869-6.262-3.869v7l6.262-3.131z"
+ }
+ }]
+};
+exports.pieChart = pieChart;
+var statsDots = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 14h14v2h-16v-16h2zM4.5 13c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5c0.044 0 0.088 0.002 0.131 0.006l1.612-2.687c-0.154-0.235-0.243-0.517-0.243-0.819 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.302-0.090 0.583-0.243 0.819l1.612 2.687c0.043-0.004 0.087-0.006 0.131-0.006 0.033 0 0.066 0.001 0.099 0.004l2.662-4.658c-0.165-0.241-0.261-0.532-0.261-0.845 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5-0.033 0-0.066-0.001-0.099-0.004l-2.662 4.658c0.165 0.241 0.261 0.532 0.261 0.845 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.302 0.090-0.583 0.243-0.819l-1.612-2.687c-0.043 0.004-0.087 0.006-0.131 0.006s-0.088-0.002-0.131-0.006l-1.612 2.687c0.154 0.235 0.243 0.517 0.243 0.819 0 0.828-0.672 1.5-1.5 1.5z"
+ }
+ }]
+};
+exports.statsDots = statsDots;
+var statsBars = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 13h16v2h-16zM2 9h2v3h-2zM5 5h2v7h-2zM8 8h2v4h-2zM11 2h2v10h-2z"
+ }
+ }]
+};
+exports.statsBars = statsBars;
+var statsBars2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 6h-3c-0.275 0-0.5 0.225-0.5 0.5v9c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-9c0-0.275-0.225-0.5-0.5-0.5zM4.5 15h-3v-4h3v4zM9.5 4h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM9.5 15h-3v-5h3v5zM14.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v13c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-13c0-0.275-0.225-0.5-0.5-0.5zM14.5 15h-3v-6h3v6z"
+ }
+ }]
+};
+exports.statsBars2 = statsBars2;
+var trophy = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 3v-2h-10v2h-3v2c0 1.657 1.343 3 3 3 0.314 0 0.616-0.048 0.9-0.138 0.721 1.031 1.822 1.778 3.1 2.037v3.1h-1c-1.105 0-2 0.895-2 2h8c0-1.105-0.895-2-2-2h-1v-3.1c1.278-0.259 2.378-1.006 3.1-2.037 0.284 0.089 0.587 0.138 0.9 0.138 1.657 0 3-1.343 3-3v-2h-3zM3 6.813c-0.999 0-1.813-0.813-1.813-1.813v-1h1.813v1c0 0.628 0.116 1.229 0.327 1.782-0.106 0.019-0.216 0.030-0.327 0.030zM14.813 5c0 0.999-0.813 1.813-1.813 1.813-0.112 0-0.221-0.011-0.327-0.030 0.211-0.554 0.327-1.154 0.327-1.782v-1h1.813v1z"
+ }
+ }]
+};
+exports.trophy = trophy;
+var gift = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.055 5c0.283-0.201 0.555-0.425 0.804-0.674 0.522-0.522 0.871-1.164 0.983-1.808 0.123-0.706-0.057-1.362-0.494-1.798-0.348-0.348-0.82-0.533-1.365-0.533-0.775 0-1.593 0.372-2.242 1.021-1.039 1.039-1.644 2.472-1.97 3.496-0.241-1.028-0.722-2.416-1.657-3.351-0.501-0.501-1.142-0.759-1.748-0.759-0.495 0-0.965 0.172-1.317 0.523-0.781 0.781-0.675 2.153 0.236 3.064 0.325 0.325 0.705 0.595 1.105 0.819h-3.391v4h1v7h12v-7h1v-4h-2.945zM10.536 2.003c0.433-0.433 0.974-0.692 1.446-0.692 0.167 0 0.402 0.035 0.57 0.203 0.407 0.407 0.178 1.349-0.489 2.016-0.687 0.687-1.61 1.159-2.413 1.47h-0.792c0.29-0.899 0.813-2.132 1.678-2.997zM3.655 2.514c-0.011-0.143-0.001-0.41 0.191-0.601 0.16-0.16 0.372-0.194 0.521-0.194v0c0.332 0 0.679 0.157 0.952 0.429 0.529 0.529 0.965 1.371 1.26 2.436 0.008 0.029 0.016 0.057 0.023 0.086-0.028-0.008-0.057-0.015-0.086-0.023-1.064-0.295-1.906-0.731-2.436-1.26-0.247-0.247-0.403-0.565-0.426-0.872zM7 15h-4v-6.5h4v6.5zM7 8h-5v-2h5v2zM13 15h-4v-6.5h4v6.5zM14 8h-5v-2h5v2z"
+ }
+ }]
+};
+exports.gift = gift;
+var glass = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.153 0.263c-0.087-0.162-0.256-0.263-0.44-0.263h-7.425c-0.184 0-0.353 0.101-0.44 0.263-0.554 1.032-0.847 2.237-0.847 3.487 0 1.647 0.506 3.2 1.424 4.374 0.71 0.907 1.601 1.508 2.576 1.753v5.123h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-5.123c0.975-0.244 1.866-0.846 2.576-1.753 0.918-1.174 1.424-2.727 1.424-4.374 0-1.249-0.293-2.455-0.847-3.487zM4.595 1h6.809c0.39 0.827 0.595 1.771 0.595 2.75 0 0.084-0.002 0.167-0.005 0.25h-7.991c-0.003-0.083-0.005-0.166-0.005-0.25-0-0.979 0.205-1.923 0.595-2.75z"
+ }
+ }]
+};
+exports.glass = glass;
+var glass2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.893 2.809c0.118-0.151 0.14-0.355 0.057-0.527s-0.258-0.281-0.45-0.281h-11c-0.191 0-0.366 0.109-0.45 0.281s-0.062 0.377 0.057 0.527l4.893 6.228v5.963h-1.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-1.5v-5.963l4.893-6.228zM12.471 3l-1.571 2h-5.8l-1.571-2h8.943z"
+ }
+ }]
+};
+exports.glass2 = glass2;
+var mug = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 5h-3v-1.5c0-1.381-2.686-2.5-6-2.5s-6 1.119-6 2.5v10c0 1.381 2.686 2.5 6 2.5s6-1.119 6-2.5v-1.5h3c0.552 0 1-0.448 1-1v-5c0-0.552-0.448-1-1-1zM2.751 4.037c-0.578-0.19-0.928-0.394-1.116-0.537 0.188-0.143 0.538-0.347 1.116-0.537 0.905-0.298 2.059-0.463 3.249-0.463s2.344 0.164 3.249 0.463c0.578 0.19 0.928 0.394 1.116 0.537-0.188 0.143-0.538 0.347-1.116 0.537-0.905 0.298-2.059 0.463-3.249 0.463s-2.344-0.164-3.249-0.463zM14 10h-2v-3h2v3z"
+ }
+ }]
+};
+exports.mug = mug;
+var spoonKnife = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.5 0c-1.657 0-3 1.567-3 3.5 0 1.655 0.985 3.042 2.308 3.406l-0.497 8.096c-0.034 0.549 0.389 0.998 0.939 0.998h0.5c0.55 0 0.972-0.449 0.939-0.998l-0.497-8.096c1.323-0.365 2.308-1.751 2.308-3.406 0-1.933-1.343-3.5-3-3.5zM13.583 0l-0.833 5h-0.625l-0.417-5h-0.417l-0.417 5h-0.625l-0.833-5h-0.417v6.5c0 0.276 0.224 0.5 0.5 0.5h1.302l-0.491 8.002c-0.034 0.549 0.389 0.998 0.939 0.998h0.5c0.55 0 0.972-0.449 0.939-0.998l-0.491-8.002h1.302c0.276 0 0.5-0.224 0.5-0.5v-6.5h-0.417z"
+ }
+ }]
+};
+exports.spoonKnife = spoonKnife;
+var leaf = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.802 2.102c-1.73-1.311-4.393-2.094-7.124-2.094-3.377 0-6.129 1.179-7.549 3.235-0.667 0.965-1.036 2.109-1.097 3.398-0.054 1.148 0.139 2.418 0.573 3.784 1.482-4.444 5.622-7.923 10.395-7.923 0 0-4.466 1.175-7.274 4.816-0.002 0.002-0.039 0.048-0.103 0.136-0.564 0.754-1.055 1.612-1.423 2.583-0.623 1.482-1.2 3.515-1.2 5.965h2c0 0-0.304-1.91 0.224-4.106 0.873 0.118 1.654 0.177 2.357 0.177 1.839 0 3.146-0.398 4.115-1.252 0.868-0.765 1.347-1.794 1.854-2.882 0.774-1.663 1.651-3.547 4.198-5.002 0.146-0.083 0.24-0.234 0.251-0.402s-0.063-0.329-0.197-0.431z"
+ }
+ }]
+};
+exports.leaf = leaf;
+var rocket = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 1l-5 5h-3l-3 4c0 0 3.178-0.885 5.032-0.47l-5.032 6.47 6.592-5.127c0.919 2.104-0.592 5.127-0.592 5.127l4-3v-3l5-5 1-5-5 1z"
+ }
+ }]
+};
+exports.rocket = rocket;
+var meter = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1c4.418 0 8 3.582 8 8 0 3.012-1.665 5.635-4.125 7h-7.75c-2.46-1.365-4.125-3.988-4.125-7 0-4.418 3.582-8 8-8zM12.53 13.53c1.21-1.21 1.876-2.819 1.876-4.53h-1.406v-1h1.329c-0.11-0.703-0.334-1.377-0.665-2h-1.664v-1h1.004c-0.147-0.184-0.306-0.361-0.475-0.53-0.722-0.722-1.587-1.251-2.53-1.559v1.089h-1v-1.329c-0.328-0.051-0.662-0.078-1-0.078s-0.672 0.026-1 0.078v1.329h-1v-1.089c-0.943 0.309-1.808 0.837-2.53 1.559-0.169 0.169-0.327 0.346-0.475 0.53h1.004v1h-1.664c-0.331 0.623-0.555 1.297-0.665 2h1.329v1h-1.406c0 1.711 0.666 3.32 1.876 4.53 0.167 0.167 0.343 0.324 0.524 0.47h3.006l0.571-8h0.857l0.571 8h3.006c0.182-0.146 0.357-0.303 0.524-0.47z"
+ }
+ }]
+};
+exports.meter = meter;
+var meter2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4.732 13.034c0.174-0.479 0.268-0.995 0.268-1.534 0-1.943-1.231-3.598-2.956-4.228 0.16-1.327 0.754-2.555 1.714-3.514 1.133-1.133 2.64-1.757 4.243-1.757s3.109 0.624 4.243 1.757c0.96 0.96 1.554 2.188 1.714 3.514-1.725 0.63-2.956 2.285-2.956 4.228 0 0.539 0.095 1.055 0.268 1.534-0.964 0.629-2.090 0.966-3.268 0.966s-2.304-0.338-3.268-0.966zM8.621 10.016c0.217 0.055 0.379 0.251 0.379 0.484v1c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1c0-0.233 0.162-0.43 0.379-0.484l0.371-7.016h0.5l0.371 7.016z"
+ }
+ }]
+};
+exports.meter2 = meter2;
+var hammer2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.784 14.309l-8.572-7.804 0.399-0.4c0.326-0.327 0.503-0.75 0.53-1.181 0.016-0.007 0.031-0.014 0.046-0.023l1.609-1.006c0.218-0.256 0.202-0.66-0.036-0.898l-2.799-2.806c-0.237-0.238-0.641-0.254-0.896-0.036l-1.004 1.614c-0.008 0.015-0.015 0.031-0.022 0.046-0.43 0.027-0.852 0.204-1.178 0.531l-1.522 1.527c-0.327 0.327-0.503 0.75-0.53 1.181-0.016 0.007-0.031 0.014-0.046 0.023l-1.609 1.006c-0.218 0.256-0.202 0.66 0.036 0.898l2.799 2.806c0.237 0.238 0.641 0.254 0.896 0.036l1.004-1.614c0.008-0.015 0.015-0.031 0.023-0.046 0.43-0.027 0.852-0.204 1.178-0.531l0.442-0.443 7.783 8.596c0.226 0.249 0.573 0.289 0.773 0.089l0.787-0.789c0.199-0.2 0.159-0.549-0.089-0.775z"
+ }
+ }]
+};
+exports.hammer2 = hammer2;
+var fire = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.016 16c-1.066-2.219-0.498-3.49 0.321-4.688 0.897-1.312 1.129-2.61 1.129-2.61s0.706 0.917 0.423 2.352c1.246-1.387 1.482-3.598 1.293-4.445 2.817 1.969 4.021 6.232 2.399 9.392 8.631-4.883 2.147-12.19 1.018-13.013 0.376 0.823 0.448 2.216-0.313 2.893-1.287-4.879-4.468-5.879-4.468-5.879 0.376 2.516-1.364 5.268-3.042 7.324-0.059-1.003-0.122-1.696-0.649-2.656-0.118 1.823-1.511 3.309-1.889 5.135-0.511 2.473 0.383 4.284 3.777 6.197z"
+ }
+ }]
+};
+exports.fire = fire;
+var lab = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.942 12.57l-4.942-8.235v-3.335h0.5c0.275 0 0.5-0.225 0.5-0.5s-0.225-0.5-0.5-0.5h-5c-0.275 0-0.5 0.225-0.5 0.5s0.225 0.5 0.5 0.5h0.5v3.335l-4.942 8.235c-1.132 1.886-0.258 3.43 1.942 3.43h10c2.2 0 3.074-1.543 1.942-3.43zM3.766 10l3.234-5.39v-3.61h2v3.61l3.234 5.39h-8.468z"
+ }
+ }]
+};
+exports.lab = lab;
+var magnet = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 0h-4l1 9c0 1.657-1.343 3-3 3s-3-1.343-3-3l1-9h-4l-1 9c0 3.866 3.134 7 7 7s7-3.134 7-7l-1-9zM12.154 13.154c-1.11 1.11-2.585 1.721-4.154 1.721s-3.045-0.611-4.154-1.721c-1.096-1.096-1.705-2.548-1.72-4.095l0.564-5.075h1.736l-0.55 4.953v0.062c0 1.102 0.429 2.138 1.208 2.917s1.815 1.208 2.917 1.208 2.138-0.429 2.917-1.208c0.779-0.779 1.208-1.815 1.208-2.917v-0.062l-0.007-0.062-0.543-4.891h1.736l0.564 5.075c-0.015 1.547-0.625 2.999-1.72 4.095z"
+ }
+ }]
+};
+exports.magnet = magnet;
+var bin = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 5v10c0 0.55 0.45 1 1 1h9c0.55 0 1-0.45 1-1v-10h-11zM5 14h-1v-7h1v7zM7 14h-1v-7h1v7zM9 14h-1v-7h1v7zM11 14h-1v-7h1v7z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.25 2h-3.25v-1.25c0-0.412-0.338-0.75-0.75-0.75h-3.5c-0.412 0-0.75 0.338-0.75 0.75v1.25h-3.25c-0.413 0-0.75 0.337-0.75 0.75v1.25h13v-1.25c0-0.413-0.338-0.75-0.75-0.75zM9 2h-3v-0.987h3v0.987z"
+ }
+ }]
+};
+exports.bin = bin;
+var bin2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 16h10l1-11h-12zM10 2v-2h-4v2h-5v3l1-1h12l1 1v-3h-5zM9 2h-2v-1h2v1z"
+ }
+ }]
+};
+exports.bin2 = bin2;
+var briefcase = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 4h-4v-1c0-0.55-0.45-1-1-1h-4c-0.55 0-1 0.45-1 1v1h-4c-0.55 0-1 0.45-1 1v9c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-9c0-0.55-0.45-1-1-1zM6 3.002c0.001-0.001 0.001-0.001 0.002-0.002h3.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998h-4v-0.998zM15 8h-2v1.5c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1.5h-6v1.5c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1.5h-2v-1h14v1z"
+ }
+ }]
+};
+exports.briefcase = briefcase;
+var airplane = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 9.999l-2.857-2.857 6.857-5.143-2-2-8.571 3.429-2.698-2.699c-0.778-0.778-1.864-0.964-2.414-0.414s-0.364 1.636 0.414 2.414l2.698 2.698-3.429 8.572 2 2 5.144-6.857 2.857 2.857v4h2l1-3 3-1v-2l-4 0z"
+ }
+ }]
+};
+exports.airplane = airplane;
+var truck = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9l-2-4h-3v-2c0-0.55-0.45-1-1-1h-9c-0.55 0-1 0.45-1 1v8l1 1h1.268c-0.17 0.294-0.268 0.636-0.268 1 0 1.105 0.895 2 2 2s2-0.895 2-2c0-0.364-0.098-0.706-0.268-1h5.536c-0.17 0.294-0.268 0.636-0.268 1 0 1.105 0.895 2 2 2s2-0.895 2-2c0-0.364-0.098-0.706-0.268-1h1.268v-3zM11 9v-3h2.073l1.5 3h-3.573z"
+ }
+ }]
+};
+exports.truck = truck;
+var road = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 16h5l-4-16h-3l0.5 4h-3l0.5-4h-3l-4 16h5l0.5-4h5l0.5 4zM5.75 10l0.5-4h3.5l0.5 4h-4.5z"
+ }
+ }]
+};
+exports.road = road;
+var accessibility = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 5l5.15-2.221-0.371-0.929-6.279 2.15h-1l-6.279-2.15-0.371 0.929 5.15 2.221v4l-2.051 6.634 0.935 0.355 2.902-6.489h0.429l2.902 6.489 0.935-0.355-2.051-6.634z"
+ }
+ }]
+};
+exports.accessibility = accessibility;
+var target = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 7h-1.577c-0.432-2.785-2.638-4.991-5.423-5.423v-1.577h-2v1.577c-2.785 0.432-4.991 2.638-5.423 5.423h-1.577v2h1.577c0.432 2.785 2.638 4.991 5.423 5.423v1.577h2v-1.577c2.785-0.432 4.991-2.638 5.423-5.423h1.577v-2zM12.388 7h-1.559c-0.301-0.852-0.977-1.528-1.829-1.829v-1.559c1.68 0.383 3.005 1.708 3.388 3.388zM8 9c-0.552 0-1-0.448-1-1s0.448-1 1-1c0.552 0 1 0.448 1 1s-0.448 1-1 1zM7 3.612v1.559c-0.852 0.301-1.528 0.977-1.829 1.829h-1.559c0.383-1.68 1.708-3.005 3.388-3.388zM3.612 9h1.559c0.301 0.852 0.977 1.528 1.829 1.829v1.559c-1.68-0.383-3.005-1.708-3.388-3.388zM9 12.388v-1.559c0.852-0.301 1.528-0.977 1.829-1.829h1.559c-0.383 1.68-1.708 3.005-3.388 3.388z"
+ }
+ }]
+};
+exports.target = target;
+var shield = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 0l-7 2-7-2c0 0-0.070 0.808 0 2l7 2.189 7-2.189c0.070-1.192 0-2 0-2zM1.128 3.049c0.375 3.917 1.773 10.504 6.872 12.951 5.099-2.448 6.497-9.034 6.872-12.951l-6.872 2.584-6.872-2.584z"
+ }
+ }]
+};
+exports.shield = shield;
+var power = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 0l-6 8h6l-4 8 14-10h-8l6-6z"
+ }
+ }]
+};
+exports.power = power;
+var switchIcon = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 2.29v2.124c0.566 0.247 1.086 0.6 1.536 1.050 0.944 0.944 1.464 2.2 1.464 3.536s-0.52 2.591-1.464 3.536c-0.944 0.944-2.2 1.464-3.536 1.464s-2.591-0.52-3.536-1.464c-0.944-0.944-1.464-2.2-1.464-3.536s0.52-2.591 1.464-3.536c0.45-0.45 0.97-0.803 1.536-1.050v-2.124c-2.891 0.861-5 3.539-5 6.71 0 3.866 3.134 7 7 7s7-3.134 7-7c0-3.171-2.109-5.849-5-6.71zM7 0h2v8h-2z"
+ }
+ }]
+};
+exports.switchIcon = switchIcon;
+var powerCord = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 4.414l-1.414-1.414-2.793 2.793-1.586-1.586 2.793-2.793-1.414-1.414-2.793 2.793-1.793-1.793-1.354 1.353 8 8 1.354-1.353-1.793-1.793 2.793-2.793z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.407 10.528l-6.935-6.935c-1.497 1.795-3.196 4.57-2.022 6.957l-2.066 2.066c-0.486 0.486-0.486 1.282 0 1.768l0.232 0.232c0.486 0.486 1.282 0.486 1.768 0l2.066-2.066c2.387 1.174 5.161-0.524 6.957-2.022z"
+ }
+ }]
+};
+exports.powerCord = powerCord;
+var clipboard = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 2h-4.5c0-1.105-0.895-2-2-2s-2 0.895-2 2h-4.5c-0.276 0-0.5 0.224-0.5 0.5v13c0 0.276 0.224 0.5 0.5 0.5h13c0.276 0 0.5-0.224 0.5-0.5v-13c0-0.276-0.224-0.5-0.5-0.5zM8 1c0.552 0 1 0.448 1 1s-0.448 1-1 1c-0.552 0-1-0.448-1-1s0.448-1 1-1zM14 15h-12v-12h2v1.5c0 0.276 0.224 0.5 0.5 0.5h7c0.276 0 0.5-0.224 0.5-0.5v-1.5h2v12z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 13.414l-3.207-3.707 0.914-0.914 2.293 1.793 4.293-3.793 0.914 0.914z"
+ }
+ }]
+};
+exports.clipboard = clipboard;
+var listNumbered = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 13h10v2h-10zM6 7h10v2h-10zM6 1h10v2h-10zM3 0v4h-1v-3h-1v-1zM2 8.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM4 11v5h-3v-1h2v-1h-2v-1h2v-1h-2v-1z"
+ }
+ }]
+};
+exports.listNumbered = listNumbered;
+var list = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0h4v4h-4zM6 1h10v2h-10zM0 6h4v4h-4zM6 7h10v2h-10zM0 12h4v4h-4zM6 13h10v2h-10z"
+ }
+ }]
+};
+exports.list = list;
+var list2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 1h10v2h-10v-2zM6 7h10v2h-10v-2zM6 13h10v2h-10v-2zM0 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM0 8c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM0 14c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2z"
+ }
+ }]
+};
+exports.list2 = list2;
+var tree = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.25 12h-0.25v-3.25c0-0.965-0.785-1.75-1.75-1.75h-4.25v-2h0.25c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-2.5c-0.412 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v2h-4.25c-0.965 0-1.75 0.785-1.75 1.75v3.25h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.413 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.337-0.75-0.75-0.75h-0.25v-3h4v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-0.25v-3h4v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75zM3 15h-2v-2h2v2zM9 15h-2v-2h2v2zM7 4v-2h2v2h-2zM15 15h-2v-2h2v2z"
+ }
+ }]
+};
+exports.tree = tree;
+var menu = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 3h14v3h-14zM1 7h14v3h-14zM1 11h14v3h-14z"
+ }
+ }]
+};
+exports.menu = menu;
+var menu2 = {
+ "viewBox": "0 0 22 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.5 9l3 3 3-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M21.5 8l-3-3-3 3z"
+ }
+ }]
+};
+exports.menu2 = menu2;
+var menu3 = {
+ "viewBox": "0 0 22 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.5 7l3 3 3-3z"
+ }
+ }]
+};
+exports.menu3 = menu3;
+var menu4 = {
+ "viewBox": "0 0 22 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.5 10l3-3 3 3z"
+ }
+ }]
+};
+exports.menu4 = menu4;
+var cloud = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 10.274c0-1.283-0.886-2.358-2.078-2.648-0.051-2.011-1.695-3.626-3.717-3.626-1.184 0-2.239 0.555-2.92 1.418-0.382-0.494-0.98-0.812-1.652-0.812-1.153 0-2.088 0.936-2.088 2.089 0 0.101 0.007 0.199 0.021 0.296-0.175-0.032-0.356-0.049-0.54-0.049-1.672-0-3.027 1.356-3.027 3.029s1.355 3.029 3.027 3.029l10.254-0c1.502-0.003 2.719-1.222 2.719-2.726z"
+ }
+ }]
+};
+exports.cloud = cloud;
+var cloudDownload = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.922 5.626c-0.051-2.011-1.695-3.626-3.717-3.626-1.184 0-2.239 0.555-2.92 1.418-0.382-0.494-0.98-0.812-1.652-0.812-1.153 0-2.088 0.936-2.088 2.089 0 0.101 0.007 0.199 0.021 0.296-0.175-0.032-0.356-0.049-0.54-0.049-1.672-0-3.027 1.356-3.027 3.029s1.355 3.029 3.027 3.029h1.434l3.539 3.664 3.539-3.664 1.742-0c1.502-0.003 2.719-1.222 2.719-2.726 0-1.283-0.886-2.358-2.078-2.648zM8 13l-3-3h2v-3h2v3h2l-3 3z"
+ }
+ }]
+};
+exports.cloudDownload = cloudDownload;
+var cloudUpload = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.942 6.039c0.038-0.174 0.058-0.354 0.058-0.539 0-1.381-1.119-2.5-2.5-2.5-0.222 0-0.438 0.029-0.643 0.084-0.387-1.209-1.52-2.084-2.857-2.084-1.365 0-2.516 0.911-2.88 2.159-0.355-0.103-0.731-0.159-1.12-0.159-2.209 0-4 1.791-4 4s1.791 4 4 4h2v3h4v-3h3.5c1.381 0 2.5-1.119 2.5-2.5 0-1.23-0.888-2.253-2.058-2.461zM9 10v3h-2v-3h-2.5l3.5-3.5 3.5 3.5h-2.5z"
+ }
+ }]
+};
+exports.cloudUpload = cloudUpload;
+var cloudCheck = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.942 8.039c0.038-0.174 0.058-0.354 0.058-0.539 0-1.381-1.119-2.5-2.5-2.5-0.222 0-0.438 0.029-0.643 0.084-0.387-1.209-1.52-2.084-2.857-2.084-1.365 0-2.516 0.911-2.88 2.159-0.355-0.103-0.731-0.159-1.12-0.159-2.209 0-4 1.791-4 4s1.791 4 4 4h9.5c1.381 0 2.5-1.119 2.5-2.5 0-1.23-0.888-2.252-2.058-2.461zM6.5 12l-2.5-2.5 1-1 1.5 1.5 3.5-3.5 1 1-4.5 4.5z"
+ }
+ }]
+};
+exports.cloudCheck = cloudCheck;
+var download2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 8h-2.5l-3.5 3.5-3.5-3.5h-2.5l-2 4v1h16v-1l-2-4zM0 14h16v1h-16v-1zM9 5v-4h-2v4h-3.5l4.5 4.5 4.5-4.5h-3.5z"
+ }
+ }]
+};
+exports.download2 = download2;
+var upload2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 14h16v1h-16zM16 12v1h-16v-1l2-4h4v2h4v-2h4zM3.5 5l4.5-4.5 4.5 4.5h-3.5v4h-2v-4z"
+ }
+ }]
+};
+exports.upload2 = upload2;
+var download3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 7l-4 4-4-4h2.5v-6h3v6zM7.5 11h-7.5v4h15v-4h-7.5zM14 13h-2v-1h2v1z"
+ }
+ }]
+};
+exports.download3 = download3;
+var upload3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 11h-7.5v4h15v-4h-7.5zM14 13h-2v-1h2v1zM3.5 5l4-4 4 4h-2.5v5h-3v-5z"
+ }
+ }]
+};
+exports.upload3 = upload3;
+var sphere = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM11.744 11c0.134-0.632 0.219-1.303 0.246-2h1.991c-0.052 0.691-0.213 1.361-0.479 2h-1.758zM3.256 6c-0.134 0.632-0.219 1.303-0.246 2h-1.991c0.052-0.691 0.213-1.361 0.479-2h1.758zM10.719 6c0.15 0.64 0.241 1.31 0.27 2h-2.989v-2h2.719zM8 5v-2.927c0.228 0.066 0.454 0.178 0.675 0.334 0.415 0.293 0.813 0.744 1.149 1.304 0.233 0.388 0.434 0.819 0.601 1.289h-2.426zM5.176 3.711c0.336-0.561 0.734-1.012 1.149-1.304 0.222-0.156 0.447-0.268 0.675-0.334v2.927h-2.426c0.168-0.47 0.369-0.901 0.601-1.289zM7 6v2h-2.989c0.029-0.69 0.12-1.36 0.27-2h2.719zM1.498 11c-0.266-0.639-0.427-1.309-0.479-2h1.991c0.028 0.697 0.112 1.368 0.246 2h-1.758zM4.011 9h2.989v2h-2.719c-0.15-0.64-0.241-1.31-0.27-2zM7 12v2.927c-0.228-0.066-0.454-0.178-0.675-0.334-0.415-0.293-0.813-0.744-1.149-1.304-0.233-0.388-0.434-0.819-0.602-1.289h2.426zM9.825 13.289c-0.336 0.561-0.734 1.012-1.149 1.304-0.222 0.156-0.447 0.268-0.675 0.334v-2.927h2.426c-0.168 0.47-0.369 0.901-0.602 1.289zM8 11v-2h2.989c-0.029 0.69-0.12 1.36-0.27 2h-2.719zM11.99 8c-0.028-0.697-0.112-1.368-0.246-2h1.758c0.267 0.639 0.427 1.309 0.479 2h-1.991zM12.979 5h-1.498c-0.291-0.918-0.693-1.723-1.177-2.366 0.665 0.318 1.267 0.744 1.792 1.27 0.336 0.336 0.631 0.702 0.883 1.096zM2.904 3.904c0.526-0.526 1.128-0.952 1.792-1.27-0.483 0.643-0.886 1.448-1.177 2.366h-1.498c0.252-0.394 0.547-0.761 0.883-1.096zM2.021 12h1.498c0.291 0.918 0.693 1.723 1.177 2.366-0.665-0.318-1.267-0.744-1.792-1.27-0.336-0.336-0.631-0.702-0.883-1.096zM12.096 13.096c-0.526 0.526-1.128 0.952-1.792 1.27 0.483-0.643 0.886-1.448 1.177-2.366h1.498c-0.252 0.394-0.547 0.761-0.883 1.096z"
+ }
+ }]
+};
+exports.sphere = sphere;
+var earth = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 15c-0.984 0-1.92-0.203-2.769-0.57l3.643-4.098c0.081-0.092 0.126-0.21 0.126-0.332v-1.5c0-0.276-0.224-0.5-0.5-0.5-1.765 0-3.628-1.835-3.646-1.854-0.094-0.094-0.221-0.146-0.354-0.146h-2c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.189 0.107 0.363 0.276 0.447l1.724 0.862v2.936c-1.813-1.265-3-3.366-3-5.745 0-1.074 0.242-2.091 0.674-3h1.826c0.133 0 0.26-0.053 0.354-0.146l2-2c0.094-0.094 0.146-0.221 0.146-0.354v-1.21c0.634-0.189 1.305-0.29 2-0.29 1.1 0 2.141 0.254 3.067 0.706-0.065 0.055-0.128 0.112-0.188 0.172-0.567 0.567-0.879 1.32-0.879 2.121s0.312 1.555 0.879 2.121c0.569 0.569 1.332 0.879 2.119 0.879 0.049 0 0.099-0.001 0.149-0.004 0.216 0.809 0.605 2.917-0.131 5.818-0.007 0.027-0.011 0.055-0.013 0.082-1.271 1.298-3.042 2.104-5.002 2.104z"
+ }
+ }]
+};
+exports.earth = earth;
+var link = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.879 9.934c-0.208 0-0.416-0.079-0.575-0.238-1.486-1.486-1.486-3.905 0-5.392l3-3c0.72-0.72 1.678-1.117 2.696-1.117s1.976 0.397 2.696 1.117c1.486 1.487 1.486 3.905 0 5.392l-1.371 1.371c-0.317 0.317-0.832 0.317-1.149 0s-0.317-0.832 0-1.149l1.371-1.371c0.853-0.853 0.853-2.241 0-3.094-0.413-0.413-0.963-0.641-1.547-0.641s-1.134 0.228-1.547 0.641l-3 3c-0.853 0.853-0.853 2.241 0 3.094 0.317 0.317 0.317 0.832 0 1.149-0.159 0.159-0.367 0.238-0.575 0.238z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 15.813c-1.018 0-1.976-0.397-2.696-1.117-1.486-1.486-1.486-3.905 0-5.392l1.371-1.371c0.317-0.317 0.832-0.317 1.149 0s0.317 0.832 0 1.149l-1.371 1.371c-0.853 0.853-0.853 2.241 0 3.094 0.413 0.413 0.962 0.641 1.547 0.641s1.134-0.228 1.547-0.641l3-3c0.853-0.853 0.853-2.241 0-3.094-0.317-0.317-0.317-0.832 0-1.149s0.832-0.317 1.149 0c1.486 1.486 1.486 3.905 0 5.392l-3 3c-0.72 0.72-1.678 1.117-2.696 1.117z"
+ }
+ }]
+};
+exports.link = link;
+var flag = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0h2v16h-2v-16z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 10.047c1.291 0 2.415-0.312 3-0.773v-8c-0.585 0.461-1.709 0.773-3 0.773s-2.415-0.312-3-0.773v8c0.585 0.461 1.709 0.773 3 0.773z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 0.508c-0.733-0.312-1.805-0.508-3-0.508-1.506 0-2.818 0.312-3.5 0.773v8c0.682-0.461 1.994-0.773 3.5-0.773 1.195 0 2.267 0.197 3 0.508v-8z"
+ }
+ }]
+};
+exports.flag = flag;
+var attachment = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.404 5.11l-1.015-1.014-5.075 5.074c-0.841 0.841-0.841 2.204 0 3.044s2.204 0.841 3.045 0l6.090-6.089c1.402-1.401 1.402-3.673 0-5.074s-3.674-1.402-5.075 0l-6.394 6.393c-0.005 0.005-0.010 0.009-0.014 0.013-1.955 1.955-1.955 5.123 0 7.077s5.123 1.954 7.078 0c0.004-0.004 0.008-0.009 0.013-0.014l0.001 0.001 4.365-4.364-1.015-1.014-4.365 4.363c-0.005 0.004-0.009 0.009-0.013 0.013-1.392 1.392-3.656 1.392-5.048 0s-1.392-3.655 0-5.047c0.005-0.005 0.009-0.009 0.014-0.013l-0.001-0.001 6.395-6.393c0.839-0.84 2.205-0.84 3.045 0s0.839 2.205 0 3.044l-6.090 6.089c-0.28 0.28-0.735 0.28-1.015 0s-0.28-0.735 0-1.014l5.075-5.075z"
+ }
+ }]
+};
+exports.attachment = attachment;
+var eye = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 3c-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-1.486-2.968-4.511-5-8-5zM11.945 5.652c0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.737-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.481-0.085-0.942-0.241-1.369 0.062 0.037 0.124 0.075 0.185 0.114v0zM8 6.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5z"
+ }
+ }]
+};
+exports.eye = eye;
+var eyePlus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 2h-2v-2h-2v2h-2v2h2v2h2v-2h2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.498 6.969c0.288 0.32 0.55 0.665 0.782 1.031-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.736-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.011-0-0.022-0-0.032-1.708-0.44-2.973-1.979-2.999-3.817-0.329-0.037-0.662-0.057-1.001-0.057-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-0.276-0.55-0.604-1.069-0.979-1.548-0.457 0.268-0.973 0.449-1.523 0.517zM6.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5z"
+ }
+ }]
+};
+exports.eyePlus = eyePlus;
+var eyeMinus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 2h6v2h-6v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.599 5h-4.599v-1.944c-0.328-0.037-0.662-0.056-1-0.056-3.489 0-6.514 2.032-8 5 1.486 2.968 4.511 5 8 5s6.514-2.032 8-5c-0.584-1.167-1.407-2.189-2.401-3zM6.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM11.944 10.348c-1.181 0.753-2.545 1.152-3.944 1.152s-2.763-0.398-3.945-1.152c-0.94-0.6-1.736-1.403-2.335-2.348 0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 2.209 1.791 4 4 4s4-1.791 4-4c0-0.481-0.085-0.942-0.241-1.369 0.062 0.037 0.124 0.075 0.185 0.114 0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348z"
+ }
+ }]
+};
+exports.eyeMinus = eyeMinus;
+var eyeBlocked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.78 0.22c-0.293-0.293-0.768-0.293-1.061 0l-3.159 3.159c-0.812-0.246-1.671-0.378-2.561-0.378-3.489 0-6.514 2.032-8 5 0.643 1.283 1.573 2.391 2.703 3.236l-2.484 2.484c-0.293 0.293-0.293 0.768 0 1.061 0.146 0.146 0.338 0.22 0.53 0.22s0.384-0.073 0.53-0.22l13.5-13.5c0.293-0.293 0.293-0.768 0-1.061zM6.5 5c0.66 0 1.22 0.426 1.421 1.019l-1.902 1.902c-0.592-0.201-1.019-0.761-1.019-1.421 0-0.828 0.672-1.5 1.5-1.5zM1.721 8c0.598-0.946 1.395-1.749 2.335-2.348 0.061-0.039 0.123-0.077 0.185-0.114-0.156 0.427-0.241 0.888-0.241 1.369 0 0.858 0.27 1.652 0.73 2.303l-0.952 0.952c-0.819-0.576-1.519-1.311-2.057-2.162z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 6.906c0-0.424-0.066-0.833-0.189-1.217l-5.028 5.028c0.384 0.123 0.793 0.189 1.217 0.189 2.209 0 4-1.791 4-4z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.969 4.531l-1.084 1.084c0.020 0.012 0.040 0.024 0.059 0.037 0.94 0.6 1.737 1.403 2.335 2.348-0.598 0.946-1.395 1.749-2.335 2.348-1.181 0.753-2.545 1.152-3.944 1.152-0.604 0-1.202-0.074-1.781-0.219l-1.201 1.201c0.933 0.335 1.937 0.518 2.982 0.518 3.489 0 6.514-2.032 8-5-0.703-1.405-1.752-2.6-3.031-3.469z"
+ }
+ }]
+};
+exports.eyeBlocked = eyeBlocked;
+var bookmark = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 0v16l5-5 5 5v-16z"
+ }
+ }]
+};
+exports.bookmark = bookmark;
+var bookmarks = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 2v14l5-5 5 5v-14zM12 0h-10v14l1-1v-12h9z"
+ }
+ }]
+};
+exports.bookmarks = bookmarks;
+var sun = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 13c0.552 0 1 0.448 1 1v1c0 0.552-0.448 1-1 1s-1-0.448-1-1v-1c0-0.552 0.448-1 1-1zM8 3c-0.552 0-1-0.448-1-1v-1c0-0.552 0.448-1 1-1s1 0.448 1 1v1c0 0.552-0.448 1-1 1zM15 7c0.552 0 1 0.448 1 1s-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1zM3 8c0 0.552-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1c0.552 0 1 0.448 1 1zM12.95 11.536l0.707 0.707c0.39 0.39 0.39 1.024 0 1.414s-1.024 0.39-1.414 0l-0.707-0.707c-0.39-0.39-0.39-1.024 0-1.414s1.024-0.39 1.414 0zM3.050 4.464l-0.707-0.707c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l0.707 0.707c0.391 0.391 0.391 1.024 0 1.414s-1.024 0.391-1.414 0zM12.95 4.464c-0.39 0.391-1.024 0.391-1.414 0s-0.39-1.024 0-1.414l0.707-0.707c0.39-0.391 1.024-0.391 1.414 0s0.39 1.024 0 1.414l-0.707 0.707zM3.050 11.536c0.39-0.39 1.024-0.39 1.414 0s0.391 1.024 0 1.414l-0.707 0.707c-0.391 0.39-1.024 0.39-1.414 0s-0.391-1.024 0-1.414l0.707-0.707z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 4c-2.209 0-4 1.791-4 4s1.791 4 4 4c2.209 0 4-1.791 4-4s-1.791-4-4-4zM8 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"
+ }
+ }]
+};
+exports.sun = sun;
+var contrast = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM2 8c0-3.314 2.686-6 6-6v12c-3.314 0-6-2.686-6-6z"
+ }
+ }]
+};
+exports.contrast = contrast;
+var brightnessContrast = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 4c-2.209 0-4 1.791-4 4s1.791 4 4 4 4-1.791 4-4-1.791-4-4-4zM8 10.5v-5c1.379 0 2.5 1.122 2.5 2.5s-1.121 2.5-2.5 2.5zM8 13c0.552 0 1 0.448 1 1v1c0 0.552-0.448 1-1 1s-1-0.448-1-1v-1c0-0.552 0.448-1 1-1zM8 3c-0.552 0-1-0.448-1-1v-1c0-0.552 0.448-1 1-1s1 0.448 1 1v1c0 0.552-0.448 1-1 1zM15 7c0.552 0 1 0.448 1 1s-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1zM3 8c0 0.552-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1c0.552 0 1 0.448 1 1zM12.95 11.536l0.707 0.707c0.39 0.39 0.39 1.024 0 1.414s-1.024 0.39-1.414 0l-0.707-0.707c-0.39-0.39-0.39-1.024 0-1.414s1.024-0.39 1.414 0zM3.050 4.464l-0.707-0.707c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l0.707 0.707c0.391 0.391 0.391 1.024 0 1.414s-1.024 0.391-1.414 0zM12.95 4.464c-0.39 0.391-1.024 0.391-1.414 0s-0.39-1.024 0-1.414l0.707-0.707c0.39-0.391 1.024-0.391 1.414 0s0.39 1.024 0 1.414l-0.707 0.707zM3.050 11.536c0.39-0.39 1.024-0.39 1.414 0s0.391 1.024 0 1.414l-0.707 0.707c-0.391 0.39-1.024 0.39-1.414 0s-0.391-1.024 0-1.414l0.707-0.707z"
+ }
+ }]
+};
+exports.brightnessContrast = brightnessContrast;
+var starEmpty = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899zM8 11.773l-3.492 1.836 0.667-3.888-2.825-2.753 3.904-0.567 1.746-3.537 1.746 3.537 3.904 0.567-2.825 2.753 0.667 3.888-3.492-1.836z"
+ }
+ }]
+};
+exports.starEmpty = starEmpty;
+var starHalf = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899zM8 11.773l-0.015 0.008 0.015-8.918 1.746 3.537 3.904 0.567-2.825 2.753 0.667 3.888-3.492-1.836z"
+ }
+ }]
+};
+exports.starHalf = starHalf;
+var starFull = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899z"
+ }
+ }]
+};
+exports.starFull = starFull;
+var heart = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.8 1c-1.682 0-3.129 1.368-3.799 2.797-0.671-1.429-2.118-2.797-3.8-2.797-2.318 0-4.2 1.882-4.2 4.2 0 4.716 4.758 5.953 8 10.616 3.065-4.634 8-6.050 8-10.616 0-2.319-1.882-4.2-4.2-4.2z"
+ }
+ }]
+};
+exports.heart = heart;
+var heartBroken = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.8 1c2.318 0 4.2 1.882 4.2 4.2 0 4.566-4.935 5.982-8 10.616-3.243-4.663-8-5.9-8-10.616 0-2.319 1.882-4.2 4.2-4.2 0.943 0 1.812 0.43 2.512 1.060l-1.213 1.94 3.5 2-2 5 5.5-6-3.5-2 0.967-1.451c0.553-0.34 1.175-0.549 1.833-0.549z"
+ }
+ }]
+};
+exports.heartBroken = heartBroken;
+var man = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 4h-3c-0.552 0-1 0.448-1 1v5h1v6h1.25v-6h0.5v6h1.25v-6h1v-5c0-0.552-0.448-1-1-1z"
+ }
+ }]
+};
+exports.man = man;
+var woman = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.234 8l0.766-0.555-2.083-3.221c-0.092-0.14-0.249-0.225-0.417-0.225h-4c-0.168 0-0.325 0.084-0.417 0.225l-2.083 3.221 0.766 0.555 1.729-2.244 0.601 1.402-2.095 3.841h1.917l0.333 5h1v-5h0.5v5h1l0.333-5h1.917l-2.095-3.842 0.601-1.402 1.729 2.244z"
+ }
+ }]
+};
+exports.woman = woman;
+var manWoman = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 4h-3c-0.552 0-1 0.448-1 1v5h1v6h1.25v-6h0.5v6h1.25v-6h1v-5c0-0.552-0.448-1-1-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.234 8l0.766-0.555-2.083-3.221c-0.092-0.14-0.249-0.225-0.417-0.225h-4c-0.168 0-0.325 0.084-0.417 0.225l-2.083 3.221 0.766 0.555 1.729-2.244 0.601 1.402-2.095 3.841h1.917l0.333 5h1v-5h0.5v5h1l0.333-5h1.917l-2.095-3.842 0.601-1.402 1.729 2.244z"
+ }
+ }]
+};
+exports.manWoman = manWoman;
+var happy = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM8 9.356c1.812 0 3.535-0.481 5-1.327-0.228 2.788-2.393 4.971-5 4.971s-4.772-2.186-5-4.973c1.465 0.845 3.188 1.329 5 1.329zM4 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5z"
+ }
+ }]
+};
+exports.happy = happy;
+var happy2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM5 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM8 14c-2.607 0-4.772-2.186-5-4.973 1.465 0.846 3.188 1.329 5 1.329s3.535-0.481 5-1.327c-0.228 2.788-2.393 4.971-5 4.971z"
+ }
+ }]
+};
+exports.happy2 = happy2;
+var smile = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.002 9.801l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427s-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699z"
+ }
+ }]
+};
+exports.smile = smile;
+var smile2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM8 13c-1.82 0-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427z"
+ }
+ }]
+};
+exports.smile2 = smile2;
+var tongue = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM12 9v1h-1v1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5v-1.5h-4v-1h8z"
+ }
+ }]
+};
+exports.tongue = tongue;
+var tongue2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM12 10h-1v1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5v-1.5h-4v-1h8v1zM11 6c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1z"
+ }
+ }]
+};
+exports.tongue2 = tongue2;
+var sad = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM4.998 12.199l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.413 0.973 4.288 2.427l-1.286 0.772c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699z"
+ }
+ }]
+};
+exports.sad = sad;
+var sad2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772z"
+ }
+ }]
+};
+exports.sad2 = sad2;
+var wink = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM8.48 11.11c2.191-0.433 3.892-1.43 4.507-2.759-0.338 2.624-2.524 4.649-5.17 4.649-1.863 0-3.498-1.004-4.42-2.515 1.1 0.86 3.040 1.028 5.083 0.625zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM5.5 5.805c-0.653 0-1.208 0.245-1.414 0.586-0.055-0.092-0.086-0.503-0.086-0.605 0-0.485 0.672-0.879 1.5-0.879s1.5 0.394 1.5 0.879c0 0.103-0.030 0.514-0.086 0.605-0.206-0.341-0.761-0.586-1.414-0.586z"
+ }
+ }]
+};
+exports.wink = wink;
+var wink2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM5.5 4.876c0.932 0 1.594 0.349 1.594 0.895 0 0.116 0.060 0.672-0.003 0.775-0.232-0.384-0.856-0.659-1.591-0.659s-1.359 0.275-1.591 0.659c-0.062-0.103-0.003-0.659-0.003-0.775 0-0.546 0.662-0.895 1.594-0.895zM7.818 13c-1.863 0-3.498-1.004-4.42-2.515 1.1 0.86 3.040 1.028 5.083 0.625 2.191-0.433 3.892-1.43 4.507-2.759-0.338 2.624-2.524 4.649-5.17 4.649z"
+ }
+ }]
+};
+exports.wink2 = wink2;
+var grin = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM3 8v1c0 2.2 1.8 4 4 4h2c2.2 0 4-1.8 4-4v-1h-10zM6 11.828c-0.415-0.148-0.796-0.388-1.118-0.71-0.569-0.569-0.882-1.321-0.882-2.118h2v2.828zM9 12h-2v-3h2v3zM11.118 11.118c-0.322 0.322-0.703 0.562-1.118 0.71v-2.828h2c0 0.797-0.313 1.549-0.882 2.118zM3.521 6c0 0 0 0 0 0 0.153 0 0.283-0.11 0.308-0.261 0.096-0.573 0.589-0.989 1.171-0.989s1.074 0.416 1.171 0.989c0.025 0.151 0.156 0.261 0.308 0.261s0.283-0.11 0.308-0.261c0.017-0.101 0.025-0.202 0.025-0.302 0-0.999-0.813-1.813-1.813-1.813s-1.813 0.813-1.813 1.813c0 0.1 0.009 0.201 0.025 0.302 0.025 0.151 0.156 0.261 0.308 0.261zM9.521 6c0 0 0 0 0 0 0.153 0 0.283-0.11 0.308-0.261 0.096-0.573 0.589-0.989 1.171-0.989s1.074 0.416 1.171 0.989c0.025 0.151 0.156 0.261 0.308 0.261s0.283-0.11 0.308-0.261c0.017-0.101 0.025-0.202 0.025-0.302 0-0.999-0.813-1.813-1.813-1.813s-1.813 0.813-1.813 1.813c0 0.1 0.008 0.201 0.025 0.302 0.025 0.151 0.156 0.261 0.308 0.261z"
+ }
+ }]
+};
+exports.grin = grin;
+var grin2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 3.688c0.999 0 1.813 0.813 1.813 1.813 0 0.1-0.009 0.201-0.025 0.302-0.025 0.151-0.156 0.261-0.308 0.261s-0.283-0.11-0.308-0.261c-0.096-0.573-0.589-0.833-1.171-0.833s-1.074 0.26-1.171 0.833c-0.025 0.151-0.156 0.261-0.308 0.261-0 0 0 0-0 0-0.153 0-0.283-0.11-0.308-0.261-0.017-0.101-0.025-0.202-0.025-0.302 0-0.999 0.813-1.813 1.813-1.813zM5 3.688c0.999 0 1.813 0.813 1.813 1.813 0 0.1-0.009 0.201-0.025 0.302-0.025 0.151-0.156 0.261-0.308 0.261s-0.283-0.11-0.308-0.261c-0.096-0.573-0.589-0.833-1.171-0.833s-1.074 0.26-1.171 0.833c-0.025 0.151-0.156 0.261-0.308 0.261 0 0 0 0 0 0-0.153 0-0.283-0.11-0.308-0.261-0.017-0.101-0.025-0.202-0.025-0.302 0-0.999 0.813-1.813 1.813-1.813zM3 9h3v3.873c-1.72-0.447-3-2.018-3-3.873zM7 13v-4h2v4h-2zM10 12.873v-3.873h3c0 1.855-1.28 3.426-3 3.873z"
+ }
+ }]
+};
+exports.grin2 = grin2;
+var cool = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM12.5 4c0.275 0 0.5 0.225 0.5 0.5v1.5c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1h-2c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-1.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v0.5h2v-0.5c0-0.275 0.225-0.5 0.5-0.5h3zM8 12c1.456 0 2.731-0.778 3.43-1.942l0.857 0.515c-0.874 1.454-2.467 2.427-4.288 2.427-0.757 0-1.475-0.169-2.118-0.47l0.518-0.864c0.49 0.214 1.031 0.334 1.6 0.334z"
+ }
+ }]
+};
+exports.cool = cool;
+var cool2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM8 13c-0.757 0-1.475-0.169-2.118-0.47l0.518-0.864c0.49 0.214 1.031 0.334 1.6 0.334 1.456 0 2.731-0.778 3.43-1.942l0.858 0.515c-0.874 1.454-2.467 2.427-4.288 2.427zM13 6c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1h-2c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-1.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v0.5h2v-0.5c0-0.275 0.225-0.5 0.5-0.5h3c0.275 0 0.5 0.225 0.5 0.5v1.5z"
+ }
+ }]
+};
+exports.cool2 = cool2;
+var angry = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772zM11.985 4.379c0.067 0.268-0.096 0.539-0.364 0.606-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054 0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606z"
+ }
+ }]
+};
+exports.angry = angry;
+var angry2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM9.001 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772z"
+ }
+ }]
+};
+exports.angry2 = angry2;
+var evil = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 7c-0.552 0-1-0.448-1-1 0-0.018 0.001-0.036 0.002-0.054 0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1zM4.379 4.985c-0.268-0.067-0.431-0.338-0.364-0.606s0.338-0.431 0.606-0.364c0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334zM8 11.5c1.274 0 2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427s-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699zM16 1c0-0.711-0.149-1.387-0.416-2-0.525 1.201-1.507 2.155-2.726 2.643-1.347-1.031-3.030-1.643-4.857-1.643s-3.51 0.613-4.857 1.643c-1.22-0.488-2.202-1.443-2.726-2.643-0.268 0.613-0.416 1.289-0.416 2 0 1.15 0.388 2.208 1.040 3.053-0.662 1.165-1.040 2.512-1.040 3.947 0 4.418 3.582 8 8 8s8-3.582 8-8c0-1.436-0.378-2.783-1.040-3.947 0.652-0.845 1.040-1.903 1.040-3.053zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"
+ }
+ }]
+};
+exports.evil = evil;
+var evil2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 1c0-0.711-0.149-1.387-0.416-2-0.525 1.201-1.507 2.155-2.726 2.643-1.347-1.031-3.030-1.643-4.857-1.643s-3.51 0.613-4.857 1.643c-1.22-0.488-2.202-1.443-2.726-2.643-0.268 0.613-0.416 1.289-0.416 2 0 1.15 0.388 2.208 1.040 3.053-0.662 1.165-1.040 2.512-1.040 3.947 0 4.418 3.582 8 8 8s8-3.582 8-8c0-1.436-0.378-2.783-1.040-3.947 0.652-0.845 1.040-1.903 1.040-3.053zM9.001 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM8 13c-1.82 0-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427z"
+ }
+ }]
+};
+exports.evil2 = evil2;
+var shocked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM6 11c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM4 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5z"
+ }
+ }]
+};
+exports.shocked = shocked;
+var shocked2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 7c-0.552 0-1-0.672-1-1.5s0.448-1.5 1-1.5 1 0.672 1 1.5-0.448 1.5-1 1.5zM8 13c-1.105 0-2-0.895-2-2s0.895-2 2-2c1.105 0 2 0.895 2 2s-0.895 2-2 2zM11 7c-0.552 0-1-0.672-1-1.5s0.448-1.5 1-1.5 1 0.672 1 1.5-0.448 1.5-1 1.5z"
+ }
+ }]
+};
+exports.shocked2 = shocked2;
+var baffled = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM5.5 4c-1.378 0-2.5 1.122-2.5 2.5s1.122 2.5 2.5 2.5 2.5-1.122 2.5-2.5-1.122-2.5-2.5-2.5v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.5 5c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5zM10.5 4c-1.379 0-2.5 1.122-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.122 2.5-2.5-1.121-2.5-2.5-2.5v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 11h4v1h-4v-1z"
+ }
+ }]
+};
+exports.baffled = baffled;
+var baffled2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 6.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4 6.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5zM10 12h-4v-1h4v1zM10.5 8c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z"
+ }
+ }]
+};
+exports.baffled2 = baffled2;
+var confused = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.345 10h1.014c0.144 1.133-0.507 2.258-1.624 2.665-1.295 0.472-2.733-0.199-3.204-1.494-0.283-0.777-1.145-1.179-1.923-0.896-0.712 0.259-1.109 1.005-0.953 1.725h-1.013c-0.144-1.133 0.507-2.258 1.624-2.665 1.295-0.472 2.733 0.199 3.204 1.494 0.283 0.777 1.145 1.179 1.923 0.896 0.712-0.259 1.109-1.005 0.953-1.725z"
+ }
+ }]
+};
+exports.confused = confused;
+var confused2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM10.735 12.665c-1.295 0.472-2.733-0.199-3.204-1.494-0.283-0.777-1.145-1.179-1.923-0.896-0.712 0.259-1.109 1.005-0.953 1.725h-1.013c-0.144-1.133 0.507-2.258 1.624-2.665 1.295-0.472 2.733 0.199 3.204 1.494 0.283 0.777 1.145 1.179 1.923 0.896 0.712-0.259 1.109-1.005 0.953-1.725h1.014c0.144 1.133-0.507 2.258-1.624 2.665z"
+ }
+ }]
+};
+exports.confused2 = confused2;
+var neutral = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0 0.552 0.448 1 1 1s1-0.448 1-1-0.448-1-1-1-1 0.448-1 1zM10 5c0 0.552 0.448 1 1 1s1-0.448 1-1-0.448-1-1-1-1 0.448-1 1zM6 11h4v1h-4v-1z"
+ }
+ }]
+};
+exports.neutral = neutral;
+var neutral2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM10 12h-4v-1h4v1zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1z"
+ }
+ }]
+};
+exports.neutral2 = neutral2;
+var hipster = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.561 8.439c-0.586-0.586-1.536-0.586-2.121 0s-0.586 1.536 0 2.121c0.019 0.019 0.038 0.037 0.058 0.055 1.352 1.227 4.503-0.029 4.503-1.615-0.969 0.625-1.726 0.153-2.439-0.561z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.439 8.439c0.586-0.586 1.536-0.586 2.121 0s0.586 1.536 0 2.121c-0.019 0.019-0.038 0.037-0.058 0.055-1.352 1.227-4.503-0.029-4.503-1.615 0.969 0.625 1.726 0.153 2.439-0.561z"
+ }
+ }]
+};
+exports.hipster = hipster;
+var hipster2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM8.497 10.615c-0.020-0.018-0.039-0.036-0.058-0.055-0.293-0.293-0.439-0.677-0.439-1.060-0 0.384-0.146 0.768-0.439 1.060-0.019 0.019-0.038 0.037-0.058 0.055-1.352 1.227-4.503-0.029-4.503-1.615 0.969 0.625 1.726 0.153 2.439-0.561 0.586-0.586 1.536-0.586 2.121 0 0.293 0.293 0.439 0.677 0.439 1.060 0-0.384 0.146-0.768 0.439-1.060 0.586-0.586 1.536-0.586 2.121 0 0.713 0.714 1.471 1.186 2.439 0.561 0 1.586-3.151 2.842-4.503 1.615z"
+ }
+ }]
+};
+exports.hipster2 = hipster2;
+var wondering = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11.652 9.4l0.351 1.2-6.828 2-0.351-1.2zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1z"
+ }
+ }]
+};
+exports.wondering = wondering;
+var wondering2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1zM5.176 12.6l-0.351-1.2 6.828-2 0.351 1.2-6.828 2z"
+ }
+ }]
+};
+exports.wondering2 = wondering2;
+var sleepy = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 10.5c0 1.381-0.895 2.5-2 2.5s-2-1.119-2-2.5c0-1.381 0.895-2.5 2-2.5s2 1.119 2 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 5.313c-0.128 0-0.256-0.049-0.354-0.146-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 5.313c-0.128 0-0.256-0.049-0.354-0.146-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z"
+ }
+ }]
+};
+exports.sleepy = sleepy;
+var sleepy2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4.854 5.166c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.302-0.302-0.991-0.302-1.293 0zM8 13c-1.105 0-2-1.119-2-2.5s0.895-2.5 2-2.5 2 1.119 2 2.5-0.895 2.5-2 2.5zM11.854 5.166c-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707z"
+ }
+ }]
+};
+exports.sleepy2 = sleepy2;
+var frustrated = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.724 4.428c-0.543-0.271-1.080-0.407-1.102-0.413-0.268-0.067-0.539 0.096-0.606 0.364s0.096 0.539 0.364 0.606c0.275 0.070 0.602 0.189 0.89 0.334-0.166 0.179-0.268 0.418-0.268 0.681 0 0.552 0.448 1 1 1s1-0.448 1-1c0-0.018-0.001-0.036-0.002-0.054-0.032-0.741-0.706-1.234-1.275-1.518z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM3.695 12.87c0.167 0.083 0.356 0.13 0.555 0.13h7.5c0.199 0 0.387-0.047 0.555-0.13-1.147 1.014-2.654 1.63-4.305 1.63s-3.158-0.616-4.305-1.63zM4 11.75v-1.5c0-0.136 0.114-0.25 0.25-0.25h1.75v2h-1.75c-0.136 0-0.25-0.114-0.25-0.25zM7 12v-2h2v2h-2zM10 12v-2h1.75c0.136 0 0.25 0.114 0.25 0.25v1.5c0 0.136-0.114 0.25-0.25 0.25h-1.75zM12.87 12.305c0.083-0.167 0.13-0.356 0.13-0.555v-1.5c0-0.689-0.561-1.25-1.25-1.25h-7.5c-0.689 0-1.25 0.561-1.25 1.25v1.5c0 0.199 0.047 0.387 0.13 0.555-1.014-1.147-1.63-2.654-1.63-4.305 0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5c0 1.651-0.616 3.158-1.63 4.305z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.379 4.015c-0.023 0.006-0.559 0.141-1.102 0.413-0.568 0.284-1.243 0.776-1.275 1.518-0.001 0.018-0.002 0.036-0.002 0.054 0 0.552 0.448 1 1 1s1-0.448 1-1c0-0.263-0.102-0.503-0.268-0.681 0.288-0.144 0.614-0.264 0.89-0.334 0.268-0.067 0.431-0.338 0.364-0.606s-0.338-0.431-0.606-0.364z"
+ }
+ }]
+};
+exports.frustrated = frustrated;
+var frustrated2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 10.25v1.5c0 0.136 0.114 0.25 0.25 0.25h1.75v-2h-1.75c-0.136 0-0.25 0.114-0.25 0.25z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 10h2v2h-2v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.75 10h-1.75v2h1.75c0.136 0 0.25-0.114 0.25-0.25v-1.5c0-0.136-0.114-0.25-0.25-0.25z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM9.002 5.946c0.032-0.741 0.706-1.234 1.275-1.518 0.543-0.271 1.080-0.407 1.102-0.413 0.268-0.067 0.539 0.096 0.606 0.364s-0.096 0.539-0.364 0.606c-0.275 0.070-0.602 0.189-0.89 0.334 0.166 0.179 0.268 0.418 0.268 0.681 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.018 0.001-0.036 0.002-0.054zM4.015 4.379c0.067-0.268 0.338-0.431 0.606-0.364 0.023 0.006 0.559 0.141 1.102 0.413 0.568 0.284 1.243 0.776 1.275 1.518 0.001 0.018 0.002 0.036 0.002 0.054 0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.263 0.102-0.503 0.268-0.681-0.288-0.144-0.614-0.264-0.89-0.334-0.268-0.067-0.431-0.338-0.364-0.606zM13 11.75c0 0.689-0.561 1.25-1.25 1.25h-7.5c-0.689 0-1.25-0.561-1.25-1.25v-1.5c0-0.689 0.561-1.25 1.25-1.25h7.5c0.689 0 1.25 0.561 1.25 1.25v1.5z"
+ }
+ }]
+};
+exports.frustrated2 = frustrated2;
+var crying = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 13.375c-0.128 0-0.256-0.049-0.354-0.146-0.072-0.072-0.46-0.229-1.146-0.229s-1.075 0.157-1.146 0.229c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.471-0.471 1.453-0.521 1.854-0.521s1.383 0.051 1.854 0.521c0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 9c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 12c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 9c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 12c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.crying = crying;
+var crying2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 11.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM5 8.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM5.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5zM9.854 13.229c-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.072-0.072-0.46-0.229-1.146-0.229s-1.075 0.157-1.146 0.229c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.471-0.471 1.453-0.521 1.854-0.521s1.383 0.051 1.854 0.521c0.195 0.195 0.195 0.512 0 0.707zM12 11.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM12 8.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1zM12.5 6h-2c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.crying2 = crying2;
+var pointUp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 9.5v-2.5c0-0.827-0.673-1.5-1.5-1.5-0.267 0-0.518 0.070-0.736 0.193-0.267-0.417-0.734-0.693-1.264-0.693-0.384 0-0.734 0.145-1 0.383-0.266-0.238-0.616-0.383-1-0.383-0.175 0-0.344 0.030-0.5 0.086v-3.586c0-0.827-0.673-1.5-1.5-1.5s-1.5 0.673-1.5 1.5v6.167l-2.75-1.466c-0.227-0.131-0.486-0.201-0.75-0.201-0.827 0-1.5 0.673-1.5 1.5 0 0.412 0.164 0.796 0.461 1.082 0.004 0.004 0.008 0.007 0.012 0.011l3.737 3.407h-0.71c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h10c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5h-0.691l1.138-2.276c0.035-0.069 0.053-0.146 0.053-0.224zM14 13.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5zM14 9.382l-1.309 2.618h-5.997l-4.544-4.143c-0.097-0.095-0.15-0.221-0.15-0.357 0-0.276 0.224-0.5 0.5-0.5 0.085 0 0.166 0.020 0.239 0.061 0.008 0.005 0.017 0.010 0.025 0.014l3.5 1.866c0.155 0.083 0.342 0.078 0.492-0.012s0.243-0.253 0.243-0.429v-7c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v2.382z"
+ }
+ }]
+};
+exports.pointUp = pointUp;
+var pointRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15h2.5c0.827 0 1.5-0.673 1.5-1.5 0-0.267-0.070-0.518-0.193-0.736 0.417-0.267 0.693-0.734 0.693-1.264 0-0.384-0.145-0.734-0.383-1 0.238-0.266 0.383-0.616 0.383-1 0-0.175-0.030-0.344-0.086-0.5h3.586c0.827 0 1.5-0.673 1.5-1.5s-0.673-1.5-1.5-1.5h-6.167l1.466-2.75c0.131-0.227 0.201-0.486 0.201-0.75 0-0.827-0.673-1.5-1.5-1.5-0.412 0-0.796 0.164-1.082 0.461-0.004 0.004-0.007 0.008-0.011 0.012l-3.407 3.737v-0.71c0-0.276-0.224-0.5-0.5-0.5h-3c-0.276 0-0.5 0.224-0.5 0.5v10c0 0.276 0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-0.691l2.276 1.138c0.069 0.035 0.146 0.053 0.224 0.053zM2.5 14c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM6.618 14l-2.618-1.309v-5.997l4.143-4.544c0.095-0.097 0.221-0.15 0.357-0.15 0.276 0 0.5 0.224 0.5 0.5 0 0.085-0.020 0.166-0.061 0.239-0.005 0.008-0.010 0.017-0.014 0.025l-1.866 3.5c-0.083 0.155-0.078 0.342 0.013 0.492s0.253 0.243 0.429 0.243h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2.382z"
+ }
+ }]
+};
+exports.pointRight = pointRight;
+var pointDown = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 6.5v2.5c0 0.827-0.673 1.5-1.5 1.5-0.267 0-0.518-0.070-0.736-0.193-0.267 0.417-0.734 0.693-1.264 0.693-0.384 0-0.734-0.145-1-0.383-0.266 0.238-0.616 0.383-1 0.383-0.175 0-0.344-0.030-0.5-0.086v3.586c0 0.827-0.673 1.5-1.5 1.5s-1.5-0.673-1.5-1.5v-6.167l-2.75 1.466c-0.227 0.131-0.486 0.201-0.75 0.201-0.827 0-1.5-0.673-1.5-1.5 0-0.412 0.164-0.796 0.461-1.082 0.004-0.004 0.008-0.007 0.012-0.011l3.737-3.407h-0.71c-0.276 0-0.5-0.224-0.5-0.5v-3c0-0.276 0.224-0.5 0.5-0.5h10c0.276 0 0.5 0.224 0.5 0.5v3c0 0.276-0.224 0.5-0.5 0.5h-0.691l1.138 2.276c0.035 0.069 0.053 0.146 0.053 0.224zM14 2.5c0-0.276-0.224-0.5-0.5-0.5s-0.5 0.224-0.5 0.5 0.224 0.5 0.5 0.5 0.5-0.224 0.5-0.5zM14 6.618l-1.309-2.618h-5.997l-4.544 4.143c-0.097 0.095-0.15 0.221-0.15 0.357 0 0.276 0.224 0.5 0.5 0.5 0.085 0 0.166-0.020 0.239-0.061 0.008-0.005 0.017-0.010 0.025-0.014l3.5-1.866c0.155-0.083 0.342-0.078 0.492 0.013s0.243 0.253 0.243 0.429v7c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-2.382z"
+ }
+ }]
+};
+exports.pointDown = pointDown;
+var pointLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 15h-2.5c-0.827 0-1.5-0.673-1.5-1.5 0-0.267 0.070-0.518 0.193-0.736-0.417-0.267-0.693-0.734-0.693-1.264 0-0.384 0.145-0.734 0.383-1-0.238-0.266-0.383-0.616-0.383-1 0-0.175 0.030-0.344 0.086-0.5h-3.586c-0.827 0-1.5-0.673-1.5-1.5s0.673-1.5 1.5-1.5h6.167l-1.466-2.75c-0.131-0.227-0.201-0.486-0.201-0.75 0-0.827 0.673-1.5 1.5-1.5 0.412 0 0.796 0.164 1.082 0.461 0.004 0.004 0.007 0.008 0.011 0.012l3.407 3.737v-0.71c0-0.276 0.224-0.5 0.5-0.5h3c0.276 0 0.5 0.224 0.5 0.5v10c0 0.276-0.224 0.5-0.5 0.5h-3c-0.276 0-0.5-0.224-0.5-0.5v-0.691l-2.276 1.138c-0.069 0.035-0.146 0.053-0.224 0.053zM13.5 14c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5-0.5 0.224-0.5 0.5 0.224 0.5 0.5 0.5zM9.382 14l2.618-1.309v-5.997l-4.143-4.544c-0.095-0.097-0.221-0.15-0.357-0.15-0.276 0-0.5 0.224-0.5 0.5 0 0.085 0.020 0.166 0.061 0.239 0.005 0.008 0.010 0.017 0.014 0.025l1.866 3.5c0.083 0.155 0.078 0.342-0.012 0.492s-0.253 0.243-0.429 0.243h-7c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2.382z"
+ }
+ }]
+};
+exports.pointLeft = pointLeft;
+var warning = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1.45l6.705 13.363h-13.409l6.705-13.363zM8 0c-0.345 0-0.69 0.233-0.951 0.698l-6.829 13.611c-0.523 0.93-0.078 1.691 0.989 1.691h13.583c1.067 0 1.512-0.761 0.989-1.691h0l-6.829-13.611c-0.262-0.465-0.606-0.698-0.951-0.698v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 13c0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.552 0.448-1 1-1s1 0.448 1 1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 11c-0.552 0-1-0.448-1-1v-3c0-0.552 0.448-1 1-1s1 0.448 1 1v3c0 0.552-0.448 1-1 1z"
+ }
+ }]
+};
+exports.warning = warning;
+var notification = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1.5c-1.736 0-3.369 0.676-4.596 1.904s-1.904 2.86-1.904 4.596c0 1.736 0.676 3.369 1.904 4.596s2.86 1.904 4.596 1.904c1.736 0 3.369-0.676 4.596-1.904s1.904-2.86 1.904-4.596c0-1.736-0.676-3.369-1.904-4.596s-2.86-1.904-4.596-1.904zM8 0v0c4.418 0 8 3.582 8 8s-3.582 8-8 8c-4.418 0-8-3.582-8-8s3.582-8 8-8zM7 11h2v2h-2zM7 3h2v6h-2z"
+ }
+ }]
+};
+exports.notification = notification;
+var question = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 11h2v2h-2zM11 4c0.552 0 1 0.448 1 1v3l-3 2h-2v-1l3-2v-1h-5v-2h6zM8 1.5c-1.736 0-3.369 0.676-4.596 1.904s-1.904 2.86-1.904 4.596c0 1.736 0.676 3.369 1.904 4.596s2.86 1.904 4.596 1.904c1.736 0 3.369-0.676 4.596-1.904s1.904-2.86 1.904-4.596c0-1.736-0.676-3.369-1.904-4.596s-2.86-1.904-4.596-1.904zM8 0v0c4.418 0 8 3.582 8 8s-3.582 8-8 8c-4.418 0-8-3.582-8-8s3.582-8 8-8z"
+ }
+ }]
+};
+exports.question = question;
+var plus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.5 6h-5.5v-5.5c0-0.276-0.224-0.5-0.5-0.5h-3c-0.276 0-0.5 0.224-0.5 0.5v5.5h-5.5c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h5.5v5.5c0 0.276 0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-5.5h5.5c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5z"
+ }
+ }]
+};
+exports.plus = plus;
+var minus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 6.5v3c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5h-15c-0.276 0-0.5 0.224-0.5 0.5z"
+ }
+ }]
+};
+exports.minus = minus;
+var info = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 4.75c0-0.412 0.338-0.75 0.75-0.75h0.5c0.412 0 0.75 0.338 0.75 0.75v0.5c0 0.412-0.338 0.75-0.75 0.75h-0.5c-0.412 0-0.75-0.338-0.75-0.75v-0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 12h-4v-1h1v-3h-1v-1h3v4h1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"
+ }
+ }]
+};
+exports.info = info;
+var cancelCircle = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.5 4l-2.5 2.5-2.5-2.5-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 2.5-2.5 2.5 2.5 1.5-1.5-2.5-2.5 2.5-2.5z"
+ }
+ }]
+};
+exports.cancelCircle = cancelCircle;
+var blocked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.657 2.343c-1.511-1.511-3.52-2.343-5.657-2.343s-4.146 0.832-5.657 2.343c-1.511 1.511-2.343 3.52-2.343 5.657s0.832 4.146 2.343 5.657c1.511 1.511 3.52 2.343 5.657 2.343s4.146-0.832 5.657-2.343c1.511-1.511 2.343-3.52 2.343-5.657s-0.832-4.146-2.343-5.657zM14 8c0 1.294-0.412 2.494-1.111 3.475l-8.364-8.364c0.981-0.699 2.181-1.111 3.475-1.111 3.308 0 6 2.692 6 6zM2 8c0-1.294 0.412-2.494 1.111-3.475l8.364 8.364c-0.981 0.699-2.181 1.111-3.475 1.111-3.308 0-6-2.692-6-6z"
+ }
+ }]
+};
+exports.blocked = blocked;
+var cross = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.854 12.854c-0-0-0-0-0-0l-4.854-4.854 4.854-4.854c0-0 0-0 0-0 0.052-0.052 0.090-0.113 0.114-0.178 0.066-0.178 0.028-0.386-0.114-0.529l-2.293-2.293c-0.143-0.143-0.351-0.181-0.529-0.114-0.065 0.024-0.126 0.062-0.178 0.114 0 0-0 0-0 0l-4.854 4.854-4.854-4.854c-0-0-0-0-0-0-0.052-0.052-0.113-0.090-0.178-0.114-0.178-0.066-0.386-0.029-0.529 0.114l-2.293 2.293c-0.143 0.143-0.181 0.351-0.114 0.529 0.024 0.065 0.062 0.126 0.114 0.178 0 0 0 0 0 0l4.854 4.854-4.854 4.854c-0 0-0 0-0 0-0.052 0.052-0.090 0.113-0.114 0.178-0.066 0.178-0.029 0.386 0.114 0.529l2.293 2.293c0.143 0.143 0.351 0.181 0.529 0.114 0.065-0.024 0.126-0.062 0.178-0.114 0-0 0-0 0-0l4.854-4.854 4.854 4.854c0 0 0 0 0 0 0.052 0.052 0.113 0.090 0.178 0.114 0.178 0.066 0.386 0.029 0.529-0.114l2.293-2.293c0.143-0.143 0.181-0.351 0.114-0.529-0.024-0.065-0.062-0.126-0.114-0.178z"
+ }
+ }]
+};
+exports.cross = cross;
+var checkmark = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 2l-7.5 7.5-3.5-3.5-2.5 2.5 6 6 10-10z"
+ }
+ }]
+};
+exports.checkmark = checkmark;
+var checkmark2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.21 14.339l-6.217-6.119 3.084-3.035 3.133 3.083 6.713-6.607 3.084 3.035-9.797 9.643zM1.686 8.22l4.524 4.453 8.104-7.976-1.391-1.369-6.713 6.607-3.133-3.083-1.391 1.369z"
+ }
+ }]
+};
+exports.checkmark2 = checkmark2;
+var spellCheck = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 4h2v3h1v-6c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v6h1v-3zM2 1h2v2h-2v-2zM15 1v-1h-3c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h3v-1h-3v-5h3zM10 2.5v-1.5c0-0.55-0.45-1-1-1h-3v7h3c0.55 0 1-0.45 1-1v-1.5c0-0.55-0.137-1-0.688-1 0.55 0 0.688-0.45 0.688-1zM9 6h-2v-2h2v2zM9 3h-2v-2h2v2zM13 9l-6.5 7-3.5-4.5 1.281-1.094 2.219 2.313 5.5-4.719z"
+ }
+ }]
+};
+exports.spellCheck = spellCheck;
+var enter = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 8h-5v-2h5v-2l3 3-3 3zM16 0v13l-6 3v-3h-6v-4h1v3h5v-9l4-2h-9v4h-1v-5z"
+ }
+ }]
+};
+exports.enter = enter;
+var exit = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 10v-2h-5v-2h5v-2l3 3zM11 9v4h-5v3l-6-3v-13h11v5h-1v-4h-8l4 2v9h4v-3z"
+ }
+ }]
+};
+exports.exit = exit;
+var play2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM6 4.5l6 3.5-6 3.5z"
+ }
+ }]
+};
+exports.play2 = play2;
+var pause = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5h2v6h-2zM9 5h2v6h-2z"
+ }
+ }]
+};
+exports.pause = pause;
+var stop = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5h6v6h-6z"
+ }
+ }]
+};
+exports.stop = stop;
+var previous = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 8l4-3v6z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 5h2v6h-2v-6z"
+ }
+ }]
+};
+exports.previous = previous;
+var next = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c4.418 0 8 3.582 8 8s-3.582 8-8 8-8-3.582-8-8 3.582-8 8-8zM8 14.5c3.59 0 6.5-2.91 6.5-6.5s-2.91-6.5-6.5-6.5-6.5 2.91-6.5 6.5 2.91 6.5 6.5 6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 8l-4-3v6z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 5h-2v6h2v-6z"
+ }
+ }]
+};
+exports.next = next;
+var backward = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11 10.5l-3.5-2.5 3.5-2.5zM7 10.5l-3.5-2.5 3.5-2.5z"
+ }
+ }]
+};
+exports.backward = backward;
+var forward2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5.5l3.5 2.5-3.5 2.5zM9 5.5l3.5 2.5-3.5 2.5z"
+ }
+ }]
+};
+exports.forward2 = forward2;
+var play3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 2l10 6-10 6z"
+ }
+ }]
+};
+exports.play3 = play3;
+var pause2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 2h5v12h-5zM9 2h5v12h-5z"
+ }
+ }]
+};
+exports.pause2 = pause2;
+var stop2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 2h12v12h-12z"
+ }
+ }]
+};
+exports.stop2 = stop2;
+var backward2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 2.5v5l5-5v11l-5-5v5l-5.5-5.5z"
+ }
+ }]
+};
+exports.backward2 = backward2;
+var forward3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 13.5v-5l-5 5v-11l5 5v-5l5.5 5.5z"
+ }
+ }]
+};
+exports.forward3 = forward3;
+var first = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 14v-12h2v5.5l5-5v5l5-5v11l-5-5v5l-5-5v5.5z"
+ }
+ }]
+};
+exports.first = first;
+var last = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 2v12h-2v-5.5l-5 5v-5l-5 5v-11l5 5v-5l5 5v-5.5z"
+ }
+ }]
+};
+exports.last = last;
+var previous2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 14v-12h2v5.5l5-5v11l-5-5v5.5z"
+ }
+ }]
+};
+exports.previous2 = previous2;
+var next2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 2v12h-2v-5.5l-5 5v-11l5 5v-5.5z"
+ }
+ }]
+};
+exports.next2 = next2;
+var eject = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 12h16v2h-16zM8 2l8 8h-16z"
+ }
+ }]
+};
+exports.eject = eject;
+var volumeHigh = {
+ "viewBox": "0 0 17 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.907 14.407c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.369-1.369 2.123-3.19 2.123-5.127s-0.754-3.757-2.123-5.127c-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.653 1.653 2.563 3.85 2.563 6.187s-0.91 4.534-2.563 6.187c-0.146 0.146-0.338 0.22-0.53 0.22zM11.243 12.993c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 2.047-2.047 2.047-5.378 0-7.425-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773c-0.146 0.146-0.338 0.22-0.53 0.22v0zM8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeHigh = volumeHigh;
+var volumeMedium = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.243 12.993c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 2.047-2.047 2.047-5.378 0-7.425-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773c-0.146 0.146-0.338 0.22-0.53 0.22v0zM8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeMedium = volumeMedium;
+var volumeLow = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeLow = volumeLow;
+var volumeMute = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeMute = volumeMute;
+var volumeMute2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 9.674v1.326h-1.326l-1.674-1.674-1.674 1.674h-1.326v-1.326l1.674-1.674-1.674-1.674v-1.326h1.326l1.674 1.674 1.674-1.674h1.326v1.326l-1.674 1.674 1.674 1.674z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeMute2 = volumeMute2;
+var volumeIncrease = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeIncrease = volumeIncrease;
+var volumeDecrease = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 7h8v2h-8v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeDecrease = volumeDecrease;
+var loop = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 5h10v3l4-4-4-4v3h-12v6h2zM14 11h-10v-3l-4 4 4 4v-3h12v-6h-2z"
+ }
+ }]
+};
+exports.loop = loop;
+var loop2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.901 2.599c-1.463-1.597-3.565-2.599-5.901-2.599-4.418 0-8 3.582-8 8h1.5c0-3.59 2.91-6.5 6.5-6.5 1.922 0 3.649 0.835 4.839 2.161l-2.339 2.339h5.5v-5.5l-2.099 2.099z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 8c0 3.59-2.91 6.5-6.5 6.5-1.922 0-3.649-0.835-4.839-2.161l2.339-2.339h-5.5v5.5l2.099-2.099c1.463 1.597 3.565 2.599 5.901 2.599 4.418 0 8-3.582 8-8h-1.5z"
+ }
+ }]
+};
+exports.loop2 = loop2;
+var infinite = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.25 11.75c-1.002 0-1.943-0.39-2.652-1.098l-1.598-1.598-1.598 1.598c-0.708 0.708-1.65 1.098-2.652 1.098s-1.944-0.39-2.652-1.098c-0.708-0.708-1.098-1.65-1.098-2.652s0.39-1.943 1.098-2.652c0.708-0.708 1.65-1.098 2.652-1.098s1.943 0.39 2.652 1.098l1.598 1.598 1.598-1.598c0.708-0.708 1.65-1.098 2.652-1.098s1.944 0.39 2.652 1.098c0.708 0.708 1.098 1.65 1.098 2.652s-0.39 1.943-1.098 2.652c-0.708 0.708-1.65 1.098-2.652 1.098zM10.652 9.598c0.427 0.427 0.994 0.662 1.598 0.662s1.171-0.235 1.598-0.662c0.427-0.427 0.662-0.994 0.662-1.598s-0.235-1.171-0.662-1.598c-0.427-0.427-0.994-0.662-1.598-0.662s-1.171 0.235-1.598 0.662l-1.598 1.598 1.598 1.598zM3.75 5.74c-0.604 0-1.171 0.235-1.598 0.662s-0.662 0.994-0.662 1.598c0 0.604 0.235 1.171 0.662 1.598s0.994 0.662 1.598 0.662c0.604 0 1.171-0.235 1.598-0.662l1.598-1.598-1.598-1.598c-0.427-0.427-0.994-0.662-1.598-0.662v0z"
+ }
+ }]
+};
+exports.infinite = infinite;
+var shuffle = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 11h-1.586l-2.5-2.5 2.5-2.5h1.586v2.5l3.5-3.5-3.5-3.5v2.5h-2c-0.265 0-0.52 0.105-0.707 0.293l-2.793 2.793-2.793-2.793c-0.188-0.188-0.442-0.293-0.707-0.293h-3v2h2.586l2.5 2.5-2.5 2.5h-2.586v2h3c0.265 0 0.52-0.105 0.707-0.293l2.793-2.793 2.793 2.793c0.188 0.188 0.442 0.293 0.707 0.293h2v2.5l3.5-3.5-3.5-3.5v2.5z"
+ }
+ }]
+};
+exports.shuffle = shuffle;
+var arrowUpLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 11.5l4-4 8.5 8.5 3.5-3.5-8.5-8.5 4-4h-11.5v11.5z"
+ }
+ }]
+};
+exports.arrowUpLeft = arrowUpLeft;
+var arrowUp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0.5l-7.5 7.5h4.5v8h6v-8h4.5z"
+ }
+ }]
+};
+exports.arrowUp = arrowUp;
+var arrowUpRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 0l4 4-8.5 8.5 3.5 3.5 8.5-8.5 4 4v-11.5h-11.5z"
+ }
+ }]
+};
+exports.arrowUpRight = arrowUpRight;
+var arrowRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.5 8l-7.5-7.5v4.5h-8v6h8v4.5z"
+ }
+ }]
+};
+exports.arrowRight = arrowRight;
+var arrowDownRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 4.5l-4 4-8.5-8.5-3.5 3.5 8.5 8.5-4 4h11.5v-11.5z"
+ }
+ }]
+};
+exports.arrowDownRight = arrowDownRight;
+var arrowDown = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 15.5l7.5-7.5h-4.5v-8h-6v8h-4.5z"
+ }
+ }]
+};
+exports.arrowDown = arrowDown;
+var arrowDownLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 16l-4-4 8.5-8.5-3.5-3.5-8.5 8.5-4-4v11.5h11.5z"
+ }
+ }]
+};
+exports.arrowDownLeft = arrowDownLeft;
+var arrowLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.5 8l7.5 7.5v-4.5h8v-6h-8v-4.5z"
+ }
+ }]
+};
+exports.arrowLeft = arrowLeft;
+var arrowUpLeft2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.707 12.293l-8.293-8.293h3.586c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.404 0-0.769 0.244-0.924 0.617-0.051 0.124-0.076 0.254-0.076 0.383h-0.001v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-3.586l8.293 8.293c0.195 0.195 0.451 0.293 0.707 0.293s0.512-0.098 0.707-0.293c0.391-0.39 0.391-1.024 0-1.414z"
+ }
+ }]
+};
+exports.arrowUpLeft2 = arrowUpLeft2;
+var arrowUp2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.707 6.293l-5-5c-0.39-0.391-1.024-0.391-1.414 0l-5 5c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l3.293-3.293v9.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-9.586l3.293 3.293c0.195 0.195 0.451 0.293 0.707 0.293s0.512-0.098 0.707-0.293c0.391-0.391 0.391-1.024 0-1.414z"
+ }
+ }]
+};
+exports.arrowUp2 = arrowUp2;
+var arrowUpRight2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.707 13.707l8.293-8.293v3.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.404-0.244-0.769-0.617-0.924-0.124-0.051-0.254-0.076-0.383-0.076v-0.001h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1h3.586l-8.293 8.293c-0.195 0.195-0.293 0.451-0.293 0.707s0.098 0.512 0.293 0.707c0.39 0.391 1.024 0.391 1.414 0z"
+ }
+ }]
+};
+exports.arrowUpRight2 = arrowUpRight2;
+var arrowRight2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.707 13.707l5-5c0.391-0.39 0.391-1.024 0-1.414l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l3.293 3.293h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.195 0.195-0.293 0.451-0.293 0.707s0.098 0.512 0.293 0.707c0.391 0.391 1.024 0.391 1.414 0z"
+ }
+ }]
+};
+exports.arrowRight2 = arrowRight2;
+var arrowDownRight2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.293 3.707l8.293 8.293h-3.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h6c0.404 0 0.769-0.244 0.924-0.617 0.051-0.124 0.076-0.254 0.076-0.383h0.001v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1v3.586l-8.293-8.293c-0.195-0.195-0.451-0.293-0.707-0.293s-0.512 0.098-0.707 0.293c-0.391 0.39-0.391 1.024 0 1.414z"
+ }
+ }]
+};
+exports.arrowDownRight2 = arrowDownRight2;
+var arrowDown2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.707 9.707l-5 5c-0.39 0.391-1.024 0.391-1.414 0l-5-5c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l3.293 3.293v-9.586c0-0.552 0.448-1 1-1s1 0.448 1 1v9.586l3.293-3.293c0.195-0.195 0.451-0.293 0.707-0.293s0.512 0.098 0.707 0.293c0.391 0.391 0.391 1.024 0 1.414z"
+ }
+ }]
+};
+exports.arrowDown2 = arrowDown2;
+var arrowDownLeft2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.293 2.293l-8.293 8.293v-3.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v6c0 0.404 0.244 0.769 0.617 0.924 0.124 0.051 0.254 0.076 0.383 0.076v0.001l6-0c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3.586l8.293-8.293c0.195-0.195 0.293-0.451 0.293-0.707s-0.098-0.512-0.293-0.707c-0.39-0.391-1.024-0.391-1.414 0v0z"
+ }
+ }]
+};
+exports.arrowDownLeft2 = arrowDownLeft2;
+var arrowLeft2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.293 13.707l-5-5c-0.391-0.39-0.391-1.024 0-1.414l5-5c0.391-0.391 1.024-0.391 1.414 0s0.391 1.024 0 1.414l-3.293 3.293h9.586c0.552 0 1 0.448 1 1s-0.448 1-1 1h-9.586l3.293 3.293c0.195 0.195 0.293 0.451 0.293 0.707s-0.098 0.512-0.293 0.707c-0.391 0.391-1.024 0.391-1.414 0z"
+ }
+ }]
+};
+exports.arrowLeft2 = arrowLeft2;
+var circleUp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 8c0 4.418 3.582 8 8 8s8-3.582 8-8-3.582-8-8-8-8 3.582-8 8zM14.5 8c0 3.59-2.91 6.5-6.5 6.5s-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.043 10.457l1.414-1.414-4.457-4.457-4.457 4.457 1.414 1.414 3.043-3.043z"
+ }
+ }]
+};
+exports.circleUp = circleUp;
+var circleRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.543 11.043l1.414 1.414 4.457-4.457-4.457-4.457-1.414 1.414 3.043 3.043z"
+ }
+ }]
+};
+exports.circleRight = circleRight;
+var circleDown = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8 3.582 8 8 8 8-3.582 8-8zM1.5 8c0-3.59 2.91-6.5 6.5-6.5s6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.957 5.543l-1.414 1.414 4.457 4.457 4.457-4.457-1.414-1.414-3.043 3.043z"
+ }
+ }]
+};
+exports.circleDown = circleDown;
+var circleLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.457 4.957l-1.414-1.414-4.457 4.457 4.457 4.457 1.414-1.414-3.043-3.043z"
+ }
+ }]
+};
+exports.circleLeft = circleLeft;
+var tab = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 0h1v8h-1v-8z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 8h1v8h-1v-8z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 11h11v2h-11v2.5l-3.5-3.5 3.5-3.5v2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 5h-11v-2h11v-2.5l3.5 3.5-3.5 3.5z"
+ }
+ }]
+};
+exports.tab = tab;
+var moveUp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 8v6h1v-6h2.5l-3-3-3 3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 3h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 3h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 3h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 6.5h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.5 7h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 7h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 4.5h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 5h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 11v3h-3v-3h3zM6 10h-5v5h5v-5z"
+ }
+ }]
+};
+exports.moveUp = moveUp;
+var moveDown = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 11v-6h-1v6h-2.5l3 3 3-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 4v3h-3v-3h3zM6 3h-5v5h5v-5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 10h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 10h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 10h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 13.5h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.5 14h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 14h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 11.5h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12h1v1.5h-1v-1.5z"
+ }
+ }]
+};
+exports.moveDown = moveDown;
+var sortAlphaAsc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 16h-4c-0.184 0-0.354-0.101-0.441-0.264s-0.077-0.36 0.025-0.513l3.482-5.223h-3.066c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h4c0.184 0 0.354 0.101 0.441 0.264s0.077 0.36-0.025 0.513l-3.482 5.223h3.066c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.947 6.276l-3-6c-0.085-0.169-0.258-0.276-0.447-0.276s-0.363 0.107-0.447 0.276l-3 6c-0.123 0.247-0.023 0.547 0.224 0.671 0.072 0.036 0.148 0.053 0.223 0.053 0.183 0 0.36-0.101 0.448-0.277l0.862-1.724h3.382l0.862 1.724c0.123 0.247 0.424 0.347 0.671 0.224s0.347-0.424 0.224-0.671zM11.309 4l1.191-2.382 1.191 2.382h-2.382z"
+ }
+ }]
+};
+exports.sortAlphaAsc = sortAlphaAsc;
+var sortAlphaDesc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 7h-4c-0.184 0-0.354-0.101-0.441-0.264s-0.077-0.36 0.025-0.513l3.482-5.223h-3.066c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h4c0.184 0 0.354 0.102 0.441 0.264s0.077 0.36-0.025 0.513l-3.482 5.223h3.066c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.947 15.276l-3-6c-0.085-0.169-0.258-0.276-0.447-0.276s-0.363 0.107-0.447 0.276l-3 6c-0.123 0.247-0.023 0.547 0.224 0.671 0.072 0.036 0.148 0.053 0.223 0.053 0.183 0 0.36-0.101 0.448-0.277l0.862-1.724h3.382l0.862 1.724c0.123 0.247 0.424 0.347 0.671 0.224s0.347-0.424 0.224-0.671zM11.309 13l1.191-2.382 1.191 2.382h-2.382z"
+ }
+ }]
+};
+exports.sortAlphaDesc = sortAlphaDesc;
+var sortNumericAsc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 7c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-0.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h1c0.276 0 0.5 0.224 0.5 0.5v6c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 9h-3c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h2.5v2h-2.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-6c0-0.276-0.224-0.5-0.5-0.5zM12 10h2v2h-2v-2z"
+ }
+ }]
+};
+exports.sortNumericAsc = sortNumericAsc;
+var sortNumbericDesc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 16c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-0.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h1c0.276 0 0.5 0.224 0.5 0.5v6c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-3c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h2.5v2h-2.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-6c0-0.276-0.224-0.5-0.5-0.5zM12 1h2v2h-2v-2z"
+ }
+ }]
+};
+exports.sortNumbericDesc = sortNumbericDesc;
+var sortAmountAsc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9h9v2h-9v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 6h7v2h-7v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 3h5v2h-5v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 0h3v2h-3v-2z"
+ }
+ }]
+};
+exports.sortAmountAsc = sortAmountAsc;
+var sortAmountDesc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 0h9v2h-9v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 3h7v2h-7v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 6h5v2h-5v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9h3v2h-3v-2z"
+ }
+ }]
+};
+exports.sortAmountDesc = sortAmountDesc;
+var command = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 14c-1.379 0-2.5-1.121-2.5-2.5v-1.5h-2v1.5c0 1.379-1.122 2.5-2.5 2.5s-2.5-1.121-2.5-2.5 1.122-2.5 2.5-2.5h1.5v-2h-1.5c-1.378 0-2.5-1.122-2.5-2.5s1.122-2.5 2.5-2.5 2.5 1.122 2.5 2.5v1.5h2v-1.5c0-1.378 1.121-2.5 2.5-2.5s2.5 1.122 2.5 2.5-1.121 2.5-2.5 2.5h-1.5v2h1.5c1.379 0 2.5 1.121 2.5 2.5s-1.121 2.5-2.5 2.5zM10 10v1.5c0 0.827 0.673 1.5 1.5 1.5s1.5-0.673 1.5-1.5-0.673-1.5-1.5-1.5h-1.5zM4.5 10c-0.827 0-1.5 0.673-1.5 1.5s0.673 1.5 1.5 1.5 1.5-0.673 1.5-1.5v-1.5h-1.5zM7 9h2v-2h-2v2zM10 6h1.5c0.827 0 1.5-0.673 1.5-1.5s-0.673-1.5-1.5-1.5-1.5 0.673-1.5 1.5v1.5zM4.5 3c-0.827 0-1.5 0.673-1.5 1.5s0.673 1.5 1.5 1.5h1.5v-1.5c0-0.827-0.673-1.5-1.5-1.5z"
+ }
+ }]
+};
+exports.command = command;
+var shift = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.5 14h-5c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-2c-0.202 0-0.385-0.122-0.462-0.309s-0.035-0.402 0.108-0.545l5-5c0.195-0.195 0.512-0.195 0.707 0l5 5c0.143 0.143 0.186 0.358 0.108 0.545s-0.26 0.309-0.462 0.309h-2v5.5c0 0.276-0.224 0.5-0.5 0.5zM6 13h4v-5.5c0-0.276 0.224-0.5 0.5-0.5h1.293l-3.793-3.793-3.793 3.793h1.293c0.276 0 0.5 0.224 0.5 0.5v5.5z"
+ }
+ }]
+};
+exports.shift = shift;
+var ctrl = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 7c-0.139 0-0.278-0.058-0.377-0.171l-3.124-3.57-3.124 3.57c-0.182 0.208-0.498 0.229-0.706 0.047s-0.229-0.498-0.047-0.706l3.5-4c0.095-0.108 0.232-0.171 0.376-0.171s0.281 0.062 0.376 0.171l3.5 4c0.182 0.208 0.161 0.524-0.047 0.706-0.095 0.083-0.212 0.124-0.329 0.124z"
+ }
+ }]
+};
+exports.ctrl = ctrl;
+var opt = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 13h-4c-0.198 0-0.377-0.116-0.457-0.297l-3.868-8.703h-4.675c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h5c0.198 0 0.377 0.116 0.457 0.297l3.868 8.703h3.675c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 4h-5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.opt = opt;
+var checkboxChecked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 0h-12c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM7 12.414l-3.707-3.707 1.414-1.414 2.293 2.293 4.793-4.793 1.414 1.414-6.207 6.207z"
+ }
+ }]
+};
+exports.checkboxChecked = checkboxChecked;
+var checkboxUnchecked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 0h-12c-1.1 0-2 0.9-2 2v12c0 1.1 0.9 2 2 2h12c1.1 0 2-0.9 2-2v-12c0-1.1-0.9-2-2-2zM14 14h-12v-12h12v12z"
+ }
+ }]
+};
+exports.checkboxUnchecked = checkboxUnchecked;
+var radioChecked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6zM5 8c0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.657-1.343 3-3 3s-3-1.343-3-3z"
+ }
+ }]
+};
+exports.radioChecked = radioChecked;
+var radioChecked2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 10c-1.105 0-2-0.895-2-2s0.895-2 2-2c1.105 0 2 0.895 2 2s-0.895 2-2 2z"
+ }
+ }]
+};
+exports.radioChecked2 = radioChecked2;
+var radioUnchecked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z"
+ }
+ }]
+};
+exports.radioUnchecked = radioUnchecked;
+var crop = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 4l3-3-1-1-3 3h-7v-3h-2v3h-3v2h3v8h8v3h2v-3h3v-2h-3v-7zM5 5h5l-5 5v-5zM6 11l5-5v5h-5z"
+ }
+ }]
+};
+exports.crop = crop;
+var makeGroup = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 2h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 6h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1zM11 3h2v2h-2v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 10h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1zM5 13h-2v-2h2v2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 10h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 8h-1c-1.336 0-2.591-0.52-3.536-1.464s-1.464-2.2-1.464-3.536v-1c0-1.1-0.9-2-2-2h-4c-1.1 0-2 0.9-2 2v4c0 1.1 0.9 2 2 2h1c1.336 0 2.591 0.52 3.536 1.464s1.464 2.2 1.464 3.536v1c0 1.1 0.9 2 2 2h4c1.1 0 2-0.9 2-2v-4c0-1.1-0.9-2-2-2zM15 14c0 0.265-0.105 0.515-0.295 0.705s-0.44 0.295-0.705 0.295h-4c-0.265 0-0.515-0.105-0.705-0.295s-0.295-0.44-0.295-0.705v-1c0-3.314-2.686-6-6-6h-1c-0.265 0-0.515-0.105-0.705-0.295s-0.295-0.441-0.295-0.705v-4c0-0.265 0.105-0.515 0.295-0.705s0.44-0.295 0.705-0.295h4c0.265 0 0.515 0.105 0.705 0.295s0.295 0.44 0.295 0.705v1c0 3.314 2.686 6 6 6h1c0.265 0 0.515 0.105 0.705 0.295s0.295 0.44 0.295 0.705v4z"
+ }
+ }]
+};
+exports.makeGroup = makeGroup;
+var ungroup = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 7.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.413 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.337-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 7.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.412 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.338-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 12.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.413 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.337-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 12.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.412 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.338-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.251 2.5l1.749-1.749v-0.751h-0.751l-1.749 1.749-1.749-1.749h-0.751v0.751l1.749 1.749-1.749 1.749v0.751h0.751l1.749-1.749 1.749 1.749h0.751v-0.751z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 12h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 9h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 7h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 13h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 10h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 6h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 2h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 2h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 2h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 15h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 15h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 15h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 15h2v1h-2v-1z"
+ }
+ }]
+};
+exports.ungroup = ungroup;
+var scissors = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.279 10.62c-1.042-1.628-2.829-2.345-3.992-1.601-0.1 0.064-0.193 0.138-0.277 0.218l-1.241-1.942 2.867-4.5c0.235-0.433 0.321-0.949 0.207-1.468-0.109-0.496-0.383-0.913-0.752-1.207l-0.192-0.122-3.398 5.314-3.398-5.314-0.192 0.122c-0.369 0.294-0.643 0.711-0.752 1.207-0.114 0.519-0.027 1.035 0.207 1.468l2.867 4.5-1.241 1.942c-0.085-0.081-0.177-0.154-0.277-0.218-1.163-0.744-2.95-0.028-3.992 1.601s-0.944 3.551 0.219 4.296c1.163 0.744 2.95 0.028 3.992-1.601l2.567-4.029 2.567 4.029c1.042 1.628 2.829 2.345 3.992 1.601s1.261-2.667 0.219-4.296zM3.67 12.507c-0.469 0.733-1.071 1.089-1.478 1.179-0 0-0 0-0 0-0.133 0.029-0.317 0.047-0.443-0.033-0.139-0.089-0.231-0.324-0.247-0.629-0.025-0.494 0.151-1.076 0.483-1.594 0.469-0.733 1.071-1.089 1.478-1.179 0.133-0.029 0.317-0.047 0.443 0.033 0.139 0.089 0.231 0.324 0.247 0.629 0.025 0.495-0.151 1.076-0.483 1.594zM7.5 8c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM13.498 13.023c-0.016 0.305-0.108 0.54-0.247 0.629-0.125 0.080-0.31 0.062-0.443 0.033 0 0 0 0-0 0-0.407-0.089-1.009-0.446-1.478-1.179-0.332-0.519-0.508-1.1-0.483-1.594 0.016-0.305 0.108-0.54 0.247-0.629 0.125-0.080 0.31-0.062 0.443-0.033 0.407 0.089 1.009 0.446 1.478 1.179 0.332 0.519 0.508 1.1 0.483 1.594z"
+ }
+ }]
+};
+exports.scissors = scissors;
+var filter = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 1.119-8 2.5v1.5l6 6v5c0 0.552 0.895 1 2 1s2-0.448 2-1v-5l6-6v-1.5c0-1.381-3.582-2.5-8-2.5zM1.475 2.169c0.374-0.213 0.9-0.416 1.52-0.586 1.374-0.376 3.152-0.583 5.005-0.583s3.631 0.207 5.005 0.583c0.62 0.17 1.146 0.372 1.52 0.586 0.247 0.141 0.38 0.26 0.442 0.331-0.062 0.071-0.195 0.19-0.442 0.331-0.374 0.213-0.9 0.416-1.52 0.586-1.374 0.376-3.152 0.583-5.005 0.583s-3.631-0.207-5.005-0.583c-0.62-0.17-1.146-0.372-1.52-0.586-0.247-0.141-0.38-0.26-0.442-0.331 0.062-0.071 0.195-0.19 0.442-0.331z"
+ }
+ }]
+};
+exports.filter = filter;
+var font = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.494 0.253c-1.414 0-2.322-0.253-3.779-0.253-4.708 0-6.903 2.681-6.903 5.404 0 1.604 0.76 2.132 2.259 2.132-0.106-0.232-0.296-0.486-0.296-1.626 0-3.188 1.203-4.117 2.744-4.18 0 0-1.264 12.396-4.934 13.883v0.385h4.947l1.688-8h3.091l0.689-2h-3.358l0.812-3.847c0.929 0.19 1.837 0.38 2.618 0.38 0.971 0 1.858-0.296 2.343-2.533-0.591 0.19-1.224 0.253-1.921 0.253z"
+ }
+ }]
+};
+exports.font = font;
+var ligature = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 13.622c0-0.001 0-0.001 0-0.002l-0.005-6.821-1.992 0.097h-3.936v-0.336c0-1.274 0.091-2.546 0.269-3.042 0.123-0.343 0.353-0.652 0.683-0.919 0.322-0.261 0.643-0.393 0.955-0.393 0.262 0 0.48 0.045 0.647 0.134 0.235 0.134 0.464 0.359 0.682 0.669 0.577 0.82 0.812 1.038 0.939 1.131 0.216 0.158 0.477 0.238 0.776 0.238 0.292 0 0.546-0.109 0.757-0.324 0.209-0.213 0.315-0.479 0.315-0.792 0-0.335-0.139-0.691-0.414-1.057-0.268-0.358-0.683-0.652-1.232-0.875-0.536-0.218-1.14-0.329-1.793-0.329-0.949 0-1.813 0.228-2.568 0.678-0.757 0.451-1.337 1.077-1.725 1.863-0.359 0.728-0.333 2.105-0.355 3.355h-1.965v1.116h1.962v5.073c0 1.12-0.342 1.422-0.472 1.583-0.179 0.222-0.509 0.455-0.944 0.455h-0.604v0.878h6.021v-0.878h-0.105c-1.424 0-1.828-0.154-1.828-1.888 0-0 0-0.001 0-0.001l-0.001-5.222h2.191c1.163 0 1.43 0.054 1.491 0.077 0.074 0.028 0.169 0.075 0.204 0.143 0.014 0.026 0.081 0.391 0.081 1.296v3.917c0 0.913-0.111 1.217-0.179 1.319-0.145 0.222-0.319 0.345-0.854 0.358v0.879h4.588v-0.873c-1.431 0-1.588-0.153-1.588-1.505z"
+ }
+ }]
+};
+exports.ligature = ligature;
+var ligature2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.364 14.335c-0.183 0-1.307-0.206-1.375-0.458-0.161-0.619-0.183-1.284-0.183-2.040v-8.453c0-1.261 0.252-1.994 0.252-1.994-0.023-0.115-0.138-0.367-0.275-0.367h-0.069c-0.069 0-0.871 0.504-1.605 0.504-0.596-0-0.967-0.527-1.655-0.527-2.892 0-4.249 2.349-4.249 5.672v0.173c0 0.069-0.046 0.138-0.115 0.138h-0.94c-0.115 0-0.344 0.642-0.344 0.94 0 0.092 0.023 0.137 0.069 0.137h1.215c0.069 0 0.115 0.092 0.115 0.16 0 2.040-0.023 4.052-0.023 4.052 0 0.321-0.023 1.031-0.16 1.605-0.069 0.252-1.123 0.458-1.398 0.458-0.115 0-0.115 0.55 0 0.665 0.94-0.046 1.559-0.115 2.499-0.115 0.871 0 1.536 0.069 2.453 0.115 0.046-0.138 0.046-0.665-0.069-0.665-0.183 0-1.307-0.206-1.375-0.458-0.16-0.619-0.16-1.284-0.183-2.040v-3.639c0-0.069 0.069-0.138 0.138-0.138h2.361c0.16-0.321 0.275-0.711 0.275-0.917 0-0.138 0-0.16-0.115-0.16h-2.544c-0.046 0-0.115-0.069-0.115-0.115v-0.825c0-2.040 0.836-3.837 2.234-3.837 0.99 0 1.854 0.642 1.854 3.093 0 0 0 0 0 0 0.003 0.063 0.005 0.114 0.005 0.148v6.825c0 0.321-0.023 1.031-0.16 1.605-0.069 0.252-1.123 0.458-1.398 0.458-0.115 0-0.115 0.55 0 0.665 0.94-0.046 1.559-0.115 2.499-0.115 0.871 0 1.536 0.069 2.453 0.115 0.046-0.137 0.046-0.665-0.069-0.665z"
+ }
+ }]
+};
+exports.ligature2 = ligature2;
+var textHeight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 12h2l-2.5 3-2.5-3h2v-8h-2l2.5-3 2.5 3h-2zM10 1v4l-1-2h-3v11h2v1h-6v-1h2v-11h-3l-1 2v-4z"
+ }
+ }]
+};
+exports.textHeight = textHeight;
+var textWidth = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 14v2l-3-2.5 3-2.5v2h8v-2l3 2.5-3 2.5v-2zM13 1v4l-1-2h-3v7h2v1h-6v-1h2v-7h-3l-1 2v-4z"
+ }
+ }]
+};
+exports.textWidth = textWidth;
+var fontSize = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 8h6v2h-2v6h-2v-6h-2zM15 4h-3.934v12h-2.133v-12h-3.934v-2h10z"
+ }
+ }]
+};
+exports.fontSize = fontSize;
+var bold = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.061 7.573c0.586-0.696 0.939-1.594 0.939-2.573 0-2.206-1.794-4-4-4h-5v14h6c2.206 0 4-1.794 4-4 0-1.452-0.778-2.726-1.939-3.427zM6 3h1.586c0.874 0 1.586 0.897 1.586 2s-0.711 2-1.586 2h-1.586v-4zM8.484 13h-2.484v-4h2.484c0.913 0 1.656 0.897 1.656 2s-0.743 2-1.656 2z"
+ }
+ }]
+};
+exports.bold = bold;
+var underline = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 1h2v6.5c0 2.485-2.239 4.5-5 4.5s-5-2.015-5-4.5v-6.5h2v6.5c0 0.628 0.285 1.23 0.802 1.695 0.577 0.519 1.357 0.805 2.198 0.805s1.621-0.286 2.198-0.805c0.517-0.466 0.802-1.068 0.802-1.695v-6.5zM3 13h10v2h-10z"
+ }
+ }]
+};
+exports.underline = underline;
+var italic = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 1v1h-2l-5 12h2v1h-7v-1h2l5-12h-2v-1z"
+ }
+ }]
+};
+exports.italic = italic;
+var strikethrough = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8v1h-3.664c0.43 0.602 0.664 1.292 0.664 2 0 1.107-0.573 2.172-1.572 2.921-0.927 0.696-2.145 1.079-3.428 1.079s-2.501-0.383-3.428-1.079c-0.999-0.749-1.572-1.814-1.572-2.921h2c0 1.084 1.374 2 3 2s3-0.916 3-2c0-1.084-1.374-2-3-2h-8v-1h4.68c-0.037-0.026-0.073-0.052-0.108-0.079-0.999-0.749-1.572-1.814-1.572-2.921s0.573-2.172 1.572-2.921c0.927-0.696 2.145-1.079 3.428-1.079s2.501 0.383 3.428 1.079c0.999 0.749 1.572 1.814 1.572 2.921h-2c0-1.084-1.374-2-3-2s-3 0.916-3 2c0 1.084 1.374 2 3 2 1.234 0 2.407 0.354 3.32 1h4.68z"
+ }
+ }]
+};
+exports.strikethrough = strikethrough;
+var omega = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 14h4l1-2v4h-6v-3.347c2.049-0.883 3.5-3.081 3.5-5.653 0-3.35-2.462-5.973-5.5-5.973s-5.5 2.622-5.5 5.973c0 2.572 1.451 4.77 3.5 5.653v3.347h-6v-4l1 2h4v-0.509c-2.932-1.038-5-3.553-5-6.491 0-3.866 3.582-7 8-7s8 3.134 8 7c0 2.938-2.068 5.452-5 6.491v0.509z"
+ }
+ }]
+};
+exports.omega = omega;
+var sigma = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.713 11.48l0.694-1.48h0.594l-1 6h-15v-1.16l5.18-6.113-5.18-5.18v-3.547h15.313l0.688 4h-0.537l-0.293-0.607c-0.552-1.146-0.967-1.393-2.17-1.393h-10.344l5.517 5.516-4.647 5.483h8.474c1.813 0 2.291-0.65 2.713-1.52z"
+ }
+ }]
+};
+exports.sigma = sigma;
+var pageBreak = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 8h2v1h-2zM3 8h3v1h-3zM7 8h2v1h-2zM10 8h3v1h-3zM14 8h2v1h-2zM13.75 0l0.25 7h-12l0.25-7h0.5l0.25 6h10l0.25-6zM2.25 16l-0.25-6h12l-0.25 6h-0.5l-0.25-5h-10l-0.25 5z"
+ }
+ }]
+};
+exports.pageBreak = pageBreak;
+var superscript = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 3.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM10.563 4h-2.125l-2.938 2.938-2.938-2.938h-2.125l4 4-4 4h2.125l2.938-2.938 2.938 2.938h2.125l-4-4z"
+ }
+ }]
+};
+exports.superscript = superscript;
+var subscript = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 14.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM10.563 4h-2.125l-2.938 2.938-2.938-2.938h-2.125l4 4-4 4h2.125l2.938-2.938 2.938 2.938h2.125l-4-4z"
+ }
+ }]
+};
+exports.subscript = subscript;
+var superscript2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM5.432 5h1.137l0.9 3h-2.937l0.9-3zM11 13l2.5-4 2.5 4h-5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 2h-1c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2c-0.827 0-1.5 0.673-1.5 1.5 0 0.384 0.145 0.734 0.383 1 0.275 0.307 0.674 0.5 1.117 0.5h1c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2c0.827 0 1.5-0.673 1.5-1.5 0-0.384-0.145-0.734-0.383-1-0.275-0.307-0.674-0.5-1.117-0.5z"
+ }
+ }]
+};
+exports.superscript2 = superscript2;
+var subscript2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM5.432 5h1.137l0.9 3h-2.937l0.9-3zM16 3l-2.5 4-2.5-4h5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 13h-1c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2c-0.827 0-1.5 0.673-1.5 1.5 0 0.384 0.145 0.734 0.383 1 0.275 0.307 0.674 0.5 1.117 0.5h1c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2c0.827 0 1.5-0.673 1.5-1.5 0-0.384-0.145-0.734-0.383-1-0.275-0.307-0.674-0.5-1.117-0.5z"
+ }
+ }]
+};
+exports.subscript2 = subscript2;
+var textColor = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM7.432 5h1.137l0.9 3h-2.937l0.9-3z"
+ }
+ }]
+};
+exports.textColor = textColor;
+var pagebreak = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 6v-6h12v6h-1v-5h-10v5zM16 9v7h-12v-7h1v6h10v-6zM8 7h2v1h-2zM5 7h2v1h-2zM11 7h2v1h-2zM14 7h2v1h-2zM0 4.5l3 3-3 3z"
+ }
+ }]
+};
+exports.pagebreak = pagebreak;
+var clearFormatting = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 14h9v2h-9zM14 2h-4.727l-2.871 11h-2.067l2.871-11h-4.205v-2h11zM14.528 16l-2.028-2.028-2.028 2.028-0.972-0.972 2.028-2.028-2.028-2.028 0.972-0.972 2.028 2.028 2.028-2.028 0.972 0.972-2.028 2.028 2.028 2.028z"
+ }
+ }]
+};
+exports.clearFormatting = clearFormatting;
+var table = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3v11h16v-11h-16zM6 10v-2h4v2h-4zM10 11v2h-4v-2h4zM10 5v2h-4v-2h4zM5 5v2h-4v-2h4zM1 8h4v2h-4v-2zM11 8h4v2h-4v-2zM11 7v-2h4v2h-4zM1 11h4v2h-4v-2zM11 13v-2h4v2h-4z"
+ }
+ }]
+};
+exports.table = table;
+var table2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1v14h16v-14h-16zM6 10v-3h4v3h-4zM10 11v3h-4v-3h4zM10 3v3h-4v-3h4zM5 3v3h-4v-3h4zM1 7h4v3h-4v-3zM11 7h4v3h-4v-3zM11 6v-3h4v3h-4zM1 11h4v3h-4v-3zM11 14v-3h4v3h-4z"
+ }
+ }]
+};
+exports.table2 = table2;
+var insertTemplate = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 3h2v1h-2zM9 3h2v1h-2zM14 3v4h-3v-1h2v-2h-1v-1zM5 6h2v1h-2zM8 6h2v1h-2zM3 4v2h1v1h-2v-4h3v1zM6 9h2v1h-2zM9 9h2v1h-2zM14 9v4h-3v-1h2v-2h-1v-1zM5 12h2v1h-2zM8 12h2v1h-2zM3 10v2h1v1h-2v-4h3v1zM15 1h-14v14h14v-14zM16 0v0 16h-16v-16h16z"
+ }
+ }]
+};
+exports.insertTemplate = insertTemplate;
+var pilcrow = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 0h8v2h-2v14h-2v-14h-2v14h-2v-8c-2.209 0-4-1.791-4-4s1.791-4 4-4z"
+ }
+ }]
+};
+exports.pilcrow = pilcrow;
+var ltr = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-2.209 0-4 1.791-4 4s1.791 4 4 4v8h2v-14h2v14h2v-14h2v-2h-8zM0 11l4-4-4-4z"
+ }
+ }]
+};
+exports.ltr = ltr;
+var rtl = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 0c-2.209 0-4 1.791-4 4s1.791 4 4 4v8h2v-14h2v14h2v-14h2v-2h-8zM16 3l-4 4 4 4z"
+ }
+ }]
+};
+exports.rtl = rtl;
+var section = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.749 16c-0.771 0-1.424-0.225-1.939-0.669-0.519-0.447-0.782-0.969-0.782-1.552 0-0.283 0.103-0.527 0.307-0.726 0.207-0.202 0.465-0.309 0.748-0.309 0.281 0 0.534 0.1 0.732 0.29 0.195 0.187 0.294 0.435 0.294 0.736 0 0.177-0.029 0.372-0.086 0.58-0.056 0.206-0.068 0.312-0.068 0.364 0 0.058 0.014 0.126 0.121 0.199 0.199 0.138 0.439 0.204 0.732 0.204 0.353 0 0.667-0.123 0.962-0.375 0.29-0.249 0.431-0.505 0.431-0.782 0-0.308-0.082-0.575-0.252-0.816-0.287-0.402-0.826-0.874-1.603-1.401-1.248-0.835-2.079-1.559-2.54-2.211-0.358-0.511-0.539-1.061-0.539-1.636 0-0.579 0.19-1.155 0.564-1.713 0.32-0.477 0.794-0.908 1.41-1.283-0.33-0.355-0.577-0.689-0.736-0.995-0.201-0.387-0.303-0.787-0.303-1.189 0-0.747 0.295-1.393 0.878-1.92s1.31-0.795 2.161-0.795c0.783 0 1.441 0.22 1.956 0.654 0.521 0.439 0.785 0.952 0.785 1.524 0 0.292-0.109 0.553-0.324 0.776l-0.004 0.004c-0.125 0.124-0.353 0.271-0.735 0.271-0.299 0-0.561-0.098-0.758-0.283-0.196-0.184-0.296-0.405-0.296-0.656 0-0.108 0.027-0.272 0.084-0.515 0.028-0.115 0.042-0.221 0.042-0.316 0-0.162-0.058-0.285-0.183-0.39-0.129-0.108-0.314-0.161-0.565-0.161-0.389 0-0.708 0.118-0.975 0.361s-0.399 0.533-0.399 0.883c0 0.315 0.071 0.574 0.212 0.771 0.267 0.374 0.731 0.778 1.378 1.201 1.315 0.853 2.233 1.636 2.727 2.325 0.365 0.518 0.549 1.068 0.549 1.637 0 0.572-0.186 1.148-0.552 1.714-0.316 0.487-0.793 0.926-1.42 1.308 0.347 0.367 0.591 0.688 0.743 0.977 0.189 0.359 0.284 0.751 0.284 1.165 0 0.776-0.296 1.435-0.879 1.96s-1.31 0.79-2.161 0.79zM6.975 5.568c-0.753 0.452-1.12 0.972-1.12 1.583 0 0.356 0.102 0.674 0.31 0.973 0.311 0.436 0.926 0.97 1.825 1.583 0.381 0.259 0.724 0.511 1.025 0.751 0.767-0.461 1.14-0.974 1.14-1.565 0-0.322-0.127-0.668-0.378-1.030-0.263-0.378-0.826-0.872-1.674-1.467-0.443-0.306-0.821-0.583-1.128-0.827z"
+ }
+ }]
+};
+exports.section = section;
+var paragraphLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM0 4h10v2h-10zM0 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z"
+ }
+ }]
+};
+exports.paragraphLeft = paragraphLeft;
+var paragraphCenter = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM3 4h10v2h-10zM3 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z"
+ }
+ }]
+};
+exports.paragraphCenter = paragraphCenter;
+var paragraphRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z"
+ }
+ }]
+};
+exports.paragraphRight = paragraphRight;
+var paragraphJustify = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM0 4h16v2h-16zM0 7h16v2h-16zM0 10h16v2h-16zM0 13h16v2h-16z"
+ }
+ }]
+};
+exports.paragraphJustify = paragraphJustify;
+var indentIncrease = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 7h10v2h-10zM6 10h10v2h-10zM0 13h16v2h-16zM0 11v-6l4 3z"
+ }
+ }]
+};
+exports.indentIncrease = indentIncrease;
+var indentDecrease = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 7h10v2h-10zM6 10h10v2h-10zM0 13h16v2h-16zM4 5v6l-4-3z"
+ }
+ }]
+};
+exports.indentDecrease = indentDecrease;
+var share = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 10c0 0 0.919-3 6-3v3l6-4-6-4v3c-4 0-6 2.495-6 5zM11 12h-9v-6h1.967c0.158-0.186 0.327-0.365 0.508-0.534 0.687-0.644 1.509-1.135 2.439-1.466h-6.914v10h13v-4.197l-2 1.333v0.864z"
+ }
+ }]
+};
+exports.share = share;
+var newTab = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 1v12h12v-12h-12zM14 12h-10v-10h10v10zM2 14v-10.5l-1-1v12.5h12.5l-1-1h-10.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.5 4l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5v-6.5z"
+ }
+ }]
+};
+exports.newTab = newTab;
+var embed = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 11.5l1.5 1.5 5-5-5-5-1.5 1.5 3.5 3.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 4.5l-1.5-1.5-5 5 5 5 1.5-1.5-3.5-3.5z"
+ }
+ }]
+};
+exports.embed = embed;
+var embed2 = {
+ "viewBox": "0 0 20 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 11.5l1.5 1.5 5-5-5-5-1.5 1.5 3.5 3.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 4.5l-1.5-1.5-5 5 5 5 1.5-1.5-3.5-3.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.958 2.352l1.085 0.296-3 11-1.085-0.296 3-11z"
+ }
+ }]
+};
+exports.embed2 = embed2;
+var terminal = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1v14h16v-14h-16zM15 14h-14v-12h14v12zM14 3h-12v10h12v-10zM7 8h-1v1h-1v1h-1v-1h1v-1h1v-1h-1v-1h-1v-1h1v1h1v1h1v1zM11 10h-3v-1h3v1z"
+ }
+ }]
+};
+exports.terminal = terminal;
+var share2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 11c-0.706 0-1.342 0.293-1.797 0.763l-6.734-3.367c0.021-0.129 0.032-0.261 0.032-0.396s-0.011-0.267-0.032-0.396l6.734-3.367c0.455 0.47 1.091 0.763 1.797 0.763 1.381 0 2.5-1.119 2.5-2.5s-1.119-2.5-2.5-2.5-2.5 1.119-2.5 2.5c0 0.135 0.011 0.267 0.031 0.396l-6.734 3.367c-0.455-0.47-1.091-0.763-1.797-0.763-1.381 0-2.5 1.119-2.5 2.5s1.119 2.5 2.5 2.5c0.706 0 1.343-0.293 1.797-0.763l6.734 3.367c-0.021 0.129-0.031 0.261-0.031 0.396 0 1.381 1.119 2.5 2.5 2.5s2.5-1.119 2.5-2.5c0-1.381-1.119-2.5-2.5-2.5z"
+ }
+ }]
+};
+exports.share2 = share2;
+var mail = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.467 1.2 2.667 2.667 2.667h10.666c1.468 0 2.667-1.2 2.667-2.667v-10.666c0-1.467-1.199-2.667-2.667-2.667zM4 4h8c0.143 0 0.281 0.031 0.409 0.088l-4.409 5.143-4.409-5.143c0.127-0.058 0.266-0.088 0.409-0.088zM3 11v-6c0-0.021 0.001-0.042 0.002-0.063l2.932 3.421-2.9 2.9c-0.023-0.083-0.034-0.17-0.034-0.258zM12 12h-8c-0.088 0-0.175-0.012-0.258-0.034l2.846-2.846 1.413 1.648 1.413-1.648 2.846 2.846c-0.083 0.023-0.17 0.034-0.258 0.034zM13 11c0 0.088-0.012 0.175-0.034 0.258l-2.9-2.9 2.932-3.421c0.001 0.021 0.002 0.042 0.002 0.063v6z"
+ }
+ }]
+};
+exports.mail = mail;
+var mail2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.468 1.2 2.667 2.667 2.667h10.666c1.467 0 2.667-1.199 2.667-2.667v-10.666c0-1.467-1.2-2.667-2.667-2.667zM13.333 2c0.125 0 0.243 0.036 0.344 0.099l-5.678 4.694-5.677-4.694c0.101-0.063 0.219-0.099 0.344-0.099h10.666zM2.667 14c-0.030 0-0.060-0.002-0.089-0.006l3.525-4.89-0.457-0.457-3.646 3.646v-9.549l6 7.256 6-7.256v9.549l-3.646-3.646-0.457 0.457 3.525 4.89c-0.029 0.004-0.059 0.006-0.088 0.006h-10.666z"
+ }
+ }]
+};
+exports.mail2 = mail2;
+var mail3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.468 1.2 2.667 2.667 2.667h10.666c1.467 0 2.667-1.199 2.667-2.667v-10.666c0-1.467-1.2-2.667-2.667-2.667zM2.854 13.854l-1.207-1.207 4-4 0.457 0.457-3.25 4.75zM2.396 3.104l0.457-0.457 5.146 4.146 5.146-4.146 0.457 0.457-5.604 6.604-5.604-6.604zM13.146 13.854l-3.25-4.75 0.457-0.457 4 4-1.207 1.207z"
+ }
+ }]
+};
+exports.mail3 = mail3;
+var mail4 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4 4h8c0.143 0 0.281 0.031 0.409 0.088l-4.409 5.143-4.409-5.143c0.127-0.058 0.266-0.088 0.409-0.088zM3 11v-6c0-0.021 0.001-0.042 0.002-0.063l2.932 3.421-2.9 2.9c-0.023-0.083-0.034-0.17-0.034-0.258zM12 12h-8c-0.088 0-0.175-0.012-0.258-0.034l2.846-2.846 1.413 1.648 1.413-1.648 2.846 2.846c-0.083 0.023-0.17 0.034-0.258 0.034zM13 11c0 0.088-0.012 0.175-0.034 0.258l-2.9-2.9 2.932-3.421c0.001 0.021 0.002 0.042 0.002 0.063v6z"
+ }
+ }]
+};
+exports.mail4 = mail4;
+var amazon = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.463 13.831c-1.753 1.294-4.291 1.981-6.478 1.981-3.066 0-5.825-1.131-7.912-3.019-0.163-0.147-0.019-0.35 0.178-0.234 2.253 1.313 5.041 2.1 7.919 2.1 1.941 0 4.075-0.403 6.041-1.238 0.294-0.125 0.544 0.197 0.253 0.409z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.191 13c-0.225-0.287-1.481-0.137-2.047-0.069-0.172 0.019-0.197-0.128-0.044-0.238 1.003-0.703 2.647-0.5 2.838-0.266 0.194 0.238-0.050 1.884-0.991 2.672-0.144 0.122-0.281 0.056-0.219-0.103 0.216-0.528 0.688-1.709 0.463-1.997z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.053 11.838l0.003 0.003c0.387-0.341 1.084-0.95 1.478-1.278 0.156-0.125 0.128-0.334 0.006-0.509-0.353-0.488-0.728-0.884-0.728-1.784v-3c0-1.272 0.088-2.438-0.847-3.313-0.738-0.706-1.963-0.956-2.9-0.956-1.831 0-3.875 0.684-4.303 2.947-0.047 0.241 0.131 0.369 0.287 0.403l1.866 0.203c0.175-0.009 0.3-0.181 0.334-0.356 0.159-0.778 0.813-1.156 1.547-1.156 0.397 0 0.847 0.144 1.081 0.5 0.269 0.397 0.234 0.938 0.234 1.397v0.25c-1.116 0.125-2.575 0.206-3.619 0.666-1.206 0.522-2.053 1.584-2.053 3.147 0 2 1.259 3 2.881 3 1.369 0 2.116-0.322 3.172-1.403 0.35 0.506 0.463 0.753 1.103 1.284 0.147 0.078 0.328 0.072 0.456-0.044zM9.113 7.144c0 0.75 0.019 1.375-0.359 2.041-0.306 0.544-0.791 0.875-1.331 0.875-0.737 0-1.169-0.563-1.169-1.394 0-1.641 1.472-1.938 2.863-1.938v0.416z"
+ }
+ }]
+};
+exports.amazon = amazon;
+var google = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.159 6.856v2.744h4.537c-0.184 1.178-1.372 3.45-4.537 3.45-2.731 0-4.959-2.262-4.959-5.050s2.228-5.050 4.959-5.050c1.553 0 2.594 0.663 3.188 1.234l2.172-2.091c-1.394-1.306-3.2-2.094-5.359-2.094-4.422 0-8 3.578-8 8s3.578 8 8 8c4.616 0 7.681-3.247 7.681-7.816 0-0.525-0.056-0.925-0.125-1.325l-7.556-0.003z"
+ }
+ }]
+};
+exports.google = google;
+var google2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM8.119 14c-3.316 0-6-2.684-6-6s2.684-6 6-6c1.619 0 2.975 0.591 4.019 1.569l-1.628 1.569c-0.447-0.428-1.225-0.925-2.391-0.925-2.050 0-3.719 1.697-3.719 3.787s1.672 3.787 3.719 3.787c2.375 0 3.266-1.706 3.403-2.588h-3.403v-2.056h5.666c0.050 0.3 0.094 0.6 0.094 0.994 0.003 3.428-2.294 5.863-5.759 5.863z"
+ }
+ }]
+};
+exports.google2 = google2;
+var google3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM8.119 14c-3.316 0-6-2.684-6-6s2.684-6 6-6c1.619 0 2.975 0.591 4.019 1.569l-1.628 1.569c-0.447-0.428-1.225-0.925-2.391-0.925-2.050 0-3.719 1.697-3.719 3.787s1.672 3.787 3.719 3.787c2.375 0 3.266-1.706 3.403-2.588h-3.403v-2.056h5.666c0.050 0.3 0.094 0.6 0.094 0.994 0.003 3.428-2.294 5.863-5.759 5.863z"
+ }
+ }]
+};
+exports.google3 = google3;
+var googlePlus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.091 7.147v1.747h2.888c-0.116 0.75-0.872 2.197-2.888 2.197-1.737 0-3.156-1.441-3.156-3.216s1.419-3.216 3.156-3.216c0.991 0 1.65 0.422 2.028 0.784l1.381-1.331c-0.888-0.828-2.037-1.331-3.409-1.331-2.816 0.003-5.091 2.278-5.091 5.094s2.275 5.091 5.091 5.091c2.937 0 4.888-2.066 4.888-4.975 0-0.334-0.037-0.591-0.081-0.844h-4.806z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 7h-1.5v-1.5h-1.5v1.5h-1.5v1.5h1.5v1.5h1.5v-1.5h1.5z"
+ }
+ }]
+};
+exports.googlePlus = googlePlus;
+var googlePlus2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 12c-2.212 0-4-1.787-4-4s1.788-4 4-4c1.081 0 1.984 0.394 2.681 1.047l-1.088 1.044c-0.297-0.284-0.816-0.616-1.594-0.616-1.366 0-2.481 1.131-2.481 2.525s1.116 2.525 2.481 2.525c1.584 0 2.178-1.137 2.269-1.725h-2.269v-1.372h3.778c0.034 0.2 0.063 0.4 0.063 0.663 0 2.287-1.531 3.909-3.841 3.909zM14 8h-1v1h-1v-1h-1v-1h1v-1h1v1h1v1z"
+ }
+ }]
+};
+exports.googlePlus2 = googlePlus2;
+var googlePlus3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM6 12c-2.212 0-4-1.787-4-4s1.788-4 4-4c1.081 0 1.984 0.394 2.681 1.047l-1.088 1.044c-0.297-0.284-0.816-0.616-1.594-0.616-1.366 0-2.481 1.131-2.481 2.525s1.116 2.525 2.481 2.525c1.584 0 2.178-1.137 2.269-1.725h-2.269v-1.372h3.778c0.034 0.2 0.063 0.4 0.063 0.663 0 2.287-1.531 3.909-3.841 3.909zM13 8v1h-1v-1h-1v-1h1v-1h1v1h1v1h-1z"
+ }
+ }]
+};
+exports.googlePlus3 = googlePlus3;
+var hangouts = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.997 0c-3.816 0-6.909 3.094-6.909 6.909 0 3.616 3.294 6.547 6.909 6.547v2.544c4.197-2.128 6.916-5.556 6.916-9.091 0-3.816-3.1-6.909-6.916-6.909zM7 8c0 0.828-0.447 1.5-1 1.5v-1.5h-2v-3h3v3zM12 8c0 0.828-0.447 1.5-1 1.5v-1.5h-2v-3h3v3z"
+ }
+ }]
+};
+exports.hangouts = hangouts;
+var googleDrive = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.844 10l-2.884 5h9.072l2.884-5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.506 9l-4.619-8h-5.775l4.619 8z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.534 2l-4.534 7.856 2.888 5 4.534-7.856z"
+ }
+ }]
+};
+exports.googleDrive = googleDrive;
+var facebook = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 3h2.5v-3h-2.5c-1.93 0-3.5 1.57-3.5 3.5v1.5h-2v3h2v8h3v-8h2.5l0.5-3h-3v-1.5c0-0.271 0.229-0.5 0.5-0.5z"
+ }
+ }]
+};
+exports.facebook = facebook;
+var facebook2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h6.5v-7h-2v-2h2v-1c0-1.653 1.347-3 3-3h2v2h-2c-0.55 0-1 0.45-1 1v1h3l-0.5 2h-2.5v7h4.5c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5z"
+ }
+ }]
+};
+exports.facebook2 = facebook2;
+var instagram = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11 2.5c0-0.275 0.225-0.5 0.5-0.5h2c0.275 0 0.5 0.225 0.5 0.5v2c0 0.275-0.225 0.5-0.5 0.5h-2c-0.275 0-0.5-0.225-0.5-0.5v-2zM8 5c1.656 0 3 1.344 3 3s-1.344 3-3 3c-1.656 0-3-1.344-3-3s1.344-3 3-3zM14 13.5v0c0 0.275-0.225 0.5-0.5 0.5h-11c-0.275 0-0.5-0.225-0.5-0.5v0-6.5h1.1c-0.066 0.322-0.1 0.656-0.1 1 0 2.762 2.237 5 5 5s5-2.238 5-5c0-0.344-0.034-0.678-0.1-1h1.1v6.5z"
+ }
+ }]
+};
+exports.instagram = instagram;
+var whatsapp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.641 2.325c-1.497-1.5-3.488-2.325-5.609-2.325-4.369 0-7.925 3.556-7.925 7.928 0 1.397 0.366 2.763 1.059 3.963l-1.125 4.109 4.203-1.103c1.159 0.631 2.463 0.966 3.787 0.966h0.003c0 0 0 0 0 0 4.369 0 7.928-3.556 7.928-7.928 0-2.119-0.825-4.109-2.322-5.609zM8.034 14.525v0c-1.184 0-2.344-0.319-3.356-0.919l-0.241-0.144-2.494 0.653 0.666-2.431-0.156-0.25c-0.663-1.047-1.009-2.259-1.009-3.506 0-3.634 2.956-6.591 6.594-6.591 1.759 0 3.416 0.688 4.659 1.931 1.244 1.247 1.928 2.9 1.928 4.662-0.003 3.637-2.959 6.594-6.591 6.594zM11.647 9.588c-0.197-0.1-1.172-0.578-1.353-0.644s-0.313-0.1-0.447 0.1c-0.131 0.197-0.512 0.644-0.628 0.778-0.116 0.131-0.231 0.15-0.428 0.050s-0.838-0.309-1.594-0.984c-0.588-0.525-0.987-1.175-1.103-1.372s-0.013-0.306 0.088-0.403c0.091-0.088 0.197-0.231 0.297-0.347s0.131-0.197 0.197-0.331c0.066-0.131 0.034-0.247-0.016-0.347s-0.447-1.075-0.609-1.472c-0.159-0.388-0.325-0.334-0.447-0.341-0.116-0.006-0.247-0.006-0.378-0.006s-0.347 0.050-0.528 0.247c-0.181 0.197-0.694 0.678-0.694 1.653s0.709 1.916 0.809 2.050c0.1 0.131 1.397 2.134 3.384 2.991 0.472 0.203 0.841 0.325 1.128 0.419 0.475 0.15 0.906 0.128 1.247 0.078 0.381-0.056 1.172-0.478 1.338-0.941s0.166-0.859 0.116-0.941c-0.047-0.088-0.178-0.137-0.378-0.238z"
+ }
+ }]
+};
+exports.whatsapp = whatsapp;
+var spotify = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.559-8-8-8zM11.681 11.559c-0.159 0.241-0.441 0.319-0.681 0.159-1.881-1.159-4.241-1.4-7.041-0.759-0.281 0.081-0.519-0.119-0.6-0.359-0.081-0.281 0.119-0.519 0.359-0.6 3.041-0.681 5.681-0.4 7.759 0.881 0.281 0.119 0.322 0.438 0.203 0.678zM12.641 9.359c-0.2 0.281-0.559 0.4-0.841 0.2-2.159-1.319-5.441-1.719-7.959-0.919-0.319 0.081-0.681-0.081-0.759-0.4-0.081-0.319 0.081-0.681 0.4-0.759 2.919-0.881 6.519-0.441 9 1.081 0.238 0.119 0.359 0.519 0.159 0.797zM12.719 7.119c-2.559-1.519-6.841-1.681-9.281-0.919-0.4 0.119-0.8-0.119-0.919-0.481-0.119-0.4 0.119-0.8 0.481-0.919 2.841-0.841 7.519-0.681 10.481 1.081 0.359 0.2 0.481 0.681 0.281 1.041-0.203 0.278-0.681 0.397-1.044 0.197z"
+ }
+ }]
+};
+exports.spotify = spotify;
+var telegram = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM11.931 5.484l-1.313 6.184c-0.091 0.441-0.356 0.544-0.725 0.341l-2-1.478-0.959 0.934c-0.112 0.109-0.2 0.2-0.4 0.2-0.259 0-0.216-0.097-0.303-0.344l-0.681-2.237-1.978-0.616c-0.428-0.131-0.431-0.425 0.097-0.634l7.706-2.975c0.35-0.159 0.691 0.084 0.556 0.625z"
+ }
+ }]
+};
+exports.telegram = telegram;
+var twitter = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 3.538c-0.588 0.263-1.222 0.438-1.884 0.516 0.678-0.406 1.197-1.050 1.444-1.816-0.634 0.375-1.338 0.65-2.084 0.797-0.6-0.638-1.453-1.034-2.397-1.034-1.813 0-3.281 1.469-3.281 3.281 0 0.256 0.028 0.506 0.084 0.747-2.728-0.138-5.147-1.444-6.766-3.431-0.281 0.484-0.444 1.050-0.444 1.65 0 1.138 0.578 2.144 1.459 2.731-0.538-0.016-1.044-0.166-1.488-0.409 0 0.013 0 0.028 0 0.041 0 1.591 1.131 2.919 2.634 3.219-0.275 0.075-0.566 0.116-0.866 0.116-0.212 0-0.416-0.022-0.619-0.059 0.419 1.303 1.631 2.253 3.066 2.281-1.125 0.881-2.538 1.406-4.078 1.406-0.266 0-0.525-0.016-0.784-0.047 1.456 0.934 3.181 1.475 5.034 1.475 6.037 0 9.341-5.003 9.341-9.341 0-0.144-0.003-0.284-0.009-0.425 0.641-0.459 1.197-1.038 1.637-1.697z"
+ }
+ }]
+};
+exports.twitter = twitter;
+var vine = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.012 7.953c-0.412 0.094-0.809 0.137-1.169 0.137-2.019 0-3.572-1.409-3.572-3.862 0-1.203 0.466-1.825 1.122-1.825 0.625 0 1.041 0.559 1.041 1.697 0 0.647-0.172 1.356-0.3 1.775 0 0 0.622 1.084 2.322 0.753 0.363-0.803 0.556-1.841 0.556-2.75 0-2.45-1.25-3.878-3.541-3.878-2.356 0-3.734 1.809-3.734 4.197 0 2.366 1.106 4.394 2.928 5.319-0.766 1.534-1.741 2.884-2.759 3.903-1.844-2.231-3.513-5.206-4.197-11.016h-2.722c1.259 9.675 5.006 12.756 6 13.347 0.559 0.337 1.044 0.322 1.556 0.031 0.806-0.456 3.222-2.875 4.563-5.703 0.563 0 1.238-0.066 1.909-0.219v-1.906z"
+ }
+ }]
+};
+exports.vine = vine;
+var vk = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM12.959 11.2l-1.463 0.022c0 0-0.316 0.063-0.728-0.222-0.547-0.375-1.063-1.353-1.466-1.225-0.406 0.128-0.394 1.006-0.394 1.006s0.003 0.188-0.091 0.287c-0.1 0.109-0.3 0.131-0.3 0.131h-0.653c0 0-1.444 0.088-2.716-1.238-1.388-1.444-2.612-4.309-2.612-4.309s-0.072-0.188 0.006-0.278c0.087-0.103 0.322-0.109 0.322-0.109l1.566-0.009c0 0 0.147 0.025 0.253 0.103 0.088 0.063 0.134 0.184 0.134 0.184s0.253 0.641 0.588 1.219c0.653 1.128 0.959 1.375 1.181 1.256 0.322-0.175 0.225-1.597 0.225-1.597s0.006-0.516-0.162-0.744c-0.131-0.178-0.378-0.231-0.484-0.244-0.088-0.013 0.056-0.216 0.244-0.309 0.281-0.138 0.778-0.147 1.366-0.141 0.456 0.003 0.591 0.034 0.769 0.075 0.541 0.131 0.356 0.634 0.356 1.841 0 0.388-0.069 0.931 0.209 1.109 0.119 0.078 0.412 0.012 1.147-1.234 0.347-0.591 0.609-1.284 0.609-1.284s0.056-0.125 0.144-0.178c0.091-0.053 0.213-0.037 0.213-0.037l1.647-0.009c0 0 0.494-0.059 0.575 0.166 0.084 0.234-0.184 0.781-0.856 1.678-1.103 1.472-1.228 1.334-0.309 2.184 0.875 0.813 1.056 1.209 1.088 1.259 0.356 0.6-0.406 0.647-0.406 0.647z"
+ }
+ }]
+};
+exports.vk = vk;
+var renren = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.644 0.166c-3.769 0.634-6.644 3.913-6.644 7.862 0 1.963 0.713 3.759 1.887 5.15 2.791-1.35 4.744-4.406 4.756-7.966v-5.047z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.356 0.166c3.769 0.634 6.644 3.913 6.644 7.862 0 1.963-0.713 3.759-1.887 5.15-2.791-1.35-4.744-4.406-4.756-7.966v-5.047z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.972 10.041c-0.497 2.056-1.981 3.813-3.828 4.981 1.138 0.622 2.441 0.978 3.828 0.978s2.691-0.356 3.828-0.978c-1.847-1.169-3.331-2.925-3.828-4.981z"
+ }
+ }]
+};
+exports.renren = renren;
+var sinaWeibo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.722 14.031c-2.65 0.262-4.938-0.938-5.109-2.675-0.172-1.741 1.837-3.359 4.484-3.622 2.65-0.263 4.938 0.938 5.106 2.675 0.175 1.741-1.834 3.362-4.481 3.622zM12.019 8.259c-0.225-0.069-0.381-0.113-0.262-0.409 0.256-0.644 0.281-1.197 0.003-1.594-0.519-0.741-1.941-0.703-3.569-0.019 0 0-0.513 0.222-0.381-0.181 0.25-0.806 0.213-1.478-0.178-1.869-0.884-0.884-3.234 0.034-5.25 2.050-1.506 1.503-2.381 3.106-2.381 4.491 0 2.644 3.394 4.253 6.713 4.253 4.35 0 7.247-2.528 7.247-4.534 0-1.216-1.022-1.903-1.941-2.188z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.909 3.416c-1.050-1.166-2.6-1.609-4.031-1.306v0c-0.331 0.072-0.541 0.397-0.469 0.725 0.072 0.331 0.394 0.541 0.725 0.469 1.019-0.216 2.119 0.1 2.866 0.928s0.95 1.956 0.628 2.944v0c-0.103 0.322 0.072 0.666 0.394 0.772 0.322 0.103 0.666-0.072 0.772-0.394v-0.003c0.45-1.381 0.166-2.969-0.884-4.134z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.294 4.875c-0.512-0.569-1.269-0.784-1.963-0.634-0.284 0.059-0.466 0.344-0.406 0.628 0.063 0.284 0.344 0.466 0.625 0.403v0c0.341-0.072 0.709 0.034 0.959 0.309 0.25 0.278 0.319 0.656 0.209 0.987v0c-0.088 0.275 0.063 0.575 0.341 0.666 0.278 0.088 0.575-0.063 0.666-0.341 0.219-0.678 0.081-1.453-0.431-2.019z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.869 10.884c-0.094 0.159-0.297 0.234-0.456 0.169-0.159-0.063-0.206-0.244-0.116-0.397 0.094-0.153 0.291-0.228 0.447-0.169 0.156 0.056 0.213 0.234 0.125 0.397zM6.022 11.966c-0.256 0.409-0.806 0.588-1.219 0.4-0.406-0.184-0.528-0.659-0.272-1.059 0.253-0.397 0.784-0.575 1.194-0.403 0.416 0.178 0.55 0.65 0.297 1.063zM6.984 9.072c-1.259-0.328-2.684 0.3-3.231 1.409-0.559 1.131-0.019 2.391 1.253 2.803 1.319 0.425 2.875-0.228 3.416-1.447 0.534-1.197-0.131-2.425-1.438-2.766z"
+ }
+ }]
+};
+exports.sinaWeibo = sinaWeibo;
+var rss = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.13 11.733c-1.175 0-2.13 0.958-2.13 2.126 0 1.174 0.955 2.122 2.13 2.122 1.179 0 2.133-0.948 2.133-2.122-0-1.168-0.954-2.126-2.133-2.126zM0.002 5.436v3.067c1.997 0 3.874 0.781 5.288 2.196 1.412 1.411 2.192 3.297 2.192 5.302h3.080c-0-5.825-4.739-10.564-10.56-10.564zM0.006 0v3.068c7.122 0 12.918 5.802 12.918 12.932h3.076c0-8.82-7.176-16-15.994-16z"
+ }
+ }]
+};
+exports.rss = rss;
+var rss2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.359 12.988c-0.75 0-1.359-0.603-1.359-1.353 0-0.744 0.609-1.356 1.359-1.356 0.753 0 1.359 0.613 1.359 1.356 0 0.75-0.609 1.353-1.359 1.353zM7.772 13c0-1.278-0.497-2.481-1.397-3.381-0.903-0.903-2.1-1.4-3.375-1.4v-1.956c3.713 0 6.738 3.022 6.738 6.737h-1.966zM11.244 13c0-4.547-3.697-8.25-8.241-8.25v-1.956c5.625 0 10.203 4.581 10.203 10.206h-1.963z"
+ }
+ }]
+};
+exports.rss2 = rss2;
+var youtube = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.841 4.8c0 0-0.156-1.103-0.637-1.587-0.609-0.637-1.291-0.641-1.603-0.678-2.237-0.163-5.597-0.163-5.597-0.163h-0.006c0 0-3.359 0-5.597 0.163-0.313 0.038-0.994 0.041-1.603 0.678-0.481 0.484-0.634 1.587-0.634 1.587s-0.159 1.294-0.159 2.591v1.213c0 1.294 0.159 2.591 0.159 2.591s0.156 1.103 0.634 1.588c0.609 0.637 1.409 0.616 1.766 0.684 1.281 0.122 5.441 0.159 5.441 0.159s3.363-0.006 5.6-0.166c0.313-0.037 0.994-0.041 1.603-0.678 0.481-0.484 0.637-1.588 0.637-1.588s0.159-1.294 0.159-2.591v-1.213c-0.003-1.294-0.162-2.591-0.162-2.591zM6.347 10.075v-4.497l4.322 2.256-4.322 2.241z"
+ }
+ }]
+};
+exports.youtube = youtube;
+var youtube2 = {
+ "viewBox": "0 0 40 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.375 2.647c0.003-0.014 0.005-0.023 0.006-0.028l0.016-0.118-0.74-0.004c-0.668-0.004-0.873 0-0.891 0.017-0.009 0.008-0.24 0.885-0.651 2.473-0.196 0.758-0.361 1.363-0.367 1.345s-0.24-0.883-0.522-1.922c-0.281-1.039-0.517-1.894-0.524-1.901-0.010-0.010-0.906-0.014-1.632-0.008-0.105 0.001-0.164-0.205 0.938 3.299 0.152 0.485 0.381 1.172 0.507 1.526 0.146 0.408 0.25 0.724 0.321 0.987 0.126 0.501 0.13 0.815 0.103 1.182-0.032 0.423-0.036 3.413-0.005 3.463 0.024 0.038 1.425 0.056 1.558 0.020 0.021-0.006 0.035-0.026 0.045-0.139 0.033-0.097 0.036-0.484 0.036-2.090v-2.051l0.090-0.283c0.059-0.185 0.206-0.672 0.328-1.082s0.269-0.9 0.327-1.090c0.529-1.724 1.033-3.419 1.047-3.516l0.011-0.079z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.221 5.135l-0 0.107-0.017 0-0.009 2.953-0.009 2.863-0.229 0.233c-0.257 0.261-0.462 0.361-0.648 0.314-0.203-0.051-0.197 0.028-0.214-3.356l-0.016-3.115h-1.474v0.107h-0.017v3.38c0 3.621-0 3.619 0.184 3.982 0.146 0.29 0.36 0.431 0.725 0.479h0c0.481 0.064 1-0.154 1.481-0.622l0.209-0.203v0.351c0 0.303 0.009 0.353 0.064 0.368 0.090 0.025 1.206 0.027 1.326 0.002l0.1-0.021v-0.104l0.017-0.003v-7.736l-1.472 0.020z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.483 6.661c-0.14-0.599-0.401-1.002-0.832-1.28-0.676-0.437-1.449-0.484-2.165-0.13-0.522 0.258-0.859 0.686-1.032 1.314-0.021 0.075-0.036 0.138-0.047 0.231-0.044 0.222-0.049 0.552-0.061 2.093-0.018 2.374 0.010 2.656 0.307 3.195 0.292 0.529 0.897 0.917 1.556 0.997 0.198 0.024 0.6-0.013 0.832-0.078 0.525-0.146 1.029-0.561 1.252-1.032 0.096-0.204 0.154-0.345 0.189-0.604 0.065-0.353 0.070-0.925 0.070-2.381-0-1.857-0.006-2.060-0.068-2.326zM7.802 11.5c-0.124 0.094-0.34 0.135-0.515 0.098-0.135-0.029-0.318-0.241-0.374-0.434-0.070-0.241-0.075-3.594-0.015-4.251 0.1-0.329 0.378-0.501 0.682-0.419 0.237 0.064 0.358 0.212 0.427 0.523 0.051 0.231 0.057 0.518 0.046 2.207-0.007 1.12-0.011 1.668-0.048 1.962-0.037 0.185-0.099 0.235-0.203 0.315z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M35.944 8.346h0.712l-0.011-0.645c-0.011-0.592-0.020-0.659-0.099-0.82-0.125-0.253-0.309-0.366-0.601-0.366-0.351 0-0.573 0.17-0.678 0.518-0.045 0.148-0.092 1.167-0.058 1.255 0.019 0.049 0.121 0.058 0.735 0.058z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M31.184 6.879c-0.095-0.191-0.272-0.286-0.477-0.278-0.16 0.006-0.337 0.073-0.508 0.203l-0.127 0.097v4.634l0.127 0.097c0.288 0.22 0.604 0.266 0.822 0.12 0.086-0.058 0.142-0.137 0.186-0.263 0.057-0.164 0.062-0.375 0.055-2.325-0.008-2.032-0.012-2.152-0.078-2.285z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M40.014 4.791c-0.142-1.701-0.255-2.253-0.605-2.962-0.465-0.939-1.136-1.434-2.092-1.543-0.739-0.084-3.521-0.203-6.094-0.26-4.456-0.099-11.782 0.092-12.718 0.331-0.432 0.111-0.757 0.299-1.094 0.634-0.591 0.588-0.944 1.432-1.085 2.6-0.323 2.666-0.33 5.886-0.019 8.649 0.134 1.188 0.41 1.96 0.928 2.596 0.323 0.397 0.881 0.734 1.379 0.835 0.35 0.071 2.1 0.169 4.65 0.26 0.38 0.014 1.385 0.037 2.235 0.052 1.77 0.031 5.025 0.013 6.886-0.039 1.252-0.035 3.534-0.128 3.961-0.161 0.12-0.009 0.398-0.027 0.618-0.039 0.739-0.042 1.209-0.196 1.65-0.543 0.571-0.449 1.013-1.278 1.2-2.251 0.177-0.92 0.295-2.559 0.319-4.42 0.020-1.555-0.007-2.393-0.119-3.741zM22.27 4.175l-0.828 0.010-0.036 8.83-0.718 0.009c-0.555 0.008-0.724-0.001-0.737-0.036-0.010-0.025-0.021-2.016-0.026-4.424l-0.009-4.379-1.617-0.020v-1.38l4.779 0.019 0.020 1.36-0.828 0.010zM27.347 9.236v3.797h-1.308v-0.4c0-0.301-0.011-0.4-0.047-0.4-0.026 0-0.144 0.099-0.263 0.22-0.259 0.263-0.565 0.474-0.827 0.572-0.542 0.203-1.056 0.084-1.275-0.293-0.201-0.345-0.204-0.423-0.204-4.005v-3.29h1.307l0.010 3.098c0.010 3.044 0.011 3.1 0.084 3.224 0.097 0.164 0.244 0.209 0.478 0.144 0.138-0.038 0.232-0.105 0.455-0.327l0.282-0.28v-5.859h1.308v3.797zM32.449 12.491c-0.115 0.257-0.372 0.508-0.583 0.57-0.549 0.162-0.99 0.030-1.499-0.449-0.158-0.149-0.305-0.269-0.327-0.269-0.027 0-0.041 0.116-0.041 0.345v0.345h-1.308v-10.248h1.308v1.672c0 0.919 0.012 1.672 0.027 1.672s0.153-0.122 0.307-0.27c0.354-0.341 0.649-0.491 1.024-0.519 0.669-0.051 1.068 0.294 1.25 1.080 0.057 0.245 0.062 0.525 0.062 2.798-0 2.768-0 2.78-0.221 3.273zM37.984 10.971c-0.012 0.285-0.046 0.612-0.077 0.727-0.182 0.674-0.666 1.152-1.366 1.348-0.942 0.264-1.98-0.168-2.394-0.997-0.232-0.465-0.241-0.558-0.241-2.831 0-1.853 0.007-2.081 0.066-2.334 0.168-0.715 0.584-1.178 1.289-1.435 0.204-0.074 0.417-0.113 0.63-0.117 0.761-0.016 1.515 0.393 1.832 1.059 0.213 0.449 0.24 0.642 0.261 1.908l0.019 1.136-2.789 0.019-0.010 0.763c-0.015 1.077 0.058 1.408 0.349 1.603 0.244 0.165 0.62 0.152 0.824-0.027 0.192-0.168 0.246-0.349 0.265-0.877l0.017-0.463h1.347l-0.022 0.518z"
+ }
+ }]
+};
+exports.youtube2 = youtube2;
+var twitch = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.5 0l-1.5 2.5v11.5h4v2h2l2-2h2.5l4.5-4.5v-9.5h-13.5zM13 8.5l-2.5 2.5h-2.5l-2 2v-2h-3v-9h10v6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 4h1.5v4h-1.5v-4z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 4h1.5v4h-1.5v-4z"
+ }
+ }]
+};
+exports.twitch = twitch;
+var vimeo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.994 4.281c-0.072 1.556-1.159 3.691-3.263 6.397-2.175 2.825-4.016 4.241-5.522 4.241-0.931 0-1.722-0.859-2.366-2.581-0.431-1.578-0.859-3.156-1.291-4.734-0.478-1.722-0.991-2.581-1.541-2.581-0.119 0-0.538 0.253-1.256 0.753l-0.753-0.969c0.791-0.694 1.569-1.388 2.334-2.081 1.053-0.909 1.844-1.387 2.372-1.438 1.244-0.119 2.013 0.731 2.3 2.553 0.309 1.966 0.525 3.188 0.647 3.666 0.359 1.631 0.753 2.447 1.184 2.447 0.334 0 0.838-0.528 1.509-1.588 0.669-1.056 1.028-1.862 1.078-2.416 0.097-0.912-0.262-1.372-1.078-1.372-0.384 0-0.778 0.088-1.184 0.263 0.787-2.575 2.287-3.825 4.506-3.753 1.641 0.044 2.416 1.109 2.322 3.194z"
+ }
+ }]
+};
+exports.vimeo = vimeo;
+var vimeo2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13.463 5.313c-0.050 1.125-0.838 2.666-2.359 4.622-1.572 2.044-2.903 3.066-3.991 3.066-0.675 0-1.244-0.622-1.709-1.866-0.313-1.141-0.622-2.281-0.934-3.422-0.344-1.244-0.716-1.866-1.112-1.866-0.087 0-0.391 0.181-0.906 0.544l-0.544-0.7c0.572-0.5 1.134-1.003 1.687-1.503 0.763-0.656 1.331-1.003 1.712-1.038 0.9-0.087 1.453 0.528 1.662 1.844 0.225 1.422 0.381 2.303 0.469 2.65 0.259 1.178 0.544 1.766 0.856 1.766 0.241 0 0.606-0.381 1.091-1.147s0.744-1.347 0.778-1.747c0.069-0.659-0.191-0.991-0.778-0.991-0.278 0-0.563 0.063-0.856 0.191 0.569-1.859 1.653-2.766 3.256-2.712 1.188 0.034 1.747 0.803 1.678 2.309z"
+ }
+ }]
+};
+exports.vimeo2 = vimeo2;
+var lanyrd = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM12.85 12.012l-5.444 1.781c-1.244 0.406-1.369 0.341-1.931-1.4l-1.375-4.259c-0.328-1.009-1.328-3.728-1.497-4.25-0.313-0.969-0.313-1.022 1.516-1.616 1.431-0.469 1.491-0.453 2.009 1.163 0.419 1.3 0.688 2.35 1.119 3.678l1.172 3.625 3.744-1.225c0.738-0.244 0.984-0.231 1.194 0.678l0.15 0.688c0.175 0.797-0.228 1-0.656 1.137z"
+ }
+ }]
+};
+exports.lanyrd = lanyrd;
+var flickr = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5zM9 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5z"
+ }
+ }]
+};
+exports.flickr = flickr;
+var flickr2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 6.5c-1.103 0-2 0.897-2 2s0.897 2 2 2c1.103 0 2-0.897 2-2s-0.897-2-2-2zM12.5 5v0c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5c0-1.933 1.567-3.5 3.5-3.5zM0 8.5c0-1.933 1.567-3.5 3.5-3.5s3.5 1.567 3.5 3.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5z"
+ }
+ }]
+};
+exports.flickr2 = flickr2;
+var flickr3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5zM11.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5c1.381 0 2.5 1.119 2.5 2.5s-1.119 2.5-2.5 2.5z"
+ }
+ }]
+};
+exports.flickr3 = flickr3;
+var flickr4 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.606-8 8.055s3.582 8.055 8 8.055 8-3.606 8-8.055-3.582-8.055-8-8.055zM4.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5zM11.5 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5z"
+ }
+ }]
+};
+exports.flickr4 = flickr4;
+var dribbble = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c-4.412 0-8-3.588-8-8s3.587-8 8-8c4.412 0 8 3.587 8 8s-3.588 8-8 8v0zM14.747 9.094c-0.234-0.075-2.116-0.634-4.256-0.291 0.894 2.456 1.256 4.456 1.328 4.872 1.531-1.037 2.625-2.678 2.928-4.581v0zM10.669 14.3c-0.103-0.6-0.497-2.688-1.456-5.181-0.016 0.006-0.031 0.009-0.044 0.016-3.856 1.344-5.241 4.016-5.362 4.266 1.159 0.903 2.616 1.444 4.194 1.444 0.947 0 1.85-0.194 2.669-0.544v0zM2.922 12.578c0.156-0.266 2.031-3.369 5.553-4.509 0.088-0.028 0.178-0.056 0.269-0.081-0.172-0.388-0.359-0.778-0.553-1.159-3.409 1.022-6.722 0.978-7.022 0.975-0.003 0.069-0.003 0.138-0.003 0.209 0 1.753 0.666 3.356 1.756 4.566v0zM1.313 6.609c0.306 0.003 3.122 0.016 6.319-0.831-1.131-2.013-2.353-3.706-2.534-3.953-1.913 0.903-3.344 2.666-3.784 4.784v0zM6.4 1.366c0.188 0.253 1.431 1.944 2.55 4 2.431-0.909 3.459-2.294 3.581-2.469-1.206-1.072-2.794-1.722-4.531-1.722-0.55 0.003-1.088 0.069-1.6 0.191v0zM13.291 3.691c-0.144 0.194-1.291 1.663-3.816 2.694 0.159 0.325 0.313 0.656 0.453 0.991 0.050 0.119 0.1 0.234 0.147 0.353 2.275-0.284 4.534 0.172 4.759 0.219-0.016-1.612-0.594-3.094-1.544-4.256v0z"
+ }
+ }]
+};
+exports.dribbble = dribbble;
+var behance = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.641 3.206c0.472 0 0.897 0.041 1.284 0.125 0.388 0.081 0.716 0.219 0.994 0.406 0.275 0.188 0.487 0.438 0.644 0.75 0.15 0.309 0.225 0.697 0.225 1.156 0 0.497-0.112 0.909-0.338 1.241-0.228 0.331-0.559 0.6-1.003 0.813 0.606 0.175 1.053 0.481 1.353 0.916 0.3 0.438 0.444 0.963 0.444 1.581 0 0.5-0.097 0.928-0.287 1.291-0.194 0.366-0.456 0.662-0.778 0.891-0.325 0.231-0.7 0.4-1.119 0.509-0.416 0.109-0.844 0.166-1.287 0.166h-4.772v-9.844h4.641zM4.359 7.181c0.384 0 0.703-0.091 0.953-0.275 0.25-0.181 0.369-0.481 0.369-0.894 0-0.228-0.041-0.419-0.122-0.566-0.084-0.147-0.194-0.263-0.334-0.344-0.138-0.084-0.294-0.141-0.478-0.172-0.178-0.034-0.366-0.050-0.556-0.050h-2.025v2.3h2.194zM4.478 11.372c0.213 0 0.416-0.019 0.606-0.063 0.194-0.044 0.366-0.109 0.509-0.209 0.144-0.097 0.266-0.225 0.353-0.394 0.088-0.166 0.128-0.378 0.128-0.637 0-0.506-0.144-0.869-0.428-1.088-0.284-0.216-0.662-0.322-1.131-0.322h-2.35v2.709h2.313z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.331 11.338c0.294 0.287 0.716 0.431 1.266 0.431 0.394 0 0.738-0.1 1.022-0.3s0.456-0.412 0.522-0.631h1.725c-0.278 0.859-0.697 1.469-1.272 1.838-0.566 0.369-1.259 0.556-2.063 0.556-0.563 0-1.066-0.091-1.519-0.269-0.453-0.181-0.831-0.434-1.15-0.766-0.309-0.331-0.553-0.725-0.725-1.188-0.169-0.459-0.256-0.969-0.256-1.519 0-0.534 0.088-1.031 0.262-1.491 0.178-0.463 0.422-0.859 0.747-1.194s0.706-0.6 1.156-0.794c0.447-0.194 0.941-0.291 1.488-0.291 0.603 0 1.131 0.116 1.584 0.353 0.45 0.234 0.822 0.55 1.113 0.944s0.497 0.847 0.625 1.353c0.128 0.506 0.172 1.034 0.137 1.588h-5.147c0 0.559 0.188 1.094 0.484 1.378zM13.578 7.594c-0.231-0.256-0.628-0.397-1.106-0.397-0.313 0-0.572 0.053-0.778 0.159-0.203 0.106-0.369 0.237-0.497 0.394-0.125 0.156-0.213 0.325-0.262 0.503-0.050 0.172-0.081 0.331-0.091 0.469h3.188c-0.047-0.5-0.219-0.869-0.453-1.128z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.444 4h3.991v0.972h-3.991v-0.972z"
+ }
+ }]
+};
+exports.behance = behance;
+var behance2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.316 7.009c0.203-0.147 0.3-0.391 0.3-0.728 0-0.188-0.031-0.341-0.097-0.459-0.069-0.119-0.156-0.213-0.272-0.278-0.112-0.069-0.241-0.116-0.388-0.141-0.144-0.028-0.297-0.041-0.453-0.041h-1.647v1.869h1.781c0.313 0.003 0.572-0.072 0.775-0.222z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.594 8.697c-0.231-0.175-0.537-0.262-0.919-0.262h-1.916v2.203h1.878c0.175 0 0.338-0.016 0.494-0.050s0.297-0.088 0.416-0.169c0.119-0.078 0.216-0.184 0.287-0.319s0.106-0.309 0.106-0.519c0-0.412-0.116-0.706-0.347-0.884z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM10.488 4.209h3.241v0.791h-3.241v-0.791zM8.463 10.725c-0.156 0.297-0.369 0.537-0.631 0.725-0.266 0.188-0.569 0.325-0.909 0.416-0.338 0.091-0.688 0.134-1.044 0.134h-3.878v-7.997h3.769c0.381 0 0.728 0.034 1.044 0.1 0.313 0.066 0.581 0.178 0.806 0.331 0.222 0.153 0.397 0.356 0.522 0.609 0.122 0.25 0.184 0.566 0.184 0.938 0 0.403-0.091 0.737-0.275 1.006s-0.453 0.487-0.816 0.659c0.494 0.141 0.856 0.391 1.097 0.744 0.244 0.356 0.363 0.784 0.363 1.284 0.003 0.409-0.075 0.759-0.231 1.050zM14.991 9.488h-4.178c0 0.456 0.156 0.891 0.394 1.125 0.238 0.231 0.581 0.35 1.028 0.35 0.322 0 0.597-0.081 0.831-0.244 0.231-0.162 0.372-0.334 0.425-0.512h1.4c-0.225 0.697-0.566 1.194-1.031 1.494-0.459 0.3-1.022 0.45-1.675 0.45-0.456 0-0.866-0.075-1.234-0.219-0.369-0.147-0.675-0.353-0.934-0.622-0.253-0.269-0.447-0.591-0.588-0.966-0.137-0.372-0.209-0.787-0.209-1.234 0-0.434 0.072-0.838 0.213-1.213 0.144-0.375 0.344-0.7 0.606-0.969 0.262-0.272 0.575-0.487 0.938-0.647 0.363-0.156 0.762-0.234 1.206-0.234 0.491 0 0.919 0.094 1.287 0.287 0.366 0.191 0.666 0.447 0.903 0.769s0.403 0.688 0.509 1.1c0.103 0.406 0.137 0.834 0.109 1.284z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.134 7.247c-0.253 0-0.466 0.044-0.631 0.131s-0.3 0.194-0.403 0.319c-0.103 0.128-0.172 0.263-0.213 0.409-0.041 0.141-0.066 0.269-0.072 0.381h2.588c-0.037-0.406-0.178-0.706-0.366-0.916-0.194-0.213-0.512-0.325-0.903-0.325z"
+ }
+ }]
+};
+exports.behance2 = behance2;
+var deviantart = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.953 2.909v-2.909h-2.909l-0.291 0.294-1.375 2.616-0.431 0.291h-4.9v3.994h2.694l0.241 0.291-2.934 5.606v2.909h2.909l0.291-0.294 1.375-2.616 0.431-0.291h4.9v-3.994h-2.694l-0.241-0.294z"
+ }
+ }]
+};
+exports.deviantart = deviantart;
+var fiveHundredPX = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.953 10.512c0.003 0.009 0.088 0.238 0.134 0.353 0.263 0.622 0.641 1.184 1.122 1.666s1.041 0.859 1.666 1.122c0.647 0.272 1.331 0.412 2.037 0.412s1.394-0.137 2.037-0.412c0.625-0.262 1.184-0.641 1.666-1.122s0.859-1.041 1.122-1.666c0.272-0.647 0.412-1.331 0.412-2.037s-0.137-1.394-0.412-2.037c-0.262-0.625-0.641-1.184-1.122-1.666s-1.041-0.859-1.666-1.122c-0.647-0.272-1.331-0.413-2.037-0.413-0.716 0-1.431 0.144-2.066 0.413-0.509 0.216-1.372 0.769-1.875 1.291l-0.003 0.003v-4.313h7.241c0.262-0.003 0.262-0.372 0.262-0.491 0-0.122 0-0.487-0.266-0.491h-7.828c-0.213 0-0.344 0.178-0.344 0.341v6.066c0 0.197 0.244 0.338 0.472 0.384 0.444 0.094 0.544-0.047 0.653-0.197l0.016-0.019c0.166-0.247 0.681-0.766 0.688-0.772 0.806-0.806 1.884-1.25 3.037-1.25 1.147 0 2.222 0.444 3.028 1.25 0.809 0.809 1.256 1.881 1.256 3.019 0 1.141-0.444 2.216-1.25 3.019-0.794 0.794-1.906 1.25-3.047 1.25-0.772 0-1.519-0.206-2.159-0.597l0.003-3.688c0-0.491 0.213-1.028 0.572-1.431 0.409-0.463 0.972-0.716 1.588-0.716 0.594 0 1.15 0.225 1.566 0.634 0.409 0.406 0.637 0.95 0.637 1.528 0 1.231-0.969 2.197-2.206 2.197-0.238 0-0.672-0.106-0.691-0.109-0.25-0.075-0.356 0.272-0.391 0.387-0.134 0.441 0.069 0.528 0.109 0.541 0.397 0.125 0.659 0.147 1.003 0.147 1.747 0 3.169-1.422 3.169-3.169 0-1.734-1.422-3.144-3.166-3.144-0.856 0-1.659 0.328-2.263 0.919-0.575 0.566-0.903 1.319-0.903 2.069v0.019c-0.003 0.094-0.003 2.306-0.006 3.031l-0.003-0.003c-0.328-0.363-0.653-0.919-0.869-1.488-0.084-0.222-0.275-0.184-0.534-0.103-0.125 0.034-0.469 0.141-0.391 0.394v0zM7.675 9.647c0 0.106 0.097 0.2 0.156 0.253l0.019 0.019c0.1 0.097 0.194 0.147 0.281 0.147 0.072 0 0.116-0.034 0.131-0.050 0.044-0.041 0.537-0.544 0.588-0.591l0.553 0.55c0.050 0.056 0.106 0.088 0.172 0.088 0.088 0 0.184-0.053 0.284-0.156 0.238-0.244 0.119-0.375 0.063-0.438l-0.559-0.559 0.584-0.588c0.128-0.137 0.016-0.284-0.097-0.397-0.162-0.162-0.322-0.206-0.422-0.112l-0.581 0.581-0.588-0.588c-0.031-0.031-0.072-0.047-0.113-0.047-0.078 0-0.172 0.053-0.275 0.156-0.181 0.181-0.219 0.306-0.125 0.406l0.588 0.584-0.584 0.584c-0.053 0.050-0.078 0.103-0.075 0.156zM8.953 1.716c-0.938 0-1.938 0.191-2.669 0.506-0.078 0.031-0.125 0.094-0.134 0.181-0.009 0.084 0.013 0.194 0.069 0.337 0.047 0.116 0.166 0.425 0.4 0.334 0.75-0.288 1.581-0.444 2.334-0.444 0.856 0 1.688 0.169 2.469 0.497 0.622 0.263 1.206 0.644 1.844 1.194 0.047 0.041 0.097 0.059 0.147 0.059 0.125 0 0.244-0.122 0.347-0.237 0.169-0.191 0.287-0.35 0.119-0.509-0.609-0.575-1.275-1.006-2.1-1.356-0.894-0.372-1.847-0.563-2.825-0.563zM14.006 13.3v0c-0.113-0.113-0.209-0.178-0.294-0.203s-0.162-0.006-0.222 0.053l-0.056 0.056c-0.581 0.581-1.259 1.037-2.012 1.356-0.781 0.331-1.609 0.497-2.463 0.497-0.856 0-1.684-0.169-2.463-0.497-0.753-0.319-1.431-0.775-2.013-1.356-0.606-0.606-1.063-1.284-1.356-2.012-0.288-0.713-0.381-1.247-0.413-1.422-0.003-0.016-0.006-0.028-0.006-0.037-0.041-0.206-0.231-0.222-0.503-0.178-0.112 0.019-0.459 0.072-0.428 0.319v0.006c0.091 0.578 0.253 1.144 0.481 1.681 0.366 0.866 0.891 1.644 1.559 2.313s1.447 1.191 2.313 1.559c0.897 0.378 1.85 0.572 2.831 0.572s1.934-0.194 2.831-0.572c0.866-0.366 1.644-0.891 2.313-1.559 0 0 0.037-0.037 0.059-0.059 0.069-0.084 0.134-0.225-0.159-0.516z"
+ }
+ }]
+};
+exports.fiveHundredPX = fiveHundredPX;
+var steam = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM14.975 2.025c-1.367-1.367-3.583-1.367-4.95 0-0.556 0.556-0.886 1.252-0.989 1.975v0l-3.198 4.847c-0.43 0.022-0.856 0.132-1.249 0.328l-2.467-1.928c-0.571-0.446-1.396-0.345-1.842 0.226s-0.345 1.396 0.226 1.842l2.436 1.905c-0.265 1.043 0.010 2.196 0.827 3.012 1.233 1.233 3.232 1.233 4.465 0 0.757-0.757 1.049-1.804 0.876-2.784l3.891-3.484c0.723-0.104 1.419-0.434 1.975-0.989 1.367-1.367 1.367-3.583 0-4.95zM6 14.105c-1.162 0-2.105-0.942-2.105-2.105 0-0.011 0.001-0.022 0.001-0.033l1.046 0.817c0.24 0.188 0.525 0.278 0.807 0.278 0.39 0 0.776-0.173 1.035-0.504 0.446-0.571 0.345-1.396-0.226-1.842l-0.992-0.776c0.14-0.029 0.285-0.045 0.434-0.045 1.162 0 2.105 0.942 2.105 2.105s-0.942 2.105-2.105 2.105zM12.5 7c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"
+ }
+ }]
+};
+exports.steam = steam;
+var steam2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.749 13.063c0.424 0 0.84-0.205 1.093-0.585 0.402-0.603 0.239-1.418-0.364-1.82l-1.032-0.688c0.177-0.048 0.362-0.074 0.554-0.074 1.162 0 2.105 0.942 2.105 2.105s-0.942 2.105-2.105 2.105c-1.131 0-2.054-0.893-2.102-2.012l1.124 0.749c0.224 0.149 0.477 0.221 0.727 0.221zM13.333 0c1.467 0 2.667 1.2 2.667 2.667v10.666c0 1.468-1.2 2.667-2.667 2.667h-10.666c-1.467 0-2.667-1.199-2.667-2.667v-3.172l1.896 1.264c-0.182 0.987 0.108 2.044 0.872 2.808 1.233 1.233 3.232 1.233 4.465 0 0.757-0.757 1.049-1.804 0.876-2.784l3.892-3.484c0.723-0.104 1.419-0.433 1.975-0.989 1.367-1.367 1.367-3.583 0-4.95s-3.583-1.367-4.95 0c-0.556 0.556-0.886 1.252-0.989 1.975v0l-3.198 4.847c-0.498 0.025-0.99 0.168-1.433 0.428l-3.404-2.269v-4.339c0-1.467 1.2-2.667 2.667-2.667h10.666zM14 4.5c0-1.381-1.119-2.5-2.5-2.5s-2.5 1.119-2.5 2.5 1.119 2.5 2.5 2.5 2.5-1.119 2.5-2.5zM10 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5z"
+ }
+ }]
+};
+exports.steam2 = steam2;
+var dropbox = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 0.5l-3.5 3 4.5 3 3.5-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 3.5l-3.5-3-4.5 3 3.5 3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 6.5l3.5 3-4.5 2.5-3.5-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 9l-4.5-2.5-3.5 3 4.5 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.377 13.212l-3.377-2.895-3.377 2.895-2.123-1.179v1.467l5.5 2.5 5.5-2.5v-1.467z"
+ }
+ }]
+};
+exports.dropbox = dropbox;
+var onedrive = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.482 12.944c-0.942-0.235-1.466-0.984-1.468-2.095-0-0.355 0.025-0.525 0.114-0.754 0.217-0.56 0.793-0.982 1.55-1.138 0.377-0.077 0.493-0.16 0.493-0.353 0-0.060 0.045-0.24 0.1-0.399 0.249-0.724 0.71-1.327 1.202-1.573 0.515-0.258 0.776-0.316 1.399-0.313 0.886 0.005 1.327 0.197 1.945 0.846l0.34 0.357 0.304-0.105c1.473-0.51 2.942 0.358 3.061 1.809l0.032 0.397 0.29 0.104c0.829 0.297 1.218 0.92 1.148 1.837-0.046 0.599-0.326 1.078-0.77 1.315l-0.209 0.112-4.638 0.009c-3.564 0.007-4.697-0.006-4.893-0.055v0zM1.613 12.281c-0.565-0.142-1.164-0.67-1.445-1.273-0.159-0.342-0.168-0.393-0.168-0.998 0-0.576 0.014-0.668 0.14-0.954 0.267-0.603 0.78-1.038 1.422-1.21 0.136-0.036 0.263-0.094 0.283-0.128s0.043-0.221 0.050-0.415c0.045-1.206 0.794-2.269 1.839-2.61 0.565-0.184 1.306-0.202 1.92 0.058 0.195 0.082 0.173 0.1 0.585-0.471 0.244-0.338 0.705-0.695 1.108-0.909 0.435-0.231 0.887-0.337 1.428-0.336 1.512 0.004 2.815 1.003 3.297 2.529 0.154 0.487 0.146 0.624-0.035 0.628-0.079 0.002-0.306 0.048-0.505 0.102l-0.361 0.099-0.329-0.348c-0.928-0.98-2.441-1.192-3.728-0.522-0.514 0.268-0.927 0.652-1.239 1.153-0.222 0.357-0.506 1.024-0.506 1.189 0 0.117-0.090 0.176-0.474 0.309-1.189 0.412-1.883 1.364-1.882 2.582 0 0.443 0.108 0.986 0.258 1.296 0.057 0.117 0.088 0.228 0.070 0.247-0.046 0.049-1.525 0.032-1.73-0.019v0z"
+ }
+ }]
+};
+exports.onedrive = onedrive;
+var github = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0.198c-4.418 0-8 3.582-8 8 0 3.535 2.292 6.533 5.471 7.591 0.4 0.074 0.547-0.174 0.547-0.385 0-0.191-0.008-0.821-0.011-1.489-2.226 0.484-2.695-0.944-2.695-0.944-0.364-0.925-0.888-1.171-0.888-1.171-0.726-0.497 0.055-0.486 0.055-0.486 0.803 0.056 1.226 0.824 1.226 0.824 0.714 1.223 1.872 0.869 2.328 0.665 0.072-0.517 0.279-0.87 0.508-1.070-1.777-0.202-3.645-0.888-3.645-3.954 0-0.873 0.313-1.587 0.824-2.147-0.083-0.202-0.357-1.015 0.077-2.117 0 0 0.672-0.215 2.201 0.82 0.638-0.177 1.322-0.266 2.002-0.269 0.68 0.003 1.365 0.092 2.004 0.269 1.527-1.035 2.198-0.82 2.198-0.82 0.435 1.102 0.162 1.916 0.079 2.117 0.513 0.56 0.823 1.274 0.823 2.147 0 3.073-1.872 3.749-3.653 3.947 0.287 0.248 0.543 0.735 0.543 1.481 0 1.070-0.009 1.932-0.009 2.195 0 0.213 0.144 0.462 0.55 0.384 3.177-1.059 5.466-4.057 5.466-7.59 0-4.418-3.582-8-8-8z"
+ }
+ }]
+};
+exports.github = github;
+var npm = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0v16h16v-16h-16zM13 13h-2v-8h-3v8h-5v-10h10v10z"
+ }
+ }]
+};
+exports.npm = npm;
+var basecamp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1.666c-2.919 0-5.169 2.444-6.444 4.838-0.719 1.347-1.222 2.822-1.453 4.331-0.025 0.172-0.050 0.344-0.069 0.519-0.009 0.094-0.019 0.188-0.025 0.281-0.009 0.119-0.003 0.156 0.059 0.256 0.187 0.303 0.409 0.584 0.659 0.838 0.512 0.525 1.134 0.928 1.794 1.241 1.503 0.709 3.2 0.966 4.85 1.022 1.703 0.056 3.453-0.084 5.081-0.616 1.391-0.453 2.731-1.244 3.503-2.522 0.084-0.137 0.025-0.341 0.009-0.5-0.019-0.191-0.044-0.378-0.075-0.566-0.056-0.369-0.131-0.731-0.222-1.094-0.181-0.738-0.428-1.463-0.728-2.159-1.088-2.525-3.1-5.219-5.963-5.775-0.322-0.063-0.65-0.094-0.978-0.094zM8.1 13.909c-1.784 0-3.728-0.159-5.334-1.019-0.625-0.334-1.262-0.819-1.563-1.484-0.087-0.194-0.056-0.269-0.016-0.497 0.028-0.147 0.041-0.291 0.106-0.428 0.091-0.191 0.184-0.378 0.281-0.566 0.328-0.634 0.681-1.262 1.091-1.853 0.203-0.291 0.419-0.578 0.669-0.828 0.175-0.175 0.388-0.362 0.634-0.422 0.756-0.181 1.334 0.694 1.794 1.134 0.222 0.213 0.519 0.453 0.85 0.412 0.228-0.028 0.431-0.206 0.594-0.353 0.553-0.497 0.997-1.112 1.456-1.691 0.228-0.284 0.453-0.572 0.7-0.844 0.166-0.184 0.347-0.394 0.569-0.513 0.397-0.216 0.903 0.228 1.178 0.456 0.469 0.391 0.884 0.847 1.281 1.309 0.378 0.441 0.744 0.888 1.066 1.372 0.497 0.75 0.928 1.55 1.322 2.359 0.084 0.175 0.113 0.294 0.144 0.488 0.019 0.106 0.059 0.228 0.044 0.338-0.022 0.153-0.128 0.319-0.206 0.444-0.188 0.297-0.441 0.553-0.719 0.769-1.166 0.903-2.744 1.203-4.178 1.338-0.588 0.056-1.175 0.078-1.762 0.078z"
+ }
+ }]
+};
+exports.basecamp = basecamp;
+var trello = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM7 12c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-8c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v8zM13 9c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-5c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v5z"
+ }
+ }]
+};
+exports.trello = trello;
+var wordpress = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 8c0 2.313 1.38 4.312 3.382 5.259l-2.862-7.637c-0.333 0.727-0.52 1.531-0.52 2.378zM12.050 7.705c0-0.722-0.266-1.222-0.495-1.612-0.304-0.482-0.589-0.889-0.589-1.371 0-0.537 0.418-1.037 1.008-1.037 0.027 0 0.052 0.003 0.078 0.005-1.067-0.953-2.49-1.534-4.052-1.534-2.096 0-3.94 1.048-5.013 2.634 0.141 0.004 0.274 0.007 0.386 0.007 0.627 0 1.599-0.074 1.599-0.074 0.323-0.018 0.361 0.444 0.038 0.482 0 0-0.325 0.037-0.687 0.055l2.185 6.33 1.313-3.835-0.935-2.495c-0.323-0.019-0.629-0.055-0.629-0.055-0.323-0.019-0.285-0.5 0.038-0.482 0 0 0.991 0.074 1.58 0.074 0.627 0 1.599-0.074 1.599-0.074 0.323-0.018 0.362 0.444 0.038 0.482 0 0-0.326 0.037-0.687 0.055l2.168 6.282 0.599-1.947c0.259-0.809 0.457-1.389 0.457-1.889zM8.105 8.511l-1.8 5.095c0.538 0.154 1.106 0.238 1.695 0.238 0.699 0 1.369-0.117 1.992-0.331-0.016-0.025-0.031-0.052-0.043-0.081l-1.844-4.921zM13.265 5.196c0.026 0.186 0.040 0.386 0.040 0.601 0 0.593-0.114 1.259-0.456 2.093l-1.833 5.16c1.784-1.013 2.983-2.895 2.983-5.051 0-1.016-0.267-1.971-0.735-2.803zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 15c-3.866 0-7-3.134-7-7s3.134-7 7-7 7 3.134 7 7-3.134 7-7 7z"
+ }
+ }]
+};
+exports.wordpress = wordpress;
+var joomla = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.156 4.323c0.513-0.513 1.344-0.513 1.856-0l0.122 0.123 1.58-1.581-0.123-0.123c-0.9-0.902-2.164-1.217-3.319-0.946-0.166-1.018-1.048-1.796-2.112-1.796-1.182 0-2.14 0.96-2.14 2.143 0 1.021 0.712 1.875 1.667 2.091-0.362 1.21-0.066 2.576 0.888 3.531l3.56 3.561 1.578-1.581-3.56-3.561c-0.511-0.511-0.512-1.346 0.003-1.861zM15.98 2.143c0-1.184-0.958-2.143-2.14-2.143-1.082 0-1.976 0.804-2.12 1.847-1.204-0.354-2.559-0.055-3.51 0.897l-3.56 3.561 1.58 1.581 3.559-3.56c0.515-0.515 1.344-0.514 1.854-0.003 0.512 0.513 0.512 1.346-0.001 1.859l-0.122 0.122 1.578 1.582 0.123-0.124c0.945-0.946 1.245-2.293 0.9-3.494 1.049-0.138 1.858-1.037 1.858-2.125zM14.16 11.735c0.283-1.163-0.031-2.443-0.939-3.352l-3.555-3.562-1.58 1.58 3.555 3.563c0.515 0.516 0.514 1.345 0.003 1.857-0.513 0.513-1.344 0.513-1.857-0l-0.121-0.122-1.578 1.582 0.121 0.121c0.961 0.962 2.338 1.257 3.553 0.883 0.197 0.979 1.061 1.716 2.098 1.716 1.181 0 2.14-0.959 2.14-2.143 0-1.081-0.8-1.976-1.84-2.122zM9.568 8.261l-3.555 3.562c-0.511 0.512-1.344 0.513-1.859-0.002-0.513-0.514-0.513-1.345-0.001-1.859l0.122-0.121-1.579-1.58-0.121 0.12c-0.918 0.919-1.228 2.216-0.929 3.39-0.944 0.223-1.646 1.072-1.646 2.086-0 1.184 0.958 2.143 2.14 2.143 1.017-0.001 1.869-0.71 2.087-1.662 1.167 0.29 2.453-0.020 3.365-0.934l3.555-3.562-1.578-1.582z"
+ }
+ }]
+};
+exports.joomla = joomla;
+var ello = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM12.885 9.212c-0.575 2.23-2.584 3.788-4.885 3.788s-4.31-1.558-4.885-3.788c-0.097-0.377 0.131-0.764 0.508-0.861 0.058-0.015 0.118-0.023 0.177-0.023 0.322 0 0.604 0.218 0.684 0.531 0.414 1.605 1.86 2.727 3.516 2.727s3.102-1.121 3.516-2.727c0.081-0.313 0.362-0.531 0.684-0.531 0.060 0 0.12 0.008 0.178 0.023 0.183 0.047 0.336 0.163 0.432 0.326s0.123 0.353 0.075 0.536z"
+ }
+ }]
+};
+exports.ello = ello;
+var blogger = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.966 6h-0.897c-0.549 0-1.031-0.465-1.069-1v0c0-2.854-2.301-5-5.175-5h-2.622c-2.872 0-5.201 2.313-5.203 5.167v5.669c0 2.854 2.331 5.165 5.203 5.165h5.6c2.874 0 5.197-2.311 5.197-5.165v-3.662c0-0.57-0.46-1.173-1.034-1.173zM5 4h3c0.55 0 1 0.45 1 1s-0.45 1-1 1h-3c-0.55 0-1-0.45-1-1s0.45-1 1-1zM11 12h-6c-0.55 0-1-0.45-1-1s0.45-1 1-1h6c0.55 0 1 0.45 1 1s-0.45 1-1 1z"
+ }
+ }]
+};
+exports.blogger = blogger;
+var blogger2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM14 10.125c0 2.141-1.741 3.875-3.897 3.875h-4.2c-2.156 0-3.903-1.734-3.903-3.875v-4.25c0-2.141 1.747-3.875 3.903-3.875h1.966c2.156 0 3.881 1.609 3.881 3.75 0.028 0.4 0.391 0.75 0.8 0.75h0.672c0.431 0 0.775 0.453 0.775 0.881v2.744z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 10c0 0.55-0.45 1-1 1h-4c-0.55 0-1-0.45-1-1v0c0-0.55 0.45-1 1-1h4c0.55 0 1 0.45 1 1v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 6c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v0c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v0z"
+ }
+ }]
+};
+exports.blogger2 = blogger2;
+var tumblr = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.001 7l-0 3.659c0 0.928-0.012 1.463 0.086 1.727 0.098 0.262 0.342 0.534 0.609 0.691 0.354 0.212 0.758 0.318 1.214 0.318 0.81 0 1.289-0.107 2.090-0.633v2.405c-0.683 0.321-1.279 0.509-1.833 0.639-0.555 0.129-1.154 0.194-1.798 0.194-0.732 0-1.163-0.092-1.725-0.276-0.562-0.185-1.042-0.45-1.438-0.79-0.398-0.343-0.672-0.706-0.826-1.091s-0.23-0.944-0.23-1.676v-5.611h-2.147v-2.266c0.628-0.204 1.331-0.497 1.778-0.877 0.449-0.382 0.809-0.839 1.080-1.374 0.272-0.534 0.459-1.214 0.561-2.039h2.579l-0 4h3.999v3h-3.999z"
+ }
+ }]
+};
+exports.tumblr = tumblr;
+var tumblr2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11.434 12.884c-0.472 0.222-0.9 0.378-1.281 0.469-0.381 0.088-0.797 0.134-1.241 0.134-0.506 0-0.803-0.063-1.191-0.191s-0.719-0.309-0.994-0.544c-0.275-0.238-0.463-0.488-0.569-0.753s-0.159-0.65-0.159-1.156v-3.872h-1.5v-1.563c0.434-0.141 0.938-0.344 1.244-0.606 0.309-0.263 0.559-0.578 0.744-0.947 0.188-0.369 0.316-0.837 0.388-1.406h1.569v2.55h2.556v1.972h-2.553v2.831c0 0.641-0.009 1.009 0.059 1.191s0.238 0.369 0.422 0.475c0.244 0.147 0.525 0.219 0.838 0.219 0.559 0 1.116-0.181 1.669-0.544v1.741z"
+ }
+ }]
+};
+exports.tumblr2 = tumblr2;
+var yahoo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.878 9.203v0c1.759-3.088 4.666-8.125 5.463-9.203-0.35 0.234-0.887 0.353-1.381 0.466l-0.747-0.466c-0.6 1.119-2.813 4.734-4.222 7.050-1.428-2.366-3.119-5.097-4.222-7.050-0.875 0.188-1.237 0.197-2.109 0v0 0c0 0 0 0 0 0v0c1.731 2.606 4.503 7.572 5.447 9.203v0l-0.128 6.797 1.013-0.466v-0.012l1.012 0.478-0.125-6.797z"
+ }
+ }]
+};
+exports.yahoo = yahoo;
+var yahoo2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.019 1.087c-2.828 0-5.5-0.372-8.019-1.087 0 5.653 0 14.581 0 16 2.522-0.716 5.194-1.088 8.019-1.088 2.794 0 5.459 0.363 7.981 1.088 0-5.444 0-10.153 0-16-2.522 0.725-5.184 1.087-7.981 1.087zM12.45 2.453l-0.097 0.153c-0.091 0.144-0.172 0.266-0.284 0.438-0.15 0.225-0.431 0.672-0.769 1.247-0.094 0.159-0.209 0.35-0.328 0.556-0.228 0.384-0.484 0.819-0.688 1.162-0.084 0.147-0.169 0.297-0.256 0.447-0.225 0.391-0.456 0.794-0.678 1.181-0.228 0.403-0.453 0.8-0.678 1.194v0.397c0 0.55 0.012 1.15 0.031 1.684 0.009 0.244 0.019 0.678 0.031 1.137 0.012 0.547 0.025 1.113 0.041 1.4l0.003 0.088v0.009l-0.094-0.025c-0.037-0.009-0.072-0.019-0.109-0.028-0.113-0.025-0.234-0.044-0.353-0.056-0.072-0.006-0.147-0.009-0.222-0.009 0 0 0 0 0 0s0 0 0 0c-0.075 0-0.15 0.003-0.222 0.009-0.119 0.012-0.241 0.031-0.353 0.056-0.037 0.009-0.075 0.019-0.109 0.028l-0.094 0.025v-0.009l0.003-0.088c0.013-0.284 0.028-0.853 0.041-1.4 0.009-0.459 0.022-0.894 0.031-1.137 0.022-0.537 0.031-1.134 0.031-1.684v-0.397c-0.225-0.397-0.45-0.791-0.678-1.194-0.222-0.391-0.453-0.791-0.675-1.181-0.088-0.15-0.172-0.3-0.256-0.447-0.2-0.347-0.459-0.781-0.688-1.162-0.122-0.203-0.237-0.397-0.328-0.556-0.338-0.575-0.619-1.019-0.769-1.247-0.112-0.172-0.194-0.294-0.284-0.438l-0.097-0.153 0.175 0.050c0.222 0.063 0.45 0.094 0.694 0.094s0.478-0.031 0.697-0.094l0.053-0.016 0.028 0.047c0.431 0.778 1.591 2.684 2.284 3.825 0.237 0.394 0.428 0.703 0.522 0.862 0 0 0 0 0-0.003 0 0 0 0 0 0.003 0.094-0.156 0.284-0.469 0.522-0.862 0.694-1.138 1.853-3.044 2.284-3.825l0.028-0.047 0.053 0.016c0.219 0.063 0.453 0.094 0.697 0.094s0.472-0.031 0.694-0.094l0.166-0.050z"
+ }
+ }]
+};
+exports.yahoo2 = yahoo2;
+var tux = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.87 11.514c-1.28 0.596-2.471 0.589-3.271 0.532-0.954-0.069-1.721-0.33-2.058-0.558-0.208-0.141-0.49-0.086-0.631 0.122s-0.086 0.49 0.122 0.631c0.542 0.367 1.501 0.64 2.503 0.712 0.17 0.012 0.356 0.020 0.557 0.020 0.872 0 1.979-0.083 3.163-0.634 0.228-0.106 0.326-0.376 0.22-0.604s-0.376-0.326-0.604-0.22zM13.921 10.841c0.044-3.948 0.449-11.409-7.109-10.806-7.463 0.601-5.484 8.484-5.595 11.124-0.099 1.397-0.562 3.104-1.217 4.841h2.017c0.207-0.736 0.36-1.464 0.425-2.159 0.122 0.085 0.252 0.167 0.391 0.245 0.226 0.133 0.42 0.31 0.626 0.497 0.48 0.438 1.025 0.934 2.089 0.996 0.071 0.004 0.143 0.006 0.214 0.006 1.077 0 1.813-0.471 2.404-0.85 0.283-0.181 0.528-0.338 0.759-0.413 0.655-0.205 1.227-0.536 1.655-0.957 0.067-0.066 0.129-0.133 0.187-0.202 0.238 0.873 0.564 1.856 0.926 2.836h4.307c-1.034-1.597-2.101-3.162-2.079-5.159zM1.939 8.693c0-0 0-0-0-0.001-0.074-1.288 0.542-2.372 1.377-2.421s1.571 0.957 1.645 2.245c0 0 0 0 0 0.001 0.004 0.069 0.006 0.138 0.006 0.206-0.264 0.066-0.503 0.163-0.717 0.275-0.001-0.010-0.001-0.019-0.002-0.029 0-0 0-0 0-0-0.071-0.731-0.462-1.284-0.873-1.234s-0.686 0.684-0.614 1.415c0 0 0 0 0 0 0.031 0.319 0.123 0.604 0.251 0.819-0.032 0.025-0.122 0.091-0.225 0.166-0.078 0.057-0.172 0.126-0.286 0.21-0.311-0.408-0.524-0.993-0.562-1.655zM10.395 11.878c-0.030 0.681-0.92 1.322-1.743 1.579l-0.005 0.002c-0.342 0.111-0.647 0.306-0.97 0.513-0.543 0.347-1.104 0.706-1.914 0.706-0.053 0-0.108-0.002-0.161-0.005-0.742-0.043-1.090-0.36-1.529-0.761-0.232-0.211-0.472-0.43-0.781-0.611l-0.007-0.004c-0.667-0.377-1.081-0.845-1.108-1.253-0.013-0.203 0.077-0.378 0.268-0.522 0.416-0.312 0.695-0.516 0.879-0.651 0.205-0.15 0.267-0.195 0.313-0.239 0.033-0.031 0.068-0.065 0.106-0.103 0.382-0.371 1.021-0.993 2.002-0.993 0.6 0 1.264 0.231 1.971 0.686 0.333 0.217 0.623 0.317 0.99 0.444 0.252 0.087 0.539 0.186 0.922 0.35l0.006 0.003c0.357 0.147 0.78 0.415 0.76 0.858zM10.198 10.278c-0.069-0.035-0.14-0.068-0.215-0.098-0.345-0.148-0.622-0.248-0.852-0.328 0.127-0.248 0.206-0.558 0.213-0.894 0-0 0-0 0-0 0.018-0.818-0.395-1.483-0.922-1.484s-0.968 0.661-0.986 1.479c0 0 0 0 0 0-0.001 0.027-0.001 0.053-0 0.080-0.324-0.149-0.643-0.258-0.956-0.324-0.001-0.031-0.003-0.061-0.004-0.092 0-0 0-0.001 0-0.001-0.030-1.491 0.884-2.725 2.043-2.756s2.122 1.152 2.153 2.642c0 0 0 0.001 0 0.001 0.014 0.674-0.167 1.295-0.475 1.776z"
+ }
+ }]
+};
+exports.tux = tux;
+var appleinc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.367 8.501c-0.020-2.026 1.652-2.998 1.727-3.046-0.94-1.375-2.404-1.564-2.926-1.585-1.246-0.126-2.431 0.734-3.064 0.734-0.631 0-1.607-0.715-2.64-0.696-1.358 0.020-2.61 0.79-3.31 2.006-1.411 2.448-0.361 6.076 1.014 8.061 0.672 0.972 1.473 2.064 2.525 2.025 1.013-0.040 1.396-0.656 2.621-0.656s1.569 0.656 2.641 0.635c1.090-0.020 1.781-0.991 2.448-1.966 0.772-1.128 1.089-2.219 1.108-2.275-0.024-0.011-2.126-0.816-2.147-3.236zM10.353 2.555c0.558-0.677 0.935-1.617 0.832-2.555-0.804 0.033-1.779 0.536-2.356 1.212-0.518 0.6-0.971 1.557-0.85 2.476 0.898 0.070 1.815-0.456 2.373-1.132z"
+ }
+ }]
+};
+exports.appleinc = appleinc;
+var finder = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.894 12.16c-0-0.001-0-0.001-0-0.002 0 0.001 0 0.001 0 0.002z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.916 12.727c-0-0.004-0-0.007-0.001-0.011 0 0.004 0 0.007 0.001 0.011z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.903 12.442c-0-0.003-0-0.006-0-0.008 0 0.003 0 0.006 0 0.008z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 0h-14c-0.55 0-1 0.45-1 1v14c0 0.55 0.45 1 1 1h7.716c0.001 0 0.001 0 0.002 0s0.001-0 0.002-0h6.28c0.55 0 1-0.45 1-1v-14c0-0.55-0.45-1-1-1zM3 3.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-1zM15 15h-5.86c-0.105-0.658-0.17-1.336-0.209-1.994 0 0.002 0 0.004 0 0.005-0.308 0.034-0.618 0.051-0.931 0.051-2.088 0-4.1-0.76-5.664-2.141-0.233-0.206-0.255-0.561-0.050-0.794s0.561-0.255 0.794-0.050c1.358 1.199 3.105 1.859 4.919 1.859 0.298 0 0.595-0.018 0.888-0.053-0.034-1.847 0.107-3.311 0.11-3.334 0.014-0.141-0.032-0.28-0.127-0.385s-0.229-0.164-0.371-0.164h-1.487c0.022-0.541 0.079-1.466 0.234-2.503 0.295-1.981 0.812-3.528 1.502-4.497h6.251v14z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 5c-0.276 0-0.5-0.224-0.5-0.5v-1c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v1c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.445 13.050c-0.057 0.003-0.114 0.005-0.171 0.007 0.057-0.002 0.114-0.004 0.171-0.007z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 13.063c0.073 0 0.146-0.001 0.22-0.003-0.073 0.002-0.146 0.003-0.22 0.003z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.423 11.925c0.012-0.001 0.024-0.001 0.037-0.002-0.012 0.001-0.024 0.001-0.037 0.002z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.204 11.934c0.017-0 0.034-0.001 0.050-0.002-0.017 0.001-0.034 0.001-0.050 0.002z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.713 10.128c-0.206-0.233-0.561-0.255-0.794-0.050-1.135 1.002-2.542 1.627-4.032 1.806 0.007 0.364 0.020 0.742 0.043 1.127 1.749-0.191 3.403-0.916 4.733-2.090 0.233-0.206 0.255-0.561 0.050-0.794z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.93 13.012c-0.072 0.008-0.144 0.015-0.216 0.021 0.072-0.006 0.144-0.013 0.216-0.021z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.68 13.035c-0.061 0.005-0.122 0.009-0.183 0.013 0.061-0.004 0.122-0.008 0.183-0.013z"
+ }
+ }]
+};
+exports.finder = finder;
+var android = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 6c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1zM2 6c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1zM3.5 11.5c0 0.828 0.672 1.5 1.5 1.5v0 2c0 0.55 0.45 1 1 1s1-0.45 1-1v-2h2v2c0 0.55 0.45 1 1 1s1-0.45 1-1v-2c0.828 0 1.5-0.672 1.5-1.5v-5.5h-9v5.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.472 5c-0.152-1.373-0.922-2.559-2.025-3.276l0.5-1.001c0.123-0.247 0.023-0.547-0.224-0.671s-0.547-0.023-0.671 0.224l-0.502 1.004-0.13-0.052c-0.446-0.148-0.924-0.229-1.42-0.229s-0.974 0.081-1.42 0.229l-0.13 0.052-0.502-1.004c-0.123-0.247-0.424-0.347-0.671-0.224s-0.347 0.424-0.224 0.671l0.5 1.001c-1.103 0.716-1.873 1.903-2.025 3.276v0.5h8.972v-0.5h-0.028zM6.5 4c-0.276 0-0.5-0.224-0.5-0.5s0.223-0.499 0.499-0.5c0 0 0.001 0 0.001 0s0.001-0 0.001-0c0.276 0.001 0.499 0.224 0.499 0.5s-0.224 0.5-0.5 0.5zM9.5 4c-0.276 0-0.5-0.224-0.5-0.5s0.223-0.499 0.499-0.5c0 0 0.001 0 0.001 0s0.001-0 0.002-0c0.276 0.001 0.499 0.224 0.499 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.android = android;
+var windows = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.441 7.999c-0.745-0.383-1.47-0.577-2.154-0.577-0.093 0-0.187 0.003-0.28 0.011-0.873 0.072-1.671 0.303-2.184 0.482-0.136 0.050-0.276 0.103-0.419 0.161l-1.403 4.866c0.964-0.357 1.817-0.53 2.598-0.53 1.263 0 2.18 0.472 2.937 0.958 0.359-1.217 1.219-4.158 1.476-5.036-0.187-0.114-0.376-0.228-0.571-0.333zM8.255 9.235l-1.413 4.909c0.419 0.24 1.83 1.001 2.91 1.001 0.872 0 1.848-0.223 2.982-0.684l1.349-4.718c-0.916 0.296-1.795 0.446-2.617 0.446-1.499 0-2.549-0.486-3.211-0.952zM4.575 5.762c1.205 0.012 2.096 0.472 2.835 0.945l1.449-4.958c-0.305-0.175-1.106-0.611-1.685-0.759-0.381-0.089-0.782-0.135-1.206-0.135-0.809 0.015-1.694 0.218-2.701 0.622l-1.382 4.853c1.013-0.382 1.885-0.568 2.689-0.568 0.001 0 0.002 0 0.002 0zM16 3.096c-0.919 0.357-1.816 0.539-2.672 0.539-1.433 0-2.489-0.497-3.173-0.974l-1.437 4.972c0.965 0.62 2.005 0.936 3.096 0.936 0.89 0 1.812-0.214 2.742-0.636l-0.003-0.035 0.058-0.014 1.39-4.788z"
+ }
+ }]
+};
+exports.windows = windows;
+var windows8 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.005 8l-0.005-4.876 6-0.815v5.691zM7 2.164l7.998-1.164v7h-7.998zM15 9l-0.002 7-7.998-1.125v-5.875zM6 14.747l-5.995-0.822-0-4.926h5.995z"
+ }
+ }]
+};
+exports.windows8 = windows8;
+var soundcloud = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.937 8.034c-0.283 0-0.552 0.055-0.798 0.154-0.164-1.787-1.723-3.188-3.625-3.188-0.465 0-0.917 0.088-1.317 0.237-0.156 0.058-0.197 0.117-0.197 0.233v6.292c0 0.121 0.098 0.222 0.221 0.234 0.005 0.001 5.68 0.003 5.717 0.003 1.139 0 2.062-0.888 2.062-1.983s-0.924-1.983-2.063-1.983zM6.25 12h0.5l0.25-3.503-0.25-3.497h-0.5l-0.25 3.497zM4.75 12h-0.5l-0.25-2.543 0.25-2.457h0.5l0.25 2.5zM2.25 12h0.5l0.25-2-0.25-2h-0.5l-0.25 2zM0.25 11h0.5l0.25-1-0.25-1h-0.5l-0.25 1z"
+ }
+ }]
+};
+exports.soundcloud = soundcloud;
+var soundcloud2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM2.75 11h-0.5l-0.25-1.5 0.25-1.5h0.5l0.25 1.5-0.25 1.5zM4.75 11h-0.5l-0.25-2 0.25-2h0.5l0.25 2-0.25 2zM6.75 11h-0.5l-0.25-3 0.25-3h0.5l0.25 3-0.25 3zM12.894 11c-0.031 0-4.706-0.003-4.709-0.003-0.1-0.009-0.181-0.097-0.184-0.2v-5.394c0-0.1 0.034-0.15 0.162-0.2 0.331-0.128 0.703-0.203 1.088-0.203 1.566 0 2.85 1.2 2.987 2.734 0.203-0.084 0.425-0.131 0.656-0.131 0.938 0 1.7 0.762 1.7 1.7s-0.762 1.697-1.7 1.697z"
+ }
+ }]
+};
+exports.soundcloud2 = soundcloud2;
+var skype = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.65 0.584c-0.025-0.016-0.053-0.028-0.078-0.041-0.028 0.006-0.053 0.009-0.081 0.016l0.159 0.025z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.575 6.578c-0.006 0.028-0.009 0.056-0.012 0.081 0.016 0.025 0.025 0.050 0.041 0.075l-0.028-0.156z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.419 9.416c0.006-0.028 0.009-0.056 0.016-0.084-0.016-0.025-0.025-0.050-0.041-0.075l0.025 0.159z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.25 15.359c0.025 0.016 0.053 0.028 0.078 0.041 0.028-0.006 0.056-0.009 0.084-0.012l-0.162-0.028z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.434 9.331c-0.006 0.028-0.009 0.056-0.016 0.084l-0.028-0.162c0.016 0.028 0.028 0.053 0.044 0.078 0.081-0.45 0.125-0.909 0.125-1.369 0-1.019-0.2-2.009-0.594-2.941-0.381-0.9-0.925-1.709-1.619-2.403s-1.503-1.238-2.4-1.619c-0.931-0.394-1.922-0.594-2.941-0.594-0.481 0-0.963 0.044-1.431 0.134 0 0-0.003 0-0.003 0 0.025 0.012 0.053 0.025 0.078 0.041l-0.159-0.025c0.028-0.006 0.053-0.009 0.081-0.016-0.644-0.341-1.366-0.525-2.097-0.525-1.194 0-2.319 0.466-3.163 1.309s-1.309 1.969-1.309 3.163c0 0.759 0.197 1.509 0.563 2.169 0.006-0.028 0.009-0.056 0.012-0.081l0.028 0.159c-0.016-0.025-0.028-0.050-0.041-0.075-0.075 0.428-0.112 0.866-0.112 1.303 0 1.019 0.2 2.009 0.594 2.941 0.381 0.9 0.925 1.706 1.619 2.4s1.503 1.238 2.403 1.619c0.931 0.394 1.922 0.594 2.941 0.594 0.444 0 0.887-0.041 1.322-0.119-0.025-0.016-0.050-0.028-0.078-0.041l0.162 0.028c-0.028 0.006-0.056 0.009-0.084 0.012 0.669 0.378 1.428 0.581 2.2 0.581 1.194 0 2.319-0.466 3.162-1.309s1.309-1.969 1.309-3.162c-0.003-0.759-0.2-1.509-0.569-2.175zM8.034 12.591c-2.684 0-3.884-1.319-3.884-2.309 0-0.506 0.375-0.863 0.891-0.863 1.15 0 0.85 1.65 2.994 1.65 1.097 0 1.703-0.597 1.703-1.206 0-0.366-0.181-0.772-0.903-0.95l-2.388-0.597c-1.922-0.481-2.272-1.522-2.272-2.5 0-2.028 1.909-2.791 3.703-2.791 1.653 0 3.6 0.913 3.6 2.131 0 0.522-0.453 0.825-0.969 0.825-0.981 0-0.8-1.356-2.775-1.356-0.981 0-1.522 0.444-1.522 1.078s0.775 0.838 1.447 0.991l1.769 0.394c1.934 0.431 2.425 1.563 2.425 2.625 0 1.647-1.266 2.878-3.819 2.878z"
+ }
+ }]
+};
+exports.skype = skype;
+var reddit = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 10c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 10c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10.049 12.137c0.258-0.203 0.631-0.159 0.834 0.099s0.159 0.631-0.099 0.834c-0.717 0.565-1.81 0.93-2.783 0.93s-2.066-0.365-2.784-0.93c-0.258-0.203-0.302-0.576-0.099-0.834s0.576-0.302 0.834-0.099c0.413 0.325 1.23 0.675 2.049 0.675s1.636-0.35 2.049-0.675zM16 8c0-1.105-0.895-2-2-2-0.752 0-1.406 0.415-1.748 1.028-1.028-0.562-2.28-0.926-3.645-1.010l1.193-2.68 2.284 0.659c0.206 0.583 0.761 1.002 1.415 1.002 0.828 0 1.5-0.672 1.5-1.5s-0.672-1.5-1.5-1.5c-0.571 0-1.068 0.319-1.321 0.789l-2.545-0.735c-0.285-0.082-0.587 0.058-0.707 0.329l-1.621 3.641c-1.33 0.094-2.551 0.453-3.557 1.004-0.342-0.613-0.996-1.028-1.748-1.028-1.105 0-2 0.895-2 2 0 0.817 0.491 1.52 1.193 1.83-0.126 0.375-0.193 0.767-0.193 1.17 0 2.761 3.134 5 7 5s7-2.239 7-5c0-0.403-0.067-0.795-0.193-1.17 0.703-0.31 1.193-1.013 1.193-1.83zM13.5 2.938c0.311 0 0.563 0.252 0.563 0.563s-0.252 0.563-0.563 0.563-0.563-0.252-0.563-0.563 0.252-0.563 0.563-0.563zM1 8c0-0.551 0.449-1 1-1 0.399 0 0.743 0.234 0.904 0.573-0.523 0.396-0.956 0.854-1.276 1.355-0.368-0.148-0.628-0.508-0.628-0.928zM8 14.813c-3.21 0-5.813-1.707-5.813-3.813s2.602-3.813 5.813-3.813c3.21 0 5.813 1.707 5.813 3.813s-2.602 3.813-5.813 3.813zM14.372 8.928c-0.32-0.502-0.753-0.959-1.276-1.355 0.161-0.338 0.505-0.573 0.904-0.573 0.551 0 1 0.449 1 1 0 0.42-0.26 0.78-0.628 0.928z"
+ }
+ }]
+};
+exports.reddit = reddit;
+var hackernews = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0v16h16v-16h-16zM8.5 9.125v3.375h-1v-3.375l-2.734-5.125h1.134l2.1 3.938 2.1-3.938h1.134l-2.734 5.125z"
+ }
+ }]
+};
+exports.hackernews = hackernews;
+var wikipedia = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.106 3.65c0 0.050-0.016 0.097-0.047 0.141-0.031 0.041-0.066 0.063-0.106 0.063-0.313 0.031-0.569 0.131-0.766 0.3-0.2 0.169-0.403 0.497-0.613 0.975l-3.225 7.272c-0.022 0.069-0.081 0.1-0.178 0.1-0.075 0-0.134-0.034-0.178-0.1l-1.809-3.781-2.081 3.781c-0.044 0.069-0.1 0.1-0.178 0.1-0.094 0-0.153-0.034-0.184-0.1l-3.166-7.269c-0.197-0.45-0.406-0.766-0.625-0.944s-0.525-0.291-0.916-0.331c-0.034 0-0.066-0.019-0.094-0.053-0.031-0.034-0.044-0.075-0.044-0.122 0-0.119 0.034-0.178 0.1-0.178 0.281 0 0.578 0.013 0.888 0.038 0.288 0.025 0.556 0.038 0.809 0.038 0.256 0 0.563-0.013 0.913-0.038 0.366-0.025 0.691-0.038 0.975-0.038 0.069 0 0.1 0.059 0.1 0.178s-0.022 0.175-0.063 0.175c-0.281 0.022-0.506 0.094-0.669 0.216s-0.244 0.281-0.244 0.481c0 0.1 0.034 0.228 0.1 0.378l2.616 5.912 1.487-2.806-1.384-2.903c-0.25-0.519-0.453-0.853-0.612-1.003s-0.403-0.241-0.728-0.275c-0.031 0-0.056-0.019-0.084-0.053s-0.041-0.075-0.041-0.122c0-0.119 0.028-0.178 0.088-0.178 0.281 0 0.541 0.013 0.778 0.038 0.228 0.025 0.469 0.038 0.728 0.038 0.253 0 0.519-0.013 0.803-0.038 0.291-0.025 0.578-0.038 0.859-0.038 0.069 0 0.1 0.059 0.1 0.178s-0.019 0.175-0.063 0.175c-0.566 0.038-0.847 0.2-0.847 0.481 0 0.125 0.066 0.322 0.197 0.588l0.916 1.859 0.912-1.7c0.125-0.241 0.191-0.444 0.191-0.606 0-0.388-0.281-0.594-0.847-0.619-0.050 0-0.075-0.059-0.075-0.175 0-0.044 0.012-0.081 0.037-0.119s0.050-0.056 0.075-0.056c0.203 0 0.45 0.013 0.747 0.038 0.281 0.025 0.516 0.038 0.697 0.038 0.131 0 0.322-0.013 0.575-0.031 0.319-0.028 0.588-0.044 0.803-0.044 0.050 0 0.075 0.050 0.075 0.15 0 0.134-0.047 0.203-0.137 0.203-0.328 0.034-0.594 0.125-0.794 0.272s-0.45 0.481-0.75 1.006l-1.222 2.237 1.644 3.35 2.428-5.647c0.084-0.206 0.125-0.397 0.125-0.569 0-0.412-0.281-0.631-0.847-0.659-0.050 0-0.075-0.059-0.075-0.175 0-0.119 0.037-0.178 0.113-0.178 0.206 0 0.45 0.013 0.734 0.038 0.262 0.025 0.481 0.038 0.656 0.038 0.188 0 0.4-0.013 0.644-0.038 0.253-0.025 0.481-0.038 0.684-0.038 0.063 0 0.094 0.050 0.094 0.15z"
+ }
+ }]
+};
+exports.wikipedia = wikipedia;
+var linkedin = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 13h-2v-7h2v7zM5 5c-0.553 0-1-0.447-1-1s0.447-1 1-1c0.553 0 1 0.447 1 1s-0.447 1-1 1zM13 13h-2v-4c0-0.553-0.447-1-1-1s-1 0.447-1 1v4h-2v-7h2v1.241c0.412-0.566 1.044-1.241 1.75-1.241 1.244 0 2.25 1.119 2.25 2.5v4.5z"
+ }
+ }]
+};
+exports.linkedin = linkedin;
+var linkedin2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 6h2.767v1.418h0.040c0.385-0.691 1.327-1.418 2.732-1.418 2.921 0 3.461 1.818 3.461 4.183v4.817h-2.885v-4.27c0-1.018-0.021-2.329-1.5-2.329-1.502 0-1.732 1.109-1.732 2.255v4.344h-2.883v-9z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 6h3v9h-3v-9z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 3.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }]
+};
+exports.linkedin2 = linkedin2;
+var lastfm = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.056 11.972l-0.588-1.594c0 0-0.953 1.063-2.381 1.063-1.266 0-2.163-1.1-2.163-2.859 0-2.253 1.137-3.059 2.253-3.059 1.612 0 2.125 1.044 2.566 2.381l0.588 1.831c0.588 1.778 1.688 3.206 4.856 3.206 2.272 0 3.813-0.697 3.813-2.528 0-1.484-0.844-2.253-2.419-2.622l-1.172-0.256c-0.806-0.184-1.044-0.513-1.044-1.063 0-0.622 0.494-0.991 1.3-0.991 0.881 0 1.356 0.331 1.428 1.119l1.831-0.219c-0.147-1.65-1.284-2.328-3.153-2.328-1.65 0-3.262 0.622-3.262 2.622 0 1.247 0.606 2.034 2.125 2.4l1.247 0.294c0.934 0.219 1.247 0.606 1.247 1.137 0 0.678-0.659 0.953-1.906 0.953-1.85 0-2.622-0.972-3.059-2.309l-0.606-1.831c-0.766-2.384-1.994-3.263-4.431-3.263-2.694 0-4.125 1.703-4.125 4.6 0 2.784 1.428 4.287 3.997 4.287 2.069 0 3.059-0.972 3.059-0.972v0z"
+ }
+ }]
+};
+exports.lastfm = lastfm;
+var lastfm2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11.666 11.887c-2.775 0-3.737-1.25-4.25-2.806l-0.513-1.603c-0.384-1.172-0.834-2.084-2.244-2.084-0.978 0-1.972 0.706-1.972 2.678 0 1.541 0.784 2.503 1.894 2.503 1.25 0 2.084-0.931 2.084-0.931l0.513 1.394c0 0-0.866 0.85-2.678 0.85-2.25 0-3.5-1.313-3.5-3.75 0-2.534 1.25-4.025 3.609-4.025 2.134 0 3.206 0.769 3.881 2.853l0.528 1.603c0.384 1.172 1.059 2.022 2.678 2.022 1.091 0 1.669-0.241 1.669-0.834 0-0.466-0.272-0.803-1.091-0.994l-1.091-0.256c-1.331-0.322-1.859-1.009-1.859-2.1 0-1.747 1.412-2.294 2.853-2.294 1.634 0 2.631 0.594 2.759 2.038l-1.603 0.194c-0.066-0.691-0.481-0.978-1.25-0.978-0.706 0-1.137 0.322-1.137 0.866 0 0.481 0.209 0.769 0.912 0.931l1.025 0.225c1.378 0.322 2.116 0.994 2.116 2.294 0 1.597-1.347 2.206-3.334 2.206z"
+ }
+ }]
+};
+exports.lastfm2 = lastfm2;
+var delicious = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0v16h16v-16h-16zM8 15v-7h-7v-7h7v7h7v7h-7z"
+ }
+ }]
+};
+exports.delicious = delicious;
+var stumbleupon = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 5c-0.55 0-1 0.45-1 1v4c0 1.653-1.347 3-3 3s-3-1.347-3-3v-2h2v2c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-1.653 1.347-3 3-3s3 1.347 3 2.781v0.969l-1.281 0.375-0.719-0.375v-0.969c0-0.331-0.45-0.781-1-0.781z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 10c0 1.653-1.347 3-3 3s-3-1.347-3-3.219v-1.938l0.719 0.375 1.281-0.375v1.938c0 0.769 0.45 1.219 1 1.219s1-0.45 1-1v-2h2v2z"
+ }
+ }]
+};
+exports.stumbleupon = stumbleupon;
+var stumbleupon2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.313 0h-10.625c-1.478 0-2.688 1.209-2.688 2.688v10.625c0 1.478 1.209 2.688 2.688 2.688h10.625c1.478 0 2.688-1.209 2.688-2.688v-10.625c0-1.478-1.209-2.688-2.688-2.688zM8 5c-0.551 0-1 0.449-1 1v4c0 1.654-1.346 3-3 3s-3-1.346-3-3v-2h2v2c0 0.551 0.449 1 1 1s1-0.449 1-1v-4c0-1.654 1.346-3 3-3s3 1.346 3 2.781v0.969l-1.281 0.375-0.719-0.375v-0.969c0-0.333-0.449-0.781-1-0.781zM15 10c0 1.654-1.346 3-3 3s-3-1.346-3-3.219v-1.938l0.719 0.375 1.281-0.375v1.938c0 0.77 0.449 1.219 1 1.219s1-0.449 1-1v-2h2v2z"
+ }
+ }]
+};
+exports.stumbleupon2 = stumbleupon2;
+var stackoverflow = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 10v6h-16v-6h2v4h12v-4zM3 11h10v2h-10zM3.237 8.835l0.433-1.953 9.763 2.164-0.433 1.953zM4.37 4.821l0.845-1.813 9.063 4.226-0.845 1.813zM15.496 5.648l-1.218 1.587-7.934-6.088 0.88-1.147h0.91z"
+ }
+ }]
+};
+exports.stackoverflow = stackoverflow;
+var pinterest = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1.069c-3.828 0-6.931 3.103-6.931 6.931 0 2.938 1.828 5.444 4.406 6.453-0.059-0.547-0.116-1.391 0.025-1.988 0.125-0.541 0.813-3.444 0.813-3.444s-0.206-0.416-0.206-1.028c0-0.963 0.559-1.684 1.253-1.684 0.591 0 0.878 0.444 0.878 0.975 0 0.594-0.378 1.484-0.575 2.306-0.166 0.691 0.344 1.253 1.025 1.253 1.231 0 2.178-1.3 2.178-3.175 0-1.659-1.194-2.819-2.894-2.819-1.972 0-3.128 1.478-3.128 3.009 0 0.597 0.228 1.234 0.516 1.581 0.056 0.069 0.066 0.128 0.047 0.2-0.053 0.219-0.169 0.691-0.194 0.787-0.031 0.128-0.1 0.153-0.231 0.094-0.866-0.403-1.406-1.669-1.406-2.684 0-2.188 1.587-4.194 4.578-4.194 2.403 0 4.272 1.712 4.272 4.003 0 2.388-1.506 4.313-3.597 4.313-0.703 0-1.362-0.366-1.588-0.797 0 0-0.347 1.322-0.431 1.647-0.156 0.603-0.578 1.356-0.862 1.816 0.65 0.2 1.337 0.309 2.053 0.309 3.828 0 6.931-3.103 6.931-6.931 0-3.831-3.103-6.934-6.931-6.934z"
+ }
+ }]
+};
+exports.pinterest = pinterest;
+var pinterest2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.412 0-8 3.587-8 8s3.587 8 8 8 8-3.588 8-8-3.588-8-8-8zM8 14.931c-0.716 0-1.403-0.109-2.053-0.309 0.281-0.459 0.706-1.216 0.862-1.816 0.084-0.325 0.431-1.647 0.431-1.647 0.225 0.431 0.888 0.797 1.587 0.797 2.091 0 3.597-1.922 3.597-4.313 0-2.291-1.869-4.003-4.272-4.003-2.991 0-4.578 2.009-4.578 4.194 0 1.016 0.541 2.281 1.406 2.684 0.131 0.063 0.2 0.034 0.231-0.094 0.022-0.097 0.141-0.566 0.194-0.787 0.016-0.069 0.009-0.131-0.047-0.2-0.287-0.347-0.516-0.988-0.516-1.581 0-1.528 1.156-3.009 3.128-3.009 1.703 0 2.894 1.159 2.894 2.819 0 1.875-0.947 3.175-2.178 3.175-0.681 0-1.191-0.563-1.025-1.253 0.197-0.825 0.575-1.713 0.575-2.306 0-0.531-0.284-0.975-0.878-0.975-0.697 0-1.253 0.719-1.253 1.684 0 0.612 0.206 1.028 0.206 1.028s-0.688 2.903-0.813 3.444c-0.141 0.6-0.084 1.441-0.025 1.988-2.578-1.006-4.406-3.512-4.406-6.45 0-3.828 3.103-6.931 6.931-6.931s6.931 3.103 6.931 6.931c0 3.828-3.103 6.931-6.931 6.931z"
+ }
+ }]
+};
+exports.pinterest2 = pinterest2;
+var xing = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.884 10.406h-1.728c-0.103 0-0.181-0.047-0.225-0.119-0.047-0.075-0.047-0.169 0-0.266l1.838-3.244c0.003-0.003 0.003-0.006 0-0.009l-1.169-2.025c-0.047-0.097-0.056-0.191-0.009-0.266 0.044-0.072 0.131-0.109 0.237-0.109h1.731c0.266 0 0.397 0.172 0.481 0.325 0 0 1.181 2.063 1.191 2.075-0.069 0.125-1.869 3.303-1.869 3.303-0.094 0.162-0.219 0.334-0.478 0.334zM13.069 2.378l-3.831 6.775c-0.003 0.003-0.003 0.009 0 0.012l2.441 4.456c0.047 0.097 0.050 0.194 0.003 0.269-0.044 0.072-0.125 0.109-0.231 0.109h-1.728c-0.266 0-0.397-0.175-0.484-0.328 0 0-2.453-4.5-2.459-4.512 0.122-0.216 3.85-6.828 3.85-6.828 0.094-0.166 0.206-0.328 0.463-0.328h1.753c0.103 0 0.188 0.041 0.231 0.109 0.044 0.072 0.044 0.169-0.006 0.266z"
+ }
+ }]
+};
+exports.xing = xing;
+var xing2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.431 3.159c-0.138 0-0.256 0.050-0.316 0.144-0.059 0.1-0.050 0.225 0.013 0.353l1.559 2.7c0.003 0.006 0.003 0.009 0 0.013l-2.45 4.331c-0.063 0.128-0.059 0.256 0 0.353 0.059 0.094 0.163 0.156 0.3 0.156h2.306c0.344 0 0.513-0.234 0.628-0.447 0 0 2.397-4.241 2.491-4.406-0.009-0.016-1.588-2.766-1.588-2.766-0.116-0.203-0.287-0.431-0.644-0.431h-2.3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.125 0c-0.344 0-0.494 0.216-0.619 0.441 0 0-4.972 8.816-5.134 9.106 0.009 0.016 3.278 6.016 3.278 6.016 0.116 0.203 0.291 0.441 0.644 0.441h2.306c0.137 0 0.247-0.053 0.306-0.147 0.063-0.1 0.059-0.228-0.006-0.356l-3.25-5.947c-0.003-0.006-0.003-0.009 0-0.016l5.109-9.034c0.063-0.128 0.066-0.256 0.006-0.356-0.059-0.094-0.169-0.147-0.306-0.147h-2.334z"
+ }
+ }]
+};
+exports.xing2 = xing2;
+var flattr = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.743 0c-3.802 0-5.743 2.19-5.743 6.279v0 8.579l3.725-3.729v-4.358c0-1.694 0.449-2.772 1.955-3.014v0c0.526-0.103 1.621-0.067 2.317-0.067v0 2.587c0 0.024 0.003 0.066 0.009 0.087v0c0.029 0.105 0.124 0.181 0.236 0.182v0c0.063 0 0.123-0.033 0.184-0.093v0l6.455-6.453-9.139-0.001zM12.275 4.871v4.358c0 1.694-0.449 2.772-1.955 3.014v0c-0.526 0.103-1.621 0.067-2.317 0.067v0-2.587c0-0.023-0.003-0.066-0.009-0.087v0c-0.029-0.105-0.124-0.182-0.236-0.182v0c-0.064-0-0.123 0.033-0.184 0.093v0l-6.455 6.453 9.139 0.001c3.802 0 5.743-2.19 5.743-6.279v0-8.579l-3.725 3.729z"
+ }
+ }]
+};
+exports.flattr = flattr;
+var foursquare = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.306 1.408c-0.188-0.256-0.488-0.408-0.806-0.408h-9.5c-0.552 0-1 0.448-1 1v12c0 0.404 0.244 0.769 0.617 0.924 0.124 0.051 0.254 0.076 0.382 0.076 0.26 0 0.516-0.102 0.707-0.293l3.707-3.707h2.586c0.437 0 0.824-0.284 0.954-0.702l2.5-8c0.095-0.304 0.040-0.634-0.149-0.891zM10.515 5h-3.515c-0.552 0-1 0.448-1 1s0.448 1 1 1h2.89l-0.625 2h-2.265c-0.265 0-0.52 0.105-0.707 0.293l-2.293 2.293v-8.586h7.14l-0.625 2z"
+ }
+ }]
+};
+exports.foursquare = foursquare;
+var yelp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.514 10.21c-0.27 0.272-0.042 0.768-0.042 0.768l2.033 3.394c0 0 0.334 0.447 0.623 0.447 0.29 0 0.577-0.239 0.577-0.239l1.607-2.297c0 0 0.162-0.29 0.166-0.544 0.006-0.361-0.538-0.46-0.538-0.46l-3.805-1.222c-0 0-0.373-0.099-0.621 0.152zM9.321 8.5c0.195 0.33 0.732 0.234 0.732 0.234l3.796-1.109c0 0 0.517-0.21 0.591-0.491 0.072-0.281-0.085-0.619-0.085-0.619l-1.814-2.137c0 0-0.157-0.27-0.483-0.297-0.36-0.031-0.581 0.405-0.581 0.405l-2.145 3.375c0 0-0.19 0.336-0.010 0.64zM7.527 7.184c0.447-0.11 0.518-0.759 0.518-0.759l-0.030-5.404c0 0-0.067-0.667-0.367-0.847-0.47-0.285-0.609-0.136-0.744-0.116l-3.151 1.171c0 0-0.309 0.102-0.469 0.36-0.23 0.365 0.233 0.899 0.233 0.899l3.276 4.465c0 0 0.323 0.334 0.735 0.233zM6.749 9.371c0.011-0.417-0.5-0.667-0.5-0.667l-3.387-1.711c0 0-0.502-0.207-0.746-0.063-0.187 0.11-0.352 0.31-0.368 0.486l-0.221 2.716c0 0-0.033 0.471 0.089 0.685 0.173 0.304 0.741 0.092 0.741 0.092l3.955-0.874c0.154-0.103 0.423-0.113 0.438-0.664zM7.732 10.837c-0.339-0.174-0.746 0.187-0.746 0.187l-2.648 2.915c0 0-0.33 0.446-0.246 0.72 0.079 0.257 0.21 0.384 0.396 0.474l2.659 0.839c0 0 0.322 0.067 0.567-0.004 0.347-0.1 0.283-0.643 0.283-0.643l0.060-3.947c-0 0-0.014-0.38-0.324-0.541z"
+ }
+ }]
+};
+exports.yelp = yelp;
+var paypal = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.531 4.822c-0.747 3.316-3.053 5.066-6.688 5.066h-1.209l-0.841 5.338h-1.013l-0.053 0.344c-0.034 0.228 0.141 0.431 0.369 0.431h2.588c0.306 0 0.566-0.222 0.616-0.525l0.025-0.131 0.488-3.091 0.031-0.169c0.047-0.303 0.309-0.525 0.616-0.525h0.384c2.506 0 4.469-1.019 5.044-3.963 0.216-1.119 0.134-2.069-0.356-2.775z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.984 1.206c-0.741-0.844-2.081-1.206-3.794-1.206h-4.972c-0.35 0-0.65 0.253-0.703 0.6l-2.072 13.131c-0.041 0.259 0.159 0.494 0.422 0.494h3.072l0.772-4.891-0.025 0.153c0.053-0.347 0.35-0.6 0.7-0.6h1.459c2.866 0 5.109-1.162 5.766-4.531 0.019-0.1 0.037-0.197 0.050-0.291 0.194-1.244 0-2.094-0.675-2.859z"
+ }
+ }]
+};
+exports.paypal = paypal;
+var chrome = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.036 6.977l-2.29-3.966c1.466-1.835 3.722-3.012 6.254-3.012 2.929 0 5.489 1.574 6.883 3.922h-6.528c-0.117-0.010-0.236-0.016-0.356-0.016-1.904 0-3.509 1.307-3.964 3.071zM10.864 5.078h4.585c0.355 0.905 0.551 1.891 0.551 2.922 0 4.388-3.533 7.95-7.909 7.999l3.272-5.667c0.461-0.662 0.731-1.466 0.731-2.332 0-1.143-0.471-2.178-1.23-2.922zM5.094 8c0-1.603 1.304-2.906 2.906-2.906s2.906 1.304 2.906 2.906c0 1.602-1.304 2.906-2.906 2.906s-2.906-1.304-2.906-2.906zM9.097 11.944l-2.29 3.967c-3.852-0.576-6.806-3.899-6.806-7.911 0-1.425 0.373-2.763 1.026-3.922l3.266 5.657c0.654 1.392 2.070 2.359 3.707 2.359 0.38 0 0.747-0.052 1.097-0.149z"
+ }
+ }]
+};
+exports.chrome = chrome;
+var firefox = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.977 5.221l-0.185 1.189c0 0-0.265-2.201-0.59-3.024-0.498-1.261-0.719-1.251-0.72-1.249 0.333 0.847 0.273 1.302 0.273 1.302s-0.591-1.609-2.152-2.121c-1.729-0.567-2.665-0.412-2.773-0.383-0.016-0-0.032-0-0.047-0 0.013 0.001 0.025 0.002 0.038 0.003-0.001 0-0.001 0.001-0.001 0.001 0.007 0.009 1.911 0.333 2.249 0.797 0 0-0.809 0-1.614 0.232-0.036 0.010 2.961 0.374 3.574 3.37 0 0-0.329-0.686-0.735-0.802 0.267 0.813 0.199 2.356-0.056 3.123-0.033 0.099-0.066-0.426-0.568-0.652 0.161 1.151-0.010 2.976-0.808 3.479-0.062 0.039 0.5-1.802 0.113-1.090-2.23 3.419-4.866 1.578-6.051 0.767 0.607 0.132 1.76-0.021 2.271-0.4 0.001-0 0.001-0.001 0.002-0.001 0.554-0.379 0.882-0.656 1.177-0.59s0.491-0.23 0.262-0.493c-0.229-0.263-0.786-0.625-1.539-0.428-0.531 0.139-1.19 0.727-2.194 0.132-0.771-0.457-0.844-0.837-0.851-1.1 0.019-0.093 0.043-0.18 0.072-0.26 0.089-0.248 0.358-0.323 0.508-0.382 0.254 0.044 0.473 0.123 0.703 0.241 0.003-0.076 0.004-0.178-0-0.293 0.022-0.044 0.008-0.176-0.027-0.337-0.020-0.161-0.053-0.328-0.106-0.48 0-0 0-0 0-0s0.002-0.001 0.002-0.001c0.001-0.001 0.002-0.002 0.003-0.003s0-0.001 0.001-0.001c0.001-0.002 0.002-0.004 0.003-0.007 0.016-0.072 0.188-0.211 0.402-0.361 0.192-0.134 0.417-0.277 0.595-0.387 0.157-0.098 0.277-0.17 0.302-0.189 0.010-0.007 0.021-0.016 0.034-0.026 0.002-0.002 0.005-0.004 0.007-0.006s0.003-0.002 0.004-0.004c0.085-0.067 0.211-0.194 0.237-0.462 0-0.001 0-0.001 0-0.002 0.001-0.008 0.001-0.016 0.002-0.024 0-0.006 0.001-0.011 0.001-0.017 0-0.004 0-0.009 0.001-0.013 0-0.011 0.001-0.021 0.001-0.032 0-0.001 0-0.001 0-0.002 0-0.026-0-0.053-0.002-0.081-0.001-0.016-0.002-0.030-0.005-0.043-0-0.001-0-0.001-0-0.002s-0.001-0.003-0.001-0.004-0.001-0.005-0.002-0.007c-0-0-0-0-0-0.001-0.001-0.003-0.002-0.005-0.003-0.007-0-0-0-0-0-0-0.027-0.064-0.13-0.088-0.554-0.096-0-0-0.001-0-0.001-0v0c-0.173-0.003-0.399-0.003-0.695-0.002-0.52 0.002-0.807-0.508-0.898-0.705 0.126-0.695 0.489-1.19 1.085-1.525 0.011-0.006 0.009-0.012-0.004-0.015 0.117-0.071-1.41-0.002-2.112 0.891-0.623-0.155-1.166-0.144-1.635-0.035-0.090-0.003-0.202-0.014-0.335-0.041-0.311-0.282-0.757-0.803-0.781-1.425 0 0-0.001 0.001-0.004 0.003-0-0.006-0.001-0.012-0.001-0.018 0 0-0.949 0.729-0.807 2.717-0 0.032-0.001 0.062-0.002 0.092-0.257 0.348-0.384 0.641-0.394 0.706-0.228 0.463-0.458 1.16-0.646 2.218 0 0 0.131-0.417 0.395-0.889-0.194 0.594-0.346 1.518-0.257 2.904 0 0 0.024-0.307 0.107-0.75 0.065 0.86 0.352 1.921 1.076 3.169 1.39 2.396 3.526 3.605 5.887 3.791 0.419 0.035 0.845 0.035 1.272 0.003 0.039-0.003 0.079-0.006 0.118-0.009 0.484-0.034 0.971-0.107 1.457-0.224 6.643-1.606 5.921-9.628 5.921-9.628z"
+ }
+ }]
+};
+exports.firefox = firefox;
+var IE = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.472 9.825h3.688c0.028-0.256 0.040-0.517 0.040-0.784 0-1.253-0.336-2.429-0.924-3.442 0.607-1.614 0.586-2.984-0.227-3.803-0.773-0.77-2.848-0.645-5.194 0.394-0.174-0.013-0.349-0.020-0.526-0.020-3.22 0-5.921 2.216-6.667 5.201 1.010-1.293 2.072-2.231 3.492-2.913-0.129 0.121-0.882 0.87-1.009 0.996-3.743 3.742-4.923 8.63-3.653 9.9 0.965 0.965 2.715 0.802 4.725-0.182 0.934 0.476 1.992 0.744 3.113 0.744 3.018 0 5.575-1.942 6.501-4.648h-3.717c-0.511 0.943-1.512 1.586-2.66 1.586s-2.148-0.642-2.66-1.586c-0.227-0.426-0.358-0.915-0.358-1.432v-0.011h6.035zM5.442 8.013c0.085-1.517 1.347-2.728 2.887-2.728s2.802 1.21 2.887 2.728h-5.774zM14.015 2.559c0.524 0.529 0.511 1.503 0.063 2.719-0.768-1.17-1.883-2.093-3.2-2.619 1.408-0.604 2.553-0.684 3.137-0.1zM1.461 15.113c-0.668-0.669-0.467-2.072 0.394-3.763 0.536 1.504 1.581 2.767 2.927 3.581-1.491 0.677-2.712 0.792-3.321 0.182z"
+ }
+ }]
+};
+exports.IE = IE;
+var edge = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.241 7.103c0.469-3.7 2.994-7.056 7.519-7.103 2.731 0.053 4.978 1.291 6.316 3.65 0.672 1.231 0.881 2.525 0.925 3.953v1.678h-10.041c0.047 4.141 6.094 4 8.697 2.175v3.372c-1.525 0.916-4.984 1.734-7.662 0.681-2.281-0.856-3.906-3.244-3.897-5.541-0.075-2.978 1.481-4.95 3.897-6.072-0.513 0.634-0.903 1.334-1.106 2.547h5.669c0 0 0.331-3.388-3.209-3.388-3.338 0.116-5.744 2.056-7.106 4.047v0z"
+ }
+ }]
+};
+exports.edge = edge;
+var safari = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM14.975 7.388l-0.016-0.166c0.003 0.056 0.009 0.109 0.016 0.166zM13.881 4.2l-0.113-0.169c0.037 0.056 0.075 0.112 0.113 0.169zM13.447 3.603l-0.069-0.084c0.025 0.028 0.047 0.056 0.069 0.084zM12.478 2.619l-0.084-0.069c0.031 0.025 0.056 0.047 0.084 0.069zM11.969 2.231l-0.169-0.112c0.056 0.038 0.113 0.075 0.169 0.112zM8.778 1.044l-0.169-0.016c0.056 0.003 0.113 0.009 0.169 0.016zM7.388 1.025l-0.169 0.016c0.056-0.003 0.112-0.009 0.169-0.016zM4.2 2.119l-0.169 0.112c0.056-0.038 0.112-0.075 0.169-0.112zM3.603 2.553l-0.081 0.066c0.028-0.022 0.053-0.044 0.081-0.066zM2.619 3.522l-0.069 0.084c0.025-0.028 0.047-0.056 0.069-0.084zM2.231 4.031l-0.112 0.169c0.038-0.056 0.075-0.112 0.112-0.169zM1.044 7.222l-0.016 0.169c0.003-0.056 0.009-0.112 0.016-0.169zM1.025 8.613l0.016 0.169c-0.003-0.056-0.009-0.113-0.016-0.169zM2.119 11.797l0.112 0.169c-0.038-0.053-0.075-0.109-0.112-0.169zM2.25 11.994l1.247-0.834-0.138-0.209-1.247 0.834c-0.566-0.878-0.938-1.887-1.063-2.975l0.747-0.075-0.025-0.25-0.747 0.075c-0.012-0.144-0.019-0.291-0.022-0.438h1.5v-0.25h-1.5c0.003-0.147 0.009-0.291 0.022-0.438l0.747 0.072 0.025-0.25-0.747-0.072c0.125-1.088 0.5-2.097 1.066-2.975l1.247 0.834 0.138-0.209-1.25-0.828c0.084-0.119 0.169-0.237 0.259-0.35l0.578 0.475 0.159-0.194-0.578-0.475c0.094-0.112 0.194-0.219 0.294-0.325l1.059 1.059 0.178-0.178-1.059-1.059c0.106-0.1 0.212-0.2 0.322-0.294l0.475 0.581 0.194-0.159-0.475-0.578c0.116-0.091 0.231-0.178 0.35-0.263l0.834 1.247 0.209-0.138-0.834-1.247c0.878-0.566 1.888-0.938 2.975-1.063l0.075 0.747 0.25-0.025-0.075-0.747c0.144-0.012 0.291-0.019 0.438-0.022v1.5h0.25v-1.5c0.147 0.003 0.291 0.009 0.438 0.022l-0.072 0.747 0.25 0.025 0.072-0.747c1.088 0.125 2.097 0.5 2.975 1.066l-0.834 1.247 0.209 0.138 0.834-1.247c0.119 0.084 0.238 0.169 0.35 0.259l-0.475 0.578 0.194 0.159 0.475-0.578c0.113 0.094 0.219 0.194 0.325 0.294l-0.4 0.391-5.469 3.647-3.647 5.469-0.391 0.391c-0.1-0.106-0.2-0.213-0.294-0.322l0.578-0.475-0.159-0.194-0.578 0.475c-0.091-0.113-0.175-0.231-0.259-0.35zM2.619 12.478c-0.022-0.028-0.044-0.053-0.066-0.081l0.066 0.081zM3.522 13.381l0.081 0.066c-0.028-0.022-0.053-0.044-0.081-0.066zM4.031 13.766l0.169 0.113c-0.056-0.034-0.112-0.072-0.169-0.113zM7.222 14.956l0.169 0.016c-0.056-0.003-0.112-0.009-0.169-0.016zM8.613 14.975l0.166-0.016c-0.056 0.003-0.109 0.009-0.166 0.016zM11.8 13.881l0.169-0.113c-0.056 0.037-0.113 0.075-0.169 0.113zM12.397 13.447l0.084-0.069c-0.028 0.025-0.056 0.047-0.084 0.069zM12.944 12.956l0.012-0.012c-0.003 0.003-0.009 0.009-0.012 0.012zM13.381 12.478l0.069-0.084c-0.025 0.028-0.047 0.056-0.069 0.084zM13.491 12.344l-0.578-0.475-0.159 0.194 0.578 0.475c-0.094 0.113-0.194 0.219-0.294 0.325l-1.059-1.059-0.178 0.178 1.059 1.059c-0.106 0.1-0.213 0.2-0.322 0.294l-0.475-0.581-0.194 0.159 0.475 0.578c-0.116 0.091-0.231 0.178-0.35 0.262l-0.834-1.247-0.209 0.137 0.834 1.247c-0.878 0.566-1.887 0.938-2.975 1.063l-0.075-0.747-0.25 0.025 0.075 0.747c-0.144 0.012-0.291 0.019-0.438 0.022v-1.5h-0.25v1.5c-0.147-0.003-0.291-0.009-0.438-0.022l0.072-0.747-0.25-0.025-0.072 0.747c-1.088-0.125-2.097-0.5-2.975-1.066l0.834-1.247-0.209-0.137-0.828 1.247c-0.119-0.084-0.237-0.169-0.35-0.259l0.475-0.578-0.194-0.159-0.475 0.578c-0.112-0.094-0.219-0.194-0.325-0.294l0.394-0.391 5.469-3.647 3.647-5.469 0.391-0.391c0.1 0.106 0.2 0.212 0.294 0.322l-0.578 0.475 0.159 0.194 0.578-0.475c0.091 0.116 0.178 0.231 0.262 0.35l-1.247 0.834 0.137 0.209 1.247-0.834c0.566 0.878 0.938 1.888 1.063 2.975l-0.747 0.075 0.025 0.25 0.747-0.075c0.012 0.144 0.019 0.291 0.022 0.438h-1.5v0.25h1.5c-0.003 0.147-0.009 0.291-0.022 0.438l-0.747-0.072-0.025 0.25 0.747 0.072c-0.125 1.088-0.5 2.097-1.066 2.975l-1.247-0.834-0.137 0.209 1.247 0.834c-0.081 0.113-0.169 0.228-0.259 0.344zM14.975 8.609c-0.006 0.056-0.009 0.113-0.016 0.169l0.016-0.169zM13.881 11.8c-0.037 0.056-0.075 0.113-0.113 0.169l0.113-0.169z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.758 1.111l0.293 1.471-0.245 0.049-0.293-1.471 0.245-0.049z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.245 14.89l-0.293-1.471 0.245-0.049 0.293 1.471-0.245 0.049z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.088 1.264l0.218 0.718-0.239 0.073-0.218-0.718 0.239-0.073z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.913 14.733l-0.218-0.718 0.239-0.073 0.218 0.718-0.239 0.073z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.438 1.486l0.574 1.386-0.231 0.096-0.574-1.386 0.231-0.096z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.564 14.515l-0.574-1.386 0.231-0.096 0.574 1.386-0.231 0.096z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.588 1.885l0.22-0.118 0.354 0.661-0.22 0.118-0.354-0.661z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.408 14.114l-0.22 0.118-0.354-0.661 0.22-0.118 0.354 0.661z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.884 4.591l0.662 0.353-0.118 0.221-0.661-0.353 0.118-0.221z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.113 11.409l-0.662-0.353 0.118-0.22 0.662 0.353-0.118 0.22z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.872 6.010l-1.386-0.574 0.096-0.231 1.386 0.574-0.096 0.231z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.13 9.989l1.386 0.574-0.096 0.231-1.386-0.574 0.096-0.231z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.337 5.85l0.718 0.218-0.073 0.239-0.718-0.218 0.073-0.239z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.661 10.151l-0.718-0.218 0.073-0.239 0.718 0.218-0.073 0.239z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.157 6.512l1.471 0.293-0.049 0.245-1.471-0.293 0.049-0.245z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.84 9.488l-1.471-0.293 0.049-0.245 1.471 0.293-0.049 0.245z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.109 9.243l1.471-0.293 0.049 0.245-1.471 0.293-0.049-0.245z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.888 6.757l-1.471 0.293-0.049-0.245 1.471-0.293 0.049 0.245z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.265 9.914l0.718-0.218 0.073 0.239-0.718 0.218-0.073-0.239z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.734 6.089l-0.718 0.218-0.073-0.239 0.718-0.218 0.073 0.239z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.58 10.796l-0.096-0.231 1.386-0.574 0.096 0.231-1.386 0.574z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.419 5.207l0.096 0.231-1.386 0.574-0.096-0.231 1.386-0.574z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.888 11.41l-0.118-0.22 0.661-0.354 0.118 0.22-0.661 0.354z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.116 4.59l0.118 0.22-0.661 0.354-0.118-0.22 0.661-0.354z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.811 14.232l-0.22-0.118 0.354-0.661 0.22 0.118-0.354 0.661z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.189 1.767l0.22 0.118-0.353 0.661-0.22-0.118 0.353-0.661z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.207 14.419l0.574-1.386 0.231 0.096-0.574 1.386-0.231-0.096z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.795 1.58l-0.574 1.386-0.231-0.096 0.574-1.386 0.231 0.096z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.088 14.735l-0.239-0.073 0.218-0.718 0.239 0.073-0.218 0.718z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.912 1.264l0.239 0.073-0.218 0.718-0.239-0.073 0.218-0.718z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.757 14.888l-0.245-0.049 0.293-1.471 0.245 0.049-0.293 1.471z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.243 1.109l0.245 0.049-0.293 1.471-0.245-0.049 0.293-1.471z"
+ }
+ }]
+};
+exports.safari = safari;
+var opera = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8v0 0c0 2.369-1.031 4.5-2.669 5.963-2.053 1-3.966 0.3-4.597-0.137 2.016-0.441 3.537-2.878 3.537-5.825s-1.522-5.384-3.537-5.828c0.634-0.438 2.547-1.137 4.597-0.138 1.637 1.466 2.669 3.597 2.669 5.966v0 0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.366 3.491c-0.884 1.044-1.456 2.587-1.494 4.322 0 0.003 0 0.372 0 0.378 0.038 1.731 0.613 3.275 1.497 4.319 1.147 1.491 2.853 2.434 4.759 2.434 1.172 0 2.269-0.356 3.206-0.978-1.419 1.266-3.287 2.034-5.334 2.034-0.128 0-0.256-0.003-0.381-0.009-4.241-0.2-7.619-3.7-7.619-7.991 0-4.419 3.581-8 8-8 0.009 0 0.019 0 0.031 0 2.037 0.006 3.894 0.775 5.303 2.038-0.938-0.622-2.034-0.981-3.206-0.981-1.906 0-3.612 0.944-4.763 2.434z"
+ }
+ }]
+};
+exports.opera = opera;
+var filePdf = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.156 9.211c-0.213-0.21-0.686-0.321-1.406-0.331-0.487-0.005-1.073 0.038-1.69 0.124-0.276-0.159-0.561-0.333-0.784-0.542-0.601-0.561-1.103-1.34-1.415-2.197 0.020-0.080 0.038-0.15 0.054-0.222 0 0 0.339-1.923 0.249-2.573-0.012-0.089-0.020-0.115-0.044-0.184l-0.029-0.076c-0.092-0.212-0.273-0.437-0.556-0.425l-0.171-0.005c-0.316 0-0.573 0.161-0.64 0.403-0.205 0.757 0.007 1.889 0.39 3.355l-0.098 0.239c-0.275 0.67-0.619 1.345-0.923 1.94l-0.040 0.077c-0.32 0.626-0.61 1.157-0.873 1.607l-0.271 0.144c-0.020 0.010-0.485 0.257-0.594 0.323-0.926 0.553-1.539 1.18-1.641 1.678-0.032 0.159-0.008 0.362 0.156 0.456l0.263 0.132c0.114 0.057 0.234 0.086 0.357 0.086 0.659 0 1.425-0.821 2.48-2.662 1.218-0.396 2.604-0.726 3.819-0.908 0.926 0.521 2.065 0.883 2.783 0.883 0.128 0 0.238-0.012 0.327-0.036 0.138-0.037 0.254-0.115 0.325-0.222 0.139-0.21 0.168-0.499 0.13-0.795-0.011-0.088-0.081-0.196-0.157-0.271zM3.307 12.72c0.12-0.329 0.596-0.979 1.3-1.556 0.044-0.036 0.153-0.138 0.253-0.233-0.736 1.174-1.229 1.642-1.553 1.788zM7.476 3.12c0.212 0 0.333 0.534 0.343 1.035s-0.107 0.853-0.252 1.113c-0.12-0.385-0.179-0.992-0.179-1.389 0 0-0.009-0.759 0.088-0.759v0zM6.232 9.961c0.148-0.264 0.301-0.543 0.458-0.839 0.383-0.724 0.624-1.29 0.804-1.755 0.358 0.651 0.804 1.205 1.328 1.649 0.065 0.055 0.135 0.111 0.207 0.166-1.066 0.211-1.987 0.467-2.798 0.779v0zM12.952 9.901c-0.065 0.041-0.251 0.064-0.37 0.064-0.386 0-0.864-0.176-1.533-0.464 0.257-0.019 0.493-0.029 0.705-0.029 0.387 0 0.502-0.002 0.88 0.095s0.383 0.293 0.318 0.333v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.filePdf = filePdf;
+var fileOpenoffice = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.785 7.37c-0.948-0.448-2.156-0.538-3.044 0.095 1.080-0.103 2.265 0.076 3.049 0.893 0.75-0.861 1.939-1.022 3.015-0.933-0.898-0.596-2.082-0.516-3.019-0.054v0zM10.401 9.465c-1.068-0.025-2.101 0.362-2.986 0.939-1.675-0.712-3.793-0.58-5.219 0.609 0.411-0.015 0.813-0.116 1.22-0.169 1.487-0.148 3.072 0.221 4.196 1.247 0.465-0.68 1.119-1.223 1.87-1.561 0.986-0.477 2.096-0.526 3.169-0.539-0.651-0.448-1.478-0.531-2.249-0.526z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.fileOpenoffice = fileOpenoffice;
+var fileWord = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.997 7.436h0.691l-0.797 3.534-1.036-4.969h-1.665l-1.205 4.969-0.903-4.969h-1.741l1.767 7.998h1.701l1.192-4.73 1.066 4.73h1.568l2.025-7.998h-2.663v1.435z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.fileWord = fileWord;
+var fileExcel = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.61 6h-2.114l-1.496 2.204-1.496-2.204h-2.114l2.534 3.788-2.859 4.212h3.935v-1.431h-0.784l0.784-1.172 1.741 2.603h2.194l-2.859-4.212 2.534-3.788z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.341 3.579c-0.347-0.473-0.831-1.027-1.362-1.558s-1.085-1.015-1.558-1.362c-0.806-0.591-1.197-0.659-1.421-0.659h-7.75c-0.689 0-1.25 0.561-1.25 1.25v13.5c0 0.689 0.561 1.25 1.25 1.25h11.5c0.689 0 1.25-0.561 1.25-1.25v-9.75c0-0.224-0.068-0.615-0.659-1.421v0zM12.271 2.729c0.48 0.48 0.856 0.912 1.134 1.271h-2.406v-2.405c0.359 0.278 0.792 0.654 1.271 1.134v0zM14 14.75c0 0.136-0.114 0.25-0.25 0.25h-11.5c-0.135 0-0.25-0.114-0.25-0.25v-13.5c0-0.135 0.115-0.25 0.25-0.25 0 0 7.749-0 7.75 0v3.5c0 0.276 0.224 0.5 0.5 0.5h3.5v9.75z"
+ }
+ }]
+};
+exports.fileExcel = fileExcel;
+var libreoffice = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.354 0.354c-0.194-0.194-0.579-0.354-0.854-0.354h-6c-0.275 0-0.5 0.225-0.5 0.5v15c0 0.275 0.225 0.5 0.5 0.5h12c0.275 0 0.5-0.225 0.5-0.5v-9c0-0.275-0.159-0.659-0.354-0.854l-5.293-5.293zM13 15h-11v-14h5.487c0.046 0.008 0.131 0.043 0.169 0.070l5.274 5.274c0.027 0.038 0.062 0.123 0.070 0.169v8.487zM13.5 0h-3c-0.275 0-0.341 0.159-0.146 0.354l3.293 3.293c0.194 0.194 0.354 0.129 0.354-0.146v-3c0-0.275-0.225-0.5-0.5-0.5z"
+ }
+ }]
+};
+exports.libreoffice = libreoffice;
+var htmlFive = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.946 0l1.284 14.4 5.762 1.6 5.777-1.602 1.286-14.398h-14.108zM12.26 4.71h-6.758l0.161 1.809h6.437l-0.485 5.422-3.623 1.004-3.618-1.004-0.247-2.774h1.773l0.126 1.41 1.967 0.53 0.004-0.001 1.968-0.531 0.204-2.29h-6.121l-0.476-5.341h8.847l-0.158 1.766z"
+ }
+ }]
+};
+exports.htmlFive = htmlFive;
+var htmlFive2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.946 0l1.284 14.4 5.762 1.6 5.777-1.602 1.286-14.398h-14.108zM12.668 13.482l-4.644 1.287v0.007l-0.012-0.004-0.012 0.004v-0.007l-4.644-1.287-1.098-12.304h11.508l-1.098 12.304zM10.168 8.284l-0.204 2.29-1.972 0.532-1.967-0.53-0.126-1.41h-1.773l0.247 2.774 3.626 1.003 3.615-1.003 0.485-5.422h-6.437l-0.161-1.809h6.758l0.158-1.766h-8.847l0.477 5.341z"
+ }
+ }]
+};
+exports.htmlFive2 = htmlFive2;
+var css3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.381 0.758l-0.537 2.686h10.934l-0.342 1.735h-10.94l-0.53 2.686h10.933l-0.61 3.063-4.406 1.46-3.819-1.46 0.261-1.329h-2.686l-0.639 3.224 6.316 2.417 7.281-2.417 2.403-12.066z"
+ }
+ }]
+};
+exports.css3 = css3;
+var git = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.698 7.287l-6.986-6.986c-0.402-0.402-1.055-0.402-1.457 0l-1.623 1.623 1.221 1.221c0.196-0.094 0.415-0.146 0.647-0.146 0.828 0 1.5 0.672 1.5 1.5 0 0.232-0.053 0.451-0.146 0.647l2 2c0.196-0.094 0.415-0.146 0.647-0.146 0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5c0-0.232 0.053-0.451 0.146-0.647l-2-2c-0.048 0.023-0.097 0.043-0.147 0.061v4.171c0.583 0.206 1 0.761 1 1.414 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.653 0.417-1.208 1-1.414v-4.171c-0.583-0.206-1-0.761-1-1.414 0-0.232 0.053-0.451 0.146-0.647l-1.221-1.221-4.623 4.623c-0.402 0.403-0.402 1.055 0 1.458l6.986 6.986c0.402 0.402 1.054 0.402 1.457 0l6.953-6.953c0.402-0.403 0.402-1.055-0-1.458z"
+ }
+ }]
+};
+exports.git = git;
+var codepen = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.777 5.751l-7-4.667c-0.168-0.112-0.387-0.112-0.555 0l-7 4.667c-0.139 0.093-0.223 0.249-0.223 0.416v4.667c0 0.167 0.084 0.323 0.223 0.416l7 4.667c0.084 0.056 0.181 0.084 0.277 0.084s0.193-0.028 0.277-0.084l7-4.667c0.139-0.093 0.223-0.249 0.223-0.416v-4.667c0-0.167-0.084-0.323-0.223-0.416zM7.5 10.232l-2.599-1.732 2.599-1.732 2.599 1.732-2.599 1.732zM8 5.899v-3.465l5.599 3.732-2.599 1.732-3-2zM7 5.899l-3 2-2.599-1.732 5.599-3.732v3.465zM3.099 8.5l-2.099 1.399v-2.798l2.099 1.399zM4 9.101l3 2v3.465l-5.599-3.732 2.599-1.732zM8 11.101l3-2 2.599 1.732-5.599 3.732v-3.465zM11.901 8.5l2.099-1.399v2.798l-2.099-1.399z"
+ }
+ }]
+};
+exports.codepen = codepen;
+var svg = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 6.5c-0.444 0-0.843 0.193-1.118 0.5h-2.968l2.099-2.099c0.411 0.023 0.83-0.123 1.144-0.437 0.586-0.586 0.586-1.536 0-2.121s-1.536-0.586-2.121 0c-0.314 0.314-0.46 0.733-0.437 1.144l-2.099 2.099v-2.968c0.307-0.275 0.5-0.674 0.5-1.118 0-0.828-0.672-1.5-1.5-1.5s-1.5 0.672-1.5 1.5c0 0.444 0.193 0.843 0.5 1.118v2.968l-2.099-2.099c0.023-0.411-0.123-0.83-0.437-1.144-0.586-0.586-1.536-0.586-2.121 0s-0.586 1.536 0 2.121c0.314 0.314 0.733 0.46 1.144 0.437l2.099 2.099h-2.968c-0.275-0.307-0.674-0.5-1.118-0.5-0.828 0-1.5 0.672-1.5 1.5s0.672 1.5 1.5 1.5c0.444 0 0.843-0.193 1.118-0.5h2.968l-2.099 2.099c-0.411-0.023-0.83 0.123-1.144 0.437-0.586 0.586-0.586 1.536 0 2.121s1.536 0.586 2.121 0c0.314-0.314 0.46-0.733 0.437-1.144l2.099-2.099v2.968c-0.307 0.275-0.5 0.674-0.5 1.118 0 0.828 0.672 1.5 1.5 1.5s1.5-0.672 1.5-1.5c0-0.444-0.193-0.843-0.5-1.118v-2.968l2.099 2.099c-0.023 0.411 0.123 0.83 0.437 1.144 0.586 0.586 1.536 0.586 2.121 0s0.586-1.536 0-2.121c-0.314-0.314-0.733-0.46-1.144-0.437l-2.099-2.099h2.968c0.275 0.307 0.674 0.5 1.118 0.5 0.828 0 1.5-0.672 1.5-1.5s-0.672-1.5-1.5-1.5z"
+ }
+ }]
+};
+exports.svg = svg;
+var IcoMoon = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.055 8c0-1.022 0.829-1.851 1.851-1.851s1.851 0.829 1.851 1.851c0 1.022-0.829 1.851-1.851 1.851s-1.851-0.829-1.851-1.851zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM5.928 14.989c-2.406-1.4-4.023-4.005-4.023-6.989s1.617-5.589 4.023-6.989c2.406 1.399 4.025 4.005 4.025 6.989s-1.618 5.589-4.025 6.989z"
+ }
+ }]
+};
+exports.IcoMoon = IcoMoon;
\ No newline at end of file
diff --git a/dist/icomoon/infinite.js b/dist/icomoon/infinite.js
new file mode 100644
index 000000000..cfcf94424
--- /dev/null
+++ b/dist/icomoon/infinite.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.infinite = void 0;
+var infinite = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.25 11.75c-1.002 0-1.943-0.39-2.652-1.098l-1.598-1.598-1.598 1.598c-0.708 0.708-1.65 1.098-2.652 1.098s-1.944-0.39-2.652-1.098c-0.708-0.708-1.098-1.65-1.098-2.652s0.39-1.943 1.098-2.652c0.708-0.708 1.65-1.098 2.652-1.098s1.943 0.39 2.652 1.098l1.598 1.598 1.598-1.598c0.708-0.708 1.65-1.098 2.652-1.098s1.944 0.39 2.652 1.098c0.708 0.708 1.098 1.65 1.098 2.652s-0.39 1.943-1.098 2.652c-0.708 0.708-1.65 1.098-2.652 1.098zM10.652 9.598c0.427 0.427 0.994 0.662 1.598 0.662s1.171-0.235 1.598-0.662c0.427-0.427 0.662-0.994 0.662-1.598s-0.235-1.171-0.662-1.598c-0.427-0.427-0.994-0.662-1.598-0.662s-1.171 0.235-1.598 0.662l-1.598 1.598 1.598 1.598zM3.75 5.74c-0.604 0-1.171 0.235-1.598 0.662s-0.662 0.994-0.662 1.598c0 0.604 0.235 1.171 0.662 1.598s0.994 0.662 1.598 0.662c0.604 0 1.171-0.235 1.598-0.662l1.598-1.598-1.598-1.598c-0.427-0.427-0.994-0.662-1.598-0.662v0z"
+ }
+ }]
+};
+exports.infinite = infinite;
\ No newline at end of file
diff --git a/dist/icomoon/info.js b/dist/icomoon/info.js
new file mode 100644
index 000000000..7e509767d
--- /dev/null
+++ b/dist/icomoon/info.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.info = void 0;
+var info = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 4.75c0-0.412 0.338-0.75 0.75-0.75h0.5c0.412 0 0.75 0.338 0.75 0.75v0.5c0 0.412-0.338 0.75-0.75 0.75h-0.5c-0.412 0-0.75-0.338-0.75-0.75v-0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 12h-4v-1h1v-3h-1v-1h3v4h1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"
+ }
+ }]
+};
+exports.info = info;
\ No newline at end of file
diff --git a/dist/icomoon/insertTemplate.js b/dist/icomoon/insertTemplate.js
new file mode 100644
index 000000000..a131ad736
--- /dev/null
+++ b/dist/icomoon/insertTemplate.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.insertTemplate = void 0;
+var insertTemplate = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 3h2v1h-2zM9 3h2v1h-2zM14 3v4h-3v-1h2v-2h-1v-1zM5 6h2v1h-2zM8 6h2v1h-2zM3 4v2h1v1h-2v-4h3v1zM6 9h2v1h-2zM9 9h2v1h-2zM14 9v4h-3v-1h2v-2h-1v-1zM5 12h2v1h-2zM8 12h2v1h-2zM3 10v2h1v1h-2v-4h3v1zM15 1h-14v14h14v-14zM16 0v0 16h-16v-16h16z"
+ }
+ }]
+};
+exports.insertTemplate = insertTemplate;
\ No newline at end of file
diff --git a/dist/icomoon/instagram.js b/dist/icomoon/instagram.js
new file mode 100644
index 000000000..f55b2a472
--- /dev/null
+++ b/dist/icomoon/instagram.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.instagram = void 0;
+var instagram = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11 2.5c0-0.275 0.225-0.5 0.5-0.5h2c0.275 0 0.5 0.225 0.5 0.5v2c0 0.275-0.225 0.5-0.5 0.5h-2c-0.275 0-0.5-0.225-0.5-0.5v-2zM8 5c1.656 0 3 1.344 3 3s-1.344 3-3 3c-1.656 0-3-1.344-3-3s1.344-3 3-3zM14 13.5v0c0 0.275-0.225 0.5-0.5 0.5h-11c-0.275 0-0.5-0.225-0.5-0.5v0-6.5h1.1c-0.066 0.322-0.1 0.656-0.1 1 0 2.762 2.237 5 5 5s5-2.238 5-5c0-0.344-0.034-0.678-0.1-1h1.1v6.5z"
+ }
+ }]
+};
+exports.instagram = instagram;
\ No newline at end of file
diff --git a/dist/icomoon/italic.js b/dist/icomoon/italic.js
new file mode 100644
index 000000000..bc7dcdc0c
--- /dev/null
+++ b/dist/icomoon/italic.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.italic = void 0;
+var italic = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 1v1h-2l-5 12h2v1h-7v-1h2l5-12h-2v-1z"
+ }
+ }]
+};
+exports.italic = italic;
\ No newline at end of file
diff --git a/dist/icomoon/joomla.js b/dist/icomoon/joomla.js
new file mode 100644
index 000000000..6e30ce23e
--- /dev/null
+++ b/dist/icomoon/joomla.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.joomla = void 0;
+var joomla = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.156 4.323c0.513-0.513 1.344-0.513 1.856-0l0.122 0.123 1.58-1.581-0.123-0.123c-0.9-0.902-2.164-1.217-3.319-0.946-0.166-1.018-1.048-1.796-2.112-1.796-1.182 0-2.14 0.96-2.14 2.143 0 1.021 0.712 1.875 1.667 2.091-0.362 1.21-0.066 2.576 0.888 3.531l3.56 3.561 1.578-1.581-3.56-3.561c-0.511-0.511-0.512-1.346 0.003-1.861zM15.98 2.143c0-1.184-0.958-2.143-2.14-2.143-1.082 0-1.976 0.804-2.12 1.847-1.204-0.354-2.559-0.055-3.51 0.897l-3.56 3.561 1.58 1.581 3.559-3.56c0.515-0.515 1.344-0.514 1.854-0.003 0.512 0.513 0.512 1.346-0.001 1.859l-0.122 0.122 1.578 1.582 0.123-0.124c0.945-0.946 1.245-2.293 0.9-3.494 1.049-0.138 1.858-1.037 1.858-2.125zM14.16 11.735c0.283-1.163-0.031-2.443-0.939-3.352l-3.555-3.562-1.58 1.58 3.555 3.563c0.515 0.516 0.514 1.345 0.003 1.857-0.513 0.513-1.344 0.513-1.857-0l-0.121-0.122-1.578 1.582 0.121 0.121c0.961 0.962 2.338 1.257 3.553 0.883 0.197 0.979 1.061 1.716 2.098 1.716 1.181 0 2.14-0.959 2.14-2.143 0-1.081-0.8-1.976-1.84-2.122zM9.568 8.261l-3.555 3.562c-0.511 0.512-1.344 0.513-1.859-0.002-0.513-0.514-0.513-1.345-0.001-1.859l0.122-0.121-1.579-1.58-0.121 0.12c-0.918 0.919-1.228 2.216-0.929 3.39-0.944 0.223-1.646 1.072-1.646 2.086-0 1.184 0.958 2.143 2.14 2.143 1.017-0.001 1.869-0.71 2.087-1.662 1.167 0.29 2.453-0.020 3.365-0.934l3.555-3.562-1.578-1.582z"
+ }
+ }]
+};
+exports.joomla = joomla;
\ No newline at end of file
diff --git a/dist/icomoon/key.js b/dist/icomoon/key.js
new file mode 100644
index 000000000..45dd483d5
--- /dev/null
+++ b/dist/icomoon/key.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.key = void 0;
+var key = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 0c-2.761 0-5 2.239-5 5 0 0.313 0.029 0.619 0.084 0.916l-6.084 6.084v3c0 0.552 0.448 1 1 1h1v-1h2v-2h2v-2h2l1.298-1.298c0.531 0.192 1.105 0.298 1.702 0.298 2.761 0 5-2.239 5-5s-2.239-5-5-5zM12.498 5.002c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z"
+ }
+ }]
+};
+exports.key = key;
\ No newline at end of file
diff --git a/dist/icomoon/key2.js b/dist/icomoon/key2.js
new file mode 100644
index 000000000..8d7646595
--- /dev/null
+++ b/dist/icomoon/key2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.key2 = void 0;
+var key2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.658 4.91l-1.58-1.58c-0.387-0.387-1.021-1.021-1.409-1.409l-1.58-1.58c-0.387-0.387-1.077-0.456-1.533-0.152l-4.319 2.88c-0.456 0.304-0.628 0.954-0.383 1.444l1.101 2.203c0.034 0.067 0.073 0.139 0.115 0.213l-5.571 5.571-0.5 3.5h3v-1h2v-2h2v-2h2v-1.112c0.1 0.060 0.196 0.113 0.284 0.157l2.203 1.101c0.49 0.245 1.14 0.072 1.444-0.383l2.88-4.319c0.304-0.456 0.236-1.146-0.152-1.533zM2.354 13.354l-0.707-0.707 4.868-4.868 0.707 0.707-4.868 4.868zM14.328 6.621l-0.707 0.707c-0.194 0.194-0.513 0.194-0.707 0l-4.243-4.243c-0.194-0.194-0.194-0.513 0-0.707l0.707-0.707c0.194-0.194 0.513-0.194 0.707 0l4.243 4.243c0.194 0.194 0.194 0.513 0 0.707z"
+ }
+ }]
+};
+exports.key2 = key2;
\ No newline at end of file
diff --git a/dist/icomoon/keyboard.js b/dist/icomoon/keyboard.js
new file mode 100644
index 000000000..95a81de59
--- /dev/null
+++ b/dist/icomoon/keyboard.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.keyboard = void 0;
+var keyboard = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M17 2h-16c-0.55 0-1 0.45-1 1v10c0 0.55 0.45 1 1 1h16c0.55 0 1-0.45 1-1v-10c0-0.55-0.45-1-1-1zM10 4h2v2h-2v-2zM13 7v2h-2v-2h2zM7 4h2v2h-2v-2zM10 7v2h-2v-2h2zM4 4h2v2h-2v-2zM7 7v2h-2v-2h2zM2 4h1v2h-1v-2zM2 7h2v2h-2v-2zM3 12h-1v-2h1v2zM12 12h-8v-2h8v2zM16 12h-3v-2h3v2zM16 9h-2v-2h2v2zM16 6h-3v-2h3v2z"
+ }
+ }]
+};
+exports.keyboard = keyboard;
\ No newline at end of file
diff --git a/dist/icomoon/lab.js b/dist/icomoon/lab.js
new file mode 100644
index 000000000..f9da41042
--- /dev/null
+++ b/dist/icomoon/lab.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lab = void 0;
+var lab = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.942 12.57l-4.942-8.235v-3.335h0.5c0.275 0 0.5-0.225 0.5-0.5s-0.225-0.5-0.5-0.5h-5c-0.275 0-0.5 0.225-0.5 0.5s0.225 0.5 0.5 0.5h0.5v3.335l-4.942 8.235c-1.132 1.886-0.258 3.43 1.942 3.43h10c2.2 0 3.074-1.543 1.942-3.43zM3.766 10l3.234-5.39v-3.61h2v3.61l3.234 5.39h-8.468z"
+ }
+ }]
+};
+exports.lab = lab;
\ No newline at end of file
diff --git a/dist/icomoon/lanyrd.js b/dist/icomoon/lanyrd.js
new file mode 100644
index 000000000..50651b330
--- /dev/null
+++ b/dist/icomoon/lanyrd.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lanyrd = void 0;
+var lanyrd = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM12.85 12.012l-5.444 1.781c-1.244 0.406-1.369 0.341-1.931-1.4l-1.375-4.259c-0.328-1.009-1.328-3.728-1.497-4.25-0.313-0.969-0.313-1.022 1.516-1.616 1.431-0.469 1.491-0.453 2.009 1.163 0.419 1.3 0.688 2.35 1.119 3.678l1.172 3.625 3.744-1.225c0.738-0.244 0.984-0.231 1.194 0.678l0.15 0.688c0.175 0.797-0.228 1-0.656 1.137z"
+ }
+ }]
+};
+exports.lanyrd = lanyrd;
\ No newline at end of file
diff --git a/dist/icomoon/laptop.js b/dist/icomoon/laptop.js
new file mode 100644
index 000000000..7dec37a86
--- /dev/null
+++ b/dist/icomoon/laptop.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.laptop = void 0;
+var laptop = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 11v-8c0-0.55-0.45-1-1-1h-10c-0.55 0-1 0.45-1 1v8h-2v3h16v-3h-2zM10 13h-4v-1h4v1zM13 11h-10v-7.998c0.001-0.001 0.001-0.001 0.002-0.002h9.996c0.001 0.001 0.001 0.001 0.002 0.002v7.998z"
+ }
+ }]
+};
+exports.laptop = laptop;
\ No newline at end of file
diff --git a/dist/icomoon/last.js b/dist/icomoon/last.js
new file mode 100644
index 000000000..42289a938
--- /dev/null
+++ b/dist/icomoon/last.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.last = void 0;
+var last = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 2v12h-2v-5.5l-5 5v-5l-5 5v-11l5 5v-5l5 5v-5.5z"
+ }
+ }]
+};
+exports.last = last;
\ No newline at end of file
diff --git a/dist/icomoon/lastfm.js b/dist/icomoon/lastfm.js
new file mode 100644
index 000000000..daa1764e3
--- /dev/null
+++ b/dist/icomoon/lastfm.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lastfm = void 0;
+var lastfm = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.056 11.972l-0.588-1.594c0 0-0.953 1.063-2.381 1.063-1.266 0-2.163-1.1-2.163-2.859 0-2.253 1.137-3.059 2.253-3.059 1.612 0 2.125 1.044 2.566 2.381l0.588 1.831c0.588 1.778 1.688 3.206 4.856 3.206 2.272 0 3.813-0.697 3.813-2.528 0-1.484-0.844-2.253-2.419-2.622l-1.172-0.256c-0.806-0.184-1.044-0.513-1.044-1.063 0-0.622 0.494-0.991 1.3-0.991 0.881 0 1.356 0.331 1.428 1.119l1.831-0.219c-0.147-1.65-1.284-2.328-3.153-2.328-1.65 0-3.262 0.622-3.262 2.622 0 1.247 0.606 2.034 2.125 2.4l1.247 0.294c0.934 0.219 1.247 0.606 1.247 1.137 0 0.678-0.659 0.953-1.906 0.953-1.85 0-2.622-0.972-3.059-2.309l-0.606-1.831c-0.766-2.384-1.994-3.263-4.431-3.263-2.694 0-4.125 1.703-4.125 4.6 0 2.784 1.428 4.287 3.997 4.287 2.069 0 3.059-0.972 3.059-0.972v0z"
+ }
+ }]
+};
+exports.lastfm = lastfm;
\ No newline at end of file
diff --git a/dist/icomoon/lastfm2.js b/dist/icomoon/lastfm2.js
new file mode 100644
index 000000000..55b074f8e
--- /dev/null
+++ b/dist/icomoon/lastfm2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lastfm2 = void 0;
+var lastfm2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11.666 11.887c-2.775 0-3.737-1.25-4.25-2.806l-0.513-1.603c-0.384-1.172-0.834-2.084-2.244-2.084-0.978 0-1.972 0.706-1.972 2.678 0 1.541 0.784 2.503 1.894 2.503 1.25 0 2.084-0.931 2.084-0.931l0.513 1.394c0 0-0.866 0.85-2.678 0.85-2.25 0-3.5-1.313-3.5-3.75 0-2.534 1.25-4.025 3.609-4.025 2.134 0 3.206 0.769 3.881 2.853l0.528 1.603c0.384 1.172 1.059 2.022 2.678 2.022 1.091 0 1.669-0.241 1.669-0.834 0-0.466-0.272-0.803-1.091-0.994l-1.091-0.256c-1.331-0.322-1.859-1.009-1.859-2.1 0-1.747 1.412-2.294 2.853-2.294 1.634 0 2.631 0.594 2.759 2.038l-1.603 0.194c-0.066-0.691-0.481-0.978-1.25-0.978-0.706 0-1.137 0.322-1.137 0.866 0 0.481 0.209 0.769 0.912 0.931l1.025 0.225c1.378 0.322 2.116 0.994 2.116 2.294 0 1.597-1.347 2.206-3.334 2.206z"
+ }
+ }]
+};
+exports.lastfm2 = lastfm2;
\ No newline at end of file
diff --git a/dist/icomoon/leaf.js b/dist/icomoon/leaf.js
new file mode 100644
index 000000000..3a0d30f45
--- /dev/null
+++ b/dist/icomoon/leaf.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.leaf = void 0;
+var leaf = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.802 2.102c-1.73-1.311-4.393-2.094-7.124-2.094-3.377 0-6.129 1.179-7.549 3.235-0.667 0.965-1.036 2.109-1.097 3.398-0.054 1.148 0.139 2.418 0.573 3.784 1.482-4.444 5.622-7.923 10.395-7.923 0 0-4.466 1.175-7.274 4.816-0.002 0.002-0.039 0.048-0.103 0.136-0.564 0.754-1.055 1.612-1.423 2.583-0.623 1.482-1.2 3.515-1.2 5.965h2c0 0-0.304-1.91 0.224-4.106 0.873 0.118 1.654 0.177 2.357 0.177 1.839 0 3.146-0.398 4.115-1.252 0.868-0.765 1.347-1.794 1.854-2.882 0.774-1.663 1.651-3.547 4.198-5.002 0.146-0.083 0.24-0.234 0.251-0.402s-0.063-0.329-0.197-0.431z"
+ }
+ }]
+};
+exports.leaf = leaf;
\ No newline at end of file
diff --git a/dist/icomoon/library.js b/dist/icomoon/library.js
new file mode 100644
index 000000000..a23353dad
--- /dev/null
+++ b/dist/icomoon/library.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.library = void 0;
+var library = {
+ "viewBox": "0 0 17 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 15v-1h-1v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-3v-6h1v-1h-3v1h1v6h-1v1h-1v1h17v-1h-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0h1l8 5v1h-17v-1l8-5z"
+ }
+ }]
+};
+exports.library = library;
\ No newline at end of file
diff --git a/dist/icomoon/libreoffice.js b/dist/icomoon/libreoffice.js
new file mode 100644
index 000000000..a5638f02c
--- /dev/null
+++ b/dist/icomoon/libreoffice.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.libreoffice = void 0;
+var libreoffice = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.354 0.354c-0.194-0.194-0.579-0.354-0.854-0.354h-6c-0.275 0-0.5 0.225-0.5 0.5v15c0 0.275 0.225 0.5 0.5 0.5h12c0.275 0 0.5-0.225 0.5-0.5v-9c0-0.275-0.159-0.659-0.354-0.854l-5.293-5.293zM13 15h-11v-14h5.487c0.046 0.008 0.131 0.043 0.169 0.070l5.274 5.274c0.027 0.038 0.062 0.123 0.070 0.169v8.487zM13.5 0h-3c-0.275 0-0.341 0.159-0.146 0.354l3.293 3.293c0.194 0.194 0.354 0.129 0.354-0.146v-3c0-0.275-0.225-0.5-0.5-0.5z"
+ }
+ }]
+};
+exports.libreoffice = libreoffice;
\ No newline at end of file
diff --git a/dist/icomoon/lifebuoy.js b/dist/icomoon/lifebuoy.js
new file mode 100644
index 000000000..7575d5c1c
--- /dev/null
+++ b/dist/icomoon/lifebuoy.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lifebuoy = void 0;
+var lifebuoy = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 8c0-1.657 1.343-3 3-3s3 1.343 3 3-1.343 3-3 3-3-1.343-3-3zM14.468 10.679v0l-2.772-1.148c0.196-0.472 0.304-0.989 0.304-1.531s-0.108-1.059-0.304-1.531l2.772-1.148c0.342 0.825 0.532 1.73 0.532 2.679s-0.189 1.854-0.532 2.679v0zM10.679 1.532v0 0l-1.148 2.772c-0.472-0.196-0.989-0.304-1.531-0.304s-1.059 0.108-1.531 0.304l-1.148-2.772c0.825-0.342 1.73-0.532 2.679-0.532s1.854 0.189 2.679 0.532zM1.532 5.321l2.772 1.148c-0.196 0.472-0.304 0.989-0.304 1.531s0.108 1.059 0.304 1.531l-2.772 1.148c-0.342-0.825-0.532-1.73-0.532-2.679s0.189-1.854 0.532-2.679zM5.321 14.468l1.148-2.772c0.472 0.196 0.989 0.304 1.531 0.304s1.059-0.108 1.531-0.304l1.148 2.772c-0.825 0.342-1.73 0.532-2.679 0.532s-1.854-0.189-2.679-0.532z"
+ }
+ }]
+};
+exports.lifebuoy = lifebuoy;
\ No newline at end of file
diff --git a/dist/icomoon/ligature.js b/dist/icomoon/ligature.js
new file mode 100644
index 000000000..c757cc773
--- /dev/null
+++ b/dist/icomoon/ligature.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ligature = void 0;
+var ligature = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 13.622c0-0.001 0-0.001 0-0.002l-0.005-6.821-1.992 0.097h-3.936v-0.336c0-1.274 0.091-2.546 0.269-3.042 0.123-0.343 0.353-0.652 0.683-0.919 0.322-0.261 0.643-0.393 0.955-0.393 0.262 0 0.48 0.045 0.647 0.134 0.235 0.134 0.464 0.359 0.682 0.669 0.577 0.82 0.812 1.038 0.939 1.131 0.216 0.158 0.477 0.238 0.776 0.238 0.292 0 0.546-0.109 0.757-0.324 0.209-0.213 0.315-0.479 0.315-0.792 0-0.335-0.139-0.691-0.414-1.057-0.268-0.358-0.683-0.652-1.232-0.875-0.536-0.218-1.14-0.329-1.793-0.329-0.949 0-1.813 0.228-2.568 0.678-0.757 0.451-1.337 1.077-1.725 1.863-0.359 0.728-0.333 2.105-0.355 3.355h-1.965v1.116h1.962v5.073c0 1.12-0.342 1.422-0.472 1.583-0.179 0.222-0.509 0.455-0.944 0.455h-0.604v0.878h6.021v-0.878h-0.105c-1.424 0-1.828-0.154-1.828-1.888 0-0 0-0.001 0-0.001l-0.001-5.222h2.191c1.163 0 1.43 0.054 1.491 0.077 0.074 0.028 0.169 0.075 0.204 0.143 0.014 0.026 0.081 0.391 0.081 1.296v3.917c0 0.913-0.111 1.217-0.179 1.319-0.145 0.222-0.319 0.345-0.854 0.358v0.879h4.588v-0.873c-1.431 0-1.588-0.153-1.588-1.505z"
+ }
+ }]
+};
+exports.ligature = ligature;
\ No newline at end of file
diff --git a/dist/icomoon/ligature2.js b/dist/icomoon/ligature2.js
new file mode 100644
index 000000000..48ae5c8f9
--- /dev/null
+++ b/dist/icomoon/ligature2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ligature2 = void 0;
+var ligature2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.364 14.335c-0.183 0-1.307-0.206-1.375-0.458-0.161-0.619-0.183-1.284-0.183-2.040v-8.453c0-1.261 0.252-1.994 0.252-1.994-0.023-0.115-0.138-0.367-0.275-0.367h-0.069c-0.069 0-0.871 0.504-1.605 0.504-0.596-0-0.967-0.527-1.655-0.527-2.892 0-4.249 2.349-4.249 5.672v0.173c0 0.069-0.046 0.138-0.115 0.138h-0.94c-0.115 0-0.344 0.642-0.344 0.94 0 0.092 0.023 0.137 0.069 0.137h1.215c0.069 0 0.115 0.092 0.115 0.16 0 2.040-0.023 4.052-0.023 4.052 0 0.321-0.023 1.031-0.16 1.605-0.069 0.252-1.123 0.458-1.398 0.458-0.115 0-0.115 0.55 0 0.665 0.94-0.046 1.559-0.115 2.499-0.115 0.871 0 1.536 0.069 2.453 0.115 0.046-0.138 0.046-0.665-0.069-0.665-0.183 0-1.307-0.206-1.375-0.458-0.16-0.619-0.16-1.284-0.183-2.040v-3.639c0-0.069 0.069-0.138 0.138-0.138h2.361c0.16-0.321 0.275-0.711 0.275-0.917 0-0.138 0-0.16-0.115-0.16h-2.544c-0.046 0-0.115-0.069-0.115-0.115v-0.825c0-2.040 0.836-3.837 2.234-3.837 0.99 0 1.854 0.642 1.854 3.093 0 0 0 0 0 0 0.003 0.063 0.005 0.114 0.005 0.148v6.825c0 0.321-0.023 1.031-0.16 1.605-0.069 0.252-1.123 0.458-1.398 0.458-0.115 0-0.115 0.55 0 0.665 0.94-0.046 1.559-0.115 2.499-0.115 0.871 0 1.536 0.069 2.453 0.115 0.046-0.137 0.046-0.665-0.069-0.665z"
+ }
+ }]
+};
+exports.ligature2 = ligature2;
\ No newline at end of file
diff --git a/dist/icomoon/link.js b/dist/icomoon/link.js
new file mode 100644
index 000000000..84dc59f63
--- /dev/null
+++ b/dist/icomoon/link.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.link = void 0;
+var link = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.879 9.934c-0.208 0-0.416-0.079-0.575-0.238-1.486-1.486-1.486-3.905 0-5.392l3-3c0.72-0.72 1.678-1.117 2.696-1.117s1.976 0.397 2.696 1.117c1.486 1.487 1.486 3.905 0 5.392l-1.371 1.371c-0.317 0.317-0.832 0.317-1.149 0s-0.317-0.832 0-1.149l1.371-1.371c0.853-0.853 0.853-2.241 0-3.094-0.413-0.413-0.963-0.641-1.547-0.641s-1.134 0.228-1.547 0.641l-3 3c-0.853 0.853-0.853 2.241 0 3.094 0.317 0.317 0.317 0.832 0 1.149-0.159 0.159-0.367 0.238-0.575 0.238z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 15.813c-1.018 0-1.976-0.397-2.696-1.117-1.486-1.486-1.486-3.905 0-5.392l1.371-1.371c0.317-0.317 0.832-0.317 1.149 0s0.317 0.832 0 1.149l-1.371 1.371c-0.853 0.853-0.853 2.241 0 3.094 0.413 0.413 0.962 0.641 1.547 0.641s1.134-0.228 1.547-0.641l3-3c0.853-0.853 0.853-2.241 0-3.094-0.317-0.317-0.317-0.832 0-1.149s0.832-0.317 1.149 0c1.486 1.486 1.486 3.905 0 5.392l-3 3c-0.72 0.72-1.678 1.117-2.696 1.117z"
+ }
+ }]
+};
+exports.link = link;
\ No newline at end of file
diff --git a/dist/icomoon/linkedin.js b/dist/icomoon/linkedin.js
new file mode 100644
index 000000000..c6864162c
--- /dev/null
+++ b/dist/icomoon/linkedin.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.linkedin = void 0;
+var linkedin = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 13h-2v-7h2v7zM5 5c-0.553 0-1-0.447-1-1s0.447-1 1-1c0.553 0 1 0.447 1 1s-0.447 1-1 1zM13 13h-2v-4c0-0.553-0.447-1-1-1s-1 0.447-1 1v4h-2v-7h2v1.241c0.412-0.566 1.044-1.241 1.75-1.241 1.244 0 2.25 1.119 2.25 2.5v4.5z"
+ }
+ }]
+};
+exports.linkedin = linkedin;
\ No newline at end of file
diff --git a/dist/icomoon/linkedin2.js b/dist/icomoon/linkedin2.js
new file mode 100644
index 000000000..56fe1454a
--- /dev/null
+++ b/dist/icomoon/linkedin2.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.linkedin2 = void 0;
+var linkedin2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 6h2.767v1.418h0.040c0.385-0.691 1.327-1.418 2.732-1.418 2.921 0 3.461 1.818 3.461 4.183v4.817h-2.885v-4.27c0-1.018-0.021-2.329-1.5-2.329-1.502 0-1.732 1.109-1.732 2.255v4.344h-2.883v-9z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 6h3v9h-3v-9z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 3.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }]
+};
+exports.linkedin2 = linkedin2;
\ No newline at end of file
diff --git a/dist/icomoon/list.js b/dist/icomoon/list.js
new file mode 100644
index 000000000..9604f1187
--- /dev/null
+++ b/dist/icomoon/list.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.list = void 0;
+var list = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0h4v4h-4zM6 1h10v2h-10zM0 6h4v4h-4zM6 7h10v2h-10zM0 12h4v4h-4zM6 13h10v2h-10z"
+ }
+ }]
+};
+exports.list = list;
\ No newline at end of file
diff --git a/dist/icomoon/list2.js b/dist/icomoon/list2.js
new file mode 100644
index 000000000..63485000e
--- /dev/null
+++ b/dist/icomoon/list2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.list2 = void 0;
+var list2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 1h10v2h-10v-2zM6 7h10v2h-10v-2zM6 13h10v2h-10v-2zM0 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM0 8c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM0 14c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2z"
+ }
+ }]
+};
+exports.list2 = list2;
\ No newline at end of file
diff --git a/dist/icomoon/listNumbered.js b/dist/icomoon/listNumbered.js
new file mode 100644
index 000000000..ee1d9bdc4
--- /dev/null
+++ b/dist/icomoon/listNumbered.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.listNumbered = void 0;
+var listNumbered = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 13h10v2h-10zM6 7h10v2h-10zM6 1h10v2h-10zM3 0v4h-1v-3h-1v-1zM2 8.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM4 11v5h-3v-1h2v-1h-2v-1h2v-1h-2v-1z"
+ }
+ }]
+};
+exports.listNumbered = listNumbered;
\ No newline at end of file
diff --git a/dist/icomoon/location.js b/dist/icomoon/location.js
new file mode 100644
index 000000000..c6506189d
--- /dev/null
+++ b/dist/icomoon/location.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.location = void 0;
+var location = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-2.761 0-5 2.239-5 5 0 5 5 11 5 11s5-6 5-11c0-2.761-2.239-5-5-5zM8 8c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3z"
+ }
+ }]
+};
+exports.location = location;
\ No newline at end of file
diff --git a/dist/icomoon/location2.js b/dist/icomoon/location2.js
new file mode 100644
index 000000000..d9e13a393
--- /dev/null
+++ b/dist/icomoon/location2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.location2 = void 0;
+var location2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-2.761 0-5 2.239-5 5 0 5 5 11 5 11s5-6 5-11c0-2.761-2.239-5-5-5zM8 8.063c-1.691 0-3.063-1.371-3.063-3.063s1.371-3.063 3.063-3.063 3.063 1.371 3.063 3.063-1.371 3.063-3.063 3.063zM6.063 5c0-1.070 0.867-1.938 1.938-1.938s1.938 0.867 1.938 1.938c0 1.070-0.867 1.938-1.938 1.938s-1.938-0.867-1.938-1.938z"
+ }
+ }]
+};
+exports.location2 = location2;
\ No newline at end of file
diff --git a/dist/icomoon/lock.js b/dist/icomoon/lock.js
new file mode 100644
index 000000000..d85bfde57
--- /dev/null
+++ b/dist/icomoon/lock.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lock = void 0;
+var lock = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.25 7h-0.25v-3c0-1.654-1.346-3-3-3h-2c-1.654 0-3 1.346-3 3v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v7.5c0 0.412 0.338 0.75 0.75 0.75h8.5c0.412 0 0.75-0.338 0.75-0.75v-7.5c0-0.412-0.338-0.75-0.75-0.75zM3 4c0-0.551 0.449-1 1-1h2c0.551 0 1 0.449 1 1v3h-4v-3z"
+ }
+ }]
+};
+exports.lock = lock;
\ No newline at end of file
diff --git a/dist/icomoon/loop.js b/dist/icomoon/loop.js
new file mode 100644
index 000000000..6a88678ee
--- /dev/null
+++ b/dist/icomoon/loop.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loop = void 0;
+var loop = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 5h10v3l4-4-4-4v3h-12v6h2zM14 11h-10v-3l-4 4 4 4v-3h12v-6h-2z"
+ }
+ }]
+};
+exports.loop = loop;
\ No newline at end of file
diff --git a/dist/icomoon/loop2.js b/dist/icomoon/loop2.js
new file mode 100644
index 000000000..eee47d02a
--- /dev/null
+++ b/dist/icomoon/loop2.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loop2 = void 0;
+var loop2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.901 2.599c-1.463-1.597-3.565-2.599-5.901-2.599-4.418 0-8 3.582-8 8h1.5c0-3.59 2.91-6.5 6.5-6.5 1.922 0 3.649 0.835 4.839 2.161l-2.339 2.339h5.5v-5.5l-2.099 2.099z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 8c0 3.59-2.91 6.5-6.5 6.5-1.922 0-3.649-0.835-4.839-2.161l2.339-2.339h-5.5v5.5l2.099-2.099c1.463 1.597 3.565 2.599 5.901 2.599 4.418 0 8-3.582 8-8h-1.5z"
+ }
+ }]
+};
+exports.loop2 = loop2;
\ No newline at end of file
diff --git a/dist/icomoon/ltr.js b/dist/icomoon/ltr.js
new file mode 100644
index 000000000..222c74034
--- /dev/null
+++ b/dist/icomoon/ltr.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ltr = void 0;
+var ltr = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-2.209 0-4 1.791-4 4s1.791 4 4 4v8h2v-14h2v14h2v-14h2v-2h-8zM0 11l4-4-4-4z"
+ }
+ }]
+};
+exports.ltr = ltr;
\ No newline at end of file
diff --git a/dist/icomoon/magicWand.js b/dist/icomoon/magicWand.js
new file mode 100644
index 000000000..8cfa06b46
--- /dev/null
+++ b/dist/icomoon/magicWand.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.magicWand = void 0;
+var magicWand = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 3l-2-2h-1v1l2 2zM5 0h1v2h-1zM9 5h2v1h-2zM10 2v-1h-1l-2 2 1 1zM0 5h2v1h-2zM5 9h1v2h-1zM1 9v1h1l2-2-1-1zM15.781 13.781l-9.939-9.939c-0.292-0.292-0.769-0.292-1.061 0l-0.939 0.939c-0.292 0.292-0.292 0.769 0 1.061l9.939 9.939c0.292 0.292 0.769 0.292 1.061 0l0.939-0.939c0.292-0.292 0.292-0.769 0-1.061zM7.5 8.5l-3-3 1-1 3 3-1 1z"
+ }
+ }]
+};
+exports.magicWand = magicWand;
\ No newline at end of file
diff --git a/dist/icomoon/magnet.js b/dist/icomoon/magnet.js
new file mode 100644
index 000000000..bc4f46bef
--- /dev/null
+++ b/dist/icomoon/magnet.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.magnet = void 0;
+var magnet = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 0h-4l1 9c0 1.657-1.343 3-3 3s-3-1.343-3-3l1-9h-4l-1 9c0 3.866 3.134 7 7 7s7-3.134 7-7l-1-9zM12.154 13.154c-1.11 1.11-2.585 1.721-4.154 1.721s-3.045-0.611-4.154-1.721c-1.096-1.096-1.705-2.548-1.72-4.095l0.564-5.075h1.736l-0.55 4.953v0.062c0 1.102 0.429 2.138 1.208 2.917s1.815 1.208 2.917 1.208 2.138-0.429 2.917-1.208c0.779-0.779 1.208-1.815 1.208-2.917v-0.062l-0.007-0.062-0.543-4.891h1.736l0.564 5.075c-0.015 1.547-0.625 2.999-1.72 4.095z"
+ }
+ }]
+};
+exports.magnet = magnet;
\ No newline at end of file
diff --git a/dist/icomoon/mail.js b/dist/icomoon/mail.js
new file mode 100644
index 000000000..237b03233
--- /dev/null
+++ b/dist/icomoon/mail.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mail = void 0;
+var mail = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.467 1.2 2.667 2.667 2.667h10.666c1.468 0 2.667-1.2 2.667-2.667v-10.666c0-1.467-1.199-2.667-2.667-2.667zM4 4h8c0.143 0 0.281 0.031 0.409 0.088l-4.409 5.143-4.409-5.143c0.127-0.058 0.266-0.088 0.409-0.088zM3 11v-6c0-0.021 0.001-0.042 0.002-0.063l2.932 3.421-2.9 2.9c-0.023-0.083-0.034-0.17-0.034-0.258zM12 12h-8c-0.088 0-0.175-0.012-0.258-0.034l2.846-2.846 1.413 1.648 1.413-1.648 2.846 2.846c-0.083 0.023-0.17 0.034-0.258 0.034zM13 11c0 0.088-0.012 0.175-0.034 0.258l-2.9-2.9 2.932-3.421c0.001 0.021 0.002 0.042 0.002 0.063v6z"
+ }
+ }]
+};
+exports.mail = mail;
\ No newline at end of file
diff --git a/dist/icomoon/mail2.js b/dist/icomoon/mail2.js
new file mode 100644
index 000000000..e5400200d
--- /dev/null
+++ b/dist/icomoon/mail2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mail2 = void 0;
+var mail2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.468 1.2 2.667 2.667 2.667h10.666c1.467 0 2.667-1.199 2.667-2.667v-10.666c0-1.467-1.2-2.667-2.667-2.667zM13.333 2c0.125 0 0.243 0.036 0.344 0.099l-5.678 4.694-5.677-4.694c0.101-0.063 0.219-0.099 0.344-0.099h10.666zM2.667 14c-0.030 0-0.060-0.002-0.089-0.006l3.525-4.89-0.457-0.457-3.646 3.646v-9.549l6 7.256 6-7.256v9.549l-3.646-3.646-0.457 0.457 3.525 4.89c-0.029 0.004-0.059 0.006-0.088 0.006h-10.666z"
+ }
+ }]
+};
+exports.mail2 = mail2;
\ No newline at end of file
diff --git a/dist/icomoon/mail3.js b/dist/icomoon/mail3.js
new file mode 100644
index 000000000..7de65ee39
--- /dev/null
+++ b/dist/icomoon/mail3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mail3 = void 0;
+var mail3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.333 0h-10.666c-1.467 0-2.667 1.2-2.667 2.667v10.666c0 1.468 1.2 2.667 2.667 2.667h10.666c1.467 0 2.667-1.199 2.667-2.667v-10.666c0-1.467-1.2-2.667-2.667-2.667zM2.854 13.854l-1.207-1.207 4-4 0.457 0.457-3.25 4.75zM2.396 3.104l0.457-0.457 5.146 4.146 5.146-4.146 0.457 0.457-5.604 6.604-5.604-6.604zM13.146 13.854l-3.25-4.75 0.457-0.457 4 4-1.207 1.207z"
+ }
+ }]
+};
+exports.mail3 = mail3;
\ No newline at end of file
diff --git a/dist/icomoon/mail4.js b/dist/icomoon/mail4.js
new file mode 100644
index 000000000..8d9531d49
--- /dev/null
+++ b/dist/icomoon/mail4.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mail4 = void 0;
+var mail4 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4 4h8c0.143 0 0.281 0.031 0.409 0.088l-4.409 5.143-4.409-5.143c0.127-0.058 0.266-0.088 0.409-0.088zM3 11v-6c0-0.021 0.001-0.042 0.002-0.063l2.932 3.421-2.9 2.9c-0.023-0.083-0.034-0.17-0.034-0.258zM12 12h-8c-0.088 0-0.175-0.012-0.258-0.034l2.846-2.846 1.413 1.648 1.413-1.648 2.846 2.846c-0.083 0.023-0.17 0.034-0.258 0.034zM13 11c0 0.088-0.012 0.175-0.034 0.258l-2.9-2.9 2.932-3.421c0.001 0.021 0.002 0.042 0.002 0.063v6z"
+ }
+ }]
+};
+exports.mail4 = mail4;
\ No newline at end of file
diff --git a/dist/icomoon/makeGroup.js b/dist/icomoon/makeGroup.js
new file mode 100644
index 000000000..1d8bdabd4
--- /dev/null
+++ b/dist/icomoon/makeGroup.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.makeGroup = void 0;
+var makeGroup = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 2h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 6h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1zM11 3h2v2h-2v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 10h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1zM5 13h-2v-2h2v2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 10h-2c-0.55 0-1 0.45-1 1v2c0 0.55 0.45 1 1 1h2c0.55 0 1-0.45 1-1v-2c0-0.55-0.45-1-1-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 8h-1c-1.336 0-2.591-0.52-3.536-1.464s-1.464-2.2-1.464-3.536v-1c0-1.1-0.9-2-2-2h-4c-1.1 0-2 0.9-2 2v4c0 1.1 0.9 2 2 2h1c1.336 0 2.591 0.52 3.536 1.464s1.464 2.2 1.464 3.536v1c0 1.1 0.9 2 2 2h4c1.1 0 2-0.9 2-2v-4c0-1.1-0.9-2-2-2zM15 14c0 0.265-0.105 0.515-0.295 0.705s-0.44 0.295-0.705 0.295h-4c-0.265 0-0.515-0.105-0.705-0.295s-0.295-0.44-0.295-0.705v-1c0-3.314-2.686-6-6-6h-1c-0.265 0-0.515-0.105-0.705-0.295s-0.295-0.441-0.295-0.705v-4c0-0.265 0.105-0.515 0.295-0.705s0.44-0.295 0.705-0.295h4c0.265 0 0.515 0.105 0.705 0.295s0.295 0.44 0.295 0.705v1c0 3.314 2.686 6 6 6h1c0.265 0 0.515 0.105 0.705 0.295s0.295 0.44 0.295 0.705v4z"
+ }
+ }]
+};
+exports.makeGroup = makeGroup;
\ No newline at end of file
diff --git a/dist/icomoon/man.js b/dist/icomoon/man.js
new file mode 100644
index 000000000..71ae5b1f4
--- /dev/null
+++ b/dist/icomoon/man.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.man = void 0;
+var man = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 4h-3c-0.552 0-1 0.448-1 1v5h1v6h1.25v-6h0.5v6h1.25v-6h1v-5c0-0.552-0.448-1-1-1z"
+ }
+ }]
+};
+exports.man = man;
\ No newline at end of file
diff --git a/dist/icomoon/manWoman.js b/dist/icomoon/manWoman.js
new file mode 100644
index 000000000..55120ef73
--- /dev/null
+++ b/dist/icomoon/manWoman.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.manWoman = void 0;
+var manWoman = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 4h-3c-0.552 0-1 0.448-1 1v5h1v6h1.25v-6h0.5v6h1.25v-6h1v-5c0-0.552-0.448-1-1-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.234 8l0.766-0.555-2.083-3.221c-0.092-0.14-0.249-0.225-0.417-0.225h-4c-0.168 0-0.325 0.084-0.417 0.225l-2.083 3.221 0.766 0.555 1.729-2.244 0.601 1.402-2.095 3.841h1.917l0.333 5h1v-5h0.5v5h1l0.333-5h1.917l-2.095-3.842 0.601-1.402 1.729 2.244z"
+ }
+ }]
+};
+exports.manWoman = manWoman;
\ No newline at end of file
diff --git a/dist/icomoon/map.js b/dist/icomoon/map.js
new file mode 100644
index 000000000..98c830bee
--- /dev/null
+++ b/dist/icomoon/map.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map = void 0;
+var map = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3l5-2v12l-5 2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 0.5l5 3v11.5l-5-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 3.5l4-3v12l-4 3z"
+ }
+ }]
+};
+exports.map = map;
\ No newline at end of file
diff --git a/dist/icomoon/map2.js b/dist/icomoon/map2.js
new file mode 100644
index 000000000..5c0805723
--- /dev/null
+++ b/dist/icomoon/map2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map2 = void 0;
+var map2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.5 3l-5-2-5.5 2v12l5.5-2 5 2 5.5-2v-12l-5.5 2zM6 2.277l4 1.6v9.846l-4-1.6v-9.846zM1 3.7l4-1.455v9.872l-4 1.454v-9.872zM15 12.3l-4 1.455v-9.872l4-1.455v9.872z"
+ }
+ }]
+};
+exports.map2 = map2;
\ No newline at end of file
diff --git a/dist/icomoon/menu.js b/dist/icomoon/menu.js
new file mode 100644
index 000000000..468cd4d59
--- /dev/null
+++ b/dist/icomoon/menu.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.menu = void 0;
+var menu = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 3h14v3h-14zM1 7h14v3h-14zM1 11h14v3h-14z"
+ }
+ }]
+};
+exports.menu = menu;
\ No newline at end of file
diff --git a/dist/icomoon/menu2.js b/dist/icomoon/menu2.js
new file mode 100644
index 000000000..d229bf41b
--- /dev/null
+++ b/dist/icomoon/menu2.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.menu2 = void 0;
+var menu2 = {
+ "viewBox": "0 0 22 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.5 9l3 3 3-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M21.5 8l-3-3-3 3z"
+ }
+ }]
+};
+exports.menu2 = menu2;
\ No newline at end of file
diff --git a/dist/icomoon/menu3.js b/dist/icomoon/menu3.js
new file mode 100644
index 000000000..53a64ad3e
--- /dev/null
+++ b/dist/icomoon/menu3.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.menu3 = void 0;
+var menu3 = {
+ "viewBox": "0 0 22 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.5 7l3 3 3-3z"
+ }
+ }]
+};
+exports.menu3 = menu3;
\ No newline at end of file
diff --git a/dist/icomoon/menu4.js b/dist/icomoon/menu4.js
new file mode 100644
index 000000000..b6a2d6b74
--- /dev/null
+++ b/dist/icomoon/menu4.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.menu4 = void 0;
+var menu4 = {
+ "viewBox": "0 0 22 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3h14v3h-14v-3zM0 7h14v3h-14v-3zM0 11h14v3h-14v-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.5 10l3-3 3 3z"
+ }
+ }]
+};
+exports.menu4 = menu4;
\ No newline at end of file
diff --git a/dist/icomoon/meter.js b/dist/icomoon/meter.js
new file mode 100644
index 000000000..3c501bf40
--- /dev/null
+++ b/dist/icomoon/meter.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.meter = void 0;
+var meter = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1c4.418 0 8 3.582 8 8 0 3.012-1.665 5.635-4.125 7h-7.75c-2.46-1.365-4.125-3.988-4.125-7 0-4.418 3.582-8 8-8zM12.53 13.53c1.21-1.21 1.876-2.819 1.876-4.53h-1.406v-1h1.329c-0.11-0.703-0.334-1.377-0.665-2h-1.664v-1h1.004c-0.147-0.184-0.306-0.361-0.475-0.53-0.722-0.722-1.587-1.251-2.53-1.559v1.089h-1v-1.329c-0.328-0.051-0.662-0.078-1-0.078s-0.672 0.026-1 0.078v1.329h-1v-1.089c-0.943 0.309-1.808 0.837-2.53 1.559-0.169 0.169-0.327 0.346-0.475 0.53h1.004v1h-1.664c-0.331 0.623-0.555 1.297-0.665 2h1.329v1h-1.406c0 1.711 0.666 3.32 1.876 4.53 0.167 0.167 0.343 0.324 0.524 0.47h3.006l0.571-8h0.857l0.571 8h3.006c0.182-0.146 0.357-0.303 0.524-0.47z"
+ }
+ }]
+};
+exports.meter = meter;
\ No newline at end of file
diff --git a/dist/icomoon/meter2.js b/dist/icomoon/meter2.js
new file mode 100644
index 000000000..2d76bdd2c
--- /dev/null
+++ b/dist/icomoon/meter2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.meter2 = void 0;
+var meter2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4.732 13.034c0.174-0.479 0.268-0.995 0.268-1.534 0-1.943-1.231-3.598-2.956-4.228 0.16-1.327 0.754-2.555 1.714-3.514 1.133-1.133 2.64-1.757 4.243-1.757s3.109 0.624 4.243 1.757c0.96 0.96 1.554 2.188 1.714 3.514-1.725 0.63-2.956 2.285-2.956 4.228 0 0.539 0.095 1.055 0.268 1.534-0.964 0.629-2.090 0.966-3.268 0.966s-2.304-0.338-3.268-0.966zM8.621 10.016c0.217 0.055 0.379 0.251 0.379 0.484v1c0 0.275-0.225 0.5-0.5 0.5h-1c-0.275 0-0.5-0.225-0.5-0.5v-1c0-0.233 0.162-0.43 0.379-0.484l0.371-7.016h0.5l0.371 7.016z"
+ }
+ }]
+};
+exports.meter2 = meter2;
\ No newline at end of file
diff --git a/dist/icomoon/mic.js b/dist/icomoon/mic.js
new file mode 100644
index 000000000..739cc7a0a
--- /dev/null
+++ b/dist/icomoon/mic.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mic = void 0;
+var mic = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 11c1.381 0 2.5-1.119 2.5-2.5v-6c0-1.381-1.119-2.5-2.5-2.5s-2.5 1.119-2.5 2.5v6c0 1.381 1.119 2.5 2.5 2.5zM11 7v1.5c0 1.933-1.567 3.5-3.5 3.5s-3.5-1.567-3.5-3.5v-1.5h-1v1.5c0 2.316 1.75 4.223 4 4.472v2.028h-2v1h5v-1h-2v-2.028c2.25-0.249 4-2.156 4-4.472v-1.5h-1z"
+ }
+ }]
+};
+exports.mic = mic;
\ No newline at end of file
diff --git a/dist/icomoon/minus.js b/dist/icomoon/minus.js
new file mode 100644
index 000000000..84949b3fc
--- /dev/null
+++ b/dist/icomoon/minus.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minus = void 0;
+var minus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 6.5v3c0 0.276 0.224 0.5 0.5 0.5h15c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5h-15c-0.276 0-0.5 0.224-0.5 0.5z"
+ }
+ }]
+};
+exports.minus = minus;
\ No newline at end of file
diff --git a/dist/icomoon/mobile.js b/dist/icomoon/mobile.js
new file mode 100644
index 000000000..0c1485bb2
--- /dev/null
+++ b/dist/icomoon/mobile.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mobile = void 0;
+var mobile = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 0h-7c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h7c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM6 0.75h4v0.5h-4v-0.5zM8 15c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM12 12h-8v-10h8v10z"
+ }
+ }]
+};
+exports.mobile = mobile;
\ No newline at end of file
diff --git a/dist/icomoon/mobile2.js b/dist/icomoon/mobile2.js
new file mode 100644
index 000000000..cad8a818e
--- /dev/null
+++ b/dist/icomoon/mobile2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mobile2 = void 0;
+var mobile2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 0h-9c-0.55 0-1 0.45-1 1v14c0 0.55 0.45 1 1 1h9c0.55 0 1-0.45 1-1v-14c0-0.55-0.45-1-1-1zM7.5 15.278c-0.43 0-0.778-0.348-0.778-0.778s0.348-0.778 0.778-0.778 0.778 0.348 0.778 0.778-0.348 0.778-0.778 0.778zM12 13h-9v-11h9v11z"
+ }
+ }]
+};
+exports.mobile2 = mobile2;
\ No newline at end of file
diff --git a/dist/icomoon/moveDown.js b/dist/icomoon/moveDown.js
new file mode 100644
index 000000000..3a5c512fd
--- /dev/null
+++ b/dist/icomoon/moveDown.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.moveDown = void 0;
+var moveDown = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 11v-6h-1v6h-2.5l3 3 3-3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 4v3h-3v-3h3zM6 3h-5v5h5v-5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 10h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 10h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 10h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 13.5h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.5 14h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 14h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 11.5h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12h1v1.5h-1v-1.5z"
+ }
+ }]
+};
+exports.moveDown = moveDown;
\ No newline at end of file
diff --git a/dist/icomoon/moveUp.js b/dist/icomoon/moveUp.js
new file mode 100644
index 000000000..a568d9069
--- /dev/null
+++ b/dist/icomoon/moveUp.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.moveUp = void 0;
+var moveUp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 8v6h1v-6h2.5l-3-3-3 3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 3h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 3h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 3h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 6.5h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.5 7h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 7h1.5v1h-1.5v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 4.5h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 5h1v1.5h-1v-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 11v3h-3v-3h3zM6 10h-5v5h5v-5z"
+ }
+ }]
+};
+exports.moveUp = moveUp;
\ No newline at end of file
diff --git a/dist/icomoon/mug.js b/dist/icomoon/mug.js
new file mode 100644
index 000000000..fb344e9cb
--- /dev/null
+++ b/dist/icomoon/mug.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mug = void 0;
+var mug = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 5h-3v-1.5c0-1.381-2.686-2.5-6-2.5s-6 1.119-6 2.5v10c0 1.381 2.686 2.5 6 2.5s6-1.119 6-2.5v-1.5h3c0.552 0 1-0.448 1-1v-5c0-0.552-0.448-1-1-1zM2.751 4.037c-0.578-0.19-0.928-0.394-1.116-0.537 0.188-0.143 0.538-0.347 1.116-0.537 0.905-0.298 2.059-0.463 3.249-0.463s2.344 0.164 3.249 0.463c0.578 0.19 0.928 0.394 1.116 0.537-0.188 0.143-0.538 0.347-1.116 0.537-0.905 0.298-2.059 0.463-3.249 0.463s-2.344-0.164-3.249-0.463zM14 10h-2v-3h2v3z"
+ }
+ }]
+};
+exports.mug = mug;
\ No newline at end of file
diff --git a/dist/icomoon/music.js b/dist/icomoon/music.js
new file mode 100644
index 000000000..74154f73c
--- /dev/null
+++ b/dist/icomoon/music.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music = void 0;
+var music = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 0h1v11.5c0 1.381-1.567 2.5-3.5 2.5s-3.5-1.119-3.5-2.5c0-1.381 1.567-2.5 3.5-2.5 0.979 0 1.865 0.287 2.5 0.751v-5.751l-8 1.778v7.722c0 1.381-1.567 2.5-3.5 2.5s-3.5-1.119-3.5-2.5c0-1.381 1.567-2.5 3.5-2.5 0.979 0 1.865 0.287 2.5 0.751v-9.751l9-2z"
+ }
+ }]
+};
+exports.music = music;
\ No newline at end of file
diff --git a/dist/icomoon/neutral.js b/dist/icomoon/neutral.js
new file mode 100644
index 000000000..7a8636d63
--- /dev/null
+++ b/dist/icomoon/neutral.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.neutral = void 0;
+var neutral = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0 0.552 0.448 1 1 1s1-0.448 1-1-0.448-1-1-1-1 0.448-1 1zM10 5c0 0.552 0.448 1 1 1s1-0.448 1-1-0.448-1-1-1-1 0.448-1 1zM6 11h4v1h-4v-1z"
+ }
+ }]
+};
+exports.neutral = neutral;
\ No newline at end of file
diff --git a/dist/icomoon/neutral2.js b/dist/icomoon/neutral2.js
new file mode 100644
index 000000000..831093581
--- /dev/null
+++ b/dist/icomoon/neutral2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.neutral2 = void 0;
+var neutral2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM10 12h-4v-1h4v1zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1c0-0.552 0.448-1 1-1z"
+ }
+ }]
+};
+exports.neutral2 = neutral2;
\ No newline at end of file
diff --git a/dist/icomoon/newTab.js b/dist/icomoon/newTab.js
new file mode 100644
index 000000000..fb925b339
--- /dev/null
+++ b/dist/icomoon/newTab.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.newTab = void 0;
+var newTab = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 1v12h12v-12h-12zM14 12h-10v-10h10v10zM2 14v-10.5l-1-1v12.5h12.5l-1-1h-10.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.5 4l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5v-6.5z"
+ }
+ }]
+};
+exports.newTab = newTab;
\ No newline at end of file
diff --git a/dist/icomoon/newspaper.js b/dist/icomoon/newspaper.js
new file mode 100644
index 000000000..e6f1c0486
--- /dev/null
+++ b/dist/icomoon/newspaper.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.newspaper = void 0;
+var newspaper = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 4v-2h-14v11c0 0.552 0.448 1 1 1h13.5c0.828 0 1.5-0.672 1.5-1.5v-8.5h-2zM13 13h-12v-10h12v10zM2 5h10v1h-10zM8 7h4v1h-4zM8 9h4v1h-4zM8 11h3v1h-3zM2 7h5v5h-5z"
+ }
+ }]
+};
+exports.newspaper = newspaper;
\ No newline at end of file
diff --git a/dist/icomoon/next.js b/dist/icomoon/next.js
new file mode 100644
index 000000000..3ed10da1a
--- /dev/null
+++ b/dist/icomoon/next.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.next = void 0;
+var next = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c4.418 0 8 3.582 8 8s-3.582 8-8 8-8-3.582-8-8 3.582-8 8-8zM8 14.5c3.59 0 6.5-2.91 6.5-6.5s-2.91-6.5-6.5-6.5-6.5 2.91-6.5 6.5 2.91 6.5 6.5 6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 8l-4-3v6z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 5h-2v6h2v-6z"
+ }
+ }]
+};
+exports.next = next;
\ No newline at end of file
diff --git a/dist/icomoon/next2.js b/dist/icomoon/next2.js
new file mode 100644
index 000000000..e3d6eb13d
--- /dev/null
+++ b/dist/icomoon/next2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.next2 = void 0;
+var next2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 2v12h-2v-5.5l-5 5v-11l5 5v-5.5z"
+ }
+ }]
+};
+exports.next2 = next2;
\ No newline at end of file
diff --git a/dist/icomoon/notification.js b/dist/icomoon/notification.js
new file mode 100644
index 000000000..26208a3ac
--- /dev/null
+++ b/dist/icomoon/notification.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.notification = void 0;
+var notification = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1.5c-1.736 0-3.369 0.676-4.596 1.904s-1.904 2.86-1.904 4.596c0 1.736 0.676 3.369 1.904 4.596s2.86 1.904 4.596 1.904c1.736 0 3.369-0.676 4.596-1.904s1.904-2.86 1.904-4.596c0-1.736-0.676-3.369-1.904-4.596s-2.86-1.904-4.596-1.904zM8 0v0c4.418 0 8 3.582 8 8s-3.582 8-8 8c-4.418 0-8-3.582-8-8s3.582-8 8-8zM7 11h2v2h-2zM7 3h2v6h-2z"
+ }
+ }]
+};
+exports.notification = notification;
\ No newline at end of file
diff --git a/dist/icomoon/npm.js b/dist/icomoon/npm.js
new file mode 100644
index 000000000..c88dce7fd
--- /dev/null
+++ b/dist/icomoon/npm.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.npm = void 0;
+var npm = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 0v16h16v-16h-16zM13 13h-2v-8h-3v8h-5v-10h10v10z"
+ }
+ }]
+};
+exports.npm = npm;
\ No newline at end of file
diff --git a/dist/icomoon/office.js b/dist/icomoon/office.js
new file mode 100644
index 000000000..b0b7f76b7
--- /dev/null
+++ b/dist/icomoon/office.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.office = void 0;
+var office = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 16h8v-16h-8v16zM5 2h2v2h-2v-2zM5 6h2v2h-2v-2zM5 10h2v2h-2v-2zM1 2h2v2h-2v-2zM1 6h2v2h-2v-2zM1 10h2v2h-2v-2zM9 5h7v1h-7zM9 16h2v-4h3v4h2v-9h-7z"
+ }
+ }]
+};
+exports.office = office;
\ No newline at end of file
diff --git a/dist/icomoon/omega.js b/dist/icomoon/omega.js
new file mode 100644
index 000000000..27ff2db0e
--- /dev/null
+++ b/dist/icomoon/omega.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.omega = void 0;
+var omega = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 14h4l1-2v4h-6v-3.347c2.049-0.883 3.5-3.081 3.5-5.653 0-3.35-2.462-5.973-5.5-5.973s-5.5 2.622-5.5 5.973c0 2.572 1.451 4.77 3.5 5.653v3.347h-6v-4l1 2h4v-0.509c-2.932-1.038-5-3.553-5-6.491 0-3.866 3.582-7 8-7s8 3.134 8 7c0 2.938-2.068 5.452-5 6.491v0.509z"
+ }
+ }]
+};
+exports.omega = omega;
\ No newline at end of file
diff --git a/dist/icomoon/onedrive.js b/dist/icomoon/onedrive.js
new file mode 100644
index 000000000..91d4b3b0c
--- /dev/null
+++ b/dist/icomoon/onedrive.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.onedrive = void 0;
+var onedrive = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.482 12.944c-0.942-0.235-1.466-0.984-1.468-2.095-0-0.355 0.025-0.525 0.114-0.754 0.217-0.56 0.793-0.982 1.55-1.138 0.377-0.077 0.493-0.16 0.493-0.353 0-0.060 0.045-0.24 0.1-0.399 0.249-0.724 0.71-1.327 1.202-1.573 0.515-0.258 0.776-0.316 1.399-0.313 0.886 0.005 1.327 0.197 1.945 0.846l0.34 0.357 0.304-0.105c1.473-0.51 2.942 0.358 3.061 1.809l0.032 0.397 0.29 0.104c0.829 0.297 1.218 0.92 1.148 1.837-0.046 0.599-0.326 1.078-0.77 1.315l-0.209 0.112-4.638 0.009c-3.564 0.007-4.697-0.006-4.893-0.055v0zM1.613 12.281c-0.565-0.142-1.164-0.67-1.445-1.273-0.159-0.342-0.168-0.393-0.168-0.998 0-0.576 0.014-0.668 0.14-0.954 0.267-0.603 0.78-1.038 1.422-1.21 0.136-0.036 0.263-0.094 0.283-0.128s0.043-0.221 0.050-0.415c0.045-1.206 0.794-2.269 1.839-2.61 0.565-0.184 1.306-0.202 1.92 0.058 0.195 0.082 0.173 0.1 0.585-0.471 0.244-0.338 0.705-0.695 1.108-0.909 0.435-0.231 0.887-0.337 1.428-0.336 1.512 0.004 2.815 1.003 3.297 2.529 0.154 0.487 0.146 0.624-0.035 0.628-0.079 0.002-0.306 0.048-0.505 0.102l-0.361 0.099-0.329-0.348c-0.928-0.98-2.441-1.192-3.728-0.522-0.514 0.268-0.927 0.652-1.239 1.153-0.222 0.357-0.506 1.024-0.506 1.189 0 0.117-0.090 0.176-0.474 0.309-1.189 0.412-1.883 1.364-1.882 2.582 0 0.443 0.108 0.986 0.258 1.296 0.057 0.117 0.088 0.228 0.070 0.247-0.046 0.049-1.525 0.032-1.73-0.019v0z"
+ }
+ }]
+};
+exports.onedrive = onedrive;
\ No newline at end of file
diff --git a/dist/icomoon/opera.js b/dist/icomoon/opera.js
new file mode 100644
index 000000000..05d251dde
--- /dev/null
+++ b/dist/icomoon/opera.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.opera = void 0;
+var opera = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8v0 0c0 2.369-1.031 4.5-2.669 5.963-2.053 1-3.966 0.3-4.597-0.137 2.016-0.441 3.537-2.878 3.537-5.825s-1.522-5.384-3.537-5.828c0.634-0.438 2.547-1.137 4.597-0.138 1.637 1.466 2.669 3.597 2.669 5.966v0 0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.366 3.491c-0.884 1.044-1.456 2.587-1.494 4.322 0 0.003 0 0.372 0 0.378 0.038 1.731 0.613 3.275 1.497 4.319 1.147 1.491 2.853 2.434 4.759 2.434 1.172 0 2.269-0.356 3.206-0.978-1.419 1.266-3.287 2.034-5.334 2.034-0.128 0-0.256-0.003-0.381-0.009-4.241-0.2-7.619-3.7-7.619-7.991 0-4.419 3.581-8 8-8 0.009 0 0.019 0 0.031 0 2.037 0.006 3.894 0.775 5.303 2.038-0.938-0.622-2.034-0.981-3.206-0.981-1.906 0-3.612 0.944-4.763 2.434z"
+ }
+ }]
+};
+exports.opera = opera;
\ No newline at end of file
diff --git a/dist/icomoon/opt.js b/dist/icomoon/opt.js
new file mode 100644
index 000000000..5b0a90e37
--- /dev/null
+++ b/dist/icomoon/opt.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.opt = void 0;
+var opt = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 13h-4c-0.198 0-0.377-0.116-0.457-0.297l-3.868-8.703h-4.675c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h5c0.198 0 0.377 0.116 0.457 0.297l3.868 8.703h3.675c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 4h-5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }]
+};
+exports.opt = opt;
\ No newline at end of file
diff --git a/dist/icomoon/pacman.js b/dist/icomoon/pacman.js
new file mode 100644
index 000000000..42e886ee1
--- /dev/null
+++ b/dist/icomoon/pacman.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pacman = void 0;
+var pacman = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.074 2.794c-1.467-1.71-3.644-2.794-6.074-2.794-4.418 0-8 3.582-8 8s3.582 8 8 8c2.43 0 4.607-1.084 6.074-2.794l-5.074-5.206 5.074-5.206zM11 1.884c0.616 0 1.116 0.499 1.116 1.116s-0.499 1.116-1.116 1.116-1.116-0.499-1.116-1.116c0-0.616 0.499-1.116 1.116-1.116z"
+ }
+ }]
+};
+exports.pacman = pacman;
\ No newline at end of file
diff --git a/dist/icomoon/pagebreak.js b/dist/icomoon/pagebreak.js
new file mode 100644
index 000000000..d804fa566
--- /dev/null
+++ b/dist/icomoon/pagebreak.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pagebreak = void 0;
+var pagebreak = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 6v-6h12v6h-1v-5h-10v5zM16 9v7h-12v-7h1v6h10v-6zM8 7h2v1h-2zM5 7h2v1h-2zM11 7h2v1h-2zM14 7h2v1h-2zM0 4.5l3 3-3 3z"
+ }
+ }]
+};
+exports.pagebreak = pagebreak;
\ No newline at end of file
diff --git a/dist/icomoon/paintFormat.js b/dist/icomoon/paintFormat.js
new file mode 100644
index 000000000..cd63cfe7c
--- /dev/null
+++ b/dist/icomoon/paintFormat.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paintFormat = void 0;
+var paintFormat = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9v-6h-3v-1c0-0.55-0.45-1-1-1h-11c-0.55 0-1 0.45-1 1v3c0 0.55 0.45 1 1 1h11c0.55 0 1-0.45 1-1v-1h2v4h-9v2h-0.5c-0.276 0-0.5 0.224-0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5h2c0.276 0 0.5-0.224 0.5-0.5v-5c0-0.276-0.224-0.5-0.5-0.5h-0.5v-1h9zM12 3h-11v-1h11v1z"
+ }
+ }]
+};
+exports.paintFormat = paintFormat;
\ No newline at end of file
diff --git a/dist/icomoon/paragraphCenter.js b/dist/icomoon/paragraphCenter.js
new file mode 100644
index 000000000..ca431839b
--- /dev/null
+++ b/dist/icomoon/paragraphCenter.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paragraphCenter = void 0;
+var paragraphCenter = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM3 4h10v2h-10zM3 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z"
+ }
+ }]
+};
+exports.paragraphCenter = paragraphCenter;
\ No newline at end of file
diff --git a/dist/icomoon/paragraphJustify.js b/dist/icomoon/paragraphJustify.js
new file mode 100644
index 000000000..17d06f877
--- /dev/null
+++ b/dist/icomoon/paragraphJustify.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paragraphJustify = void 0;
+var paragraphJustify = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM0 4h16v2h-16zM0 7h16v2h-16zM0 10h16v2h-16zM0 13h16v2h-16z"
+ }
+ }]
+};
+exports.paragraphJustify = paragraphJustify;
\ No newline at end of file
diff --git a/dist/icomoon/paragraphLeft.js b/dist/icomoon/paragraphLeft.js
new file mode 100644
index 000000000..8f9f83faa
--- /dev/null
+++ b/dist/icomoon/paragraphLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paragraphLeft = void 0;
+var paragraphLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM0 4h10v2h-10zM0 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z"
+ }
+ }]
+};
+exports.paragraphLeft = paragraphLeft;
\ No newline at end of file
diff --git a/dist/icomoon/paragraphRight.js b/dist/icomoon/paragraphRight.js
new file mode 100644
index 000000000..395050e63
--- /dev/null
+++ b/dist/icomoon/paragraphRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paragraphRight = void 0;
+var paragraphRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1h16v2h-16zM6 4h10v2h-10zM6 10h10v2h-10zM0 7h16v2h-16zM0 13h16v2h-16z"
+ }
+ }]
+};
+exports.paragraphRight = paragraphRight;
\ No newline at end of file
diff --git a/dist/icomoon/paste.js b/dist/icomoon/paste.js
new file mode 100644
index 000000000..c1bdbb667
--- /dev/null
+++ b/dist/icomoon/paste.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paste = void 0;
+var paste = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 2h-2v-1c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v1h-2v2h8v-2zM8 2h-2v-0.998c0.001-0.001 0.001-0.001 0.002-0.002h1.996c0.001 0.001 0.001 0.001 0.002 0.002v0.998zM13 5v-2.5c0-0.275-0.225-0.5-0.5-0.5h-1v1h0.5v2h-3l-3 3v4h-4v-9h0.5v-1h-1c-0.275 0-0.5 0.225-0.5 0.5v10c0 0.275 0.225 0.5 0.5 0.5h4.5v3h10v-11h-3zM9 6.414v1.586h-1.586l1.586-1.586zM15 15h-8v-6h3v-3h5v9z"
+ }
+ }]
+};
+exports.paste = paste;
\ No newline at end of file
diff --git a/dist/icomoon/pause.js b/dist/icomoon/pause.js
new file mode 100644
index 000000000..a1904bc64
--- /dev/null
+++ b/dist/icomoon/pause.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pause = void 0;
+var pause = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5h2v6h-2zM9 5h2v6h-2z"
+ }
+ }]
+};
+exports.pause = pause;
\ No newline at end of file
diff --git a/dist/icomoon/pause2.js b/dist/icomoon/pause2.js
new file mode 100644
index 000000000..c37e00ecd
--- /dev/null
+++ b/dist/icomoon/pause2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pause2 = void 0;
+var pause2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 2h5v12h-5zM9 2h5v12h-5z"
+ }
+ }]
+};
+exports.pause2 = pause2;
\ No newline at end of file
diff --git a/dist/icomoon/paypal.js b/dist/icomoon/paypal.js
new file mode 100644
index 000000000..c63448e52
--- /dev/null
+++ b/dist/icomoon/paypal.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paypal = void 0;
+var paypal = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.531 4.822c-0.747 3.316-3.053 5.066-6.688 5.066h-1.209l-0.841 5.338h-1.013l-0.053 0.344c-0.034 0.228 0.141 0.431 0.369 0.431h2.588c0.306 0 0.566-0.222 0.616-0.525l0.025-0.131 0.488-3.091 0.031-0.169c0.047-0.303 0.309-0.525 0.616-0.525h0.384c2.506 0 4.469-1.019 5.044-3.963 0.216-1.119 0.134-2.069-0.356-2.775z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.984 1.206c-0.741-0.844-2.081-1.206-3.794-1.206h-4.972c-0.35 0-0.65 0.253-0.703 0.6l-2.072 13.131c-0.041 0.259 0.159 0.494 0.422 0.494h3.072l0.772-4.891-0.025 0.153c0.053-0.347 0.35-0.6 0.7-0.6h1.459c2.866 0 5.109-1.162 5.766-4.531 0.019-0.1 0.037-0.197 0.050-0.291 0.194-1.244 0-2.094-0.675-2.859z"
+ }
+ }]
+};
+exports.paypal = paypal;
\ No newline at end of file
diff --git a/dist/icomoon/pen.js b/dist/icomoon/pen.js
new file mode 100644
index 000000000..d430b60f5
--- /dev/null
+++ b/dist/icomoon/pen.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pen = void 0;
+var pen = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.909 4.561l-4.47-4.47c-0.146-0.146-0.338-0.113-0.427 0.073l-0.599 1.248 4.175 4.175 1.248-0.599c0.186-0.089 0.219-0.282 0.073-0.427z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.615 2.115l-4.115 0.343c-0.273 0.034-0.501 0.092-0.58 0.449-0 0-0 0.001-0 0.001-1.116 5.36-4.92 10.591-4.92 10.591l0.896 0.896 4.25-4.25c-0.094-0.196-0.146-0.415-0.146-0.647 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5c-0.232 0-0.451-0.053-0.647-0.146l-4.25 4.25 0.896 0.896c0 0 5.231-3.804 10.591-4.92 0-0 0.001-0 0.001-0 0.357-0.078 0.415-0.306 0.449-0.58l0.343-4.115-4.269-4.269z"
+ }
+ }]
+};
+exports.pen = pen;
\ No newline at end of file
diff --git a/dist/icomoon/pencil.js b/dist/icomoon/pencil.js
new file mode 100644
index 000000000..7d7a2ad90
--- /dev/null
+++ b/dist/icomoon/pencil.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pencil = void 0;
+var pencil = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 0c1.381 0 2.5 1.119 2.5 2.5 0 0.563-0.186 1.082-0.5 1.5l-1 1-3.5-3.5 1-1c0.418-0.314 0.937-0.5 1.5-0.5zM1 11.5l-1 4.5 4.5-1 9.25-9.25-3.5-3.5-9.25 9.25zM11.181 5.681l-7 7-0.862-0.862 7-7 0.862 0.862z"
+ }
+ }]
+};
+exports.pencil = pencil;
\ No newline at end of file
diff --git a/dist/icomoon/pencil2.js b/dist/icomoon/pencil2.js
new file mode 100644
index 000000000..9f27cd8c0
--- /dev/null
+++ b/dist/icomoon/pencil2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pencil2 = void 0;
+var pencil2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 10l2-1 7-7-1-1-7 7-1 2zM4.52 13.548c-0.494-1.043-1.026-1.574-2.069-2.069l1.548-4.262 2-1.217 6-6h-3l-6 6-3 10 10-3 6-6v-3l-6 6-1.217 2z"
+ }
+ }]
+};
+exports.pencil2 = pencil2;
\ No newline at end of file
diff --git a/dist/icomoon/phone.js b/dist/icomoon/phone.js
new file mode 100644
index 000000000..1559dde93
--- /dev/null
+++ b/dist/icomoon/phone.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phone = void 0;
+var phone = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 10c-1 1-1 2-2 2s-2-1-3-2-2-2-2-3 1-1 2-2-2-4-3-4-3 3-3 3c0 2 2.055 6.055 4 8s6 4 8 4c0 0 3-2 3-3s-3-4-4-3z"
+ }
+ }]
+};
+exports.phone = phone;
\ No newline at end of file
diff --git a/dist/icomoon/phoneHangUp.js b/dist/icomoon/phoneHangUp.js
new file mode 100644
index 000000000..1fa2bc18a
--- /dev/null
+++ b/dist/icomoon/phoneHangUp.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phoneHangUp = void 0;
+var phoneHangUp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.897 9c0.125 0.867 0.207 2.053-0.182 2.507-0.643 0.751-4.714 0.751-4.714-0.751 0-0.756 0.67-1.252 0.027-2.003-0.632-0.738-1.766-0.75-3.027-0.751s-2.394 0.012-3.027 0.751c-0.643 0.751 0.027 1.247 0.027 2.003 0 1.501-4.071 1.501-4.714 0.751-0.389-0.454-0.307-1.64-0.182-2.507 0.096-0.579 0.339-1.203 1.118-2 0-0 0-0 0-0 1.168-1.090 2.935-1.98 6.716-2v-0c0.021 0 0.042 0 0.063 0s0.041-0 0.063-0v0c3.781 0.019 5.548 0.91 6.716 2 0 0 0 0 0 0 0.778 0.797 1.022 1.421 1.118 2z"
+ }
+ }]
+};
+exports.phoneHangUp = phoneHangUp;
\ No newline at end of file
diff --git a/dist/icomoon/pieChart.js b/dist/icomoon/pieChart.js
new file mode 100644
index 000000000..4631c4311
--- /dev/null
+++ b/dist/icomoon/pieChart.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pieChart = void 0;
+var pieChart = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9v-7c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7c0-1.126-0.266-2.189-0.738-3.131l-6.262 3.131zM14.262 3.869c-1.149-2.294-3.521-3.869-6.262-3.869v7l6.262-3.131z"
+ }
+ }]
+};
+exports.pieChart = pieChart;
\ No newline at end of file
diff --git a/dist/icomoon/pilcrow.js b/dist/icomoon/pilcrow.js
new file mode 100644
index 000000000..50108f6c5
--- /dev/null
+++ b/dist/icomoon/pilcrow.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pilcrow = void 0;
+var pilcrow = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 0h8v2h-2v14h-2v-14h-2v14h-2v-8c-2.209 0-4-1.791-4-4s1.791-4 4-4z"
+ }
+ }]
+};
+exports.pilcrow = pilcrow;
\ No newline at end of file
diff --git a/dist/icomoon/pinterest.js b/dist/icomoon/pinterest.js
new file mode 100644
index 000000000..4a5bdd35e
--- /dev/null
+++ b/dist/icomoon/pinterest.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pinterest = void 0;
+var pinterest = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1.069c-3.828 0-6.931 3.103-6.931 6.931 0 2.938 1.828 5.444 4.406 6.453-0.059-0.547-0.116-1.391 0.025-1.988 0.125-0.541 0.813-3.444 0.813-3.444s-0.206-0.416-0.206-1.028c0-0.963 0.559-1.684 1.253-1.684 0.591 0 0.878 0.444 0.878 0.975 0 0.594-0.378 1.484-0.575 2.306-0.166 0.691 0.344 1.253 1.025 1.253 1.231 0 2.178-1.3 2.178-3.175 0-1.659-1.194-2.819-2.894-2.819-1.972 0-3.128 1.478-3.128 3.009 0 0.597 0.228 1.234 0.516 1.581 0.056 0.069 0.066 0.128 0.047 0.2-0.053 0.219-0.169 0.691-0.194 0.787-0.031 0.128-0.1 0.153-0.231 0.094-0.866-0.403-1.406-1.669-1.406-2.684 0-2.188 1.587-4.194 4.578-4.194 2.403 0 4.272 1.712 4.272 4.003 0 2.388-1.506 4.313-3.597 4.313-0.703 0-1.362-0.366-1.588-0.797 0 0-0.347 1.322-0.431 1.647-0.156 0.603-0.578 1.356-0.862 1.816 0.65 0.2 1.337 0.309 2.053 0.309 3.828 0 6.931-3.103 6.931-6.931 0-3.831-3.103-6.934-6.931-6.934z"
+ }
+ }]
+};
+exports.pinterest = pinterest;
\ No newline at end of file
diff --git a/dist/icomoon/pinterest2.js b/dist/icomoon/pinterest2.js
new file mode 100644
index 000000000..74b8fc9aa
--- /dev/null
+++ b/dist/icomoon/pinterest2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pinterest2 = void 0;
+var pinterest2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.412 0-8 3.587-8 8s3.587 8 8 8 8-3.588 8-8-3.588-8-8-8zM8 14.931c-0.716 0-1.403-0.109-2.053-0.309 0.281-0.459 0.706-1.216 0.862-1.816 0.084-0.325 0.431-1.647 0.431-1.647 0.225 0.431 0.888 0.797 1.587 0.797 2.091 0 3.597-1.922 3.597-4.313 0-2.291-1.869-4.003-4.272-4.003-2.991 0-4.578 2.009-4.578 4.194 0 1.016 0.541 2.281 1.406 2.684 0.131 0.063 0.2 0.034 0.231-0.094 0.022-0.097 0.141-0.566 0.194-0.787 0.016-0.069 0.009-0.131-0.047-0.2-0.287-0.347-0.516-0.988-0.516-1.581 0-1.528 1.156-3.009 3.128-3.009 1.703 0 2.894 1.159 2.894 2.819 0 1.875-0.947 3.175-2.178 3.175-0.681 0-1.191-0.563-1.025-1.253 0.197-0.825 0.575-1.713 0.575-2.306 0-0.531-0.284-0.975-0.878-0.975-0.697 0-1.253 0.719-1.253 1.684 0 0.612 0.206 1.028 0.206 1.028s-0.688 2.903-0.813 3.444c-0.141 0.6-0.084 1.441-0.025 1.988-2.578-1.006-4.406-3.512-4.406-6.45 0-3.828 3.103-6.931 6.931-6.931s6.931 3.103 6.931 6.931c0 3.828-3.103 6.931-6.931 6.931z"
+ }
+ }]
+};
+exports.pinterest2 = pinterest2;
\ No newline at end of file
diff --git a/dist/icomoon/play.js b/dist/icomoon/play.js
new file mode 100644
index 000000000..05656b1af
--- /dev/null
+++ b/dist/icomoon/play.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.play = void 0;
+var play = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.331 2.502c-2.244-0.323-4.724-0.502-7.331-0.502s-5.087 0.179-7.331 0.502c-0.43 1.683-0.669 3.543-0.669 5.498s0.239 3.815 0.669 5.498c2.244 0.323 4.724 0.502 7.331 0.502s5.087-0.179 7.331-0.502c0.43-1.683 0.669-3.543 0.669-5.498s-0.239-3.815-0.669-5.498zM6 11v-6l5 3-5 3z"
+ }
+ }]
+};
+exports.play = play;
\ No newline at end of file
diff --git a/dist/icomoon/play2.js b/dist/icomoon/play2.js
new file mode 100644
index 000000000..c08767a83
--- /dev/null
+++ b/dist/icomoon/play2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.play2 = void 0;
+var play2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM6 4.5l6 3.5-6 3.5z"
+ }
+ }]
+};
+exports.play2 = play2;
\ No newline at end of file
diff --git a/dist/icomoon/play3.js b/dist/icomoon/play3.js
new file mode 100644
index 000000000..3398b340b
--- /dev/null
+++ b/dist/icomoon/play3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.play3 = void 0;
+var play3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 2l10 6-10 6z"
+ }
+ }]
+};
+exports.play3 = play3;
\ No newline at end of file
diff --git a/dist/icomoon/plus.js b/dist/icomoon/plus.js
new file mode 100644
index 000000000..a97ed360c
--- /dev/null
+++ b/dist/icomoon/plus.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plus = void 0;
+var plus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.5 6h-5.5v-5.5c0-0.276-0.224-0.5-0.5-0.5h-3c-0.276 0-0.5 0.224-0.5 0.5v5.5h-5.5c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h5.5v5.5c0 0.276 0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-5.5h5.5c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5z"
+ }
+ }]
+};
+exports.plus = plus;
\ No newline at end of file
diff --git a/dist/icomoon/podcast.js b/dist/icomoon/podcast.js
new file mode 100644
index 000000000..f89eeba03
--- /dev/null
+++ b/dist/icomoon/podcast.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.podcast = void 0;
+var podcast = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8c0-4.418-3.582-8-8-8s-8 3.582-8 8c0 3.438 2.169 6.37 5.214 7.501l-0.214 0.499h6l-0.214-0.499c3.045-1.131 5.214-4.063 5.214-7.501zM7.606 9.919c-0.356-0.153-0.606-0.507-0.606-0.919 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.412-0.25 0.766-0.606 0.919l-0.394-0.919-0.394 0.919zM8.41 9.958c0.908-0.189 1.59-0.994 1.59-1.958 0-1.105-0.895-2-2-2s-2 0.895-2 2c0 0.964 0.682 1.768 1.59 1.957l-1.166 2.721c-1.425-0.612-2.424-2.028-2.424-3.677 0-2.209 1.791-4.188 4-4.188s4 1.978 4 4.188c0 1.649-0.999 3.066-2.424 3.677l-1.166-2.72zM10.757 15.433l-1.155-2.695c1.976-0.668 3.398-2.537 3.398-4.738 0-2.761-2.239-5-5-5s-5 2.239-5 5c0 2.201 1.422 4.070 3.398 4.738l-1.155 2.695c-2.494-1.070-4.24-3.547-4.24-6.433 0-3.865 3.133-7.185 6.997-7.185s6.997 3.32 6.997 7.185c0 2.886-1.747 5.363-4.24 6.433z"
+ }
+ }]
+};
+exports.podcast = podcast;
\ No newline at end of file
diff --git a/dist/icomoon/pointDown.js b/dist/icomoon/pointDown.js
new file mode 100644
index 000000000..d775f363e
--- /dev/null
+++ b/dist/icomoon/pointDown.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pointDown = void 0;
+var pointDown = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 6.5v2.5c0 0.827-0.673 1.5-1.5 1.5-0.267 0-0.518-0.070-0.736-0.193-0.267 0.417-0.734 0.693-1.264 0.693-0.384 0-0.734-0.145-1-0.383-0.266 0.238-0.616 0.383-1 0.383-0.175 0-0.344-0.030-0.5-0.086v3.586c0 0.827-0.673 1.5-1.5 1.5s-1.5-0.673-1.5-1.5v-6.167l-2.75 1.466c-0.227 0.131-0.486 0.201-0.75 0.201-0.827 0-1.5-0.673-1.5-1.5 0-0.412 0.164-0.796 0.461-1.082 0.004-0.004 0.008-0.007 0.012-0.011l3.737-3.407h-0.71c-0.276 0-0.5-0.224-0.5-0.5v-3c0-0.276 0.224-0.5 0.5-0.5h10c0.276 0 0.5 0.224 0.5 0.5v3c0 0.276-0.224 0.5-0.5 0.5h-0.691l1.138 2.276c0.035 0.069 0.053 0.146 0.053 0.224zM14 2.5c0-0.276-0.224-0.5-0.5-0.5s-0.5 0.224-0.5 0.5 0.224 0.5 0.5 0.5 0.5-0.224 0.5-0.5zM14 6.618l-1.309-2.618h-5.997l-4.544 4.143c-0.097 0.095-0.15 0.221-0.15 0.357 0 0.276 0.224 0.5 0.5 0.5 0.085 0 0.166-0.020 0.239-0.061 0.008-0.005 0.017-0.010 0.025-0.014l3.5-1.866c0.155-0.083 0.342-0.078 0.492 0.013s0.243 0.253 0.243 0.429v7c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5v-2.382z"
+ }
+ }]
+};
+exports.pointDown = pointDown;
\ No newline at end of file
diff --git a/dist/icomoon/pointLeft.js b/dist/icomoon/pointLeft.js
new file mode 100644
index 000000000..bb8943640
--- /dev/null
+++ b/dist/icomoon/pointLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pointLeft = void 0;
+var pointLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 15h-2.5c-0.827 0-1.5-0.673-1.5-1.5 0-0.267 0.070-0.518 0.193-0.736-0.417-0.267-0.693-0.734-0.693-1.264 0-0.384 0.145-0.734 0.383-1-0.238-0.266-0.383-0.616-0.383-1 0-0.175 0.030-0.344 0.086-0.5h-3.586c-0.827 0-1.5-0.673-1.5-1.5s0.673-1.5 1.5-1.5h6.167l-1.466-2.75c-0.131-0.227-0.201-0.486-0.201-0.75 0-0.827 0.673-1.5 1.5-1.5 0.412 0 0.796 0.164 1.082 0.461 0.004 0.004 0.007 0.008 0.011 0.012l3.407 3.737v-0.71c0-0.276 0.224-0.5 0.5-0.5h3c0.276 0 0.5 0.224 0.5 0.5v10c0 0.276-0.224 0.5-0.5 0.5h-3c-0.276 0-0.5-0.224-0.5-0.5v-0.691l-2.276 1.138c-0.069 0.035-0.146 0.053-0.224 0.053zM13.5 14c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5-0.5 0.224-0.5 0.5 0.224 0.5 0.5 0.5zM9.382 14l2.618-1.309v-5.997l-4.143-4.544c-0.095-0.097-0.221-0.15-0.357-0.15-0.276 0-0.5 0.224-0.5 0.5 0 0.085 0.020 0.166 0.061 0.239 0.005 0.008 0.010 0.017 0.014 0.025l1.866 3.5c0.083 0.155 0.078 0.342-0.012 0.492s-0.253 0.243-0.429 0.243h-7c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2.382z"
+ }
+ }]
+};
+exports.pointLeft = pointLeft;
\ No newline at end of file
diff --git a/dist/icomoon/pointRight.js b/dist/icomoon/pointRight.js
new file mode 100644
index 000000000..26dbb6787
--- /dev/null
+++ b/dist/icomoon/pointRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pointRight = void 0;
+var pointRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15h2.5c0.827 0 1.5-0.673 1.5-1.5 0-0.267-0.070-0.518-0.193-0.736 0.417-0.267 0.693-0.734 0.693-1.264 0-0.384-0.145-0.734-0.383-1 0.238-0.266 0.383-0.616 0.383-1 0-0.175-0.030-0.344-0.086-0.5h3.586c0.827 0 1.5-0.673 1.5-1.5s-0.673-1.5-1.5-1.5h-6.167l1.466-2.75c0.131-0.227 0.201-0.486 0.201-0.75 0-0.827-0.673-1.5-1.5-1.5-0.412 0-0.796 0.164-1.082 0.461-0.004 0.004-0.007 0.008-0.011 0.012l-3.407 3.737v-0.71c0-0.276-0.224-0.5-0.5-0.5h-3c-0.276 0-0.5 0.224-0.5 0.5v10c0 0.276 0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-0.691l2.276 1.138c0.069 0.035 0.146 0.053 0.224 0.053zM2.5 14c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM6.618 14l-2.618-1.309v-5.997l4.143-4.544c0.095-0.097 0.221-0.15 0.357-0.15 0.276 0 0.5 0.224 0.5 0.5 0 0.085-0.020 0.166-0.061 0.239-0.005 0.008-0.010 0.017-0.014 0.025l-1.866 3.5c-0.083 0.155-0.078 0.342 0.013 0.492s0.253 0.243 0.429 0.243h7c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-0.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2.382z"
+ }
+ }]
+};
+exports.pointRight = pointRight;
\ No newline at end of file
diff --git a/dist/icomoon/pointUp.js b/dist/icomoon/pointUp.js
new file mode 100644
index 000000000..9f0245392
--- /dev/null
+++ b/dist/icomoon/pointUp.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pointUp = void 0;
+var pointUp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 9.5v-2.5c0-0.827-0.673-1.5-1.5-1.5-0.267 0-0.518 0.070-0.736 0.193-0.267-0.417-0.734-0.693-1.264-0.693-0.384 0-0.734 0.145-1 0.383-0.266-0.238-0.616-0.383-1-0.383-0.175 0-0.344 0.030-0.5 0.086v-3.586c0-0.827-0.673-1.5-1.5-1.5s-1.5 0.673-1.5 1.5v6.167l-2.75-1.466c-0.227-0.131-0.486-0.201-0.75-0.201-0.827 0-1.5 0.673-1.5 1.5 0 0.412 0.164 0.796 0.461 1.082 0.004 0.004 0.008 0.007 0.012 0.011l3.737 3.407h-0.71c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h10c0.276 0 0.5-0.224 0.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5h-0.691l1.138-2.276c0.035-0.069 0.053-0.146 0.053-0.224zM14 13.5c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5 0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5zM14 9.382l-1.309 2.618h-5.997l-4.544-4.143c-0.097-0.095-0.15-0.221-0.15-0.357 0-0.276 0.224-0.5 0.5-0.5 0.085 0 0.166 0.020 0.239 0.061 0.008 0.005 0.017 0.010 0.025 0.014l3.5 1.866c0.155 0.083 0.342 0.078 0.492-0.012s0.243-0.253 0.243-0.429v-7c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v0.5c0 0.276 0.224 0.5 0.5 0.5s0.5-0.224 0.5-0.5c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v2.382z"
+ }
+ }]
+};
+exports.pointUp = pointUp;
\ No newline at end of file
diff --git a/dist/icomoon/power.js b/dist/icomoon/power.js
new file mode 100644
index 000000000..9537c8928
--- /dev/null
+++ b/dist/icomoon/power.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.power = void 0;
+var power = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 0l-6 8h6l-4 8 14-10h-8l6-6z"
+ }
+ }]
+};
+exports.power = power;
\ No newline at end of file
diff --git a/dist/icomoon/powerCord.js b/dist/icomoon/powerCord.js
new file mode 100644
index 000000000..cd92e49f7
--- /dev/null
+++ b/dist/icomoon/powerCord.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.powerCord = void 0;
+var powerCord = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 4.414l-1.414-1.414-2.793 2.793-1.586-1.586 2.793-2.793-1.414-1.414-2.793 2.793-1.793-1.793-1.354 1.353 8 8 1.354-1.353-1.793-1.793 2.793-2.793z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.407 10.528l-6.935-6.935c-1.497 1.795-3.196 4.57-2.022 6.957l-2.066 2.066c-0.486 0.486-0.486 1.282 0 1.768l0.232 0.232c0.486 0.486 1.282 0.486 1.768 0l2.066-2.066c2.387 1.174 5.161-0.524 6.957-2.022z"
+ }
+ }]
+};
+exports.powerCord = powerCord;
\ No newline at end of file
diff --git a/dist/icomoon/previous.js b/dist/icomoon/previous.js
new file mode 100644
index 000000000..f83654dda
--- /dev/null
+++ b/dist/icomoon/previous.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.previous = void 0;
+var previous = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 8l4-3v6z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 5h2v6h-2v-6z"
+ }
+ }]
+};
+exports.previous = previous;
\ No newline at end of file
diff --git a/dist/icomoon/previous2.js b/dist/icomoon/previous2.js
new file mode 100644
index 000000000..6202aec16
--- /dev/null
+++ b/dist/icomoon/previous2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.previous2 = void 0;
+var previous2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 14v-12h2v5.5l5-5v11l-5-5v5.5z"
+ }
+ }]
+};
+exports.previous2 = previous2;
\ No newline at end of file
diff --git a/dist/icomoon/priceTag.js b/dist/icomoon/priceTag.js
new file mode 100644
index 000000000..f4726d71b
--- /dev/null
+++ b/dist/icomoon/priceTag.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.priceTag = void 0;
+var priceTag = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.25 0h-6c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l7.439-7.439c0.292-0.292 0.53-0.868 0.53-1.28v-6c0-0.412-0.338-0.75-0.75-0.75zM11.5 6c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z"
+ }
+ }]
+};
+exports.priceTag = priceTag;
\ No newline at end of file
diff --git a/dist/icomoon/priceTags.js b/dist/icomoon/priceTags.js
new file mode 100644
index 000000000..4e363535b
--- /dev/null
+++ b/dist/icomoon/priceTags.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.priceTags = void 0;
+var priceTags = {
+ "viewBox": "0 0 20 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M19.25 0h-6c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l7.439-7.439c0.292-0.292 0.53-0.868 0.53-1.28v-6c0-0.412-0.337-0.75-0.75-0.75zM15.5 6c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5 1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 8.5l8.5-8.5h-1.25c-0.412 0-0.989 0.239-1.28 0.53l-7.439 7.439c-0.292 0.292-0.292 0.769 0 1.061l6.439 6.439c0.292 0.292 0.769 0.292 1.061 0l0.47-0.47-6.5-6.5z"
+ }
+ }]
+};
+exports.priceTags = priceTags;
\ No newline at end of file
diff --git a/dist/icomoon/printer.js b/dist/icomoon/printer.js
new file mode 100644
index 000000000..54e4ef46a
--- /dev/null
+++ b/dist/icomoon/printer.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.printer = void 0;
+var printer = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 1h8v2h-8v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 4h-14c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h3v4h8v-4h3c0.55 0 1-0.45 1-1v-5c0-0.55-0.45-1-1-1zM2 7c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1zM11 14h-6v-5h6v5z"
+ }
+ }]
+};
+exports.printer = printer;
\ No newline at end of file
diff --git a/dist/icomoon/profile.js b/dist/icomoon/profile.js
new file mode 100644
index 000000000..d0552f11d
--- /dev/null
+++ b/dist/icomoon/profile.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.profile = void 0;
+var profile = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 0h-12c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h12c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13 14h-11v-12h11v12zM4 9h7v1h-7zM4 11h7v1h-7zM5 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM7.5 6h-2c-0.825 0-1.5 0.45-1.5 1v1h5v-1c0-0.55-0.675-1-1.5-1z"
+ }
+ }]
+};
+exports.profile = profile;
\ No newline at end of file
diff --git a/dist/icomoon/pushpin.js b/dist/icomoon/pushpin.js
new file mode 100644
index 000000000..51a007f3d
--- /dev/null
+++ b/dist/icomoon/pushpin.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pushpin = void 0;
+var pushpin = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.5 0l-1.5 1.5 1.5 1.5-3.5 4h-3.5l2.75 2.75-4.25 5.635v0.615h0.615l5.635-4.25 2.75 2.75v-3.5l4-3.5 1.5 1.5 1.5-1.5-7.5-7.5zM7 8.5l-1-1 3.5-3.5 1 1-3.5 3.5z"
+ }
+ }]
+};
+exports.pushpin = pushpin;
\ No newline at end of file
diff --git a/dist/icomoon/qrcode.js b/dist/icomoon/qrcode.js
new file mode 100644
index 000000000..5944160e9
--- /dev/null
+++ b/dist/icomoon/qrcode.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.qrcode = void 0;
+var qrcode = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 1h-4v4h4v-4zM6 0v0 6h-6v-6h6zM2 2h2v2h-2zM15 1h-4v4h4v-4zM16 0v0 6h-6v-6h6zM12 2h2v2h-2zM5 11h-4v4h4v-4zM6 10v0 6h-6v-6h6zM2 12h2v2h-2zM7 0h1v1h-1zM8 1h1v1h-1zM7 2h1v1h-1zM8 3h1v1h-1zM7 4h1v1h-1zM8 5h1v1h-1zM7 6h1v1h-1zM7 8h1v1h-1zM8 9h1v1h-1zM7 10h1v1h-1zM8 11h1v1h-1zM7 12h1v1h-1zM8 13h1v1h-1zM7 14h1v1h-1zM8 15h1v1h-1zM15 8h1v1h-1zM1 8h1v1h-1zM2 7h1v1h-1zM0 7h1v1h-1zM4 7h1v1h-1zM5 8h1v1h-1zM6 7h1v1h-1zM9 8h1v1h-1zM10 7h1v1h-1zM11 8h1v1h-1zM12 7h1v1h-1zM13 8h1v1h-1zM14 7h1v1h-1zM15 10h1v1h-1zM9 10h1v1h-1zM10 9h1v1h-1zM11 10h1v1h-1zM13 10h1v1h-1zM14 9h1v1h-1zM15 12h1v1h-1zM9 12h1v1h-1zM10 11h1v1h-1zM12 11h1v1h-1zM13 12h1v1h-1zM14 11h1v1h-1zM15 14h1v1h-1zM10 13h1v1h-1zM11 14h1v1h-1zM12 13h1v1h-1zM13 14h1v1h-1zM10 15h1v1h-1zM12 15h1v1h-1zM14 15h1v1h-1z"
+ }
+ }]
+};
+exports.qrcode = qrcode;
\ No newline at end of file
diff --git a/dist/icomoon/question.js b/dist/icomoon/question.js
new file mode 100644
index 000000000..f92bd44a8
--- /dev/null
+++ b/dist/icomoon/question.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.question = void 0;
+var question = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 11h2v2h-2zM11 4c0.552 0 1 0.448 1 1v3l-3 2h-2v-1l3-2v-1h-5v-2h6zM8 1.5c-1.736 0-3.369 0.676-4.596 1.904s-1.904 2.86-1.904 4.596c0 1.736 0.676 3.369 1.904 4.596s2.86 1.904 4.596 1.904c1.736 0 3.369-0.676 4.596-1.904s1.904-2.86 1.904-4.596c0-1.736-0.676-3.369-1.904-4.596s-2.86-1.904-4.596-1.904zM8 0v0c4.418 0 8 3.582 8 8s-3.582 8-8 8c-4.418 0-8-3.582-8-8s3.582-8 8-8z"
+ }
+ }]
+};
+exports.question = question;
\ No newline at end of file
diff --git a/dist/icomoon/quill.js b/dist/icomoon/quill.js
new file mode 100644
index 000000000..ba6b710d3
--- /dev/null
+++ b/dist/icomoon/quill.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quill = void 0;
+var quill = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 16c2-6 7.234-16 16-16-4.109 3.297-6 11-9 11s-3 0-3 0l-3 5h-1z"
+ }
+ }]
+};
+exports.quill = quill;
\ No newline at end of file
diff --git a/dist/icomoon/quotesLeft.js b/dist/icomoon/quotesLeft.js
new file mode 100644
index 000000000..d379c5fa8
--- /dev/null
+++ b/dist/icomoon/quotesLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quotesLeft = void 0;
+var quotesLeft = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.516 7c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5l-0.016-0.5c0-3.866 3.134-7 7-7v2c-1.336 0-2.591 0.52-3.536 1.464-0.182 0.182-0.348 0.375-0.497 0.578 0.179-0.028 0.362-0.043 0.548-0.043zM12.516 7c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5l-0.016-0.5c0-3.866 3.134-7 7-7v2c-1.336 0-2.591 0.52-3.536 1.464-0.182 0.182-0.348 0.375-0.497 0.578 0.179-0.028 0.362-0.043 0.549-0.043z"
+ }
+ }]
+};
+exports.quotesLeft = quotesLeft;
\ No newline at end of file
diff --git a/dist/icomoon/quotesRight.js b/dist/icomoon/quotesRight.js
new file mode 100644
index 000000000..3e898412c
--- /dev/null
+++ b/dist/icomoon/quotesRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quotesRight = void 0;
+var quotesRight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 10c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5 3.5 1.567 3.5 3.5l0.016 0.5c0 3.866-3.134 7-7 7v-2c1.336 0 2.591-0.52 3.536-1.464 0.182-0.182 0.348-0.375 0.497-0.578-0.179 0.028-0.362 0.043-0.549 0.043zM3.5 10c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5 3.5 1.567 3.5 3.5l0.016 0.5c0 3.866-3.134 7-7 7v-2c1.336 0 2.591-0.52 3.536-1.464 0.182-0.182 0.348-0.375 0.497-0.578-0.179 0.028-0.362 0.043-0.549 0.043z"
+ }
+ }]
+};
+exports.quotesRight = quotesRight;
\ No newline at end of file
diff --git a/dist/icomoon/radioChecked.js b/dist/icomoon/radioChecked.js
new file mode 100644
index 000000000..4d4082f10
--- /dev/null
+++ b/dist/icomoon/radioChecked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.radioChecked = void 0;
+var radioChecked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6zM5 8c0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.657-1.343 3-3 3s-3-1.343-3-3z"
+ }
+ }]
+};
+exports.radioChecked = radioChecked;
\ No newline at end of file
diff --git a/dist/icomoon/radioChecked2.js b/dist/icomoon/radioChecked2.js
new file mode 100644
index 000000000..a82f5b79c
--- /dev/null
+++ b/dist/icomoon/radioChecked2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.radioChecked2 = void 0;
+var radioChecked2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 10c-1.105 0-2-0.895-2-2s0.895-2 2-2c1.105 0 2 0.895 2 2s-0.895 2-2 2z"
+ }
+ }]
+};
+exports.radioChecked2 = radioChecked2;
\ No newline at end of file
diff --git a/dist/icomoon/radioUnchecked.js b/dist/icomoon/radioUnchecked.js
new file mode 100644
index 000000000..4c0c1f4c5
--- /dev/null
+++ b/dist/icomoon/radioUnchecked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.radioUnchecked = void 0;
+var radioUnchecked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14c-3.314 0-6-2.686-6-6s2.686-6 6-6c3.314 0 6 2.686 6 6s-2.686 6-6 6z"
+ }
+ }]
+};
+exports.radioUnchecked = radioUnchecked;
\ No newline at end of file
diff --git a/dist/icomoon/reddit.js b/dist/icomoon/reddit.js
new file mode 100644
index 000000000..a17cf1ada
--- /dev/null
+++ b/dist/icomoon/reddit.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.reddit = void 0;
+var reddit = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 10c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 10c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10.049 12.137c0.258-0.203 0.631-0.159 0.834 0.099s0.159 0.631-0.099 0.834c-0.717 0.565-1.81 0.93-2.783 0.93s-2.066-0.365-2.784-0.93c-0.258-0.203-0.302-0.576-0.099-0.834s0.576-0.302 0.834-0.099c0.413 0.325 1.23 0.675 2.049 0.675s1.636-0.35 2.049-0.675zM16 8c0-1.105-0.895-2-2-2-0.752 0-1.406 0.415-1.748 1.028-1.028-0.562-2.28-0.926-3.645-1.010l1.193-2.68 2.284 0.659c0.206 0.583 0.761 1.002 1.415 1.002 0.828 0 1.5-0.672 1.5-1.5s-0.672-1.5-1.5-1.5c-0.571 0-1.068 0.319-1.321 0.789l-2.545-0.735c-0.285-0.082-0.587 0.058-0.707 0.329l-1.621 3.641c-1.33 0.094-2.551 0.453-3.557 1.004-0.342-0.613-0.996-1.028-1.748-1.028-1.105 0-2 0.895-2 2 0 0.817 0.491 1.52 1.193 1.83-0.126 0.375-0.193 0.767-0.193 1.17 0 2.761 3.134 5 7 5s7-2.239 7-5c0-0.403-0.067-0.795-0.193-1.17 0.703-0.31 1.193-1.013 1.193-1.83zM13.5 2.938c0.311 0 0.563 0.252 0.563 0.563s-0.252 0.563-0.563 0.563-0.563-0.252-0.563-0.563 0.252-0.563 0.563-0.563zM1 8c0-0.551 0.449-1 1-1 0.399 0 0.743 0.234 0.904 0.573-0.523 0.396-0.956 0.854-1.276 1.355-0.368-0.148-0.628-0.508-0.628-0.928zM8 14.813c-3.21 0-5.813-1.707-5.813-3.813s2.602-3.813 5.813-3.813c3.21 0 5.813 1.707 5.813 3.813s-2.602 3.813-5.813 3.813zM14.372 8.928c-0.32-0.502-0.753-0.959-1.276-1.355 0.161-0.338 0.505-0.573 0.904-0.573 0.551 0 1 0.449 1 1 0 0.42-0.26 0.78-0.628 0.928z"
+ }
+ }]
+};
+exports.reddit = reddit;
\ No newline at end of file
diff --git a/dist/icomoon/redo.js b/dist/icomoon/redo.js
new file mode 100644
index 000000000..e15ed554d
--- /dev/null
+++ b/dist/icomoon/redo.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.redo = void 0;
+var redo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 9c0 2.389 1.048 4.534 2.709 6l1.323-1.5c-1.246-1.099-2.031-2.708-2.031-4.5 0-3.314 2.686-6 6-6 1.657 0 3.157 0.672 4.243 1.757l-2.243 2.243h6v-6l-2.343 2.343c-1.448-1.448-3.448-2.343-5.657-2.343-4.418 0-8 3.582-8 8z"
+ }
+ }]
+};
+exports.redo = redo;
\ No newline at end of file
diff --git a/dist/icomoon/redo2.js b/dist/icomoon/redo2.js
new file mode 100644
index 000000000..73c011959
--- /dev/null
+++ b/dist/icomoon/redo2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.redo2 = void 0;
+var redo2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 3.881v-3.881l6 6-6 6v-3.966c-6.98-0.164-6.681 4.747-4.904 7.966-4.386-4.741-3.455-12.337 4.904-12.119z"
+ }
+ }]
+};
+exports.redo2 = redo2;
\ No newline at end of file
diff --git a/dist/icomoon/renren.js b/dist/icomoon/renren.js
new file mode 100644
index 000000000..3cd72471a
--- /dev/null
+++ b/dist/icomoon/renren.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.renren = void 0;
+var renren = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.644 0.166c-3.769 0.634-6.644 3.913-6.644 7.862 0 1.963 0.713 3.759 1.887 5.15 2.791-1.35 4.744-4.406 4.756-7.966v-5.047z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.356 0.166c3.769 0.634 6.644 3.913 6.644 7.862 0 1.963-0.713 3.759-1.887 5.15-2.791-1.35-4.744-4.406-4.756-7.966v-5.047z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.972 10.041c-0.497 2.056-1.981 3.813-3.828 4.981 1.138 0.622 2.441 0.978 3.828 0.978s2.691-0.356 3.828-0.978c-1.847-1.169-3.331-2.925-3.828-4.981z"
+ }
+ }]
+};
+exports.renren = renren;
\ No newline at end of file
diff --git a/dist/icomoon/reply.js b/dist/icomoon/reply.js
new file mode 100644
index 000000000..e8ebc186e
--- /dev/null
+++ b/dist/icomoon/reply.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.reply = void 0;
+var reply = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 12.119v3.881l-6-6 6-6v3.966c6.98 0.164 6.681-4.747 4.904-7.966 4.386 4.741 3.455 12.337-4.904 12.119z"
+ }
+ }]
+};
+exports.reply = reply;
\ No newline at end of file
diff --git a/dist/icomoon/road.js b/dist/icomoon/road.js
new file mode 100644
index 000000000..415e2d0ab
--- /dev/null
+++ b/dist/icomoon/road.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.road = void 0;
+var road = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 16h5l-4-16h-3l0.5 4h-3l0.5-4h-3l-4 16h5l0.5-4h5l0.5 4zM5.75 10l0.5-4h3.5l0.5 4h-4.5z"
+ }
+ }]
+};
+exports.road = road;
\ No newline at end of file
diff --git a/dist/icomoon/rocket.js b/dist/icomoon/rocket.js
new file mode 100644
index 000000000..cceb34b8e
--- /dev/null
+++ b/dist/icomoon/rocket.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rocket = void 0;
+var rocket = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 1l-5 5h-3l-3 4c0 0 3.178-0.885 5.032-0.47l-5.032 6.47 6.592-5.127c0.919 2.104-0.592 5.127-0.592 5.127l4-3v-3l5-5 1-5-5 1z"
+ }
+ }]
+};
+exports.rocket = rocket;
\ No newline at end of file
diff --git a/dist/icomoon/rss.js b/dist/icomoon/rss.js
new file mode 100644
index 000000000..5767f307a
--- /dev/null
+++ b/dist/icomoon/rss.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rss = void 0;
+var rss = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.13 11.733c-1.175 0-2.13 0.958-2.13 2.126 0 1.174 0.955 2.122 2.13 2.122 1.179 0 2.133-0.948 2.133-2.122-0-1.168-0.954-2.126-2.133-2.126zM0.002 5.436v3.067c1.997 0 3.874 0.781 5.288 2.196 1.412 1.411 2.192 3.297 2.192 5.302h3.080c-0-5.825-4.739-10.564-10.56-10.564zM0.006 0v3.068c7.122 0 12.918 5.802 12.918 12.932h3.076c0-8.82-7.176-16-15.994-16z"
+ }
+ }]
+};
+exports.rss = rss;
\ No newline at end of file
diff --git a/dist/icomoon/rss2.js b/dist/icomoon/rss2.js
new file mode 100644
index 000000000..79a4fbadb
--- /dev/null
+++ b/dist/icomoon/rss2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rss2 = void 0;
+var rss2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.359 12.988c-0.75 0-1.359-0.603-1.359-1.353 0-0.744 0.609-1.356 1.359-1.356 0.753 0 1.359 0.613 1.359 1.356 0 0.75-0.609 1.353-1.359 1.353zM7.772 13c0-1.278-0.497-2.481-1.397-3.381-0.903-0.903-2.1-1.4-3.375-1.4v-1.956c3.713 0 6.738 3.022 6.738 6.737h-1.966zM11.244 13c0-4.547-3.697-8.25-8.241-8.25v-1.956c5.625 0 10.203 4.581 10.203 10.206h-1.963z"
+ }
+ }]
+};
+exports.rss2 = rss2;
\ No newline at end of file
diff --git a/dist/icomoon/rtl.js b/dist/icomoon/rtl.js
new file mode 100644
index 000000000..70dc26965
--- /dev/null
+++ b/dist/icomoon/rtl.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rtl = void 0;
+var rtl = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 0c-2.209 0-4 1.791-4 4s1.791 4 4 4v8h2v-14h2v14h2v-14h2v-2h-8zM16 3l-4 4 4 4z"
+ }
+ }]
+};
+exports.rtl = rtl;
\ No newline at end of file
diff --git a/dist/icomoon/sad.js b/dist/icomoon/sad.js
new file mode 100644
index 000000000..912f16d8e
--- /dev/null
+++ b/dist/icomoon/sad.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sad = void 0;
+var sad = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM4.998 12.199l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.413 0.973 4.288 2.427l-1.286 0.772c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699z"
+ }
+ }]
+};
+exports.sad = sad;
\ No newline at end of file
diff --git a/dist/icomoon/sad2.js b/dist/icomoon/sad2.js
new file mode 100644
index 000000000..31b3bd142
--- /dev/null
+++ b/dist/icomoon/sad2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sad2 = void 0;
+var sad2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM11.002 12.199c-0.612-1.018-1.727-1.699-3.002-1.699s-2.389 0.681-3.002 1.699l-1.286-0.772c0.874-1.454 2.467-2.427 4.288-2.427s3.414 0.973 4.288 2.427l-1.286 0.772z"
+ }
+ }]
+};
+exports.sad2 = sad2;
\ No newline at end of file
diff --git a/dist/icomoon/safari.js b/dist/icomoon/safari.js
new file mode 100644
index 000000000..855772488
--- /dev/null
+++ b/dist/icomoon/safari.js
@@ -0,0 +1,209 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.safari = void 0;
+var safari = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM14.975 7.388l-0.016-0.166c0.003 0.056 0.009 0.109 0.016 0.166zM13.881 4.2l-0.113-0.169c0.037 0.056 0.075 0.112 0.113 0.169zM13.447 3.603l-0.069-0.084c0.025 0.028 0.047 0.056 0.069 0.084zM12.478 2.619l-0.084-0.069c0.031 0.025 0.056 0.047 0.084 0.069zM11.969 2.231l-0.169-0.112c0.056 0.038 0.113 0.075 0.169 0.112zM8.778 1.044l-0.169-0.016c0.056 0.003 0.113 0.009 0.169 0.016zM7.388 1.025l-0.169 0.016c0.056-0.003 0.112-0.009 0.169-0.016zM4.2 2.119l-0.169 0.112c0.056-0.038 0.112-0.075 0.169-0.112zM3.603 2.553l-0.081 0.066c0.028-0.022 0.053-0.044 0.081-0.066zM2.619 3.522l-0.069 0.084c0.025-0.028 0.047-0.056 0.069-0.084zM2.231 4.031l-0.112 0.169c0.038-0.056 0.075-0.112 0.112-0.169zM1.044 7.222l-0.016 0.169c0.003-0.056 0.009-0.112 0.016-0.169zM1.025 8.613l0.016 0.169c-0.003-0.056-0.009-0.113-0.016-0.169zM2.119 11.797l0.112 0.169c-0.038-0.053-0.075-0.109-0.112-0.169zM2.25 11.994l1.247-0.834-0.138-0.209-1.247 0.834c-0.566-0.878-0.938-1.887-1.063-2.975l0.747-0.075-0.025-0.25-0.747 0.075c-0.012-0.144-0.019-0.291-0.022-0.438h1.5v-0.25h-1.5c0.003-0.147 0.009-0.291 0.022-0.438l0.747 0.072 0.025-0.25-0.747-0.072c0.125-1.088 0.5-2.097 1.066-2.975l1.247 0.834 0.138-0.209-1.25-0.828c0.084-0.119 0.169-0.237 0.259-0.35l0.578 0.475 0.159-0.194-0.578-0.475c0.094-0.112 0.194-0.219 0.294-0.325l1.059 1.059 0.178-0.178-1.059-1.059c0.106-0.1 0.212-0.2 0.322-0.294l0.475 0.581 0.194-0.159-0.475-0.578c0.116-0.091 0.231-0.178 0.35-0.263l0.834 1.247 0.209-0.138-0.834-1.247c0.878-0.566 1.888-0.938 2.975-1.063l0.075 0.747 0.25-0.025-0.075-0.747c0.144-0.012 0.291-0.019 0.438-0.022v1.5h0.25v-1.5c0.147 0.003 0.291 0.009 0.438 0.022l-0.072 0.747 0.25 0.025 0.072-0.747c1.088 0.125 2.097 0.5 2.975 1.066l-0.834 1.247 0.209 0.138 0.834-1.247c0.119 0.084 0.238 0.169 0.35 0.259l-0.475 0.578 0.194 0.159 0.475-0.578c0.113 0.094 0.219 0.194 0.325 0.294l-0.4 0.391-5.469 3.647-3.647 5.469-0.391 0.391c-0.1-0.106-0.2-0.213-0.294-0.322l0.578-0.475-0.159-0.194-0.578 0.475c-0.091-0.113-0.175-0.231-0.259-0.35zM2.619 12.478c-0.022-0.028-0.044-0.053-0.066-0.081l0.066 0.081zM3.522 13.381l0.081 0.066c-0.028-0.022-0.053-0.044-0.081-0.066zM4.031 13.766l0.169 0.113c-0.056-0.034-0.112-0.072-0.169-0.113zM7.222 14.956l0.169 0.016c-0.056-0.003-0.112-0.009-0.169-0.016zM8.613 14.975l0.166-0.016c-0.056 0.003-0.109 0.009-0.166 0.016zM11.8 13.881l0.169-0.113c-0.056 0.037-0.113 0.075-0.169 0.113zM12.397 13.447l0.084-0.069c-0.028 0.025-0.056 0.047-0.084 0.069zM12.944 12.956l0.012-0.012c-0.003 0.003-0.009 0.009-0.012 0.012zM13.381 12.478l0.069-0.084c-0.025 0.028-0.047 0.056-0.069 0.084zM13.491 12.344l-0.578-0.475-0.159 0.194 0.578 0.475c-0.094 0.113-0.194 0.219-0.294 0.325l-1.059-1.059-0.178 0.178 1.059 1.059c-0.106 0.1-0.213 0.2-0.322 0.294l-0.475-0.581-0.194 0.159 0.475 0.578c-0.116 0.091-0.231 0.178-0.35 0.262l-0.834-1.247-0.209 0.137 0.834 1.247c-0.878 0.566-1.887 0.938-2.975 1.063l-0.075-0.747-0.25 0.025 0.075 0.747c-0.144 0.012-0.291 0.019-0.438 0.022v-1.5h-0.25v1.5c-0.147-0.003-0.291-0.009-0.438-0.022l0.072-0.747-0.25-0.025-0.072 0.747c-1.088-0.125-2.097-0.5-2.975-1.066l0.834-1.247-0.209-0.137-0.828 1.247c-0.119-0.084-0.237-0.169-0.35-0.259l0.475-0.578-0.194-0.159-0.475 0.578c-0.112-0.094-0.219-0.194-0.325-0.294l0.394-0.391 5.469-3.647 3.647-5.469 0.391-0.391c0.1 0.106 0.2 0.212 0.294 0.322l-0.578 0.475 0.159 0.194 0.578-0.475c0.091 0.116 0.178 0.231 0.262 0.35l-1.247 0.834 0.137 0.209 1.247-0.834c0.566 0.878 0.938 1.888 1.063 2.975l-0.747 0.075 0.025 0.25 0.747-0.075c0.012 0.144 0.019 0.291 0.022 0.438h-1.5v0.25h1.5c-0.003 0.147-0.009 0.291-0.022 0.438l-0.747-0.072-0.025 0.25 0.747 0.072c-0.125 1.088-0.5 2.097-1.066 2.975l-1.247-0.834-0.137 0.209 1.247 0.834c-0.081 0.113-0.169 0.228-0.259 0.344zM14.975 8.609c-0.006 0.056-0.009 0.113-0.016 0.169l0.016-0.169zM13.881 11.8c-0.037 0.056-0.075 0.113-0.113 0.169l0.113-0.169z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.758 1.111l0.293 1.471-0.245 0.049-0.293-1.471 0.245-0.049z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.245 14.89l-0.293-1.471 0.245-0.049 0.293 1.471-0.245 0.049z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.088 1.264l0.218 0.718-0.239 0.073-0.218-0.718 0.239-0.073z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.913 14.733l-0.218-0.718 0.239-0.073 0.218 0.718-0.239 0.073z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.438 1.486l0.574 1.386-0.231 0.096-0.574-1.386 0.231-0.096z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.564 14.515l-0.574-1.386 0.231-0.096 0.574 1.386-0.231 0.096z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.588 1.885l0.22-0.118 0.354 0.661-0.22 0.118-0.354-0.661z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.408 14.114l-0.22 0.118-0.354-0.661 0.22-0.118 0.354 0.661z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.884 4.591l0.662 0.353-0.118 0.221-0.661-0.353 0.118-0.221z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.113 11.409l-0.662-0.353 0.118-0.22 0.662 0.353-0.118 0.22z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.872 6.010l-1.386-0.574 0.096-0.231 1.386 0.574-0.096 0.231z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.13 9.989l1.386 0.574-0.096 0.231-1.386-0.574 0.096-0.231z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.337 5.85l0.718 0.218-0.073 0.239-0.718-0.218 0.073-0.239z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.661 10.151l-0.718-0.218 0.073-0.239 0.718 0.218-0.073 0.239z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.157 6.512l1.471 0.293-0.049 0.245-1.471-0.293 0.049-0.245z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.84 9.488l-1.471-0.293 0.049-0.245 1.471 0.293-0.049 0.245z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.109 9.243l1.471-0.293 0.049 0.245-1.471 0.293-0.049-0.245z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.888 6.757l-1.471 0.293-0.049-0.245 1.471-0.293 0.049 0.245z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.265 9.914l0.718-0.218 0.073 0.239-0.718 0.218-0.073-0.239z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.734 6.089l-0.718 0.218-0.073-0.239 0.718-0.218 0.073 0.239z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.58 10.796l-0.096-0.231 1.386-0.574 0.096 0.231-1.386 0.574z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.419 5.207l0.096 0.231-1.386 0.574-0.096-0.231 1.386-0.574z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.888 11.41l-0.118-0.22 0.661-0.354 0.118 0.22-0.661 0.354z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.116 4.59l0.118 0.22-0.661 0.354-0.118-0.22 0.661-0.354z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.811 14.232l-0.22-0.118 0.354-0.661 0.22 0.118-0.354 0.661z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.189 1.767l0.22 0.118-0.353 0.661-0.22-0.118 0.353-0.661z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.207 14.419l0.574-1.386 0.231 0.096-0.574 1.386-0.231-0.096z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.795 1.58l-0.574 1.386-0.231-0.096 0.574-1.386 0.231 0.096z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.088 14.735l-0.239-0.073 0.218-0.718 0.239 0.073-0.218 0.718z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.912 1.264l0.239 0.073-0.218 0.718-0.239-0.073 0.218-0.718z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.757 14.888l-0.245-0.049 0.293-1.471 0.245 0.049-0.293 1.471z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.243 1.109l0.245 0.049-0.293 1.471-0.245-0.049 0.293-1.471z"
+ }
+ }]
+};
+exports.safari = safari;
\ No newline at end of file
diff --git a/dist/icomoon/scissors.js b/dist/icomoon/scissors.js
new file mode 100644
index 000000000..258b1f47a
--- /dev/null
+++ b/dist/icomoon/scissors.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.scissors = void 0;
+var scissors = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.279 10.62c-1.042-1.628-2.829-2.345-3.992-1.601-0.1 0.064-0.193 0.138-0.277 0.218l-1.241-1.942 2.867-4.5c0.235-0.433 0.321-0.949 0.207-1.468-0.109-0.496-0.383-0.913-0.752-1.207l-0.192-0.122-3.398 5.314-3.398-5.314-0.192 0.122c-0.369 0.294-0.643 0.711-0.752 1.207-0.114 0.519-0.027 1.035 0.207 1.468l2.867 4.5-1.241 1.942c-0.085-0.081-0.177-0.154-0.277-0.218-1.163-0.744-2.95-0.028-3.992 1.601s-0.944 3.551 0.219 4.296c1.163 0.744 2.95 0.028 3.992-1.601l2.567-4.029 2.567 4.029c1.042 1.628 2.829 2.345 3.992 1.601s1.261-2.667 0.219-4.296zM3.67 12.507c-0.469 0.733-1.071 1.089-1.478 1.179-0 0-0 0-0 0-0.133 0.029-0.317 0.047-0.443-0.033-0.139-0.089-0.231-0.324-0.247-0.629-0.025-0.494 0.151-1.076 0.483-1.594 0.469-0.733 1.071-1.089 1.478-1.179 0.133-0.029 0.317-0.047 0.443 0.033 0.139 0.089 0.231 0.324 0.247 0.629 0.025 0.495-0.151 1.076-0.483 1.594zM7.5 8c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM13.498 13.023c-0.016 0.305-0.108 0.54-0.247 0.629-0.125 0.080-0.31 0.062-0.443 0.033 0 0 0 0-0 0-0.407-0.089-1.009-0.446-1.478-1.179-0.332-0.519-0.508-1.1-0.483-1.594 0.016-0.305 0.108-0.54 0.247-0.629 0.125-0.080 0.31-0.062 0.443-0.033 0.407 0.089 1.009 0.446 1.478 1.179 0.332 0.519 0.508 1.1 0.483 1.594z"
+ }
+ }]
+};
+exports.scissors = scissors;
\ No newline at end of file
diff --git a/dist/icomoon/search.js b/dist/icomoon/search.js
new file mode 100644
index 000000000..fa98dd216
--- /dev/null
+++ b/dist/icomoon/search.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.search = void 0;
+var search = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4z"
+ }
+ }]
+};
+exports.search = search;
\ No newline at end of file
diff --git a/dist/icomoon/section.js b/dist/icomoon/section.js
new file mode 100644
index 000000000..2d7af0046
--- /dev/null
+++ b/dist/icomoon/section.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.section = void 0;
+var section = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.749 16c-0.771 0-1.424-0.225-1.939-0.669-0.519-0.447-0.782-0.969-0.782-1.552 0-0.283 0.103-0.527 0.307-0.726 0.207-0.202 0.465-0.309 0.748-0.309 0.281 0 0.534 0.1 0.732 0.29 0.195 0.187 0.294 0.435 0.294 0.736 0 0.177-0.029 0.372-0.086 0.58-0.056 0.206-0.068 0.312-0.068 0.364 0 0.058 0.014 0.126 0.121 0.199 0.199 0.138 0.439 0.204 0.732 0.204 0.353 0 0.667-0.123 0.962-0.375 0.29-0.249 0.431-0.505 0.431-0.782 0-0.308-0.082-0.575-0.252-0.816-0.287-0.402-0.826-0.874-1.603-1.401-1.248-0.835-2.079-1.559-2.54-2.211-0.358-0.511-0.539-1.061-0.539-1.636 0-0.579 0.19-1.155 0.564-1.713 0.32-0.477 0.794-0.908 1.41-1.283-0.33-0.355-0.577-0.689-0.736-0.995-0.201-0.387-0.303-0.787-0.303-1.189 0-0.747 0.295-1.393 0.878-1.92s1.31-0.795 2.161-0.795c0.783 0 1.441 0.22 1.956 0.654 0.521 0.439 0.785 0.952 0.785 1.524 0 0.292-0.109 0.553-0.324 0.776l-0.004 0.004c-0.125 0.124-0.353 0.271-0.735 0.271-0.299 0-0.561-0.098-0.758-0.283-0.196-0.184-0.296-0.405-0.296-0.656 0-0.108 0.027-0.272 0.084-0.515 0.028-0.115 0.042-0.221 0.042-0.316 0-0.162-0.058-0.285-0.183-0.39-0.129-0.108-0.314-0.161-0.565-0.161-0.389 0-0.708 0.118-0.975 0.361s-0.399 0.533-0.399 0.883c0 0.315 0.071 0.574 0.212 0.771 0.267 0.374 0.731 0.778 1.378 1.201 1.315 0.853 2.233 1.636 2.727 2.325 0.365 0.518 0.549 1.068 0.549 1.637 0 0.572-0.186 1.148-0.552 1.714-0.316 0.487-0.793 0.926-1.42 1.308 0.347 0.367 0.591 0.688 0.743 0.977 0.189 0.359 0.284 0.751 0.284 1.165 0 0.776-0.296 1.435-0.879 1.96s-1.31 0.79-2.161 0.79zM6.975 5.568c-0.753 0.452-1.12 0.972-1.12 1.583 0 0.356 0.102 0.674 0.31 0.973 0.311 0.436 0.926 0.97 1.825 1.583 0.381 0.259 0.724 0.511 1.025 0.751 0.767-0.461 1.14-0.974 1.14-1.565 0-0.322-0.127-0.668-0.378-1.030-0.263-0.378-0.826-0.872-1.674-1.467-0.443-0.306-0.821-0.583-1.128-0.827z"
+ }
+ }]
+};
+exports.section = section;
\ No newline at end of file
diff --git a/dist/icomoon/share.js b/dist/icomoon/share.js
new file mode 100644
index 000000000..27dedd77b
--- /dev/null
+++ b/dist/icomoon/share.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.share = void 0;
+var share = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 10c0 0 0.919-3 6-3v3l6-4-6-4v3c-4 0-6 2.495-6 5zM11 12h-9v-6h1.967c0.158-0.186 0.327-0.365 0.508-0.534 0.687-0.644 1.509-1.135 2.439-1.466h-6.914v10h13v-4.197l-2 1.333v0.864z"
+ }
+ }]
+};
+exports.share = share;
\ No newline at end of file
diff --git a/dist/icomoon/share2.js b/dist/icomoon/share2.js
new file mode 100644
index 000000000..297cbc2a5
--- /dev/null
+++ b/dist/icomoon/share2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.share2 = void 0;
+var share2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 11c-0.706 0-1.342 0.293-1.797 0.763l-6.734-3.367c0.021-0.129 0.032-0.261 0.032-0.396s-0.011-0.267-0.032-0.396l6.734-3.367c0.455 0.47 1.091 0.763 1.797 0.763 1.381 0 2.5-1.119 2.5-2.5s-1.119-2.5-2.5-2.5-2.5 1.119-2.5 2.5c0 0.135 0.011 0.267 0.031 0.396l-6.734 3.367c-0.455-0.47-1.091-0.763-1.797-0.763-1.381 0-2.5 1.119-2.5 2.5s1.119 2.5 2.5 2.5c0.706 0 1.343-0.293 1.797-0.763l6.734 3.367c-0.021 0.129-0.031 0.261-0.031 0.396 0 1.381 1.119 2.5 2.5 2.5s2.5-1.119 2.5-2.5c0-1.381-1.119-2.5-2.5-2.5z"
+ }
+ }]
+};
+exports.share2 = share2;
\ No newline at end of file
diff --git a/dist/icomoon/shield.js b/dist/icomoon/shield.js
new file mode 100644
index 000000000..4b95ed50d
--- /dev/null
+++ b/dist/icomoon/shield.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shield = void 0;
+var shield = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 0l-7 2-7-2c0 0-0.070 0.808 0 2l7 2.189 7-2.189c0.070-1.192 0-2 0-2zM1.128 3.049c0.375 3.917 1.773 10.504 6.872 12.951 5.099-2.448 6.497-9.034 6.872-12.951l-6.872 2.584-6.872-2.584z"
+ }
+ }]
+};
+exports.shield = shield;
\ No newline at end of file
diff --git a/dist/icomoon/shift.js b/dist/icomoon/shift.js
new file mode 100644
index 000000000..5ecd01797
--- /dev/null
+++ b/dist/icomoon/shift.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shift = void 0;
+var shift = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.5 14h-5c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-2c-0.202 0-0.385-0.122-0.462-0.309s-0.035-0.402 0.108-0.545l5-5c0.195-0.195 0.512-0.195 0.707 0l5 5c0.143 0.143 0.186 0.358 0.108 0.545s-0.26 0.309-0.462 0.309h-2v5.5c0 0.276-0.224 0.5-0.5 0.5zM6 13h4v-5.5c0-0.276 0.224-0.5 0.5-0.5h1.293l-3.793-3.793-3.793 3.793h1.293c0.276 0 0.5 0.224 0.5 0.5v5.5z"
+ }
+ }]
+};
+exports.shift = shift;
\ No newline at end of file
diff --git a/dist/icomoon/shocked.js b/dist/icomoon/shocked.js
new file mode 100644
index 000000000..9c8d6cea9
--- /dev/null
+++ b/dist/icomoon/shocked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shocked = void 0;
+var shocked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM6 11c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM4 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5z"
+ }
+ }]
+};
+exports.shocked = shocked;
\ No newline at end of file
diff --git a/dist/icomoon/shocked2.js b/dist/icomoon/shocked2.js
new file mode 100644
index 000000000..c454bd727
--- /dev/null
+++ b/dist/icomoon/shocked2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shocked2 = void 0;
+var shocked2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 7c-0.552 0-1-0.672-1-1.5s0.448-1.5 1-1.5 1 0.672 1 1.5-0.448 1.5-1 1.5zM8 13c-1.105 0-2-0.895-2-2s0.895-2 2-2c1.105 0 2 0.895 2 2s-0.895 2-2 2zM11 7c-0.552 0-1-0.672-1-1.5s0.448-1.5 1-1.5 1 0.672 1 1.5-0.448 1.5-1 1.5z"
+ }
+ }]
+};
+exports.shocked2 = shocked2;
\ No newline at end of file
diff --git a/dist/icomoon/shrink.js b/dist/icomoon/shrink.js
new file mode 100644
index 000000000..a87df44ee
--- /dev/null
+++ b/dist/icomoon/shrink.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shrink = void 0;
+var shrink = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 7h6.5l-2.5-2.5 3-3-1.5-1.5-3 3-2.5-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 9v6.5l2.5-2.5 3 3 1.5-1.5-3-3 2.5-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9h-6.5l2.5 2.5-3 3 1.5 1.5 3-3 2.5 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 7v-6.5l-2.5 2.5-3-3-1.5 1.5 3 3-2.5 2.5z"
+ }
+ }]
+};
+exports.shrink = shrink;
\ No newline at end of file
diff --git a/dist/icomoon/shrink2.js b/dist/icomoon/shrink2.js
new file mode 100644
index 000000000..8211b0b42
--- /dev/null
+++ b/dist/icomoon/shrink2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shrink2 = void 0;
+var shrink2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9v6.5l-2.5-2.5-3 3-1.5-1.5 3-3-2.5-2.5zM16 1.5l-3 3 2.5 2.5h-6.5v-6.5l2.5 2.5 3-3z"
+ }
+ }]
+};
+exports.shrink2 = shrink2;
\ No newline at end of file
diff --git a/dist/icomoon/shuffle.js b/dist/icomoon/shuffle.js
new file mode 100644
index 000000000..214b1410a
--- /dev/null
+++ b/dist/icomoon/shuffle.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shuffle = void 0;
+var shuffle = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 11h-1.586l-2.5-2.5 2.5-2.5h1.586v2.5l3.5-3.5-3.5-3.5v2.5h-2c-0.265 0-0.52 0.105-0.707 0.293l-2.793 2.793-2.793-2.793c-0.188-0.188-0.442-0.293-0.707-0.293h-3v2h2.586l2.5 2.5-2.5 2.5h-2.586v2h3c0.265 0 0.52-0.105 0.707-0.293l2.793-2.793 2.793 2.793c0.188 0.188 0.442 0.293 0.707 0.293h2v2.5l3.5-3.5-3.5-3.5v2.5z"
+ }
+ }]
+};
+exports.shuffle = shuffle;
\ No newline at end of file
diff --git a/dist/icomoon/sigma.js b/dist/icomoon/sigma.js
new file mode 100644
index 000000000..5d7926918
--- /dev/null
+++ b/dist/icomoon/sigma.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sigma = void 0;
+var sigma = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.713 11.48l0.694-1.48h0.594l-1 6h-15v-1.16l5.18-6.113-5.18-5.18v-3.547h15.313l0.688 4h-0.537l-0.293-0.607c-0.552-1.146-0.967-1.393-2.17-1.393h-10.344l5.517 5.516-4.647 5.483h8.474c1.813 0 2.291-0.65 2.713-1.52z"
+ }
+ }]
+};
+exports.sigma = sigma;
\ No newline at end of file
diff --git a/dist/icomoon/sinaWeibo.js b/dist/icomoon/sinaWeibo.js
new file mode 100644
index 000000000..593e73629
--- /dev/null
+++ b/dist/icomoon/sinaWeibo.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sinaWeibo = void 0;
+var sinaWeibo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.722 14.031c-2.65 0.262-4.938-0.938-5.109-2.675-0.172-1.741 1.837-3.359 4.484-3.622 2.65-0.263 4.938 0.938 5.106 2.675 0.175 1.741-1.834 3.362-4.481 3.622zM12.019 8.259c-0.225-0.069-0.381-0.113-0.262-0.409 0.256-0.644 0.281-1.197 0.003-1.594-0.519-0.741-1.941-0.703-3.569-0.019 0 0-0.513 0.222-0.381-0.181 0.25-0.806 0.213-1.478-0.178-1.869-0.884-0.884-3.234 0.034-5.25 2.050-1.506 1.503-2.381 3.106-2.381 4.491 0 2.644 3.394 4.253 6.713 4.253 4.35 0 7.247-2.528 7.247-4.534 0-1.216-1.022-1.903-1.941-2.188z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.909 3.416c-1.050-1.166-2.6-1.609-4.031-1.306v0c-0.331 0.072-0.541 0.397-0.469 0.725 0.072 0.331 0.394 0.541 0.725 0.469 1.019-0.216 2.119 0.1 2.866 0.928s0.95 1.956 0.628 2.944v0c-0.103 0.322 0.072 0.666 0.394 0.772 0.322 0.103 0.666-0.072 0.772-0.394v-0.003c0.45-1.381 0.166-2.969-0.884-4.134z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.294 4.875c-0.512-0.569-1.269-0.784-1.963-0.634-0.284 0.059-0.466 0.344-0.406 0.628 0.063 0.284 0.344 0.466 0.625 0.403v0c0.341-0.072 0.709 0.034 0.959 0.309 0.25 0.278 0.319 0.656 0.209 0.987v0c-0.088 0.275 0.063 0.575 0.341 0.666 0.278 0.088 0.575-0.063 0.666-0.341 0.219-0.678 0.081-1.453-0.431-2.019z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.869 10.884c-0.094 0.159-0.297 0.234-0.456 0.169-0.159-0.063-0.206-0.244-0.116-0.397 0.094-0.153 0.291-0.228 0.447-0.169 0.156 0.056 0.213 0.234 0.125 0.397zM6.022 11.966c-0.256 0.409-0.806 0.588-1.219 0.4-0.406-0.184-0.528-0.659-0.272-1.059 0.253-0.397 0.784-0.575 1.194-0.403 0.416 0.178 0.55 0.65 0.297 1.063zM6.984 9.072c-1.259-0.328-2.684 0.3-3.231 1.409-0.559 1.131-0.019 2.391 1.253 2.803 1.319 0.425 2.875-0.228 3.416-1.447 0.534-1.197-0.131-2.425-1.438-2.766z"
+ }
+ }]
+};
+exports.sinaWeibo = sinaWeibo;
\ No newline at end of file
diff --git a/dist/icomoon/skype.js b/dist/icomoon/skype.js
new file mode 100644
index 000000000..ae6a93ac3
--- /dev/null
+++ b/dist/icomoon/skype.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skype = void 0;
+var skype = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.65 0.584c-0.025-0.016-0.053-0.028-0.078-0.041-0.028 0.006-0.053 0.009-0.081 0.016l0.159 0.025z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.575 6.578c-0.006 0.028-0.009 0.056-0.012 0.081 0.016 0.025 0.025 0.050 0.041 0.075l-0.028-0.156z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.419 9.416c0.006-0.028 0.009-0.056 0.016-0.084-0.016-0.025-0.025-0.050-0.041-0.075l0.025 0.159z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.25 15.359c0.025 0.016 0.053 0.028 0.078 0.041 0.028-0.006 0.056-0.009 0.084-0.012l-0.162-0.028z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.434 9.331c-0.006 0.028-0.009 0.056-0.016 0.084l-0.028-0.162c0.016 0.028 0.028 0.053 0.044 0.078 0.081-0.45 0.125-0.909 0.125-1.369 0-1.019-0.2-2.009-0.594-2.941-0.381-0.9-0.925-1.709-1.619-2.403s-1.503-1.238-2.4-1.619c-0.931-0.394-1.922-0.594-2.941-0.594-0.481 0-0.963 0.044-1.431 0.134 0 0-0.003 0-0.003 0 0.025 0.012 0.053 0.025 0.078 0.041l-0.159-0.025c0.028-0.006 0.053-0.009 0.081-0.016-0.644-0.341-1.366-0.525-2.097-0.525-1.194 0-2.319 0.466-3.163 1.309s-1.309 1.969-1.309 3.163c0 0.759 0.197 1.509 0.563 2.169 0.006-0.028 0.009-0.056 0.012-0.081l0.028 0.159c-0.016-0.025-0.028-0.050-0.041-0.075-0.075 0.428-0.112 0.866-0.112 1.303 0 1.019 0.2 2.009 0.594 2.941 0.381 0.9 0.925 1.706 1.619 2.4s1.503 1.238 2.403 1.619c0.931 0.394 1.922 0.594 2.941 0.594 0.444 0 0.887-0.041 1.322-0.119-0.025-0.016-0.050-0.028-0.078-0.041l0.162 0.028c-0.028 0.006-0.056 0.009-0.084 0.012 0.669 0.378 1.428 0.581 2.2 0.581 1.194 0 2.319-0.466 3.162-1.309s1.309-1.969 1.309-3.162c-0.003-0.759-0.2-1.509-0.569-2.175zM8.034 12.591c-2.684 0-3.884-1.319-3.884-2.309 0-0.506 0.375-0.863 0.891-0.863 1.15 0 0.85 1.65 2.994 1.65 1.097 0 1.703-0.597 1.703-1.206 0-0.366-0.181-0.772-0.903-0.95l-2.388-0.597c-1.922-0.481-2.272-1.522-2.272-2.5 0-2.028 1.909-2.791 3.703-2.791 1.653 0 3.6 0.913 3.6 2.131 0 0.522-0.453 0.825-0.969 0.825-0.981 0-0.8-1.356-2.775-1.356-0.981 0-1.522 0.444-1.522 1.078s0.775 0.838 1.447 0.991l1.769 0.394c1.934 0.431 2.425 1.563 2.425 2.625 0 1.647-1.266 2.878-3.819 2.878z"
+ }
+ }]
+};
+exports.skype = skype;
\ No newline at end of file
diff --git a/dist/icomoon/sleepy.js b/dist/icomoon/sleepy.js
new file mode 100644
index 000000000..dfd5bf7af
--- /dev/null
+++ b/dist/icomoon/sleepy.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sleepy = void 0;
+var sleepy = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 10.5c0 1.381-0.895 2.5-2 2.5s-2-1.119-2-2.5c0-1.381 0.895-2.5 2-2.5s2 1.119 2 2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 5.313c-0.128 0-0.256-0.049-0.354-0.146-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 5.313c-0.128 0-0.256-0.049-0.354-0.146-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146z"
+ }
+ }]
+};
+exports.sleepy = sleepy;
\ No newline at end of file
diff --git a/dist/icomoon/sleepy2.js b/dist/icomoon/sleepy2.js
new file mode 100644
index 000000000..6514eadb4
--- /dev/null
+++ b/dist/icomoon/sleepy2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sleepy2 = void 0;
+var sleepy2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM4.854 5.166c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.302-0.302-0.991-0.302-1.293 0zM8 13c-1.105 0-2-1.119-2-2.5s0.895-2.5 2-2.5 2 1.119 2 2.5-0.895 2.5-2 2.5zM11.854 5.166c-0.098 0.098-0.226 0.146-0.354 0.146s-0.256-0.049-0.354-0.146c-0.302-0.302-0.991-0.302-1.293 0-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707c0.696-0.696 2.011-0.696 2.707 0 0.195 0.195 0.195 0.512 0 0.707z"
+ }
+ }]
+};
+exports.sleepy2 = sleepy2;
\ No newline at end of file
diff --git a/dist/icomoon/smile.js b/dist/icomoon/smile.js
new file mode 100644
index 000000000..52a6025dd
--- /dev/null
+++ b/dist/icomoon/smile.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.smile = void 0;
+var smile = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.002 9.801l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427s-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699z"
+ }
+ }]
+};
+exports.smile = smile;
\ No newline at end of file
diff --git a/dist/icomoon/smile2.js b/dist/icomoon/smile2.js
new file mode 100644
index 000000000..94e01b6f7
--- /dev/null
+++ b/dist/icomoon/smile2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.smile2 = void 0;
+var smile2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM8 13c-1.82 0-3.413-0.973-4.288-2.427l1.286-0.772c0.612 1.018 1.727 1.699 3.002 1.699s2.389-0.681 3.002-1.699l1.286 0.772c-0.874 1.454-2.467 2.427-4.288 2.427z"
+ }
+ }]
+};
+exports.smile2 = smile2;
\ No newline at end of file
diff --git a/dist/icomoon/sortAlphaAsc.js b/dist/icomoon/sortAlphaAsc.js
new file mode 100644
index 000000000..389b5b4f9
--- /dev/null
+++ b/dist/icomoon/sortAlphaAsc.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortAlphaAsc = void 0;
+var sortAlphaAsc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 16h-4c-0.184 0-0.354-0.101-0.441-0.264s-0.077-0.36 0.025-0.513l3.482-5.223h-3.066c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h4c0.184 0 0.354 0.101 0.441 0.264s0.077 0.36-0.025 0.513l-3.482 5.223h3.066c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.947 6.276l-3-6c-0.085-0.169-0.258-0.276-0.447-0.276s-0.363 0.107-0.447 0.276l-3 6c-0.123 0.247-0.023 0.547 0.224 0.671 0.072 0.036 0.148 0.053 0.223 0.053 0.183 0 0.36-0.101 0.448-0.277l0.862-1.724h3.382l0.862 1.724c0.123 0.247 0.424 0.347 0.671 0.224s0.347-0.424 0.224-0.671zM11.309 4l1.191-2.382 1.191 2.382h-2.382z"
+ }
+ }]
+};
+exports.sortAlphaAsc = sortAlphaAsc;
\ No newline at end of file
diff --git a/dist/icomoon/sortAlphaDesc.js b/dist/icomoon/sortAlphaDesc.js
new file mode 100644
index 000000000..eba93ff89
--- /dev/null
+++ b/dist/icomoon/sortAlphaDesc.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortAlphaDesc = void 0;
+var sortAlphaDesc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 7h-4c-0.184 0-0.354-0.101-0.441-0.264s-0.077-0.36 0.025-0.513l3.482-5.223h-3.066c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h4c0.184 0 0.354 0.102 0.441 0.264s0.077 0.36-0.025 0.513l-3.482 5.223h3.066c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.947 15.276l-3-6c-0.085-0.169-0.258-0.276-0.447-0.276s-0.363 0.107-0.447 0.276l-3 6c-0.123 0.247-0.023 0.547 0.224 0.671 0.072 0.036 0.148 0.053 0.223 0.053 0.183 0 0.36-0.101 0.448-0.277l0.862-1.724h3.382l0.862 1.724c0.123 0.247 0.424 0.347 0.671 0.224s0.347-0.424 0.224-0.671zM11.309 13l1.191-2.382 1.191 2.382h-2.382z"
+ }
+ }]
+};
+exports.sortAlphaDesc = sortAlphaDesc;
\ No newline at end of file
diff --git a/dist/icomoon/sortAmountAsc.js b/dist/icomoon/sortAmountAsc.js
new file mode 100644
index 000000000..78020d90b
--- /dev/null
+++ b/dist/icomoon/sortAmountAsc.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortAmountAsc = void 0;
+var sortAmountAsc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9h9v2h-9v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 6h7v2h-7v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 3h5v2h-5v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 0h3v2h-3v-2z"
+ }
+ }]
+};
+exports.sortAmountAsc = sortAmountAsc;
\ No newline at end of file
diff --git a/dist/icomoon/sortAmountDesc.js b/dist/icomoon/sortAmountDesc.js
new file mode 100644
index 000000000..d5dc64501
--- /dev/null
+++ b/dist/icomoon/sortAmountDesc.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortAmountDesc = void 0;
+var sortAmountDesc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 0h9v2h-9v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 3h7v2h-7v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 6h5v2h-5v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9h3v2h-3v-2z"
+ }
+ }]
+};
+exports.sortAmountDesc = sortAmountDesc;
\ No newline at end of file
diff --git a/dist/icomoon/sortNumbericDesc.js b/dist/icomoon/sortNumbericDesc.js
new file mode 100644
index 000000000..77889d3ac
--- /dev/null
+++ b/dist/icomoon/sortNumbericDesc.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortNumbericDesc = void 0;
+var sortNumbericDesc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 16c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-0.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h1c0.276 0 0.5 0.224 0.5 0.5v6c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-3c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h2.5v2h-2.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-6c0-0.276-0.224-0.5-0.5-0.5zM12 1h2v2h-2v-2z"
+ }
+ }]
+};
+exports.sortNumbericDesc = sortNumbericDesc;
\ No newline at end of file
diff --git a/dist/icomoon/sortNumericAsc.js b/dist/icomoon/sortNumericAsc.js
new file mode 100644
index 000000000..2d6c88771
--- /dev/null
+++ b/dist/icomoon/sortNumericAsc.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sortNumericAsc = void 0;
+var sortNumericAsc = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 12v-12h-2v12h-2.5l3.5 3.5 3.5-3.5h-2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 7c-0.276 0-0.5-0.224-0.5-0.5v-5.5h-0.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h1c0.276 0 0.5 0.224 0.5 0.5v6c0 0.276-0.224 0.5-0.5 0.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 9h-3c-0.276 0-0.5 0.224-0.5 0.5v3c0 0.276 0.224 0.5 0.5 0.5h2.5v2h-2.5c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h3c0.276 0 0.5-0.224 0.5-0.5v-6c0-0.276-0.224-0.5-0.5-0.5zM12 10h2v2h-2v-2z"
+ }
+ }]
+};
+exports.sortNumericAsc = sortNumericAsc;
\ No newline at end of file
diff --git a/dist/icomoon/soundcloud.js b/dist/icomoon/soundcloud.js
new file mode 100644
index 000000000..1f4583c86
--- /dev/null
+++ b/dist/icomoon/soundcloud.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.soundcloud = void 0;
+var soundcloud = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.937 8.034c-0.283 0-0.552 0.055-0.798 0.154-0.164-1.787-1.723-3.188-3.625-3.188-0.465 0-0.917 0.088-1.317 0.237-0.156 0.058-0.197 0.117-0.197 0.233v6.292c0 0.121 0.098 0.222 0.221 0.234 0.005 0.001 5.68 0.003 5.717 0.003 1.139 0 2.062-0.888 2.062-1.983s-0.924-1.983-2.063-1.983zM6.25 12h0.5l0.25-3.503-0.25-3.497h-0.5l-0.25 3.497zM4.75 12h-0.5l-0.25-2.543 0.25-2.457h0.5l0.25 2.5zM2.25 12h0.5l0.25-2-0.25-2h-0.5l-0.25 2zM0.25 11h0.5l0.25-1-0.25-1h-0.5l-0.25 1z"
+ }
+ }]
+};
+exports.soundcloud = soundcloud;
\ No newline at end of file
diff --git a/dist/icomoon/soundcloud2.js b/dist/icomoon/soundcloud2.js
new file mode 100644
index 000000000..e66174191
--- /dev/null
+++ b/dist/icomoon/soundcloud2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.soundcloud2 = void 0;
+var soundcloud2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM2.75 11h-0.5l-0.25-1.5 0.25-1.5h0.5l0.25 1.5-0.25 1.5zM4.75 11h-0.5l-0.25-2 0.25-2h0.5l0.25 2-0.25 2zM6.75 11h-0.5l-0.25-3 0.25-3h0.5l0.25 3-0.25 3zM12.894 11c-0.031 0-4.706-0.003-4.709-0.003-0.1-0.009-0.181-0.097-0.184-0.2v-5.394c0-0.1 0.034-0.15 0.162-0.2 0.331-0.128 0.703-0.203 1.088-0.203 1.566 0 2.85 1.2 2.987 2.734 0.203-0.084 0.425-0.131 0.656-0.131 0.938 0 1.7 0.762 1.7 1.7s-0.762 1.697-1.7 1.697z"
+ }
+ }]
+};
+exports.soundcloud2 = soundcloud2;
\ No newline at end of file
diff --git a/dist/icomoon/spades.js b/dist/icomoon/spades.js
new file mode 100644
index 000000000..d47790de4
--- /dev/null
+++ b/dist/icomoon/spades.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spades = void 0;
+var spades = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.775 5.44c-3.024-2.248-4.067-4.047-4.774-5.44v0c-0 0-0-0-0-0v0c-0.708 1.393-1.75 3.192-4.774 5.44-5.157 3.833-0.303 9.182 3.965 6.238-0.278 1.827-1.227 3.159-2.191 3.733v0.59h6v-0.59c-0.964-0.574-1.913-1.906-2.191-3.733 4.268 2.944 9.122-2.405 3.965-6.238z"
+ }
+ }]
+};
+exports.spades = spades;
\ No newline at end of file
diff --git a/dist/icomoon/spellCheck.js b/dist/icomoon/spellCheck.js
new file mode 100644
index 000000000..cd5e78868
--- /dev/null
+++ b/dist/icomoon/spellCheck.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spellCheck = void 0;
+var spellCheck = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 4h2v3h1v-6c0-0.55-0.45-1-1-1h-2c-0.55 0-1 0.45-1 1v6h1v-3zM2 1h2v2h-2v-2zM15 1v-1h-3c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h3v-1h-3v-5h3zM10 2.5v-1.5c0-0.55-0.45-1-1-1h-3v7h3c0.55 0 1-0.45 1-1v-1.5c0-0.55-0.137-1-0.688-1 0.55 0 0.688-0.45 0.688-1zM9 6h-2v-2h2v2zM9 3h-2v-2h2v2zM13 9l-6.5 7-3.5-4.5 1.281-1.094 2.219 2.313 5.5-4.719z"
+ }
+ }]
+};
+exports.spellCheck = spellCheck;
\ No newline at end of file
diff --git a/dist/icomoon/sphere.js b/dist/icomoon/sphere.js
new file mode 100644
index 000000000..8e2a4f64b
--- /dev/null
+++ b/dist/icomoon/sphere.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sphere = void 0;
+var sphere = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 1c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zM11.744 11c0.134-0.632 0.219-1.303 0.246-2h1.991c-0.052 0.691-0.213 1.361-0.479 2h-1.758zM3.256 6c-0.134 0.632-0.219 1.303-0.246 2h-1.991c0.052-0.691 0.213-1.361 0.479-2h1.758zM10.719 6c0.15 0.64 0.241 1.31 0.27 2h-2.989v-2h2.719zM8 5v-2.927c0.228 0.066 0.454 0.178 0.675 0.334 0.415 0.293 0.813 0.744 1.149 1.304 0.233 0.388 0.434 0.819 0.601 1.289h-2.426zM5.176 3.711c0.336-0.561 0.734-1.012 1.149-1.304 0.222-0.156 0.447-0.268 0.675-0.334v2.927h-2.426c0.168-0.47 0.369-0.901 0.601-1.289zM7 6v2h-2.989c0.029-0.69 0.12-1.36 0.27-2h2.719zM1.498 11c-0.266-0.639-0.427-1.309-0.479-2h1.991c0.028 0.697 0.112 1.368 0.246 2h-1.758zM4.011 9h2.989v2h-2.719c-0.15-0.64-0.241-1.31-0.27-2zM7 12v2.927c-0.228-0.066-0.454-0.178-0.675-0.334-0.415-0.293-0.813-0.744-1.149-1.304-0.233-0.388-0.434-0.819-0.602-1.289h2.426zM9.825 13.289c-0.336 0.561-0.734 1.012-1.149 1.304-0.222 0.156-0.447 0.268-0.675 0.334v-2.927h2.426c-0.168 0.47-0.369 0.901-0.602 1.289zM8 11v-2h2.989c-0.029 0.69-0.12 1.36-0.27 2h-2.719zM11.99 8c-0.028-0.697-0.112-1.368-0.246-2h1.758c0.267 0.639 0.427 1.309 0.479 2h-1.991zM12.979 5h-1.498c-0.291-0.918-0.693-1.723-1.177-2.366 0.665 0.318 1.267 0.744 1.792 1.27 0.336 0.336 0.631 0.702 0.883 1.096zM2.904 3.904c0.526-0.526 1.128-0.952 1.792-1.27-0.483 0.643-0.886 1.448-1.177 2.366h-1.498c0.252-0.394 0.547-0.761 0.883-1.096zM2.021 12h1.498c0.291 0.918 0.693 1.723 1.177 2.366-0.665-0.318-1.267-0.744-1.792-1.27-0.336-0.336-0.631-0.702-0.883-1.096zM12.096 13.096c-0.526 0.526-1.128 0.952-1.792 1.27 0.483-0.643 0.886-1.448 1.177-2.366h1.498c-0.252 0.394-0.547 0.761-0.883 1.096z"
+ }
+ }]
+};
+exports.sphere = sphere;
\ No newline at end of file
diff --git a/dist/icomoon/spinner.js b/dist/icomoon/spinner.js
new file mode 100644
index 000000000..fb7421df4
--- /dev/null
+++ b/dist/icomoon/spinner.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner = void 0;
+var spinner = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM10.243 3.757c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM13 8c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM11.243 12.243c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM7 14c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM2.757 12.243c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM2.257 3.757c0 0 0 0 0 0 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0 0 0 0 0 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM0.875 8c0-0.621 0.504-1.125 1.125-1.125s1.125 0.504 1.125 1.125c0 0.621-0.504 1.125-1.125 1.125s-1.125-0.504-1.125-1.125z"
+ }
+ }]
+};
+exports.spinner = spinner;
\ No newline at end of file
diff --git a/dist/icomoon/spinner10.js b/dist/icomoon/spinner10.js
new file mode 100644
index 000000000..5db097767
--- /dev/null
+++ b/dist/icomoon/spinner10.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner10 = void 0;
+var spinner10 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.001 8.025l-0 0c0 0 0 0.001 0 0.003 0.002 0.061 0.009 0.12 0.021 0.177 0.003 0.027 0.007 0.057 0.011 0.090 0.003 0.029 0.007 0.061 0.011 0.095 0.006 0.040 0.012 0.083 0.019 0.128 0.013 0.090 0.028 0.189 0.045 0.296 0.021 0.101 0.044 0.21 0.068 0.326 0.011 0.058 0.028 0.117 0.044 0.178s0.032 0.123 0.049 0.188c0.009 0.032 0.016 0.065 0.027 0.097s0.021 0.065 0.031 0.098 0.043 0.134 0.065 0.203c0.006 0.017 0.011 0.035 0.017 0.052s0.013 0.034 0.019 0.052 0.026 0.070 0.039 0.105c0.027 0.070 0.053 0.142 0.081 0.215 0.031 0.071 0.062 0.144 0.094 0.218 0.016 0.037 0.032 0.074 0.048 0.111s0.035 0.073 0.053 0.111 0.073 0.148 0.11 0.224c0.039 0.075 0.081 0.149 0.123 0.224 0.021 0.037 0.042 0.075 0.063 0.113s0.045 0.074 0.068 0.112 0.093 0.149 0.14 0.224c0.198 0.295 0.417 0.587 0.66 0.864 0.245 0.275 0.511 0.535 0.792 0.775 0.284 0.236 0.582 0.452 0.886 0.642 0.306 0.188 0.619 0.349 0.928 0.487 0.078 0.032 0.156 0.063 0.232 0.095 0.038 0.015 0.076 0.032 0.115 0.046s0.077 0.027 0.115 0.041 0.151 0.054 0.226 0.078c0.075 0.022 0.15 0.044 0.224 0.066 0.037 0.011 0.073 0.022 0.109 0.031s0.073 0.018 0.109 0.027 0.143 0.035 0.213 0.052c0.070 0.014 0.139 0.027 0.207 0.040 0.034 0.006 0.067 0.013 0.101 0.019 0.017 0.003 0.033 0.006 0.049 0.009s0.033 0.005 0.049 0.007c0.066 0.009 0.13 0.018 0.192 0.027 0.031 0.004 0.062 0.009 0.093 0.013s0.061 0.006 0.091 0.009 0.118 0.010 0.174 0.015c0.056 0.005 0.111 0.011 0.164 0.012 0.004 0 0.007 0 0.011 0 0.010 0.544 0.453 0.982 1 0.982 0.008 0 0.017-0 0.025-0.001v0c0 0 0.001-0 0.004-0 0.061-0.002 0.12-0.009 0.177-0.021 0.027-0.003 0.057-0.007 0.090-0.011 0.029-0.003 0.061-0.007 0.095-0.011 0.040-0.006 0.083-0.012 0.128-0.019 0.090-0.013 0.189-0.028 0.296-0.045 0.101-0.021 0.21-0.044 0.326-0.068 0.058-0.011 0.117-0.028 0.178-0.044s0.123-0.033 0.188-0.049c0.032-0.009 0.065-0.016 0.097-0.027s0.065-0.021 0.098-0.031 0.134-0.043 0.203-0.065c0.017-0.006 0.035-0.011 0.052-0.017s0.034-0.013 0.052-0.019 0.070-0.026 0.105-0.039c0.070-0.027 0.142-0.053 0.215-0.081 0.071-0.031 0.144-0.062 0.218-0.094 0.037-0.016 0.074-0.032 0.111-0.048s0.073-0.035 0.111-0.053 0.148-0.073 0.224-0.11c0.075-0.039 0.149-0.081 0.224-0.123 0.037-0.021 0.075-0.042 0.113-0.063s0.074-0.045 0.112-0.068 0.149-0.093 0.224-0.14c0.295-0.197 0.587-0.417 0.864-0.66 0.275-0.245 0.535-0.511 0.775-0.792 0.236-0.284 0.452-0.582 0.642-0.886 0.188-0.306 0.349-0.619 0.487-0.928 0.032-0.078 0.063-0.156 0.095-0.232 0.015-0.038 0.032-0.076 0.046-0.115s0.027-0.077 0.040-0.115 0.054-0.151 0.078-0.226c0.022-0.075 0.044-0.15 0.066-0.224 0.011-0.037 0.022-0.073 0.031-0.109s0.018-0.073 0.027-0.109 0.035-0.143 0.052-0.213c0.014-0.070 0.027-0.139 0.040-0.207 0.006-0.034 0.013-0.067 0.019-0.101 0.003-0.017 0.006-0.033 0.009-0.049s0.005-0.033 0.007-0.050c0.009-0.065 0.018-0.13 0.027-0.192 0.004-0.031 0.009-0.062 0.013-0.093s0.006-0.061 0.009-0.091 0.010-0.118 0.015-0.174c0.005-0.056 0.011-0.111 0.012-0.165 0-0.008 0.001-0.016 0.001-0.025 0.55-0.002 0.996-0.449 0.996-1 0-0.008-0-0.017-0.001-0.025h0c0 0-0-0.001-0-0.003-0.002-0.061-0.009-0.12-0.021-0.177-0.003-0.027-0.007-0.057-0.011-0.090-0.003-0.029-0.007-0.061-0.011-0.095-0.006-0.040-0.012-0.083-0.019-0.128-0.013-0.090-0.028-0.189-0.045-0.296-0.021-0.101-0.044-0.21-0.068-0.326-0.011-0.058-0.028-0.117-0.044-0.178s-0.032-0.123-0.049-0.188c-0.009-0.032-0.016-0.065-0.027-0.097s-0.021-0.065-0.031-0.098-0.043-0.134-0.065-0.203c-0.005-0.017-0.011-0.035-0.017-0.052s-0.013-0.034-0.019-0.052-0.026-0.070-0.039-0.105c-0.027-0.070-0.053-0.142-0.081-0.215-0.031-0.071-0.062-0.144-0.094-0.218-0.016-0.037-0.032-0.074-0.048-0.111s-0.035-0.073-0.053-0.111-0.073-0.148-0.11-0.224c-0.039-0.075-0.081-0.149-0.123-0.224-0.021-0.037-0.042-0.075-0.063-0.113s-0.045-0.074-0.068-0.112-0.093-0.149-0.14-0.224c-0.197-0.295-0.417-0.587-0.66-0.864-0.245-0.275-0.511-0.535-0.792-0.775-0.284-0.236-0.582-0.452-0.886-0.642-0.306-0.188-0.619-0.349-0.928-0.487-0.078-0.032-0.156-0.063-0.232-0.095-0.038-0.015-0.076-0.032-0.115-0.046s-0.077-0.027-0.115-0.040-0.151-0.054-0.226-0.078c-0.075-0.022-0.15-0.044-0.224-0.066-0.037-0.010-0.073-0.022-0.109-0.031s-0.073-0.018-0.109-0.027-0.143-0.035-0.213-0.052c-0.070-0.014-0.139-0.027-0.207-0.040-0.034-0.006-0.067-0.013-0.101-0.019-0.017-0.003-0.033-0.006-0.049-0.009s-0.033-0.005-0.049-0.007c-0.066-0.009-0.13-0.018-0.192-0.027-0.031-0.004-0.062-0.009-0.093-0.013s-0.061-0.006-0.091-0.009-0.118-0.010-0.174-0.015c-0.056-0.005-0.111-0.011-0.164-0.012-0.013-0-0.026-0.001-0.039-0.001-0.010-0.543-0.454-0.981-0.999-0.981-0.008 0-0.017 0-0.025 0.001l-0-0c0 0-0.001 0-0.003 0-0.061 0.002-0.12 0.009-0.177 0.021-0.027 0.003-0.057 0.007-0.090 0.011-0.029 0.003-0.061 0.007-0.095 0.011-0.040 0.006-0.083 0.012-0.128 0.019-0.090 0.013-0.189 0.028-0.296 0.045-0.101 0.021-0.21 0.044-0.326 0.068-0.058 0.011-0.117 0.028-0.178 0.044s-0.123 0.033-0.188 0.049c-0.032 0.009-0.065 0.016-0.097 0.027s-0.065 0.021-0.098 0.031-0.134 0.043-0.203 0.065c-0.017 0.006-0.035 0.011-0.052 0.017s-0.034 0.013-0.052 0.019-0.070 0.026-0.105 0.039c-0.070 0.027-0.142 0.053-0.215 0.081-0.071 0.031-0.144 0.062-0.218 0.094-0.037 0.016-0.074 0.032-0.111 0.048s-0.073 0.035-0.111 0.053-0.148 0.073-0.224 0.11c-0.075 0.039-0.149 0.081-0.224 0.123-0.037 0.021-0.075 0.042-0.113 0.063s-0.074 0.045-0.112 0.068-0.149 0.093-0.224 0.14c-0.295 0.198-0.587 0.417-0.864 0.66-0.275 0.245-0.535 0.511-0.775 0.792-0.236 0.284-0.452 0.582-0.642 0.886-0.188 0.306-0.349 0.619-0.487 0.928-0.032 0.078-0.063 0.156-0.095 0.232-0.015 0.038-0.032 0.076-0.046 0.115s-0.027 0.077-0.040 0.115-0.054 0.151-0.078 0.226c-0.022 0.075-0.044 0.15-0.066 0.224-0.011 0.037-0.022 0.073-0.032 0.109s-0.018 0.073-0.027 0.109-0.035 0.143-0.052 0.213c-0.014 0.070-0.027 0.139-0.040 0.207-0.006 0.034-0.013 0.067-0.019 0.101-0.003 0.017-0.006 0.033-0.009 0.049s-0.005 0.033-0.007 0.050c-0.009 0.065-0.018 0.13-0.027 0.192-0.004 0.031-0.009 0.062-0.013 0.093s-0.006 0.061-0.009 0.091-0.010 0.118-0.015 0.174c-0.005 0.056-0.011 0.111-0.012 0.165-0 0.009-0.001 0.017-0.001 0.025-0.537 0.017-0.967 0.458-0.967 0.999 0 0.008 0 0.017 0.001 0.025zM1.149 7.011c0.001-0.003 0.001-0.006 0.002-0.009 0.010-0.051 0.026-0.102 0.040-0.155s0.030-0.107 0.045-0.163c0.008-0.028 0.015-0.056 0.024-0.084s0.019-0.057 0.028-0.086 0.038-0.116 0.058-0.176c0.005-0.015 0.010-0.030 0.015-0.045s0.012-0.030 0.017-0.045 0.023-0.060 0.035-0.091 0.048-0.123 0.073-0.186c0.028-0.062 0.056-0.125 0.084-0.189 0.014-0.032 0.028-0.064 0.043-0.096s0.032-0.064 0.048-0.096 0.065-0.128 0.098-0.194c0.034-0.065 0.073-0.128 0.109-0.194 0.018-0.032 0.037-0.065 0.056-0.098s0.040-0.064 0.061-0.096c0.041-0.064 0.082-0.129 0.124-0.194 0.176-0.255 0.369-0.506 0.583-0.744 0.217-0.236 0.451-0.459 0.697-0.665 0.25-0.202 0.511-0.385 0.776-0.547 0.268-0.159 0.541-0.294 0.808-0.41 0.068-0.027 0.135-0.053 0.202-0.079 0.033-0.013 0.066-0.027 0.099-0.038s0.067-0.022 0.1-0.033 0.131-0.045 0.196-0.065c0.065-0.018 0.13-0.036 0.194-0.054 0.032-0.009 0.063-0.019 0.095-0.026s0.063-0.014 0.094-0.021 0.123-0.028 0.184-0.042c0.061-0.011 0.12-0.021 0.179-0.032 0.029-0.005 0.058-0.010 0.087-0.015 0.014-0.003 0.029-0.005 0.043-0.008s0.029-0.003 0.043-0.005c0.056-0.007 0.112-0.014 0.166-0.020 0.027-0.003 0.053-0.007 0.080-0.010s0.053-0.004 0.078-0.006 0.102-0.007 0.15-0.011c0.049-0.003 0.095-0.008 0.142-0.008 0.091-0.002 0.177-0.004 0.256-0.006 0.073 0.003 0.14 0.005 0.2 0.007 0.030 0.001 0.058 0.002 0.085 0.002 0.033 0.002 0.064 0.004 0.093 0.006 0.033 0.002 0.063 0.004 0.091 0.006 0.051 0.008 0.103 0.012 0.156 0.012 0.007 0 0.015-0 0.022-0.001 0.002 0 0.004 0 0.004 0v-0c0.487-0.012 0.887-0.372 0.962-0.84 0.008 0.002 0.017 0.004 0.025 0.006 0.051 0.010 0.102 0.026 0.155 0.040s0.107 0.030 0.163 0.045c0.028 0.008 0.056 0.015 0.084 0.024s0.057 0.019 0.086 0.028 0.116 0.038 0.176 0.058c0.015 0.005 0.030 0.010 0.045 0.015s0.030 0.012 0.045 0.017 0.060 0.023 0.091 0.035 0.123 0.048 0.186 0.073c0.062 0.028 0.125 0.056 0.189 0.084 0.032 0.014 0.064 0.028 0.096 0.043s0.064 0.032 0.096 0.048 0.128 0.065 0.194 0.098c0.065 0.034 0.129 0.073 0.194 0.109 0.032 0.018 0.065 0.037 0.098 0.056s0.064 0.040 0.096 0.061 0.129 0.082 0.194 0.124c0.255 0.176 0.506 0.369 0.744 0.583 0.236 0.217 0.459 0.451 0.665 0.697 0.202 0.25 0.385 0.511 0.547 0.776 0.159 0.268 0.294 0.541 0.41 0.808 0.027 0.068 0.053 0.135 0.079 0.202 0.013 0.033 0.027 0.066 0.038 0.099s0.022 0.067 0.033 0.1 0.045 0.131 0.065 0.196c0.018 0.065 0.036 0.13 0.054 0.194 0.009 0.032 0.019 0.063 0.026 0.095s0.014 0.063 0.021 0.094 0.028 0.123 0.042 0.184c0.011 0.061 0.021 0.12 0.032 0.179 0.005 0.029 0.010 0.058 0.015 0.087 0.003 0.014 0.005 0.029 0.008 0.043s0.003 0.029 0.005 0.043c0.007 0.056 0.014 0.112 0.020 0.166 0.003 0.027 0.007 0.053 0.010 0.080s0.004 0.053 0.006 0.078 0.007 0.102 0.011 0.15c0.003 0.049 0.008 0.095 0.008 0.142 0.002 0.091 0.004 0.177 0.006 0.256-0.003 0.073-0.005 0.14-0.007 0.2-0.001 0.030-0.002 0.058-0.002 0.085-0.002 0.033-0.004 0.064-0.006 0.093-0.002 0.033-0.004 0.063-0.006 0.091-0.008 0.051-0.012 0.103-0.012 0.156 0 0.007 0 0.015 0.001 0.022-0 0.002-0 0.004-0 0.004h0c0.012 0.481 0.363 0.877 0.823 0.959-0.001 0.005-0.002 0.009-0.003 0.014-0.010 0.051-0.025 0.102-0.040 0.155s-0.030 0.107-0.045 0.163c-0.008 0.028-0.015 0.056-0.024 0.084s-0.019 0.057-0.028 0.086-0.039 0.116-0.058 0.176c-0.005 0.015-0.010 0.030-0.015 0.045s-0.012 0.030-0.017 0.045-0.023 0.060-0.035 0.091-0.048 0.123-0.073 0.186c-0.028 0.062-0.056 0.125-0.084 0.189-0.014 0.032-0.028 0.064-0.043 0.096s-0.032 0.064-0.048 0.096-0.065 0.128-0.098 0.194c-0.034 0.065-0.073 0.129-0.109 0.194-0.018 0.032-0.037 0.065-0.056 0.098s-0.040 0.064-0.061 0.096-0.082 0.129-0.124 0.194c-0.176 0.255-0.369 0.506-0.583 0.744-0.217 0.236-0.451 0.459-0.697 0.665-0.25 0.202-0.511 0.385-0.776 0.547-0.268 0.159-0.541 0.294-0.808 0.41-0.068 0.027-0.135 0.053-0.202 0.079-0.033 0.013-0.066 0.027-0.099 0.038s-0.067 0.022-0.1 0.033-0.131 0.045-0.196 0.065c-0.065 0.018-0.13 0.036-0.194 0.054-0.032 0.009-0.063 0.019-0.095 0.026s-0.063 0.014-0.094 0.021-0.123 0.028-0.184 0.042c-0.061 0.011-0.12 0.021-0.179 0.032-0.029 0.005-0.058 0.010-0.087 0.015-0.014 0.003-0.028 0.005-0.043 0.008s-0.029 0.003-0.043 0.005c-0.056 0.007-0.112 0.014-0.166 0.020-0.027 0.003-0.053 0.007-0.080 0.010s-0.053 0.004-0.078 0.006-0.102 0.007-0.15 0.011c-0.049 0.003-0.095 0.008-0.142 0.008-0.091 0.002-0.177 0.004-0.256 0.006-0.073-0.003-0.14-0.005-0.2-0.007-0.030-0.001-0.058-0.002-0.085-0.002-0.033-0.002-0.064-0.004-0.093-0.006-0.033-0.002-0.063-0.004-0.091-0.006-0.051-0.008-0.103-0.012-0.156-0.012-0.007 0-0.015 0-0.022 0.001-0.002-0-0.003-0-0.003-0v0c-0.484 0.012-0.883 0.369-0.961 0.834-0.050-0.010-0.101-0.025-0.153-0.039s-0.107-0.030-0.163-0.045c-0.028-0.008-0.056-0.015-0.084-0.024s-0.057-0.019-0.086-0.028-0.116-0.039-0.176-0.058c-0.015-0.005-0.030-0.010-0.045-0.015s-0.030-0.012-0.045-0.017-0.060-0.023-0.091-0.035-0.123-0.048-0.186-0.073c-0.062-0.028-0.125-0.056-0.189-0.084-0.032-0.014-0.064-0.028-0.096-0.043s-0.064-0.032-0.096-0.048-0.128-0.065-0.194-0.098c-0.065-0.034-0.129-0.073-0.194-0.109-0.032-0.018-0.065-0.037-0.098-0.056s-0.064-0.040-0.096-0.061c-0.064-0.041-0.129-0.082-0.194-0.124-0.255-0.175-0.506-0.369-0.744-0.583-0.236-0.217-0.459-0.451-0.665-0.697-0.202-0.25-0.385-0.511-0.547-0.776-0.159-0.268-0.294-0.541-0.41-0.808-0.027-0.068-0.053-0.135-0.079-0.202-0.013-0.033-0.027-0.066-0.038-0.099s-0.022-0.067-0.033-0.1-0.045-0.131-0.065-0.196c-0.018-0.065-0.036-0.13-0.054-0.194-0.009-0.032-0.019-0.063-0.026-0.095s-0.014-0.063-0.021-0.094-0.028-0.123-0.042-0.184c-0.011-0.061-0.021-0.12-0.032-0.179-0.005-0.029-0.010-0.058-0.015-0.087-0.003-0.014-0.005-0.028-0.008-0.043s-0.003-0.029-0.005-0.043c-0.007-0.056-0.014-0.112-0.020-0.166-0.003-0.027-0.007-0.053-0.010-0.080s-0.004-0.053-0.006-0.078-0.007-0.101-0.011-0.15c-0.003-0.049-0.008-0.095-0.008-0.142-0.002-0.091-0.004-0.177-0.006-0.256 0.003-0.073 0.005-0.14 0.007-0.2 0.001-0.030 0.002-0.058 0.002-0.085 0.002-0.033 0.004-0.064 0.006-0.093 0.002-0.033 0.004-0.063 0.006-0.091 0.008-0.051 0.012-0.103 0.012-0.156 0-0.007-0-0.015-0.001-0.022 0-0.002 0-0.003 0-0.003h-0c-0.012-0.49-0.377-0.893-0.851-0.964z"
+ }
+ }]
+};
+exports.spinner10 = spinner10;
\ No newline at end of file
diff --git a/dist/icomoon/spinner11.js b/dist/icomoon/spinner11.js
new file mode 100644
index 000000000..dd2f21b9d
--- /dev/null
+++ b/dist/icomoon/spinner11.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner11 = void 0;
+var spinner11 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 6h-6l2.243-2.243c-1.133-1.133-2.64-1.757-4.243-1.757s-3.109 0.624-4.243 1.757c-1.133 1.133-1.757 2.64-1.757 4.243s0.624 3.109 1.757 4.243c1.133 1.133 2.64 1.757 4.243 1.757s3.109-0.624 4.243-1.757c0.095-0.095 0.185-0.192 0.273-0.292l1.505 1.317c-1.466 1.674-3.62 2.732-6.020 2.732-4.418 0-8-3.582-8-8s3.582-8 8-8c2.209 0 4.209 0.896 5.656 2.344l2.343-2.344v6z"
+ }
+ }]
+};
+exports.spinner11 = spinner11;
\ No newline at end of file
diff --git a/dist/icomoon/spinner2.js b/dist/icomoon/spinner2.js
new file mode 100644
index 000000000..4d2c29ab9
--- /dev/null
+++ b/dist/icomoon/spinner2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner2 = void 0;
+var spinner2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8c-0.020-1.045-0.247-2.086-0.665-3.038-0.417-0.953-1.023-1.817-1.766-2.53s-1.624-1.278-2.578-1.651c-0.953-0.374-1.978-0.552-2.991-0.531-1.013 0.020-2.021 0.24-2.943 0.646-0.923 0.405-1.758 0.992-2.449 1.712s-1.237 1.574-1.597 2.497c-0.361 0.923-0.533 1.914-0.512 2.895 0.020 0.981 0.234 1.955 0.627 2.847 0.392 0.892 0.961 1.7 1.658 2.368s1.523 1.195 2.416 1.543c0.892 0.348 1.851 0.514 2.799 0.493 0.949-0.020 1.89-0.227 2.751-0.608 0.862-0.379 1.642-0.929 2.287-1.604s1.154-1.472 1.488-2.335c0.204-0.523 0.342-1.069 0.415-1.622 0.019 0.001 0.039 0.002 0.059 0.002 0.552 0 1-0.448 1-1 0-0.028-0.001-0.056-0.004-0.083h0.004zM14.411 10.655c-0.367 0.831-0.898 1.584-1.55 2.206s-1.422 1.112-2.254 1.434c-0.832 0.323-1.723 0.476-2.608 0.454-0.884-0.020-1.759-0.215-2.56-0.57-0.801-0.354-1.526-0.867-2.125-1.495s-1.071-1.371-1.38-2.173c-0.31-0.801-0.457-1.66-0.435-2.512s0.208-1.694 0.551-2.464c0.342-0.77 0.836-1.468 1.441-2.044s1.321-1.029 2.092-1.326c0.771-0.298 1.596-0.438 2.416-0.416s1.629 0.202 2.368 0.532c0.74 0.329 1.41 0.805 1.963 1.387s0.988 1.27 1.272 2.011c0.285 0.74 0.418 1.532 0.397 2.32h0.004c-0.002 0.027-0.004 0.055-0.004 0.083 0 0.516 0.39 0.94 0.892 0.994-0.097 0.544-0.258 1.075-0.481 1.578z"
+ }
+ }]
+};
+exports.spinner2 = spinner2;
\ No newline at end of file
diff --git a/dist/icomoon/spinner3.js b/dist/icomoon/spinner3.js
new file mode 100644
index 000000000..b4458dd9b
--- /dev/null
+++ b/dist/icomoon/spinner3.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner3 = void 0;
+var spinner3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 4.736c-0.515 0-0.933-0.418-0.933-0.933v-2.798c0-0.515 0.418-0.933 0.933-0.933s0.933 0.418 0.933 0.933v2.798c0 0.515-0.418 0.933-0.933 0.933z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 15.577c-0.322 0-0.583-0.261-0.583-0.583v-2.798c0-0.322 0.261-0.583 0.583-0.583s0.583 0.261 0.583 0.583v2.798c0 0.322-0.261 0.583-0.583 0.583z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.902 5.24c-0.302 0-0.596-0.157-0.758-0.437l-1.399-2.423c-0.241-0.418-0.098-0.953 0.32-1.194s0.953-0.098 1.194 0.32l1.399 2.423c0.241 0.418 0.098 0.953-0.32 1.194-0.138 0.079-0.288 0.117-0.436 0.117z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.498 14.582c-0.181 0-0.358-0.094-0.455-0.262l-1.399-2.423c-0.145-0.251-0.059-0.572 0.192-0.717s0.572-0.059 0.717 0.192l1.399 2.423c0.145 0.251 0.059 0.572-0.192 0.717-0.083 0.048-0.173 0.070-0.262 0.070z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.365 6.718c-0.138 0-0.279-0.035-0.407-0.109l-2.423-1.399c-0.39-0.225-0.524-0.724-0.299-1.115s0.724-0.524 1.115-0.299l2.423 1.399c0.39 0.225 0.524 0.724 0.299 1.115-0.151 0.262-0.425 0.408-0.707 0.408z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.057 11.964c-0.079 0-0.159-0.020-0.233-0.063l-2.423-1.399c-0.223-0.129-0.299-0.414-0.171-0.637s0.414-0.299 0.637-0.171l2.423 1.399c0.223 0.129 0.299 0.414 0.171 0.637-0.086 0.15-0.243 0.233-0.404 0.233z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.803 8.758h-2.798c-0.418 0-0.758-0.339-0.758-0.758s0.339-0.758 0.758-0.758h2.798c0.419 0 0.758 0.339 0.758 0.758s-0.339 0.758-0.758 0.758z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.995 8.466c-0 0 0 0 0 0h-2.798c-0.258-0-0.466-0.209-0.466-0.466s0.209-0.466 0.466-0.466c0 0 0 0 0 0h2.798c0.258 0 0.466 0.209 0.466 0.466s-0.209 0.466-0.466 0.466z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.943 12.197c-0.242 0-0.477-0.125-0.606-0.35-0.193-0.335-0.079-0.762 0.256-0.955l2.423-1.399c0.335-0.193 0.762-0.079 0.955 0.256s0.079 0.762-0.256 0.955l-2.423 1.399c-0.11 0.064-0.23 0.094-0.349 0.094z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.635 6.368c-0.161 0-0.318-0.084-0.404-0.233-0.129-0.223-0.052-0.508 0.171-0.637l2.423-1.399c0.223-0.129 0.508-0.052 0.637 0.171s0.052 0.508-0.171 0.637l-2.423 1.399c-0.073 0.042-0.154 0.063-0.233 0.063z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.502 14.699c-0.109 0-0.219-0.028-0.32-0.086-0.307-0.177-0.412-0.569-0.235-0.876l1.399-2.423c0.177-0.307 0.569-0.412 0.876-0.235s0.412 0.569 0.235 0.876l-1.399 2.423c-0.119 0.206-0.334 0.321-0.556 0.321z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10.098 4.832c-0.079 0-0.159-0.020-0.233-0.063-0.223-0.129-0.299-0.414-0.171-0.637l1.399-2.423c0.129-0.223 0.414-0.299 0.637-0.171s0.299 0.414 0.171 0.637l-1.399 2.423c-0.086 0.15-0.243 0.233-0.404 0.233z"
+ }
+ }]
+};
+exports.spinner3 = spinner3;
\ No newline at end of file
diff --git a/dist/icomoon/spinner4.js b/dist/icomoon/spinner4.js
new file mode 100644
index 000000000..596e14627
--- /dev/null
+++ b/dist/icomoon/spinner4.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner4 = void 0;
+var spinner4 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3 8c0-0.19 0.011-0.378 0.032-0.563l-2.89-0.939c-0.092 0.487-0.141 0.989-0.141 1.502 0 2.3 0.971 4.374 2.526 5.833l1.786-2.458c-0.814-0.889-1.312-2.074-1.312-3.375zM13 8c0 1.301-0.497 2.486-1.312 3.375l1.786 2.458c1.555-1.459 2.526-3.533 2.526-5.833 0-0.513-0.049-1.015-0.141-1.502l-2.89 0.939c0.021 0.185 0.032 0.373 0.032 0.563zM9 3.1c1.436 0.292 2.649 1.199 3.351 2.435l2.89-0.939c-1.144-2.428-3.473-4.188-6.241-4.534v3.038zM3.649 5.535c0.702-1.236 1.914-2.143 3.351-2.435v-3.038c-2.769 0.345-5.097 2.105-6.241 4.534l2.89 0.939zM10.071 12.552c-0.631 0.288-1.332 0.448-2.071 0.448s-1.44-0.16-2.071-0.448l-1.786 2.458c1.144 0.631 2.458 0.99 3.857 0.99s2.713-0.359 3.857-0.99l-1.786-2.458z"
+ }
+ }]
+};
+exports.spinner4 = spinner4;
\ No newline at end of file
diff --git a/dist/icomoon/spinner5.js b/dist/icomoon/spinner5.js
new file mode 100644
index 000000000..c1ef36551
--- /dev/null
+++ b/dist/icomoon/spinner5.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner5 = void 0;
+var spinner5 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 4c2.209 0 4 1.791 4 4s-1.791 4-4 4-4-1.791-4-4 1.791-4 4-4zM12.773 12.773c-1.275 1.275-2.97 1.977-4.773 1.977s-3.498-0.702-4.773-1.977-1.977-2.97-1.977-4.773c0-1.803 0.702-3.498 1.977-4.773l1.061 1.061c0 0 0 0 0 0-2.047 2.047-2.047 5.378 0 7.425 0.992 0.992 2.31 1.538 3.712 1.538s2.721-0.546 3.712-1.538c2.047-2.047 2.047-5.378 0-7.425l1.061-1.061c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773z"
+ }
+ }]
+};
+exports.spinner5 = spinner5;
\ No newline at end of file
diff --git a/dist/icomoon/spinner6.js b/dist/icomoon/spinner6.js
new file mode 100644
index 000000000..dd362363c
--- /dev/null
+++ b/dist/icomoon/spinner6.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner6 = void 0;
+var spinner6 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 2c0-1.105 0.895-2 2-2s2 0.895 2 2c0 1.105-0.895 2-2 2s-2-0.895-2-2zM12.359 8c0 0 0 0 0 0 0-0.906 0.735-1.641 1.641-1.641s1.641 0.735 1.641 1.641c0 0 0 0 0 0 0 0.906-0.735 1.641-1.641 1.641s-1.641-0.735-1.641-1.641zM10.757 12.243c0-0.821 0.665-1.486 1.486-1.486s1.486 0.665 1.486 1.486c0 0.821-0.665 1.486-1.486 1.486s-1.486-0.665-1.486-1.486zM6.654 14c0-0.743 0.603-1.346 1.346-1.346s1.346 0.603 1.346 1.346c0 0.743-0.603 1.346-1.346 1.346s-1.346-0.603-1.346-1.346zM2.538 12.243c0-0.673 0.546-1.219 1.219-1.219s1.219 0.546 1.219 1.219c0 0.673-0.546 1.219-1.219 1.219s-1.219-0.546-1.219-1.219zM0.896 8c0-0.61 0.494-1.104 1.104-1.104s1.104 0.494 1.104 1.104c0 0.61-0.494 1.104-1.104 1.104s-1.104-0.494-1.104-1.104zM2.757 3.757c0 0 0 0 0 0 0-0.552 0.448-1 1-1s1 0.448 1 1c0 0 0 0 0 0 0 0.552-0.448 1-1 1s-1-0.448-1-1zM14.054 3.757c0 1-0.811 1.811-1.812 1.811s-1.812-0.811-1.812-1.811c0-1.001 0.811-1.811 1.812-1.811s1.812 0.811 1.812 1.811z"
+ }
+ }]
+};
+exports.spinner6 = spinner6;
\ No newline at end of file
diff --git a/dist/icomoon/spinner7.js b/dist/icomoon/spinner7.js
new file mode 100644
index 000000000..261a148c0
--- /dev/null
+++ b/dist/icomoon/spinner7.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner7 = void 0;
+var spinner7 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 14.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM0 8c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM13 8c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM1.904 3.404c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM11.096 12.596c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM1.904 12.596c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM11.096 3.404c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5z"
+ }
+ }]
+};
+exports.spinner7 = spinner7;
\ No newline at end of file
diff --git a/dist/icomoon/spinner8.js b/dist/icomoon/spinner8.js
new file mode 100644
index 000000000..326bd7381
--- /dev/null
+++ b/dist/icomoon/spinner8.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner8 = void 0;
+var spinner8 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c-2.137 0-4.146-0.832-5.657-2.343s-2.343-3.52-2.343-5.657c0-1.513 0.425-2.986 1.228-4.261 0.781-1.239 1.885-2.24 3.193-2.895l0.672 1.341c-1.063 0.533-1.961 1.347-2.596 2.354-0.652 1.034-0.997 2.231-0.997 3.461 0 3.584 2.916 6.5 6.5 6.5s6.5-2.916 6.5-6.5c0-1.23-0.345-2.426-0.997-3.461-0.635-1.008-1.533-1.822-2.596-2.354l0.672-1.341c1.308 0.655 2.412 1.656 3.193 2.895 0.803 1.274 1.228 2.748 1.228 4.261 0 2.137-0.832 4.146-2.343 5.657s-3.52 2.343-5.657 2.343z"
+ }
+ }]
+};
+exports.spinner8 = spinner8;
\ No newline at end of file
diff --git a/dist/icomoon/spinner9.js b/dist/icomoon/spinner9.js
new file mode 100644
index 000000000..86a6f2e09
--- /dev/null
+++ b/dist/icomoon/spinner9.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spinner9 = void 0;
+var spinner9 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.355 0-7.898 3.481-7.998 7.812 0.092-3.779 2.966-6.812 6.498-6.812 3.59 0 6.5 3.134 6.5 7 0 0.828 0.672 1.5 1.5 1.5s1.5-0.672 1.5-1.5c0-4.418-3.582-8-8-8zM8 16c4.355 0 7.898-3.481 7.998-7.812-0.092 3.779-2.966 6.812-6.498 6.812-3.59 0-6.5-3.134-6.5-7 0-0.828-0.672-1.5-1.5-1.5s-1.5 0.672-1.5 1.5c0 4.418 3.582 8 8 8z"
+ }
+ }]
+};
+exports.spinner9 = spinner9;
\ No newline at end of file
diff --git a/dist/icomoon/spoonKnife.js b/dist/icomoon/spoonKnife.js
new file mode 100644
index 000000000..bf4c6e3c7
--- /dev/null
+++ b/dist/icomoon/spoonKnife.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spoonKnife = void 0;
+var spoonKnife = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.5 0c-1.657 0-3 1.567-3 3.5 0 1.655 0.985 3.042 2.308 3.406l-0.497 8.096c-0.034 0.549 0.389 0.998 0.939 0.998h0.5c0.55 0 0.972-0.449 0.939-0.998l-0.497-8.096c1.323-0.365 2.308-1.751 2.308-3.406 0-1.933-1.343-3.5-3-3.5zM13.583 0l-0.833 5h-0.625l-0.417-5h-0.417l-0.417 5h-0.625l-0.833-5h-0.417v6.5c0 0.276 0.224 0.5 0.5 0.5h1.302l-0.491 8.002c-0.034 0.549 0.389 0.998 0.939 0.998h0.5c0.55 0 0.972-0.449 0.939-0.998l-0.491-8.002h1.302c0.276 0 0.5-0.224 0.5-0.5v-6.5h-0.417z"
+ }
+ }]
+};
+exports.spoonKnife = spoonKnife;
\ No newline at end of file
diff --git a/dist/icomoon/spotify.js b/dist/icomoon/spotify.js
new file mode 100644
index 000000000..4e0dac853
--- /dev/null
+++ b/dist/icomoon/spotify.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spotify = void 0;
+var spotify = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.559-8-8-8zM11.681 11.559c-0.159 0.241-0.441 0.319-0.681 0.159-1.881-1.159-4.241-1.4-7.041-0.759-0.281 0.081-0.519-0.119-0.6-0.359-0.081-0.281 0.119-0.519 0.359-0.6 3.041-0.681 5.681-0.4 7.759 0.881 0.281 0.119 0.322 0.438 0.203 0.678zM12.641 9.359c-0.2 0.281-0.559 0.4-0.841 0.2-2.159-1.319-5.441-1.719-7.959-0.919-0.319 0.081-0.681-0.081-0.759-0.4-0.081-0.319 0.081-0.681 0.4-0.759 2.919-0.881 6.519-0.441 9 1.081 0.238 0.119 0.359 0.519 0.159 0.797zM12.719 7.119c-2.559-1.519-6.841-1.681-9.281-0.919-0.4 0.119-0.8-0.119-0.919-0.481-0.119-0.4 0.119-0.8 0.481-0.919 2.841-0.841 7.519-0.681 10.481 1.081 0.359 0.2 0.481 0.681 0.281 1.041-0.203 0.278-0.681 0.397-1.044 0.197z"
+ }
+ }]
+};
+exports.spotify = spotify;
\ No newline at end of file
diff --git a/dist/icomoon/stack.js b/dist/icomoon/stack.js
new file mode 100644
index 000000000..3c75a05c0
--- /dev/null
+++ b/dist/icomoon/stack.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stack = void 0;
+var stack = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 5l-8-4-8 4 8 4 8-4zM8 2.328l5.345 2.672-5.345 2.672-5.345-2.672 5.345-2.672zM14.398 7.199l1.602 0.801-8 4-8-4 1.602-0.801 6.398 3.199zM14.398 10.199l1.602 0.801-8 4-8-4 1.602-0.801 6.398 3.199z"
+ }
+ }]
+};
+exports.stack = stack;
\ No newline at end of file
diff --git a/dist/icomoon/stackoverflow.js b/dist/icomoon/stackoverflow.js
new file mode 100644
index 000000000..02d01333e
--- /dev/null
+++ b/dist/icomoon/stackoverflow.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stackoverflow = void 0;
+var stackoverflow = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 10v6h-16v-6h2v4h12v-4zM3 11h10v2h-10zM3.237 8.835l0.433-1.953 9.763 2.164-0.433 1.953zM4.37 4.821l0.845-1.813 9.063 4.226-0.845 1.813zM15.496 5.648l-1.218 1.587-7.934-6.088 0.88-1.147h0.91z"
+ }
+ }]
+};
+exports.stackoverflow = stackoverflow;
\ No newline at end of file
diff --git a/dist/icomoon/starEmpty.js b/dist/icomoon/starEmpty.js
new file mode 100644
index 000000000..8913ead06
--- /dev/null
+++ b/dist/icomoon/starEmpty.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.starEmpty = void 0;
+var starEmpty = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899zM8 11.773l-3.492 1.836 0.667-3.888-2.825-2.753 3.904-0.567 1.746-3.537 1.746 3.537 3.904 0.567-2.825 2.753 0.667 3.888-3.492-1.836z"
+ }
+ }]
+};
+exports.starEmpty = starEmpty;
\ No newline at end of file
diff --git a/dist/icomoon/starFull.js b/dist/icomoon/starFull.js
new file mode 100644
index 000000000..6569ff0e5
--- /dev/null
+++ b/dist/icomoon/starFull.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.starFull = void 0;
+var starFull = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899z"
+ }
+ }]
+};
+exports.starFull = starFull;
\ No newline at end of file
diff --git a/dist/icomoon/starHalf.js b/dist/icomoon/starHalf.js
new file mode 100644
index 000000000..3f42295e6
--- /dev/null
+++ b/dist/icomoon/starHalf.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.starHalf = void 0;
+var starHalf = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 6.204l-5.528-0.803-2.472-5.009-2.472 5.009-5.528 0.803 4 3.899-0.944 5.505 4.944-2.599 4.944 2.599-0.944-5.505 4-3.899zM8 11.773l-0.015 0.008 0.015-8.918 1.746 3.537 3.904 0.567-2.825 2.753 0.667 3.888-3.492-1.836z"
+ }
+ }]
+};
+exports.starHalf = starHalf;
\ No newline at end of file
diff --git a/dist/icomoon/statsBars.js b/dist/icomoon/statsBars.js
new file mode 100644
index 000000000..23aa43018
--- /dev/null
+++ b/dist/icomoon/statsBars.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.statsBars = void 0;
+var statsBars = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 13h16v2h-16zM2 9h2v3h-2zM5 5h2v7h-2zM8 8h2v4h-2zM11 2h2v10h-2z"
+ }
+ }]
+};
+exports.statsBars = statsBars;
\ No newline at end of file
diff --git a/dist/icomoon/statsBars2.js b/dist/icomoon/statsBars2.js
new file mode 100644
index 000000000..7ac5834fe
--- /dev/null
+++ b/dist/icomoon/statsBars2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.statsBars2 = void 0;
+var statsBars2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.5 6h-3c-0.275 0-0.5 0.225-0.5 0.5v9c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-9c0-0.275-0.225-0.5-0.5-0.5zM4.5 15h-3v-4h3v4zM9.5 4h-3c-0.275 0-0.5 0.225-0.5 0.5v11c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-11c0-0.275-0.225-0.5-0.5-0.5zM9.5 15h-3v-5h3v5zM14.5 2h-3c-0.275 0-0.5 0.225-0.5 0.5v13c0 0.275 0.225 0.5 0.5 0.5h3c0.275 0 0.5-0.225 0.5-0.5v-13c0-0.275-0.225-0.5-0.5-0.5zM14.5 15h-3v-6h3v6z"
+ }
+ }]
+};
+exports.statsBars2 = statsBars2;
\ No newline at end of file
diff --git a/dist/icomoon/statsDots.js b/dist/icomoon/statsDots.js
new file mode 100644
index 000000000..acdb0d030
--- /dev/null
+++ b/dist/icomoon/statsDots.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.statsDots = void 0;
+var statsDots = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 14h14v2h-16v-16h2zM4.5 13c-0.828 0-1.5-0.672-1.5-1.5s0.672-1.5 1.5-1.5c0.044 0 0.088 0.002 0.131 0.006l1.612-2.687c-0.154-0.235-0.243-0.517-0.243-0.819 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.302-0.090 0.583-0.243 0.819l1.612 2.687c0.043-0.004 0.087-0.006 0.131-0.006 0.033 0 0.066 0.001 0.099 0.004l2.662-4.658c-0.165-0.241-0.261-0.532-0.261-0.845 0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5-0.033 0-0.066-0.001-0.099-0.004l-2.662 4.658c0.165 0.241 0.261 0.532 0.261 0.845 0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.302 0.090-0.583 0.243-0.819l-1.612-2.687c-0.043 0.004-0.087 0.006-0.131 0.006s-0.088-0.002-0.131-0.006l-1.612 2.687c0.154 0.235 0.243 0.517 0.243 0.819 0 0.828-0.672 1.5-1.5 1.5z"
+ }
+ }]
+};
+exports.statsDots = statsDots;
\ No newline at end of file
diff --git a/dist/icomoon/steam.js b/dist/icomoon/steam.js
new file mode 100644
index 000000000..26d3ed046
--- /dev/null
+++ b/dist/icomoon/steam.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.steam = void 0;
+var steam = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5zM14.975 2.025c-1.367-1.367-3.583-1.367-4.95 0-0.556 0.556-0.886 1.252-0.989 1.975v0l-3.198 4.847c-0.43 0.022-0.856 0.132-1.249 0.328l-2.467-1.928c-0.571-0.446-1.396-0.345-1.842 0.226s-0.345 1.396 0.226 1.842l2.436 1.905c-0.265 1.043 0.010 2.196 0.827 3.012 1.233 1.233 3.232 1.233 4.465 0 0.757-0.757 1.049-1.804 0.876-2.784l3.891-3.484c0.723-0.104 1.419-0.434 1.975-0.989 1.367-1.367 1.367-3.583 0-4.95zM6 14.105c-1.162 0-2.105-0.942-2.105-2.105 0-0.011 0.001-0.022 0.001-0.033l1.046 0.817c0.24 0.188 0.525 0.278 0.807 0.278 0.39 0 0.776-0.173 1.035-0.504 0.446-0.571 0.345-1.396-0.226-1.842l-0.992-0.776c0.14-0.029 0.285-0.045 0.434-0.045 1.162 0 2.105 0.942 2.105 2.105s-0.942 2.105-2.105 2.105zM12.5 7c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"
+ }
+ }]
+};
+exports.steam = steam;
\ No newline at end of file
diff --git a/dist/icomoon/steam2.js b/dist/icomoon/steam2.js
new file mode 100644
index 000000000..4625c32be
--- /dev/null
+++ b/dist/icomoon/steam2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.steam2 = void 0;
+var steam2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4.749 13.063c0.424 0 0.84-0.205 1.093-0.585 0.402-0.603 0.239-1.418-0.364-1.82l-1.032-0.688c0.177-0.048 0.362-0.074 0.554-0.074 1.162 0 2.105 0.942 2.105 2.105s-0.942 2.105-2.105 2.105c-1.131 0-2.054-0.893-2.102-2.012l1.124 0.749c0.224 0.149 0.477 0.221 0.727 0.221zM13.333 0c1.467 0 2.667 1.2 2.667 2.667v10.666c0 1.468-1.2 2.667-2.667 2.667h-10.666c-1.467 0-2.667-1.199-2.667-2.667v-3.172l1.896 1.264c-0.182 0.987 0.108 2.044 0.872 2.808 1.233 1.233 3.232 1.233 4.465 0 0.757-0.757 1.049-1.804 0.876-2.784l3.892-3.484c0.723-0.104 1.419-0.433 1.975-0.989 1.367-1.367 1.367-3.583 0-4.95s-3.583-1.367-4.95 0c-0.556 0.556-0.886 1.252-0.989 1.975v0l-3.198 4.847c-0.498 0.025-0.99 0.168-1.433 0.428l-3.404-2.269v-4.339c0-1.467 1.2-2.667 2.667-2.667h10.666zM14 4.5c0-1.381-1.119-2.5-2.5-2.5s-2.5 1.119-2.5 2.5 1.119 2.5 2.5 2.5 2.5-1.119 2.5-2.5zM10 4.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5z"
+ }
+ }]
+};
+exports.steam2 = steam2;
\ No newline at end of file
diff --git a/dist/icomoon/stop.js b/dist/icomoon/stop.js
new file mode 100644
index 000000000..316d2f2ba
--- /dev/null
+++ b/dist/icomoon/stop.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stop = void 0;
+var stop = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 14.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5 6.5 2.91 6.5 6.5-2.91 6.5-6.5 6.5zM5 5h6v6h-6z"
+ }
+ }]
+};
+exports.stop = stop;
\ No newline at end of file
diff --git a/dist/icomoon/stop2.js b/dist/icomoon/stop2.js
new file mode 100644
index 000000000..a2b4cee5a
--- /dev/null
+++ b/dist/icomoon/stop2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stop2 = void 0;
+var stop2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 2h12v12h-12z"
+ }
+ }]
+};
+exports.stop2 = stop2;
\ No newline at end of file
diff --git a/dist/icomoon/stopwatch.js b/dist/icomoon/stopwatch.js
new file mode 100644
index 000000000..1dc5b2fed
--- /dev/null
+++ b/dist/icomoon/stopwatch.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stopwatch = void 0;
+var stopwatch = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 3.019v-1.019h2v-1c0-0.552-0.448-1-1-1h-3c-0.552 0-1 0.448-1 1v1h2v1.019c-3.356 0.255-6 3.059-6 6.481 0 3.59 2.91 6.5 6.5 6.5s6.5-2.91 6.5-6.5c0-3.422-2.644-6.226-6-6.481zM11.036 13.036c-0.944 0.944-2.2 1.464-3.536 1.464s-2.591-0.52-3.536-1.464c-0.944-0.944-1.464-2.2-1.464-3.536s0.52-2.591 1.464-3.536c0.907-0.907 2.101-1.422 3.377-1.462l-0.339 4.907c-0.029 0.411 0.195 0.591 0.497 0.591s0.527-0.18 0.497-0.591l-0.339-4.907c1.276 0.040 2.47 0.555 3.377 1.462 0.944 0.944 1.464 2.2 1.464 3.536s-0.52 2.591-1.464 3.536z"
+ }
+ }]
+};
+exports.stopwatch = stopwatch;
\ No newline at end of file
diff --git a/dist/icomoon/strikethrough.js b/dist/icomoon/strikethrough.js
new file mode 100644
index 000000000..cb3c2c4eb
--- /dev/null
+++ b/dist/icomoon/strikethrough.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.strikethrough = void 0;
+var strikethrough = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 8v1h-3.664c0.43 0.602 0.664 1.292 0.664 2 0 1.107-0.573 2.172-1.572 2.921-0.927 0.696-2.145 1.079-3.428 1.079s-2.501-0.383-3.428-1.079c-0.999-0.749-1.572-1.814-1.572-2.921h2c0 1.084 1.374 2 3 2s3-0.916 3-2c0-1.084-1.374-2-3-2h-8v-1h4.68c-0.037-0.026-0.073-0.052-0.108-0.079-0.999-0.749-1.572-1.814-1.572-2.921s0.573-2.172 1.572-2.921c0.927-0.696 2.145-1.079 3.428-1.079s2.501 0.383 3.428 1.079c0.999 0.749 1.572 1.814 1.572 2.921h-2c0-1.084-1.374-2-3-2s-3 0.916-3 2c0 1.084 1.374 2 3 2 1.234 0 2.407 0.354 3.32 1h4.68z"
+ }
+ }]
+};
+exports.strikethrough = strikethrough;
\ No newline at end of file
diff --git a/dist/icomoon/stumbleupon.js b/dist/icomoon/stumbleupon.js
new file mode 100644
index 000000000..7fe161330
--- /dev/null
+++ b/dist/icomoon/stumbleupon.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stumbleupon = void 0;
+var stumbleupon = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 5c-0.55 0-1 0.45-1 1v4c0 1.653-1.347 3-3 3s-3-1.347-3-3v-2h2v2c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-1.653 1.347-3 3-3s3 1.347 3 2.781v0.969l-1.281 0.375-0.719-0.375v-0.969c0-0.331-0.45-0.781-1-0.781z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 10c0 1.653-1.347 3-3 3s-3-1.347-3-3.219v-1.938l0.719 0.375 1.281-0.375v1.938c0 0.769 0.45 1.219 1 1.219s1-0.45 1-1v-2h2v2z"
+ }
+ }]
+};
+exports.stumbleupon = stumbleupon;
\ No newline at end of file
diff --git a/dist/icomoon/stumbleupon2.js b/dist/icomoon/stumbleupon2.js
new file mode 100644
index 000000000..d5e596481
--- /dev/null
+++ b/dist/icomoon/stumbleupon2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stumbleupon2 = void 0;
+var stumbleupon2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.313 0h-10.625c-1.478 0-2.688 1.209-2.688 2.688v10.625c0 1.478 1.209 2.688 2.688 2.688h10.625c1.478 0 2.688-1.209 2.688-2.688v-10.625c0-1.478-1.209-2.688-2.688-2.688zM8 5c-0.551 0-1 0.449-1 1v4c0 1.654-1.346 3-3 3s-3-1.346-3-3v-2h2v2c0 0.551 0.449 1 1 1s1-0.449 1-1v-4c0-1.654 1.346-3 3-3s3 1.346 3 2.781v0.969l-1.281 0.375-0.719-0.375v-0.969c0-0.333-0.449-0.781-1-0.781zM15 10c0 1.654-1.346 3-3 3s-3-1.346-3-3.219v-1.938l0.719 0.375 1.281-0.375v1.938c0 0.77 0.449 1.219 1 1.219s1-0.449 1-1v-2h2v2z"
+ }
+ }]
+};
+exports.stumbleupon2 = stumbleupon2;
\ No newline at end of file
diff --git a/dist/icomoon/subscript.js b/dist/icomoon/subscript.js
new file mode 100644
index 000000000..5821f7c8c
--- /dev/null
+++ b/dist/icomoon/subscript.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.subscript = void 0;
+var subscript = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 14.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM10.563 4h-2.125l-2.938 2.938-2.938-2.938h-2.125l4 4-4 4h2.125l2.938-2.938 2.938 2.938h2.125l-4-4z"
+ }
+ }]
+};
+exports.subscript = subscript;
\ No newline at end of file
diff --git a/dist/icomoon/subscript2.js b/dist/icomoon/subscript2.js
new file mode 100644
index 000000000..fc0a64f37
--- /dev/null
+++ b/dist/icomoon/subscript2.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.subscript2 = void 0;
+var subscript2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM5.432 5h1.137l0.9 3h-2.937l0.9-3zM16 3l-2.5 4-2.5-4h5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 13h-1c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2c-0.827 0-1.5 0.673-1.5 1.5 0 0.384 0.145 0.734 0.383 1 0.275 0.307 0.674 0.5 1.117 0.5h1c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2c0.827 0 1.5-0.673 1.5-1.5 0-0.384-0.145-0.734-0.383-1-0.275-0.307-0.674-0.5-1.117-0.5z"
+ }
+ }]
+};
+exports.subscript2 = subscript2;
\ No newline at end of file
diff --git a/dist/icomoon/sun.js b/dist/icomoon/sun.js
new file mode 100644
index 000000000..4841bb25d
--- /dev/null
+++ b/dist/icomoon/sun.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sun = void 0;
+var sun = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 13c0.552 0 1 0.448 1 1v1c0 0.552-0.448 1-1 1s-1-0.448-1-1v-1c0-0.552 0.448-1 1-1zM8 3c-0.552 0-1-0.448-1-1v-1c0-0.552 0.448-1 1-1s1 0.448 1 1v1c0 0.552-0.448 1-1 1zM15 7c0.552 0 1 0.448 1 1s-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1zM3 8c0 0.552-0.448 1-1 1h-1c-0.552 0-1-0.448-1-1s0.448-1 1-1h1c0.552 0 1 0.448 1 1zM12.95 11.536l0.707 0.707c0.39 0.39 0.39 1.024 0 1.414s-1.024 0.39-1.414 0l-0.707-0.707c-0.39-0.39-0.39-1.024 0-1.414s1.024-0.39 1.414 0zM3.050 4.464l-0.707-0.707c-0.391-0.391-0.391-1.024 0-1.414s1.024-0.391 1.414 0l0.707 0.707c0.391 0.391 0.391 1.024 0 1.414s-1.024 0.391-1.414 0zM12.95 4.464c-0.39 0.391-1.024 0.391-1.414 0s-0.39-1.024 0-1.414l0.707-0.707c0.39-0.391 1.024-0.391 1.414 0s0.39 1.024 0 1.414l-0.707 0.707zM3.050 11.536c0.39-0.39 1.024-0.39 1.414 0s0.391 1.024 0 1.414l-0.707 0.707c-0.391 0.39-1.024 0.39-1.414 0s-0.391-1.024 0-1.414l0.707-0.707z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 4c-2.209 0-4 1.791-4 4s1.791 4 4 4c2.209 0 4-1.791 4-4s-1.791-4-4-4zM8 10.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z"
+ }
+ }]
+};
+exports.sun = sun;
\ No newline at end of file
diff --git a/dist/icomoon/superscript.js b/dist/icomoon/superscript.js
new file mode 100644
index 000000000..977d44768
--- /dev/null
+++ b/dist/icomoon/superscript.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.superscript = void 0;
+var superscript = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 3.219v0.781h2v1h-3v-2.281l2-0.938v-0.781h-2v-1h3v2.281zM10.563 4h-2.125l-2.938 2.938-2.938-2.938h-2.125l4 4-4 4h2.125l2.938-2.938 2.938 2.938h2.125l-4-4z"
+ }
+ }]
+};
+exports.superscript = superscript;
\ No newline at end of file
diff --git a/dist/icomoon/superscript2.js b/dist/icomoon/superscript2.js
new file mode 100644
index 000000000..2a8edb6fc
--- /dev/null
+++ b/dist/icomoon/superscript2.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.superscript2 = void 0;
+var superscript2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M3.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM5.432 5h1.137l0.9 3h-2.937l0.9-3zM11 13l2.5-4 2.5 4h-5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.5 2h-1c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5h2c0.276 0 0.5-0.224 0.5-0.5s-0.224-0.5-0.5-0.5h-2c-0.827 0-1.5 0.673-1.5 1.5 0 0.384 0.145 0.734 0.383 1 0.275 0.307 0.674 0.5 1.117 0.5h1c0.276 0 0.5 0.224 0.5 0.5s-0.224 0.5-0.5 0.5h-2c-0.276 0-0.5 0.224-0.5 0.5s0.224 0.5 0.5 0.5h2c0.827 0 1.5-0.673 1.5-1.5 0-0.384-0.145-0.734-0.383-1-0.275-0.307-0.674-0.5-1.117-0.5z"
+ }
+ }]
+};
+exports.superscript2 = superscript2;
\ No newline at end of file
diff --git a/dist/icomoon/svg.js b/dist/icomoon/svg.js
new file mode 100644
index 000000000..26610fc0b
--- /dev/null
+++ b/dist/icomoon/svg.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.svg = void 0;
+var svg = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 6.5c-0.444 0-0.843 0.193-1.118 0.5h-2.968l2.099-2.099c0.411 0.023 0.83-0.123 1.144-0.437 0.586-0.586 0.586-1.536 0-2.121s-1.536-0.586-2.121 0c-0.314 0.314-0.46 0.733-0.437 1.144l-2.099 2.099v-2.968c0.307-0.275 0.5-0.674 0.5-1.118 0-0.828-0.672-1.5-1.5-1.5s-1.5 0.672-1.5 1.5c0 0.444 0.193 0.843 0.5 1.118v2.968l-2.099-2.099c0.023-0.411-0.123-0.83-0.437-1.144-0.586-0.586-1.536-0.586-2.121 0s-0.586 1.536 0 2.121c0.314 0.314 0.733 0.46 1.144 0.437l2.099 2.099h-2.968c-0.275-0.307-0.674-0.5-1.118-0.5-0.828 0-1.5 0.672-1.5 1.5s0.672 1.5 1.5 1.5c0.444 0 0.843-0.193 1.118-0.5h2.968l-2.099 2.099c-0.411-0.023-0.83 0.123-1.144 0.437-0.586 0.586-0.586 1.536 0 2.121s1.536 0.586 2.121 0c0.314-0.314 0.46-0.733 0.437-1.144l2.099-2.099v2.968c-0.307 0.275-0.5 0.674-0.5 1.118 0 0.828 0.672 1.5 1.5 1.5s1.5-0.672 1.5-1.5c0-0.444-0.193-0.843-0.5-1.118v-2.968l2.099 2.099c-0.023 0.411 0.123 0.83 0.437 1.144 0.586 0.586 1.536 0.586 2.121 0s0.586-1.536 0-2.121c-0.314-0.314-0.733-0.46-1.144-0.437l-2.099-2.099h2.968c0.275 0.307 0.674 0.5 1.118 0.5 0.828 0 1.5-0.672 1.5-1.5s-0.672-1.5-1.5-1.5z"
+ }
+ }]
+};
+exports.svg = svg;
\ No newline at end of file
diff --git a/dist/icomoon/switchIcon.js b/dist/icomoon/switchIcon.js
new file mode 100644
index 000000000..ea9767ef6
--- /dev/null
+++ b/dist/icomoon/switchIcon.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.switchIcon = void 0;
+var switchIcon = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 2.29v2.124c0.566 0.247 1.086 0.6 1.536 1.050 0.944 0.944 1.464 2.2 1.464 3.536s-0.52 2.591-1.464 3.536c-0.944 0.944-2.2 1.464-3.536 1.464s-2.591-0.52-3.536-1.464c-0.944-0.944-1.464-2.2-1.464-3.536s0.52-2.591 1.464-3.536c0.45-0.45 0.97-0.803 1.536-1.050v-2.124c-2.891 0.861-5 3.539-5 6.71 0 3.866 3.134 7 7 7s7-3.134 7-7c0-3.171-2.109-5.849-5-6.71zM7 0h2v8h-2z"
+ }
+ }]
+};
+exports.switchIcon = switchIcon;
\ No newline at end of file
diff --git a/dist/icomoon/tab.js b/dist/icomoon/tab.js
new file mode 100644
index 000000000..9f99c7881
--- /dev/null
+++ b/dist/icomoon/tab.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tab = void 0;
+var tab = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 0h1v8h-1v-8z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 8h1v8h-1v-8z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 11h11v2h-11v2.5l-3.5-3.5 3.5-3.5v2.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 5h-11v-2h11v-2.5l3.5 3.5-3.5 3.5z"
+ }
+ }]
+};
+exports.tab = tab;
\ No newline at end of file
diff --git a/dist/icomoon/table.js b/dist/icomoon/table.js
new file mode 100644
index 000000000..477a1e216
--- /dev/null
+++ b/dist/icomoon/table.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.table = void 0;
+var table = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3v11h16v-11h-16zM6 10v-2h4v2h-4zM10 11v2h-4v-2h4zM10 5v2h-4v-2h4zM5 5v2h-4v-2h4zM1 8h4v2h-4v-2zM11 8h4v2h-4v-2zM11 7v-2h4v2h-4zM1 11h4v2h-4v-2zM11 13v-2h4v2h-4z"
+ }
+ }]
+};
+exports.table = table;
\ No newline at end of file
diff --git a/dist/icomoon/table2.js b/dist/icomoon/table2.js
new file mode 100644
index 000000000..e96491e10
--- /dev/null
+++ b/dist/icomoon/table2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.table2 = void 0;
+var table2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1v14h16v-14h-16zM6 10v-3h4v3h-4zM10 11v3h-4v-3h4zM10 3v3h-4v-3h4zM5 3v3h-4v-3h4zM1 7h4v3h-4v-3zM11 7h4v3h-4v-3zM11 6v-3h4v3h-4zM1 11h4v3h-4v-3zM11 14v-3h4v3h-4z"
+ }
+ }]
+};
+exports.table2 = table2;
\ No newline at end of file
diff --git a/dist/icomoon/tablet.js b/dist/icomoon/tablet.js
new file mode 100644
index 000000000..9593662cb
--- /dev/null
+++ b/dist/icomoon/tablet.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tablet = void 0;
+var tablet = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.5 0h-10c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h10c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM7.5 15.5c-0.276 0-0.5-0.224-0.5-0.5s0.224-0.5 0.5-0.5 0.5 0.224 0.5 0.5-0.224 0.5-0.5 0.5zM12 14h-9v-12h9v12z"
+ }
+ }]
+};
+exports.tablet = tablet;
\ No newline at end of file
diff --git a/dist/icomoon/target.js b/dist/icomoon/target.js
new file mode 100644
index 000000000..c8c413bc3
--- /dev/null
+++ b/dist/icomoon/target.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.target = void 0;
+var target = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 7h-1.577c-0.432-2.785-2.638-4.991-5.423-5.423v-1.577h-2v1.577c-2.785 0.432-4.991 2.638-5.423 5.423h-1.577v2h1.577c0.432 2.785 2.638 4.991 5.423 5.423v1.577h2v-1.577c2.785-0.432 4.991-2.638 5.423-5.423h1.577v-2zM12.388 7h-1.559c-0.301-0.852-0.977-1.528-1.829-1.829v-1.559c1.68 0.383 3.005 1.708 3.388 3.388zM8 9c-0.552 0-1-0.448-1-1s0.448-1 1-1c0.552 0 1 0.448 1 1s-0.448 1-1 1zM7 3.612v1.559c-0.852 0.301-1.528 0.977-1.829 1.829h-1.559c0.383-1.68 1.708-3.005 3.388-3.388zM3.612 9h1.559c0.301 0.852 0.977 1.528 1.829 1.829v1.559c-1.68-0.383-3.005-1.708-3.388-3.388zM9 12.388v-1.559c0.852-0.301 1.528-0.977 1.829-1.829h1.559c-0.383 1.68-1.708 3.005-3.388 3.388z"
+ }
+ }]
+};
+exports.target = target;
\ No newline at end of file
diff --git a/dist/icomoon/telegram.js b/dist/icomoon/telegram.js
new file mode 100644
index 000000000..4716d0369
--- /dev/null
+++ b/dist/icomoon/telegram.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.telegram = void 0;
+var telegram = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.419 0-8 3.581-8 8s3.581 8 8 8 8-3.581 8-8-3.581-8-8-8zM11.931 5.484l-1.313 6.184c-0.091 0.441-0.356 0.544-0.725 0.341l-2-1.478-0.959 0.934c-0.112 0.109-0.2 0.2-0.4 0.2-0.259 0-0.216-0.097-0.303-0.344l-0.681-2.237-1.978-0.616c-0.428-0.131-0.431-0.425 0.097-0.634l7.706-2.975c0.35-0.159 0.691 0.084 0.556 0.625z"
+ }
+ }]
+};
+exports.telegram = telegram;
\ No newline at end of file
diff --git a/dist/icomoon/terminal.js b/dist/icomoon/terminal.js
new file mode 100644
index 000000000..d3b699e7a
--- /dev/null
+++ b/dist/icomoon/terminal.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.terminal = void 0;
+var terminal = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 1v14h16v-14h-16zM15 14h-14v-12h14v12zM14 3h-12v10h12v-10zM7 8h-1v1h-1v1h-1v-1h1v-1h1v-1h-1v-1h-1v-1h1v1h1v1h1v1zM11 10h-3v-1h3v1z"
+ }
+ }]
+};
+exports.terminal = terminal;
\ No newline at end of file
diff --git a/dist/icomoon/textColor.js b/dist/icomoon/textColor.js
new file mode 100644
index 000000000..5c8264380
--- /dev/null
+++ b/dist/icomoon/textColor.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.textColor = void 0;
+var textColor = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.032 13l0.9-3h4.137l0.9 3h1.775l-3-10h-3.488l-3 10h1.776zM7.432 5h1.137l0.9 3h-2.937l0.9-3z"
+ }
+ }]
+};
+exports.textColor = textColor;
\ No newline at end of file
diff --git a/dist/icomoon/textHeight.js b/dist/icomoon/textHeight.js
new file mode 100644
index 000000000..375e8069b
--- /dev/null
+++ b/dist/icomoon/textHeight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.textHeight = void 0;
+var textHeight = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14 12h2l-2.5 3-2.5-3h2v-8h-2l2.5-3 2.5 3h-2zM10 1v4l-1-2h-3v11h2v1h-6v-1h2v-11h-3l-1 2v-4z"
+ }
+ }]
+};
+exports.textHeight = textHeight;
\ No newline at end of file
diff --git a/dist/icomoon/textWidth.js b/dist/icomoon/textWidth.js
new file mode 100644
index 000000000..1f1ce88dc
--- /dev/null
+++ b/dist/icomoon/textWidth.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.textWidth = void 0;
+var textWidth = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 14v2l-3-2.5 3-2.5v2h8v-2l3 2.5-3 2.5v-2zM13 1v4l-1-2h-3v7h2v1h-6v-1h2v-7h-3l-1 2v-4z"
+ }
+ }]
+};
+exports.textWidth = textWidth;
\ No newline at end of file
diff --git a/dist/icomoon/ticket.js b/dist/icomoon/ticket.js
new file mode 100644
index 000000000..111f393a3
--- /dev/null
+++ b/dist/icomoon/ticket.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ticket = void 0;
+var ticket = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 5l2 2-4 4-2-2zM15.649 4.649l-1.149-1.149-0.5 0.5c-0.256 0.256-0.61 0.414-1 0.414-0.781 0-1.414-0.633-1.414-1.414 0-0.391 0.158-0.744 0.415-1l0.5-0.5-1.149-1.149c-0.468-0.468-1.235-0.468-1.703 0l-9.297 9.297c-0.468 0.468-0.468 1.235 0 1.703l1.149 1.149 0.499-0.499c0.256-0.256 0.61-0.415 1.001-0.415 0.781 0 1.414 0.633 1.414 1.414 0 0.391-0.158 0.744-0.415 1l-0.5 0.5 1.149 1.149c0.468 0.468 1.234 0.468 1.703 0l9.297-9.297c0.468-0.468 0.468-1.235 0-1.703zM7 13l-4-4 6-6 4 4-6 6z"
+ }
+ }]
+};
+exports.ticket = ticket;
\ No newline at end of file
diff --git a/dist/icomoon/tongue.js b/dist/icomoon/tongue.js
new file mode 100644
index 000000000..5438ec6c8
--- /dev/null
+++ b/dist/icomoon/tongue.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tongue = void 0;
+var tongue = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM12 9v1h-1v1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5v-1.5h-4v-1h8z"
+ }
+ }]
+};
+exports.tongue = tongue;
\ No newline at end of file
diff --git a/dist/icomoon/tongue2.js b/dist/icomoon/tongue2.js
new file mode 100644
index 000000000..982c58d9a
--- /dev/null
+++ b/dist/icomoon/tongue2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tongue2 = void 0;
+var tongue2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM5 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM12 10h-1v1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5v-1.5h-4v-1h8v1zM11 6c-0.552 0-1-0.448-1-1s0.448-1 1-1 1 0.448 1 1-0.448 1-1 1z"
+ }
+ }]
+};
+exports.tongue2 = tongue2;
\ No newline at end of file
diff --git a/dist/icomoon/tree.js b/dist/icomoon/tree.js
new file mode 100644
index 000000000..a283e3902
--- /dev/null
+++ b/dist/icomoon/tree.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tree = void 0;
+var tree = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.25 12h-0.25v-3.25c0-0.965-0.785-1.75-1.75-1.75h-4.25v-2h0.25c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.413-0.338-0.75-0.75-0.75h-2.5c-0.412 0-0.75 0.337-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h0.25v2h-4.25c-0.965 0-1.75 0.785-1.75 1.75v3.25h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.413 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.337-0.75-0.75-0.75h-0.25v-3h4v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75h-0.25v-3h4v3h-0.25c-0.412 0-0.75 0.338-0.75 0.75v2.5c0 0.412 0.338 0.75 0.75 0.75h2.5c0.412 0 0.75-0.338 0.75-0.75v-2.5c0-0.412-0.338-0.75-0.75-0.75zM3 15h-2v-2h2v2zM9 15h-2v-2h2v2zM7 4v-2h2v2h-2zM15 15h-2v-2h2v2z"
+ }
+ }]
+};
+exports.tree = tree;
\ No newline at end of file
diff --git a/dist/icomoon/trello.js b/dist/icomoon/trello.js
new file mode 100644
index 000000000..24af9161f
--- /dev/null
+++ b/dist/icomoon/trello.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trello = void 0;
+var trello = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM7 12c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-8c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v8zM13 9c0 0.55-0.45 1-1 1h-2c-0.55 0-1-0.45-1-1v-5c0-0.55 0.45-1 1-1h2c0.55 0 1 0.45 1 1v5z"
+ }
+ }]
+};
+exports.trello = trello;
\ No newline at end of file
diff --git a/dist/icomoon/trophy.js b/dist/icomoon/trophy.js
new file mode 100644
index 000000000..1d3cb5e90
--- /dev/null
+++ b/dist/icomoon/trophy.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trophy = void 0;
+var trophy = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 3v-2h-10v2h-3v2c0 1.657 1.343 3 3 3 0.314 0 0.616-0.048 0.9-0.138 0.721 1.031 1.822 1.778 3.1 2.037v3.1h-1c-1.105 0-2 0.895-2 2h8c0-1.105-0.895-2-2-2h-1v-3.1c1.278-0.259 2.378-1.006 3.1-2.037 0.284 0.089 0.587 0.138 0.9 0.138 1.657 0 3-1.343 3-3v-2h-3zM3 6.813c-0.999 0-1.813-0.813-1.813-1.813v-1h1.813v1c0 0.628 0.116 1.229 0.327 1.782-0.106 0.019-0.216 0.030-0.327 0.030zM14.813 5c0 0.999-0.813 1.813-1.813 1.813-0.112 0-0.221-0.011-0.327-0.030 0.211-0.554 0.327-1.154 0.327-1.782v-1h1.813v1z"
+ }
+ }]
+};
+exports.trophy = trophy;
\ No newline at end of file
diff --git a/dist/icomoon/truck.js b/dist/icomoon/truck.js
new file mode 100644
index 000000000..41712d911
--- /dev/null
+++ b/dist/icomoon/truck.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.truck = void 0;
+var truck = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9l-2-4h-3v-2c0-0.55-0.45-1-1-1h-9c-0.55 0-1 0.45-1 1v8l1 1h1.268c-0.17 0.294-0.268 0.636-0.268 1 0 1.105 0.895 2 2 2s2-0.895 2-2c0-0.364-0.098-0.706-0.268-1h5.536c-0.17 0.294-0.268 0.636-0.268 1 0 1.105 0.895 2 2 2s2-0.895 2-2c0-0.364-0.098-0.706-0.268-1h1.268v-3zM11 9v-3h2.073l1.5 3h-3.573z"
+ }
+ }]
+};
+exports.truck = truck;
\ No newline at end of file
diff --git a/dist/icomoon/tumblr.js b/dist/icomoon/tumblr.js
new file mode 100644
index 000000000..13b3cfa54
--- /dev/null
+++ b/dist/icomoon/tumblr.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tumblr = void 0;
+var tumblr = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.001 7l-0 3.659c0 0.928-0.012 1.463 0.086 1.727 0.098 0.262 0.342 0.534 0.609 0.691 0.354 0.212 0.758 0.318 1.214 0.318 0.81 0 1.289-0.107 2.090-0.633v2.405c-0.683 0.321-1.279 0.509-1.833 0.639-0.555 0.129-1.154 0.194-1.798 0.194-0.732 0-1.163-0.092-1.725-0.276-0.562-0.185-1.042-0.45-1.438-0.79-0.398-0.343-0.672-0.706-0.826-1.091s-0.23-0.944-0.23-1.676v-5.611h-2.147v-2.266c0.628-0.204 1.331-0.497 1.778-0.877 0.449-0.382 0.809-0.839 1.080-1.374 0.272-0.534 0.459-1.214 0.561-2.039h2.579l-0 4h3.999v3h-3.999z"
+ }
+ }]
+};
+exports.tumblr = tumblr;
\ No newline at end of file
diff --git a/dist/icomoon/tumblr2.js b/dist/icomoon/tumblr2.js
new file mode 100644
index 000000000..90cb9a3f9
--- /dev/null
+++ b/dist/icomoon/tumblr2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tumblr2 = void 0;
+var tumblr2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM11.434 12.884c-0.472 0.222-0.9 0.378-1.281 0.469-0.381 0.088-0.797 0.134-1.241 0.134-0.506 0-0.803-0.063-1.191-0.191s-0.719-0.309-0.994-0.544c-0.275-0.238-0.463-0.488-0.569-0.753s-0.159-0.65-0.159-1.156v-3.872h-1.5v-1.563c0.434-0.141 0.938-0.344 1.244-0.606 0.309-0.263 0.559-0.578 0.744-0.947 0.188-0.369 0.316-0.837 0.388-1.406h1.569v2.55h2.556v1.972h-2.553v2.831c0 0.641-0.009 1.009 0.059 1.191s0.238 0.369 0.422 0.475c0.244 0.147 0.525 0.219 0.838 0.219 0.559 0 1.116-0.181 1.669-0.544v1.741z"
+ }
+ }]
+};
+exports.tumblr2 = tumblr2;
\ No newline at end of file
diff --git a/dist/icomoon/tux.js b/dist/icomoon/tux.js
new file mode 100644
index 000000000..b603d7413
--- /dev/null
+++ b/dist/icomoon/tux.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tux = void 0;
+var tux = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.87 11.514c-1.28 0.596-2.471 0.589-3.271 0.532-0.954-0.069-1.721-0.33-2.058-0.558-0.208-0.141-0.49-0.086-0.631 0.122s-0.086 0.49 0.122 0.631c0.542 0.367 1.501 0.64 2.503 0.712 0.17 0.012 0.356 0.020 0.557 0.020 0.872 0 1.979-0.083 3.163-0.634 0.228-0.106 0.326-0.376 0.22-0.604s-0.376-0.326-0.604-0.22zM13.921 10.841c0.044-3.948 0.449-11.409-7.109-10.806-7.463 0.601-5.484 8.484-5.595 11.124-0.099 1.397-0.562 3.104-1.217 4.841h2.017c0.207-0.736 0.36-1.464 0.425-2.159 0.122 0.085 0.252 0.167 0.391 0.245 0.226 0.133 0.42 0.31 0.626 0.497 0.48 0.438 1.025 0.934 2.089 0.996 0.071 0.004 0.143 0.006 0.214 0.006 1.077 0 1.813-0.471 2.404-0.85 0.283-0.181 0.528-0.338 0.759-0.413 0.655-0.205 1.227-0.536 1.655-0.957 0.067-0.066 0.129-0.133 0.187-0.202 0.238 0.873 0.564 1.856 0.926 2.836h4.307c-1.034-1.597-2.101-3.162-2.079-5.159zM1.939 8.693c0-0 0-0-0-0.001-0.074-1.288 0.542-2.372 1.377-2.421s1.571 0.957 1.645 2.245c0 0 0 0 0 0.001 0.004 0.069 0.006 0.138 0.006 0.206-0.264 0.066-0.503 0.163-0.717 0.275-0.001-0.010-0.001-0.019-0.002-0.029 0-0 0-0 0-0-0.071-0.731-0.462-1.284-0.873-1.234s-0.686 0.684-0.614 1.415c0 0 0 0 0 0 0.031 0.319 0.123 0.604 0.251 0.819-0.032 0.025-0.122 0.091-0.225 0.166-0.078 0.057-0.172 0.126-0.286 0.21-0.311-0.408-0.524-0.993-0.562-1.655zM10.395 11.878c-0.030 0.681-0.92 1.322-1.743 1.579l-0.005 0.002c-0.342 0.111-0.647 0.306-0.97 0.513-0.543 0.347-1.104 0.706-1.914 0.706-0.053 0-0.108-0.002-0.161-0.005-0.742-0.043-1.090-0.36-1.529-0.761-0.232-0.211-0.472-0.43-0.781-0.611l-0.007-0.004c-0.667-0.377-1.081-0.845-1.108-1.253-0.013-0.203 0.077-0.378 0.268-0.522 0.416-0.312 0.695-0.516 0.879-0.651 0.205-0.15 0.267-0.195 0.313-0.239 0.033-0.031 0.068-0.065 0.106-0.103 0.382-0.371 1.021-0.993 2.002-0.993 0.6 0 1.264 0.231 1.971 0.686 0.333 0.217 0.623 0.317 0.99 0.444 0.252 0.087 0.539 0.186 0.922 0.35l0.006 0.003c0.357 0.147 0.78 0.415 0.76 0.858zM10.198 10.278c-0.069-0.035-0.14-0.068-0.215-0.098-0.345-0.148-0.622-0.248-0.852-0.328 0.127-0.248 0.206-0.558 0.213-0.894 0-0 0-0 0-0 0.018-0.818-0.395-1.483-0.922-1.484s-0.968 0.661-0.986 1.479c0 0 0 0 0 0-0.001 0.027-0.001 0.053-0 0.080-0.324-0.149-0.643-0.258-0.956-0.324-0.001-0.031-0.003-0.061-0.004-0.092 0-0 0-0.001 0-0.001-0.030-1.491 0.884-2.725 2.043-2.756s2.122 1.152 2.153 2.642c0 0 0 0.001 0 0.001 0.014 0.674-0.167 1.295-0.475 1.776z"
+ }
+ }]
+};
+exports.tux = tux;
\ No newline at end of file
diff --git a/dist/icomoon/tv.js b/dist/icomoon/tv.js
new file mode 100644
index 000000000..469ec4184
--- /dev/null
+++ b/dist/icomoon/tv.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tv = void 0;
+var tv = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.331 4.502c-1.388-0.199-2.865-0.344-4.407-0.425l2.576-2.576-1-1-3.509 3.509c-0.328-0.006-0.659-0.009-0.991-0.009v0l-4-4-1 1 3.034 3.034c-1.889 0.066-3.693 0.227-5.365 0.467-0.43 1.683-0.669 3.543-0.669 5.498s0.239 3.815 0.669 5.498c2.244 0.323 4.724 0.502 7.331 0.502s5.087-0.179 7.331-0.502c0.43-1.683 0.669-3.543 0.669-5.498s-0.239-3.815-0.669-5.498zM13.498 13.666c-1.683 0.215-3.543 0.334-5.498 0.334s-3.815-0.119-5.498-0.334c-0.323-1.122-0.502-2.362-0.502-3.666s0.179-2.543 0.502-3.666c1.683-0.215 3.543-0.334 5.498-0.334s3.815 0.119 5.498 0.334c0.323 1.122 0.502 2.362 0.502 3.666s-0.179 2.543-0.502 3.666z"
+ }
+ }]
+};
+exports.tv = tv;
\ No newline at end of file
diff --git a/dist/icomoon/twitch.js b/dist/icomoon/twitch.js
new file mode 100644
index 000000000..493c5ddf9
--- /dev/null
+++ b/dist/icomoon/twitch.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twitch = void 0;
+var twitch = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1.5 0l-1.5 2.5v11.5h4v2h2l2-2h2.5l4.5-4.5v-9.5h-13.5zM13 8.5l-2.5 2.5h-2.5l-2 2v-2h-3v-9h10v6.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.5 4h1.5v4h-1.5v-4z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 4h1.5v4h-1.5v-4z"
+ }
+ }]
+};
+exports.twitch = twitch;
\ No newline at end of file
diff --git a/dist/icomoon/twitter.js b/dist/icomoon/twitter.js
new file mode 100644
index 000000000..70f399f06
--- /dev/null
+++ b/dist/icomoon/twitter.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twitter = void 0;
+var twitter = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 3.538c-0.588 0.263-1.222 0.438-1.884 0.516 0.678-0.406 1.197-1.050 1.444-1.816-0.634 0.375-1.338 0.65-2.084 0.797-0.6-0.638-1.453-1.034-2.397-1.034-1.813 0-3.281 1.469-3.281 3.281 0 0.256 0.028 0.506 0.084 0.747-2.728-0.138-5.147-1.444-6.766-3.431-0.281 0.484-0.444 1.050-0.444 1.65 0 1.138 0.578 2.144 1.459 2.731-0.538-0.016-1.044-0.166-1.488-0.409 0 0.013 0 0.028 0 0.041 0 1.591 1.131 2.919 2.634 3.219-0.275 0.075-0.566 0.116-0.866 0.116-0.212 0-0.416-0.022-0.619-0.059 0.419 1.303 1.631 2.253 3.066 2.281-1.125 0.881-2.538 1.406-4.078 1.406-0.266 0-0.525-0.016-0.784-0.047 1.456 0.934 3.181 1.475 5.034 1.475 6.037 0 9.341-5.003 9.341-9.341 0-0.144-0.003-0.284-0.009-0.425 0.641-0.459 1.197-1.038 1.637-1.697z"
+ }
+ }]
+};
+exports.twitter = twitter;
\ No newline at end of file
diff --git a/dist/icomoon/underline.js b/dist/icomoon/underline.js
new file mode 100644
index 000000000..f24138d4e
--- /dev/null
+++ b/dist/icomoon/underline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.underline = void 0;
+var underline = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 1h2v6.5c0 2.485-2.239 4.5-5 4.5s-5-2.015-5-4.5v-6.5h2v6.5c0 0.628 0.285 1.23 0.802 1.695 0.577 0.519 1.357 0.805 2.198 0.805s1.621-0.286 2.198-0.805c0.517-0.466 0.802-1.068 0.802-1.695v-6.5zM3 13h10v2h-10z"
+ }
+ }]
+};
+exports.underline = underline;
\ No newline at end of file
diff --git a/dist/icomoon/undo.js b/dist/icomoon/undo.js
new file mode 100644
index 000000000..8b480f957
--- /dev/null
+++ b/dist/icomoon/undo.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.undo = void 0;
+var undo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1c-2.209 0-4.209 0.896-5.657 2.343l-2.343-2.343v6h6l-2.243-2.243c1.086-1.086 2.586-1.757 4.243-1.757 3.314 0 6 2.686 6 6 0 1.792-0.786 3.401-2.032 4.5l1.323 1.5c1.661-1.466 2.709-3.611 2.709-6 0-4.418-3.582-8-8-8z"
+ }
+ }]
+};
+exports.undo = undo;
\ No newline at end of file
diff --git a/dist/icomoon/undo2.js b/dist/icomoon/undo2.js
new file mode 100644
index 000000000..cccc192c2
--- /dev/null
+++ b/dist/icomoon/undo2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.undo2 = void 0;
+var undo2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.904 16c1.777-3.219 2.076-8.13-4.904-7.966v3.966l-6-6 6-6v3.881c8.359-0.218 9.29 7.378 4.904 12.119z"
+ }
+ }]
+};
+exports.undo2 = undo2;
\ No newline at end of file
diff --git a/dist/icomoon/ungroup.js b/dist/icomoon/ungroup.js
new file mode 100644
index 000000000..0d45f2c02
--- /dev/null
+++ b/dist/icomoon/ungroup.js
@@ -0,0 +1,125 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ungroup = void 0;
+var ungroup = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 7.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.413 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.337-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 7.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.412 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.338-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 12.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.413 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.337-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11 12.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.412 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.338-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.251 2.5l1.749-1.749v-0.751h-0.751l-1.749 1.749-1.749-1.749h-0.751v0.751l1.749 1.749-1.749 1.749v0.751h0.751l1.749-1.749 1.749 1.749h0.751v-0.751z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 12h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 9h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 7h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 13h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13 10h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 6h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 3h1v2h-1v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 2h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 2h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 2h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 15h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M10 15h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M4 15h2v1h-2v-1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M1 15h2v1h-2v-1z"
+ }
+ }]
+};
+exports.ungroup = ungroup;
\ No newline at end of file
diff --git a/dist/icomoon/unlocked.js b/dist/icomoon/unlocked.js
new file mode 100644
index 000000000..c08b82d2d
--- /dev/null
+++ b/dist/icomoon/unlocked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.unlocked = void 0;
+var unlocked = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 1c1.654 0 3 1.346 3 3v3h-2v-3c0-0.551-0.449-1-1-1h-2c-0.551 0-1 0.449-1 1v3h0.25c0.412 0 0.75 0.338 0.75 0.75v7.5c0 0.412-0.338 0.75-0.75 0.75h-8.5c-0.412 0-0.75-0.338-0.75-0.75v-7.5c0-0.412 0.338-0.75 0.75-0.75h6.25v-3c0-1.654 1.346-3 3-3h2z"
+ }
+ }]
+};
+exports.unlocked = unlocked;
\ No newline at end of file
diff --git a/dist/icomoon/upload.js b/dist/icomoon/upload.js
new file mode 100644
index 000000000..31982869f
--- /dev/null
+++ b/dist/icomoon/upload.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.upload = void 0;
+var upload = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 9h2v-4h3l-4-4-4 4h3zM10 6.75v1.542l4.579 1.708-6.579 2.453-6.579-2.453 4.579-1.708v-1.542l-6 2.25v4l8 3 8-3v-4z"
+ }
+ }]
+};
+exports.upload = upload;
\ No newline at end of file
diff --git a/dist/icomoon/upload2.js b/dist/icomoon/upload2.js
new file mode 100644
index 000000000..33db4b190
--- /dev/null
+++ b/dist/icomoon/upload2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.upload2 = void 0;
+var upload2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0 14h16v1h-16zM16 12v1h-16v-1l2-4h4v2h4v-2h4zM3.5 5l4.5-4.5 4.5 4.5h-3.5v4h-2v-4z"
+ }
+ }]
+};
+exports.upload2 = upload2;
\ No newline at end of file
diff --git a/dist/icomoon/upload3.js b/dist/icomoon/upload3.js
new file mode 100644
index 000000000..12724442e
--- /dev/null
+++ b/dist/icomoon/upload3.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.upload3 = void 0;
+var upload3 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7.5 11h-7.5v4h15v-4h-7.5zM14 13h-2v-1h2v1zM3.5 5l4-4 4 4h-2.5v5h-3v-5z"
+ }
+ }]
+};
+exports.upload3 = upload3;
\ No newline at end of file
diff --git a/dist/icomoon/user.js b/dist/icomoon/user.js
new file mode 100644
index 000000000..c9cdc0620
--- /dev/null
+++ b/dist/icomoon/user.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user = void 0;
+var user = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 11.041v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h14c0-2.015-2.608-3.682-6-3.959z"
+ }
+ }]
+};
+exports.user = user;
\ No newline at end of file
diff --git a/dist/icomoon/userCheck.js b/dist/icomoon/userCheck.js
new file mode 100644
index 000000000..a7c27d97a
--- /dev/null
+++ b/dist/icomoon/userCheck.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userCheck = void 0;
+var userCheck = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 9.5l-4.5 4.5-1.5-1.5-1 1 2.5 2.5 5.5-5.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M7 12h5v-1.799c-1.050-0.613-2.442-1.033-4-1.16v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h7v-1z"
+ }
+ }]
+};
+exports.userCheck = userCheck;
\ No newline at end of file
diff --git a/dist/icomoon/userMinus.js b/dist/icomoon/userMinus.js
new file mode 100644
index 000000000..19d39334a
--- /dev/null
+++ b/dist/icomoon/userMinus.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userMinus = void 0;
+var userMinus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 11.5c0-2.363 1.498-4.383 3.594-5.159 0.254-0.571 0.406-1.206 0.406-1.841 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h6.208c-0.135-0.477-0.208-0.98-0.208-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 7c-2.485 0-4.5 2.015-4.5 4.5s2.015 4.5 4.5 4.5c2.485 0 4.5-2.015 4.5-4.5s-2.015-4.5-4.5-4.5zM14 12h-5v-1h5v1z"
+ }
+ }]
+};
+exports.userMinus = userMinus;
\ No newline at end of file
diff --git a/dist/icomoon/userPlus.js b/dist/icomoon/userPlus.js
new file mode 100644
index 000000000..96869cd25
--- /dev/null
+++ b/dist/icomoon/userPlus.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userPlus = void 0;
+var userPlus = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 11.5c0-2.363 1.498-4.383 3.594-5.159 0.254-0.571 0.406-1.206 0.406-1.841 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h6.208c-0.135-0.477-0.208-0.98-0.208-1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.5 7c-2.485 0-4.5 2.015-4.5 4.5s2.015 4.5 4.5 4.5c2.485 0 4.5-2.015 4.5-4.5s-2.015-4.5-4.5-4.5zM14 12h-2v2h-1v-2h-2v-1h2v-2h1v2h2v1z"
+ }
+ }]
+};
+exports.userPlus = userPlus;
\ No newline at end of file
diff --git a/dist/icomoon/userTie.js b/dist/icomoon/userTie.js
new file mode 100644
index 000000000..f25997079
--- /dev/null
+++ b/dist/icomoon/userTie.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.userTie = void 0;
+var userTie = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5 3c0-1.657 1.343-3 3-3s3 1.343 3 3c0 1.657-1.343 3-3 3s-3-1.343-3-3zM12.001 7h-0.553l-3.111 6.316 1.163-5.816-1.5-1.5-1.5 1.5 1.163 5.816-3.111-6.316h-0.554c-1.999 0-1.999 1.344-1.999 3v5h12v-5c0-1.656 0-3-1.999-3z"
+ }
+ }]
+};
+exports.userTie = userTie;
\ No newline at end of file
diff --git a/dist/icomoon/users.js b/dist/icomoon/users.js
new file mode 100644
index 000000000..7d8d27909
--- /dev/null
+++ b/dist/icomoon/users.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.users = void 0;
+var users = {
+ "viewBox": "0 0 18 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12 12.041v-0.825c1.102-0.621 2-2.168 2-3.716 0-2.485 0-4.5-3-4.5s-3 2.015-3 4.5c0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h14c0-2.015-2.608-3.682-6-3.959z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.112 12.427c0.864-0.565 1.939-0.994 3.122-1.256-0.235-0.278-0.449-0.588-0.633-0.922-0.475-0.863-0.726-1.813-0.726-2.748 0-1.344 0-2.614 0.478-3.653 0.464-1.008 1.299-1.633 2.488-1.867-0.264-1.195-0.968-1.98-2.841-1.98-3 0-3 2.015-3 4.5 0 1.548 0.898 3.095 2 3.716v0.825c-3.392 0.277-6 1.944-6 3.959h4.359c0.227-0.202 0.478-0.393 0.753-0.573z"
+ }
+ }]
+};
+exports.users = users;
\ No newline at end of file
diff --git a/dist/icomoon/videoCamera.js b/dist/icomoon/videoCamera.js
new file mode 100644
index 000000000..4ebdce3dd
--- /dev/null
+++ b/dist/icomoon/videoCamera.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.videoCamera = void 0;
+var videoCamera = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6 4.5c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5zM0 4.5c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5zM12 9.5v-1.5c0-0.55-0.45-1-1-1h-10c-0.55 0-1 0.45-1 1v5c0 0.55 0.45 1 1 1h10c0.55 0 1-0.45 1-1v-1.5l4 2.5v-7l-4 2.5zM10 12h-8v-3h8v3z"
+ }
+ }]
+};
+exports.videoCamera = videoCamera;
\ No newline at end of file
diff --git a/dist/icomoon/vimeo.js b/dist/icomoon/vimeo.js
new file mode 100644
index 000000000..536f1c102
--- /dev/null
+++ b/dist/icomoon/vimeo.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vimeo = void 0;
+var vimeo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.994 4.281c-0.072 1.556-1.159 3.691-3.263 6.397-2.175 2.825-4.016 4.241-5.522 4.241-0.931 0-1.722-0.859-2.366-2.581-0.431-1.578-0.859-3.156-1.291-4.734-0.478-1.722-0.991-2.581-1.541-2.581-0.119 0-0.538 0.253-1.256 0.753l-0.753-0.969c0.791-0.694 1.569-1.388 2.334-2.081 1.053-0.909 1.844-1.387 2.372-1.438 1.244-0.119 2.013 0.731 2.3 2.553 0.309 1.966 0.525 3.188 0.647 3.666 0.359 1.631 0.753 2.447 1.184 2.447 0.334 0 0.838-0.528 1.509-1.588 0.669-1.056 1.028-1.862 1.078-2.416 0.097-0.912-0.262-1.372-1.078-1.372-0.384 0-0.778 0.088-1.184 0.263 0.787-2.575 2.287-3.825 4.506-3.753 1.641 0.044 2.416 1.109 2.322 3.194z"
+ }
+ }]
+};
+exports.vimeo = vimeo;
\ No newline at end of file
diff --git a/dist/icomoon/vimeo2.js b/dist/icomoon/vimeo2.js
new file mode 100644
index 000000000..99398d0d4
--- /dev/null
+++ b/dist/icomoon/vimeo2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vimeo2 = void 0;
+var vimeo2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM13.463 5.313c-0.050 1.125-0.838 2.666-2.359 4.622-1.572 2.044-2.903 3.066-3.991 3.066-0.675 0-1.244-0.622-1.709-1.866-0.313-1.141-0.622-2.281-0.934-3.422-0.344-1.244-0.716-1.866-1.112-1.866-0.087 0-0.391 0.181-0.906 0.544l-0.544-0.7c0.572-0.5 1.134-1.003 1.687-1.503 0.763-0.656 1.331-1.003 1.712-1.038 0.9-0.087 1.453 0.528 1.662 1.844 0.225 1.422 0.381 2.303 0.469 2.65 0.259 1.178 0.544 1.766 0.856 1.766 0.241 0 0.606-0.381 1.091-1.147s0.744-1.347 0.778-1.747c0.069-0.659-0.191-0.991-0.778-0.991-0.278 0-0.563 0.063-0.856 0.191 0.569-1.859 1.653-2.766 3.256-2.712 1.188 0.034 1.747 0.803 1.678 2.309z"
+ }
+ }]
+};
+exports.vimeo2 = vimeo2;
\ No newline at end of file
diff --git a/dist/icomoon/vine.js b/dist/icomoon/vine.js
new file mode 100644
index 000000000..89b2ee343
--- /dev/null
+++ b/dist/icomoon/vine.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vine = void 0;
+var vine = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.012 7.953c-0.412 0.094-0.809 0.137-1.169 0.137-2.019 0-3.572-1.409-3.572-3.862 0-1.203 0.466-1.825 1.122-1.825 0.625 0 1.041 0.559 1.041 1.697 0 0.647-0.172 1.356-0.3 1.775 0 0 0.622 1.084 2.322 0.753 0.363-0.803 0.556-1.841 0.556-2.75 0-2.45-1.25-3.878-3.541-3.878-2.356 0-3.734 1.809-3.734 4.197 0 2.366 1.106 4.394 2.928 5.319-0.766 1.534-1.741 2.884-2.759 3.903-1.844-2.231-3.513-5.206-4.197-11.016h-2.722c1.259 9.675 5.006 12.756 6 13.347 0.559 0.337 1.044 0.322 1.556 0.031 0.806-0.456 3.222-2.875 4.563-5.703 0.563 0 1.238-0.066 1.909-0.219v-1.906z"
+ }
+ }]
+};
+exports.vine = vine;
\ No newline at end of file
diff --git a/dist/icomoon/vk.js b/dist/icomoon/vk.js
new file mode 100644
index 000000000..40bd01e31
--- /dev/null
+++ b/dist/icomoon/vk.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vk = void 0;
+var vk = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM12.959 11.2l-1.463 0.022c0 0-0.316 0.063-0.728-0.222-0.547-0.375-1.063-1.353-1.466-1.225-0.406 0.128-0.394 1.006-0.394 1.006s0.003 0.188-0.091 0.287c-0.1 0.109-0.3 0.131-0.3 0.131h-0.653c0 0-1.444 0.088-2.716-1.238-1.388-1.444-2.612-4.309-2.612-4.309s-0.072-0.188 0.006-0.278c0.087-0.103 0.322-0.109 0.322-0.109l1.566-0.009c0 0 0.147 0.025 0.253 0.103 0.088 0.063 0.134 0.184 0.134 0.184s0.253 0.641 0.588 1.219c0.653 1.128 0.959 1.375 1.181 1.256 0.322-0.175 0.225-1.597 0.225-1.597s0.006-0.516-0.162-0.744c-0.131-0.178-0.378-0.231-0.484-0.244-0.088-0.013 0.056-0.216 0.244-0.309 0.281-0.138 0.778-0.147 1.366-0.141 0.456 0.003 0.591 0.034 0.769 0.075 0.541 0.131 0.356 0.634 0.356 1.841 0 0.388-0.069 0.931 0.209 1.109 0.119 0.078 0.412 0.012 1.147-1.234 0.347-0.591 0.609-1.284 0.609-1.284s0.056-0.125 0.144-0.178c0.091-0.053 0.213-0.037 0.213-0.037l1.647-0.009c0 0 0.494-0.059 0.575 0.166 0.084 0.234-0.184 0.781-0.856 1.678-1.103 1.472-1.228 1.334-0.309 2.184 0.875 0.813 1.056 1.209 1.088 1.259 0.356 0.6-0.406 0.647-0.406 0.647z"
+ }
+ }]
+};
+exports.vk = vk;
\ No newline at end of file
diff --git a/dist/icomoon/volumeDecrease.js b/dist/icomoon/volumeDecrease.js
new file mode 100644
index 000000000..89054e6a5
--- /dev/null
+++ b/dist/icomoon/volumeDecrease.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeDecrease = void 0;
+var volumeDecrease = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 7h8v2h-8v-2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeDecrease = volumeDecrease;
\ No newline at end of file
diff --git a/dist/icomoon/volumeHigh.js b/dist/icomoon/volumeHigh.js
new file mode 100644
index 000000000..99bd22a0a
--- /dev/null
+++ b/dist/icomoon/volumeHigh.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeHigh = void 0;
+var volumeHigh = {
+ "viewBox": "0 0 17 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.907 14.407c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.369-1.369 2.123-3.19 2.123-5.127s-0.754-3.757-2.123-5.127c-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.653 1.653 2.563 3.85 2.563 6.187s-0.91 4.534-2.563 6.187c-0.146 0.146-0.338 0.22-0.53 0.22zM11.243 12.993c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 2.047-2.047 2.047-5.378 0-7.425-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773c-0.146 0.146-0.338 0.22-0.53 0.22v0zM8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeHigh = volumeHigh;
\ No newline at end of file
diff --git a/dist/icomoon/volumeIncrease.js b/dist/icomoon/volumeIncrease.js
new file mode 100644
index 000000000..13724b362
--- /dev/null
+++ b/dist/icomoon/volumeIncrease.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeIncrease = void 0;
+var volumeIncrease = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M16 9h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeIncrease = volumeIncrease;
\ No newline at end of file
diff --git a/dist/icomoon/volumeLow.js b/dist/icomoon/volumeLow.js
new file mode 100644
index 000000000..a6b036b11
--- /dev/null
+++ b/dist/icomoon/volumeLow.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeLow = void 0;
+var volumeLow = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeLow = volumeLow;
\ No newline at end of file
diff --git a/dist/icomoon/volumeMedium.js b/dist/icomoon/volumeMedium.js
new file mode 100644
index 000000000..1d0755f10
--- /dev/null
+++ b/dist/icomoon/volumeMedium.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeMedium = void 0;
+var volumeMedium = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.243 12.993c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 2.047-2.047 2.047-5.378 0-7.425-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.275 1.275 1.977 2.97 1.977 4.773s-0.702 3.498-1.977 4.773c-0.146 0.146-0.338 0.22-0.53 0.22v0zM8.578 11.578c-0.192 0-0.384-0.073-0.53-0.22-0.293-0.293-0.293-0.768 0-1.061 1.267-1.267 1.267-3.329 0-4.596-0.293-0.293-0.293-0.768 0-1.061s0.768-0.293 1.061 0c1.852 1.852 1.852 4.865 0 6.718-0.146 0.146-0.338 0.22-0.53 0.22z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeMedium = volumeMedium;
\ No newline at end of file
diff --git a/dist/icomoon/volumeMute.js b/dist/icomoon/volumeMute.js
new file mode 100644
index 000000000..93095852f
--- /dev/null
+++ b/dist/icomoon/volumeMute.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeMute = void 0;
+var volumeMute = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeMute = volumeMute;
\ No newline at end of file
diff --git a/dist/icomoon/volumeMute2.js b/dist/icomoon/volumeMute2.js
new file mode 100644
index 000000000..828ca7275
--- /dev/null
+++ b/dist/icomoon/volumeMute2.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeMute2 = void 0;
+var volumeMute2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15 9.674v1.326h-1.326l-1.674-1.674-1.674 1.674h-1.326v-1.326l1.674-1.674-1.674-1.674v-1.326h1.326l1.674 1.674 1.674-1.674h1.326v1.326l-1.674 1.674 1.674 1.674z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.5 15c-0.13 0-0.258-0.051-0.354-0.146l-3.854-3.854h-1.793c-0.276 0-0.5-0.224-0.5-0.5v-5c0-0.276 0.224-0.5 0.5-0.5h1.793l3.854-3.854c0.143-0.143 0.358-0.186 0.545-0.108s0.309 0.26 0.309 0.462v13c0 0.202-0.122 0.385-0.309 0.462-0.062 0.026-0.127 0.038-0.191 0.038z"
+ }
+ }]
+};
+exports.volumeMute2 = volumeMute2;
\ No newline at end of file
diff --git a/dist/icomoon/warning.js b/dist/icomoon/warning.js
new file mode 100644
index 000000000..7307fc19d
--- /dev/null
+++ b/dist/icomoon/warning.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.warning = void 0;
+var warning = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 1.45l6.705 13.363h-13.409l6.705-13.363zM8 0c-0.345 0-0.69 0.233-0.951 0.698l-6.829 13.611c-0.523 0.93-0.078 1.691 0.989 1.691h13.583c1.067 0 1.512-0.761 0.989-1.691h0l-6.829-13.611c-0.262-0.465-0.606-0.698-0.951-0.698v0z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 13c0 0.552-0.448 1-1 1s-1-0.448-1-1c0-0.552 0.448-1 1-1s1 0.448 1 1z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 11c-0.552 0-1-0.448-1-1v-3c0-0.552 0.448-1 1-1s1 0.448 1 1v3c0 0.552-0.448 1-1 1z"
+ }
+ }]
+};
+exports.warning = warning;
\ No newline at end of file
diff --git a/dist/icomoon/whatsapp.js b/dist/icomoon/whatsapp.js
new file mode 100644
index 000000000..5ee49cba0
--- /dev/null
+++ b/dist/icomoon/whatsapp.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.whatsapp = void 0;
+var whatsapp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.641 2.325c-1.497-1.5-3.488-2.325-5.609-2.325-4.369 0-7.925 3.556-7.925 7.928 0 1.397 0.366 2.763 1.059 3.963l-1.125 4.109 4.203-1.103c1.159 0.631 2.463 0.966 3.787 0.966h0.003c0 0 0 0 0 0 4.369 0 7.928-3.556 7.928-7.928 0-2.119-0.825-4.109-2.322-5.609zM8.034 14.525v0c-1.184 0-2.344-0.319-3.356-0.919l-0.241-0.144-2.494 0.653 0.666-2.431-0.156-0.25c-0.663-1.047-1.009-2.259-1.009-3.506 0-3.634 2.956-6.591 6.594-6.591 1.759 0 3.416 0.688 4.659 1.931 1.244 1.247 1.928 2.9 1.928 4.662-0.003 3.637-2.959 6.594-6.591 6.594zM11.647 9.588c-0.197-0.1-1.172-0.578-1.353-0.644s-0.313-0.1-0.447 0.1c-0.131 0.197-0.512 0.644-0.628 0.778-0.116 0.131-0.231 0.15-0.428 0.050s-0.838-0.309-1.594-0.984c-0.588-0.525-0.987-1.175-1.103-1.372s-0.013-0.306 0.088-0.403c0.091-0.088 0.197-0.231 0.297-0.347s0.131-0.197 0.197-0.331c0.066-0.131 0.034-0.247-0.016-0.347s-0.447-1.075-0.609-1.472c-0.159-0.388-0.325-0.334-0.447-0.341-0.116-0.006-0.247-0.006-0.378-0.006s-0.347 0.050-0.528 0.247c-0.181 0.197-0.694 0.678-0.694 1.653s0.709 1.916 0.809 2.050c0.1 0.131 1.397 2.134 3.384 2.991 0.472 0.203 0.841 0.325 1.128 0.419 0.475 0.15 0.906 0.128 1.247 0.078 0.381-0.056 1.172-0.478 1.338-0.941s0.166-0.859 0.116-0.941c-0.047-0.088-0.178-0.137-0.378-0.238z"
+ }
+ }]
+};
+exports.whatsapp = whatsapp;
\ No newline at end of file
diff --git a/dist/icomoon/wikipedia.js b/dist/icomoon/wikipedia.js
new file mode 100644
index 000000000..e9db7e7ad
--- /dev/null
+++ b/dist/icomoon/wikipedia.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wikipedia = void 0;
+var wikipedia = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.106 3.65c0 0.050-0.016 0.097-0.047 0.141-0.031 0.041-0.066 0.063-0.106 0.063-0.313 0.031-0.569 0.131-0.766 0.3-0.2 0.169-0.403 0.497-0.613 0.975l-3.225 7.272c-0.022 0.069-0.081 0.1-0.178 0.1-0.075 0-0.134-0.034-0.178-0.1l-1.809-3.781-2.081 3.781c-0.044 0.069-0.1 0.1-0.178 0.1-0.094 0-0.153-0.034-0.184-0.1l-3.166-7.269c-0.197-0.45-0.406-0.766-0.625-0.944s-0.525-0.291-0.916-0.331c-0.034 0-0.066-0.019-0.094-0.053-0.031-0.034-0.044-0.075-0.044-0.122 0-0.119 0.034-0.178 0.1-0.178 0.281 0 0.578 0.013 0.888 0.038 0.288 0.025 0.556 0.038 0.809 0.038 0.256 0 0.563-0.013 0.913-0.038 0.366-0.025 0.691-0.038 0.975-0.038 0.069 0 0.1 0.059 0.1 0.178s-0.022 0.175-0.063 0.175c-0.281 0.022-0.506 0.094-0.669 0.216s-0.244 0.281-0.244 0.481c0 0.1 0.034 0.228 0.1 0.378l2.616 5.912 1.487-2.806-1.384-2.903c-0.25-0.519-0.453-0.853-0.612-1.003s-0.403-0.241-0.728-0.275c-0.031 0-0.056-0.019-0.084-0.053s-0.041-0.075-0.041-0.122c0-0.119 0.028-0.178 0.088-0.178 0.281 0 0.541 0.013 0.778 0.038 0.228 0.025 0.469 0.038 0.728 0.038 0.253 0 0.519-0.013 0.803-0.038 0.291-0.025 0.578-0.038 0.859-0.038 0.069 0 0.1 0.059 0.1 0.178s-0.019 0.175-0.063 0.175c-0.566 0.038-0.847 0.2-0.847 0.481 0 0.125 0.066 0.322 0.197 0.588l0.916 1.859 0.912-1.7c0.125-0.241 0.191-0.444 0.191-0.606 0-0.388-0.281-0.594-0.847-0.619-0.050 0-0.075-0.059-0.075-0.175 0-0.044 0.012-0.081 0.037-0.119s0.050-0.056 0.075-0.056c0.203 0 0.45 0.013 0.747 0.038 0.281 0.025 0.516 0.038 0.697 0.038 0.131 0 0.322-0.013 0.575-0.031 0.319-0.028 0.588-0.044 0.803-0.044 0.050 0 0.075 0.050 0.075 0.15 0 0.134-0.047 0.203-0.137 0.203-0.328 0.034-0.594 0.125-0.794 0.272s-0.45 0.481-0.75 1.006l-1.222 2.237 1.644 3.35 2.428-5.647c0.084-0.206 0.125-0.397 0.125-0.569 0-0.412-0.281-0.631-0.847-0.659-0.050 0-0.075-0.059-0.075-0.175 0-0.119 0.037-0.178 0.113-0.178 0.206 0 0.45 0.013 0.734 0.038 0.262 0.025 0.481 0.038 0.656 0.038 0.188 0 0.4-0.013 0.644-0.038 0.253-0.025 0.481-0.038 0.684-0.038 0.063 0 0.094 0.050 0.094 0.15z"
+ }
+ }]
+};
+exports.wikipedia = wikipedia;
\ No newline at end of file
diff --git a/dist/icomoon/windows.js b/dist/icomoon/windows.js
new file mode 100644
index 000000000..31e3e36b6
--- /dev/null
+++ b/dist/icomoon/windows.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.windows = void 0;
+var windows = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M6.441 7.999c-0.745-0.383-1.47-0.577-2.154-0.577-0.093 0-0.187 0.003-0.28 0.011-0.873 0.072-1.671 0.303-2.184 0.482-0.136 0.050-0.276 0.103-0.419 0.161l-1.403 4.866c0.964-0.357 1.817-0.53 2.598-0.53 1.263 0 2.18 0.472 2.937 0.958 0.359-1.217 1.219-4.158 1.476-5.036-0.187-0.114-0.376-0.228-0.571-0.333zM8.255 9.235l-1.413 4.909c0.419 0.24 1.83 1.001 2.91 1.001 0.872 0 1.848-0.223 2.982-0.684l1.349-4.718c-0.916 0.296-1.795 0.446-2.617 0.446-1.499 0-2.549-0.486-3.211-0.952zM4.575 5.762c1.205 0.012 2.096 0.472 2.835 0.945l1.449-4.958c-0.305-0.175-1.106-0.611-1.685-0.759-0.381-0.089-0.782-0.135-1.206-0.135-0.809 0.015-1.694 0.218-2.701 0.622l-1.382 4.853c1.013-0.382 1.885-0.568 2.689-0.568 0.001 0 0.002 0 0.002 0zM16 3.096c-0.919 0.357-1.816 0.539-2.672 0.539-1.433 0-2.489-0.497-3.173-0.974l-1.437 4.972c0.965 0.62 2.005 0.936 3.096 0.936 0.89 0 1.812-0.214 2.742-0.636l-0.003-0.035 0.058-0.014 1.39-4.788z"
+ }
+ }]
+};
+exports.windows = windows;
\ No newline at end of file
diff --git a/dist/icomoon/windows8.js b/dist/icomoon/windows8.js
new file mode 100644
index 000000000..a53d95733
--- /dev/null
+++ b/dist/icomoon/windows8.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.windows8 = void 0;
+var windows8 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M0.005 8l-0.005-4.876 6-0.815v5.691zM7 2.164l7.998-1.164v7h-7.998zM15 9l-0.002 7-7.998-1.125v-5.875zM6 14.747l-5.995-0.822-0-4.926h5.995z"
+ }
+ }]
+};
+exports.windows8 = windows8;
\ No newline at end of file
diff --git a/dist/icomoon/wink.js b/dist/icomoon/wink.js
new file mode 100644
index 000000000..1d03935b2
--- /dev/null
+++ b/dist/icomoon/wink.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wink = void 0;
+var wink = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM8.48 11.11c2.191-0.433 3.892-1.43 4.507-2.759-0.338 2.624-2.524 4.649-5.17 4.649-1.863 0-3.498-1.004-4.42-2.515 1.1 0.86 3.040 1.028 5.083 0.625zM10 5.5c0-0.828 0.448-1.5 1-1.5s1 0.672 1 1.5c0 0.828-0.448 1.5-1 1.5s-1-0.672-1-1.5zM5.5 5.805c-0.653 0-1.208 0.245-1.414 0.586-0.055-0.092-0.086-0.503-0.086-0.605 0-0.485 0.672-0.879 1.5-0.879s1.5 0.394 1.5 0.879c0 0.103-0.030 0.514-0.086 0.605-0.206-0.341-0.761-0.586-1.414-0.586z"
+ }
+ }]
+};
+exports.wink = wink;
\ No newline at end of file
diff --git a/dist/icomoon/wink2.js b/dist/icomoon/wink2.js
new file mode 100644
index 000000000..1c8d3ab6e
--- /dev/null
+++ b/dist/icomoon/wink2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wink2 = void 0;
+var wink2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.418 0 8-3.582 8-8s-3.582-8-8-8zM11 4c0.552 0 1 0.672 1 1.5s-0.448 1.5-1 1.5-1-0.672-1-1.5 0.448-1.5 1-1.5zM5.5 4.876c0.932 0 1.594 0.349 1.594 0.895 0 0.116 0.060 0.672-0.003 0.775-0.232-0.384-0.856-0.659-1.591-0.659s-1.359 0.275-1.591 0.659c-0.062-0.103-0.003-0.659-0.003-0.775 0-0.546 0.662-0.895 1.594-0.895zM7.818 13c-1.863 0-3.498-1.004-4.42-2.515 1.1 0.86 3.040 1.028 5.083 0.625 2.191-0.433 3.892-1.43 4.507-2.759-0.338 2.624-2.524 4.649-5.17 4.649z"
+ }
+ }]
+};
+exports.wink2 = wink2;
\ No newline at end of file
diff --git a/dist/icomoon/woman.js b/dist/icomoon/woman.js
new file mode 100644
index 000000000..f3b8400d2
--- /dev/null
+++ b/dist/icomoon/woman.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.woman = void 0;
+var woman = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9 1.5c0 0.828-0.672 1.5-1.5 1.5s-1.5-0.672-1.5-1.5c0-0.828 0.672-1.5 1.5-1.5s1.5 0.672 1.5 1.5z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M11.234 8l0.766-0.555-2.083-3.221c-0.092-0.14-0.249-0.225-0.417-0.225h-4c-0.168 0-0.325 0.084-0.417 0.225l-2.083 3.221 0.766 0.555 1.729-2.244 0.601 1.402-2.095 3.841h1.917l0.333 5h1v-5h0.5v5h1l0.333-5h1.917l-2.095-3.842 0.601-1.402 1.729 2.244z"
+ }
+ }]
+};
+exports.woman = woman;
\ No newline at end of file
diff --git a/dist/icomoon/wondering.js b/dist/icomoon/wondering.js
new file mode 100644
index 000000000..803e404da
--- /dev/null
+++ b/dist/icomoon/wondering.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wondering = void 0;
+var wondering = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zM8 1.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5-6.5-2.91-6.5-6.5 2.91-6.5 6.5-6.5zM11.652 9.4l0.351 1.2-6.828 2-0.351-1.2zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1zM10 5c0-0.552 0.448-1 1-1s1 0.448 1 1c0 0.552-0.448 1-1 1s-1-0.448-1-1z"
+ }
+ }]
+};
+exports.wondering = wondering;
\ No newline at end of file
diff --git a/dist/icomoon/wondering2.js b/dist/icomoon/wondering2.js
new file mode 100644
index 000000000..b319a7988
--- /dev/null
+++ b/dist/icomoon/wondering2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wondering2 = void 0;
+var wondering2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM11 4c0.552 0 1 0.448 1 1s-0.448 1-1 1-1-0.448-1-1 0.448-1 1-1zM4 5c0-0.552 0.448-1 1-1s1 0.448 1 1-0.448 1-1 1-1-0.448-1-1zM5.176 12.6l-0.351-1.2 6.828-2 0.351 1.2-6.828 2z"
+ }
+ }]
+};
+exports.wondering2 = wondering2;
\ No newline at end of file
diff --git a/dist/icomoon/wordpress.js b/dist/icomoon/wordpress.js
new file mode 100644
index 000000000..593468441
--- /dev/null
+++ b/dist/icomoon/wordpress.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wordpress = void 0;
+var wordpress = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2 8c0 2.313 1.38 4.312 3.382 5.259l-2.862-7.637c-0.333 0.727-0.52 1.531-0.52 2.378zM12.050 7.705c0-0.722-0.266-1.222-0.495-1.612-0.304-0.482-0.589-0.889-0.589-1.371 0-0.537 0.418-1.037 1.008-1.037 0.027 0 0.052 0.003 0.078 0.005-1.067-0.953-2.49-1.534-4.052-1.534-2.096 0-3.94 1.048-5.013 2.634 0.141 0.004 0.274 0.007 0.386 0.007 0.627 0 1.599-0.074 1.599-0.074 0.323-0.018 0.361 0.444 0.038 0.482 0 0-0.325 0.037-0.687 0.055l2.185 6.33 1.313-3.835-0.935-2.495c-0.323-0.019-0.629-0.055-0.629-0.055-0.323-0.019-0.285-0.5 0.038-0.482 0 0 0.991 0.074 1.58 0.074 0.627 0 1.599-0.074 1.599-0.074 0.323-0.018 0.362 0.444 0.038 0.482 0 0-0.326 0.037-0.687 0.055l2.168 6.282 0.599-1.947c0.259-0.809 0.457-1.389 0.457-1.889zM8.105 8.511l-1.8 5.095c0.538 0.154 1.106 0.238 1.695 0.238 0.699 0 1.369-0.117 1.992-0.331-0.016-0.025-0.031-0.052-0.043-0.081l-1.844-4.921zM13.265 5.196c0.026 0.186 0.040 0.386 0.040 0.601 0 0.593-0.114 1.259-0.456 2.093l-1.833 5.16c1.784-1.013 2.983-2.895 2.983-5.051 0-1.016-0.267-1.971-0.735-2.803zM8 0c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zM8 15c-3.866 0-7-3.134-7-7s3.134-7 7-7 7 3.134 7 7-3.134 7-7 7z"
+ }
+ }]
+};
+exports.wordpress = wordpress;
\ No newline at end of file
diff --git a/dist/icomoon/wrench.js b/dist/icomoon/wrench.js
new file mode 100644
index 000000000..445ffc735
--- /dev/null
+++ b/dist/icomoon/wrench.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wrench = void 0;
+var wrench = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.671 12.779l-7.196-6.168c0.335-0.63 0.525-1.348 0.525-2.111 0-2.485-2.015-4.5-4.5-4.5-0.455 0-0.893 0.068-1.307 0.193l2.6 2.6c0.389 0.389 0.389 1.025 0 1.414l-1.586 1.586c-0.389 0.389-1.025 0.389-1.414 0l-2.6-2.6c-0.125 0.414-0.193 0.852-0.193 1.307 0 2.485 2.015 4.5 4.5 4.5 0.763 0 1.482-0.19 2.111-0.525l6.168 7.196c0.358 0.418 0.969 0.441 1.358 0.052l1.586-1.586c0.389-0.389 0.365-1-0.052-1.358z"
+ }
+ }]
+};
+exports.wrench = wrench;
\ No newline at end of file
diff --git a/dist/icomoon/xing.js b/dist/icomoon/xing.js
new file mode 100644
index 000000000..19d6ffc10
--- /dev/null
+++ b/dist/icomoon/xing.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.xing = void 0;
+var xing = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M14.5 0h-13c-0.825 0-1.5 0.675-1.5 1.5v13c0 0.825 0.675 1.5 1.5 1.5h13c0.825 0 1.5-0.675 1.5-1.5v-13c0-0.825-0.675-1.5-1.5-1.5zM4.884 10.406h-1.728c-0.103 0-0.181-0.047-0.225-0.119-0.047-0.075-0.047-0.169 0-0.266l1.838-3.244c0.003-0.003 0.003-0.006 0-0.009l-1.169-2.025c-0.047-0.097-0.056-0.191-0.009-0.266 0.044-0.072 0.131-0.109 0.237-0.109h1.731c0.266 0 0.397 0.172 0.481 0.325 0 0 1.181 2.063 1.191 2.075-0.069 0.125-1.869 3.303-1.869 3.303-0.094 0.162-0.219 0.334-0.478 0.334zM13.069 2.378l-3.831 6.775c-0.003 0.003-0.003 0.009 0 0.012l2.441 4.456c0.047 0.097 0.050 0.194 0.003 0.269-0.044 0.072-0.125 0.109-0.231 0.109h-1.728c-0.266 0-0.397-0.175-0.484-0.328 0 0-2.453-4.5-2.459-4.512 0.122-0.216 3.85-6.828 3.85-6.828 0.094-0.166 0.206-0.328 0.463-0.328h1.753c0.103 0 0.188 0.041 0.231 0.109 0.044 0.072 0.044 0.169-0.006 0.266z"
+ }
+ }]
+};
+exports.xing = xing;
\ No newline at end of file
diff --git a/dist/icomoon/xing2.js b/dist/icomoon/xing2.js
new file mode 100644
index 000000000..2c61b6edc
--- /dev/null
+++ b/dist/icomoon/xing2.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.xing2 = void 0;
+var xing2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M2.431 3.159c-0.138 0-0.256 0.050-0.316 0.144-0.059 0.1-0.050 0.225 0.013 0.353l1.559 2.7c0.003 0.006 0.003 0.009 0 0.013l-2.45 4.331c-0.063 0.128-0.059 0.256 0 0.353 0.059 0.094 0.163 0.156 0.3 0.156h2.306c0.344 0 0.513-0.234 0.628-0.447 0 0 2.397-4.241 2.491-4.406-0.009-0.016-1.588-2.766-1.588-2.766-0.116-0.203-0.287-0.431-0.644-0.431h-2.3z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M12.125 0c-0.344 0-0.494 0.216-0.619 0.441 0 0-4.972 8.816-5.134 9.106 0.009 0.016 3.278 6.016 3.278 6.016 0.116 0.203 0.291 0.441 0.644 0.441h2.306c0.137 0 0.247-0.053 0.306-0.147 0.063-0.1 0.059-0.228-0.006-0.356l-3.25-5.947c-0.003-0.006-0.003-0.009 0-0.016l5.109-9.034c0.063-0.128 0.066-0.256 0.006-0.356-0.059-0.094-0.169-0.147-0.306-0.147h-2.334z"
+ }
+ }]
+};
+exports.xing2 = xing2;
\ No newline at end of file
diff --git a/dist/icomoon/yahoo.js b/dist/icomoon/yahoo.js
new file mode 100644
index 000000000..1c598759b
--- /dev/null
+++ b/dist/icomoon/yahoo.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yahoo = void 0;
+var yahoo = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.878 9.203v0c1.759-3.088 4.666-8.125 5.463-9.203-0.35 0.234-0.887 0.353-1.381 0.466l-0.747-0.466c-0.6 1.119-2.813 4.734-4.222 7.050-1.428-2.366-3.119-5.097-4.222-7.050-0.875 0.188-1.237 0.197-2.109 0v0 0c0 0 0 0 0 0v0c1.731 2.606 4.503 7.572 5.447 9.203v0l-0.128 6.797 1.013-0.466v-0.012l1.012 0.478-0.125-6.797z"
+ }
+ }]
+};
+exports.yahoo = yahoo;
\ No newline at end of file
diff --git a/dist/icomoon/yahoo2.js b/dist/icomoon/yahoo2.js
new file mode 100644
index 000000000..dde6ad84d
--- /dev/null
+++ b/dist/icomoon/yahoo2.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yahoo2 = void 0;
+var yahoo2 = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M8.019 1.087c-2.828 0-5.5-0.372-8.019-1.087 0 5.653 0 14.581 0 16 2.522-0.716 5.194-1.088 8.019-1.088 2.794 0 5.459 0.363 7.981 1.088 0-5.444 0-10.153 0-16-2.522 0.725-5.184 1.087-7.981 1.087zM12.45 2.453l-0.097 0.153c-0.091 0.144-0.172 0.266-0.284 0.438-0.15 0.225-0.431 0.672-0.769 1.247-0.094 0.159-0.209 0.35-0.328 0.556-0.228 0.384-0.484 0.819-0.688 1.162-0.084 0.147-0.169 0.297-0.256 0.447-0.225 0.391-0.456 0.794-0.678 1.181-0.228 0.403-0.453 0.8-0.678 1.194v0.397c0 0.55 0.012 1.15 0.031 1.684 0.009 0.244 0.019 0.678 0.031 1.137 0.012 0.547 0.025 1.113 0.041 1.4l0.003 0.088v0.009l-0.094-0.025c-0.037-0.009-0.072-0.019-0.109-0.028-0.113-0.025-0.234-0.044-0.353-0.056-0.072-0.006-0.147-0.009-0.222-0.009 0 0 0 0 0 0s0 0 0 0c-0.075 0-0.15 0.003-0.222 0.009-0.119 0.012-0.241 0.031-0.353 0.056-0.037 0.009-0.075 0.019-0.109 0.028l-0.094 0.025v-0.009l0.003-0.088c0.013-0.284 0.028-0.853 0.041-1.4 0.009-0.459 0.022-0.894 0.031-1.137 0.022-0.537 0.031-1.134 0.031-1.684v-0.397c-0.225-0.397-0.45-0.791-0.678-1.194-0.222-0.391-0.453-0.791-0.675-1.181-0.088-0.15-0.172-0.3-0.256-0.447-0.2-0.347-0.459-0.781-0.688-1.162-0.122-0.203-0.237-0.397-0.328-0.556-0.338-0.575-0.619-1.019-0.769-1.247-0.112-0.172-0.194-0.294-0.284-0.438l-0.097-0.153 0.175 0.050c0.222 0.063 0.45 0.094 0.694 0.094s0.478-0.031 0.697-0.094l0.053-0.016 0.028 0.047c0.431 0.778 1.591 2.684 2.284 3.825 0.237 0.394 0.428 0.703 0.522 0.862 0 0 0 0 0-0.003 0 0 0 0 0 0.003 0.094-0.156 0.284-0.469 0.522-0.862 0.694-1.138 1.853-3.044 2.284-3.825l0.028-0.047 0.053 0.016c0.219 0.063 0.453 0.094 0.697 0.094s0.472-0.031 0.694-0.094l0.166-0.050z"
+ }
+ }]
+};
+exports.yahoo2 = yahoo2;
\ No newline at end of file
diff --git a/dist/icomoon/yelp.js b/dist/icomoon/yelp.js
new file mode 100644
index 000000000..b576b234c
--- /dev/null
+++ b/dist/icomoon/yelp.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yelp = void 0;
+var yelp = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.514 10.21c-0.27 0.272-0.042 0.768-0.042 0.768l2.033 3.394c0 0 0.334 0.447 0.623 0.447 0.29 0 0.577-0.239 0.577-0.239l1.607-2.297c0 0 0.162-0.29 0.166-0.544 0.006-0.361-0.538-0.46-0.538-0.46l-3.805-1.222c-0 0-0.373-0.099-0.621 0.152zM9.321 8.5c0.195 0.33 0.732 0.234 0.732 0.234l3.796-1.109c0 0 0.517-0.21 0.591-0.491 0.072-0.281-0.085-0.619-0.085-0.619l-1.814-2.137c0 0-0.157-0.27-0.483-0.297-0.36-0.031-0.581 0.405-0.581 0.405l-2.145 3.375c0 0-0.19 0.336-0.010 0.64zM7.527 7.184c0.447-0.11 0.518-0.759 0.518-0.759l-0.030-5.404c0 0-0.067-0.667-0.367-0.847-0.47-0.285-0.609-0.136-0.744-0.116l-3.151 1.171c0 0-0.309 0.102-0.469 0.36-0.23 0.365 0.233 0.899 0.233 0.899l3.276 4.465c0 0 0.323 0.334 0.735 0.233zM6.749 9.371c0.011-0.417-0.5-0.667-0.5-0.667l-3.387-1.711c0 0-0.502-0.207-0.746-0.063-0.187 0.11-0.352 0.31-0.368 0.486l-0.221 2.716c0 0-0.033 0.471 0.089 0.685 0.173 0.304 0.741 0.092 0.741 0.092l3.955-0.874c0.154-0.103 0.423-0.113 0.438-0.664zM7.732 10.837c-0.339-0.174-0.746 0.187-0.746 0.187l-2.648 2.915c0 0-0.33 0.446-0.246 0.72 0.079 0.257 0.21 0.384 0.396 0.474l2.659 0.839c0 0 0.322 0.067 0.567-0.004 0.347-0.1 0.283-0.643 0.283-0.643l0.060-3.947c-0 0-0.014-0.38-0.324-0.541z"
+ }
+ }]
+};
+exports.yelp = yelp;
\ No newline at end of file
diff --git a/dist/icomoon/youtube.js b/dist/icomoon/youtube.js
new file mode 100644
index 000000000..f3f57123a
--- /dev/null
+++ b/dist/icomoon/youtube.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.youtube = void 0;
+var youtube = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.841 4.8c0 0-0.156-1.103-0.637-1.587-0.609-0.637-1.291-0.641-1.603-0.678-2.237-0.163-5.597-0.163-5.597-0.163h-0.006c0 0-3.359 0-5.597 0.163-0.313 0.038-0.994 0.041-1.603 0.678-0.481 0.484-0.634 1.587-0.634 1.587s-0.159 1.294-0.159 2.591v1.213c0 1.294 0.159 2.591 0.159 2.591s0.156 1.103 0.634 1.588c0.609 0.637 1.409 0.616 1.766 0.684 1.281 0.122 5.441 0.159 5.441 0.159s3.363-0.006 5.6-0.166c0.313-0.037 0.994-0.041 1.603-0.678 0.481-0.484 0.637-1.588 0.637-1.588s0.159-1.294 0.159-2.591v-1.213c-0.003-1.294-0.162-2.591-0.162-2.591zM6.347 10.075v-4.497l4.322 2.256-4.322 2.241z"
+ }
+ }]
+};
+exports.youtube = youtube;
\ No newline at end of file
diff --git a/dist/icomoon/youtube2.js b/dist/icomoon/youtube2.js
new file mode 100644
index 000000000..634c00d2b
--- /dev/null
+++ b/dist/icomoon/youtube2.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.youtube2 = void 0;
+var youtube2 = {
+ "viewBox": "0 0 40 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M5.375 2.647c0.003-0.014 0.005-0.023 0.006-0.028l0.016-0.118-0.74-0.004c-0.668-0.004-0.873 0-0.891 0.017-0.009 0.008-0.24 0.885-0.651 2.473-0.196 0.758-0.361 1.363-0.367 1.345s-0.24-0.883-0.522-1.922c-0.281-1.039-0.517-1.894-0.524-1.901-0.010-0.010-0.906-0.014-1.632-0.008-0.105 0.001-0.164-0.205 0.938 3.299 0.152 0.485 0.381 1.172 0.507 1.526 0.146 0.408 0.25 0.724 0.321 0.987 0.126 0.501 0.13 0.815 0.103 1.182-0.032 0.423-0.036 3.413-0.005 3.463 0.024 0.038 1.425 0.056 1.558 0.020 0.021-0.006 0.035-0.026 0.045-0.139 0.033-0.097 0.036-0.484 0.036-2.090v-2.051l0.090-0.283c0.059-0.185 0.206-0.672 0.328-1.082s0.269-0.9 0.327-1.090c0.529-1.724 1.033-3.419 1.047-3.516l0.011-0.079z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M13.221 5.135l-0 0.107-0.017 0-0.009 2.953-0.009 2.863-0.229 0.233c-0.257 0.261-0.462 0.361-0.648 0.314-0.203-0.051-0.197 0.028-0.214-3.356l-0.016-3.115h-1.474v0.107h-0.017v3.38c0 3.621-0 3.619 0.184 3.982 0.146 0.29 0.36 0.431 0.725 0.479h0c0.481 0.064 1-0.154 1.481-0.622l0.209-0.203v0.351c0 0.303 0.009 0.353 0.064 0.368 0.090 0.025 1.206 0.027 1.326 0.002l0.1-0.021v-0.104l0.017-0.003v-7.736l-1.472 0.020z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M9.483 6.661c-0.14-0.599-0.401-1.002-0.832-1.28-0.676-0.437-1.449-0.484-2.165-0.13-0.522 0.258-0.859 0.686-1.032 1.314-0.021 0.075-0.036 0.138-0.047 0.231-0.044 0.222-0.049 0.552-0.061 2.093-0.018 2.374 0.010 2.656 0.307 3.195 0.292 0.529 0.897 0.917 1.556 0.997 0.198 0.024 0.6-0.013 0.832-0.078 0.525-0.146 1.029-0.561 1.252-1.032 0.096-0.204 0.154-0.345 0.189-0.604 0.065-0.353 0.070-0.925 0.070-2.381-0-1.857-0.006-2.060-0.068-2.326zM7.802 11.5c-0.124 0.094-0.34 0.135-0.515 0.098-0.135-0.029-0.318-0.241-0.374-0.434-0.070-0.241-0.075-3.594-0.015-4.251 0.1-0.329 0.378-0.501 0.682-0.419 0.237 0.064 0.358 0.212 0.427 0.523 0.051 0.231 0.057 0.518 0.046 2.207-0.007 1.12-0.011 1.668-0.048 1.962-0.037 0.185-0.099 0.235-0.203 0.315z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M35.944 8.346h0.712l-0.011-0.645c-0.011-0.592-0.020-0.659-0.099-0.82-0.125-0.253-0.309-0.366-0.601-0.366-0.351 0-0.573 0.17-0.678 0.518-0.045 0.148-0.092 1.167-0.058 1.255 0.019 0.049 0.121 0.058 0.735 0.058z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M31.184 6.879c-0.095-0.191-0.272-0.286-0.477-0.278-0.16 0.006-0.337 0.073-0.508 0.203l-0.127 0.097v4.634l0.127 0.097c0.288 0.22 0.604 0.266 0.822 0.12 0.086-0.058 0.142-0.137 0.186-0.263 0.057-0.164 0.062-0.375 0.055-2.325-0.008-2.032-0.012-2.152-0.078-2.285z"
+ }
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M40.014 4.791c-0.142-1.701-0.255-2.253-0.605-2.962-0.465-0.939-1.136-1.434-2.092-1.543-0.739-0.084-3.521-0.203-6.094-0.26-4.456-0.099-11.782 0.092-12.718 0.331-0.432 0.111-0.757 0.299-1.094 0.634-0.591 0.588-0.944 1.432-1.085 2.6-0.323 2.666-0.33 5.886-0.019 8.649 0.134 1.188 0.41 1.96 0.928 2.596 0.323 0.397 0.881 0.734 1.379 0.835 0.35 0.071 2.1 0.169 4.65 0.26 0.38 0.014 1.385 0.037 2.235 0.052 1.77 0.031 5.025 0.013 6.886-0.039 1.252-0.035 3.534-0.128 3.961-0.161 0.12-0.009 0.398-0.027 0.618-0.039 0.739-0.042 1.209-0.196 1.65-0.543 0.571-0.449 1.013-1.278 1.2-2.251 0.177-0.92 0.295-2.559 0.319-4.42 0.020-1.555-0.007-2.393-0.119-3.741zM22.27 4.175l-0.828 0.010-0.036 8.83-0.718 0.009c-0.555 0.008-0.724-0.001-0.737-0.036-0.010-0.025-0.021-2.016-0.026-4.424l-0.009-4.379-1.617-0.020v-1.38l4.779 0.019 0.020 1.36-0.828 0.010zM27.347 9.236v3.797h-1.308v-0.4c0-0.301-0.011-0.4-0.047-0.4-0.026 0-0.144 0.099-0.263 0.22-0.259 0.263-0.565 0.474-0.827 0.572-0.542 0.203-1.056 0.084-1.275-0.293-0.201-0.345-0.204-0.423-0.204-4.005v-3.29h1.307l0.010 3.098c0.010 3.044 0.011 3.1 0.084 3.224 0.097 0.164 0.244 0.209 0.478 0.144 0.138-0.038 0.232-0.105 0.455-0.327l0.282-0.28v-5.859h1.308v3.797zM32.449 12.491c-0.115 0.257-0.372 0.508-0.583 0.57-0.549 0.162-0.99 0.030-1.499-0.449-0.158-0.149-0.305-0.269-0.327-0.269-0.027 0-0.041 0.116-0.041 0.345v0.345h-1.308v-10.248h1.308v1.672c0 0.919 0.012 1.672 0.027 1.672s0.153-0.122 0.307-0.27c0.354-0.341 0.649-0.491 1.024-0.519 0.669-0.051 1.068 0.294 1.25 1.080 0.057 0.245 0.062 0.525 0.062 2.798-0 2.768-0 2.78-0.221 3.273zM37.984 10.971c-0.012 0.285-0.046 0.612-0.077 0.727-0.182 0.674-0.666 1.152-1.366 1.348-0.942 0.264-1.98-0.168-2.394-0.997-0.232-0.465-0.241-0.558-0.241-2.831 0-1.853 0.007-2.081 0.066-2.334 0.168-0.715 0.584-1.178 1.289-1.435 0.204-0.074 0.417-0.113 0.63-0.117 0.761-0.016 1.515 0.393 1.832 1.059 0.213 0.449 0.24 0.642 0.261 1.908l0.019 1.136-2.789 0.019-0.010 0.763c-0.015 1.077 0.058 1.408 0.349 1.603 0.244 0.165 0.62 0.152 0.824-0.027 0.192-0.168 0.246-0.349 0.265-0.877l0.017-0.463h1.347l-0.022 0.518z"
+ }
+ }]
+};
+exports.youtube2 = youtube2;
\ No newline at end of file
diff --git a/dist/icomoon/zoomIn.js b/dist/icomoon/zoomIn.js
new file mode 100644
index 000000000..c36fbe2f4
--- /dev/null
+++ b/dist/icomoon/zoomIn.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.zoomIn = void 0;
+var zoomIn = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4zM7 3h-2v2h-2v2h2v2h2v-2h2v-2h-2z"
+ }
+ }]
+};
+exports.zoomIn = zoomIn;
\ No newline at end of file
diff --git a/dist/icomoon/zoomOut.js b/dist/icomoon/zoomOut.js
new file mode 100644
index 000000000..c360f282a
--- /dev/null
+++ b/dist/icomoon/zoomOut.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.zoomOut = void 0;
+var zoomOut = {
+ "viewBox": "0 0 16 16",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#000000",
+ "d": "M15.504 13.616l-3.79-3.223c-0.392-0.353-0.811-0.514-1.149-0.499 0.895-1.048 1.435-2.407 1.435-3.893 0-3.314-2.686-6-6-6s-6 2.686-6 6 2.686 6 6 6c1.486 0 2.845-0.54 3.893-1.435-0.016 0.338 0.146 0.757 0.499 1.149l3.223 3.79c0.552 0.613 1.453 0.665 2.003 0.115s0.498-1.452-0.115-2.003zM6 10c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4zM3 5h6v2h-6z"
+ }
+ }]
+};
+exports.zoomOut = zoomOut;
\ No newline at end of file
diff --git a/dist/iconic/alignBottom.js b/dist/iconic/alignBottom.js
new file mode 100644
index 000000000..69a4f42f2
--- /dev/null
+++ b/dist/iconic/alignBottom.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignBottom = void 0;
+var alignBottom = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm6 0c-.05 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm-3 2c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-1.81zm-3.09 4v1h8v-1h-8z"
+ }
+ }]
+};
+exports.alignBottom = alignBottom;
\ No newline at end of file
diff --git a/dist/iconic/alignCenter.js b/dist/iconic/alignCenter.js
new file mode 100644
index 000000000..de2455961
--- /dev/null
+++ b/dist/iconic/alignCenter.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignCenter = void 0;
+var alignCenter = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v1.91h2v-1.91c0-.06-.04-.09-.09-.09h-1.81zm6 0c-.05 0-.09.04-.09.09v1.91h2v-1.91c0-.06-.04-.09-.09-.09h-1.81zm-3 1c-.06 0-.09.04-.09.09v.91h2v-.91c0-.05-.04-.09-.09-.09h-1.81zm-3.09 2v1h8v-1h-8zm0 2v1.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-1.91h-2zm3 0v.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-.91h-2zm3 0v1.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-1.91h-2z"
+ }
+ }]
+};
+exports.alignCenter = alignCenter;
\ No newline at end of file
diff --git a/dist/iconic/alignTop.js b/dist/iconic/alignTop.js
new file mode 100644
index 000000000..f7ab7b245
--- /dev/null
+++ b/dist/iconic/alignTop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alignTop = void 0;
+var alignTop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm.09 2c-.06 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm3 0c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-1.81zm3 0c-.05 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81z"
+ }
+ }]
+};
+exports.alignTop = alignTop;
\ No newline at end of file
diff --git a/dist/iconic/alt.js b/dist/iconic/alt.js
new file mode 100644
index 000000000..876f096b3
--- /dev/null
+++ b/dist/iconic/alt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alt = void 0;
+var alt = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2c3.33 0 6 2.67 6 6h2c0-4.41-3.59-8-8-8zm0 3v2c1.67 0 3 1.33 3 3h2c0-2.75-2.25-5-5-5zm0 3v2h2c0-1.11-.9-2-2-2z"
+ }
+ }]
+};
+exports.alt = alt;
\ No newline at end of file
diff --git a/dist/iconic/aperture.js b/dist/iconic/aperture.js
new file mode 100644
index 000000000..ac11768e5
--- /dev/null
+++ b/dist/iconic/aperture.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.aperture = void 0;
+var aperture = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-.69 0-1.34.19-1.91.5l3.22 2.34.75-2.25c-.6-.36-1.31-.59-2.06-.59zm-2.75 1.13c-.76.73-1.25 1.74-1.25 2.88 0 .25.02.48.06.72l3.09-2.22-1.91-1.38zm5.63.13l-1.22 3.75h2.19c.08-.32.16-.65.16-1 0-1.07-.44-2.03-1.13-2.75zm-4.72 3.22l-1.75 1.25c.55 1.13 1.6 1.99 2.88 2.22l-1.13-3.47zm1.56 1.53l.63 1.97c1.33-.12 2.46-.88 3.09-1.97h-3.72z"
+ }
+ }]
+};
+exports.aperture = aperture;
\ No newline at end of file
diff --git a/dist/iconic/ascending.js b/dist/iconic/ascending.js
new file mode 100644
index 000000000..6ba99d75b
--- /dev/null
+++ b/dist/iconic/ascending.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ascending = void 0;
+var ascending = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v6h-2l2.5 2 2.5-2h-2v-6h-1zm2 0v1h2v-1h-2zm0 2v1h3v-1h-3zm0 2v1h4v-1h-4z"
+ }
+ }]
+};
+exports.ascending = ascending;
\ No newline at end of file
diff --git a/dist/iconic/audio.js b/dist/iconic/audio.js
new file mode 100644
index 000000000..d9f9de9cf
--- /dev/null
+++ b/dist/iconic/audio.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.audio = void 0;
+var audio = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.16 0c-.72.72-1.16 1.71-1.16 2.81s.43 2.12 1.16 2.84l.72-.72c-.54-.54-.88-1.29-.88-2.13 0-.83.33-1.55.88-2.09l-.72-.72zm5.69 0l-.72.72c.54.54.88 1.26.88 2.09 0 .83-.33 1.58-.88 2.13l.72.72c.72-.72 1.16-1.74 1.16-2.84 0-1.1-.43-2.09-1.16-2.81zm-4.25 1.41c-.36.36-.59.86-.59 1.41 0 .55.23 1.08.59 1.44l.69-.72c-.18-.18-.28-.44-.28-.72 0-.28.1-.5.28-.69l-.69-.72zm2.81 0l-.69.72c.18.18.28.41.28.69 0 .28-.1.54-.28.72l.69.72c.36-.36.59-.89.59-1.44 0-.55-.23-1.05-.59-1.41z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.audio = audio;
\ No newline at end of file
diff --git a/dist/iconic/badge.js b/dist/iconic/badge.js
new file mode 100644
index 000000000..f8a965252
--- /dev/null
+++ b/dist/iconic/badge.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.badge = void 0;
+var badge = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-1 4.81v3.19l1-1 1 1v-3.19c-.31.11-.65.19-1 .19s-.69-.08-1-.19z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.badge = badge;
\ No newline at end of file
diff --git a/dist/iconic/ban.js b/dist/iconic/ban.js
new file mode 100644
index 000000000..788e98906
--- /dev/null
+++ b/dist/iconic/ban.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ban = void 0;
+var ban = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c.66 0 1.26.21 1.75.56l-4.19 4.19c-.35-.49-.56-1.09-.56-1.75 0-1.66 1.34-3 3-3zm2.44 1.25c.35.49.56 1.09.56 1.75 0 1.66-1.34 3-3 3-.66 0-1.26-.21-1.75-.56l4.19-4.19z"
+ }
+ }]
+};
+exports.ban = ban;
\ No newline at end of file
diff --git a/dist/iconic/basket.js b/dist/iconic/basket.js
new file mode 100644
index 000000000..14d0e9b07
--- /dev/null
+++ b/dist/iconic/basket.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basket = void 0;
+var basket = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.97 0c-.13.01-.26.08-.34.19l-2.34 2.81h-1.28v1h1v3.66c0 .18.16.34.34.34h5.31c.18 0 .34-.16.34-.34v-3.66h1v-1h-1.28c-.27-.33-2.39-2.86-2.41-2.88-.11-.09-.22-.14-.34-.13zm.03 1.28l1.44 1.72h-2.88l1.44-1.72zm-1.5 3.72c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5zm3 0c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5z"
+ }
+ }]
+};
+exports.basket = basket;
\ No newline at end of file
diff --git a/dist/iconic/beaker.js b/dist/iconic/beaker.js
new file mode 100644
index 000000000..e5c52aa2d
--- /dev/null
+++ b/dist/iconic/beaker.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.beaker = void 0;
+var beaker = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.34 0a.5.5 0 0 0 .16 1h.5v1.41c-.09.17-1.2 2.31-1.66 3.09-.16.26-.34.61-.34 1.06 0 .39.15.77.41 1.03s.64.41 1.03.41h5.13c.38 0 .74-.16 1-.41h.03c.26-.26.41-.64.41-1.03 0-.45-.19-.8-.34-1.06-.46-.78-1.57-2.92-1.66-3.09v-1.41h.5a.5.5 0 1 0 0-1h-5a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm1.66 1h2v1.63l.06.09s.63 1.23 1.19 2.28h-4.5c.56-1.05 1.19-2.28 1.19-2.28l.06-.09v-1.63z"
+ }
+ }]
+};
+exports.beaker = beaker;
\ No newline at end of file
diff --git a/dist/iconic/bell.js b/dist/iconic/bell.js
new file mode 100644
index 000000000..47635456d
--- /dev/null
+++ b/dist/iconic/bell.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bell = void 0;
+var bell = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-1.1 0-2 .9-2 2 0 1.04-.52 1.98-1.34 2.66-.41.34-.66.82-.66 1.34h8c0-.52-.24-1-.66-1.34-.82-.68-1.34-1.62-1.34-2.66 0-1.1-.89-2-2-2zm-1 7c0 .55.45 1 1 1s1-.45 1-1h-2z"
+ }
+ }]
+};
+exports.bell = bell;
\ No newline at end of file
diff --git a/dist/iconic/bluetooth.js b/dist/iconic/bluetooth.js
new file mode 100644
index 000000000..2b5bf11a0
--- /dev/null
+++ b/dist/iconic/bluetooth.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bluetooth = void 0;
+var bluetooth = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.5 0v2.5l-.75-.75-.75.75 1.5 1.5-1.5 1.5.75.75.75-.75v2.5h.5l3.5-2.5-2.25-1.53 2.25-1.47-3.5-2.5h-.5zm1 1.5l1.5 1-1.5 1v-2zm0 3l1.5 1-1.5 1v-2z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.bluetooth = bluetooth;
\ No newline at end of file
diff --git a/dist/iconic/bold.js b/dist/iconic/bold.js
new file mode 100644
index 000000000..f106f091e
--- /dev/null
+++ b/dist/iconic/bold.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bold = void 0;
+var bold = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1v1h5.5c1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.44-2.25.27-.34.44-.78.44-1.25 0-1.1-.89-2-2-2h-5zm3 1h1c.55 0 1 .45 1 1s-.45 1-1 1h-1v-2zm0 3h1.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-1.5v-3z"
+ }
+ }]
+};
+exports.bold = bold;
\ No newline at end of file
diff --git a/dist/iconic/bolt.js b/dist/iconic/bolt.js
new file mode 100644
index 000000000..66628221d
--- /dev/null
+++ b/dist/iconic/bolt.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bolt = void 0;
+var bolt = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-3 5h2v3l3-5h-2v-3z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.bolt = bolt;
\ No newline at end of file
diff --git a/dist/iconic/book.js b/dist/iconic/book.js
new file mode 100644
index 000000000..0730b2f24
--- /dev/null
+++ b/dist/iconic/book.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.book = void 0;
+var book = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 0c-.07 0-.13.01-.19.03-.39.08-.7.39-.78.78-.03.06-.03.12-.03.19v5.5c0 .83.67 1.5 1.5 1.5h5.5v-1h-5.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h5.5v-5.5c0-.28-.22-.5-.5-.5h-.5v3l-1-1-1 1v-3h-3z"
+ }
+ }]
+};
+exports.book = book;
\ No newline at end of file
diff --git a/dist/iconic/bookmark.js b/dist/iconic/bookmark.js
new file mode 100644
index 000000000..a8b2ad311
--- /dev/null
+++ b/dist/iconic/bookmark.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookmark = void 0;
+var bookmark = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8l2-2 2 2v-8h-4z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.bookmark = bookmark;
\ No newline at end of file
diff --git a/dist/iconic/both.js b/dist/iconic/both.js
new file mode 100644
index 000000000..73b9351a4
--- /dev/null
+++ b/dist/iconic/both.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.both = void 0;
+var both = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l1.66 1.66-4 4-1.66-1.66v4h4l-1.66-1.66 4-4 1.66 1.66v-4h-4z"
+ }
+ }]
+};
+exports.both = both;
\ No newline at end of file
diff --git a/dist/iconic/bottom.js b/dist/iconic/bottom.js
new file mode 100644
index 000000000..3bfbc7503
--- /dev/null
+++ b/dist/iconic/bottom.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bottom = void 0;
+var bottom = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v5h-2l2.53 3 2.47-3h-2v-5h-1z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.bottom = bottom;
\ No newline at end of file
diff --git a/dist/iconic/box.js b/dist/iconic/box.js
new file mode 100644
index 000000000..104c5eb5c
--- /dev/null
+++ b/dist/iconic/box.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.box = void 0;
+var box = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm0 2v5.91c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z"
+ }
+ }]
+};
+exports.box = box;
\ No newline at end of file
diff --git a/dist/iconic/boxed.js b/dist/iconic/boxed.js
new file mode 100644
index 000000000..293e91ad4
--- /dev/null
+++ b/dist/iconic/boxed.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.boxed = void 0;
+var boxed = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.75 0c-.41 0-.75.34-.75.75v5.5c0 .41.34.75.75.75h4.5c.41 0 .75-.34.75-.75v-1.25h-1v1h-4v-5h2v-1h-2.25zm5.25 0v1c-2.05 0-3.7 1.54-3.94 3.53.21-.88.99-1.53 1.94-1.53h2v1l2-2-2-2z"
+ }
+ }]
+};
+exports.boxed = boxed;
\ No newline at end of file
diff --git a/dist/iconic/briefcase.js b/dist/iconic/briefcase.js
new file mode 100644
index 000000000..afa6f4da9
--- /dev/null
+++ b/dist/iconic/briefcase.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.briefcase = void 0;
+var briefcase = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.55 0-1 .45-1 1v1h-1.91c-.06 0-.09.04-.09.09v2.41c0 .28.22.5.5.5h7c.28 0 .5-.22.5-.5v-2.41c0-.06-.04-.09-.09-.09h-1.91v-1c0-.55-.45-1-1-1h-2zm0 1h2v1h-2v-1zm-3 4.91v2c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-2c-.16.06-.32.09-.5.09h-7c-.18 0-.34-.04-.5-.09z"
+ }
+ }]
+};
+exports.briefcase = briefcase;
\ No newline at end of file
diff --git a/dist/iconic/broken.js b/dist/iconic/broken.js
new file mode 100644
index 000000000..34bce4cd1
--- /dev/null
+++ b/dist/iconic/broken.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.broken = void 0;
+var broken = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v1h-1v1h2v-2h-1zm3.88.03c-.18.01-.36.03-.53.09-.27.1-.53.25-.75.47l-.44.44a.5.5 0 1 0 .69.69l.44-.44c.11-.11.24-.17.38-.22.35-.12.78-.07 1.06.22.39.39.39 1.04 0 1.44l-1.5 1.5a.5.5 0 1 0 .69.69l1.5-1.5c.78-.78.78-2.04 0-2.81-.28-.28-.61-.45-.97-.53-.18-.04-.38-.04-.56-.03zm-3.59 2.91a.5.5 0 0 0-.19.16l-1.5 1.5c-.78.78-.78 2.04 0 2.81.56.56 1.36.72 2.06.47.27-.1.53-.25.75-.47l.44-.44a.5.5 0 1 0-.69-.69l-.44.44c-.11.11-.24.17-.38.22-.35.12-.78.07-1.06-.22-.39-.39-.39-1.04 0-1.44l1.5-1.5a.5.5 0 0 0-.44-.84.5.5 0 0 0-.06 0zm2.72 3.06v2h1v-1h1v-1h-2z"
+ }
+ }]
+};
+exports.broken = broken;
\ No newline at end of file
diff --git a/dist/iconic/browser.js b/dist/iconic/browser.js
new file mode 100644
index 000000000..640048e41
--- /dev/null
+++ b/dist/iconic/browser.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.browser = void 0;
+var browser = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.34 0a.5.5 0 0 0-.34.5v7a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm1.16 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5zm2 0h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5zm-2.5 2h6v4h-6v-4z"
+ }
+ }]
+};
+exports.browser = browser;
\ No newline at end of file
diff --git a/dist/iconic/brush.js b/dist/iconic/brush.js
new file mode 100644
index 000000000..6caa5f9c4
--- /dev/null
+++ b/dist/iconic/brush.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.brush = void 0;
+var brush = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.44.03c-.03 0-.04.02-.06.03l-3.75 2.66c-.04.03-.1.11-.13.16l-.13.25c.72.23 1.27.78 1.5 1.5l.25-.13c.05-.03.12-.08.16-.13l2.66-3.75c.03-.05.04-.09 0-.13l-.44-.44c-.02-.02-.04-.03-.06-.03zm-4.78 3.97c-.74 0-1.31.61-1.31 1.34 0 .99-.55 1.85-1.34 2.31.39.22.86.34 1.34.34 1.47 0 2.66-1.18 2.66-2.66 0-.74-.61-1.34-1.34-1.34z"
+ }
+ }]
+};
+exports.brush = brush;
\ No newline at end of file
diff --git a/dist/iconic/bug.js b/dist/iconic/bug.js
new file mode 100644
index 000000000..71f7339be
--- /dev/null
+++ b/dist/iconic/bug.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bug = void 0;
+var bug = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-1.19 0-1.98 1.69-1.19 2.5-.09.07-.2.14-.28.22l-1.31-.66a.5.5 0 0 0-.34-.06.5.5 0 0 0-.09.94l1.16.56c-.09.16-.19.33-.25.5h-.69a.5.5 0 0 0-.09 0 .5.5 0 1 0 .09 1h.5c0 .23.02.45.06.66l-.78.41a.5.5 0 1 0 .44.88l.66-.34c.25.46.62.85 1.03 1.09.35-.19.59-.44.59-.72v-1.44a.5.5 0 0 0 0-.09v-.81a.5.5 0 0 0 0-.22c.05-.23.26-.41.5-.41.28 0 .5.22.5.5v.88a.5.5 0 0 0 0 .09v.06a.5.5 0 0 0 0 .09v1.34c0 .27.24.53.59.72.41-.25.79-.63 1.03-1.09l.66.34a.5.5 0 1 0 .44-.88l-.78-.41c.04-.21.06-.43.06-.66h.5a.5.5 0 1 0 0-1h-.69c-.06-.17-.16-.34-.25-.5l1.16-.56a.5.5 0 0 0-.31-.94.5.5 0 0 0-.13.06l-1.31.66c-.09-.08-.19-.15-.28-.22.78-.83 0-2.5-1.19-2.5z"
+ }
+ }]
+};
+exports.bug = bug;
\ No newline at end of file
diff --git a/dist/iconic/bullhorn.js b/dist/iconic/bullhorn.js
new file mode 100644
index 000000000..c016c5022
--- /dev/null
+++ b/dist/iconic/bullhorn.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bullhorn = void 0;
+var bullhorn = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0v6c.03.01.07 0 .09 0h.81c.05 0 .09-.04.09-.09v-5.81c0-.06-.04-.09-.09-.09h-.91zm-1 .5l-2.91 1.47c-.05.02-.13.03-.19.03h-1.81c-.06 0-.09.04-.09.09v1.81c0 .06.04.09.09.09h.91l1.03 2.72c.11.25.44.36.69.25.25-.11.36-.44.25-.69l-.75-1.78c.03-.14.13-.22.28-.22v-.03l2.5 1.25v-5z"
+ }
+ }]
+};
+exports.bullhorn = bullhorn;
\ No newline at end of file
diff --git a/dist/iconic/calculator.js b/dist/iconic/calculator.js
new file mode 100644
index 000000000..a85525695
--- /dev/null
+++ b/dist/iconic/calculator.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calculator = void 0;
+var calculator = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v7.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-7.81c0-.06-.04-.09-.09-.09h-6.81zm.91 1h5v2h-5v-2zm0 3h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v3h-1v-3zm-4 2h1v1h-1v-1zm2 0h1v1h-1v-1z"
+ }
+ }]
+};
+exports.calculator = calculator;
\ No newline at end of file
diff --git a/dist/iconic/calendar.js b/dist/iconic/calendar.js
new file mode 100644
index 000000000..e73489f28
--- /dev/null
+++ b/dist/iconic/calendar.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendar = void 0;
+var calendar = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h7v-2h-7zm0 3v4.91c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-4.91h-7zm1 1h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v1h-1v-1zm-4 2h1v1h-1v-1zm2 0h1v1h-1v-1z"
+ }
+ }]
+};
+exports.calendar = calendar;
\ No newline at end of file
diff --git a/dist/iconic/card.js b/dist/iconic/card.js
new file mode 100644
index 000000000..cd05b8a9e
--- /dev/null
+++ b/dist/iconic/card.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.card = void 0;
+var card = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.25 0c-.14 0-.25.11-.25.25v.75h8v-.75c0-.14-.11-.25-.25-.25h-7.5zm-.25 2v3.75c0 .14.11.25.25.25h7.5c.14 0 .25-.11.25-.25v-3.75h-8zm1 2h1v1h-1v-1zm2 0h1v1h-1v-1z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.card = card;
\ No newline at end of file
diff --git a/dist/iconic/cart.js b/dist/iconic/cart.js
new file mode 100644
index 000000000..87271ccc3
--- /dev/null
+++ b/dist/iconic/cart.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cart = void 0;
+var cart = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.34 0a.5.5 0 0 0 .16 1h1.5l.09.25.41 1.25.41 1.25c.04.13.21.25.34.25h3.5c.14 0 .3-.12.34-.25l.81-2.5c.04-.13-.02-.25-.16-.25h-4.44l-.38-.72a.5.5 0 0 0-.44-.28h-2a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm3.16 5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.cart = cart;
\ No newline at end of file
diff --git a/dist/iconic/center.js b/dist/iconic/center.js
new file mode 100644
index 000000000..ebff2dc42
--- /dev/null
+++ b/dist/iconic/center.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.center = void 0;
+var center = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm1 2v1h6v-1h-6zm-1 2v1h8v-1h-8zm1 2v1h6v-1h-6z"
+ }
+ }]
+};
+exports.center = center;
\ No newline at end of file
diff --git a/dist/iconic/chart.js b/dist/iconic/chart.js
new file mode 100644
index 000000000..99505e9dd
--- /dev/null
+++ b/dist/iconic/chart.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chart = void 0;
+var chart = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v7h8v-1h-7v-6h-1zm5 0v5h2v-5h-2zm-3 2v3h2v-3h-2z"
+ }
+ }]
+};
+exports.chart = chart;
\ No newline at end of file
diff --git a/dist/iconic/chat.js b/dist/iconic/chat.js
new file mode 100644
index 000000000..310b88cf3
--- /dev/null
+++ b/dist/iconic/chat.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chat = void 0;
+var chat = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v5l1-1h1v-3h3v-1h-5zm3 2v4h4l1 1v-5h-5z"
+ }
+ }]
+};
+exports.chat = chat;
\ No newline at end of file
diff --git a/dist/iconic/check.js b/dist/iconic/check.js
new file mode 100644
index 000000000..71341c152
--- /dev/null
+++ b/dist/iconic/check.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.check = void 0;
+var check = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.41 0l-.69.72-2.78 2.78-.81-.78-.72-.72-1.41 1.41.72.72 1.5 1.5.69.72.72-.72 3.5-3.5.72-.72-1.44-1.41z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.check = check;
\ No newline at end of file
diff --git a/dist/iconic/circle.js b/dist/iconic/circle.js
new file mode 100644
index 000000000..0185d0460
--- /dev/null
+++ b/dist/iconic/circle.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle = void 0;
+var circle = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1 2l3 2-3 2v-4z"
+ }
+ }]
+};
+exports.circle = circle;
\ No newline at end of file
diff --git a/dist/iconic/circleBottom.js b/dist/iconic/circleBottom.js
new file mode 100644
index 000000000..89866d476
--- /dev/null
+++ b/dist/iconic/circleBottom.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleBottom = void 0;
+var circleBottom = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1 1h2v3h2l-3 3-3-3h2v-3z"
+ }
+ }]
+};
+exports.circleBottom = circleBottom;
\ No newline at end of file
diff --git a/dist/iconic/circleLeft.js b/dist/iconic/circleLeft.js
new file mode 100644
index 000000000..c6d405e95
--- /dev/null
+++ b/dist/iconic/circleLeft.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleLeft = void 0;
+var circleLeft = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1v2h3v2h-3v2l-3-3 3-3z"
+ }
+ }]
+};
+exports.circleLeft = circleLeft;
\ No newline at end of file
diff --git a/dist/iconic/circleRight.js b/dist/iconic/circleRight.js
new file mode 100644
index 000000000..dc9499086
--- /dev/null
+++ b/dist/iconic/circleRight.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleRight = void 0;
+var circleRight = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1l3 3-3 3v-2h-3v-2h3v-2z"
+ }
+ }]
+};
+exports.circleRight = circleRight;
\ No newline at end of file
diff --git a/dist/iconic/circleTop.js b/dist/iconic/circleTop.js
new file mode 100644
index 000000000..36a25df12
--- /dev/null
+++ b/dist/iconic/circleTop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circleTop = void 0;
+var circleTop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1l3 3h-2v3h-2v-3h-2l3-3z"
+ }
+ }]
+};
+exports.circleTop = circleTop;
\ No newline at end of file
diff --git a/dist/iconic/circular.js b/dist/iconic/circular.js
new file mode 100644
index 000000000..4d02144f2
--- /dev/null
+++ b/dist/iconic/circular.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circular = void 0;
+var circular = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-1.65 0-3 1.35-3 3h-1l1.5 2 1.5-2h-1c0-1.11.89-2 2-2v-1zm2.5 1l-1.5 2h1c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3h1l-1.5-2z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.circular = circular;
\ No newline at end of file
diff --git a/dist/iconic/clipboard.js b/dist/iconic/clipboard.js
new file mode 100644
index 000000000..2a95c4dca
--- /dev/null
+++ b/dist/iconic/clipboard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clipboard = void 0;
+var clipboard = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-.28 0-.5.22-.5.5v.5h-.75c-.14 0-.25.11-.25.25v.75h3v-.75c0-.14-.11-.25-.25-.25h-.75v-.5c0-.28-.22-.5-.5-.5zm-3.25 1c-.14 0-.25.11-.25.25v6.5c0 .14.11.25.25.25h6.5c.14 0 .25-.11.25-.25v-6.5c0-.14-.11-.25-.25-.25h-.75v2h-5v-2h-.75z"
+ }
+ }]
+};
+exports.clipboard = clipboard;
\ No newline at end of file
diff --git a/dist/iconic/clock.js b/dist/iconic/clock.js
new file mode 100644
index 000000000..b1d9faad5
--- /dev/null
+++ b/dist/iconic/clock.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clock = void 0;
+var clock = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm-.5 1v2.22l.16.13.5.5.34.38.72-.72-.38-.34-.34-.34v-1.81h-1z"
+ }
+ }]
+};
+exports.clock = clock;
\ No newline at end of file
diff --git a/dist/iconic/closed.js b/dist/iconic/closed.js
new file mode 100644
index 000000000..c27b481a5
--- /dev/null
+++ b/dist/iconic/closed.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.closed = void 0;
+var closed = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1l4 2 4-2v-1h-8zm0 2v4h8v-4l-4 2-4-2z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.closed = closed;
\ No newline at end of file
diff --git a/dist/iconic/cloud.js b/dist/iconic/cloud.js
new file mode 100644
index 000000000..34d3c1827
--- /dev/null
+++ b/dist/iconic/cloud.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud = void 0;
+var cloud = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2s.9 2 2 2h4.5c.83 0 1.5-.67 1.5-1.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.cloud = cloud;
\ No newline at end of file
diff --git a/dist/iconic/cloudy.js b/dist/iconic/cloudy.js
new file mode 100644
index 000000000..42abd0775
--- /dev/null
+++ b/dist/iconic/cloudy.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloudy = void 0;
+var cloudy = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .39.09.74.25 1.06.3-.21.64-.37 1-.47.55-1.25 1.82-2.09 3.25-2.09-.46-.6-1.18-1-2-1zm2 2c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2s.9 2 2 2h4.5c.83 0 1.5-.67 1.5-1.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5z"
+ }
+ }]
+};
+exports.cloudy = cloudy;
\ No newline at end of file
diff --git a/dist/iconic/code.js b/dist/iconic/code.js
new file mode 100644
index 000000000..2bb5d6756
--- /dev/null
+++ b/dist/iconic/code.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.code = void 0;
+var code = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 0l-3 6h1l3-6h-1zm-4 1l-1 2 1 2h1l-1-2 1-2h-1zm5 0l1 2-1 2h1l1-2-1-2h-1z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.code = code;
\ No newline at end of file
diff --git a/dist/iconic/cog.js b/dist/iconic/cog.js
new file mode 100644
index 000000000..6a1eb2950
--- /dev/null
+++ b/dist/iconic/cog.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cog = void 0;
+var cog = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0l-.5 1.19c-.1.03-.19.08-.28.13l-1.19-.5-.72.72.5 1.19c-.05.1-.09.18-.13.28l-1.19.5v1l1.19.5c.04.1.08.18.13.28l-.5 1.19.72.72 1.19-.5c.09.04.18.09.28.13l.5 1.19h1l.5-1.19c.09-.04.19-.08.28-.13l1.19.5.72-.72-.5-1.19c.04-.09.09-.19.13-.28l1.19-.5v-1l-1.19-.5c-.03-.09-.08-.19-.13-.28l.5-1.19-.72-.72-1.19.5c-.09-.04-.19-.09-.28-.13l-.5-1.19h-1zm.5 2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z"
+ }
+ }]
+};
+exports.cog = cog;
\ No newline at end of file
diff --git a/dist/iconic/command.js b/dist/iconic/command.js
new file mode 100644
index 000000000..27e0f9aa4
--- /dev/null
+++ b/dist/iconic/command.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.command = void 0;
+var command = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.5 0c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5h.5v1h-.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-.5h1v.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5h-.5v-1h.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5v.5h-1v-.5c0-.83-.67-1.5-1.5-1.5zm0 1c.28 0 .5.22.5.5v.5h-.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5zm4 0c.28 0 .5.22.5.5s-.22.5-.5.5h-.5v-.5c0-.28.22-.5.5-.5zm-2.5 2h1v1h-1v-1zm-1.5 2h.5v.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5zm3.5 0h.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5v-.5z"
+ }
+ }]
+};
+exports.command = command;
\ No newline at end of file
diff --git a/dist/iconic/compass.js b/dist/iconic/compass.js
new file mode 100644
index 000000000..7ca21cd95
--- /dev/null
+++ b/dist/iconic/compass.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.compass = void 0;
+var compass = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm2 1l-3 1-1 3 3-1 1-3zm-2 1.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z"
+ }
+ }]
+};
+exports.compass = compass;
\ No newline at end of file
diff --git a/dist/iconic/contrast.js b/dist/iconic/contrast.js
new file mode 100644
index 000000000..ed0755e44
--- /dev/null
+++ b/dist/iconic/contrast.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.contrast = void 0;
+var contrast = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3v-6z"
+ }
+ }]
+};
+exports.contrast = contrast;
\ No newline at end of file
diff --git a/dist/iconic/copywriting.js b/dist/iconic/copywriting.js
new file mode 100644
index 000000000..4faf70f4a
--- /dev/null
+++ b/dist/iconic/copywriting.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.copywriting = void 0;
+var copywriting = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm0 2v1h5v-1h-5zm0 3v1h8v-1h-8zm0 2v1h6v-1h-6zm7.5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"
+ }
+ }]
+};
+exports.copywriting = copywriting;
\ No newline at end of file
diff --git a/dist/iconic/crop.js b/dist/iconic/crop.js
new file mode 100644
index 000000000..da1c7b8a4
--- /dev/null
+++ b/dist/iconic/crop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crop = void 0;
+var crop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 0v1h-1v1h1v5h5v1h1v-1h1v-1h-1v-4.5l1-1-.5-.5-1 1h-4.5v-1h-1zm1 2h3.5l-3.5 3.5v-3.5zm4 .5v3.5h-3.5l3.5-3.5z"
+ }
+ }]
+};
+exports.crop = crop;
\ No newline at end of file
diff --git a/dist/iconic/cross.js b/dist/iconic/cross.js
new file mode 100644
index 000000000..20df4025c
--- /dev/null
+++ b/dist/iconic/cross.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cross = void 0;
+var cross = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v2h-2v4h2v2h4v-2h2v-4h-2v-2h-4z"
+ }
+ }]
+};
+exports.cross = cross;
\ No newline at end of file
diff --git a/dist/iconic/dashboard.js b/dist/iconic/dashboard.js
new file mode 100644
index 000000000..27e67d0b2
--- /dev/null
+++ b/dist/iconic/dashboard.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dashboard = void 0;
+var dashboard = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-1.66 1a.5.5 0 0 0-.19.84l.91.91c-.02.08-.06.16-.06.25 0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1c-.09 0-.17.04-.25.06l-.91-.91a.5.5 0 0 0-.44-.16.5.5 0 0 0-.06 0zm3.16 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"
+ }
+ }]
+};
+exports.dashboard = dashboard;
\ No newline at end of file
diff --git a/dist/iconic/deleteIconic.js b/dist/iconic/deleteIconic.js
new file mode 100644
index 000000000..eaf093731
--- /dev/null
+++ b/dist/iconic/deleteIconic.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.deleteIconic = void 0;
+var deleteIconic = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0l-2 3 2 3h6v-6h-6zm1.5.78l1.5 1.5 1.5-1.5.72.72-1.5 1.5 1.5 1.5-.72.72-1.5-1.5-1.5 1.5-.72-.72 1.5-1.5-1.5-1.5.72-.72z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.deleteIconic = deleteIconic;
\ No newline at end of file
diff --git a/dist/iconic/descending.js b/dist/iconic/descending.js
new file mode 100644
index 000000000..b1716e82d
--- /dev/null
+++ b/dist/iconic/descending.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.descending = void 0;
+var descending = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v6h-2l2.5 2 2.5-2h-2v-6h-1zm2 0v1h4v-1h-4zm0 2v1h3v-1h-3zm0 2v1h2v-1h-2z"
+ }
+ }]
+};
+exports.descending = descending;
\ No newline at end of file
diff --git a/dist/iconic/dial.js b/dist/iconic/dial.js
new file mode 100644
index 000000000..41aa10d7f
--- /dev/null
+++ b/dist/iconic/dial.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dial = void 0;
+var dial = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4h1c0-1.66 1.34-3 3-3s3 1.34 3 3h1c0-2.2-1.8-4-4-4zm-.59 2.09c-.81.25-1.41 1.01-1.41 1.91 0 1.11.9 2 2 2 1.11 0 2-.89 2-2 0-.9-.59-1.65-1.41-1.91l-.59.88-.59-.88z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.dial = dial;
\ No newline at end of file
diff --git a/dist/iconic/document.js b/dist/iconic/document.js
new file mode 100644
index 000000000..c0e03b506
--- /dev/null
+++ b/dist/iconic/document.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.document = void 0;
+var document = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h7v-4h-4v-4h-3zm4 0v3h3l-3-3zm-3 2h1v1h-1v-1zm0 2h1v1h-1v-1zm0 2h4v1h-4v-1z"
+ }
+ }]
+};
+exports.document = document;
\ No newline at end of file
diff --git a/dist/iconic/dollar.js b/dist/iconic/dollar.js
new file mode 100644
index 000000000..04a478907
--- /dev/null
+++ b/dist/iconic/dollar.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dollar = void 0;
+var dollar = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v1h-.75c-.68 0-1.25.57-1.25 1.25v.5c0 .68.44 1.24 1.09 1.41l2.56.66c.14.04.34.29.34.44v.5c0 .14-.11.25-.25.25h-2.5c-.12 0-.21-.04-.25-.06v-.94h-1v1c0 .34.2.63.44.78.23.16.52.22.81.22h.75v1h1v-1h.75c.69 0 1.25-.56 1.25-1.25v-.5c0-.68-.44-1.24-1.09-1.41l-2.56-.66c-.14-.04-.34-.29-.34-.44v-.5c0-.14.11-.25.25-.25h2.5c.11 0 .21.04.25.06v.94h1v-1c0-.34-.2-.63-.44-.78-.23-.16-.52-.22-.81-.22h-.75v-1h-1z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.dollar = dollar;
\ No newline at end of file
diff --git a/dist/iconic/down.js b/dist/iconic/down.js
new file mode 100644
index 000000000..506fa98f6
--- /dev/null
+++ b/dist/iconic/down.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.down = void 0;
+var down = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h8v-2h-8zm2 3l2 2 2-2h-4zm-2 4v1h8v-1h-8z"
+ }
+ }]
+};
+exports.down = down;
\ No newline at end of file
diff --git a/dist/iconic/download.js b/dist/iconic/download.js
new file mode 100644
index 000000000..434ea7b7f
--- /dev/null
+++ b/dist/iconic/download.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.download = void 0;
+var download = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .37.11.71.28 1h2.72v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5h1.91c.06-.16.09-.32.09-.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm-.16 4a.5.5 0 0 0-.34.5v1.5h-1.5l2 2 2-2h-1.5v-1.5a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z"
+ }
+ }]
+};
+exports.download = download;
\ No newline at end of file
diff --git a/dist/iconic/drive.js b/dist/iconic/drive.js
new file mode 100644
index 000000000..b041e4e80
--- /dev/null
+++ b/dist/iconic/drive.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.drive = void 0;
+var drive = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.19 0c-.11 0-.19.08-.19.19v3.31c0 .28.22.5.5.5h6c.28 0 .5-.22.5-.5v-3.31c0-.11-.08-.19-.19-.19h-6.63zm-.19 4.91v2.91c0 .11.08.19.19.19h6.63c.11 0 .19-.08.19-.19v-2.91c-.16.06-.32.09-.5.09h-6c-.18 0-.34-.04-.5-.09zm5.5 1.09c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z"
+ }
+ }]
+};
+exports.drive = drive;
\ No newline at end of file
diff --git a/dist/iconic/droplet.js b/dist/iconic/droplet.js
new file mode 100644
index 000000000..cdcf6e3c2
--- /dev/null
+++ b/dist/iconic/droplet.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.droplet = void 0;
+var droplet = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-.34.34c-.11.11-2.66 2.69-2.66 4.88 0 1.65 1.35 3 3 3s3-1.35 3-3c0-2.18-2.55-4.77-2.66-4.88l-.34-.34zm-1.5 4.72c.28 0 .5.22.5.5 0 .55.45 1 1 1 .28 0 .5.22.5.5s-.22.5-.5.5c-1.1 0-2-.9-2-2 0-.28.22-.5.5-.5z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.droplet = droplet;
\ No newline at end of file
diff --git a/dist/iconic/eject.js b/dist/iconic/eject.js
new file mode 100644
index 000000000..30930a264
--- /dev/null
+++ b/dist/iconic/eject.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eject = void 0;
+var eject = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-4 5h8l-4-5zm-4 6v2h8v-2h-8z"
+ }
+ }]
+};
+exports.eject = eject;
\ No newline at end of file
diff --git a/dist/iconic/elevator.js b/dist/iconic/elevator.js
new file mode 100644
index 000000000..1c41442da
--- /dev/null
+++ b/dist/iconic/elevator.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.elevator = void 0;
+var elevator = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-3 3h6l-3-3zm-3 5l3 3 3-3h-6z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.elevator = elevator;
\ No newline at end of file
diff --git a/dist/iconic/ellipses.js b/dist/iconic/ellipses.js
new file mode 100644
index 000000000..c63d517a4
--- /dev/null
+++ b/dist/iconic/ellipses.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ellipses = void 0;
+var ellipses = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2z",
+ "transform": "translate(0 3)"
+ }
+ }]
+};
+exports.ellipses = ellipses;
\ No newline at end of file
diff --git a/dist/iconic/empty.js b/dist/iconic/empty.js
new file mode 100644
index 000000000..c496f9329
--- /dev/null
+++ b/dist/iconic/empty.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.empty = void 0;
+var empty = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-1.91h1v-2h-1v-1.91c0-.06-.04-.09-.09-.09h-6.81zm.91 1h5v4h-5v-4z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.empty = empty;
\ No newline at end of file
diff --git a/dist/iconic/enter.js b/dist/iconic/enter.js
new file mode 100644
index 000000000..20c7e86d6
--- /dev/null
+++ b/dist/iconic/enter.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.enter = void 0;
+var enter = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v4l1.5-1.5 1.5 1.5 1-1-1.5-1.5 1.5-1.5h-4zm5 4l-1 1 1.5 1.5-1.5 1.5h4v-4l-1.5 1.5-1.5-1.5z"
+ }
+ }]
+};
+exports.enter = enter;
\ No newline at end of file
diff --git a/dist/iconic/euro.js b/dist/iconic/euro.js
new file mode 100644
index 000000000..428291ffe
--- /dev/null
+++ b/dist/iconic/euro.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.euro = void 0;
+var euro = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0c-1.86 0-3.4 1.28-3.84 3h-1.91l-.25 1h2.01c0 .35.07.68.16 1h-1.97l-.19 1h2.56c.7 1.19 1.97 2 3.44 2 .73 0 1.41-.21 2-.56v-1.22c-.53.48-1.22.78-2 .78-.89 0-1.67-.39-2.22-1h2.22l.16-1h-2.97c-.11-.32-.19-.64-.19-1h3.34l.16-1h-3.31c.41-1.16 1.51-2 2.81-2 .66 0 1.26.21 1.75.56l.16-1.06c-.57-.31-1.21-.5-1.91-.5z",
+ "transform": "translate(-1)"
+ }
+ }]
+};
+exports.euro = euro;
\ No newline at end of file
diff --git a/dist/iconic/excerpt.js b/dist/iconic/excerpt.js
new file mode 100644
index 000000000..3a5928614
--- /dev/null
+++ b/dist/iconic/excerpt.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.excerpt = void 0;
+var excerpt = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h7v-1h-7zm0 2v1h5v-1h-5zm0 2v1h8v-1h-8zm0 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1z"
+ }
+ }]
+};
+exports.excerpt = excerpt;
\ No newline at end of file
diff --git a/dist/iconic/exit.js b/dist/iconic/exit.js
new file mode 100644
index 000000000..d8a1a620e
--- /dev/null
+++ b/dist/iconic/exit.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.exit = void 0;
+var exit = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 0l-1 1 1.5 1.5-1.5 1.5h4v-4l-1.5 1.5-1.5-1.5zm3 4v4l1.5-1.5 1.5 1.5 1-1-1.5-1.5 1.5-1.5h-4z"
+ }
+ }]
+};
+exports.exit = exit;
\ No newline at end of file
diff --git a/dist/iconic/eye.js b/dist/iconic/eye.js
new file mode 100644
index 000000000..792565cb9
--- /dev/null
+++ b/dist/iconic/eye.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eye = void 0;
+var eye = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.03 0c-2.53 0-4.03 3-4.03 3s1.5 3 4.03 3c2.47 0 3.97-3 3.97-3s-1.5-3-3.97-3zm-.03 1c1.11 0 2 .9 2 2 0 1.11-.89 2-2 2-1.1 0-2-.89-2-2 0-1.1.9-2 2-2zm0 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.04-.19-.06-.28-.08.16-.24.28-.44.28-.28 0-.5-.22-.5-.5 0-.2.12-.36.28-.44-.09-.03-.18-.06-.28-.06z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.eye = eye;
\ No newline at end of file
diff --git a/dist/iconic/eyedropper.js b/dist/iconic/eyedropper.js
new file mode 100644
index 000000000..a3c858350
--- /dev/null
+++ b/dist/iconic/eyedropper.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eyedropper = void 0;
+var eyedropper = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.31 0a.5.5 0 0 0-.19.84l.63.63-3.59 3.66-.16.16v2.7199999999999998h2.69l.16-.16 3.66-3.66.63.66a.5.5 0 1 0 .72-.69l-.94-.94.66-.66c.59-.58.59-1.54 0-2.13-.57-.57-1.56-.57-2.13 0l-.66.66-.94-.94a.5.5 0 0 0-.47-.16.5.5 0 0 0-.06 0zm1.16 2.19l1.31 1.31-3.16 3.16-1.28-1.31 3.13-3.16z"
+ }
+ }]
+};
+exports.eyedropper = eyedropper;
\ No newline at end of file
diff --git a/dist/iconic/file.js b/dist/iconic/file.js
new file mode 100644
index 000000000..2ea7bc6cd
--- /dev/null
+++ b/dist/iconic/file.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.file = void 0;
+var file = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h7v-4h-4v-4h-3zm4 0v3h3l-3-3z"
+ }
+ }]
+};
+exports.file = file;
\ No newline at end of file
diff --git a/dist/iconic/fire.js b/dist/iconic/fire.js
new file mode 100644
index 000000000..a6c3665ad
--- /dev/null
+++ b/dist/iconic/fire.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fire = void 0;
+var fire = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0c1 2-2 3-2 5s2 3 2 3c-.98-1.98 2-3 2-5s-2-3-2-3zm3 3c1 2-2 3-2 5h3c.4 0 1-.5 1-2 0-2-2-3-2-3z"
+ }
+ }]
+};
+exports.fire = fire;
\ No newline at end of file
diff --git a/dist/iconic/flag.js b/dist/iconic/flag.js
new file mode 100644
index 000000000..2f1f08bcd
--- /dev/null
+++ b/dist/iconic/flag.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flag = void 0;
+var flag = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h1v-8h-1zm2 0v4h2v1h4l-2-1.97 2-2.03h-3v-1h-3z"
+ }
+ }]
+};
+exports.flag = flag;
\ No newline at end of file
diff --git a/dist/iconic/flash.js b/dist/iconic/flash.js
new file mode 100644
index 000000000..d468e56ff
--- /dev/null
+++ b/dist/iconic/flash.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flash = void 0;
+var flash = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.5 0l-1.5 3h2l-.66 2h-1.34l1 3 3-3h-1.5l1.5-3h-2l1-2h-1.5z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.flash = flash;
\ No newline at end of file
diff --git a/dist/iconic/folder.js b/dist/iconic/folder.js
new file mode 100644
index 000000000..0a8a909a4
--- /dev/null
+++ b/dist/iconic/folder.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder = void 0;
+var folder = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h8v-1h-5v-1h-3zm0 3v4.5c0 .28.22.5.5.5h7c.28 0 .5-.22.5-.5v-4.5h-8z"
+ }
+ }]
+};
+exports.folder = folder;
\ No newline at end of file
diff --git a/dist/iconic/fork.js b/dist/iconic/fork.js
new file mode 100644
index 000000000..1d29f2817
--- /dev/null
+++ b/dist/iconic/fork.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fork = void 0;
+var fork = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.5 0c-.83 0-1.5.67-1.5 1.5 0 .66.41 1.2 1 1.41v2.19c-.59.2-1 .75-1 1.41 0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-.6-.34-1.1-.84-1.34.09-.09.21-.16.34-.16h2c.82 0 1.5-.68 1.5-1.5v-.59c.59-.2 1-.75 1-1.41 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5c0 .66.41 1.2 1 1.41v.59c0 .28-.22.5-.5.5h-2c-.17 0-.35.04-.5.09v-1.19c.59-.2 1-.75 1-1.41 0-.83-.67-1.5-1.5-1.5z"
+ }
+ }]
+};
+exports.fork = fork;
\ No newline at end of file
diff --git a/dist/iconic/fourUp.js b/dist/iconic/fourUp.js
new file mode 100644
index 000000000..8d11192e7
--- /dev/null
+++ b/dist/iconic/fourUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fourUp = void 0;
+var fourUp = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1z"
+ }
+ }]
+};
+exports.fourUp = fourUp;
\ No newline at end of file
diff --git a/dist/iconic/full.js b/dist/iconic/full.js
new file mode 100644
index 000000000..312e52414
--- /dev/null
+++ b/dist/iconic/full.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.full = void 0;
+var full = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-1.91h1v-2h-1v-1.91c0-.06-.04-.09-.09-.09h-6.81z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.full = full;
\ No newline at end of file
diff --git a/dist/iconic/glass.js b/dist/iconic/glass.js
new file mode 100644
index 000000000..3e800171e
--- /dev/null
+++ b/dist/iconic/glass.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.glass = void 0;
+var glass = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.59 0 1.17-.14 1.66-.41a1 1 0 0 0 .13.13l1 1a1.02 1.02 0 1 0 1.44-1.44l-1-1a1 1 0 0 0-.16-.13c.27-.49.44-1.06.44-1.66 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .66-.24 1.27-.66 1.72-.01.01-.02.02-.03.03a1 1 0 0 0-.13.13c-.44.4-1.04.63-1.69.63-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5z"
+ }
+ }]
+};
+exports.glass = glass;
\ No newline at end of file
diff --git a/dist/iconic/globe.js b/dist/iconic/globe.js
new file mode 100644
index 000000000..01cfec73a
--- /dev/null
+++ b/dist/iconic/globe.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.globe = void 0;
+var globe = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1c.33 0 .64.09.94.19-.21.2-.45.38-.41.56.04.18.69.13.69.5 0 .27-.42.35-.13.66.35.35-.64.98-.66 1.44-.03.83.84.97 1.53.97.42 0 .53.2.5.44-.54.77-1.46 1.25-2.47 1.25-.38 0-.73-.09-1.06-.22.22-.44-.28-1.31-.75-1.59-.23-.23-.72-.14-1-.25-.09-.27-.18-.54-.19-.84.03-.05.08-.09.16-.09.19 0 .45.38.59.34.18-.04-.74-1.31-.31-1.56.2-.12.6.39.47-.16-.12-.51.36-.28.66-.41.26-.11.45-.41.13-.59-.06-.03-.13-.1-.22-.19.45-.27.97-.44 1.53-.44zm2.31 1.09c.18.22.32.46.44.72 0 .01 0 .02 0 .03-.04.07-.11.11-.22.22-.28.28-.32-.21-.44-.31-.13-.12-.6.02-.66-.13-.07-.18.5-.42.88-.53z"
+ }
+ }]
+};
+exports.globe = globe;
\ No newline at end of file
diff --git a/dist/iconic/graph.js b/dist/iconic/graph.js
new file mode 100644
index 000000000..d9b57aa05
--- /dev/null
+++ b/dist/iconic/graph.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.graph = void 0;
+var graph = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.03 0l-3.03 3-1-1-3 3.03 1 1 2-2.03 1 1 4-4-.97-1zm-7.03 7v1h8v-1h-8z"
+ }
+ }]
+};
+exports.graph = graph;
\ No newline at end of file
diff --git a/dist/iconic/header.js b/dist/iconic/header.js
new file mode 100644
index 000000000..c5232b253
--- /dev/null
+++ b/dist/iconic/header.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.header = void 0;
+var header = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h.5c.28 0 .5.22.5.5v4c0 .28-.22.5-.5.5h-.5v1h3v-1h-.5c-.28 0-.5-.22-.5-.5v-1.5h3v1.5c0 .28-.22.5-.5.5h-.5v1h3v-1h-.5c-.28 0-.5-.22-.5-.5v-4c0-.28.22-.5.5-.5h.5v-1h-3v1h.5c.28 0 .5.22.5.5v1.5h-3v-1.5c0-.28.22-.5.5-.5h.5v-1h-3z"
+ }
+ }]
+};
+exports.header = header;
\ No newline at end of file
diff --git a/dist/iconic/headphones.js b/dist/iconic/headphones.js
new file mode 100644
index 000000000..a03f9ef43
--- /dev/null
+++ b/dist/iconic/headphones.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.headphones = void 0;
+var headphones = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-1.65 0-3 1.35-3 3v1h-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-3.5c0-1.11.89-2 2-2 1.11 0 2 .89 2 2v3.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-.5v-1c0-1.65-1.35-3-3-3z"
+ }
+ }]
+};
+exports.headphones = headphones;
\ No newline at end of file
diff --git a/dist/iconic/heart.js b/dist/iconic/heart.js
new file mode 100644
index 000000000..a25b897f9
--- /dev/null
+++ b/dist/iconic/heart.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heart = void 0;
+var heart = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0c-.55 0-1.04.23-1.41.59-.36.36-.59.85-.59 1.41 0 .55.23 1.04.59 1.41l3.41 3.41 3.41-3.41c.36-.36.59-.85.59-1.41 0-.55-.23-1.04-.59-1.41-.36-.36-.85-.59-1.41-.59-.55 0-1.04.23-1.41.59-.36.36-.59.85-.59 1.41 0-.55-.23-1.04-.59-1.41-.36-.36-.85-.59-1.41-.59z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.heart = heart;
\ No newline at end of file
diff --git a/dist/iconic/height.js b/dist/iconic/height.js
new file mode 100644
index 000000000..baaad084d
--- /dev/null
+++ b/dist/iconic/height.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.height = void 0;
+var height = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.5 0l-2.5 3h2v2h-2l2.5 3 2.5-3h-2v-2h2l-2.5-3z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.height = height;
\ No newline at end of file
diff --git a/dist/iconic/high.js b/dist/iconic/high.js
new file mode 100644
index 000000000..be14baebc
--- /dev/null
+++ b/dist/iconic/high.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.high = void 0;
+var high = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66zm1.66 1v1c.17 0 .34.02.5.06.86.22 1.5 1 1.5 1.94s-.63 1.72-1.5 1.94c-.16.04-.33.06-.5.06v1c.25 0 .48-.04.72-.09h.03c1.3-.33 2.25-1.51 2.25-2.91 0-1.4-.95-2.58-2.25-2.91-.23-.06-.49-.09-.75-.09zm0 2v2c.09 0 .18-.01.25-.03.43-.11.75-.51.75-.97 0-.46-.31-.86-.75-.97-.08-.02-.17-.03-.25-.03z"
+ }
+ }]
+};
+exports.high = high;
\ No newline at end of file
diff --git a/dist/iconic/home.js b/dist/iconic/home.js
new file mode 100644
index 000000000..5b251940a
--- /dev/null
+++ b/dist/iconic/home.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.home = void 0;
+var home = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-4 3h1v4h2v-2h2v2h2v-4.03l1 .03-4-3z"
+ }
+ }]
+};
+exports.home = home;
\ No newline at end of file
diff --git a/dist/iconic/image.js b/dist/iconic/image.js
new file mode 100644
index 000000000..4d1541c88
--- /dev/null
+++ b/dist/iconic/image.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.image = void 0;
+var image = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h8v-8h-8zm1 1h6v3l-1-1-1 1 2 2v1h-1l-4-4-1 1v-3z"
+ }
+ }]
+};
+exports.image = image;
\ No newline at end of file
diff --git a/dist/iconic/inIconic.js b/dist/iconic/inIconic.js
new file mode 100644
index 000000000..b1ad1548d
--- /dev/null
+++ b/dist/iconic/inIconic.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inIconic = void 0;
+var inIconic = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.61 0 1.19-.16 1.69-.44a1 1 0 0 0 .09.13l1 1.03a1.02 1.02 0 1 0 1.44-1.44l-1.03-1a1 1 0 0 0-.13-.09c.27-.5.44-1.08.44-1.69 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .59-.2 1.14-.53 1.56-.01.01-.02.02-.03.03a1 1 0 0 0-.06.03 1 1 0 0 0-.25.28c-.44.37-1.01.59-1.63.59-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5zm-.5 1v1h-1v1h1v1h1v-1h1v-1h-1v-1h-1z"
+ }
+ }]
+};
+exports.inIconic = inIconic;
\ No newline at end of file
diff --git a/dist/iconic/inbox.js b/dist/iconic/inbox.js
new file mode 100644
index 000000000..00c7cafb5
--- /dev/null
+++ b/dist/iconic/inbox.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inbox = void 0;
+var inbox = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.19 0c-.11 0-.19.08-.19.19v7.63c0 .11.08.19.19.19h7.63c.11 0 .19-.08.19-.19v-7.63c0-.11-.08-.19-.19-.19h-7.63zm.81 2h6v3h-1l-1 1h-2l-1-1h-1v-3z"
+ }
+ }]
+};
+exports.inbox = inbox;
\ No newline at end of file
diff --git a/dist/iconic/index.js b/dist/iconic/index.js
new file mode 100644
index 000000000..a1a8c78ca
--- /dev/null
+++ b/dist/iconic/index.js
@@ -0,0 +1,2050 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.laptop = exports.key = exports.italic = exports.intact = exports.info = exports.infinity = exports.inbox = exports.inIconic = exports.image = exports.home = exports.high = exports.height = exports.heart = exports.headphones = exports.header = exports.graph = exports.globe = exports.glass = exports.full = exports.fourUp = exports.fork = exports.folder = exports.flash = exports.flag = exports.fire = exports.file = exports.eyedropper = exports.eye = exports.exit = exports.excerpt = exports.euro = exports.enter = exports.empty = exports.ellipses = exports.elevator = exports.eject = exports.droplet = exports.drive = exports.download = exports.down = exports.dollar = exports.document = exports.dial = exports.descending = exports.deleteIconic = exports.dashboard = exports.cross = exports.crop = exports.copywriting = exports.contrast = exports.compass = exports.command = exports.cog = exports.code = exports.cloudy = exports.cloud = exports.closed = exports.clock = exports.clipboard = exports.circular = exports.circleTop = exports.circleRight = exports.circleLeft = exports.circleBottom = exports.circle = exports.check = exports.chat = exports.chart = exports.center = exports.cart = exports.card = exports.calendar = exports.calculator = exports.bullhorn = exports.bug = exports.brush = exports.browser = exports.broken = exports.briefcase = exports.boxed = exports.box = exports.bottom = exports.both = exports.bookmark = exports.book = exports.bolt = exports.bold = exports.bluetooth = exports.bell = exports.beaker = exports.basket = exports.ban = exports.badge = exports.audio = exports.ascending = exports.aperture = exports.alt = exports.alignTop = exports.alignCenter = exports.alignBottom = void 0;
+exports.yen = exports.x = exports.wrench = exports.wifi = exports.width = exports.warning = exports.video = exports.upload = exports.up = exports.unlocked = exports.undo = exports.underline = exports.twoUp = exports.trash = exports.transferUpload = exports.transferDownload = exports.transfer = exports.top = exports.timer = exports.threeUp = exports.thickTop = exports.thickRight = exports.thickLeft = exports.thickBottom = exports.text = exports.terminal = exports.task = exports.target = exports.tags = exports.tag = exports.tablet = exports.sun = exports.stop = exports.stepForward = exports.stepBackward = exports.star = exports.standby = exports.square = exports.spreadsheet = exports.spectrum = exports.slr = exports.skipForward = exports.skipBackward = exports.signpost = exports.signal = exports.shield = exports.share = exports.script = exports.rss = exports.right = exports.rich = exports.reload = exports.redo = exports.record = exports.random = exports.rain = exports.quoteSerifRight = exports.quoteSerifLeft = exports.quoteSansRight = exports.quoteSansLeft = exports.pulse = exports.project = exports.print = exports.pound = exports.plus = exports.play = exports.pin = exports.piece = exports.phone = exports.person = exports.people = exports.pencil = exports.pause = exports.paperclip = exports.out = exports.open = exports.off = exports.note = exports.move = exports.moon = exports.monitor = exports.minus = exports.microphone = exports.menu = exports.marker = exports.mark = exports.map = exports.low = exports.loop = exports.logout = exports.login = exports.locked = exports.location = exports.list = exports.link = exports.lightbulb = exports.left = exports.layers = void 0;
+var login = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v1h4v5h-4v1h5v-7h-5zm1 2v1h-4v1h4v1l2-1.5-2-1.5z"
+ }
+ }]
+};
+exports.login = login;
+var logout = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v1h4v5h-4v1h5v-7h-5zm-1 2l-2 1.5 2 1.5v-1h4v-1h-4v-1z"
+ }
+ }]
+};
+exports.logout = logout;
+var redo = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5 0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v.5h-1l2 2 2-2h-1v-.5c0-1.93-1.57-3.5-3.5-3.5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.redo = redo;
+var undo = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.5 0c-1.93 0-3.5 1.57-3.5 3.5v.5h-1l2 2 2-2h-1v-.5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5c0-1.93-1.57-3.5-3.5-3.5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.undo = undo;
+var center = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm1 2v1h6v-1h-6zm-1 2v1h8v-1h-8zm1 2v1h6v-1h-6z"
+ }
+ }]
+};
+exports.center = center;
+var left = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm0 2v1h6v-1h-6zm0 2v1h8v-1h-8zm0 2v1h6v-1h-6z"
+ }
+ }]
+};
+exports.left = left;
+var right = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm2 2v1h6v-1h-6zm-2 2v1h8v-1h-8zm2 2v1h6v-1h-6z"
+ }
+ }]
+};
+exports.right = right;
+var aperture = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-.69 0-1.34.19-1.91.5l3.22 2.34.75-2.25c-.6-.36-1.31-.59-2.06-.59zm-2.75 1.13c-.76.73-1.25 1.74-1.25 2.88 0 .25.02.48.06.72l3.09-2.22-1.91-1.38zm5.63.13l-1.22 3.75h2.19c.08-.32.16-.65.16-1 0-1.07-.44-2.03-1.13-2.75zm-4.72 3.22l-1.75 1.25c.55 1.13 1.6 1.99 2.88 2.22l-1.13-3.47zm1.56 1.53l.63 1.97c1.33-.12 2.46-.88 3.09-1.97h-3.72z"
+ }
+ }]
+};
+exports.aperture = aperture;
+var bottom = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v5h-2l2.53 3 2.47-3h-2v-5h-1z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.bottom = bottom;
+var circleBottom = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1 1h2v3h2l-3 3-3-3h2v-3z"
+ }
+ }]
+};
+exports.circleBottom = circleBottom;
+var circleLeft = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1v2h3v2h-3v2l-3-3 3-3z"
+ }
+ }]
+};
+exports.circleLeft = circleLeft;
+var circleRight = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1l3 3-3 3v-2h-3v-2h3v-2z"
+ }
+ }]
+};
+exports.circleRight = circleRight;
+var circleTop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1l3 3h-2v3h-2v-3h-2l3-3z"
+ }
+ }]
+};
+exports.circleTop = circleTop;
+var thickBottom = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v5h-2l3.03 3 2.97-3h-2v-5h-2z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.thickBottom = thickBottom;
+var thickLeft = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-3 3.03 3 2.97v-2h5v-2h-5v-2z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.thickLeft = thickLeft;
+var thickRight = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 0v2h-5v2h5v2l3-3.03-3-2.97z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.thickRight = thickRight;
+var thickTop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.97 0l-2.97 3h2v5h2v-5h2l-3.03-3z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.thickTop = thickTop;
+var top = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.47 0l-2.47 3h2v5h1v-5h2l-2.53-3z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.top = top;
+var spectrum = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0v8h1v-8h-1zm-2 1v6h1v-6h-1zm4 1v4h1v-4h-1zm-6 1v2h1v-2h-1z"
+ }
+ }]
+};
+exports.spectrum = spectrum;
+var audio = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.16 0c-.72.72-1.16 1.71-1.16 2.81s.43 2.12 1.16 2.84l.72-.72c-.54-.54-.88-1.29-.88-2.13 0-.83.33-1.55.88-2.09l-.72-.72zm5.69 0l-.72.72c.54.54.88 1.26.88 2.09 0 .83-.33 1.58-.88 2.13l.72.72c.72-.72 1.16-1.74 1.16-2.84 0-1.1-.43-2.09-1.16-2.81zm-4.25 1.41c-.36.36-.59.86-.59 1.41 0 .55.23 1.08.59 1.44l.69-.72c-.18-.18-.28-.44-.28-.72 0-.28.1-.5.28-.69l-.69-.72zm2.81 0l-.69.72c.18.18.28.41.28.69 0 .28-.1.54-.28.72l.69.72c.36-.36.59-.89.59-1.44 0-.55-.23-1.05-.59-1.41z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.audio = audio;
+var badge = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-1 4.81v3.19l1-1 1 1v-3.19c-.31.11-.65.19-1 .19s-.69-.08-1-.19z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.badge = badge;
+var ban = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c.66 0 1.26.21 1.75.56l-4.19 4.19c-.35-.49-.56-1.09-.56-1.75 0-1.66 1.34-3 3-3zm2.44 1.25c.35.49.56 1.09.56 1.75 0 1.66-1.34 3-3 3-.66 0-1.26-.21-1.75-.56l4.19-4.19z"
+ }
+ }]
+};
+exports.ban = ban;
+var chart = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v7h8v-1h-7v-6h-1zm5 0v5h2v-5h-2zm-3 2v3h2v-3h-2z"
+ }
+ }]
+};
+exports.chart = chart;
+var basket = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.97 0c-.13.01-.26.08-.34.19l-2.34 2.81h-1.28v1h1v3.66c0 .18.16.34.34.34h5.31c.18 0 .34-.16.34-.34v-3.66h1v-1h-1.28c-.27-.33-2.39-2.86-2.41-2.88-.11-.09-.22-.14-.34-.13zm.03 1.28l1.44 1.72h-2.88l1.44-1.72zm-1.5 3.72c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5zm3 0c.28 0 .5.22.5.5v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5z"
+ }
+ }]
+};
+exports.basket = basket;
+var empty = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-1.91h1v-2h-1v-1.91c0-.06-.04-.09-.09-.09h-6.81zm.91 1h5v4h-5v-4z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.empty = empty;
+var full = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-1.91h1v-2h-1v-1.91c0-.06-.04-.09-.09-.09h-6.81z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.full = full;
+var beaker = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.34 0a.5.5 0 0 0 .16 1h.5v1.41c-.09.17-1.2 2.31-1.66 3.09-.16.26-.34.61-.34 1.06 0 .39.15.77.41 1.03s.64.41 1.03.41h5.13c.38 0 .74-.16 1-.41h.03c.26-.26.41-.64.41-1.03 0-.45-.19-.8-.34-1.06-.46-.78-1.57-2.92-1.66-3.09v-1.41h.5a.5.5 0 1 0 0-1h-5a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm1.66 1h2v1.63l.06.09s.63 1.23 1.19 2.28h-4.5c.56-1.05 1.19-2.28 1.19-2.28l.06-.09v-1.63z"
+ }
+ }]
+};
+exports.beaker = beaker;
+var bell = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-1.1 0-2 .9-2 2 0 1.04-.52 1.98-1.34 2.66-.41.34-.66.82-.66 1.34h8c0-.52-.24-1-.66-1.34-.82-.68-1.34-1.62-1.34-2.66 0-1.1-.89-2-2-2zm-1 7c0 .55.45 1 1 1s1-.45 1-1h-2z"
+ }
+ }]
+};
+exports.bell = bell;
+var bluetooth = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.5 0v2.5l-.75-.75-.75.75 1.5 1.5-1.5 1.5.75.75.75-.75v2.5h.5l3.5-2.5-2.25-1.53 2.25-1.47-3.5-2.5h-.5zm1 1.5l1.5 1-1.5 1v-2zm0 3l1.5 1-1.5 1v-2z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.bluetooth = bluetooth;
+var bold = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1v1h5.5c1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.44-2.25.27-.34.44-.78.44-1.25 0-1.1-.89-2-2-2h-5zm3 1h1c.55 0 1 .45 1 1s-.45 1-1 1h-1v-2zm0 3h1.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-1.5v-3z"
+ }
+ }]
+};
+exports.bold = bold;
+var bolt = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-3 5h2v3l3-5h-2v-3z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.bolt = bolt;
+var book = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 0c-.07 0-.13.01-.19.03-.39.08-.7.39-.78.78-.03.06-.03.12-.03.19v5.5c0 .83.67 1.5 1.5 1.5h5.5v-1h-5.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h5.5v-5.5c0-.28-.22-.5-.5-.5h-.5v3l-1-1-1 1v-3h-3z"
+ }
+ }]
+};
+exports.book = book;
+var bookmark = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8l2-2 2 2v-8h-4z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.bookmark = bookmark;
+var box = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm0 2v5.91c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z"
+ }
+ }]
+};
+exports.box = box;
+var briefcase = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.55 0-1 .45-1 1v1h-1.91c-.06 0-.09.04-.09.09v2.41c0 .28.22.5.5.5h7c.28 0 .5-.22.5-.5v-2.41c0-.06-.04-.09-.09-.09h-1.91v-1c0-.55-.45-1-1-1h-2zm0 1h2v1h-2v-1zm-3 4.91v2c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-2c-.16.06-.32.09-.5.09h-7c-.18 0-.34-.04-.5-.09z"
+ }
+ }]
+};
+exports.briefcase = briefcase;
+var pound = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.62 0-1.16.26-1.5.69-.34.43-.5.99-.5 1.56 0 .69.16 1.25.25 1.75h-1.25v1h1.22c-.11.45-.37.96-1.06 1.66l-.16.13v1.22h6v-1h-4.91c.64-.73.98-1.4 1.13-2h1.78v-1h-1.72c-.08-.68-.28-1.24-.28-1.75 0-.39.11-.73.28-.94.17-.21.37-.31.72-.31.39 0 .61.11.75.25s.25.36.25.75h1c0-.58-.17-1.1-.53-1.47-.37-.37-.89-.53-1.47-.53z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.pound = pound;
+var browser = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.34 0a.5.5 0 0 0-.34.5v7a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm1.16 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5zm2 0h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5zm-2.5 2h6v4h-6v-4z"
+ }
+ }]
+};
+exports.browser = browser;
+var brush = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.44.03c-.03 0-.04.02-.06.03l-3.75 2.66c-.04.03-.1.11-.13.16l-.13.25c.72.23 1.27.78 1.5 1.5l.25-.13c.05-.03.12-.08.16-.13l2.66-3.75c.03-.05.04-.09 0-.13l-.44-.44c-.02-.02-.04-.03-.06-.03zm-4.78 3.97c-.74 0-1.31.61-1.31 1.34 0 .99-.55 1.85-1.34 2.31.39.22.86.34 1.34.34 1.47 0 2.66-1.18 2.66-2.66 0-.74-.61-1.34-1.34-1.34z"
+ }
+ }]
+};
+exports.brush = brush;
+var bug = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-1.19 0-1.98 1.69-1.19 2.5-.09.07-.2.14-.28.22l-1.31-.66a.5.5 0 0 0-.34-.06.5.5 0 0 0-.09.94l1.16.56c-.09.16-.19.33-.25.5h-.69a.5.5 0 0 0-.09 0 .5.5 0 1 0 .09 1h.5c0 .23.02.45.06.66l-.78.41a.5.5 0 1 0 .44.88l.66-.34c.25.46.62.85 1.03 1.09.35-.19.59-.44.59-.72v-1.44a.5.5 0 0 0 0-.09v-.81a.5.5 0 0 0 0-.22c.05-.23.26-.41.5-.41.28 0 .5.22.5.5v.88a.5.5 0 0 0 0 .09v.06a.5.5 0 0 0 0 .09v1.34c0 .27.24.53.59.72.41-.25.79-.63 1.03-1.09l.66.34a.5.5 0 1 0 .44-.88l-.78-.41c.04-.21.06-.43.06-.66h.5a.5.5 0 1 0 0-1h-.69c-.06-.17-.16-.34-.25-.5l1.16-.56a.5.5 0 0 0-.31-.94.5.5 0 0 0-.13.06l-1.31.66c-.09-.08-.19-.15-.28-.22.78-.83 0-2.5-1.19-2.5z"
+ }
+ }]
+};
+exports.bug = bug;
+var bullhorn = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0v6c.03.01.07 0 .09 0h.81c.05 0 .09-.04.09-.09v-5.81c0-.06-.04-.09-.09-.09h-.91zm-1 .5l-2.91 1.47c-.05.02-.13.03-.19.03h-1.81c-.06 0-.09.04-.09.09v1.81c0 .06.04.09.09.09h.91l1.03 2.72c.11.25.44.36.69.25.25-.11.36-.44.25-.69l-.75-1.78c.03-.14.13-.22.28-.22v-.03l2.5 1.25v-5z"
+ }
+ }]
+};
+exports.bullhorn = bullhorn;
+var calculator = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v7.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-7.81c0-.06-.04-.09-.09-.09h-6.81zm.91 1h5v2h-5v-2zm0 3h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v3h-1v-3zm-4 2h1v1h-1v-1zm2 0h1v1h-1v-1z"
+ }
+ }]
+};
+exports.calculator = calculator;
+var calendar = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h7v-2h-7zm0 3v4.91c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-4.91h-7zm1 1h1v1h-1v-1zm2 0h1v1h-1v-1zm2 0h1v1h-1v-1zm-4 2h1v1h-1v-1zm2 0h1v1h-1v-1z"
+ }
+ }]
+};
+exports.calendar = calendar;
+var slr = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.09 0c-.05 0-.1.04-.13.09l-.94 1.81c-.02.05-.07.09-.13.09h-1.41c-.83 0-1.5.67-1.5 1.5v4.41c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.81c0-.06-.04-.09-.09-.09h-.81c-.05 0-.1-.04-.13-.09l-.94-1.81c-.03-.05-.07-.09-.13-.09h-1.81zm-2.59 3c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5zm3.5 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"
+ }
+ }]
+};
+exports.slr = slr;
+var cart = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.34 0a.5.5 0 0 0 .16 1h1.5l.09.25.41 1.25.41 1.25c.04.13.21.25.34.25h3.5c.14 0 .3-.12.34-.25l.81-2.5c.04-.13-.02-.25-.16-.25h-4.44l-.38-.72a.5.5 0 0 0-.44-.28h-2a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm3.16 5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.cart = cart;
+var chat = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v5l1-1h1v-3h3v-1h-5zm3 2v4h4l1 1v-5h-5z"
+ }
+ }]
+};
+exports.chat = chat;
+var check = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.41 0l-.69.72-2.78 2.78-.81-.78-.72-.72-1.41 1.41.72.72 1.5 1.5.69.72.72-.72 3.5-3.5.72-.72-1.44-1.41z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.check = check;
+var x = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1.5 1.78l1.5 1.5 1.5-1.5.72.72-1.5 1.5 1.5 1.5-.72.72-1.5-1.5-1.5 1.5-.72-.72 1.5-1.5-1.5-1.5.72-.72z"
+ }
+ }]
+};
+exports.x = x;
+var clipboard = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-.28 0-.5.22-.5.5v.5h-.75c-.14 0-.25.11-.25.25v.75h3v-.75c0-.14-.11-.25-.25-.25h-.75v-.5c0-.28-.22-.5-.5-.5zm-3.25 1c-.14 0-.25.11-.25.25v6.5c0 .14.11.25.25.25h6.5c.14 0 .25-.11.25-.25v-6.5c0-.14-.11-.25-.25-.25h-.75v2h-5v-2h-.75z"
+ }
+ }]
+};
+exports.clipboard = clipboard;
+var clock = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm-.5 1v2.22l.16.13.5.5.34.38.72-.72-.38-.34-.34-.34v-1.81h-1z"
+ }
+ }]
+};
+exports.clock = clock;
+var download = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .37.11.71.28 1h2.72v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5h1.91c.06-.16.09-.32.09-.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm-.16 4a.5.5 0 0 0-.34.5v1.5h-1.5l2 2 2-2h-1.5v-1.5a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z"
+ }
+ }]
+};
+exports.download = download;
+var upload = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .37.11.71.28 1h2.22l2-2 2 2h1.41c.06-.16.09-.32.09-.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm0 4.5l-2.5 2.5h2v.5a.5.5 0 1 0 1 0v-.5h2l-2.5-2.5z"
+ }
+ }]
+};
+exports.upload = upload;
+var cloud = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2s.9 2 2 2h4.5c.83 0 1.5-.67 1.5-1.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.cloud = cloud;
+var cloudy = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .39.09.74.25 1.06.3-.21.64-.37 1-.47.55-1.25 1.82-2.09 3.25-2.09-.46-.6-1.18-1-2-1zm2 2c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2s.9 2 2 2h4.5c.83 0 1.5-.67 1.5-1.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5z"
+ }
+ }]
+};
+exports.cloudy = cloudy;
+var code = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 0l-3 6h1l3-6h-1zm-4 1l-1 2 1 2h1l-1-2 1-2h-1zm5 0l1 2-1 2h1l1-2-1-2h-1z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.code = code;
+var cog = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0l-.5 1.19c-.1.03-.19.08-.28.13l-1.19-.5-.72.72.5 1.19c-.05.1-.09.18-.13.28l-1.19.5v1l1.19.5c.04.1.08.18.13.28l-.5 1.19.72.72 1.19-.5c.09.04.18.09.28.13l.5 1.19h1l.5-1.19c.09-.04.19-.08.28-.13l1.19.5.72-.72-.5-1.19c.04-.09.09-.19.13-.28l1.19-.5v-1l-1.19-.5c-.03-.09-.08-.19-.13-.28l.5-1.19-.72-.72-1.19.5c-.09-.04-.19-.09-.28-.13l-.5-1.19h-1zm.5 2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z"
+ }
+ }]
+};
+exports.cog = cog;
+var down = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h8v-2h-8zm2 3l2 2 2-2h-4zm-2 4v1h8v-1h-8z"
+ }
+ }]
+};
+exports.down = down;
+var up = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm4 3l-2 2h4l-2-2zm-4 3v2h8v-2h-8z"
+ }
+ }]
+};
+exports.up = up;
+var command = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.5 0c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5h.5v1h-.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-.5h1v.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5h-.5v-1h.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5v.5h-1v-.5c0-.83-.67-1.5-1.5-1.5zm0 1c.28 0 .5.22.5.5v.5h-.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5zm4 0c.28 0 .5.22.5.5s-.22.5-.5.5h-.5v-.5c0-.28.22-.5.5-.5zm-2.5 2h1v1h-1v-1zm-1.5 2h.5v.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5zm3.5 0h.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5v-.5z"
+ }
+ }]
+};
+exports.command = command;
+var square = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h5.91l2 2v-7.91c0-.06-.04-.09-.09-.09h-7.81z"
+ }
+ }]
+};
+exports.square = square;
+var compass = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm2 1l-3 1-1 3 3-1 1-3zm-2 1.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z"
+ }
+ }]
+};
+exports.compass = compass;
+var contrast = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3v-6z"
+ }
+ }]
+};
+exports.contrast = contrast;
+var copywriting = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm0 2v1h5v-1h-5zm0 3v1h8v-1h-8zm0 2v1h6v-1h-6zm7.5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"
+ }
+ }]
+};
+exports.copywriting = copywriting;
+var card = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.25 0c-.14 0-.25.11-.25.25v.75h8v-.75c0-.14-.11-.25-.25-.25h-7.5zm-.25 2v3.75c0 .14.11.25.25.25h7.5c.14 0 .25-.11.25-.25v-3.75h-8zm1 2h1v1h-1v-1zm2 0h1v1h-1v-1z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.card = card;
+var crop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 0v1h-1v1h1v5h5v1h1v-1h1v-1h-1v-4.5l1-1-.5-.5-1 1h-4.5v-1h-1zm1 2h3.5l-3.5 3.5v-3.5zm4 .5v3.5h-3.5l3.5-3.5z"
+ }
+ }]
+};
+exports.crop = crop;
+var dashboard = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-1.66 1a.5.5 0 0 0-.19.84l.91.91c-.02.08-.06.16-.06.25 0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1c-.09 0-.17.04-.25.06l-.91-.91a.5.5 0 0 0-.44-.16.5.5 0 0 0-.06 0zm3.16 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"
+ }
+ }]
+};
+exports.dashboard = dashboard;
+var transferDownload = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v3h-2l3 3 3-3h-2v-3h-2zm-3 7v1h8v-1h-8z"
+ }
+ }]
+};
+exports.transferDownload = transferDownload;
+var transferUpload = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm4 2l-3 3h2v3h2v-3h2l-3-3z"
+ }
+ }]
+};
+exports.transferUpload = transferUpload;
+var deleteIconic = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0l-2 3 2 3h6v-6h-6zm1.5.78l1.5 1.5 1.5-1.5.72.72-1.5 1.5 1.5 1.5-.72.72-1.5-1.5-1.5 1.5-.72-.72 1.5-1.5-1.5-1.5.72-.72z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.deleteIconic = deleteIconic;
+var dial = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4h1c0-1.66 1.34-3 3-3s3 1.34 3 3h1c0-2.2-1.8-4-4-4zm-.59 2.09c-.81.25-1.41 1.01-1.41 1.91 0 1.11.9 2 2 2 1.11 0 2-.89 2-2 0-.9-.59-1.65-1.41-1.91l-.59.88-.59-.88z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.dial = dial;
+var document = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h7v-4h-4v-4h-3zm4 0v3h3l-3-3zm-3 2h1v1h-1v-1zm0 2h1v1h-1v-1zm0 2h4v1h-4v-1z"
+ }
+ }]
+};
+exports.document = document;
+var dollar = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v1h-.75c-.68 0-1.25.57-1.25 1.25v.5c0 .68.44 1.24 1.09 1.41l2.56.66c.14.04.34.29.34.44v.5c0 .14-.11.25-.25.25h-2.5c-.12 0-.21-.04-.25-.06v-.94h-1v1c0 .34.2.63.44.78.23.16.52.22.81.22h.75v1h1v-1h.75c.69 0 1.25-.56 1.25-1.25v-.5c0-.68-.44-1.24-1.09-1.41l-2.56-.66c-.14-.04-.34-.29-.34-.44v-.5c0-.14.11-.25.25-.25h2.5c.11 0 .21.04.25.06v.94h1v-1c0-.34-.2-.63-.44-.78-.23-.16-.52-.22-.81-.22h-.75v-1h-1z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.dollar = dollar;
+var quoteSansLeft = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6l3-3v-3h-3zm5 0v6l3-3v-3h-3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.quoteSansLeft = quoteSansLeft;
+var quoteSansRight = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-3 3v3h3v-6zm5 0l-3 3v3h3v-6z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.quoteSansRight = quoteSansRight;
+var quoteSerifLeft = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-1.65 0-3 1.35-3 3v3h3v-3h-2c0-1.11.89-2 2-2v-1zm5 0c-1.65 0-3 1.35-3 3v3h3v-3h-2c0-1.11.89-2 2-2v-1z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.quoteSerifLeft = quoteSerifLeft;
+var quoteSerifRight = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v3h2c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3v-3h-3zm5 0v3h2c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3v-3h-3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.quoteSerifRight = quoteSerifRight;
+var droplet = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-.34.34c-.11.11-2.66 2.69-2.66 4.88 0 1.65 1.35 3 3 3s3-1.35 3-3c0-2.18-2.55-4.77-2.66-4.88l-.34-.34zm-1.5 4.72c.28 0 .5.22.5.5 0 .55.45 1 1 1 .28 0 .5.22.5.5s-.22.5-.5.5c-1.1 0-2-.9-2-2 0-.28.22-.5.5-.5z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.droplet = droplet;
+var eject = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-4 5h8l-4-5zm-4 6v2h8v-2h-8z"
+ }
+ }]
+};
+exports.eject = eject;
+var elevator = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-3 3h6l-3-3zm-3 5l3 3 3-3h-6z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.elevator = elevator;
+var ellipses = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2z",
+ "transform": "translate(0 3)"
+ }
+ }]
+};
+exports.ellipses = ellipses;
+var closed = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1l4 2 4-2v-1h-8zm0 2v4h8v-4l-4 2-4-2z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.closed = closed;
+var open = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-4 2v6h8v-6l-4-2zm0 1.13l3 1.5v1.88l-3 1.5-3-1.5v-1.88l3-1.5zm-2 1.88v1l2 1 2-1v-1h-4z"
+ }
+ }]
+};
+exports.open = open;
+var euro = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0c-1.86 0-3.4 1.28-3.84 3h-1.91l-.25 1h2.01c0 .35.07.68.16 1h-1.97l-.19 1h2.56c.7 1.19 1.97 2 3.44 2 .73 0 1.41-.21 2-.56v-1.22c-.53.48-1.22.78-2 .78-.89 0-1.67-.39-2.22-1h2.22l.16-1h-2.97c-.11-.32-.19-.64-.19-1h3.34l.16-1h-3.31c.41-1.16 1.51-2 2.81-2 .66 0 1.26.21 1.75.56l.16-1.06c-.57-.31-1.21-.5-1.91-.5z",
+ "transform": "translate(-1)"
+ }
+ }]
+};
+exports.euro = euro;
+var excerpt = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h7v-1h-7zm0 2v1h5v-1h-5zm0 2v1h8v-1h-8zm0 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1z"
+ }
+ }]
+};
+exports.excerpt = excerpt;
+var link = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h8v-2h-1v1h-6v-6h1v-1h-2zm4 0l1.5 1.5-2.5 2.5 1 1 2.5-2.5 1.5 1.5v-4h-4z"
+ }
+ }]
+};
+exports.link = link;
+var eye = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.03 0c-2.53 0-4.03 3-4.03 3s1.5 3 4.03 3c2.47 0 3.97-3 3.97-3s-1.5-3-3.97-3zm-.03 1c1.11 0 2 .9 2 2 0 1.11-.89 2-2 2-1.1 0-2-.89-2-2 0-1.1.9-2 2-2zm0 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.04-.19-.06-.28-.08.16-.24.28-.44.28-.28 0-.5-.22-.5-.5 0-.2.12-.36.28-.44-.09-.03-.18-.06-.28-.06z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.eye = eye;
+var eyedropper = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.31 0a.5.5 0 0 0-.19.84l.63.63-3.59 3.66-.16.16v2.7199999999999998h2.69l.16-.16 3.66-3.66.63.66a.5.5 0 1 0 .72-.69l-.94-.94.66-.66c.59-.58.59-1.54 0-2.13-.57-.57-1.56-.57-2.13 0l-.66.66-.94-.94a.5.5 0 0 0-.47-.16.5.5 0 0 0-.06 0zm1.16 2.19l1.31 1.31-3.16 3.16-1.28-1.31 3.13-3.16z"
+ }
+ }]
+};
+exports.eyedropper = eyedropper;
+var file = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h7v-4h-4v-4h-3zm4 0v3h3l-3-3z"
+ }
+ }]
+};
+exports.file = file;
+var fire = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0c1 2-2 3-2 5s2 3 2 3c-.98-1.98 2-3 2-5s-2-3-2-3zm3 3c1 2-2 3-2 5h3c.4 0 1-.5 1-2 0-2-2-3-2-3z"
+ }
+ }]
+};
+exports.fire = fire;
+var flag = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h1v-8h-1zm2 0v4h2v1h4l-2-1.97 2-2.03h-3v-1h-3z"
+ }
+ }]
+};
+exports.flag = flag;
+var flash = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.5 0l-1.5 3h2l-.66 2h-1.34l1 3 3-3h-1.5l1.5-3h-2l1-2h-1.5z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.flash = flash;
+var folder = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h8v-1h-5v-1h-3zm0 3v4.5c0 .28.22.5.5.5h7c.28 0 .5-.22.5-.5v-4.5h-8z"
+ }
+ }]
+};
+exports.folder = folder;
+var fork = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.5 0c-.83 0-1.5.67-1.5 1.5 0 .66.41 1.2 1 1.41v2.19c-.59.2-1 .75-1 1.41 0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-.6-.34-1.1-.84-1.34.09-.09.21-.16.34-.16h2c.82 0 1.5-.68 1.5-1.5v-.59c.59-.2 1-.75 1-1.41 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5c0 .66.41 1.2 1 1.41v.59c0 .28-.22.5-.5.5h-2c-.17 0-.35.04-.5.09v-1.19c.59-.2 1-.75 1-1.41 0-.83-.67-1.5-1.5-1.5z"
+ }
+ }]
+};
+exports.fork = fork;
+var enter = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v4l1.5-1.5 1.5 1.5 1-1-1.5-1.5 1.5-1.5h-4zm5 4l-1 1 1.5 1.5-1.5 1.5h4v-4l-1.5 1.5-1.5-1.5z"
+ }
+ }]
+};
+exports.enter = enter;
+var exit = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 0l-1 1 1.5 1.5-1.5 1.5h4v-4l-1.5 1.5-1.5-1.5zm3 4v4l1.5-1.5 1.5 1.5 1-1-1.5-1.5 1.5-1.5h-4z"
+ }
+ }]
+};
+exports.exit = exit;
+var globe = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1c.33 0 .64.09.94.19-.21.2-.45.38-.41.56.04.18.69.13.69.5 0 .27-.42.35-.13.66.35.35-.64.98-.66 1.44-.03.83.84.97 1.53.97.42 0 .53.2.5.44-.54.77-1.46 1.25-2.47 1.25-.38 0-.73-.09-1.06-.22.22-.44-.28-1.31-.75-1.59-.23-.23-.72-.14-1-.25-.09-.27-.18-.54-.19-.84.03-.05.08-.09.16-.09.19 0 .45.38.59.34.18-.04-.74-1.31-.31-1.56.2-.12.6.39.47-.16-.12-.51.36-.28.66-.41.26-.11.45-.41.13-.59-.06-.03-.13-.1-.22-.19.45-.27.97-.44 1.53-.44zm2.31 1.09c.18.22.32.46.44.72 0 .01 0 .02 0 .03-.04.07-.11.11-.22.22-.28.28-.32-.21-.44-.31-.13-.12-.6.02-.66-.13-.07-.18.5-.42.88-.53z"
+ }
+ }]
+};
+exports.globe = globe;
+var graph = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7.03 0l-3.03 3-1-1-3 3.03 1 1 2-2.03 1 1 4-4-.97-1zm-7.03 7v1h8v-1h-8z"
+ }
+ }]
+};
+exports.graph = graph;
+var fourUp = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm-6 2v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1zm2 0v1h1v-1h-1z"
+ }
+ }]
+};
+exports.fourUp = fourUp;
+var threeUp = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2zm-6 3v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2zm-6 3v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2z"
+ }
+ }]
+};
+exports.threeUp = threeUp;
+var twoUp = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v3h3v-3h-3zm5 0v3h3v-3h-3zm-5 5v3h3v-3h-3zm5 0v3h3v-3h-3z"
+ }
+ }]
+};
+exports.twoUp = twoUp;
+var drive = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.19 0c-.11 0-.19.08-.19.19v3.31c0 .28.22.5.5.5h6c.28 0 .5-.22.5-.5v-3.31c0-.11-.08-.19-.19-.19h-6.63zm-.19 4.91v2.91c0 .11.08.19.19.19h6.63c.11 0 .19-.08.19-.19v-2.91c-.16.06-.32.09-.5.09h-6c-.18 0-.34-.04-.5-.09zm5.5 1.09c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z"
+ }
+ }]
+};
+exports.drive = drive;
+var header = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h.5c.28 0 .5.22.5.5v4c0 .28-.22.5-.5.5h-.5v1h3v-1h-.5c-.28 0-.5-.22-.5-.5v-1.5h3v1.5c0 .28-.22.5-.5.5h-.5v1h3v-1h-.5c-.28 0-.5-.22-.5-.5v-4c0-.28.22-.5.5-.5h.5v-1h-3v1h.5c.28 0 .5.22.5.5v1.5h-3v-1.5c0-.28.22-.5.5-.5h.5v-1h-3z"
+ }
+ }]
+};
+exports.header = header;
+var headphones = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-1.65 0-3 1.35-3 3v1h-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-3.5c0-1.11.89-2 2-2 1.11 0 2 .89 2 2v3.5a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-.5v-1c0-1.65-1.35-3-3-3z"
+ }
+ }]
+};
+exports.headphones = headphones;
+var heart = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0c-.55 0-1.04.23-1.41.59-.36.36-.59.85-.59 1.41 0 .55.23 1.04.59 1.41l3.41 3.41 3.41-3.41c.36-.36.59-.85.59-1.41 0-.55-.23-1.04-.59-1.41-.36-.36-.85-.59-1.41-.59-.55 0-1.04.23-1.41.59-.36.36-.59.85-.59 1.41 0-.55-.23-1.04-.59-1.41-.36-.36-.85-.59-1.41-.59z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.heart = heart;
+var home = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-4 3h1v4h2v-2h2v2h2v-4.03l1 .03-4-3z"
+ }
+ }]
+};
+exports.home = home;
+var image = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h8v-8h-8zm1 1h6v3l-1-1-1 1 2 2v1h-1l-4-4-1 1v-3z"
+ }
+ }]
+};
+exports.image = image;
+var inbox = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.19 0c-.11 0-.19.08-.19.19v7.63c0 .11.08.19.19.19h7.63c.11 0 .19-.08.19-.19v-7.63c0-.11-.08-.19-.19-.19h-7.63zm.81 2h6v3h-1l-1 1h-2l-1-1h-1v-3z"
+ }
+ }]
+};
+exports.inbox = inbox;
+var infinity = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0c-1.31 0-2 1.01-2 2s.69 2 2 2c.79 0 1.42-.56 2-1.22.58.66 1.19 1.22 2 1.22 1.31 0 2-1.01 2-2s-.69-2-2-2c-.81 0-1.42.56-2 1.22-.58-.66-1.21-1.22-2-1.22zm0 1c.42 0 .88.47 1.34 1-.46.53-.92 1-1.34 1-.74 0-1-.54-1-1 0-.46.26-1 1-1zm4 0c.74 0 1 .54 1 1 0 .46-.26 1-1 1-.43 0-.89-.47-1.34-1 .46-.53.91-1 1.34-1z",
+ "transform": "translate(0 2)"
+ }
+ }]
+};
+exports.infinity = infinity;
+var info = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-1.5 2.5c-.83 0-1.5.67-1.5 1.5h1c0-.28.22-.5.5-.5s.5.22.5.5-1 1.64-1 2.5c0 .86.67 1.5 1.5 1.5s1.5-.67 1.5-1.5h-1c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.36 1-1.84 1-2.5 0-.81-.67-1.5-1.5-1.5z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.info = info;
+var italic = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v1h1.63l-.06.13-2 5-.34.88h-1.22v1h5v-1h-1.63l.06-.13 2-5 .34-.88h1.22v-1h-5z"
+ }
+ }]
+};
+exports.italic = italic;
+var key = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .16 0 .32.03.47l-3.03 3.03v2h3v-2h2v-1l.03-.03c.15.03.31.03.47.03 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5zm.5 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z"
+ }
+ }]
+};
+exports.key = key;
+var laptop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.34 0a.5.5 0 0 0-.34.5v3.5h-1v1.5c0 .28.22.5.5.5h7.010000000000001c.28 0 .5-.22.5-.5v-1.5h-1v-3.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm.66 1h4v3h-1v1h-2v-1h-1v-3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.laptop = laptop;
+var layers = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v4h4v-4h-4zm5 2v3h-3v1h4v-4h-1zm2 2v3h-3v1h4v-4h-1z"
+ }
+ }]
+};
+exports.layers = layers;
+var lightbulb = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.41 0a.5.5 0 0 0-.13.06l-3 1.5a.5.5 0 1 0 .44.88l3-1.5a.5.5 0 0 0-.31-.94zm1 1.5a.5.5 0 0 0-.13.06l-4 2a.5.5 0 1 0 .44.88l4-2a.5.5 0 0 0-.31-.94zm0 2a.5.5 0 0 0-.13.06l-3 1.5a.5.5 0 0 0 .22.94h2a.5.5 0 0 0 .16-1l1.06-.56a.5.5 0 0 0-.31-.94zm-2.56 3.5a.5.5 0 0 0 .16 1h1a.5.5 0 1 0 0-1h-1a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.lightbulb = lightbulb;
+var broken = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v1h-1v1h2v-2h-1zm3.88.03c-.18.01-.36.03-.53.09-.27.1-.53.25-.75.47l-.44.44a.5.5 0 1 0 .69.69l.44-.44c.11-.11.24-.17.38-.22.35-.12.78-.07 1.06.22.39.39.39 1.04 0 1.44l-1.5 1.5a.5.5 0 1 0 .69.69l1.5-1.5c.78-.78.78-2.04 0-2.81-.28-.28-.61-.45-.97-.53-.18-.04-.38-.04-.56-.03zm-3.59 2.91a.5.5 0 0 0-.19.16l-1.5 1.5c-.78.78-.78 2.04 0 2.81.56.56 1.36.72 2.06.47.27-.1.53-.25.75-.47l.44-.44a.5.5 0 1 0-.69-.69l-.44.44c-.11.11-.24.17-.38.22-.35.12-.78.07-1.06-.22-.39-.39-.39-1.04 0-1.44l1.5-1.5a.5.5 0 0 0-.44-.84.5.5 0 0 0-.06 0zm2.72 3.06v2h1v-1h1v-1h-2z"
+ }
+ }]
+};
+exports.broken = broken;
+var intact = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.88.03c-.18.01-.36.03-.53.09-.27.1-.53.25-.75.47a.5.5 0 1 0 .69.69c.11-.11.24-.17.38-.22.35-.12.78-.07 1.06.22.39.39.39 1.04 0 1.44l-1.5 1.5c-.44.44-.8.48-1.06.47-.26-.01-.41-.13-.41-.13a.5.5 0 1 0-.5.88s.34.22.84.25c.5.03 1.2-.16 1.81-.78l1.5-1.5c.78-.78.78-2.04 0-2.81-.28-.28-.61-.45-.97-.53-.18-.04-.38-.04-.56-.03zm-2 2.31c-.5-.02-1.19.15-1.78.75l-1.5 1.5c-.78.78-.78 2.04 0 2.81.56.56 1.36.72 2.06.47.27-.1.53-.25.75-.47a.5.5 0 1 0-.69-.69c-.11.11-.24.17-.38.22-.35.12-.78.07-1.06-.22-.39-.39-.39-1.04 0-1.44l1.5-1.5c.4-.4.75-.45 1.03-.44.28.01.47.09.47.09a.5.5 0 1 0 .44-.88s-.34-.2-.84-.22z"
+ }
+ }]
+};
+exports.intact = intact;
+var rich = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v3h3v-3h-3zm4 0v1h4v-1h-4zm0 2v1h3v-1h-3zm-4 2v3h3v-3h-3zm4 0v1h4v-1h-4zm0 2v1h3v-1h-3z"
+ }
+ }]
+};
+exports.rich = rich;
+var list = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6z"
+ }
+ }]
+};
+exports.list = list;
+var location = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8 0l-8 4 3 1 1 3 4-8z"
+ }
+ }]
+};
+exports.location = location;
+var locked = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-1.1 0-2 .9-2 2v1h-1v4h6v-4h-1v-1c0-1.1-.9-2-2-2zm0 1c.56 0 1 .44 1 1v1h-2v-1c0-.56.44-1 1-1z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.locked = locked;
+var unlocked = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-1.1 0-2 .9-2 2h1c0-.56.44-1 1-1s1 .44 1 1v2h-4v4h6v-4h-1v-2c0-1.1-.9-2-2-2z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.unlocked = unlocked;
+var circular = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-1.65 0-3 1.35-3 3h-1l1.5 2 1.5-2h-1c0-1.11.89-2 2-2v-1zm2.5 1l-1.5 2h1c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3h1l-1.5-2z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.circular = circular;
+var loop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0v1h-5c-.55 0-1 .45-1 1v1h1v-1h5v1l2-1.5-2-1.5zm-4 4l-2 1.5 2 1.5v-1h5c.55 0 1-.45 1-1v-1h-1v1h-5v-1z"
+ }
+ }]
+};
+exports.loop = loop;
+var glass = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.59 0 1.17-.14 1.66-.41a1 1 0 0 0 .13.13l1 1a1.02 1.02 0 1 0 1.44-1.44l-1-1a1 1 0 0 0-.16-.13c.27-.49.44-1.06.44-1.66 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .66-.24 1.27-.66 1.72-.01.01-.02.02-.03.03a1 1 0 0 0-.13.13c-.44.4-1.04.63-1.69.63-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5z"
+ }
+ }]
+};
+exports.glass = glass;
+var marker = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-1.66 0-3 1.34-3 3 0 2 3 5 3 5s3-3 3-5c0-1.66-1.34-3-3-3zm0 1c1.11 0 2 .9 2 2 0 1.11-.89 2-2 2-1.1 0-2-.89-2-2 0-1.1.9-2 2-2z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.marker = marker;
+var map = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h8v-2.38a.5.5 0 0 0 0-.22v-5.41h-8zm1 1h6v4h-1.5a.5.5 0 0 0-.09 0 .5.5 0 1 0 .09 1h1.5v1h-6v-6zm2.5 1c-.83 0-1.5.67-1.5 1.5 0 1 1.5 2.5 1.5 2.5s1.5-1.5 1.5-2.5c0-.83-.67-1.5-1.5-1.5zm0 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z"
+ }
+ }]
+};
+exports.map = map;
+var pause = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6h2v-6h-2zm4 0v6h2v-6h-2z",
+ "transform": "translate(1 1)"
+ }
+ }]
+};
+exports.pause = pause;
+var play = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6l6-3-6-3z",
+ "transform": "translate(1 1)"
+ }
+ }]
+};
+exports.play = play;
+var record = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z",
+ "transform": "translate(1 1)"
+ }
+ }]
+};
+exports.record = record;
+var skipBackward = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-4 3 4 3v-6zm0 3l4 3v-6l-4 3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.skipBackward = skipBackward;
+var skipForward = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6l4-3-4-3zm4 3v3l4-3-4-3v3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.skipForward = skipForward;
+var stepBackward = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6h2v-6h-2zm2 3l5 3v-6l-5 3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.stepBackward = stepBackward;
+var stepForward = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6l5-3-5-3zm5 3v3h2v-6h-2v3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.stepForward = stepForward;
+var stop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6h6v-6h-6z",
+ "transform": "translate(1 1)"
+ }
+ }]
+};
+exports.stop = stop;
+var cross = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v2h-2v4h2v2h4v-2h2v-4h-2v-2h-4z"
+ }
+ }]
+};
+exports.cross = cross;
+var menu = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm0 2.97v1h8v-1h-8zm0 3v1h8v-1h-8z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.menu = menu;
+var microphone = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.91-.03a1 1 0 0 0-.13.03 1 1 0 0 0-.78 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1.09-1.03zm-2.56 2.03a.5.5 0 0 0-.34.5v.5c0 1.48 1.09 2.69 2.5 2.94v1.06h-.5c-.55 0-1 .45-1 1h4.01c0-.55-.45-1-1-1h-.5v-1.06c1.41-.24 2.5-1.46 2.5-2.94v-.5a.5.5 0 1 0-1 0v.5c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2v-.5a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.microphone = microphone;
+var minus = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h8v-2h-8z",
+ "transform": "translate(0 3)"
+ }
+ }]
+};
+exports.minus = minus;
+var monitor = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.34 0a.5.5 0 0 0-.34.5v5a.5.5 0 0 0 .5.5h2.5v1h-1c-.55 0-1 .45-1 1h6c0-.55-.45-1-1-1h-1v-1h2.5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm.66 1h6v4h-6v-4z"
+ }
+ }]
+};
+exports.monitor = monitor;
+var moon = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z"
+ }
+ }]
+};
+exports.moon = moon;
+var move = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0l-1.5 1.5h1v1.5h-1.5v-1l-1.5 1.5 1.5 1.5v-1h1.5v1.5h-1l1.5 1.5 1.5-1.5h-1v-1.5h1.5v1l1.5-1.5-1.5-1.5v1h-1.5v-1.5h1l-1.5-1.5z"
+ }
+ }]
+};
+exports.move = move;
+var note = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8 0c-5 0-6 1-6 1v4.09c-.15-.05-.33-.09-.5-.09-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-3.97c.73-.23 1.99-.44 4-.5v2.06c-.15-.05-.33-.09-.5-.09-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-5.5z"
+ }
+ }]
+};
+exports.note = note;
+var paperclip = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 0c-.51 0-1.02.21-1.41.59l-2.78 2.72c-1.07 1.07-1.07 2.8 0 3.88 1.07 1.07 2.8 1.07 3.88 0l1.25-1.25-.69-.69-1.16 1.13-.09.13c-.69.69-1.81.69-2.5 0-.68-.68-.66-1.78 0-2.47l2.78-2.75c.39-.39 1.04-.39 1.44 0 .39.39.37 1.01 0 1.41l-2.5 2.47c-.1.1-.27.1-.38 0-.1-.1-.1-.27 0-.38l.06-.03.91-.94-.69-.69-.97.97c-.48.48-.48 1.27 0 1.75s1.27.49 1.75 0l2.5-2.44c.78-.78.78-2.04 0-2.81-.39-.39-.89-.59-1.41-.59z"
+ }
+ }]
+};
+exports.paperclip = paperclip;
+var pencil = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0l-1 1 2 2 1-1-2-2zm-2 2l-4 4v2h2l4-4-2-2z"
+ }
+ }]
+};
+exports.pencil = pencil;
+var people = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.5 0c-.51 0-.95.35-1.22.88.45.54.72 1.28.72 2.13 0 .29-.03.55-.09.81.19.11.38.19.59.19.83 0 1.5-.9 1.5-2s-.67-2-1.5-2zm-3 1c-.83 0-1.5.9-1.5 2s.67 2 1.5 2 1.5-.9 1.5-2-.67-2-1.5-2zm4.75 3.16c-.43.51-1.02.82-1.69.84.27.38.44.84.44 1.34v.66h2v-1.66c0-.52-.31-.97-.75-1.19zm-6.5 1c-.44.22-.75.67-.75 1.19v1.66h5v-1.66c0-.52-.31-.97-.75-1.19-.45.53-1.06.84-1.75.84s-1.3-.32-1.75-.84z"
+ }
+ }]
+};
+exports.people = people;
+var person = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-1.1 0-2 1.12-2 2.5s.9 2.5 2 2.5 2-1.12 2-2.5-.9-2.5-2-2.5zm-2.09 5c-1.06.05-1.91.92-1.91 2v1h8v-1c0-1.08-.84-1.95-1.91-2-.54.61-1.28 1-2.09 1-.81 0-1.55-.39-2.09-1z"
+ }
+ }]
+};
+exports.person = person;
+var phone = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.19 0c-.11 0-.19.08-.19.19v7.63c0 .11.08.19.19.19h4.63c.11 0 .19-.08.19-.19v-7.63c0-.11-.08-.19-.19-.19h-4.63zm.81 1h3v5h-3v-5zm1.5 5.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.phone = phone;
+var pin = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.34 0a.5.5 0 0 0 .16 1h.5v2h-1c-.55 0-1 .45-1 1h3v3l.44 1 .56-1v-3h3c0-.55-.45-1-1-1h-1v-2h.5a.5.5 0 1 0 0-1h-4a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0z"
+ }
+ }]
+};
+exports.pin = pin;
+var circle = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1 2l3 2-3 2v-4z"
+ }
+ }]
+};
+exports.circle = circle;
+var plus = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z"
+ }
+ }]
+};
+exports.plus = plus;
+var standby = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v4h1v-4h-1zm-1.28 1.44l-.38.31c-.81.64-1.34 1.64-1.34 2.75 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-1.11-.53-2.11-1.34-2.75l-.38-.31-.63.78.38.31c.58.46.97 1.17.97 1.97 0 1.39-1.11 2.5-2.5 2.5s-2.5-1.11-2.5-2.5c0-.8.36-1.51.94-1.97l.41-.31-.63-.78z"
+ }
+ }]
+};
+exports.standby = standby;
+var print = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v2h4v-2h-4zm-1.91 3c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h.91v-2h6v2h.91c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-7.81zm1.91 2v3h4v-3h-4z"
+ }
+ }]
+};
+exports.print = print;
+var project = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v7h1v-7h-1zm7 0v7h1v-7h-1zm-5 1v1h2v-1h-2zm1 2v1h2v-1h-2zm1 2v1h2v-1h-2z"
+ }
+ }]
+};
+exports.project = project;
+var pulse = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.25 0l-.47 1.53-.78 2.56-.03-.06-.09-.34h-1.88v1h1.1600000000000001l.38 1.16.47 1.47.47-1.5.78-2.5.78 2.5.41 1.34.53-1.28.59-1.47.13.28h2.31v-1h-1.69l-.38-.75-.5-.97-.41 1.03-.47 1.19-.84-2.66-.47-1.53z"
+ }
+ }]
+};
+exports.pulse = pulse;
+var piece = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.28 0-.54.1-.72.28-.18.18-.28.44-.28.72 0 .28.18.48.28.72.03.06.03.16.03.28h-2.31v6h2.31c0-.12-.01-.22-.03-.28-.1-.24-.28-.44-.28-.72 0-.28.1-.54.28-.72.18-.18.44-.28.72-.28.28 0 .54.1.72.28.18.18.28.44.28.72 0 .28-.18.48-.28.72-.03.06-.03.16-.03.28h2.31v-2.31c.12 0 .22.01.28.03.24.1.44.28.72.28.28 0 .54-.1.72-.28.18-.18.28-.44.28-.72 0-.28-.1-.54-.28-.72-.18-.18-.44-.28-.72-.28-.28 0-.48.18-.72.28-.06.03-.16.03-.28.03v-2.31h-2.31c0-.12.01-.22.03-.28.1-.24.28-.44.28-.72 0-.28-.1-.54-.28-.72-.18-.18-.44-.28-.72-.28z"
+ }
+ }]
+};
+exports.piece = piece;
+var mark = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.47 0c-.85 0-1.48.26-1.88.66-.4.4-.54.9-.59 1.28l1 .13c.04-.25.12-.5.31-.69.19-.19.49-.38 1.16-.38.66 0 1.02.16 1.22.34.2.18.28.4.28.66 0 .83-.34 1.06-.84 1.5-.5.44-1.16 1.08-1.16 2.25v.25h1v-.25c0-.83.31-1.06.81-1.5.5-.44 1.19-1.08 1.19-2.25 0-.48-.17-1.02-.59-1.41-.43-.39-1.07-.59-1.91-.59zm-.5 7v1h1v-1h-1z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.mark = mark;
+var rain = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .53.2.99.53 1.34.26-.22.6-.34.97-.34.2 0 .39.05.56.13.17-.64.74-1.13 1.44-1.13.69 0 1.27.49 1.44 1.13.17-.07.36-.13.56-.13.63 0 1.15.39 1.38.94.64-.17 1.13-.75 1.13-1.44 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm-1.16 5a.5.5 0 0 0-.34.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0zm-2 1a.5.5 0 0 0-.34.5v1a.5.5 0 1 0 1 0v-1a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0zm4 0a.5.5 0 0 0-.34.5v1a.5.5 0 1 0 1 0v-1a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z"
+ }
+ }]
+};
+exports.rain = rain;
+var random = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0v1h-.5c-.35 0-.56.1-.78.38l-1.41 1.78-1.53-1.78c-.22-.26-.44-.38-.78-.38h-1v1h1c-.05 0 .01.04.03.03l1.63 1.91-1.66 2.06h-1v1h1c.35 0 .56-.1.78-.38l1.53-1.91 1.66 1.91c.22.26.44.38.78.38h.25v1l2-1.5-2-1.5v1h-.22c-.01-.01-.05-.04-.06-.03l-1.75-2.06 1.53-1.91h.5v1l2-1.5-2-1.5z"
+ }
+ }]
+};
+exports.random = random;
+var reload = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4c1.1 0 2.12-.43 2.84-1.16l-.72-.72c-.54.54-1.29.88-2.13.88-1.66 0-3-1.34-3-3s1.34-3 3-3c.83 0 1.55.36 2.09.91l-1.09 1.09h3v-3l-1.19 1.19c-.72-.72-1.71-1.19-2.81-1.19z"
+ }
+ }]
+};
+exports.reload = reload;
+var both = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l1.66 1.66-4 4-1.66-1.66v4h4l-1.66-1.66 4-4 1.66 1.66v-4h-4z"
+ }
+ }]
+};
+exports.both = both;
+var height = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.5 0l-2.5 3h2v2h-2l2.5 3 2.5-3h-2v-2h2l-2.5-3z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.height = height;
+var width = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-3 2.5 3 2.5v-2h2v2l3-2.5-3-2.5v2h-2v-2z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.width = width;
+var alt = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2c3.33 0 6 2.67 6 6h2c0-4.41-3.59-8-8-8zm0 3v2c1.67 0 3 1.33 3 3h2c0-2.75-2.25-5-5-5zm0 3v2h2c0-1.11-.9-2-2-2z"
+ }
+ }]
+};
+exports.alt = alt;
+var rss = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 0v1c3.32 0 6 2.68 6 6h1c0-3.86-3.14-7-7-7zm0 2v1c2.21 0 4 1.79 4 4h1c0-2.76-2.24-5-5-5zm0 2v1c1.11 0 2 .89 2 2h1c0-1.65-1.35-3-3-3zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"
+ }
+ }]
+};
+exports.rss = rss;
+var script = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.55 0-1 .45-1 1v5.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1.5h-1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-3h-4v-2.5c0-.28.22-.5.5-.5s.5.22.5.5v1.5h4v-2c0-.55-.45-1-1-1h-4z"
+ }
+ }]
+};
+exports.script = script;
+var boxed = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.75 0c-.41 0-.75.34-.75.75v5.5c0 .41.34.75.75.75h4.5c.41 0 .75-.34.75-.75v-1.25h-1v1h-4v-5h2v-1h-2.25zm5.25 0v1c-2.05 0-3.7 1.54-3.94 3.53.21-.88.99-1.53 1.94-1.53h2v1l2-2-2-2z"
+ }
+ }]
+};
+exports.boxed = boxed;
+var share = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 0v2c-4 0-5 2.05-5 5 .52-1.98 2-3 4-3h1v2l3-3.16-3-2.84z"
+ }
+ }]
+};
+exports.share = share;
+var shield = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-.19.09-3.5 1.47-.31.13v.31c0 1.66.67 3.12 1.47 4.19.4.53.83.97 1.25 1.28.42.31.83.53 1.28.53.46 0 .86-.22 1.28-.53.42-.31.85-.75 1.25-1.28.8-1.07 1.47-2.53 1.47-4.19v-.31l-.31-.13-3.5-1.47-.19-.09zm0 1.09v5.91c-.04 0-.33-.07-.66-.31s-.71-.63-1.06-1.09c-.64-.85-1.14-2.03-1.22-3.28l2.94-1.22z"
+ }
+ }]
+};
+exports.shield = shield;
+var signal = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0v8h1v-8h-1zm-2 1v7h1v-7h-1zm-2 2v5h1v-5h-1zm-2 2v3h1v-3h-1z"
+ }
+ }]
+};
+exports.signal = signal;
+var signpost = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v1h-2l-1 1 1 1h2v5h1v-4h2l1-1-1-1h-2v-2h-1z"
+ }
+ }]
+};
+exports.signpost = signpost;
+var ascending = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v6h-2l2.5 2 2.5-2h-2v-6h-1zm2 0v1h2v-1h-2zm0 2v1h3v-1h-3zm0 2v1h4v-1h-4z"
+ }
+ }]
+};
+exports.ascending = ascending;
+var descending = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v6h-2l2.5 2 2.5-2h-2v-6h-1zm2 0v1h4v-1h-4zm0 2v1h3v-1h-3zm0 2v1h2v-1h-2z"
+ }
+ }]
+};
+exports.descending = descending;
+var spreadsheet = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.75 0c-.41 0-.75.34-.75.75v5.5c0 .41.34.75.75.75h6.5c.41 0 .75-.34.75-.75v-5.5c0-.41-.34-.75-.75-.75h-6.5zm.25 1h1v1h-1v-1zm2 0h4v1h-4v-1zm-2 2h1v1h-1v-1zm2 0h4v1h-4v-1zm-2 2h1v1h-1v-1zm2 0h4v1h-4v-1z"
+ }
+ }]
+};
+exports.spreadsheet = spreadsheet;
+var star = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-1 3h-3l2.5 2-1 3 2.5-2 2.5 2-1-3 2.5-2h-3l-1-3z"
+ }
+ }]
+};
+exports.star = star;
+var sun = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"
+ }
+ }]
+};
+exports.sun = sun;
+var tablet = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.34 0c-.18 0-.34.16-.34.34v7.31c0 .18.16.34.34.34h6.31c.18 0 .34-.16.34-.34v-7.31c0-.18-.16-.34-.34-.34h-6.31zm.66 1h5v5h-5v-5zm2.5 5.5c.38 0 .63.42.44.75s-.68.33-.88 0c-.19-.33.05-.75.44-.75z"
+ }
+ }]
+};
+exports.tablet = tablet;
+var tag = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v3l5 5 3-3-5-5h-3zm2 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z"
+ }
+ }]
+};
+exports.tag = tag;
+var tags = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2l3 3 1.5-1.5.5-.5-2-2-1-1h-2zm3.41 0l3 3-1.19 1.22.78.78 2-2-3-3h-1.59zm-1.91 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.tags = tags;
+var target = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 1c.56 0 1 .44 1 1s-.44 1-1 1-1-.44-1-1 .44-1 1-1z"
+ }
+ }]
+};
+exports.target = target;
+var task = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v7h7v-3.59l-1 1v1.59h-5v-5h3.59l1-1h-5.59zm7 0l-3 3-1-1-1 1 2 2 4-4-1-1z"
+ }
+ }]
+};
+exports.task = task;
+var terminal = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v7.81c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-7.81c0-.06-.04-.09-.09-.09h-7.81zm1.41.78l1.72 1.72-1.72 1.72-.72-.72 1-1-1-1 .72-.72zm2.5 2.22h3v1h-3v-1z"
+ }
+ }]
+};
+exports.terminal = terminal;
+var text = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h.5c0-.55.45-1 1-1h1.5v5.5c0 .28-.22.5-.5.5h-.5v1h4v-1h-.5c-.28 0-.5-.22-.5-.5v-5.5h1.5c.55 0 1 .45 1 1h.5v-2h-8z"
+ }
+ }]
+};
+exports.text = text;
+var timer = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v1h1v.03c-1.7.24-3 1.71-3 3.47 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-.45-.1-.87-.25-1.25l-.91.38c.11.29.16.57.16.88 0 1.39-1.11 2.5-2.5 2.5s-2.5-1.11-2.5-2.5 1.11-2.5 2.5-2.5c.3 0 .59.05.88.16l.34-.94c-.23-.08-.47-.12-.72-.16v-.06h1v-1h-3zm5 1.16s-3.65 2.81-3.84 3c-.19.2-.19.49 0 .69.19.2.49.2.69 0 .2-.2 3.16-3.69 3.16-3.69z"
+ }
+ }]
+};
+exports.timer = timer;
+var transfer = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0v1h-6v1h6v1l2-1.5-2-1.5zm-4 4l-2 1.5 2 1.5v-1h6v-1h-6v-1z"
+ }
+ }]
+};
+exports.transfer = transfer;
+var trash = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.55 0-1 .45-1 1h-1c-.55 0-1 .45-1 1h7c0-.55-.45-1-1-1h-1c0-.55-.45-1-1-1h-1zm-2 3v4.81c0 .11.08.19.19.19h4.63c.11 0 .19-.08.19-.19v-4.81h-1v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3.5h-1v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3.5h-1z"
+ }
+ }]
+};
+exports.trash = trash;
+var underline = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 0v4c0 1.1 1.12 2 2.5 2h.5c1.1 0 2-.9 2-2v-4h-1v4c0 .55-.45 1-1 1s-1-.45-1-1v-4h-2zm-1 7v1h7v-1h-7z"
+ }
+ }]
+};
+exports.underline = underline;
+var alignBottom = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm6 0c-.05 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm-3 2c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-1.81zm-3.09 4v1h8v-1h-8z"
+ }
+ }]
+};
+exports.alignBottom = alignBottom;
+var alignCenter = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v1.91h2v-1.91c0-.06-.04-.09-.09-.09h-1.81zm6 0c-.05 0-.09.04-.09.09v1.91h2v-1.91c0-.06-.04-.09-.09-.09h-1.81zm-3 1c-.06 0-.09.04-.09.09v.91h2v-.91c0-.05-.04-.09-.09-.09h-1.81zm-3.09 2v1h8v-1h-8zm0 2v1.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-1.91h-2zm3 0v.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-.91h-2zm3 0v1.91c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-1.91h-2z"
+ }
+ }]
+};
+exports.alignCenter = alignCenter;
+var alignTop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm.09 2c-.06 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81zm3 0c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-1.81zm3 0c-.05 0-.09.04-.09.09v4.81c0 .05.04.09.09.09h1.81c.05 0 .09-.04.09-.09v-4.81c0-.06-.04-.09-.09-.09h-1.81z"
+ }
+ }]
+};
+exports.alignTop = alignTop;
+var video = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.5 0c-.28 0-.5.23-.5.5v4c0 .28.23.5.5.5h5c.28 0 .5-.22.5-.5v-1.5l1 1h1v-3h-1l-1 1v-1.5c0-.28-.22-.5-.5-.5h-5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.video = video;
+var high = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66zm1.66 1v1c.17 0 .34.02.5.06.86.22 1.5 1 1.5 1.94s-.63 1.72-1.5 1.94c-.16.04-.33.06-.5.06v1c.25 0 .48-.04.72-.09h.03c1.3-.33 2.25-1.51 2.25-2.91 0-1.4-.95-2.58-2.25-2.91-.23-.06-.49-.09-.75-.09zm0 2v2c.09 0 .18-.01.25-.03.43-.11.75-.51.75-.97 0-.46-.31-.86-.75-.97-.08-.02-.17-.03-.25-.03z"
+ }
+ }]
+};
+exports.high = high;
+var low = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66zm1.66 3v2c.09 0 .18-.01.25-.03.43-.11.75-.51.75-.97 0-.46-.31-.86-.75-.97-.08-.02-.17-.03-.25-.03z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.low = low;
+var off = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.off = off;
+var warning = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.09 0c-.06 0-.1.04-.13.09l-2.94 6.81c-.02.05-.03.13-.03.19v.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-.81c0-.05-.01-.14-.03-.19l-2.94-6.81c-.02-.05-.07-.09-.13-.09h-.81zm-.09 3h1v2h-1v-2zm0 3h1v1h-1v-1z"
+ }
+ }]
+};
+exports.warning = warning;
+var wifi = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.75 0c-1.38 0-2.66.4-3.75 1.09l.53.81c.93-.59 2.03-.91 3.22-.91 1.2 0 2.32.31 3.25.91l.53-.81c-1.09-.7-2.4-1.09-3.78-1.09zm0 3c-.79 0-1.5.23-2.13.63l.53.84c.47-.3 1-.47 1.59-.47.59 0 1.16.17 1.63.47l.53-.84c-.62-.39-1.37-.63-2.16-.63zm0 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"
+ }
+ }]
+};
+exports.wifi = wifi;
+var wrench = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .32.08.62.19.91l-2.91 2.88c-.39.39-.39 1.05 0 1.44.2.2.46.28.72.28.26 0 .52-.09.72-.28l2.88-2.91c.28.11.58.19.91.19 1.38 0 2.5-1.12 2.5-2.5 0-.16 0-.32-.03-.47l-.97.97h-2v-2l.97-.97c-.15-.03-.31-.03-.47-.03zm-4.5 6.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z"
+ }
+ }]
+};
+exports.wrench = wrench;
+var yen = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0l2.25 3h-2.25v1h3v1h-3v1h3v2h1v-2h3v-1h-3v-1h3v-1h-2.25l2.25-3h-1l-2.31 3h-.38l-2.31-3h-1z"
+ }
+ }]
+};
+exports.yen = yen;
+var inIconic = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.61 0 1.19-.16 1.69-.44a1 1 0 0 0 .09.13l1 1.03a1.02 1.02 0 1 0 1.44-1.44l-1.03-1a1 1 0 0 0-.13-.09c.27-.5.44-1.08.44-1.69 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .59-.2 1.14-.53 1.56-.01.01-.02.02-.03.03a1 1 0 0 0-.06.03 1 1 0 0 0-.25.28c-.44.37-1.01.59-1.63.59-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5zm-.5 1v1h-1v1h1v1h1v-1h1v-1h-1v-1h-1z"
+ }
+ }]
+};
+exports.inIconic = inIconic;
+var out = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.61 0 1.19-.16 1.69-.44a1 1 0 0 0 .09.13l1 1.03a1.02 1.02 0 1 0 1.44-1.44l-1.03-1a1 1 0 0 0-.13-.09c.27-.5.44-1.08.44-1.69 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .59-.2 1.14-.53 1.56-.01.01-.02.02-.03.03a1 1 0 0 0-.06.03 1 1 0 0 0-.25.28c-.44.37-1.01.59-1.63.59-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5zm-1.5 2v1h3v-1h-3z"
+ }
+ }]
+};
+exports.out = out;
\ No newline at end of file
diff --git a/dist/iconic/infinity.js b/dist/iconic/infinity.js
new file mode 100644
index 000000000..4be14c624
--- /dev/null
+++ b/dist/iconic/infinity.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.infinity = void 0;
+var infinity = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0c-1.31 0-2 1.01-2 2s.69 2 2 2c.79 0 1.42-.56 2-1.22.58.66 1.19 1.22 2 1.22 1.31 0 2-1.01 2-2s-.69-2-2-2c-.81 0-1.42.56-2 1.22-.58-.66-1.21-1.22-2-1.22zm0 1c.42 0 .88.47 1.34 1-.46.53-.92 1-1.34 1-.74 0-1-.54-1-1 0-.46.26-1 1-1zm4 0c.74 0 1 .54 1 1 0 .46-.26 1-1 1-.43 0-.89-.47-1.34-1 .46-.53.91-1 1.34-1z",
+ "transform": "translate(0 2)"
+ }
+ }]
+};
+exports.infinity = infinity;
\ No newline at end of file
diff --git a/dist/iconic/info.js b/dist/iconic/info.js
new file mode 100644
index 000000000..e279caee2
--- /dev/null
+++ b/dist/iconic/info.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.info = void 0;
+var info = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-1.5 2.5c-.83 0-1.5.67-1.5 1.5h1c0-.28.22-.5.5-.5s.5.22.5.5-1 1.64-1 2.5c0 .86.67 1.5 1.5 1.5s1.5-.67 1.5-1.5h-1c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.36 1-1.84 1-2.5 0-.81-.67-1.5-1.5-1.5z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.info = info;
\ No newline at end of file
diff --git a/dist/iconic/intact.js b/dist/iconic/intact.js
new file mode 100644
index 000000000..295b8d40a
--- /dev/null
+++ b/dist/iconic/intact.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.intact = void 0;
+var intact = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.88.03c-.18.01-.36.03-.53.09-.27.1-.53.25-.75.47a.5.5 0 1 0 .69.69c.11-.11.24-.17.38-.22.35-.12.78-.07 1.06.22.39.39.39 1.04 0 1.44l-1.5 1.5c-.44.44-.8.48-1.06.47-.26-.01-.41-.13-.41-.13a.5.5 0 1 0-.5.88s.34.22.84.25c.5.03 1.2-.16 1.81-.78l1.5-1.5c.78-.78.78-2.04 0-2.81-.28-.28-.61-.45-.97-.53-.18-.04-.38-.04-.56-.03zm-2 2.31c-.5-.02-1.19.15-1.78.75l-1.5 1.5c-.78.78-.78 2.04 0 2.81.56.56 1.36.72 2.06.47.27-.1.53-.25.75-.47a.5.5 0 1 0-.69-.69c-.11.11-.24.17-.38.22-.35.12-.78.07-1.06-.22-.39-.39-.39-1.04 0-1.44l1.5-1.5c.4-.4.75-.45 1.03-.44.28.01.47.09.47.09a.5.5 0 1 0 .44-.88s-.34-.2-.84-.22z"
+ }
+ }]
+};
+exports.intact = intact;
\ No newline at end of file
diff --git a/dist/iconic/italic.js b/dist/iconic/italic.js
new file mode 100644
index 000000000..37d973d63
--- /dev/null
+++ b/dist/iconic/italic.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.italic = void 0;
+var italic = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v1h1.63l-.06.13-2 5-.34.88h-1.22v1h5v-1h-1.63l.06-.13 2-5 .34-.88h1.22v-1h-5z"
+ }
+ }]
+};
+exports.italic = italic;
\ No newline at end of file
diff --git a/dist/iconic/key.js b/dist/iconic/key.js
new file mode 100644
index 000000000..93db8f608
--- /dev/null
+++ b/dist/iconic/key.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.key = void 0;
+var key = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .16 0 .32.03.47l-3.03 3.03v2h3v-2h2v-1l.03-.03c.15.03.31.03.47.03 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5zm.5 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z"
+ }
+ }]
+};
+exports.key = key;
\ No newline at end of file
diff --git a/dist/iconic/laptop.js b/dist/iconic/laptop.js
new file mode 100644
index 000000000..f22815737
--- /dev/null
+++ b/dist/iconic/laptop.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.laptop = void 0;
+var laptop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.34 0a.5.5 0 0 0-.34.5v3.5h-1v1.5c0 .28.22.5.5.5h7.010000000000001c.28 0 .5-.22.5-.5v-1.5h-1v-3.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm.66 1h4v3h-1v1h-2v-1h-1v-3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.laptop = laptop;
\ No newline at end of file
diff --git a/dist/iconic/layers.js b/dist/iconic/layers.js
new file mode 100644
index 000000000..4dcaa100a
--- /dev/null
+++ b/dist/iconic/layers.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.layers = void 0;
+var layers = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v4h4v-4h-4zm5 2v3h-3v1h4v-4h-1zm2 2v3h-3v1h4v-4h-1z"
+ }
+ }]
+};
+exports.layers = layers;
\ No newline at end of file
diff --git a/dist/iconic/left.js b/dist/iconic/left.js
new file mode 100644
index 000000000..3ec1ddf09
--- /dev/null
+++ b/dist/iconic/left.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.left = void 0;
+var left = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm0 2v1h6v-1h-6zm0 2v1h8v-1h-8zm0 2v1h6v-1h-6z"
+ }
+ }]
+};
+exports.left = left;
\ No newline at end of file
diff --git a/dist/iconic/lightbulb.js b/dist/iconic/lightbulb.js
new file mode 100644
index 000000000..1d3f665fa
--- /dev/null
+++ b/dist/iconic/lightbulb.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lightbulb = void 0;
+var lightbulb = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.41 0a.5.5 0 0 0-.13.06l-3 1.5a.5.5 0 1 0 .44.88l3-1.5a.5.5 0 0 0-.31-.94zm1 1.5a.5.5 0 0 0-.13.06l-4 2a.5.5 0 1 0 .44.88l4-2a.5.5 0 0 0-.31-.94zm0 2a.5.5 0 0 0-.13.06l-3 1.5a.5.5 0 0 0 .22.94h2a.5.5 0 0 0 .16-1l1.06-.56a.5.5 0 0 0-.31-.94zm-2.56 3.5a.5.5 0 0 0 .16 1h1a.5.5 0 1 0 0-1h-1a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.lightbulb = lightbulb;
\ No newline at end of file
diff --git a/dist/iconic/link.js b/dist/iconic/link.js
new file mode 100644
index 000000000..c31f25241
--- /dev/null
+++ b/dist/iconic/link.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.link = void 0;
+var link = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h8v-2h-1v1h-6v-6h1v-1h-2zm4 0l1.5 1.5-2.5 2.5 1 1 2.5-2.5 1.5 1.5v-4h-4z"
+ }
+ }]
+};
+exports.link = link;
\ No newline at end of file
diff --git a/dist/iconic/list.js b/dist/iconic/list.js
new file mode 100644
index 000000000..4cca6737d
--- /dev/null
+++ b/dist/iconic/list.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.list = void 0;
+var list = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6zm-1.5 2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm1.5 0v1h6v-1h-6z"
+ }
+ }]
+};
+exports.list = list;
\ No newline at end of file
diff --git a/dist/iconic/location.js b/dist/iconic/location.js
new file mode 100644
index 000000000..04e1c4e98
--- /dev/null
+++ b/dist/iconic/location.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.location = void 0;
+var location = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8 0l-8 4 3 1 1 3 4-8z"
+ }
+ }]
+};
+exports.location = location;
\ No newline at end of file
diff --git a/dist/iconic/locked.js b/dist/iconic/locked.js
new file mode 100644
index 000000000..70e2ae028
--- /dev/null
+++ b/dist/iconic/locked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.locked = void 0;
+var locked = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-1.1 0-2 .9-2 2v1h-1v4h6v-4h-1v-1c0-1.1-.9-2-2-2zm0 1c.56 0 1 .44 1 1v1h-2v-1c0-.56.44-1 1-1z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.locked = locked;
\ No newline at end of file
diff --git a/dist/iconic/login.js b/dist/iconic/login.js
new file mode 100644
index 000000000..911b42273
--- /dev/null
+++ b/dist/iconic/login.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.login = void 0;
+var login = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v1h4v5h-4v1h5v-7h-5zm1 2v1h-4v1h4v1l2-1.5-2-1.5z"
+ }
+ }]
+};
+exports.login = login;
\ No newline at end of file
diff --git a/dist/iconic/logout.js b/dist/iconic/logout.js
new file mode 100644
index 000000000..d609d3354
--- /dev/null
+++ b/dist/iconic/logout.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.logout = void 0;
+var logout = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v1h4v5h-4v1h5v-7h-5zm-1 2l-2 1.5 2 1.5v-1h4v-1h-4v-1z"
+ }
+ }]
+};
+exports.logout = logout;
\ No newline at end of file
diff --git a/dist/iconic/loop.js b/dist/iconic/loop.js
new file mode 100644
index 000000000..130bea1f5
--- /dev/null
+++ b/dist/iconic/loop.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loop = void 0;
+var loop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0v1h-5c-.55 0-1 .45-1 1v1h1v-1h5v1l2-1.5-2-1.5zm-4 4l-2 1.5 2 1.5v-1h5c.55 0 1-.45 1-1v-1h-1v1h-5v-1z"
+ }
+ }]
+};
+exports.loop = loop;
\ No newline at end of file
diff --git a/dist/iconic/low.js b/dist/iconic/low.js
new file mode 100644
index 000000000..ec3c7297d
--- /dev/null
+++ b/dist/iconic/low.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.low = void 0;
+var low = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66zm1.66 3v2c.09 0 .18-.01.25-.03.43-.11.75-.51.75-.97 0-.46-.31-.86-.75-.97-.08-.02-.17-.03-.25-.03z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.low = low;
\ No newline at end of file
diff --git a/dist/iconic/map.js b/dist/iconic/map.js
new file mode 100644
index 000000000..c0c6223bd
--- /dev/null
+++ b/dist/iconic/map.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map = void 0;
+var map = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v8h8v-2.38a.5.5 0 0 0 0-.22v-5.41h-8zm1 1h6v4h-1.5a.5.5 0 0 0-.09 0 .5.5 0 1 0 .09 1h1.5v1h-6v-6zm2.5 1c-.83 0-1.5.67-1.5 1.5 0 1 1.5 2.5 1.5 2.5s1.5-1.5 1.5-2.5c0-.83-.67-1.5-1.5-1.5zm0 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z"
+ }
+ }]
+};
+exports.map = map;
\ No newline at end of file
diff --git a/dist/iconic/mark.js b/dist/iconic/mark.js
new file mode 100644
index 000000000..1736732e4
--- /dev/null
+++ b/dist/iconic/mark.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mark = void 0;
+var mark = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.47 0c-.85 0-1.48.26-1.88.66-.4.4-.54.9-.59 1.28l1 .13c.04-.25.12-.5.31-.69.19-.19.49-.38 1.16-.38.66 0 1.02.16 1.22.34.2.18.28.4.28.66 0 .83-.34 1.06-.84 1.5-.5.44-1.16 1.08-1.16 2.25v.25h1v-.25c0-.83.31-1.06.81-1.5.5-.44 1.19-1.08 1.19-2.25 0-.48-.17-1.02-.59-1.41-.43-.39-1.07-.59-1.91-.59zm-.5 7v1h1v-1h-1z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.mark = mark;
\ No newline at end of file
diff --git a/dist/iconic/marker.js b/dist/iconic/marker.js
new file mode 100644
index 000000000..d9c9513f0
--- /dev/null
+++ b/dist/iconic/marker.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.marker = void 0;
+var marker = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-1.66 0-3 1.34-3 3 0 2 3 5 3 5s3-3 3-5c0-1.66-1.34-3-3-3zm0 1c1.11 0 2 .9 2 2 0 1.11-.89 2-2 2-1.1 0-2-.89-2-2 0-1.1.9-2 2-2z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.marker = marker;
\ No newline at end of file
diff --git a/dist/iconic/menu.js b/dist/iconic/menu.js
new file mode 100644
index 000000000..265354bd3
--- /dev/null
+++ b/dist/iconic/menu.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.menu = void 0;
+var menu = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm0 2.97v1h8v-1h-8zm0 3v1h8v-1h-8z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.menu = menu;
\ No newline at end of file
diff --git a/dist/iconic/microphone.js b/dist/iconic/microphone.js
new file mode 100644
index 000000000..30b3a047e
--- /dev/null
+++ b/dist/iconic/microphone.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.microphone = void 0;
+var microphone = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.91-.03a1 1 0 0 0-.13.03 1 1 0 0 0-.78 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1.09-1.03zm-2.56 2.03a.5.5 0 0 0-.34.5v.5c0 1.48 1.09 2.69 2.5 2.94v1.06h-.5c-.55 0-1 .45-1 1h4.01c0-.55-.45-1-1-1h-.5v-1.06c1.41-.24 2.5-1.46 2.5-2.94v-.5a.5.5 0 1 0-1 0v.5c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2v-.5a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.microphone = microphone;
\ No newline at end of file
diff --git a/dist/iconic/minus.js b/dist/iconic/minus.js
new file mode 100644
index 000000000..7f787cf62
--- /dev/null
+++ b/dist/iconic/minus.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minus = void 0;
+var minus = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h8v-2h-8z",
+ "transform": "translate(0 3)"
+ }
+ }]
+};
+exports.minus = minus;
\ No newline at end of file
diff --git a/dist/iconic/monitor.js b/dist/iconic/monitor.js
new file mode 100644
index 000000000..dbea3d0c2
--- /dev/null
+++ b/dist/iconic/monitor.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.monitor = void 0;
+var monitor = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.34 0a.5.5 0 0 0-.34.5v5a.5.5 0 0 0 .5.5h2.5v1h-1c-.55 0-1 .45-1 1h6c0-.55-.45-1-1-1h-1v-1h2.5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0zm.66 1h6v4h-6v-4z"
+ }
+ }]
+};
+exports.monitor = monitor;
\ No newline at end of file
diff --git a/dist/iconic/moon.js b/dist/iconic/moon.js
new file mode 100644
index 000000000..85d5cc767
--- /dev/null
+++ b/dist/iconic/moon.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.moon = void 0;
+var moon = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z"
+ }
+ }]
+};
+exports.moon = moon;
\ No newline at end of file
diff --git a/dist/iconic/move.js b/dist/iconic/move.js
new file mode 100644
index 000000000..0282e55f6
--- /dev/null
+++ b/dist/iconic/move.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.move = void 0;
+var move = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0l-1.5 1.5h1v1.5h-1.5v-1l-1.5 1.5 1.5 1.5v-1h1.5v1.5h-1l1.5 1.5 1.5-1.5h-1v-1.5h1.5v1l1.5-1.5-1.5-1.5v1h-1.5v-1.5h1l-1.5-1.5z"
+ }
+ }]
+};
+exports.move = move;
\ No newline at end of file
diff --git a/dist/iconic/note.js b/dist/iconic/note.js
new file mode 100644
index 000000000..70266b09a
--- /dev/null
+++ b/dist/iconic/note.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.note = void 0;
+var note = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8 0c-5 0-6 1-6 1v4.09c-.15-.05-.33-.09-.5-.09-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-3.97c.73-.23 1.99-.44 4-.5v2.06c-.15-.05-.33-.09-.5-.09-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5v-5.5z"
+ }
+ }]
+};
+exports.note = note;
\ No newline at end of file
diff --git a/dist/iconic/off.js b/dist/iconic/off.js
new file mode 100644
index 000000000..33dc5d6e3
--- /dev/null
+++ b/dist/iconic/off.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.off = void 0;
+var off = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.34 0l-1.34 2h-2v4h2l1.34 2h.66v-8h-.66z",
+ "transform": "translate(2)"
+ }
+ }]
+};
+exports.off = off;
\ No newline at end of file
diff --git a/dist/iconic/open.js b/dist/iconic/open.js
new file mode 100644
index 000000000..1f4ab2cc0
--- /dev/null
+++ b/dist/iconic/open.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.open = void 0;
+var open = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-4 2v6h8v-6l-4-2zm0 1.13l3 1.5v1.88l-3 1.5-3-1.5v-1.88l3-1.5zm-2 1.88v1l2 1 2-1v-1h-4z"
+ }
+ }]
+};
+exports.open = open;
\ No newline at end of file
diff --git a/dist/iconic/out.js b/dist/iconic/out.js
new file mode 100644
index 000000000..7ec5bf68a
--- /dev/null
+++ b/dist/iconic/out.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.out = void 0;
+var out = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5c.61 0 1.19-.16 1.69-.44a1 1 0 0 0 .09.13l1 1.03a1.02 1.02 0 1 0 1.44-1.44l-1.03-1a1 1 0 0 0-.13-.09c.27-.5.44-1.08.44-1.69 0-1.93-1.57-3.5-3.5-3.5zm0 1c1.39 0 2.5 1.11 2.5 2.5 0 .59-.2 1.14-.53 1.56-.01.01-.02.02-.03.03a1 1 0 0 0-.06.03 1 1 0 0 0-.25.28c-.44.37-1.01.59-1.63.59-1.39 0-2.5-1.11-2.5-2.5s1.11-2.5 2.5-2.5zm-1.5 2v1h3v-1h-3z"
+ }
+ }]
+};
+exports.out = out;
\ No newline at end of file
diff --git a/dist/iconic/paperclip.js b/dist/iconic/paperclip.js
new file mode 100644
index 000000000..dd9466a46
--- /dev/null
+++ b/dist/iconic/paperclip.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paperclip = void 0;
+var paperclip = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 0c-.51 0-1.02.21-1.41.59l-2.78 2.72c-1.07 1.07-1.07 2.8 0 3.88 1.07 1.07 2.8 1.07 3.88 0l1.25-1.25-.69-.69-1.16 1.13-.09.13c-.69.69-1.81.69-2.5 0-.68-.68-.66-1.78 0-2.47l2.78-2.75c.39-.39 1.04-.39 1.44 0 .39.39.37 1.01 0 1.41l-2.5 2.47c-.1.1-.27.1-.38 0-.1-.1-.1-.27 0-.38l.06-.03.91-.94-.69-.69-.97.97c-.48.48-.48 1.27 0 1.75s1.27.49 1.75 0l2.5-2.44c.78-.78.78-2.04 0-2.81-.39-.39-.89-.59-1.41-.59z"
+ }
+ }]
+};
+exports.paperclip = paperclip;
\ No newline at end of file
diff --git a/dist/iconic/pause.js b/dist/iconic/pause.js
new file mode 100644
index 000000000..c3b7d4714
--- /dev/null
+++ b/dist/iconic/pause.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pause = void 0;
+var pause = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6h2v-6h-2zm4 0v6h2v-6h-2z",
+ "transform": "translate(1 1)"
+ }
+ }]
+};
+exports.pause = pause;
\ No newline at end of file
diff --git a/dist/iconic/pencil.js b/dist/iconic/pencil.js
new file mode 100644
index 000000000..5fb061b31
--- /dev/null
+++ b/dist/iconic/pencil.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pencil = void 0;
+var pencil = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0l-1 1 2 2 1-1-2-2zm-2 2l-4 4v2h2l4-4-2-2z"
+ }
+ }]
+};
+exports.pencil = pencil;
\ No newline at end of file
diff --git a/dist/iconic/people.js b/dist/iconic/people.js
new file mode 100644
index 000000000..a3f6bc0e8
--- /dev/null
+++ b/dist/iconic/people.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.people = void 0;
+var people = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.5 0c-.51 0-.95.35-1.22.88.45.54.72 1.28.72 2.13 0 .29-.03.55-.09.81.19.11.38.19.59.19.83 0 1.5-.9 1.5-2s-.67-2-1.5-2zm-3 1c-.83 0-1.5.9-1.5 2s.67 2 1.5 2 1.5-.9 1.5-2-.67-2-1.5-2zm4.75 3.16c-.43.51-1.02.82-1.69.84.27.38.44.84.44 1.34v.66h2v-1.66c0-.52-.31-.97-.75-1.19zm-6.5 1c-.44.22-.75.67-.75 1.19v1.66h5v-1.66c0-.52-.31-.97-.75-1.19-.45.53-1.06.84-1.75.84s-1.3-.32-1.75-.84z"
+ }
+ }]
+};
+exports.people = people;
\ No newline at end of file
diff --git a/dist/iconic/person.js b/dist/iconic/person.js
new file mode 100644
index 000000000..bbe997aea
--- /dev/null
+++ b/dist/iconic/person.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.person = void 0;
+var person = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-1.1 0-2 1.12-2 2.5s.9 2.5 2 2.5 2-1.12 2-2.5-.9-2.5-2-2.5zm-2.09 5c-1.06.05-1.91.92-1.91 2v1h8v-1c0-1.08-.84-1.95-1.91-2-.54.61-1.28 1-2.09 1-.81 0-1.55-.39-2.09-1z"
+ }
+ }]
+};
+exports.person = person;
\ No newline at end of file
diff --git a/dist/iconic/phone.js b/dist/iconic/phone.js
new file mode 100644
index 000000000..cb09f56a2
--- /dev/null
+++ b/dist/iconic/phone.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.phone = void 0;
+var phone = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.19 0c-.11 0-.19.08-.19.19v7.63c0 .11.08.19.19.19h4.63c.11 0 .19-.08.19-.19v-7.63c0-.11-.08-.19-.19-.19h-4.63zm.81 1h3v5h-3v-5zm1.5 5.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.phone = phone;
\ No newline at end of file
diff --git a/dist/iconic/piece.js b/dist/iconic/piece.js
new file mode 100644
index 000000000..872d6a98b
--- /dev/null
+++ b/dist/iconic/piece.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.piece = void 0;
+var piece = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.28 0-.54.1-.72.28-.18.18-.28.44-.28.72 0 .28.18.48.28.72.03.06.03.16.03.28h-2.31v6h2.31c0-.12-.01-.22-.03-.28-.1-.24-.28-.44-.28-.72 0-.28.1-.54.28-.72.18-.18.44-.28.72-.28.28 0 .54.1.72.28.18.18.28.44.28.72 0 .28-.18.48-.28.72-.03.06-.03.16-.03.28h2.31v-2.31c.12 0 .22.01.28.03.24.1.44.28.72.28.28 0 .54-.1.72-.28.18-.18.28-.44.28-.72 0-.28-.1-.54-.28-.72-.18-.18-.44-.28-.72-.28-.28 0-.48.18-.72.28-.06.03-.16.03-.28.03v-2.31h-2.31c0-.12.01-.22.03-.28.1-.24.28-.44.28-.72 0-.28-.1-.54-.28-.72-.18-.18-.44-.28-.72-.28z"
+ }
+ }]
+};
+exports.piece = piece;
\ No newline at end of file
diff --git a/dist/iconic/pin.js b/dist/iconic/pin.js
new file mode 100644
index 000000000..cb511b510
--- /dev/null
+++ b/dist/iconic/pin.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pin = void 0;
+var pin = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1.34 0a.5.5 0 0 0 .16 1h.5v2h-1c-.55 0-1 .45-1 1h3v3l.44 1 .56-1v-3h3c0-.55-.45-1-1-1h-1v-2h.5a.5.5 0 1 0 0-1h-4a.5.5 0 0 0-.09 0 .5.5 0 0 0-.06 0z"
+ }
+ }]
+};
+exports.pin = pin;
\ No newline at end of file
diff --git a/dist/iconic/play.js b/dist/iconic/play.js
new file mode 100644
index 000000000..39d333d75
--- /dev/null
+++ b/dist/iconic/play.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.play = void 0;
+var play = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6l6-3-6-3z",
+ "transform": "translate(1 1)"
+ }
+ }]
+};
+exports.play = play;
\ No newline at end of file
diff --git a/dist/iconic/plus.js b/dist/iconic/plus.js
new file mode 100644
index 000000000..933b71c1e
--- /dev/null
+++ b/dist/iconic/plus.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plus = void 0;
+var plus = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z"
+ }
+ }]
+};
+exports.plus = plus;
\ No newline at end of file
diff --git a/dist/iconic/pound.js b/dist/iconic/pound.js
new file mode 100644
index 000000000..196868fc9
--- /dev/null
+++ b/dist/iconic/pound.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pound = void 0;
+var pound = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.62 0-1.16.26-1.5.69-.34.43-.5.99-.5 1.56 0 .69.16 1.25.25 1.75h-1.25v1h1.22c-.11.45-.37.96-1.06 1.66l-.16.13v1.22h6v-1h-4.91c.64-.73.98-1.4 1.13-2h1.78v-1h-1.72c-.08-.68-.28-1.24-.28-1.75 0-.39.11-.73.28-.94.17-.21.37-.31.72-.31.39 0 .61.11.75.25s.25.36.25.75h1c0-.58-.17-1.1-.53-1.47-.37-.37-.89-.53-1.47-.53z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.pound = pound;
\ No newline at end of file
diff --git a/dist/iconic/print.js b/dist/iconic/print.js
new file mode 100644
index 000000000..f940dc89c
--- /dev/null
+++ b/dist/iconic/print.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.print = void 0;
+var print = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v2h4v-2h-4zm-1.91 3c-.06 0-.09.04-.09.09v2.81c0 .05.04.09.09.09h.91v-2h6v2h.91c.05 0 .09-.04.09-.09v-2.81c0-.06-.04-.09-.09-.09h-7.81zm1.91 2v3h4v-3h-4z"
+ }
+ }]
+};
+exports.print = print;
\ No newline at end of file
diff --git a/dist/iconic/project.js b/dist/iconic/project.js
new file mode 100644
index 000000000..755977b35
--- /dev/null
+++ b/dist/iconic/project.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.project = void 0;
+var project = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v7h1v-7h-1zm7 0v7h1v-7h-1zm-5 1v1h2v-1h-2zm1 2v1h2v-1h-2zm1 2v1h2v-1h-2z"
+ }
+ }]
+};
+exports.project = project;
\ No newline at end of file
diff --git a/dist/iconic/pulse.js b/dist/iconic/pulse.js
new file mode 100644
index 000000000..f4b93a7ea
--- /dev/null
+++ b/dist/iconic/pulse.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pulse = void 0;
+var pulse = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.25 0l-.47 1.53-.78 2.56-.03-.06-.09-.34h-1.88v1h1.1600000000000001l.38 1.16.47 1.47.47-1.5.78-2.5.78 2.5.41 1.34.53-1.28.59-1.47.13.28h2.31v-1h-1.69l-.38-.75-.5-.97-.41 1.03-.47 1.19-.84-2.66-.47-1.53z"
+ }
+ }]
+};
+exports.pulse = pulse;
\ No newline at end of file
diff --git a/dist/iconic/quoteSansLeft.js b/dist/iconic/quoteSansLeft.js
new file mode 100644
index 000000000..22b49329c
--- /dev/null
+++ b/dist/iconic/quoteSansLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quoteSansLeft = void 0;
+var quoteSansLeft = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6l3-3v-3h-3zm5 0v6l3-3v-3h-3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.quoteSansLeft = quoteSansLeft;
\ No newline at end of file
diff --git a/dist/iconic/quoteSansRight.js b/dist/iconic/quoteSansRight.js
new file mode 100644
index 000000000..078a1ea82
--- /dev/null
+++ b/dist/iconic/quoteSansRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quoteSansRight = void 0;
+var quoteSansRight = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-3 3v3h3v-6zm5 0l-3 3v3h3v-6z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.quoteSansRight = quoteSansRight;
\ No newline at end of file
diff --git a/dist/iconic/quoteSerifLeft.js b/dist/iconic/quoteSerifLeft.js
new file mode 100644
index 000000000..3dbe6f650
--- /dev/null
+++ b/dist/iconic/quoteSerifLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quoteSerifLeft = void 0;
+var quoteSerifLeft = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-1.65 0-3 1.35-3 3v3h3v-3h-2c0-1.11.89-2 2-2v-1zm5 0c-1.65 0-3 1.35-3 3v3h3v-3h-2c0-1.11.89-2 2-2v-1z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.quoteSerifLeft = quoteSerifLeft;
\ No newline at end of file
diff --git a/dist/iconic/quoteSerifRight.js b/dist/iconic/quoteSerifRight.js
new file mode 100644
index 000000000..5608dd5ac
--- /dev/null
+++ b/dist/iconic/quoteSerifRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quoteSerifRight = void 0;
+var quoteSerifRight = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v3h2c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3v-3h-3zm5 0v3h2c0 1.11-.89 2-2 2v1c1.65 0 3-1.35 3-3v-3h-3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.quoteSerifRight = quoteSerifRight;
\ No newline at end of file
diff --git a/dist/iconic/rain.js b/dist/iconic/rain.js
new file mode 100644
index 000000000..c9601c371
--- /dev/null
+++ b/dist/iconic/rain.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rain = void 0;
+var rain = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .53.2.99.53 1.34.26-.22.6-.34.97-.34.2 0 .39.05.56.13.17-.64.74-1.13 1.44-1.13.69 0 1.27.49 1.44 1.13.17-.07.36-.13.56-.13.63 0 1.15.39 1.38.94.64-.17 1.13-.75 1.13-1.44 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm-1.16 5a.5.5 0 0 0-.34.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0zm-2 1a.5.5 0 0 0-.34.5v1a.5.5 0 1 0 1 0v-1a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0zm4 0a.5.5 0 0 0-.34.5v1a.5.5 0 1 0 1 0v-1a.5.5 0 0 0-.59-.5.5.5 0 0 0-.06 0z"
+ }
+ }]
+};
+exports.rain = rain;
\ No newline at end of file
diff --git a/dist/iconic/random.js b/dist/iconic/random.js
new file mode 100644
index 000000000..1b1f7f7e1
--- /dev/null
+++ b/dist/iconic/random.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.random = void 0;
+var random = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0v1h-.5c-.35 0-.56.1-.78.38l-1.41 1.78-1.53-1.78c-.22-.26-.44-.38-.78-.38h-1v1h1c-.05 0 .01.04.03.03l1.63 1.91-1.66 2.06h-1v1h1c.35 0 .56-.1.78-.38l1.53-1.91 1.66 1.91c.22.26.44.38.78.38h.25v1l2-1.5-2-1.5v1h-.22c-.01-.01-.05-.04-.06-.03l-1.75-2.06 1.53-1.91h.5v1l2-1.5-2-1.5z"
+ }
+ }]
+};
+exports.random = random;
\ No newline at end of file
diff --git a/dist/iconic/record.js b/dist/iconic/record.js
new file mode 100644
index 000000000..6f66516d1
--- /dev/null
+++ b/dist/iconic/record.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.record = void 0;
+var record = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z",
+ "transform": "translate(1 1)"
+ }
+ }]
+};
+exports.record = record;
\ No newline at end of file
diff --git a/dist/iconic/redo.js b/dist/iconic/redo.js
new file mode 100644
index 000000000..8df35c7e5
--- /dev/null
+++ b/dist/iconic/redo.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.redo = void 0;
+var redo = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.5 0c-1.93 0-3.5 1.57-3.5 3.5 0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v.5h-1l2 2 2-2h-1v-.5c0-1.93-1.57-3.5-3.5-3.5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.redo = redo;
\ No newline at end of file
diff --git a/dist/iconic/reload.js b/dist/iconic/reload.js
new file mode 100644
index 000000000..d854315a1
--- /dev/null
+++ b/dist/iconic/reload.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.reload = void 0;
+var reload = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4c1.1 0 2.12-.43 2.84-1.16l-.72-.72c-.54.54-1.29.88-2.13.88-1.66 0-3-1.34-3-3s1.34-3 3-3c.83 0 1.55.36 2.09.91l-1.09 1.09h3v-3l-1.19 1.19c-.72-.72-1.71-1.19-2.81-1.19z"
+ }
+ }]
+};
+exports.reload = reload;
\ No newline at end of file
diff --git a/dist/iconic/rich.js b/dist/iconic/rich.js
new file mode 100644
index 000000000..adf399202
--- /dev/null
+++ b/dist/iconic/rich.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rich = void 0;
+var rich = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v3h3v-3h-3zm4 0v1h4v-1h-4zm0 2v1h3v-1h-3zm-4 2v3h3v-3h-3zm4 0v1h4v-1h-4zm0 2v1h3v-1h-3z"
+ }
+ }]
+};
+exports.rich = rich;
\ No newline at end of file
diff --git a/dist/iconic/right.js b/dist/iconic/right.js
new file mode 100644
index 000000000..f3abe185a
--- /dev/null
+++ b/dist/iconic/right.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.right = void 0;
+var right = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm2 2v1h6v-1h-6zm-2 2v1h8v-1h-8zm2 2v1h6v-1h-6z"
+ }
+ }]
+};
+exports.right = right;
\ No newline at end of file
diff --git a/dist/iconic/rss.js b/dist/iconic/rss.js
new file mode 100644
index 000000000..ccf54b65a
--- /dev/null
+++ b/dist/iconic/rss.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rss = void 0;
+var rss = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 0v1c3.32 0 6 2.68 6 6h1c0-3.86-3.14-7-7-7zm0 2v1c2.21 0 4 1.79 4 4h1c0-2.76-2.24-5-5-5zm0 2v1c1.11 0 2 .89 2 2h1c0-1.65-1.35-3-3-3zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"
+ }
+ }]
+};
+exports.rss = rss;
\ No newline at end of file
diff --git a/dist/iconic/script.js b/dist/iconic/script.js
new file mode 100644
index 000000000..88ef2fb24
--- /dev/null
+++ b/dist/iconic/script.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.script = void 0;
+var script = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.55 0-1 .45-1 1v5.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1.5h-1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-3h-4v-2.5c0-.28.22-.5.5-.5s.5.22.5.5v1.5h4v-2c0-.55-.45-1-1-1h-4z"
+ }
+ }]
+};
+exports.script = script;
\ No newline at end of file
diff --git a/dist/iconic/share.js b/dist/iconic/share.js
new file mode 100644
index 000000000..26019cc74
--- /dev/null
+++ b/dist/iconic/share.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.share = void 0;
+var share = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 0v2c-4 0-5 2.05-5 5 .52-1.98 2-3 4-3h1v2l3-3.16-3-2.84z"
+ }
+ }]
+};
+exports.share = share;
\ No newline at end of file
diff --git a/dist/iconic/shield.js b/dist/iconic/shield.js
new file mode 100644
index 000000000..4fa16362e
--- /dev/null
+++ b/dist/iconic/shield.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shield = void 0;
+var shield = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-.19.09-3.5 1.47-.31.13v.31c0 1.66.67 3.12 1.47 4.19.4.53.83.97 1.25 1.28.42.31.83.53 1.28.53.46 0 .86-.22 1.28-.53.42-.31.85-.75 1.25-1.28.8-1.07 1.47-2.53 1.47-4.19v-.31l-.31-.13-3.5-1.47-.19-.09zm0 1.09v5.91c-.04 0-.33-.07-.66-.31s-.71-.63-1.06-1.09c-.64-.85-1.14-2.03-1.22-3.28l2.94-1.22z"
+ }
+ }]
+};
+exports.shield = shield;
\ No newline at end of file
diff --git a/dist/iconic/signal.js b/dist/iconic/signal.js
new file mode 100644
index 000000000..f1b994685
--- /dev/null
+++ b/dist/iconic/signal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.signal = void 0;
+var signal = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0v8h1v-8h-1zm-2 1v7h1v-7h-1zm-2 2v5h1v-5h-1zm-2 2v3h1v-3h-1z"
+ }
+ }]
+};
+exports.signal = signal;
\ No newline at end of file
diff --git a/dist/iconic/signpost.js b/dist/iconic/signpost.js
new file mode 100644
index 000000000..b4023f87c
--- /dev/null
+++ b/dist/iconic/signpost.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.signpost = void 0;
+var signpost = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v1h-2l-1 1 1 1h2v5h1v-4h2l1-1-1-1h-2v-2h-1z"
+ }
+ }]
+};
+exports.signpost = signpost;
\ No newline at end of file
diff --git a/dist/iconic/skipBackward.js b/dist/iconic/skipBackward.js
new file mode 100644
index 000000000..09221bd75
--- /dev/null
+++ b/dist/iconic/skipBackward.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skipBackward = void 0;
+var skipBackward = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-4 3 4 3v-6zm0 3l4 3v-6l-4 3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.skipBackward = skipBackward;
\ No newline at end of file
diff --git a/dist/iconic/skipForward.js b/dist/iconic/skipForward.js
new file mode 100644
index 000000000..edd0b768a
--- /dev/null
+++ b/dist/iconic/skipForward.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skipForward = void 0;
+var skipForward = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6l4-3-4-3zm4 3v3l4-3-4-3v3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.skipForward = skipForward;
\ No newline at end of file
diff --git a/dist/iconic/slr.js b/dist/iconic/slr.js
new file mode 100644
index 000000000..ceaa9611b
--- /dev/null
+++ b/dist/iconic/slr.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.slr = void 0;
+var slr = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.09 0c-.05 0-.1.04-.13.09l-.94 1.81c-.02.05-.07.09-.13.09h-1.41c-.83 0-1.5.67-1.5 1.5v4.41c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.81c0-.06-.04-.09-.09-.09h-.81c-.05 0-.1-.04-.13-.09l-.94-1.81c-.03-.05-.07-.09-.13-.09h-1.81zm-2.59 3c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5zm3.5 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"
+ }
+ }]
+};
+exports.slr = slr;
\ No newline at end of file
diff --git a/dist/iconic/spectrum.js b/dist/iconic/spectrum.js
new file mode 100644
index 000000000..7bbdd64fb
--- /dev/null
+++ b/dist/iconic/spectrum.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spectrum = void 0;
+var spectrum = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0v8h1v-8h-1zm-2 1v6h1v-6h-1zm4 1v4h1v-4h-1zm-6 1v2h1v-2h-1z"
+ }
+ }]
+};
+exports.spectrum = spectrum;
\ No newline at end of file
diff --git a/dist/iconic/spreadsheet.js b/dist/iconic/spreadsheet.js
new file mode 100644
index 000000000..45d2aaa99
--- /dev/null
+++ b/dist/iconic/spreadsheet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spreadsheet = void 0;
+var spreadsheet = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.75 0c-.41 0-.75.34-.75.75v5.5c0 .41.34.75.75.75h6.5c.41 0 .75-.34.75-.75v-5.5c0-.41-.34-.75-.75-.75h-6.5zm.25 1h1v1h-1v-1zm2 0h4v1h-4v-1zm-2 2h1v1h-1v-1zm2 0h4v1h-4v-1zm-2 2h1v1h-1v-1zm2 0h4v1h-4v-1z"
+ }
+ }]
+};
+exports.spreadsheet = spreadsheet;
\ No newline at end of file
diff --git a/dist/iconic/square.js b/dist/iconic/square.js
new file mode 100644
index 000000000..028e0f9ab
--- /dev/null
+++ b/dist/iconic/square.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square = void 0;
+var square = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v5.81c0 .05.04.09.09.09h5.91l2 2v-7.91c0-.06-.04-.09-.09-.09h-7.81z"
+ }
+ }]
+};
+exports.square = square;
\ No newline at end of file
diff --git a/dist/iconic/standby.js b/dist/iconic/standby.js
new file mode 100644
index 000000000..feb3b346c
--- /dev/null
+++ b/dist/iconic/standby.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.standby = void 0;
+var standby = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v4h1v-4h-1zm-1.28 1.44l-.38.31c-.81.64-1.34 1.64-1.34 2.75 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-1.11-.53-2.11-1.34-2.75l-.38-.31-.63.78.38.31c.58.46.97 1.17.97 1.97 0 1.39-1.11 2.5-2.5 2.5s-2.5-1.11-2.5-2.5c0-.8.36-1.51.94-1.97l.41-.31-.63-.78z"
+ }
+ }]
+};
+exports.standby = standby;
\ No newline at end of file
diff --git a/dist/iconic/star.js b/dist/iconic/star.js
new file mode 100644
index 000000000..a18d6d510
--- /dev/null
+++ b/dist/iconic/star.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.star = void 0;
+var star = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0l-1 3h-3l2.5 2-1 3 2.5-2 2.5 2-1-3 2.5-2h-3l-1-3z"
+ }
+ }]
+};
+exports.star = star;
\ No newline at end of file
diff --git a/dist/iconic/stepBackward.js b/dist/iconic/stepBackward.js
new file mode 100644
index 000000000..20606d955
--- /dev/null
+++ b/dist/iconic/stepBackward.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stepBackward = void 0;
+var stepBackward = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6h2v-6h-2zm2 3l5 3v-6l-5 3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.stepBackward = stepBackward;
\ No newline at end of file
diff --git a/dist/iconic/stepForward.js b/dist/iconic/stepForward.js
new file mode 100644
index 000000000..e3f8dcfb5
--- /dev/null
+++ b/dist/iconic/stepForward.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stepForward = void 0;
+var stepForward = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6l5-3-5-3zm5 3v3h2v-6h-2v3z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.stepForward = stepForward;
\ No newline at end of file
diff --git a/dist/iconic/stop.js b/dist/iconic/stop.js
new file mode 100644
index 000000000..45aa406be
--- /dev/null
+++ b/dist/iconic/stop.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stop = void 0;
+var stop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v6h6v-6h-6z",
+ "transform": "translate(1 1)"
+ }
+ }]
+};
+exports.stop = stop;
\ No newline at end of file
diff --git a/dist/iconic/sun.js b/dist/iconic/sun.js
new file mode 100644
index 000000000..a9315f170
--- /dev/null
+++ b/dist/iconic/sun.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sun = void 0;
+var sun = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"
+ }
+ }]
+};
+exports.sun = sun;
\ No newline at end of file
diff --git a/dist/iconic/tablet.js b/dist/iconic/tablet.js
new file mode 100644
index 000000000..06205cbc7
--- /dev/null
+++ b/dist/iconic/tablet.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tablet = void 0;
+var tablet = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.34 0c-.18 0-.34.16-.34.34v7.31c0 .18.16.34.34.34h6.31c.18 0 .34-.16.34-.34v-7.31c0-.18-.16-.34-.34-.34h-6.31zm.66 1h5v5h-5v-5zm2.5 5.5c.38 0 .63.42.44.75s-.68.33-.88 0c-.19-.33.05-.75.44-.75z"
+ }
+ }]
+};
+exports.tablet = tablet;
\ No newline at end of file
diff --git a/dist/iconic/tag.js b/dist/iconic/tag.js
new file mode 100644
index 000000000..207e30df2
--- /dev/null
+++ b/dist/iconic/tag.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tag = void 0;
+var tag = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v3l5 5 3-3-5-5h-3zm2 1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z"
+ }
+ }]
+};
+exports.tag = tag;
\ No newline at end of file
diff --git a/dist/iconic/tags.js b/dist/iconic/tags.js
new file mode 100644
index 000000000..fe60cb1eb
--- /dev/null
+++ b/dist/iconic/tags.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tags = void 0;
+var tags = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2l3 3 1.5-1.5.5-.5-2-2-1-1h-2zm3.41 0l3 3-1.19 1.22.78.78 2-2-3-3h-1.59zm-1.91 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.tags = tags;
\ No newline at end of file
diff --git a/dist/iconic/target.js b/dist/iconic/target.js
new file mode 100644
index 000000000..345918c0b
--- /dev/null
+++ b/dist/iconic/target.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.target = void 0;
+var target = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 1c.56 0 1 .44 1 1s-.44 1-1 1-1-.44-1-1 .44-1 1-1z"
+ }
+ }]
+};
+exports.target = target;
\ No newline at end of file
diff --git a/dist/iconic/task.js b/dist/iconic/task.js
new file mode 100644
index 000000000..406bee45a
--- /dev/null
+++ b/dist/iconic/task.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.task = void 0;
+var task = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v7h7v-3.59l-1 1v1.59h-5v-5h3.59l1-1h-5.59zm7 0l-3 3-1-1-1 1 2 2 4-4-1-1z"
+ }
+ }]
+};
+exports.task = task;
\ No newline at end of file
diff --git a/dist/iconic/terminal.js b/dist/iconic/terminal.js
new file mode 100644
index 000000000..3959dc385
--- /dev/null
+++ b/dist/iconic/terminal.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.terminal = void 0;
+var terminal = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.09 0c-.06 0-.09.04-.09.09v7.81c0 .05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-7.81c0-.06-.04-.09-.09-.09h-7.81zm1.41.78l1.72 1.72-1.72 1.72-.72-.72 1-1-1-1 .72-.72zm2.5 2.22h3v1h-3v-1z"
+ }
+ }]
+};
+exports.terminal = terminal;
\ No newline at end of file
diff --git a/dist/iconic/text.js b/dist/iconic/text.js
new file mode 100644
index 000000000..6d53fe8b4
--- /dev/null
+++ b/dist/iconic/text.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.text = void 0;
+var text = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h.5c0-.55.45-1 1-1h1.5v5.5c0 .28-.22.5-.5.5h-.5v1h4v-1h-.5c-.28 0-.5-.22-.5-.5v-5.5h1.5c.55 0 1 .45 1 1h.5v-2h-8z"
+ }
+ }]
+};
+exports.text = text;
\ No newline at end of file
diff --git a/dist/iconic/thickBottom.js b/dist/iconic/thickBottom.js
new file mode 100644
index 000000000..a9b94faea
--- /dev/null
+++ b/dist/iconic/thickBottom.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thickBottom = void 0;
+var thickBottom = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v5h-2l3.03 3 2.97-3h-2v-5h-2z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.thickBottom = thickBottom;
\ No newline at end of file
diff --git a/dist/iconic/thickLeft.js b/dist/iconic/thickLeft.js
new file mode 100644
index 000000000..6f9e0ecf6
--- /dev/null
+++ b/dist/iconic/thickLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thickLeft = void 0;
+var thickLeft = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-3 3.03 3 2.97v-2h5v-2h-5v-2z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.thickLeft = thickLeft;
\ No newline at end of file
diff --git a/dist/iconic/thickRight.js b/dist/iconic/thickRight.js
new file mode 100644
index 000000000..514335f4a
--- /dev/null
+++ b/dist/iconic/thickRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thickRight = void 0;
+var thickRight = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5 0v2h-5v2h5v2l3-3.03-3-2.97z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.thickRight = thickRight;
\ No newline at end of file
diff --git a/dist/iconic/thickTop.js b/dist/iconic/thickTop.js
new file mode 100644
index 000000000..801e289b0
--- /dev/null
+++ b/dist/iconic/thickTop.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thickTop = void 0;
+var thickTop = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.97 0l-2.97 3h2v5h2v-5h2l-3.03-3z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.thickTop = thickTop;
\ No newline at end of file
diff --git a/dist/iconic/threeUp.js b/dist/iconic/threeUp.js
new file mode 100644
index 000000000..9c924069a
--- /dev/null
+++ b/dist/iconic/threeUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.threeUp = void 0;
+var threeUp = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2zm-6 3v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2zm-6 3v2h2v-2h-2zm3 0v2h2v-2h-2zm3 0v2h2v-2h-2z"
+ }
+ }]
+};
+exports.threeUp = threeUp;
\ No newline at end of file
diff --git a/dist/iconic/timer.js b/dist/iconic/timer.js
new file mode 100644
index 000000000..a22071b8b
--- /dev/null
+++ b/dist/iconic/timer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.timer = void 0;
+var timer = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2 0v1h1v.03c-1.7.24-3 1.71-3 3.47 0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-.45-.1-.87-.25-1.25l-.91.38c.11.29.16.57.16.88 0 1.39-1.11 2.5-2.5 2.5s-2.5-1.11-2.5-2.5 1.11-2.5 2.5-2.5c.3 0 .59.05.88.16l.34-.94c-.23-.08-.47-.12-.72-.16v-.06h1v-1h-3zm5 1.16s-3.65 2.81-3.84 3c-.19.2-.19.49 0 .69.19.2.49.2.69 0 .2-.2 3.16-3.69 3.16-3.69z"
+ }
+ }]
+};
+exports.timer = timer;
\ No newline at end of file
diff --git a/dist/iconic/top.js b/dist/iconic/top.js
new file mode 100644
index 000000000..ba6c2c6b7
--- /dev/null
+++ b/dist/iconic/top.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.top = void 0;
+var top = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M2.47 0l-2.47 3h2v5h1v-5h2l-2.53-3z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.top = top;
\ No newline at end of file
diff --git a/dist/iconic/transfer.js b/dist/iconic/transfer.js
new file mode 100644
index 000000000..47ed85bd0
--- /dev/null
+++ b/dist/iconic/transfer.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.transfer = void 0;
+var transfer = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6 0v1h-6v1h6v1l2-1.5-2-1.5zm-4 4l-2 1.5 2 1.5v-1h6v-1h-6v-1z"
+ }
+ }]
+};
+exports.transfer = transfer;
\ No newline at end of file
diff --git a/dist/iconic/transferDownload.js b/dist/iconic/transferDownload.js
new file mode 100644
index 000000000..476206722
--- /dev/null
+++ b/dist/iconic/transferDownload.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.transferDownload = void 0;
+var transferDownload = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0v3h-2l3 3 3-3h-2v-3h-2zm-3 7v1h8v-1h-8z"
+ }
+ }]
+};
+exports.transferDownload = transferDownload;
\ No newline at end of file
diff --git a/dist/iconic/transferUpload.js b/dist/iconic/transferUpload.js
new file mode 100644
index 000000000..d899b750c
--- /dev/null
+++ b/dist/iconic/transferUpload.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.transferUpload = void 0;
+var transferUpload = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm4 2l-3 3h2v3h2v-3h2l-3-3z"
+ }
+ }]
+};
+exports.transferUpload = transferUpload;
\ No newline at end of file
diff --git a/dist/iconic/trash.js b/dist/iconic/trash.js
new file mode 100644
index 000000000..41983f70b
--- /dev/null
+++ b/dist/iconic/trash.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trash = void 0;
+var trash = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-.55 0-1 .45-1 1h-1c-.55 0-1 .45-1 1h7c0-.55-.45-1-1-1h-1c0-.55-.45-1-1-1h-1zm-2 3v4.81c0 .11.08.19.19.19h4.63c.11 0 .19-.08.19-.19v-4.81h-1v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3.5h-1v3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-3.5h-1z"
+ }
+ }]
+};
+exports.trash = trash;
\ No newline at end of file
diff --git a/dist/iconic/twoUp.js b/dist/iconic/twoUp.js
new file mode 100644
index 000000000..e22645c85
--- /dev/null
+++ b/dist/iconic/twoUp.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twoUp = void 0;
+var twoUp = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v3h3v-3h-3zm5 0v3h3v-3h-3zm-5 5v3h3v-3h-3zm5 0v3h3v-3h-3z"
+ }
+ }]
+};
+exports.twoUp = twoUp;
\ No newline at end of file
diff --git a/dist/iconic/underline.js b/dist/iconic/underline.js
new file mode 100644
index 000000000..9fbd62397
--- /dev/null
+++ b/dist/iconic/underline.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.underline = void 0;
+var underline = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M1 0v4c0 1.1 1.12 2 2.5 2h.5c1.1 0 2-.9 2-2v-4h-1v4c0 .55-.45 1-1 1s-1-.45-1-1v-4h-2zm-1 7v1h7v-1h-7z"
+ }
+ }]
+};
+exports.underline = underline;
\ No newline at end of file
diff --git a/dist/iconic/undo.js b/dist/iconic/undo.js
new file mode 100644
index 000000000..2192a7122
--- /dev/null
+++ b/dist/iconic/undo.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.undo = void 0;
+var undo = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.5 0c-1.93 0-3.5 1.57-3.5 3.5v.5h-1l2 2 2-2h-1v-.5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5c0-1.93-1.57-3.5-3.5-3.5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.undo = undo;
\ No newline at end of file
diff --git a/dist/iconic/unlocked.js b/dist/iconic/unlocked.js
new file mode 100644
index 000000000..1f3adb27d
--- /dev/null
+++ b/dist/iconic/unlocked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.unlocked = void 0;
+var unlocked = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0c-1.1 0-2 .9-2 2h1c0-.56.44-1 1-1s1 .44 1 1v2h-4v4h6v-4h-1v-2c0-1.1-.9-2-2-2z",
+ "transform": "translate(1)"
+ }
+ }]
+};
+exports.unlocked = unlocked;
\ No newline at end of file
diff --git a/dist/iconic/up.js b/dist/iconic/up.js
new file mode 100644
index 000000000..b711effec
--- /dev/null
+++ b/dist/iconic/up.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.up = void 0;
+var up = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0v1h8v-1h-8zm4 3l-2 2h4l-2-2zm-4 3v2h8v-2h-8z"
+ }
+ }]
+};
+exports.up = up;
\ No newline at end of file
diff --git a/dist/iconic/upload.js b/dist/iconic/upload.js
new file mode 100644
index 000000000..557f776dd
--- /dev/null
+++ b/dist/iconic/upload.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.upload = void 0;
+var upload = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4.5 0c-1.21 0-2.27.86-2.5 2-1.1 0-2 .9-2 2 0 .37.11.71.28 1h2.22l2-2 2 2h1.41c.06-.16.09-.32.09-.5 0-.65-.42-1.29-1-1.5v-.5c0-1.38-1.12-2.5-2.5-2.5zm0 4.5l-2.5 2.5h2v.5a.5.5 0 1 0 1 0v-.5h2l-2.5-2.5z"
+ }
+ }]
+};
+exports.upload = upload;
\ No newline at end of file
diff --git a/dist/iconic/video.js b/dist/iconic/video.js
new file mode 100644
index 000000000..a839f3571
--- /dev/null
+++ b/dist/iconic/video.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.video = void 0;
+var video = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M.5 0c-.28 0-.5.23-.5.5v4c0 .28.23.5.5.5h5c.28 0 .5-.22.5-.5v-1.5l1 1h1v-3h-1l-1 1v-1.5c0-.28-.22-.5-.5-.5h-5z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.video = video;
\ No newline at end of file
diff --git a/dist/iconic/warning.js b/dist/iconic/warning.js
new file mode 100644
index 000000000..02d9a6f98
--- /dev/null
+++ b/dist/iconic/warning.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.warning = void 0;
+var warning = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.09 0c-.06 0-.1.04-.13.09l-2.94 6.81c-.02.05-.03.13-.03.19v.81c0 .05.04.09.09.09h6.81c.05 0 .09-.04.09-.09v-.81c0-.05-.01-.14-.03-.19l-2.94-6.81c-.02-.05-.07-.09-.13-.09h-.81zm-.09 3h1v2h-1v-2zm0 3h1v1h-1v-1z"
+ }
+ }]
+};
+exports.warning = warning;
\ No newline at end of file
diff --git a/dist/iconic/width.js b/dist/iconic/width.js
new file mode 100644
index 000000000..396319f63
--- /dev/null
+++ b/dist/iconic/width.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.width = void 0;
+var width = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3 0l-3 2.5 3 2.5v-2h2v2l3-2.5-3-2.5v2h-2v-2z",
+ "transform": "translate(0 1)"
+ }
+ }]
+};
+exports.width = width;
\ No newline at end of file
diff --git a/dist/iconic/wifi.js b/dist/iconic/wifi.js
new file mode 100644
index 000000000..d866f0f6a
--- /dev/null
+++ b/dist/iconic/wifi.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wifi = void 0;
+var wifi = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3.75 0c-1.38 0-2.66.4-3.75 1.09l.53.81c.93-.59 2.03-.91 3.22-.91 1.2 0 2.32.31 3.25.91l.53-.81c-1.09-.7-2.4-1.09-3.78-1.09zm0 3c-.79 0-1.5.23-2.13.63l.53.84c.47-.3 1-.47 1.59-.47.59 0 1.16.17 1.63.47l.53-.84c-.62-.39-1.37-.63-2.16-.63zm0 3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"
+ }
+ }]
+};
+exports.wifi = wifi;
\ No newline at end of file
diff --git a/dist/iconic/wrench.js b/dist/iconic/wrench.js
new file mode 100644
index 000000000..541c5a533
--- /dev/null
+++ b/dist/iconic/wrench.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wrench = void 0;
+var wrench = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M5.5 0c-1.38 0-2.5 1.12-2.5 2.5 0 .32.08.62.19.91l-2.91 2.88c-.39.39-.39 1.05 0 1.44.2.2.46.28.72.28.26 0 .52-.09.72-.28l2.88-2.91c.28.11.58.19.91.19 1.38 0 2.5-1.12 2.5-2.5 0-.16 0-.32-.03-.47l-.97.97h-2v-2l.97-.97c-.15-.03-.31-.03-.47-.03zm-4.5 6.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z"
+ }
+ }]
+};
+exports.wrench = wrench;
\ No newline at end of file
diff --git a/dist/iconic/x.js b/dist/iconic/x.js
new file mode 100644
index 000000000..2bac90257
--- /dev/null
+++ b/dist/iconic/x.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.x = void 0;
+var x = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-1.5 1.78l1.5 1.5 1.5-1.5.72.72-1.5 1.5 1.5 1.5-.72.72-1.5-1.5-1.5 1.5-.72-.72 1.5-1.5-1.5-1.5.72-.72z"
+ }
+ }]
+};
+exports.x = x;
\ No newline at end of file
diff --git a/dist/iconic/yen.js b/dist/iconic/yen.js
new file mode 100644
index 000000000..b8807f167
--- /dev/null
+++ b/dist/iconic/yen.js
@@ -0,0 +1,16 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.yen = void 0;
+var yen = {
+ "viewBox": "0 0 8 8",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0l2.25 3h-2.25v1h3v1h-3v1h3v2h1v-2h3v-1h-3v-1h3v-1h-2.25l2.25-3h-1l-2.31 3h-.38l-2.31-3h-1z"
+ }
+ }]
+};
+exports.yen = yen;
\ No newline at end of file
diff --git a/dist/ikons/alarm.js b/dist/ikons/alarm.js
new file mode 100644
index 000000000..25fad3b97
--- /dev/null
+++ b/dist/ikons/alarm.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alarm = void 0;
+var alarm = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ALARM_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ALARM"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ALARM"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M44,31h-9V18c0-1.657-1.343-3-3-3s-3,1.343-3,3v16c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S45.657,31,44,31z\r\n\t\t\t\t M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14c0,2.8,0.967,5.37,2.575,7.412\r\n\t\t\t\tC5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521c7.393,3.167,13.318,9.093,16.484,16.485\r\n\t\t\t\tc1.574-2,2.521-4.516,2.521-7.257C64,7.26,58.74,2,52.251,2z M32,5C15.984,5,3,17.984,3,34c0,7.691,3.015,14.664,7.902,19.855\r\n\t\t\t\tl-4.023,4.023C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l4.327-4.327\r\n\t\t\t\tC20.144,61.066,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.227l4.356,4.357C53.473,62.668,54.215,63,55.034,63\r\n\t\t\t\tC56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.562-0.869-2.099l-4.056-4.056C57.977,48.688,61,41.704,61,34\r\n\t\t\t\tC61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23c12.702,0,23,10.297,23,23S44.703,57,32,57z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M44,31h-9V18c0-1.657-1.343-3-3-3s-3,1.343-3,3v16c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S45.657,31,44,31z\r\n\t\t\t\t M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14c0,2.8,0.967,5.37,2.575,7.412\r\n\t\t\t\tC5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521c7.393,3.167,13.318,9.093,16.484,16.485\r\n\t\t\t\tc1.574-2,2.521-4.516,2.521-7.257C64,7.26,58.74,2,52.251,2z M32,5C15.984,5,3,17.984,3,34c0,7.691,3.015,14.664,7.902,19.855\r\n\t\t\t\tl-4.023,4.023C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l4.327-4.327\r\n\t\t\t\tC20.144,61.066,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.227l4.356,4.357C53.473,62.668,54.215,63,55.034,63\r\n\t\t\t\tC56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.562-0.869-2.099l-4.056-4.056C57.977,48.688,61,41.704,61,34\r\n\t\t\t\tC61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23c12.702,0,23,10.297,23,23S44.703,57,32,57z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.alarm = alarm;
\ No newline at end of file
diff --git a/dist/ikons/alt.js b/dist/ikons/alt.js
new file mode 100644
index 000000000..a7c525b0b
--- /dev/null
+++ b/dist/ikons/alt.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alt = void 0;
+var alt = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ALT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M31,20h30c1.657,0,3-1.343,3-3s-1.343-3-3-3H31c-1.657,0-3,1.343-3,3\r\n\t\t\tS29.343,20,31,20z M61,44H32.651L14.535,15.395l-0.006,0.004C13.997,14.56,13.066,14,12,14H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\th7.349l18.117,28.605l0.006-0.004C29.003,49.44,29.934,50,31,50h30c1.657,0,3-1.343,3-3C64,45.343,62.657,44,61,44z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M31,20h30c1.657,0,3-1.343,3-3s-1.343-3-3-3H31c-1.657,0-3,1.343-3,3\r\n\t\t\tS29.343,20,31,20z M61,44H32.651L14.535,15.395l-0.006,0.004C13.997,14.56,13.066,14,12,14H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\th7.349l18.117,28.605l0.006-0.004C29.003,49.44,29.934,50,31,50h30c1.657,0,3-1.343,3-3C64,45.343,62.657,44,61,44z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.alt = alt;
\ No newline at end of file
diff --git a/dist/ikons/android.js b/dist/ikons/android.js
new file mode 100644
index 000000000..29b78f58a
--- /dev/null
+++ b/dist/ikons/android.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.android = void 0;
+var android = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "android_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "android"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "android"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752c-0.092,0.327-0.144,0.673-0.144,1.031v7.848\r\n\t\t\t\tc0,2.052,1.618,3.718,3.612,3.718c1.995,0,3.613-1.666,3.613-3.718V52.45c0-0.358-0.053-0.704-0.144-1.031h6.708\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.718,3.612,3.718s3.613-1.666,3.613-3.718V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.145-1.031h2.752c2.104,0,3.812-1.761,3.812-3.926v-27.26h-33.71V47.493z M9.626,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.901c0,2.053,1.617,3.717,3.612,3.717c1.994,0,3.612-1.664,3.612-3.717v-15.9\r\n\t\t\t\tC13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233c-1.995,0-3.611,1.664-3.611,3.717v15.901\r\n\t\t\t\tc0,2.053,1.616,3.717,3.611,3.717s3.611-1.664,3.611-3.717v-15.9C58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355\r\n\t\t\t\tl0.678-1.047l0.668-1.032l1.502-2.318c0.184-0.285,0.108-0.669-0.166-0.859c-0.279-0.191-0.652-0.114-0.837,0.172l-1.608,2.485\r\n\t\t\t\tl-0.678,1.045L39.662,4.86c-2.176-0.868-4.602-1.355-7.162-1.355c-2.559,0-4.986,0.487-7.16,1.354L24.655,3.8l-0.676-1.045\r\n\t\t\t\tL22.367,0.27c-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857S26.275,12.799,25.278,12.799z\r\n\t\t\t\t M39.725,12.799c-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857s1.805,0.831,1.805,1.857S40.723,12.799,39.725,12.799\r\n\t\t\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752c-0.092,0.327-0.144,0.673-0.144,1.031v7.848\r\n\t\t\t\tc0,2.052,1.618,3.718,3.612,3.718c1.995,0,3.613-1.666,3.613-3.718V52.45c0-0.358-0.053-0.704-0.144-1.031h6.708\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.718,3.612,3.718s3.613-1.666,3.613-3.718V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.145-1.031h2.752c2.104,0,3.812-1.761,3.812-3.926v-27.26h-33.71V47.493z M9.626,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.901c0,2.053,1.617,3.717,3.612,3.717c1.994,0,3.612-1.664,3.612-3.717v-15.9\r\n\t\t\t\tC13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233c-1.995,0-3.611,1.664-3.611,3.717v15.901\r\n\t\t\t\tc0,2.053,1.616,3.717,3.611,3.717s3.611-1.664,3.611-3.717v-15.9C58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355\r\n\t\t\t\tl0.678-1.047l0.668-1.032l1.502-2.318c0.184-0.285,0.108-0.669-0.166-0.859c-0.279-0.191-0.652-0.114-0.837,0.172l-1.608,2.485\r\n\t\t\t\tl-0.678,1.045L39.662,4.86c-2.176-0.868-4.602-1.355-7.162-1.355c-2.559,0-4.986,0.487-7.16,1.354L24.655,3.8l-0.676-1.045\r\n\t\t\t\tL22.367,0.27c-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857S26.275,12.799,25.278,12.799z\r\n\t\t\t\t M39.725,12.799c-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857s1.805,0.831,1.805,1.857S40.723,12.799,39.725,12.799\r\n\t\t\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.android = android;
\ No newline at end of file
diff --git a/dist/ikons/apple.js b/dist/ikons/apple.js
new file mode 100644
index 000000000..17a1fcf38
--- /dev/null
+++ b/dist/ikons/apple.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.apple = void 0;
+var apple = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "apple_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "apple"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "apple"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M42.111,10.214c2.4-2.709,4.021-6.473,3.58-10.221c-3.459,0.13-7.647,2.14-10.131,4.846\r\n\t\t\t\tc-2.225,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.111,10.214z M50.771,34.008\r\n\t\t\t\tc-0.086-8.109,7.104-11.997,7.427-12.193c-4.041-5.499-10.337-6.254-12.576-6.34c-5.354-0.506-10.451,2.935-13.169,2.935\r\n\t\t\t\tc-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028c-6.065,9.793-1.552,24.307,4.359,32.256\r\n\t\t\t\tc2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622c5.269,0,6.746,2.622,11.354,2.541\r\n\t\t\t\tc4.685-0.079,7.655-3.959,10.522-7.859c3.318-4.514,4.683-8.886,4.765-9.106C59.896,46.91,50.865,43.689,50.771,34.008z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M42.111,10.214c2.4-2.709,4.021-6.473,3.58-10.221c-3.459,0.13-7.647,2.14-10.131,4.846\r\n\t\t\t\tc-2.225,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.111,10.214z M50.771,34.008\r\n\t\t\t\tc-0.086-8.109,7.104-11.997,7.427-12.193c-4.041-5.499-10.337-6.254-12.576-6.34c-5.354-0.506-10.451,2.935-13.169,2.935\r\n\t\t\t\tc-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028c-6.065,9.793-1.552,24.307,4.359,32.256\r\n\t\t\t\tc2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622c5.269,0,6.746,2.622,11.354,2.541\r\n\t\t\t\tc4.685-0.079,7.655-3.959,10.522-7.859c3.318-4.514,4.683-8.886,4.765-9.106C59.896,46.91,50.865,43.689,50.771,34.008z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.apple = apple;
\ No newline at end of file
diff --git a/dist/ikons/appstore.js b/dist/ikons/appstore.js
new file mode 100644
index 000000000..a43737094
--- /dev/null
+++ b/dist/ikons/appstore.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.appstore = void 0;
+var appstore = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "appstore_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "appstore"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "appstore"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31.03,28.052L24.522,39.43h17.662c-1.283-2.539-2.981-6.173-5.262-11.376H31.03V28.052z M31.735,21.424\r\n\t\t\t\tc0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328L12.899,39.43l-5.433,9.5\r\n\t\t\t\tc-0.409,0.709-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202l4.879-8.532L31.735,21.424z\r\n\t\t\t\t M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.735l-0.666,5.824c-0.093,0.811,0.382,1.102,1.054,0.643\r\n\t\t\t\tl4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35c-0.74,0-1.339,0.601-1.339,1.343v8.692\r\n\t\t\t\tc0,0.741,0.599,1.343,1.339,1.343h8.464L16.322,28.052z M62.65,28.052H49.643c1.53,2.879,2.948,5.589,3.948,7.505\r\n\t\t\t\tc0.692,1.325,1.239,2.373,1.433,2.723c0.203,0.373,0.347,0.757,0.444,1.15h7.183c0.74,0,1.34-0.602,1.34-1.343v-8.692\r\n\t\t\t\tC63.988,28.654,63.389,28.052,62.65,28.052z M52.677,39.575c-0.022-0.038-0.051-0.093-0.079-0.146\r\n\t\t\t\tc-0.357-0.664-1.255-2.394-2.433-4.639c-0.015-0.031-0.028-0.057-0.043-0.087c-0.09-0.173-0.181-0.347-0.274-0.524\r\n\t\t\t\tc-0.068-0.128-0.135-0.258-0.205-0.388c-0.057-0.112-0.117-0.224-0.175-0.339c-0.104-0.199-0.211-0.396-0.317-0.602\r\n\t\t\t\tc-0.033-0.063-0.065-0.127-0.1-0.19c-0.119-0.229-0.24-0.459-0.363-0.693c-0.035-0.066-0.07-0.132-0.106-0.201\r\n\t\t\t\tc-2.714-5.151-6.123-11.492-8.228-14.827c-3.683-5.844-8.599-15.583-9.971-14.89C28.46,3.011,34.41,15.374,36.38,20.02\r\n\t\t\t\tc1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.773,2.14,0.344,3.169-0.084C51.773,42.729,53.619,41.3,52.677,39.575z\r\n\t\t\t\t M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107c1.657,2.349,5.362,2.453,5.85,4.012\r\n\t\t\t\tC62.064,61.986,63.229,50.061,56.504,53.867z M57.07,48.749l-1.834-3.536c-0.416-0.8-1.393-1.126-2.172-0.727l-2.213,1.145\r\n\t\t\t\tc-0.778,0.405-1.024,1.354-0.545,2.117l2.321,3.682c0.479,0.758,1.491,1.008,2.242,0.553l1.58-0.953\r\n\t\t\t\tC57.205,50.575,57.484,49.549,57.07,48.749z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31.03,28.052L24.522,39.43h17.662c-1.283-2.539-2.981-6.173-5.262-11.376H31.03V28.052z M31.735,21.424\r\n\t\t\t\tc0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328L12.899,39.43l-5.433,9.5\r\n\t\t\t\tc-0.409,0.709-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202l4.879-8.532L31.735,21.424z\r\n\t\t\t\t M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.735l-0.666,5.824c-0.093,0.811,0.382,1.102,1.054,0.643\r\n\t\t\t\tl4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35c-0.74,0-1.339,0.601-1.339,1.343v8.692\r\n\t\t\t\tc0,0.741,0.599,1.343,1.339,1.343h8.464L16.322,28.052z M62.65,28.052H49.643c1.53,2.879,2.948,5.589,3.948,7.505\r\n\t\t\t\tc0.692,1.325,1.239,2.373,1.433,2.723c0.203,0.373,0.347,0.757,0.444,1.15h7.183c0.74,0,1.34-0.602,1.34-1.343v-8.692\r\n\t\t\t\tC63.988,28.654,63.389,28.052,62.65,28.052z M52.677,39.575c-0.022-0.038-0.051-0.093-0.079-0.146\r\n\t\t\t\tc-0.357-0.664-1.255-2.394-2.433-4.639c-0.015-0.031-0.028-0.057-0.043-0.087c-0.09-0.173-0.181-0.347-0.274-0.524\r\n\t\t\t\tc-0.068-0.128-0.135-0.258-0.205-0.388c-0.057-0.112-0.117-0.224-0.175-0.339c-0.104-0.199-0.211-0.396-0.317-0.602\r\n\t\t\t\tc-0.033-0.063-0.065-0.127-0.1-0.19c-0.119-0.229-0.24-0.459-0.363-0.693c-0.035-0.066-0.07-0.132-0.106-0.201\r\n\t\t\t\tc-2.714-5.151-6.123-11.492-8.228-14.827c-3.683-5.844-8.599-15.583-9.971-14.89C28.46,3.011,34.41,15.374,36.38,20.02\r\n\t\t\t\tc1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.773,2.14,0.344,3.169-0.084C51.773,42.729,53.619,41.3,52.677,39.575z\r\n\t\t\t\t M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107c1.657,2.349,5.362,2.453,5.85,4.012\r\n\t\t\t\tC62.064,61.986,63.229,50.061,56.504,53.867z M57.07,48.749l-1.834-3.536c-0.416-0.8-1.393-1.126-2.172-0.727l-2.213,1.145\r\n\t\t\t\tc-0.778,0.405-1.024,1.354-0.545,2.117l2.321,3.682c0.479,0.758,1.491,1.008,2.242,0.553l1.58-0.953\r\n\t\t\t\tC57.205,50.575,57.484,49.549,57.07,48.749z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.appstore = appstore;
\ No newline at end of file
diff --git a/dist/ikons/arrow_1.js b/dist/ikons/arrow_1.js
new file mode 100644
index 000000000..c3ab60c9a
--- /dev/null
+++ b/dist/ikons/arrow_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrow_1 = void 0;
+var arrow_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-2.999,1.343-2.999,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.122l1.879,1.879h-1.773v0.005h-3l0,0h-2.756L15.118,10.879C14.575,10.336,13.825,10,12.997,10\r\n\t\t\t\tH2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126c0.543,0.543,1.293,0.879,2.12,0.879h8.767\r\n\t\t\t\tl-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001\r\n\t\t\t\tC63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-2.999,1.343-2.999,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.122l1.879,1.879h-1.773v0.005h-3l0,0h-2.756L15.118,10.879C14.575,10.336,13.825,10,12.997,10\r\n\t\t\t\tH2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126c0.543,0.543,1.293,0.879,2.12,0.879h8.767\r\n\t\t\t\tl-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001\r\n\t\t\t\tC63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrow_1 = arrow_1;
\ No newline at end of file
diff --git a/dist/ikons/arrow_2.js b/dist/ikons/arrow_2.js
new file mode 100644
index 000000000..38bbcebd5
--- /dev/null
+++ b/dist/ikons/arrow_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrow_2 = void 0;
+var arrow_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9l0,0H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121\r\n\t\t\t\tc0,1.657,1.342,3,3,3c0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121S63.68,18.427,63.137,17.884z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9l0,0H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121\r\n\t\t\t\tc0,1.657,1.342,3,3,3c0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121S63.68,18.427,63.137,17.884z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrow_2 = arrow_2;
\ No newline at end of file
diff --git a/dist/ikons/arrow_down.js b/dist/ikons/arrow_down.js
new file mode 100644
index 000000000..901729af3
--- /dev/null
+++ b/dist/ikons/arrow_down.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrow_down = void 0;
+var arrow_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__DOWN_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__DOWN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__DOWN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001L31.993,36.764L16.275,21.046\r\n\t\t\t\tC15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008l18,18l0.001-0.001\r\n\t\t\t\tC30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0c0.849,0,1.612-0.352,2.159-0.918\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C52.68,24.543,53,23.809,53,23z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001L31.993,36.764L16.275,21.046\r\n\t\t\t\tC15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008l18,18l0.001-0.001\r\n\t\t\t\tC30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0c0.849,0,1.612-0.352,2.159-0.918\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C52.68,24.543,53,23.809,53,23z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrow_down = arrow_down;
\ No newline at end of file
diff --git a/dist/ikons/arrow_left.js b/dist/ikons/arrow_left.js
new file mode 100644
index 000000000..ed8817802
--- /dev/null
+++ b/dist/ikons/arrow_left.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrow_left = void 0;
+var arrow_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__LEFT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__LEFT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__LEFT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.807,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987c0,0.002,0,0.004,0,0.007\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.849,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001C39.458,52.68,40.191,53,41,53\r\n\t\t\t\tc1.657,0,3-1.343,3-3C44,49.191,43.68,48.458,43.16,47.917L43.16,47.917z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.807,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987c0,0.002,0,0.004,0,0.007\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.849,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001C39.458,52.68,40.191,53,41,53\r\n\t\t\t\tc1.657,0,3-1.343,3-3C44,49.191,43.68,48.458,43.16,47.917L43.16,47.917z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrow_left = arrow_left;
\ No newline at end of file
diff --git a/dist/ikons/arrow_right.js b/dist/ikons/arrow_right.js
new file mode 100644
index 000000000..e5e53dfdc
--- /dev/null
+++ b/dist/ikons/arrow_right.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrow_right = void 0;
+var arrow_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__RIGHT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__RIGHT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__RIGHT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008\r\n\t\t\t\tC24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L20.84,47.917l0.001,0.001\r\n\t\t\t\tC20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.32,2.082-0.841l0.001,0.001l18-18l-0.001-0.001\r\n\t\t\t\tC43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008\r\n\t\t\t\tC24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L20.84,47.917l0.001,0.001\r\n\t\t\t\tC20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.32,2.082-0.841l0.001,0.001l18-18l-0.001-0.001\r\n\t\t\t\tC43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrow_right = arrow_right;
\ No newline at end of file
diff --git a/dist/ikons/arrow_up.js b/dist/ikons/arrow_up.js
new file mode 100644
index 000000000..1fa506136
--- /dev/null
+++ b/dist/ikons/arrow_up.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrow_up = void 0;
+var arrow_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__UP_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__UP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROW__x2F__UP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001C33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0\r\n\t\t\t\ts-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001l-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718L47.917,43.16l0.001-0.001C48.458,43.68,49.191,44,50,44\r\n\t\t\t\tc1.657,0,3-1.343,3-3C53,40.191,52.68,39.458,52.159,38.918z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001C33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0\r\n\t\t\t\ts-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001l-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718L47.917,43.16l0.001-0.001C48.458,43.68,49.191,44,50,44\r\n\t\t\t\tc1.657,0,3-1.343,3-3C53,40.191,52.68,39.458,52.159,38.918z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrow_up = arrow_up;
\ No newline at end of file
diff --git a/dist/ikons/arrows.js b/dist/ikons/arrows.js
new file mode 100644
index 000000000..8e1fb7fc1
--- /dev/null
+++ b/dist/ikons/arrows.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows = void 0;
+var arrows = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\ts0.384,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0\r\n\t\t\t\tL10.818,35H29v18.182l-3.77-4.188l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0\r\n\t\t\t\tl9,10l0,0C30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.188,3.77l0,0C48.384,39.32,48,40.115,48,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\ts0.384,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0\r\n\t\t\t\tL10.818,35H29v18.182l-3.77-4.188l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0\r\n\t\t\t\tl9,10l0,0C30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.188,3.77l0,0C48.384,39.32,48,40.115,48,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrows = arrows;
\ No newline at end of file
diff --git a/dist/ikons/arrows_horizontal.js b/dist/ikons/arrows_horizontal.js
new file mode 100644
index 000000000..7bdcb3f77
--- /dev/null
+++ b/dist/ikons/arrows_horizontal.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_horizontal = void 0;
+var arrows_horizontal = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS__x2F__HORIZONTAL_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS__x2F__HORIZONTAL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS__x2F__HORIZONTAL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,22h32l0,0h18.182l-4.188,3.77L49,25.779c-0.609,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.771,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222c0.609-0.549,1-1.337,1-2.222s-0.391-1.673-1-2.222l0.007-0.008l-10-9\r\n\t\t\t\tL53,7.778C52.468,7.3,51.771,7,51,7c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39l0,0H26l0,0\r\n\t\t\t\tH10.818l0,0H3c-1.657,0-3,1.343-3,3S1.343,22,3,22z M61,42h-7.818l0,0H38l0,0H25l0,0H10.818l4.189-3.77L15,38.223\r\n\t\t\t\tc0.61-0.55,1-1.337,1-2.223c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.777l-0.007-0.008l-10,9L1,42.777\r\n\t\t\t\tC0.391,43.328,0,44.115,0,45s0.391,1.672,1,2.223L0.993,47.23l10,9L11,56.223C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.223l0.007-0.008L10.818,48H35l0,0h26c1.657,0,3-1.343,3-3S62.657,42,61,42z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,22h32l0,0h18.182l-4.188,3.77L49,25.779c-0.609,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.771,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222c0.609-0.549,1-1.337,1-2.222s-0.391-1.673-1-2.222l0.007-0.008l-10-9\r\n\t\t\t\tL53,7.778C52.468,7.3,51.771,7,51,7c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39l0,0H26l0,0\r\n\t\t\t\tH10.818l0,0H3c-1.657,0-3,1.343-3,3S1.343,22,3,22z M61,42h-7.818l0,0H38l0,0H25l0,0H10.818l4.189-3.77L15,38.223\r\n\t\t\t\tc0.61-0.55,1-1.337,1-2.223c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.777l-0.007-0.008l-10,9L1,42.777\r\n\t\t\t\tC0.391,43.328,0,44.115,0,45s0.391,1.672,1,2.223L0.993,47.23l10,9L11,56.223C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.223l0.007-0.008L10.818,48H35l0,0h26c1.657,0,3-1.343,3-3S62.657,42,61,42z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrows_horizontal = arrows_horizontal;
\ No newline at end of file
diff --git a/dist/ikons/arrows_horizontal_2.js b/dist/ikons/arrows_horizontal_2.js
new file mode 100644
index 000000000..4bdd3e537
--- /dev/null
+++ b/dist/ikons/arrows_horizontal_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_horizontal_2 = void 0;
+var arrows_horizontal_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS_HORIZONTAL_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS_HORIZONTAL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS_HORIZONTAL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32s0.383,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23l0,0L10.818,35h42.364l-4.188,3.77l0,0\r\n\t\t\t\tC48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z\r\n\t\t\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32s0.383,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23l0,0L10.818,35h42.364l-4.188,3.77l0,0\r\n\t\t\t\tC48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z\r\n\t\t\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrows_horizontal_2 = arrows_horizontal_2;
\ No newline at end of file
diff --git a/dist/ikons/arrows_vertical.js b/dist/ikons/arrows_vertical.js
new file mode 100644
index 000000000..a55cec10f
--- /dev/null
+++ b/dist/ikons/arrows_vertical.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_vertical = void 0;
+var arrows_vertical = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS__x2F__VERTICAL_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS__x2F__VERTICAL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS__x2F__VERTICAL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L48,53.182V29l0,0V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v7.818l0,0V26l0,0v13l0,0v14.182l-3.77-4.188L38.223,49c-0.55-0.609-1.338-1-2.223-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.771,0.3,1.468,0.777,2l-0.008,0.007l9,10L42.777,63c0.55,0.609,1.338,1,2.223,1s1.672-0.391,2.223-1l0.008,0.007l9-10\r\n\t\t\t\tL56.223,53C56.701,52.468,57,51.771,57,51z M30.23,10.993l-9-10L21.222,1C20.673,0.391,19.885,0,19,0s-1.673,0.391-2.222,1.001\r\n\t\t\t\tL16.77,0.993l-9,10L7.778,11C7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818\r\n\t\t\t\tV25l0,0v13l0,0v15.182l0,0V61c0,1.657,1.343,3,3,3s3-1.343,3-3V29l0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L48,53.182V29l0,0V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v7.818l0,0V26l0,0v13l0,0v14.182l-3.77-4.188L38.223,49c-0.55-0.609-1.338-1-2.223-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.771,0.3,1.468,0.777,2l-0.008,0.007l9,10L42.777,63c0.55,0.609,1.338,1,2.223,1s1.672-0.391,2.223-1l0.008,0.007l9-10\r\n\t\t\t\tL56.223,53C56.701,52.468,57,51.771,57,51z M30.23,10.993l-9-10L21.222,1C20.673,0.391,19.885,0,19,0s-1.673,0.391-2.222,1.001\r\n\t\t\t\tL16.77,0.993l-9,10L7.778,11C7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818\r\n\t\t\t\tV25l0,0v13l0,0v15.182l0,0V61c0,1.657,1.343,3,3,3s3-1.343,3-3V29l0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrows_vertical = arrows_vertical;
\ No newline at end of file
diff --git a/dist/ikons/arrows_vertical_2.js b/dist/ikons/arrows_vertical_2.js
new file mode 100644
index 000000000..0b9ff2427
--- /dev/null
+++ b/dist/ikons/arrows_vertical_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_vertical_2 = void 0;
+var arrows_vertical_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS_VERTICAL_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS_VERTICAL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ARROWS_VERTICAL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,48c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0\r\n\t\t\t\tl-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.188\r\n\t\t\t\tl0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51C44,49.343,42.657,48,41,48z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,48c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0\r\n\t\t\t\tl-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.188\r\n\t\t\t\tl0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51C44,49.343,42.657,48,41,48z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.arrows_vertical_2 = arrows_vertical_2;
\ No newline at end of file
diff --git a/dist/ikons/bar_chart_1.js b/dist/ikons/bar_chart_1.js
new file mode 100644
index 000000000..b53d3377c
--- /dev/null
+++ b/dist/ikons/bar_chart_1.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bar_chart_1 = void 0;
+var bar_chart_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BAR_CHART_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC43,48.657,44.343,50,46,50z M12,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC9,48.657,10.343,50,12,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC43,48.657,44.343,50,46,50z M12,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC9,48.657,10.343,50,12,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.bar_chart_1 = bar_chart_1;
\ No newline at end of file
diff --git a/dist/ikons/bar_chart_2.js b/dist/ikons/bar_chart_2.js
new file mode 100644
index 000000000..fc52981c0
--- /dev/null
+++ b/dist/ikons/bar_chart_2.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bar_chart_2 = void 0;
+var bar_chart_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BAR_CHART_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59\r\n\t\t\tc1.381,0,2.5-1.119,2.5-2.5v-1C64,54.12,62.881,53,61.5,53z M46,50h6c1.657,0,3-1.343,3-3V20c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v27C43,48.657,44.343,50,46,50z M29,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v39C26,48.657,27.343,50,29,50z M12,50h6c1.657,0,3-1.343,3-3V35c0-1.656-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.344-3,3v12C9,48.657,10.343,50,12,50z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59\r\n\t\t\tc1.381,0,2.5-1.119,2.5-2.5v-1C64,54.12,62.881,53,61.5,53z M46,50h6c1.657,0,3-1.343,3-3V20c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v27C43,48.657,44.343,50,46,50z M29,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v39C26,48.657,27.343,50,29,50z M12,50h6c1.657,0,3-1.343,3-3V35c0-1.656-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.344-3,3v12C9,48.657,10.343,50,12,50z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.bar_chart_2 = bar_chart_2;
\ No newline at end of file
diff --git a/dist/ikons/bar_chart_3.js b/dist/ikons/bar_chart_3.js
new file mode 100644
index 000000000..5bd39611a
--- /dev/null
+++ b/dist/ikons/bar_chart_3.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bar_chart_3 = void 0;
+var bar_chart_3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BAR_CHART_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC43,48.657,44.343,50,46,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z M12,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC9,48.657,10.343,50,12,50z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC43,48.657,44.343,50,46,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z M12,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC9,48.657,10.343,50,12,50z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.bar_chart_3 = bar_chart_3;
\ No newline at end of file
diff --git a/dist/ikons/bar_graph.js b/dist/ikons/bar_graph.js
new file mode 100644
index 000000000..5c3f780af
--- /dev/null
+++ b/dist/ikons/bar_graph.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bar_graph = void 0;
+var bar_graph = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BAR_GRAPH_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BAR_GRAPH"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BAR_GRAPH"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C45,48.657,46.343,50,48,50z M31,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C28,48.657,29.343,50,31,50z M61,53H6v-7l0,0V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C11,48.657,12.343,50,14,50z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C45,48.657,46.343,50,48,50z M31,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C28,48.657,29.343,50,31,50z M61,53H6v-7l0,0V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C11,48.657,12.343,50,14,50z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.bar_graph = bar_graph;
\ No newline at end of file
diff --git a/dist/ikons/basket.js b/dist/ikons/basket.js
new file mode 100644
index 000000000..233e09ada
--- /dev/null
+++ b/dist/ikons/basket.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basket = void 0;
+var basket = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,27.987c0-0.006-0.001-0.012-0.001-0.019c-0.001-0.074-0.005-0.148-0.011-0.221c-0.004-0.042-0.008-0.084-0.014-0.125\r\n\t\t\t\tc-0.004-0.04-0.011-0.08-0.017-0.12c-0.22-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729\r\n\t\t\t\tl0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002\r\n\t\t\t\tL58.342,31H61c1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469L42.018,22\r\n\t\t\t\th6.789L40.686,6.662l-0.011,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469\r\n\t\t\t\tz M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662\r\n\t\t\t\tL15.2,22h6.789L28.623,9.469z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,27.987c0-0.006-0.001-0.012-0.001-0.019c-0.001-0.074-0.005-0.148-0.011-0.221c-0.004-0.042-0.008-0.084-0.014-0.125\r\n\t\t\t\tc-0.004-0.04-0.011-0.08-0.017-0.12c-0.22-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729\r\n\t\t\t\tl0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002\r\n\t\t\t\tL58.342,31H61c1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469L42.018,22\r\n\t\t\t\th6.789L40.686,6.662l-0.011,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469\r\n\t\t\t\tz M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662\r\n\t\t\t\tL15.2,22h6.789L28.623,9.469z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.basket = basket;
\ No newline at end of file
diff --git a/dist/ikons/basket_add.js b/dist/ikons/basket_add.js
new file mode 100644
index 000000000..1c06712f1
--- /dev/null
+++ b/dist/ikons/basket_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basket_add = void 0;
+var basket_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__ADD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M51,13\r\n\t\t\t\tc-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS58.657,29,57,29z M47,41.477V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26\r\n\t\t\t\tc0-0.338,0.029-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59\r\n\t\t\t\tl0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M51,13\r\n\t\t\t\tc-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS58.657,29,57,29z M47,41.477V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26\r\n\t\t\t\tc0-0.338,0.029-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59\r\n\t\t\t\tl0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.basket_add = basket_add;
\ No newline at end of file
diff --git a/dist/ikons/basket_delete.js b/dist/ikons/basket_delete.js
new file mode 100644
index 000000000..379cc723a
--- /dev/null
+++ b/dist/ikons/basket_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basket_delete = void 0;
+var basket_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.basket_delete = basket_delete;
\ No newline at end of file
diff --git a/dist/ikons/basket_ok.js b/dist/ikons/basket_ok.js
new file mode 100644
index 000000000..0f4890d98
--- /dev/null
+++ b/dist/ikons/basket_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basket_ok = void 0;
+var basket_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.012,0.006C40.184,5.683,39.176,5,38,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34c-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3\r\n\t\t\t\tC60,23.828,59.664,24.579,59.121,25.122z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.012,0.006C40.184,5.683,39.176,5,38,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34c-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3\r\n\t\t\t\tC60,23.828,59.664,24.579,59.121,25.122z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.basket_ok = basket_ok;
\ No newline at end of file
diff --git a/dist/ikons/basket_remove.js b/dist/ikons/basket_remove.js
new file mode 100644
index 000000000..3882ca89d
--- /dev/null
+++ b/dist/ikons/basket_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basket_remove = void 0;
+var basket_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BASKET__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.673,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57,29H45c-1.657,0-3-1.343-3-3s1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.673,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57,29H45c-1.657,0-3-1.343-3-3s1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.basket_remove = basket_remove;
\ No newline at end of file
diff --git a/dist/ikons/battery_1_3.js b/dist/ikons/battery_1_3.js
new file mode 100644
index 000000000..b4ed20862
--- /dev/null
+++ b/dist/ikons/battery_1_3.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery_1_3 = void 0;
+var battery_1_3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY__x2F__1_x2F_3_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY__x2F__1_x2F_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY__x2F__1_x2F_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.battery_1_3 = battery_1_3;
\ No newline at end of file
diff --git a/dist/ikons/battery_2_3.js b/dist/ikons/battery_2_3.js
new file mode 100644
index 000000000..c984eb5b4
--- /dev/null
+++ b/dist/ikons/battery_2_3.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery_2_3 = void 0;
+var battery_2_3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY__x2F__2_x2F_3_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY__x2F__2_x2F_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY__x2F__2_x2F_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.battery_2_3 = battery_2_3;
\ No newline at end of file
diff --git a/dist/ikons/battery_empty.js b/dist/ikons/battery_empty.js
new file mode 100644
index 000000000..52a016150
--- /dev/null
+++ b/dist/ikons/battery_empty.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery_empty = void 0;
+var battery_empty = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY__x2F__EMPTY_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY__x2F__EMPTY"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY__x2F__EMPTY"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.battery_empty = battery_empty;
\ No newline at end of file
diff --git a/dist/ikons/battery_full.js b/dist/ikons/battery_full.js
new file mode 100644
index 000000000..2eefa02f9
--- /dev/null
+++ b/dist/ikons/battery_full.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.battery_full = void 0;
+var battery_full = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY_FULL_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY_FULL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BATTERY_FULL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.battery_full = battery_full;
\ No newline at end of file
diff --git a/dist/ikons/behance.js b/dist/ikons/behance.js
new file mode 100644
index 000000000..5c3a3f27b
--- /dev/null
+++ b/dist/ikons/behance.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.behance = void 0;
+var behance = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "behance_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "behance"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "behance"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338c0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255\r\n\t\t\t\tc7.179,0,14.027-3.472,14.027-11.584C33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18\r\n\t\t\t\tc3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749H7.991V18.774z M17.338,45.062H7.991V34.098h9.513\r\n\t\t\t\tc3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.062,17.338,45.062z M57.973,15.993H42.027v4.072h15.943v-4.072H57.973z\r\n\t\t\t\t M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273c0,8.947,5.621,15.211,14.692,15.211c6.515,0,10.62-1.965,12.843-8.789\r\n\t\t\t\th-6.328c-0.502,1.793-3.064,2.806-6.238,2.806c-4.395,0-6.844-1.854-7.064-6.892h20.756\r\n\t\t\t\tC64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198c0.109-2.234,1.557-5.709,6.563-5.709\r\n\t\t\t\tc3.839,0,5.567,1.684,6.293,5.709H43.262z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338c0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255\r\n\t\t\t\tc7.179,0,14.027-3.472,14.027-11.584C33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18\r\n\t\t\t\tc3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749H7.991V18.774z M17.338,45.062H7.991V34.098h9.513\r\n\t\t\t\tc3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.062,17.338,45.062z M57.973,15.993H42.027v4.072h15.943v-4.072H57.973z\r\n\t\t\t\t M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273c0,8.947,5.621,15.211,14.692,15.211c6.515,0,10.62-1.965,12.843-8.789\r\n\t\t\t\th-6.328c-0.502,1.793-3.064,2.806-6.238,2.806c-4.395,0-6.844-1.854-7.064-6.892h20.756\r\n\t\t\t\tC64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198c0.109-2.234,1.557-5.709,6.563-5.709\r\n\t\t\t\tc3.839,0,5.567,1.684,6.293,5.709H43.262z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.behance = behance;
\ No newline at end of file
diff --git a/dist/ikons/bell.js b/dist/ikons/bell.js
new file mode 100644
index 000000000..c8a80c1a7
--- /dev/null
+++ b/dist/ikons/bell.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bell = void 0;
+var bell = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BELL_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BELL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BELL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3s-3,1.343-3,3c-7.732,0-14,6.268-14,14v20\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26\r\n\t\t\t\tC26,57.314,28.686,60,32,60z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3s-3,1.343-3,3c-7.732,0-14,6.268-14,14v20\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26\r\n\t\t\t\tC26,57.314,28.686,60,32,60z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.bell = bell;
\ No newline at end of file
diff --git a/dist/ikons/bin.js b/dist/ikons/bin.js
new file mode 100644
index 000000000..70a6ba4a3
--- /dev/null
+++ b/dist/ikons/bin.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bin = void 0;
+var bin = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BIN_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BIN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BIN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11c-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z\r\n\t\t\t\t M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11c-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z\r\n\t\t\t\t M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.bin = bin;
\ No newline at end of file
diff --git a/dist/ikons/block.js b/dist/ikons/block.js
new file mode 100644
index 000000000..7234d6640
--- /dev/null
+++ b/dist/ikons/block.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.block = void 0;
+var block = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BLOCK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BLOCK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BLOCK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tc0-6.098,2.115-11.694,5.63-16.128L48.128,52.37C43.693,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63\r\n\t\t\t\tC20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26C58,38.098,55.887,43.693,52.37,48.128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tc0-6.098,2.115-11.694,5.63-16.128L48.128,52.37C43.693,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63\r\n\t\t\t\tC20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26C58,38.098,55.887,43.693,52.37,48.128z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.block = block;
\ No newline at end of file
diff --git a/dist/ikons/bluetooth.js b/dist/ikons/bluetooth.js
new file mode 100644
index 000000000..9e2bc841a
--- /dev/null
+++ b/dist/ikons/bluetooth.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bluetooth = void 0;
+var bluetooth = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BLUETOOTH"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M37.243,32l11.879-11.879C49.664,19.578,50,18.829,50,18\r\n\t\t\tc0-0.829-0.336-1.578-0.879-2.121l-15-15C33.578,0.336,32.828,0,32,0c-1.657,0-3,1.343-3,3v20.758l-9.879-9.879\r\n\t\t\tC18.579,13.336,17.828,13,17,13c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L28.758,32L14.879,45.879\r\n\t\t\tC14.336,46.422,14,47.172,14,48c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L29,40.243V61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.578-0.336,2.121-0.879l15-15C49.664,47.579,50,46.829,50,46c0-0.828-0.336-1.578-0.879-2.121L37.243,32z M35,10.243\r\n\t\t\tL42.757,18L35,25.757V10.243z M35,53.757V38.243L42.757,46L35,53.757z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M37.243,32l11.879-11.879C49.664,19.578,50,18.829,50,18\r\n\t\t\tc0-0.829-0.336-1.578-0.879-2.121l-15-15C33.578,0.336,32.828,0,32,0c-1.657,0-3,1.343-3,3v20.758l-9.879-9.879\r\n\t\t\tC18.579,13.336,17.828,13,17,13c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L28.758,32L14.879,45.879\r\n\t\t\tC14.336,46.422,14,47.172,14,48c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L29,40.243V61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.578-0.336,2.121-0.879l15-15C49.664,47.579,50,46.829,50,46c0-0.828-0.336-1.578-0.879-2.121L37.243,32z M35,10.243\r\n\t\t\tL42.757,18L35,25.757V10.243z M35,53.757V38.243L42.757,46L35,53.757z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.bluetooth = bluetooth;
\ No newline at end of file
diff --git a/dist/ikons/book.js b/dist/ikons/book.js
new file mode 100644
index 000000000..5e25f58dc
--- /dev/null
+++ b/dist/ikons/book.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.book = void 0;
+var book = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,18h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5\r\n\t\t\t\tc3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5\r\n\t\t\t\tv3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3h8\r\n\t\t\t\tC19.657,52,21,50.657,21,49z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,18h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5\r\n\t\t\t\tc3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5\r\n\t\t\t\tv3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3h8\r\n\t\t\t\tC19.657,52,21,50.657,21,49z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.book = book;
\ No newline at end of file
diff --git a/dist/ikons/book_1.js b/dist/ikons/book_1.js
new file mode 100644
index 000000000..358514e4d
--- /dev/null
+++ b/dist/ikons/book_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.book_1 = void 0;
+var book_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOK_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOK_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOK_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.book_1 = book_1;
\ No newline at end of file
diff --git a/dist/ikons/book_2.js b/dist/ikons/book_2.js
new file mode 100644
index 000000000..2624bf9ce
--- /dev/null
+++ b/dist/ikons/book_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.book_2 = void 0;
+var book_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOK_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOK_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOK_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.759,32.73L10.759,32.73l11,5l0,0C22.137,37.902,22.557,38,23,38c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.73z M10.759,43.73L10.759,43.73l11,5l0,0C22.137,48.902,22.557,49,23,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.73l0,0l-11-5l0,0C12.863,38.098,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.73z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5l0,0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.098-1.241,0.27l0,0l-11,5l0,0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5l0,0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5l0,0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.759,32.73L10.759,32.73l11,5l0,0C22.137,37.902,22.557,38,23,38c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.73z M10.759,43.73L10.759,43.73l11,5l0,0C22.137,48.902,22.557,49,23,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.73l0,0l-11-5l0,0C12.863,38.098,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.73z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5l0,0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.098-1.241,0.27l0,0l-11,5l0,0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5l0,0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5l0,0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.book_2 = book_2;
\ No newline at end of file
diff --git a/dist/ikons/bookmark.js b/dist/ikons/bookmark.js
new file mode 100644
index 000000000..28f9b84c3
--- /dev/null
+++ b/dist/ikons/bookmark.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookmark = void 0;
+var bookmark = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOKMARK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOKMARK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BOOKMARK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.bookmark = bookmark;
\ No newline at end of file
diff --git a/dist/ikons/brightness_high.js b/dist/ikons/brightness_high.js
new file mode 100644
index 000000000..ad6047baa
--- /dev/null
+++ b/dist/ikons/brightness_high.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.brightness_high = void 0;
+var brightness_high = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BRIGHTNESS__x2F__HIGH_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BRIGHTNESS__x2F__HIGH"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BRIGHTNESS__x2F__HIGH"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.887-2.113\r\n\t\t\t\tl0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444C56.664,11.578,57,10.828,57,10\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.443,5.445l-1.557,1.556l0.01,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C29,12.657,30.343,14,32,14z\r\n\t\t\t\t M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h8C12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.557,1.556l5.443,5.444\r\n\t\t\t\tC52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th8c1.657,0,3-1.343,3-3S62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.887-2.113\r\n\t\t\t\tl0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444C56.664,11.578,57,10.828,57,10\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.443,5.445l-1.557,1.556l0.01,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C29,12.657,30.343,14,32,14z\r\n\t\t\t\t M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h8C12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.557,1.556l5.443,5.444\r\n\t\t\t\tC52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th8c1.657,0,3-1.343,3-3S62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.brightness_high = brightness_high;
\ No newline at end of file
diff --git a/dist/ikons/brightness_low.js b/dist/ikons/brightness_low.js
new file mode 100644
index 000000000..e3735b3d5
--- /dev/null
+++ b/dist/ikons/brightness_low.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.brightness_low = void 0;
+var brightness_low = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BRIGHTNESS__x2F__LOW_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BRIGHTNESS__x2F__LOW"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BRIGHTNESS__x2F__LOW"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113\r\n\t\t\t\tl0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12c-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112\r\n\t\t\t\tL12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2l-0.009-0.009C51.659,16.573,52,15.83,52,15\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3s1.343,3,3,3h2C12.657,35,14,33.657,14,32z\r\n\t\t\t\t M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3s-3,1.343-3,3v2C29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12\r\n\t\t\t\tc0,1.021,0.141,2.007,0.381,2.953l1.183,2.958C23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z\r\n\t\t\t\t M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2\r\n\t\t\t\tC12.336,47.422,12,48.172,12,49c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M55,29h-2c-1.657,0-3,1.343-3,3s1.343,3,3,3h2c1.657,0,3-1.343,3-3S56.657,29,55,29z M32,50\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v2c0,1.657,1.343,3,3,3s3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113\r\n\t\t\t\tl0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12c-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112\r\n\t\t\t\tL12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2l-0.009-0.009C51.659,16.573,52,15.83,52,15\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3s1.343,3,3,3h2C12.657,35,14,33.657,14,32z\r\n\t\t\t\t M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3s-3,1.343-3,3v2C29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12\r\n\t\t\t\tc0,1.021,0.141,2.007,0.381,2.953l1.183,2.958C23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z\r\n\t\t\t\t M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2\r\n\t\t\t\tC12.336,47.422,12,48.172,12,49c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M55,29h-2c-1.657,0-3,1.343-3,3s1.343,3,3,3h2c1.657,0,3-1.343,3-3S56.657,29,55,29z M32,50\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v2c0,1.657,1.343,3,3,3s3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.brightness_low = brightness_low;
\ No newline at end of file
diff --git a/dist/ikons/browser.js b/dist/ikons/browser.js
new file mode 100644
index 000000000..3d9594b35
--- /dev/null
+++ b/dist/ikons/browser.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.browser = void 0;
+var browser = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.browser = browser;
\ No newline at end of file
diff --git a/dist/ikons/browser_add.js b/dist/ikons/browser_add.js
new file mode 100644
index 000000000..608e38b99
--- /dev/null
+++ b/dist/ikons/browser_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.browser_add = void 0;
+var browser_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__ADD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3S20.343,40,22,40z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3S20.343,40,22,40z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.browser_add = browser_add;
\ No newline at end of file
diff --git a/dist/ikons/browser_delete.js b/dist/ikons/browser_delete.js
new file mode 100644
index 000000000..2a5fd4e04
--- /dev/null
+++ b/dist/ikons/browser_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.browser_delete = void 0;
+var browser_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M27.758,37l-4.95,4.95\r\n\t\t\t\tc-1.172,1.172-1.172,3.071,0,4.243s3.071,1.172,4.243,0l4.95-4.95l4.95,4.95c1.172,1.172,3.07,1.172,4.242,0\r\n\t\t\t\tc1.173-1.172,1.172-3.071,0-4.243L36.243,37l4.95-4.95c1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0\r\n\t\t\t\tL32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0c-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M27.758,37l-4.95,4.95\r\n\t\t\t\tc-1.172,1.172-1.172,3.071,0,4.243s3.071,1.172,4.243,0l4.95-4.95l4.95,4.95c1.172,1.172,3.07,1.172,4.242,0\r\n\t\t\t\tc1.173-1.172,1.172-3.071,0-4.243L36.243,37l4.95-4.95c1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0\r\n\t\t\t\tL32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0c-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.browser_delete = browser_delete;
\ No newline at end of file
diff --git a/dist/ikons/browser_layout_1.js b/dist/ikons/browser_layout_1.js
new file mode 100644
index 000000000..d313a63f5
--- /dev/null
+++ b/dist/ikons/browser_layout_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.browser_layout_1 = void 0;
+var browser_layout_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER_LAYOUT_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER_LAYOUT_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER_LAYOUT_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z\r\n\t\t\t\t M61,28H3V16h58V28z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z\r\n\t\t\t\t M61,28H3V16h58V28z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.browser_layout_1 = browser_layout_1;
\ No newline at end of file
diff --git a/dist/ikons/browser_layout_2.js b/dist/ikons/browser_layout_2.js
new file mode 100644
index 000000000..8bbca26c6
--- /dev/null
+++ b/dist/ikons/browser_layout_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.browser_layout_2 = void 0;
+var browser_layout_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER_LAYOUT_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER_LAYOUT_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER_LAYOUT_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3V31h43V57z M61,57H49V31h12V57z\r\n\t\t\t\t M61,28H3V16h58V28z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3V31h43V57z M61,57H49V31h12V57z\r\n\t\t\t\t M61,28H3V16h58V28z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.browser_layout_2 = browser_layout_2;
\ No newline at end of file
diff --git a/dist/ikons/browser_layout_3.js b/dist/ikons/browser_layout_3.js
new file mode 100644
index 000000000..116ecf45e
--- /dev/null
+++ b/dist/ikons/browser_layout_3.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.browser_layout_3 = void 0;
+var browser_layout_3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER_LAYOUT_3_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER_LAYOUT_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER_LAYOUT_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M46,57H18V31h28V57z\r\n\t\t\t\t M61,57H49V31h12V57z M61,28H3V16h58V28z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M46,57H18V31h28V57z\r\n\t\t\t\t M61,57H49V31h12V57z M61,28H3V16h58V28z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.browser_layout_3 = browser_layout_3;
\ No newline at end of file
diff --git a/dist/ikons/browser_ok.js b/dist/ikons/browser_ok.js
new file mode 100644
index 000000000..0cc94fa0a
--- /dev/null
+++ b/dist/ikons/browser_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.browser_ok = void 0;
+var browser_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12C43.664,32.579,44,31.828,44,31\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878C24.579,34.336,23.828,34,23,34\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12C43.664,32.579,44,31.828,44,31\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878C24.579,34.336,23.828,34,23,34\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.browser_ok = browser_ok;
\ No newline at end of file
diff --git a/dist/ikons/browser_remove.js b/dist/ikons/browser_remove.js
new file mode 100644
index 000000000..05d291571
--- /dev/null
+++ b/dist/ikons/browser_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.browser_remove = void 0;
+var browser_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BROWSER__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,40h4l0,0h16l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7l0,0h-6l0,0h-7c-1.657,0-3,1.343-3,3S20.343,40,22,40z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,40h4l0,0h16l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7l0,0h-6l0,0h-7c-1.657,0-3,1.343-3,3S20.343,40,22,40z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.browser_remove = browser_remove;
\ No newline at end of file
diff --git a/dist/ikons/bullseye.js b/dist/ikons/bullseye.js
new file mode 100644
index 000000000..585767457
--- /dev/null
+++ b/dist/ikons/bullseye.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bullseye = void 0;
+var bullseye = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "BULLSEYE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\tC38,28.687,35.314,26,32,26z M32,13c-10.493,0-19,8.506-19,19c0,10.493,8.507,19,19,19c10.493,0,19-8.507,19-19\r\n\t\t\tC51,21.507,42.493,13,32,13z M32,45c-7.18,0-13-5.821-13-13c0-7.18,5.82-13,13-13c7.18,0,13,5.82,13,13C45,39.18,39.18,45,32,45z\r\n\t\t\t M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\tC17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\tC38,28.687,35.314,26,32,26z M32,13c-10.493,0-19,8.506-19,19c0,10.493,8.507,19,19,19c10.493,0,19-8.507,19-19\r\n\t\t\tC51,21.507,42.493,13,32,13z M32,45c-7.18,0-13-5.821-13-13c0-7.18,5.82-13,13-13c7.18,0,13,5.82,13,13C45,39.18,39.18,45,32,45z\r\n\t\t\t M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\tC17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.bullseye = bullseye;
\ No newline at end of file
diff --git a/dist/ikons/calendar.js b/dist/ikons/calendar.js
new file mode 100644
index 000000000..10625dd3d
--- /dev/null
+++ b/dist/ikons/calendar.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendar = void 0;
+var calendar = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CALENDAR_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CALENDAR"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CALENDAR"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632c-0.373,0.347-0.785,0.663-1.235,0.949\r\n\t\t\t\tc-0.451,0.286-0.875,0.567-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586c-0.702,0.521-1.313,1.088-1.833,1.703\r\n\t\t\t\ts-0.932,1.312-1.235,2.094c-0.304,0.779-0.455,1.698-0.455,2.756H31.47v-3.172h-8.606c0.451-0.625,0.97-1.17,1.56-1.639\r\n\t\t\t\tc0.589-0.468,1.196-0.904,1.82-1.312c0.624-0.407,1.244-0.819,1.859-1.235c0.615-0.416,1.166-0.88,1.651-1.392\r\n\t\t\t\tc0.485-0.51,0.875-1.096,1.17-1.754c0.294-0.66,0.442-1.447,0.442-2.367c0-0.883-0.169-1.68-0.507-2.392\r\n\t\t\t\tc-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118C26.751,31.13,25.958,31,25.126,31\r\n\t\t\t\tc-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56c-0.555,0.667-0.971,1.447-1.248,2.34\r\n\t\t\t\tc-0.277,0.893-0.399,1.859-0.364,2.898h3.536c0-0.484,0.048-0.975,0.143-1.469c0.095-0.494,0.255-0.945,0.481-1.352\r\n\t\t\t\tc0.225-0.407,0.524-0.737,0.897-0.988s0.828-0.377,1.365-0.377c0.797,0,1.452,0.247,1.963,0.741\r\n\t\t\t\tc0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.481C27.045,38.895,26.733,39.285,26.361,39.632z\r\n\t\t\t\t M41.467,45.807c-0.269,0.321-0.598,0.582-0.988,0.78c-0.39,0.199-0.828,0.299-1.312,0.299c-0.832,0-1.518-0.247-2.055-0.741\r\n\t\t\t\tc-0.536-0.494-0.85-1.156-0.936-1.988h-3.692c0.017,0.953,0.211,1.789,0.584,2.509c0.373,0.719,0.871,1.321,1.496,1.808\r\n\t\t\t\tc0.623,0.484,1.338,0.844,2.145,1.078s1.65,0.352,2.535,0.352c0.919,0.017,1.785-0.135,2.6-0.455\r\n\t\t\t\tc0.815-0.321,1.529-0.776,2.145-1.365s1.105-1.287,1.47-2.094c0.364-0.805,0.546-1.676,0.546-2.612\r\n\t\t\t\tc0-0.849-0.126-1.651-0.377-2.405c-0.252-0.754-0.615-1.408-1.092-1.963s-1.062-0.997-1.756-1.326\r\n\t\t\t\tc-0.692-0.328-1.49-0.494-2.391-0.494c-0.729,0-1.379,0.109-1.951,0.326c-0.571,0.217-1.108,0.575-1.611,1.078l-0.053-0.052\r\n\t\t\t\tl0.729-4.134h7.514v-3.042H34.85l-1.793,10.062h3.327c0.364-0.503,0.755-0.871,1.171-1.105c0.416-0.233,0.952-0.35,1.611-0.35\r\n\t\t\t\tc0.503,0,0.945,0.086,1.326,0.26c0.381,0.172,0.711,0.416,0.988,0.728c0.276,0.312,0.484,0.676,0.623,1.092\r\n\t\t\t\tc0.14,0.416,0.209,0.858,0.209,1.326c0,0.451-0.074,0.89-0.222,1.313C41.943,45.114,41.734,45.486,41.467,45.807z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632c-0.373,0.347-0.785,0.663-1.235,0.949\r\n\t\t\t\tc-0.451,0.286-0.875,0.567-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586c-0.702,0.521-1.313,1.088-1.833,1.703\r\n\t\t\t\ts-0.932,1.312-1.235,2.094c-0.304,0.779-0.455,1.698-0.455,2.756H31.47v-3.172h-8.606c0.451-0.625,0.97-1.17,1.56-1.639\r\n\t\t\t\tc0.589-0.468,1.196-0.904,1.82-1.312c0.624-0.407,1.244-0.819,1.859-1.235c0.615-0.416,1.166-0.88,1.651-1.392\r\n\t\t\t\tc0.485-0.51,0.875-1.096,1.17-1.754c0.294-0.66,0.442-1.447,0.442-2.367c0-0.883-0.169-1.68-0.507-2.392\r\n\t\t\t\tc-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118C26.751,31.13,25.958,31,25.126,31\r\n\t\t\t\tc-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56c-0.555,0.667-0.971,1.447-1.248,2.34\r\n\t\t\t\tc-0.277,0.893-0.399,1.859-0.364,2.898h3.536c0-0.484,0.048-0.975,0.143-1.469c0.095-0.494,0.255-0.945,0.481-1.352\r\n\t\t\t\tc0.225-0.407,0.524-0.737,0.897-0.988s0.828-0.377,1.365-0.377c0.797,0,1.452,0.247,1.963,0.741\r\n\t\t\t\tc0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.481C27.045,38.895,26.733,39.285,26.361,39.632z\r\n\t\t\t\t M41.467,45.807c-0.269,0.321-0.598,0.582-0.988,0.78c-0.39,0.199-0.828,0.299-1.312,0.299c-0.832,0-1.518-0.247-2.055-0.741\r\n\t\t\t\tc-0.536-0.494-0.85-1.156-0.936-1.988h-3.692c0.017,0.953,0.211,1.789,0.584,2.509c0.373,0.719,0.871,1.321,1.496,1.808\r\n\t\t\t\tc0.623,0.484,1.338,0.844,2.145,1.078s1.65,0.352,2.535,0.352c0.919,0.017,1.785-0.135,2.6-0.455\r\n\t\t\t\tc0.815-0.321,1.529-0.776,2.145-1.365s1.105-1.287,1.47-2.094c0.364-0.805,0.546-1.676,0.546-2.612\r\n\t\t\t\tc0-0.849-0.126-1.651-0.377-2.405c-0.252-0.754-0.615-1.408-1.092-1.963s-1.062-0.997-1.756-1.326\r\n\t\t\t\tc-0.692-0.328-1.49-0.494-2.391-0.494c-0.729,0-1.379,0.109-1.951,0.326c-0.571,0.217-1.108,0.575-1.611,1.078l-0.053-0.052\r\n\t\t\t\tl0.729-4.134h7.514v-3.042H34.85l-1.793,10.062h3.327c0.364-0.503,0.755-0.871,1.171-1.105c0.416-0.233,0.952-0.35,1.611-0.35\r\n\t\t\t\tc0.503,0,0.945,0.086,1.326,0.26c0.381,0.172,0.711,0.416,0.988,0.728c0.276,0.312,0.484,0.676,0.623,1.092\r\n\t\t\t\tc0.14,0.416,0.209,0.858,0.209,1.326c0,0.451-0.074,0.89-0.222,1.313C41.943,45.114,41.734,45.486,41.467,45.807z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.calendar = calendar;
\ No newline at end of file
diff --git a/dist/ikons/calendar_add.js b/dist/ikons/calendar_add.js
new file mode 100644
index 000000000..f21549045
--- /dev/null
+++ b/dist/ikons/calendar_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendar_add = void 0;
+var calendar_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CALENDAR__x2F__ADD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CALENDAR__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CALENDAR__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M25.126,31\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3s3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4v-4\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3S23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8\r\n\t\t\t\tH23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11\r\n\t\t\t\tC64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M25.126,31\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3s3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4v-4\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3S23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8\r\n\t\t\t\tH23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11\r\n\t\t\t\tC64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.calendar_add = calendar_add;
\ No newline at end of file
diff --git a/dist/ikons/calendar_ok.js b/dist/ikons/calendar_ok.js
new file mode 100644
index 000000000..b6fcb38ee
--- /dev/null
+++ b/dist/ikons/calendar_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendar_ok = void 0;
+var calendar_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CALENDAR__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CALENDAR__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CALENDAR__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121C27.422,50.664,28.172,51,29,51s1.578-0.336,2.121-0.879l14-14\r\n\t\t\t\tC45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879\r\n\t\t\t\tC23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121C27.422,50.664,28.172,51,29,51s1.578-0.336,2.121-0.879l14-14\r\n\t\t\t\tC45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879\r\n\t\t\t\tC23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.calendar_ok = calendar_ok;
\ No newline at end of file
diff --git a/dist/ikons/camera.js b/dist/ikons/camera.js
new file mode 100644
index 000000000..f1fb03709
--- /dev/null
+++ b/dist/ikons/camera.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.camera = void 0;
+var camera = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CAMERA_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CAMERA"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CAMERA"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12s12-5.373,12-12S38.627,22,32,22z M61,12H48.243l-5.095-5.094\r\n\t\t\t\tl-0.002,0.003C42.602,6.35,41.843,6,41,6H23c-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,43.941,41.941,52,32,52z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12s12-5.373,12-12S38.627,22,32,22z M61,12H48.243l-5.095-5.094\r\n\t\t\t\tl-0.002,0.003C42.602,6.35,41.843,6,41,6H23c-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,43.941,41.941,52,32,52z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.camera = camera;
\ No newline at end of file
diff --git a/dist/ikons/cassette.js b/dist/ikons/cassette.js
new file mode 100644
index 000000000..32055f284
--- /dev/null
+++ b/dist/ikons/cassette.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cassette = void 0;
+var cassette = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CASSETTE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,9H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h8.369l4.846-12.114\r\n\t\t\tl0.004,0.002C16.661,41.783,17.737,41,19,41h26c1.263,0,2.339,0.782,2.781,1.887l0.004-0.002L52.631,55H61c1.657,0,3-1.343,3-3V12\r\n\t\t\tC64,10.343,62.657,9,61,9z M16,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C20,30.209,18.209,32,16,32z\r\n\t\t\t M40,32H24v-8h16V32z M48,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C52,30.209,50.209,32,48,32z M45.834,46.056\r\n\t\t\tC45.436,44.865,44.325,44,43,44H21c-1.296,0-2.391,0.827-2.81,1.978l-0.01-0.004L14.899,55h33.93l-2.983-8.949L45.834,46.056z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,9H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h8.369l4.846-12.114\r\n\t\t\tl0.004,0.002C16.661,41.783,17.737,41,19,41h26c1.263,0,2.339,0.782,2.781,1.887l0.004-0.002L52.631,55H61c1.657,0,3-1.343,3-3V12\r\n\t\t\tC64,10.343,62.657,9,61,9z M16,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C20,30.209,18.209,32,16,32z\r\n\t\t\t M40,32H24v-8h16V32z M48,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C52,30.209,50.209,32,48,32z M45.834,46.056\r\n\t\t\tC45.436,44.865,44.325,44,43,44H21c-1.296,0-2.391,0.827-2.81,1.978l-0.01-0.004L14.899,55h33.93l-2.983-8.949L45.834,46.056z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.cassette = cassette;
\ No newline at end of file
diff --git a/dist/ikons/chart.js b/dist/ikons/chart.js
new file mode 100644
index 000000000..b133d510b
--- /dev/null
+++ b/dist/ikons/chart.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chart = void 0;
+var chart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C43,53.657,44.343,55,46,55z M29,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C26,53.657,27.343,55,29,55z M12,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C9,53.657,10.343,55,12,55z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C43,53.657,44.343,55,46,55z M29,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C26,53.657,27.343,55,29,55z M12,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C9,53.657,10.343,55,12,55z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.chart = chart;
\ No newline at end of file
diff --git a/dist/ikons/chart_1_2.js b/dist/ikons/chart_1_2.js
new file mode 100644
index 000000000..158aac700
--- /dev/null
+++ b/dist/ikons/chart_1_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chart_1_2 = void 0;
+var chart_1_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__1_x2F_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__1_x2F_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__1_x2F_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6V58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6V58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.chart_1_2 = chart_1_2;
\ No newline at end of file
diff --git a/dist/ikons/chart_1_4.js b/dist/ikons/chart_1_4.js
new file mode 100644
index 000000000..05d84b4c4
--- /dev/null
+++ b/dist/ikons/chart_1_4.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chart_1_4 = void 0;
+var chart_1_4 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__1_x2F_4_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__1_x2F_4"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__1_x2F_4"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26h26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26h26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.chart_1_4 = chart_1_4;
\ No newline at end of file
diff --git a/dist/ikons/chart_1_8.js b/dist/ikons/chart_1_8.js
new file mode 100644
index 000000000..892f021f8
--- /dev/null
+++ b/dist/ikons/chart_1_8.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chart_1_8 = void 0;
+var chart_1_8 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CART__x2F__1_x2F_8_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CART__x2F__1_x2F_8"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CART__x2F__1_x2F_8"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385-18.385C55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385-18.385C55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.chart_1_8 = chart_1_8;
\ No newline at end of file
diff --git a/dist/ikons/chart_3_4.js b/dist/ikons/chart_3_4.js
new file mode 100644
index 000000000..1e87acd2e
--- /dev/null
+++ b/dist/ikons/chart_3_4.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chart_3_4 = void 0;
+var chart_3_4 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__3_x2F_4_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__3_x2F_4"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__3_x2F_4"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.chart_3_4 = chart_3_4;
\ No newline at end of file
diff --git a/dist/ikons/chart_3_8.js b/dist/ikons/chart_3_8.js
new file mode 100644
index 000000000..83bc97b0b
--- /dev/null
+++ b/dist/ikons/chart_3_8.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chart_3_8 = void 0;
+var chart_3_8 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__3_x2F_8_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__3_x2F_8"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__3_x2F_8"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385,18.385C45.68,55.09,39.18,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385,18.385C45.68,55.09,39.18,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.chart_3_8 = chart_3_8;
\ No newline at end of file
diff --git a/dist/ikons/chart_5_8.js b/dist/ikons/chart_5_8.js
new file mode 100644
index 000000000..6887dc200
--- /dev/null
+++ b/dist/ikons/chart_5_8.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chart_5_8 = void 0;
+var chart_5_8 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__5_x2F_8_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__5_x2F_8"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__5_x2F_8"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,50.385\r\n\t\t\t\tC8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,50.385\r\n\t\t\t\tC8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.chart_5_8 = chart_5_8;
\ No newline at end of file
diff --git a/dist/ikons/chart_7_8.js b/dist/ikons/chart_7_8.js
new file mode 100644
index 000000000..9857f9660
--- /dev/null
+++ b/dist/ikons/chart_7_8.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chart_7_8 = void 0;
+var chart_7_8 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__7_x2F_8_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__7_x2F_8"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CHART__x2F__7_x2F_8"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,13.615\r\n\t\t\t\tC18.32,8.91,24.82,6,32,6V32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,13.615\r\n\t\t\t\tC18.32,8.91,24.82,6,32,6V32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.chart_7_8 = chart_7_8;
\ No newline at end of file
diff --git a/dist/ikons/circle.js b/dist/ikons/circle.js
new file mode 100644
index 000000000..9c34157e7
--- /dev/null
+++ b/dist/ikons/circle.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle = void 0;
+var circle = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle = circle;
\ No newline at end of file
diff --git a/dist/ikons/circle_delete.js b/dist/ikons/circle_delete.js
new file mode 100644
index 000000000..0613c99c3
--- /dev/null
+++ b/dist/ikons/circle_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_delete = void 0;
+var circle_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.578,46,21.829,46,21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.578,46,21.829,46,21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_delete = circle_delete;
\ No newline at end of file
diff --git a/dist/ikons/circle_down.js b/dist/ikons/circle_down.js
new file mode 100644
index 000000000..528c00f86
--- /dev/null
+++ b/dist/ikons/circle_down.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_down = void 0;
+var circle_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__DOWN_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__DOWN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__DOWN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,32c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.188\r\n\t\t\t\tL25.222,33c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.771,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47\r\n\t\t\t\tc0.549,0.609,1.336,1,2.222,1c0.885,0,1.673-0.391,2.223-1l0.008,0.007l9-10L43.223,37C43.7,36.468,44,35.771,44,35\r\n\t\t\t\tC44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,32c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.188\r\n\t\t\t\tL25.222,33c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.771,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47\r\n\t\t\t\tc0.549,0.609,1.336,1,2.222,1c0.885,0,1.673-0.391,2.223-1l0.008,0.007l9-10L43.223,37C43.7,36.468,44,35.771,44,35\r\n\t\t\t\tC44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_down = circle_down;
\ No newline at end of file
diff --git a/dist/ikons/circle_fast_forward.js b/dist/ikons/circle_fast_forward.js
new file mode 100644
index 000000000..31ac4b730
--- /dev/null
+++ b/dist/ikons/circle_fast_forward.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_fast_forward = void 0;
+var circle_fast_forward = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__FAST_FORWARD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__FAST_FORWARD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__FAST_FORWARD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M45.559,29.437l-9.699-6.789\r\n\t\t\t\tC35.35,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394\r\n\t\t\t\tC21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005\r\n\t\t\t\tC17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.654l9.125-6.388v4.067h0.005C31.013,40.67,32.351,42,34,42\r\n\t\t\t\tc0.708,0,1.357-0.246,1.871-0.654l9.68-6.777C46.419,34.043,47,33.089,47,32C47,30.914,46.423,29.963,45.559,29.437z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M45.559,29.437l-9.699-6.789\r\n\t\t\t\tC35.35,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394\r\n\t\t\t\tC21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005\r\n\t\t\t\tC17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.654l9.125-6.388v4.067h0.005C31.013,40.67,32.351,42,34,42\r\n\t\t\t\tc0.708,0,1.357-0.246,1.871-0.654l9.68-6.777C46.419,34.043,47,33.089,47,32C47,30.914,46.423,29.963,45.559,29.437z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_fast_forward = circle_fast_forward;
\ No newline at end of file
diff --git a/dist/ikons/circle_left.js b/dist/ikons/circle_left.js
new file mode 100644
index 000000000..ed88066cc
--- /dev/null
+++ b/dist/ikons/circle_left.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_left = void 0;
+var circle_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__LEFT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__LEFT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__LEFT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778\r\n\t\t\t\tl-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.223l-0.007,0.008l10,9L27,43.223\r\n\t\t\t\tC27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.223l0.007-0.008L26.818,35H45c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778\r\n\t\t\t\tl-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.223l-0.007,0.008l10,9L27,43.223\r\n\t\t\t\tC27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.223l0.007-0.008L26.818,35H45c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_left = circle_left;
\ No newline at end of file
diff --git a/dist/ikons/circle_minus.js b/dist/ikons/circle_minus.js
new file mode 100644
index 000000000..ddae6753e
--- /dev/null
+++ b/dist/ikons/circle_minus.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_minus = void 0;
+var circle_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__MINUS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__MINUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__MINUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_minus = circle_minus;
\ No newline at end of file
diff --git a/dist/ikons/circle_ok.js b/dist/ikons/circle_ok.js
new file mode 100644
index 000000000..ed982bcd6
--- /dev/null
+++ b/dist/ikons/circle_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_ok = void 0;
+var circle_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,43.001L46,43.001C46,43,46,43,46,42.999V43.001z M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l9,9C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,43.001L46,43.001C46,43,46,43,46,42.999V43.001z M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l9,9C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_ok = circle_ok;
\ No newline at end of file
diff --git a/dist/ikons/circle_pause.js b/dist/ikons/circle_pause.js
new file mode 100644
index 000000000..6daba7605
--- /dev/null
+++ b/dist/ikons/circle_pause.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_pause = void 0;
+var circle_pause = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__PAUSE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__PAUSE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__PAUSE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M29,24c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07\r\n\t\t\t\tC28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35\r\n\t\t\t\tC35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M29,24c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07\r\n\t\t\t\tC28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35\r\n\t\t\t\tC35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_pause = circle_pause;
\ No newline at end of file
diff --git a/dist/ikons/circle_play.js b/dist/ikons/circle_play.js
new file mode 100644
index 000000000..802c2fe70
--- /dev/null
+++ b/dist/ikons/circle_play.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_play = void 0;
+var circle_play = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__PLAY_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__PLAY"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__PLAY"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004c0.055-0.005,0.109-0.011,0.163-0.019\r\n\t\t\t\tc0.01,0,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035c0.01-0.002,0.019-0.005,0.029-0.007\r\n\t\t\t\tc0.057-0.013,0.112-0.026,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008c0.128-0.038,0.252-0.084,0.372-0.138\r\n\t\t\t\tc0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.057,0.242-0.121,0.355-0.191l0.013,0.02l15.912-9.974\r\n\t\t\t\tC42.404,34.066,43,33.104,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004c0.055-0.005,0.109-0.011,0.163-0.019\r\n\t\t\t\tc0.01,0,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035c0.01-0.002,0.019-0.005,0.029-0.007\r\n\t\t\t\tc0.057-0.013,0.112-0.026,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008c0.128-0.038,0.252-0.084,0.372-0.138\r\n\t\t\t\tc0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.057,0.242-0.121,0.355-0.191l0.013,0.02l15.912-9.974\r\n\t\t\t\tC42.404,34.066,43,33.104,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_play = circle_play;
\ No newline at end of file
diff --git a/dist/ikons/circle_plus.js b/dist/ikons/circle_plus.js
new file mode 100644
index 000000000..095736cbf
--- /dev/null
+++ b/dist/ikons/circle_plus.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_plus = void 0;
+var circle_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__PLUS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__PLUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__PLUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h10v10c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h10v10c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_plus = circle_plus;
\ No newline at end of file
diff --git a/dist/ikons/circle_rewind.js b/dist/ikons/circle_rewind.js
new file mode 100644
index 000000000..a7c02c53d
--- /dev/null
+++ b/dist/ikons/circle_rewind.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_rewind = void 0;
+var circle_rewind = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__REWIND_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__REWIND"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__REWIND"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.35,0.242-1.861,0.648l-9.135,6.394v-4.018h-0.006C32.999,25.016,33,25.008,33,25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789C17.577,29.963,17,30.914,17,32\r\n\t\t\t\tc0,1.089,0.581,2.043,1.449,2.568l9.68,6.777C28.642,41.754,29.292,42,30,42c1.649,0,2.986-1.33,2.999-2.977h0.005v-4.066\r\n\t\t\t\tl9.125,6.387C42.643,41.754,43.292,42,44,42c1.648,0,2.986-1.33,2.999-2.977h0.005v-14h-0.005C46.999,25.016,47,25.008,47,25z\r\n\t\t\t\t M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.35,0.242-1.861,0.648l-9.135,6.394v-4.018h-0.006C32.999,25.016,33,25.008,33,25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789C17.577,29.963,17,30.914,17,32\r\n\t\t\t\tc0,1.089,0.581,2.043,1.449,2.568l9.68,6.777C28.642,41.754,29.292,42,30,42c1.649,0,2.986-1.33,2.999-2.977h0.005v-4.066\r\n\t\t\t\tl9.125,6.387C42.643,41.754,43.292,42,44,42c1.648,0,2.986-1.33,2.999-2.977h0.005v-14h-0.005C46.999,25.016,47,25.008,47,25z\r\n\t\t\t\t M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_rewind = circle_rewind;
\ No newline at end of file
diff --git a/dist/ikons/circle_right.js b/dist/ikons/circle_right.js
new file mode 100644
index 000000000..c56910b7b
--- /dev/null
+++ b/dist/ikons/circle_right.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_right = void 0;
+var circle_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__RIGHT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__RIGHT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__RIGHT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.771,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.188,3.77L33,38.777c-0.61,0.55-1,1.338-1,2.223\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.468-0.299,2-0.777l0.007,0.008l10-9L47,34.223c0.609-0.55,1-1.337,1-2.223\r\n\t\t\t\tS47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.771,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.188,3.77L33,38.777c-0.61,0.55-1,1.338-1,2.223\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.468-0.299,2-0.777l0.007,0.008l10-9L47,34.223c0.609-0.55,1-1.337,1-2.223\r\n\t\t\t\tS47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_right = circle_right;
\ No newline at end of file
diff --git a/dist/ikons/circle_skip_next.js b/dist/ikons/circle_skip_next.js
new file mode 100644
index 000000000..38c4a4c4f
--- /dev/null
+++ b/dist/ikons/circle_skip_next.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_skip_next = void 0;
+var circle_skip_next = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__SKIP_NEXT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__SKIP_NEXT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__SKIP_NEXT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58C26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71V39c0,1.657,1.343,3,3,3s3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58C26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71V39c0,1.657,1.343,3,3,3s3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_skip_next = circle_skip_next;
\ No newline at end of file
diff --git a/dist/ikons/circle_skip_previous.js b/dist/ikons/circle_skip_previous.js
new file mode 100644
index 000000000..b431290b7
--- /dev/null
+++ b/dist/ikons/circle_skip_previous.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_skip_previous = void 0;
+var circle_skip_previous = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__SKIP_PREVIOUS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__SKIP_PREVIOUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__SKIP_PREVIOUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M39,22c-0.66,0-1.266,0.219-1.76,0.58l-0.006-0.007L28,29.291V25c0-1.657-1.343-3-3-3s-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-4.29l9.234,6.717l0.006-0.007C37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M39,22c-0.66,0-1.266,0.219-1.76,0.58l-0.006-0.007L28,29.291V25c0-1.657-1.343-3-3-3s-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-4.29l9.234,6.717l0.006-0.007C37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_skip_previous = circle_skip_previous;
\ No newline at end of file
diff --git a/dist/ikons/circle_stop.js b/dist/ikons/circle_stop.js
new file mode 100644
index 000000000..599c64d1a
--- /dev/null
+++ b/dist/ikons/circle_stop.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_stop = void 0;
+var circle_stop = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__STOP_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__STOP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__STOP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3V24C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3V24C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_stop = circle_stop;
\ No newline at end of file
diff --git a/dist/ikons/circle_up.js b/dist/ikons/circle_up.js
new file mode 100644
index 000000000..f91322c87
--- /dev/null
+++ b/dist/ikons/circle_up.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.circle_up = void 0;
+var circle_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__UP_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__UP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CIRCLE__x2F__UP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43.23,26.993l-9-10L34.223,17c-0.55-0.61-1.336-1-2.223-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10L20.778,27\r\n\t\t\t\tC20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V26.818l3.77,4.189L38.777,31c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.777-2\r\n\t\t\t\tL43.23,26.993z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43.23,26.993l-9-10L34.223,17c-0.55-0.61-1.336-1-2.223-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10L20.778,27\r\n\t\t\t\tC20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V26.818l3.77,4.189L38.777,31c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.777-2\r\n\t\t\t\tL43.23,26.993z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.circle_up = circle_up;
\ No newline at end of file
diff --git a/dist/ikons/clip.js b/dist/ikons/clip.js
new file mode 100644
index 000000000..e10cebfc9
--- /dev/null
+++ b/dist/ikons/clip.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clip = void 0;
+var clip = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLIP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M55.628,11.373c-7.029-7.029-18.426-7.029-25.456,0L6.837,34.707\r\n\t\t\tc-5.077,5.077-5.077,13.308,0,18.385c5.077,5.077,13.308,5.077,18.385,0l21.92-21.92c3.124-3.124,3.124-8.189,0-11.314\r\n\t\t\tc-3.124-3.124-8.19-3.124-11.314,0L17.444,38.243c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0\r\n\t\t\tl18.385-18.385c0.781-0.781,2.047-0.781,2.828,0c0.781,0.781,0.781,2.047,0,2.828l-21.92,21.92c-2.734,2.734-7.166,2.734-9.899,0\r\n\t\t\tc-2.734-2.734-2.734-7.166,0-9.9l23.334-23.334c4.686-4.686,12.284-4.686,16.971,0c4.686,4.686,4.686,12.284,0,16.971\r\n\t\t\tL31.586,52.385c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.171,3.071,1.171,4.243,0l19.799-19.799\r\n\t\t\tC62.657,29.799,62.657,18.402,55.628,11.373z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M55.628,11.373c-7.029-7.029-18.426-7.029-25.456,0L6.837,34.707\r\n\t\t\tc-5.077,5.077-5.077,13.308,0,18.385c5.077,5.077,13.308,5.077,18.385,0l21.92-21.92c3.124-3.124,3.124-8.189,0-11.314\r\n\t\t\tc-3.124-3.124-8.19-3.124-11.314,0L17.444,38.243c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0\r\n\t\t\tl18.385-18.385c0.781-0.781,2.047-0.781,2.828,0c0.781,0.781,0.781,2.047,0,2.828l-21.92,21.92c-2.734,2.734-7.166,2.734-9.899,0\r\n\t\t\tc-2.734-2.734-2.734-7.166,0-9.9l23.334-23.334c4.686-4.686,12.284-4.686,16.971,0c4.686,4.686,4.686,12.284,0,16.971\r\n\t\t\tL31.586,52.385c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.171,3.071,1.171,4.243,0l19.799-19.799\r\n\t\t\tC62.657,29.799,62.657,18.402,55.628,11.373z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.clip = clip;
\ No newline at end of file
diff --git a/dist/ikons/close.js b/dist/ikons/close.js
new file mode 100644
index 000000000..548c16780
--- /dev/null
+++ b/dist/ikons/close.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.close = void 0;
+var close = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOSE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOSE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOSE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32\r\n\t\t\t\tL15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879\r\n\t\t\t\tC44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32\r\n\t\t\t\tL15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879\r\n\t\t\t\tC44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.close = close;
\ No newline at end of file
diff --git a/dist/ikons/cloud.js b/dist/ikons/cloud.js
new file mode 100644
index 000000000..13884338b
--- /dev/null
+++ b/dist/ikons/cloud.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud = void 0;
+var cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655C4.47,26.532,0,32.243,0,39\r\n\t\t\t\tc0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.529,26.532,53.387,24.656z M49,48H15c-4.97,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655C4.47,26.532,0,32.243,0,39\r\n\t\t\t\tc0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.529,26.532,53.387,24.656z M49,48H15c-4.97,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.cloud = cloud;
\ No newline at end of file
diff --git a/dist/ikons/cloud_download.js b/dist/ikons/cloud_download.js
new file mode 100644
index 000000000..a1c0c7ebb
--- /dev/null
+++ b/dist/ikons/cloud_download.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud_download = void 0;
+var cloud_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__DOWNLOAD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__DOWNLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__DOWNLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,44c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,49.182V34c0-1.657-1.343-3-3-3s-3,1.343-3,3v15.182l-3.77-4.188l0,0\r\n\t\t\t\tC24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.191,0.014,0.286l0,0c0.062,0.659,0.337,1.256,0.756,1.721\r\n\t\t\t\tl0,0l9,10L29.778,59c0.549,0.609,1.337,1,2.222,1s1.673-0.391,2.223-1.001l0.008,0.007l9-10l0,0\r\n\t\t\t\tc0.418-0.465,0.693-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.016-0.307C43.831,45.182,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.589,0.326c0.032,0.019,0.063,0.039,0.097,0.058c0.205,0.128,0.405,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.026,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,44c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,49.182V34c0-1.657-1.343-3-3-3s-3,1.343-3,3v15.182l-3.77-4.188l0,0\r\n\t\t\t\tC24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.191,0.014,0.286l0,0c0.062,0.659,0.337,1.256,0.756,1.721\r\n\t\t\t\tl0,0l9,10L29.778,59c0.549,0.609,1.337,1,2.222,1s1.673-0.391,2.223-1.001l0.008,0.007l9-10l0,0\r\n\t\t\t\tc0.418-0.465,0.693-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.016-0.307C43.831,45.182,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.589,0.326c0.032,0.019,0.063,0.039,0.097,0.058c0.205,0.128,0.405,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.026,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.cloud_download = cloud_download;
\ No newline at end of file
diff --git a/dist/ikons/cloud_fail.js b/dist/ikons/cloud_fail.js
new file mode 100644
index 000000000..50e288400
--- /dev/null
+++ b/dist/ikons/cloud_fail.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud_fail = void 0;
+var cloud_fail = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__FAIL_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__FAIL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__FAIL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758l-5.879-5.879C25.578,36.336,24.829,36,24,36\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879C21.336,53.422,21,54.172,21,55\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879C38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879C42.664,40.579,43,39.829,43,39z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6s-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.589-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097\r\n\t\t\t\tC20.406,15.318,25.808,12,32,12c6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.363,1.112c0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512\r\n\t\t\t\tC48.814,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485\r\n\t\t\t\tC56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,28.243,59.529,22.532,53.387,20.656z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758l-5.879-5.879C25.578,36.336,24.829,36,24,36\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879C21.336,53.422,21,54.172,21,55\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879C38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879C42.664,40.579,43,39.829,43,39z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6s-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.589-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097\r\n\t\t\t\tC20.406,15.318,25.808,12,32,12c6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.363,1.112c0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512\r\n\t\t\t\tC48.814,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485\r\n\t\t\t\tC56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,28.243,59.529,22.532,53.387,20.656z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.cloud_fail = cloud_fail;
\ No newline at end of file
diff --git a/dist/ikons/cloud_ok.js b/dist/ikons/cloud_ok.js
new file mode 100644
index 000000000..410456066
--- /dev/null
+++ b/dist/ikons/cloud_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud_ok = void 0;
+var cloud_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43,36c-1.039,0-1.954,0.527-2.493,1.33l-8.936,12.998l-5.45-5.45C25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58c1.039,0,1.954-0.527,2.493-1.33l10.969-15.954\r\n\t\t\t\tC45.801,40.23,46,39.639,46,39C46,37.343,44.657,36,43,36z M53.387,20.656C50.048,12.086,41.752,6,32,6\r\n\t\t\t\tc-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.041-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.172,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.2,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.529,22.532,53.387,20.656z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43,36c-1.039,0-1.954,0.527-2.493,1.33l-8.936,12.998l-5.45-5.45C25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58c1.039,0,1.954-0.527,2.493-1.33l10.969-15.954\r\n\t\t\t\tC45.801,40.23,46,39.639,46,39C46,37.343,44.657,36,43,36z M53.387,20.656C50.048,12.086,41.752,6,32,6\r\n\t\t\t\tc-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.041-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.172,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.2,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.529,22.532,53.387,20.656z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.cloud_ok = cloud_ok;
\ No newline at end of file
diff --git a/dist/ikons/cloud_upload.js b/dist/ikons/cloud_upload.js
new file mode 100644
index 000000000..43048b68e
--- /dev/null
+++ b/dist/ikons/cloud_upload.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud_upload = void 0;
+var cloud_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__UPLOAD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__UPLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CLOUD__x2F__UPLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719l0,0l-0.008-0.01\r\n\t\t\t\tc-0.002,0-0.002-0.002-0.004-0.002l-8.99-9.989L34.221,32c-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.673,0.391-2.222,1\r\n\t\t\t\tl-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.004-0.006,0.006l-0.006,0.007l0,0C20.292,42.525,20,43.229,20,44\r\n\t\t\t\tc0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.006,0.098-0.008\r\n\t\t\t\tc0.012-0.002,0.024-0.004,0.036-0.006c0.044-0.004,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.112,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.188l0,0\r\n\t\t\t\tc0.446,0.495,1.056,0.841,1.742,0.953c0.002,0,0.002,0,0.002,0c0.045,0.007,0.088,0.013,0.133,0.019\r\n\t\t\t\tc0.011,0,0.022,0.002,0.033,0.004c0.033,0.002,0.067,0.006,0.1,0.008c0.021,0.002,0.043,0.004,0.063,0.005s0.04,0.001,0.06,0.002\r\n\t\t\t\tC40.936,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002C44,43.904,43.995,43.811,43.986,43.719z\r\n\t\t\t\t M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34\r\n\t\t\t\tc0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11c6.191,0,11.596,3.318,14.562,8.266\r\n\t\t\t\tc0.213,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.138,0.363,0.252,0.737,0.365,1.112c0.035,0.12,0.08,0.236,0.113,0.357\r\n\t\t\t\tc0.137,0.495,0.251,0.999,0.342,1.512C48.814,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109\r\n\t\t\t\tc0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\tc8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719l0,0l-0.008-0.01\r\n\t\t\t\tc-0.002,0-0.002-0.002-0.004-0.002l-8.99-9.989L34.221,32c-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.673,0.391-2.222,1\r\n\t\t\t\tl-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.004-0.006,0.006l-0.006,0.007l0,0C20.292,42.525,20,43.229,20,44\r\n\t\t\t\tc0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.006,0.098-0.008\r\n\t\t\t\tc0.012-0.002,0.024-0.004,0.036-0.006c0.044-0.004,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.112,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.188l0,0\r\n\t\t\t\tc0.446,0.495,1.056,0.841,1.742,0.953c0.002,0,0.002,0,0.002,0c0.045,0.007,0.088,0.013,0.133,0.019\r\n\t\t\t\tc0.011,0,0.022,0.002,0.033,0.004c0.033,0.002,0.067,0.006,0.1,0.008c0.021,0.002,0.043,0.004,0.063,0.005s0.04,0.001,0.06,0.002\r\n\t\t\t\tC40.936,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002C44,43.904,43.995,43.811,43.986,43.719z\r\n\t\t\t\t M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34\r\n\t\t\t\tc0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11c6.191,0,11.596,3.318,14.562,8.266\r\n\t\t\t\tc0.213,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.138,0.363,0.252,0.737,0.365,1.112c0.035,0.12,0.08,0.236,0.113,0.357\r\n\t\t\t\tc0.137,0.495,0.251,0.999,0.342,1.512C48.814,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109\r\n\t\t\t\tc0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\tc8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.cloud_upload = cloud_upload;
\ No newline at end of file
diff --git a/dist/ikons/code.js b/dist/ikons/code.js
new file mode 100644
index 000000000..8da2fc70c
--- /dev/null
+++ b/dist/ikons/code.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.code = void 0;
+var code = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CODE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CODE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CODE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735C0.413,30.285,0,31.091,0,32\r\n\t\t\t\tc0,0.844,0.351,1.604,0.912,2.148L0.91,34.152l12,12l0.003-0.004C13.453,46.674,14.187,47,15,47c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003c0.561-0.545,0.913-1.305,0.913-2.149\r\n\t\t\t\tC18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265L51.152,17.91l-0.002,0.003\r\n\t\t\t\tC50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.352,1.604,0.913,2.149l-0.003,0.003l9.863,9.863l-9.895,9.895\r\n\t\t\t\tl0.003,0.003c-0.524,0.54-0.851,1.274-0.851,2.087c0,1.657,1.343,3,3,3c0.812,0,1.547-0.326,2.088-0.852l0.003,0.004l12-12\r\n\t\t\t\tl-0.003-0.004C63.68,33.604,64.031,32.844,64.031,32z M40,8c-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924\r\n\t\t\t\tC21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.982L42.8,12.076C42.93,11.742,43,11.38,43,11\r\n\t\t\t\tC43,9.343,41.657,8,40,8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735C0.413,30.285,0,31.091,0,32\r\n\t\t\t\tc0,0.844,0.351,1.604,0.912,2.148L0.91,34.152l12,12l0.003-0.004C13.453,46.674,14.187,47,15,47c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003c0.561-0.545,0.913-1.305,0.913-2.149\r\n\t\t\t\tC18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265L51.152,17.91l-0.002,0.003\r\n\t\t\t\tC50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.352,1.604,0.913,2.149l-0.003,0.003l9.863,9.863l-9.895,9.895\r\n\t\t\t\tl0.003,0.003c-0.524,0.54-0.851,1.274-0.851,2.087c0,1.657,1.343,3,3,3c0.812,0,1.547-0.326,2.088-0.852l0.003,0.004l12-12\r\n\t\t\t\tl-0.003-0.004C63.68,33.604,64.031,32.844,64.031,32z M40,8c-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924\r\n\t\t\t\tC21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.982L42.8,12.076C42.93,11.742,43,11.38,43,11\r\n\t\t\t\tC43,9.343,41.657,8,40,8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.code = code;
\ No newline at end of file
diff --git a/dist/ikons/cog.js b/dist/ikons/cog.js
new file mode 100644
index 000000000..e48fbf4ae
--- /dev/null
+++ b/dist/ikons/cog.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cog = void 0;
+var cog = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COG_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COG"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COG"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12S38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M55.518,25.462c-0.541-1.957-1.326-3.811-2.311-5.536\r\n\t\t\t\tc1.121-1.507,4.98-7.143,2.199-9.926l-1.428-1.507c-2.379-2.378-8.455,1.336-9.931,2.298c-1.745-0.989-3.62-1.774-5.6-2.31\r\n\t\t\t\tc-0.317-1.887-1.704-8.487-5.619-8.487h-1.567c-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32\r\n\t\t\t\tC18.661,9.839,12.841,5.816,10,8.656L8.493,9.924c-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435\r\n\t\t\t\tc-1.641,0.262-8.649,1.614-8.649,5.646v1.566c0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.709,2.255,5.394\r\n\t\t\t\tc-0.791,1.239-4.745,7.739-2.292,10.194l1.427,1.188c3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334\r\n\t\t\t\tc1.789,1.058,3.726,1.896,5.773,2.47c0.335,1.379,2.275,8.677,5.755,8.677h1.567c4.566,0,5.697-8.521,5.697-8.521l-0.418-0.013\r\n\t\t\t\tc2.069-0.529,4.031-1.325,5.851-2.345c1.426,0.949,7.401,4.688,9.786,2.304l1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877\r\n\t\t\t\tc0.984-1.722,1.773-3.571,2.316-5.525c1.78-0.452,8.483-2.374,8.483-5.707v-1.566C63.988,26.73,56.016,25.533,55.518,25.462z\r\n\t\t\t\t M32,50c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,41.941,41.941,50,32,50z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12S38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M55.518,25.462c-0.541-1.957-1.326-3.811-2.311-5.536\r\n\t\t\t\tc1.121-1.507,4.98-7.143,2.199-9.926l-1.428-1.507c-2.379-2.378-8.455,1.336-9.931,2.298c-1.745-0.989-3.62-1.774-5.6-2.31\r\n\t\t\t\tc-0.317-1.887-1.704-8.487-5.619-8.487h-1.567c-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32\r\n\t\t\t\tC18.661,9.839,12.841,5.816,10,8.656L8.493,9.924c-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435\r\n\t\t\t\tc-1.641,0.262-8.649,1.614-8.649,5.646v1.566c0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.709,2.255,5.394\r\n\t\t\t\tc-0.791,1.239-4.745,7.739-2.292,10.194l1.427,1.188c3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334\r\n\t\t\t\tc1.789,1.058,3.726,1.896,5.773,2.47c0.335,1.379,2.275,8.677,5.755,8.677h1.567c4.566,0,5.697-8.521,5.697-8.521l-0.418-0.013\r\n\t\t\t\tc2.069-0.529,4.031-1.325,5.851-2.345c1.426,0.949,7.401,4.688,9.786,2.304l1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877\r\n\t\t\t\tc0.984-1.722,1.773-3.571,2.316-5.525c1.78-0.452,8.483-2.374,8.483-5.707v-1.566C63.988,26.73,56.016,25.533,55.518,25.462z\r\n\t\t\t\t M32,50c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,41.941,41.941,50,32,50z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.cog = cog;
\ No newline at end of file
diff --git a/dist/ikons/columns.js b/dist/ikons/columns.js
new file mode 100644
index 000000000..f481a1bd2
--- /dev/null
+++ b/dist/ikons/columns.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.columns = void 0;
+var columns = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COLUMNS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COLUMNS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COLUMNS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9C64,7.343,62.657,6,61,6z M21,52H6V12h15\r\n\t\t\t\tV52z M40,52H24V12h16V52z M58,52H43V12h15V52z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9C64,7.343,62.657,6,61,6z M21,52H6V12h15\r\n\t\t\t\tV52z M40,52H24V12h16V52z M58,52H43V12h15V52z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.columns = columns;
\ No newline at end of file
diff --git a/dist/ikons/command.js b/dist/ikons/command.js
new file mode 100644
index 000000000..e9f4c6ea0
--- /dev/null
+++ b/dist/ikons/command.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.command = void 0;
+var command = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMMAND"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M51,39h-6V25h6c6.627,0,12-5.372,12-12c0-6.628-5.372-12-12-12\r\n\t\t\tc-6.628,0-12,5.373-12,12v6H25v-6c0-6.628-5.373-12-12-12C6.373,1,1,6.373,1,13c0,6.627,5.373,12,12,12h6v14h-6\r\n\t\t\tC6.373,39,1,44.373,1,51c0,6.628,5.373,12,12,12c6.627,0,12-5.372,12-12v-6h14v6c0,6.628,5.372,12,12,12c6.627,0,12-5.372,12-12\r\n\t\t\tC63,44.373,57.627,39,51,39z M45,13c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6s-2.686,6-6,6h-6V13z M19,51c0,3.314-2.686,6-6,6\r\n\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h6V51z M19,19h-6c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6V19z M39,39H25\r\n\t\t\tV25h14V39z M51,57c-3.314,0-6-2.686-6-6v-6h7v0.101c2.835,0.478,5,2.928,5,5.899C57,54.314,54.314,57,51,57z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M51,39h-6V25h6c6.627,0,12-5.372,12-12c0-6.628-5.372-12-12-12\r\n\t\t\tc-6.628,0-12,5.373-12,12v6H25v-6c0-6.628-5.373-12-12-12C6.373,1,1,6.373,1,13c0,6.627,5.373,12,12,12h6v14h-6\r\n\t\t\tC6.373,39,1,44.373,1,51c0,6.628,5.373,12,12,12c6.627,0,12-5.372,12-12v-6h14v6c0,6.628,5.372,12,12,12c6.627,0,12-5.372,12-12\r\n\t\t\tC63,44.373,57.627,39,51,39z M45,13c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6s-2.686,6-6,6h-6V13z M19,51c0,3.314-2.686,6-6,6\r\n\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h6V51z M19,19h-6c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6V19z M39,39H25\r\n\t\t\tV25h14V39z M51,57c-3.314,0-6-2.686-6-6v-6h7v0.101c2.835,0.478,5,2.928,5,5.899C57,54.314,54.314,57,51,57z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.command = command;
\ No newline at end of file
diff --git a/dist/ikons/compass.js b/dist/ikons/compass.js
new file mode 100644
index 000000000..fc5d9edfe
--- /dev/null
+++ b/dist/ikons/compass.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.compass = void 0;
+var compass = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPASS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPASS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPASS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S33.657,35,32,35z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S33.657,35,32,35z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.compass = compass;
\ No newline at end of file
diff --git a/dist/ikons/computer_add.js b/dist/ikons/computer_add.js
new file mode 100644
index 000000000..9f9191e18
--- /dev/null
+++ b/dist/ikons/computer_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.computer_add = void 0;
+var computer_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__ADD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3s-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26\r\n\t\t\t\tv-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3s-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26\r\n\t\t\t\tv-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.computer_add = computer_add;
\ No newline at end of file
diff --git a/dist/ikons/computer_delete.js b/dist/ikons/computer_delete.js
new file mode 100644
index 000000000..cecdc434b
--- /dev/null
+++ b/dist/ikons/computer_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.computer_delete = void 0;
+var computer_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879\r\n\t\t\t\tC36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879\r\n\t\t\t\tC40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879\r\n\t\t\t\tC27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879\r\n\t\t\t\tC23.336,29.422,23,30.172,23,31z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879\r\n\t\t\t\tC36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879\r\n\t\t\t\tC40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879\r\n\t\t\t\tC27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879\r\n\t\t\t\tC23.336,29.422,23,30.172,23,31z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.computer_delete = computer_delete;
\ No newline at end of file
diff --git a/dist/ikons/computer_download.js b/dist/ikons/computer_download.js
new file mode 100644
index 000000000..f5fe9a3cf
--- /dev/null
+++ b/dist/ikons/computer_download.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.computer_download = void 0;
+var computer_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__DOWNLOAD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__DOWNLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__DOWNLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,18.758V5c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z M60,6H38v4h21v34H5V10h21V6H4\r\n\t\t\t\tC2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,18.758V5c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z M60,6H38v4h21v34H5V10h21V6H4\r\n\t\t\t\tC2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.computer_download = computer_download;
\ No newline at end of file
diff --git a/dist/ikons/computer_ok.js b/dist/ikons/computer_ok.js
new file mode 100644
index 000000000..7bfee9135
--- /dev/null
+++ b/dist/ikons/computer_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.computer_ok = void 0;
+var computer_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879l8-8C40.664,22.578,41,21.829,41,21\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879C27.578,22.336,26.828,22,26,22\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5\r\n\t\t\t\tl-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879l8-8C40.664,22.578,41,21.829,41,21\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879C27.578,22.336,26.828,22,26,22\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5\r\n\t\t\t\tl-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.computer_ok = computer_ok;
\ No newline at end of file
diff --git a/dist/ikons/computer_remove.js b/dist/ikons/computer_remove.js
new file mode 100644
index 000000000..ddbbe7ab0
--- /dev/null
+++ b/dist/ikons/computer_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.computer_remove = void 0;
+var computer_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,28h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H26c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,28h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H26c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.computer_remove = computer_remove;
\ No newline at end of file
diff --git a/dist/ikons/computer_upload.js b/dist/ikons/computer_upload.js
new file mode 100644
index 000000000..da61031e3
--- /dev/null
+++ b/dist/ikons/computer_upload.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.computer_upload = void 0;
+var computer_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__UPLOAD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__UPLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COMPUTER__x2F__UPLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3s3-1.343,3-3V12.243l1.879,1.879\r\n\t\t\t\tC37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,2.336,32.829,2,32,2\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z M60,6H41.484l4,4H59v34H5V10\r\n\t\t\t\th13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3s3-1.343,3-3V12.243l1.879,1.879\r\n\t\t\t\tC37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,2.336,32.829,2,32,2\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z M60,6H41.484l4,4H59v34H5V10\r\n\t\t\t\th13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.computer_upload = computer_upload;
\ No newline at end of file
diff --git a/dist/ikons/copy_1.js b/dist/ikons/copy_1.js
new file mode 100644
index 000000000..b830251ed
--- /dev/null
+++ b/dist/ikons/copy_1.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.copy_1 = void 0;
+var copy_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COPY_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M38,58h-9v0H16v0H6V26h11v-6H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h10\r\n\t\t\tv0h17v0h11c1.657,0,3-1.343,3-3V47h-6V58z M61,0H23c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,38h-9v0H36v0H26V6h32V38z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M38,58h-9v0H16v0H6V26h11v-6H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h10\r\n\t\t\tv0h17v0h11c1.657,0,3-1.343,3-3V47h-6V58z M61,0H23c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,38h-9v0H36v0H26V6h32V38z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.copy_1 = copy_1;
\ No newline at end of file
diff --git a/dist/ikons/copy_2.js b/dist/ikons/copy_2.js
new file mode 100644
index 000000000..aff26dee1
--- /dev/null
+++ b/dist/ikons/copy_2.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.copy_2 = void 0;
+var copy_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "COPY"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M41,20H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3\r\n\t\t\tV23C44,21.343,42.657,20,41,20z M38,58H6V26h9v0h13v0h10V58z M61,0H23c-1.657,0-3,1.343-3,3v14h6V6h9v0h13v0h10v32H47v6h14\r\n\t\t\tc1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M41,20H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3\r\n\t\t\tV23C44,21.343,42.657,20,41,20z M38,58H6V26h9v0h13v0h10V58z M61,0H23c-1.657,0-3,1.343-3,3v14h6V6h9v0h13v0h10v32H47v6h14\r\n\t\t\tc1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.copy_2 = copy_2;
\ No newline at end of file
diff --git a/dist/ikons/credit_card.js b/dist/ikons/credit_card.js
new file mode 100644
index 000000000..5972fee74
--- /dev/null
+++ b/dist/ikons/credit_card.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.credit_card = void 0;
+var credit_card = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CREDIT_CARD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CREDIT_CARD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CREDIT_CARD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z M6,45h12v3H6V45z M61,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z M6,45h12v3H6V45z M61,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.credit_card = credit_card;
\ No newline at end of file
diff --git a/dist/ikons/crop.js b/dist/ikons/crop.js
new file mode 100644
index 000000000..78413e443
--- /dev/null
+++ b/dist/ikons/crop.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crop = void 0;
+var crop = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "CROP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,49h-6V13.243l8.121-8.121C63.664,4.579,64,3.828,64,3c0-1.657-1.343-3-3-3\r\n\t\t\tc-0.829,0-1.578,0.336-2.121,0.879L50.757,9H15V3c0-1.657-1.343-3-3-3S9,1.343,9,3v6H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3\r\n\t\t\th6v35.758l-0.121,0.121L9,51v1.5c0,1.381,1.119,2.5,2.5,2.5H13l0.121,0.121L13.243,55H49v6c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3v-6h6c1.657,0,3-1.343,3-3C64,50.343,62.657,49,61,49z M15,15h29.757L15,44.757V15z M49,49H19.243L49,19.243\r\n\t\t\tV49z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,49h-6V13.243l8.121-8.121C63.664,4.579,64,3.828,64,3c0-1.657-1.343-3-3-3\r\n\t\t\tc-0.829,0-1.578,0.336-2.121,0.879L50.757,9H15V3c0-1.657-1.343-3-3-3S9,1.343,9,3v6H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3\r\n\t\t\th6v35.758l-0.121,0.121L9,51v1.5c0,1.381,1.119,2.5,2.5,2.5H13l0.121,0.121L13.243,55H49v6c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3v-6h6c1.657,0,3-1.343,3-3C64,50.343,62.657,49,61,49z M15,15h29.757L15,44.757V15z M49,49H19.243L49,19.243\r\n\t\t\tV49z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.crop = crop;
\ No newline at end of file
diff --git a/dist/ikons/diskette.js b/dist/ikons/diskette.js
new file mode 100644
index 000000000..c0d3eaf8c
--- /dev/null
+++ b/dist/ikons/diskette.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.diskette = void 0;
+var diskette = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DISKETTE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M15,25.001c0,1.661,1.343,3.007,3,3.007h4V28h18v0.008h4\r\n\t\t\tc1.657,0,3-1.346,3-3.007V19h0V1H15v18h0V25.001z M32,5h9v19h-9V5z M63.121,10.879l-9-9C53.578,1.336,52.829,1,52,1h-2v15h0v9.001\r\n\t\t\tc0,3.272-2.61,5.92-5.856,5.999H17.856C14.611,30.922,12,28.273,12,25.001V16h0V1H3C1.343,1,0,2.343,0,4v56c0,1.657,1.343,3,3,3\r\n\t\t\th58c1.657,0,3-1.343,3-3V13C64,12.172,63.664,11.422,63.121,10.879z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M15,25.001c0,1.661,1.343,3.007,3,3.007h4V28h18v0.008h4\r\n\t\t\tc1.657,0,3-1.346,3-3.007V19h0V1H15v18h0V25.001z M32,5h9v19h-9V5z M63.121,10.879l-9-9C53.578,1.336,52.829,1,52,1h-2v15h0v9.001\r\n\t\t\tc0,3.272-2.61,5.92-5.856,5.999H17.856C14.611,30.922,12,28.273,12,25.001V16h0V1H3C1.343,1,0,2.343,0,4v56c0,1.657,1.343,3,3,3\r\n\t\t\th58c1.657,0,3-1.343,3-3V13C64,12.172,63.664,11.422,63.121,10.879z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.diskette = diskette;
\ No newline at end of file
diff --git a/dist/ikons/documentIcon.js b/dist/ikons/documentIcon.js
new file mode 100644
index 000000000..9cfea9903
--- /dev/null
+++ b/dist/ikons/documentIcon.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.documentIcon = void 0;
+var documentIcon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001V3H13c-1.657,0-3,1.343-3,3v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001V3H13c-1.657,0-3,1.343-3,3v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.documentIcon = documentIcon;
\ No newline at end of file
diff --git a/dist/ikons/document_add.js b/dist/ikons/document_add.js
new file mode 100644
index 000000000..6b496950c
--- /dev/null
+++ b/dist/ikons/document_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.document_add = void 0;
+var document_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__ADD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31c-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h35l0,0C40.686,60,38,57.314,38,54z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31c-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h35l0,0C40.686,60,38,57.314,38,54z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.document_add = document_add;
\ No newline at end of file
diff --git a/dist/ikons/document_delete.js b/dist/ikons/document_delete.js
new file mode 100644
index 000000000..af6a077d8
--- /dev/null
+++ b/dist/ikons/document_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.document_delete = void 0;
+var document_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.516,54l-1.758-1.757\r\n\t\t\t\tC38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.152,0.675,4.238,1.762l0.005-0.005L49,44.516v-19.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28l0,0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.516,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.516,54l-1.758-1.757\r\n\t\t\t\tC38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.152,0.675,4.238,1.762l0.005-0.005L49,44.516v-19.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28l0,0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.516,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.document_delete = document_delete;
\ No newline at end of file
diff --git a/dist/ikons/document_download.js b/dist/ikons/document_download.js
new file mode 100644
index 000000000..acd584705
--- /dev/null
+++ b/dist/ikons/document_download.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.document_download = void 0;
+var document_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__DOWNLOAD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__DOWNLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__DOWNLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0.343,0,0.673,0.046,1,0.102V39c0-3.314,2.686-6,6-6l0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h31.516l-1.758-1.757C36.672,56.157,36,54.657,36,53z M56,50c-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63s1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53\r\n\t\t\t\tC59,51.343,57.657,50,56,50z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0.343,0,0.673,0.046,1,0.102V39c0-3.314,2.686-6,6-6l0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h31.516l-1.758-1.757C36.672,56.157,36,54.657,36,53z M56,50c-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63s1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53\r\n\t\t\t\tC59,51.343,57.657,50,56,50z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.document_download = document_download;
\ No newline at end of file
diff --git a/dist/ikons/document_ok.js b/dist/ikons/document_ok.js
new file mode 100644
index 000000000..4738c36d6
--- /dev/null
+++ b/dist/ikons/document_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.document_ok = void 0;
+var document_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48c-0.828,0-1.578,0.336-2.121,0.879L48,54.757\r\n\t\t\t\tl-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51C59,49.343,57.657,48,56,48z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6c1.533,0,2.909,0.6,3.967,1.547L49,49.516v-23.5H30c-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h23l0,0h10.516l-1.758-1.757C38.672,58.157,38,56.657,38,55z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48c-0.828,0-1.578,0.336-2.121,0.879L48,54.757\r\n\t\t\t\tl-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51C59,49.343,57.657,48,56,48z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6c1.533,0,2.909,0.6,3.967,1.547L49,49.516v-23.5H30c-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h23l0,0h10.516l-1.758-1.757C38.672,58.157,38,56.657,38,55z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.document_ok = document_ok;
\ No newline at end of file
diff --git a/dist/ikons/document_remove.js b/dist/ikons/document_remove.js
new file mode 100644
index 000000000..6b4d28a68
--- /dev/null
+++ b/dist/ikons/document_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.document_remove = void 0;
+var document_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55c0-3.314,2.686-6,6-6h6V26.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35l0,0C40.686,61,38,58.314,38,55z M56,52\r\n\t\t\t\tH44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55c0-3.314,2.686-6,6-6h6V26.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35l0,0C40.686,61,38,58.314,38,55z M56,52\r\n\t\t\t\tH44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.document_remove = document_remove;
\ No newline at end of file
diff --git a/dist/ikons/document_upload.js b/dist/ikons/document_upload.js
new file mode 100644
index 000000000..9e49d6bad
--- /dev/null
+++ b/dist/ikons/document_upload.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.document_upload = void 0;
+var document_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__UPLOAD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__UPLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENT__x2F__UPLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46c0-1.657,0.672-3.157,1.757-4.243l7-7\r\n\t\t\t\tC45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.102\r\n\t\t\t\tC42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243\r\n\t\t\t\tV60c0,1.657,1.343,3,3,3s3-1.343,3-3V46.243l1.879,1.879C54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tC59,45.172,58.664,44.422,58.121,43.879z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46c0-1.657,0.672-3.157,1.757-4.243l7-7\r\n\t\t\t\tC45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.102\r\n\t\t\t\tC42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243\r\n\t\t\t\tV60c0,1.657,1.343,3,3,3s3-1.343,3-3V46.243l1.879,1.879C54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tC59,45.172,58.664,44.422,58.121,43.879z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.document_upload = document_upload;
\ No newline at end of file
diff --git a/dist/ikons/documents.js b/dist/ikons/documents.js
new file mode 100644
index 000000000..c608b9655
--- /dev/null
+++ b/dist/ikons/documents.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.documents = void 0;
+var documents = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENTS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENTS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOCUMENTS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23.015H38\r\n\t\t\t\tC34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037C35,18.662,36.343,20.008,38,20.008z M10,55V6\r\n\t\t\t\tC8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16C12.686,61,10,58.314,10,55z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23.015H38\r\n\t\t\t\tC34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037C35,18.662,36.343,20.008,38,20.008z M10,55V6\r\n\t\t\t\tC8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16C12.686,61,10,58.314,10,55z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.documents = documents;
\ No newline at end of file
diff --git a/dist/ikons/download.js b/dist/ikons/download.js
new file mode 100644
index 000000000..48179c296
--- /dev/null
+++ b/dist/ikons/download.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.download = void 0;
+var download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOWNLOAD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOWNLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DOWNLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40s1.68-0.384,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3c-0.885,0-1.682,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.182l-3.77-4.189l0,0C24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007\r\n\t\t\t\tL20.77,29.007z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0s0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40s1.68-0.384,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3c-0.885,0-1.682,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.182l-3.77-4.189l0,0C24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007\r\n\t\t\t\tL20.77,29.007z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0s0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.download = download;
\ No newline at end of file
diff --git a/dist/ikons/dribbble.js b/dist/ikons/dribbble.js
new file mode 100644
index 000000000..f47da1c2a
--- /dev/null
+++ b/dist/ikons/dribbble.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dribbble = void 0;
+var dribbble = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "dribbble_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "dribbble"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "dribbble"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.35,25.558c-0.42-2.056-1.049-4.081-1.865-6.015c-0.803-1.899-1.795-3.727-2.951-5.436\r\n\t\t\t\tc-1.145-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907c-1.709-1.158-3.539-2.149-5.436-2.953\r\n\t\t\t\tC42.523,1.7,40.5,1.068,38.443,0.651c-2.107-0.433-4.276-0.652-6.442-0.652c-2.169,0-4.338,0.22-6.446,0.652\r\n\t\t\t\tc-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953C12.411,6.61,10.818,7.924,9.37,9.373\r\n\t\t\t\tc-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436c-0.818,1.934-1.446,3.96-1.867,6.015\r\n\t\t\t\tc-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448c0.421,2.056,1.049,4.08,1.867,6.013\r\n\t\t\t\tc0.802,1.896,1.795,3.729,2.951,5.438c1.144,1.694,2.458,3.285,3.904,4.733c1.447,1.446,3.04,2.759,4.734,3.904\r\n\t\t\t\tc1.711,1.155,3.541,2.149,5.437,2.95c1.933,0.82,3.957,1.445,6.013,1.867c2.109,0.435,4.277,0.651,6.446,0.651\r\n\t\t\t\tc2.167,0,4.335-0.217,6.441-0.651c2.058-0.422,4.082-1.047,6.015-1.867c1.896-0.801,3.728-1.795,5.437-2.95\r\n\t\t\t\tc1.693-1.146,3.287-2.458,4.734-3.904c1.446-1.448,2.762-3.039,3.905-4.733c1.155-1.709,2.149-3.541,2.95-5.438\r\n\t\t\t\tc0.817-1.933,1.447-3.957,1.867-6.013C63.781,36.339,64,34.17,64,31.997C64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67\r\n\t\t\t\tc6.919,0,13.233,2.579,18.049,6.819c-0.067,0.106-3.96,6.03-14.276,9.896C31.104,12.802,25.971,5.982,25.56,5.441\r\n\t\t\t\tC27.626,4.941,29.78,4.67,32.001,4.67z M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018\r\n\t\t\t\tC25.396,5.479,25.426,5.474,25.455,5.464z M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747\r\n\t\t\t\tc-13.123,3.487-24.511,3.35-25.233,3.337C7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.264\r\n\t\t\t\tC7.321,45.421,4.672,39.02,4.672,31.997c0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894\r\n\t\t\t\tc0.784,1.532,1.532,3.09,2.219,4.645c-0.363,0.101-0.72,0.21-1.078,0.326c-14.75,4.767-22.23,18.038-22.23,18.038\r\n\t\t\t\tS11.671,50.258,11.673,50.264z M32.001,59.33c-6.338,0-12.157-2.176-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01\r\n\t\t\t\ts-0.252-0.188-0.612-0.479c0.199,0.164,0.413,0.31,0.617,0.469c0.1-0.217,5.39-11.471,21.442-17.062\r\n\t\t\t\tc0.06-0.022,0.121-0.041,0.182-0.058c3.846,9.993,5.434,18.362,5.838,20.751C39.393,58.559,35.785,59.33,32.001,59.33z\r\n\t\t\t\t M47.271,54.668c-0.277-1.65-1.733-9.671-5.319-19.521c8.823-1.412,16.468,1.008,17.032,1.192\r\n\t\t\t\tC57.768,43.955,53.408,50.523,47.271,54.668z M40.286,30.832c-0.192-0.468-0.388-0.938-0.589-1.411\r\n\t\t\t\tc-0.569-1.337-1.182-2.662-1.817-3.964c10.793-4.405,15.175-10.741,15.226-10.817c3.834,4.655,6.152,10.602,6.215,17.087\r\n\t\t\t\tC58.925,31.641,49.676,29.651,40.286,30.832z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.35,25.558c-0.42-2.056-1.049-4.081-1.865-6.015c-0.803-1.899-1.795-3.727-2.951-5.436\r\n\t\t\t\tc-1.145-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907c-1.709-1.158-3.539-2.149-5.436-2.953\r\n\t\t\t\tC42.523,1.7,40.5,1.068,38.443,0.651c-2.107-0.433-4.276-0.652-6.442-0.652c-2.169,0-4.338,0.22-6.446,0.652\r\n\t\t\t\tc-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953C12.411,6.61,10.818,7.924,9.37,9.373\r\n\t\t\t\tc-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436c-0.818,1.934-1.446,3.96-1.867,6.015\r\n\t\t\t\tc-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448c0.421,2.056,1.049,4.08,1.867,6.013\r\n\t\t\t\tc0.802,1.896,1.795,3.729,2.951,5.438c1.144,1.694,2.458,3.285,3.904,4.733c1.447,1.446,3.04,2.759,4.734,3.904\r\n\t\t\t\tc1.711,1.155,3.541,2.149,5.437,2.95c1.933,0.82,3.957,1.445,6.013,1.867c2.109,0.435,4.277,0.651,6.446,0.651\r\n\t\t\t\tc2.167,0,4.335-0.217,6.441-0.651c2.058-0.422,4.082-1.047,6.015-1.867c1.896-0.801,3.728-1.795,5.437-2.95\r\n\t\t\t\tc1.693-1.146,3.287-2.458,4.734-3.904c1.446-1.448,2.762-3.039,3.905-4.733c1.155-1.709,2.149-3.541,2.95-5.438\r\n\t\t\t\tc0.817-1.933,1.447-3.957,1.867-6.013C63.781,36.339,64,34.17,64,31.997C64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67\r\n\t\t\t\tc6.919,0,13.233,2.579,18.049,6.819c-0.067,0.106-3.96,6.03-14.276,9.896C31.104,12.802,25.971,5.982,25.56,5.441\r\n\t\t\t\tC27.626,4.941,29.78,4.67,32.001,4.67z M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018\r\n\t\t\t\tC25.396,5.479,25.426,5.474,25.455,5.464z M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747\r\n\t\t\t\tc-13.123,3.487-24.511,3.35-25.233,3.337C7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.264\r\n\t\t\t\tC7.321,45.421,4.672,39.02,4.672,31.997c0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894\r\n\t\t\t\tc0.784,1.532,1.532,3.09,2.219,4.645c-0.363,0.101-0.72,0.21-1.078,0.326c-14.75,4.767-22.23,18.038-22.23,18.038\r\n\t\t\t\tS11.671,50.258,11.673,50.264z M32.001,59.33c-6.338,0-12.157-2.176-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01\r\n\t\t\t\ts-0.252-0.188-0.612-0.479c0.199,0.164,0.413,0.31,0.617,0.469c0.1-0.217,5.39-11.471,21.442-17.062\r\n\t\t\t\tc0.06-0.022,0.121-0.041,0.182-0.058c3.846,9.993,5.434,18.362,5.838,20.751C39.393,58.559,35.785,59.33,32.001,59.33z\r\n\t\t\t\t M47.271,54.668c-0.277-1.65-1.733-9.671-5.319-19.521c8.823-1.412,16.468,1.008,17.032,1.192\r\n\t\t\t\tC57.768,43.955,53.408,50.523,47.271,54.668z M40.286,30.832c-0.192-0.468-0.388-0.938-0.589-1.411\r\n\t\t\t\tc-0.569-1.337-1.182-2.662-1.817-3.964c10.793-4.405,15.175-10.741,15.226-10.817c3.834,4.655,6.152,10.602,6.215,17.087\r\n\t\t\t\tC58.925,31.641,49.676,29.651,40.286,30.832z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.dribbble = dribbble;
\ No newline at end of file
diff --git a/dist/ikons/drop.js b/dist/ikons/drop.js
new file mode 100644
index 000000000..90c062669
--- /dev/null
+++ b/dist/ikons/drop.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.drop = void 0;
+var drop = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "DROP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M31.583,3.847c0,0-19.616,25.205-19.592,35.712\r\n\t\t\tc0.026,11.331,9.338,20.49,19.948,20.462c10.609-0.029,20.137-9.239,20.111-20.57C52.024,28.592,31.583,3.847,31.583,3.847z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M31.583,3.847c0,0-19.616,25.205-19.592,35.712\r\n\t\t\tc0.026,11.331,9.338,20.49,19.948,20.462c10.609-0.029,20.137-9.239,20.111-20.57C52.024,28.592,31.583,3.847,31.583,3.847z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.drop = drop;
\ No newline at end of file
diff --git a/dist/ikons/dropbox.js b/dist/ikons/dropbox.js
new file mode 100644
index 000000000..d5928f9e1
--- /dev/null
+++ b/dist/ikons/dropbox.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.dropbox = void 0;
+var dropbox = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "dropbox_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "dropbox"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "dropbox"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32.04,39.477L18.826,50.346l-5.654-3.662v4.105L32.04,62.003l18.864-11.215v-4.106l-5.652,3.662L32.04,39.477z\r\n\t\t\t\t M0.001,35.846l18.825,12.184L32,37.134L13.018,25.513L0.001,35.846z M32,37.134l13.174,10.896L64,35.846L50.982,25.513\r\n\t\t\t\tL32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176L45.174,2.997L32,13.893\r\n\t\t\t\tl18.982,11.619L63.999,15.176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32.04,39.477L18.826,50.346l-5.654-3.662v4.105L32.04,62.003l18.864-11.215v-4.106l-5.652,3.662L32.04,39.477z\r\n\t\t\t\t M0.001,35.846l18.825,12.184L32,37.134L13.018,25.513L0.001,35.846z M32,37.134l13.174,10.896L64,35.846L50.982,25.513\r\n\t\t\t\tL32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176L45.174,2.997L32,13.893\r\n\t\t\t\tl18.982,11.619L63.999,15.176z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.dropbox = dropbox;
\ No newline at end of file
diff --git a/dist/ikons/eject.js b/dist/ikons/eject.js
new file mode 100644
index 000000000..72954c5af
--- /dev/null
+++ b/dist/ikons/eject.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eject = void 0;
+var eject = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "EJECT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "EJECT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "EJECT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3S43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962c-0.004-0.005-0.006-0.01-0.01-0.016l-0.015-0.022l0,0\r\n\t\t\t\tC34.014,17.563,33.073,17,32,17s-2.013,0.563-2.544,1.41l0,0l-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0\r\n\t\t\t\tC19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3S43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962c-0.004-0.005-0.006-0.01-0.01-0.016l-0.015-0.022l0,0\r\n\t\t\t\tC34.014,17.563,33.073,17,32,17s-2.013,0.563-2.544,1.41l0,0l-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0\r\n\t\t\t\tC19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.eject = eject;
\ No newline at end of file
diff --git a/dist/ikons/equalizer.js b/dist/ikons/equalizer.js
new file mode 100644
index 000000000..8c17ddb3a
--- /dev/null
+++ b/dist/ikons/equalizer.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.equalizer = void 0;
+var equalizer = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "EQUALIZER_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "EQUALIZER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "EQUALIZER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V26C16,24.343,14.657,23,13,23z M13,3\r\n\t\t\t\tc0-1.657-1.343-3-3-3S7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3v25h6V3z M57,3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3s3-1.343,3-3V44H7V61z M57,15h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61c0,1.657,1.343,3,3,3s3-1.343,3-3V36h-6V61z M29,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34\r\n\t\t\t\tC38,32.343,36.657,31,35,31z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V26C16,24.343,14.657,23,13,23z M13,3\r\n\t\t\t\tc0-1.657-1.343-3-3-3S7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3v25h6V3z M57,3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3s3-1.343,3-3V44H7V61z M57,15h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61c0,1.657,1.343,3,3,3s3-1.343,3-3V36h-6V61z M29,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34\r\n\t\t\t\tC38,32.343,36.657,31,35,31z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.equalizer = equalizer;
\ No newline at end of file
diff --git a/dist/ikons/facebook_1.js b/dist/ikons/facebook_1.js
new file mode 100644
index 000000000..13e4cc47f
--- /dev/null
+++ b/dist/ikons/facebook_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.facebook_1 = void 0;
+var facebook_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "facebook_2_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "facebook_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "facebook_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M36.963,22.048c0.092-3.345-0.525-8.003,0.516-9.593c1.901-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303\r\n\t\t\t\tc-11.982,0-15.904-0.501-20.016,3.675c-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938\r\n\t\t\t\tc-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0v-32.01c0,0,5.173,0,8.042,0\r\n\t\t\t\tc0.626-3.385,1.236-6.036,2.088-9.947L36.963,22.048L36.963,22.048z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M36.963,22.048c0.092-3.345-0.525-8.003,0.516-9.593c1.901-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303\r\n\t\t\t\tc-11.982,0-15.904-0.501-20.016,3.675c-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938\r\n\t\t\t\tc-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0v-32.01c0,0,5.173,0,8.042,0\r\n\t\t\t\tc0.626-3.385,1.236-6.036,2.088-9.947L36.963,22.048L36.963,22.048z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.facebook_1 = facebook_1;
\ No newline at end of file
diff --git a/dist/ikons/facebook_2.js b/dist/ikons/facebook_2.js
new file mode 100644
index 000000000..b02f028de
--- /dev/null
+++ b/dist/ikons/facebook_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.facebook_2 = void 0;
+var facebook_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "facebook_3_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "facebook"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "facebook"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M59.059-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932v54.354c0,2.725,2.207,4.728,4.929,4.728h54.117\r\n\t\t\t\tc2.721,0,4.928-2.002,4.928-4.728V4.926C63.986,2.202,61.781-0.006,59.059-0.006z M33.615,21.199\r\n\t\t\t\tc-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692v2.691h8.148\r\n\t\t\t\tl-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.337,0.994,8.208,1.803L33.615,21.199z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M59.059-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932v54.354c0,2.725,2.207,4.728,4.929,4.728h54.117\r\n\t\t\t\tc2.721,0,4.928-2.002,4.928-4.728V4.926C63.986,2.202,61.781-0.006,59.059-0.006z M33.615,21.199\r\n\t\t\t\tc-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692v2.691h8.148\r\n\t\t\t\tl-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.337,0.994,8.208,1.803L33.615,21.199z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.facebook_2 = facebook_2;
\ No newline at end of file
diff --git a/dist/ikons/fast_forward.js b/dist/ikons/fast_forward.js
new file mode 100644
index 000000000..8a0b28e9f
--- /dev/null
+++ b/dist/ikons/fast_forward.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fast_forward = void 0;
+var fast_forward = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FAST_FORWARD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FAST_FORWARD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FAST_FORWARD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M51,32c0-1.073-0.562-2.013-1.41-2.544l0,0l-0.021-0.014c-0.006-0.003-0.01-0.007-0.017-0.01L33.59,19.456l0,0\r\n\t\t\t\tC33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131l0,0C17.129,19.168,16.584,19,16,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413V42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.004,0.011-0.008,0.017-0.01l0.021-0.015l0,0\r\n\t\t\t\tC50.438,34.014,51,33.073,51,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M51,32c0-1.073-0.562-2.013-1.41-2.544l0,0l-0.021-0.014c-0.006-0.003-0.01-0.007-0.017-0.01L33.59,19.456l0,0\r\n\t\t\t\tC33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131l0,0C17.129,19.168,16.584,19,16,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413V42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.004,0.011-0.008,0.017-0.01l0.021-0.015l0,0\r\n\t\t\t\tC50.438,34.014,51,33.073,51,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.fast_forward = fast_forward;
\ No newline at end of file
diff --git a/dist/ikons/first_aid.js b/dist/ikons/first_aid.js
new file mode 100644
index 000000000..225507595
--- /dev/null
+++ b/dist/ikons/first_aid.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.first_aid = void 0;
+var first_aid = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FIRST_AID"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,18H47c0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H3\r\n\t\t\tc-1.657,0-3,1.343-3,3v37c0,1.657,1.343,3,3,3h5v0h3v0h42v0h3v0h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z M32,9\r\n\t\t\tc4.971,0,9,4.029,9,9H23C23,13.03,27.03,9,32,9z M43,42h-8v8c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-8h-8\r\n\t\t\tc-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h8v-8c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v8h8c1.657,0,3,1.343,3,3\r\n\t\t\tC46,40.657,44.657,42,43,42z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,18H47c0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H3\r\n\t\t\tc-1.657,0-3,1.343-3,3v37c0,1.657,1.343,3,3,3h5v0h3v0h42v0h3v0h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z M32,9\r\n\t\t\tc4.971,0,9,4.029,9,9H23C23,13.03,27.03,9,32,9z M43,42h-8v8c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-8h-8\r\n\t\t\tc-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h8v-8c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v8h8c1.657,0,3,1.343,3,3\r\n\t\t\tC46,40.657,44.657,42,43,42z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.first_aid = first_aid;
\ No newline at end of file
diff --git a/dist/ikons/folder.js b/dist/ikons/folder.js
new file mode 100644
index 000000000..a65850465
--- /dev/null
+++ b/dist/ikons/folder.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder = void 0;
+var folder = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3\r\n\t\t\t\tC64,14.343,62.657,13,61,13z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3\r\n\t\t\t\tC64,14.343,62.657,13,61,13z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.folder = folder;
\ No newline at end of file
diff --git a/dist/ikons/folder_add.js b/dist/ikons/folder_add.js
new file mode 100644
index 000000000..ef92b6a04
--- /dev/null
+++ b/dist/ikons/folder_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder_add = void 0;
+var folder_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__OK_2_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__OK_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__OK_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M60,49h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.145,53.372,42,52.705,42,52\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.938,0.6,4,1.557V19H0V51z M61,10H23.982L18,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M60,49h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.145,53.372,42,52.705,42,52\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.938,0.6,4,1.557V19H0V51z M61,10H23.982L18,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.folder_add = folder_add;
\ No newline at end of file
diff --git a/dist/ikons/folder_delete.js b/dist/ikons/folder_delete.js
new file mode 100644
index 000000000..b51a7bde8
--- /dev/null
+++ b/dist/ikons/folder_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder_delete = void 0;
+var folder_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757l-3.879-3.879C50.578,43.336,49.828,43,49,43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879C46.336,56.422,46,57.172,46,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879C59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879C63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41l0,0h0.557\r\n\t\t\t\tc0.07-0.078,0.127-0.168,0.2-0.243L46.516,52l-1.758-1.758C43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L55,43.516l1.757-1.758C57.843,40.672,59.343,40,61,40c1.098,0,2.113,0.316,3,0.832V19H0V51z\r\n\t\t\t\t M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757l-3.879-3.879C50.578,43.336,49.828,43,49,43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879C46.336,56.422,46,57.172,46,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879C59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879C63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41l0,0h0.557\r\n\t\t\t\tc0.07-0.078,0.127-0.168,0.2-0.243L46.516,52l-1.758-1.758C43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L55,43.516l1.757-1.758C57.843,40.672,59.343,40,61,40c1.098,0,2.113,0.316,3,0.832V19H0V51z\r\n\t\t\t\t M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.folder_delete = folder_delete;
\ No newline at end of file
diff --git a/dist/ikons/folder_ok.js b/dist/ikons/folder_ok.js
new file mode 100644
index 000000000..a4681585f
--- /dev/null
+++ b/dist/ikons/folder_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder_ok = void 0;
+var folder_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__OK_3_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879C50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60s1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49\r\n\t\t\t\tC64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3C1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h40.367l0,0C43.145,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538\r\n\t\t\t\tl3.781-3.781C57.843,43.672,59.343,43,61,43c1.1,0,2.113,0.316,3,0.832V20H0V52z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879C50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60s1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49\r\n\t\t\t\tC64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3C1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h40.367l0,0C43.145,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538\r\n\t\t\t\tl3.781-3.781C57.843,43.672,59.343,43,61,43c1.1,0,2.113,0.316,3,0.832V20H0V52z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.folder_ok = folder_ok;
\ No newline at end of file
diff --git a/dist/ikons/folder_remove.js b/dist/ikons/folder_remove.js
new file mode 100644
index 000000000..547b82540
--- /dev/null
+++ b/dist/ikons/folder_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder_remove = void 0;
+var folder_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLDER__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,54c0,1.657,1.343,3,3,3h39.367C42.145,56.372,42,55.705,42,55c0-3.314,2.686-6,6-6h12c1.544,0,2.938,0.6,4,1.557V22H0\r\n\t\t\t\tV54z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52z M61,13H23.982L18,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,54c0,1.657,1.343,3,3,3h39.367C42.145,56.372,42,55.705,42,55c0-3.314,2.686-6,6-6h12c1.544,0,2.938,0.6,4,1.557V22H0\r\n\t\t\t\tV54z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52z M61,13H23.982L18,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.folder_remove = folder_remove;
\ No newline at end of file
diff --git a/dist/ikons/followers.js b/dist/ikons/followers.js
new file mode 100644
index 000000000..971f2dd1e
--- /dev/null
+++ b/dist/ikons/followers.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.followers = void 0;
+var followers = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLLOWERS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLLOWERS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLLOWERS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.018c0.379-0.375,0.806-0.702,1.272-0.969\r\n\t\t\t\tc-3.979-1.701-5.021-2.293-5.021-2.293l-0.055-5.894c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.925c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.516\r\n\t\t\t\tl-5.758-5.758C34.672,56.157,34,54.657,34,53z M52.898,47h5.828c-0.789-0.725-1.662-1.391-2.713-1.913\r\n\t\t\t\tc-1.854-0.923-2.765-1.246-3.482-1.415C52.833,44.387,53,45.174,53,46C53,46.343,52.954,46.673,52.898,47z M47.243,56H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H47.243l1.879-1.879C49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53c0,0.829,0.336,1.578,0.879,2.121l7,7\r\n\t\t\t\tC45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L47.243,56z M64.001,59.993\r\n\t\t\t\tc0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.104C52.953,59.326,53,59.657,53,60c0,1.1-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.018c0.379-0.375,0.806-0.702,1.272-0.969\r\n\t\t\t\tc-3.979-1.701-5.021-2.293-5.021-2.293l-0.055-5.894c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.925c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.516\r\n\t\t\t\tl-5.758-5.758C34.672,56.157,34,54.657,34,53z M52.898,47h5.828c-0.789-0.725-1.662-1.391-2.713-1.913\r\n\t\t\t\tc-1.854-0.923-2.765-1.246-3.482-1.415C52.833,44.387,53,45.174,53,46C53,46.343,52.954,46.673,52.898,47z M47.243,56H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H47.243l1.879-1.879C49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53c0,0.829,0.336,1.578,0.879,2.121l7,7\r\n\t\t\t\tC45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L47.243,56z M64.001,59.993\r\n\t\t\t\tc0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.104C52.953,59.326,53,59.657,53,60c0,1.1-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.followers = followers;
\ No newline at end of file
diff --git a/dist/ikons/following.js b/dist/ikons/following.js
new file mode 100644
index 000000000..07eb46d52
--- /dev/null
+++ b/dist/ikons/following.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.following = void 0;
+var following = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLLOWING_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLLOWING"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FOLLOWING"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.484,63H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z\r\n\t\t\t\t M48.102,59H40c-3.314,0-6-2.686-6-6s2.686-6,6-6h8.102C48.046,46.673,48,46.343,48,46c0-1.186,0.355-2.282,0.947-3.212\r\n\t\t\t\tc-0.609-0.213-1.332-0.486-2.247-0.865c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.353,3.046,7.353l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.994,0,59.994h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C48,59.657,48.046,59.327,48.102,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3s1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.484,63H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z\r\n\t\t\t\t M48.102,59H40c-3.314,0-6-2.686-6-6s2.686-6,6-6h8.102C48.046,46.673,48,46.343,48,46c0-1.186,0.355-2.282,0.947-3.212\r\n\t\t\t\tc-0.609-0.213-1.332-0.486-2.247-0.865c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.353,3.046,7.353l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.994,0,59.994h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C48,59.657,48.046,59.327,48.102,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3s1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.following = following;
\ No newline at end of file
diff --git a/dist/ikons/font_size_down.js b/dist/ikons/font_size_down.js
new file mode 100644
index 000000000..9b2f3eeeb
--- /dev/null
+++ b/dist/ikons/font_size_down.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.font_size_down = void 0;
+var font_size_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FONT_SIZE_DOWN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M39.798,52.919l-17-44l-0.007,0.002C22.358,7.799,21.275,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.006-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.694,45h20.613l3.895,10.081l0.006-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29H43\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M39.798,52.919l-17-44l-0.007,0.002C22.358,7.799,21.275,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.006-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.694,45h20.613l3.895,10.081l0.006-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29H43\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.font_size_down = font_size_down;
\ No newline at end of file
diff --git a/dist/ikons/font_size_up.js b/dist/ikons/font_size_up.js
new file mode 100644
index 000000000..f7a8b4909
--- /dev/null
+++ b/dist/ikons/font_size_up.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.font_size_up = void 0;
+var font_size_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FONT_SIZE_UP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M39.798,52.919l-17-44l-0.006,0.002C22.358,7.799,21.276,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.007-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.693,45h20.613l3.895,10.081l0.007-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29h-6v-6\r\n\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6h-6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6v6c0,1.657,1.343,3,3,3s3-1.343,3-3v-6h6\r\n\t\t\tc1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M39.798,52.919l-17-44l-0.006,0.002C22.358,7.799,21.276,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.007-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.693,45h20.613l3.895,10.081l0.007-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29h-6v-6\r\n\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6h-6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6v6c0,1.657,1.343,3,3,3s3-1.343,3-3v-6h6\r\n\t\t\tc1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.font_size_up = font_size_up;
\ No newline at end of file
diff --git a/dist/ikons/forrst.js b/dist/ikons/forrst.js
new file mode 100644
index 000000000..db644dcbb
--- /dev/null
+++ b/dist/ikons/forrst.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.forrst = void 0;
+var forrst = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "forrst_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "forrst"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "forrst"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M59.873,61.947L33.865,0.88c-0.229-0.538-0.747-0.883-1.321-0.883c-0.574,0-1.093,0.345-1.32,0.88L5.127,61.943\r\n\t\t\t\tc-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667L20.714,48c-1.085,0-1.964-0.895-1.964-2\r\n\t\t\t\ts0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929c1.085,0,1.964,0.896,1.964,2v3l5.893-3\r\n\t\t\t\tc1.086,0,1.965,0.895,1.965,2c0,1.104-0.879,2-1.965,2l-5.893,3v7l9.821-6c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2\r\n\t\t\t\tl-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663C60.021,62.928,60.066,62.4,59.873,61.947z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M59.873,61.947L33.865,0.88c-0.229-0.538-0.747-0.883-1.321-0.883c-0.574,0-1.093,0.345-1.32,0.88L5.127,61.943\r\n\t\t\t\tc-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667L20.714,48c-1.085,0-1.964-0.895-1.964-2\r\n\t\t\t\ts0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929c1.085,0,1.964,0.896,1.964,2v3l5.893-3\r\n\t\t\t\tc1.086,0,1.965,0.895,1.965,2c0,1.104-0.879,2-1.965,2l-5.893,3v7l9.821-6c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2\r\n\t\t\t\tl-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663C60.021,62.928,60.066,62.4,59.873,61.947z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.forrst = forrst;
\ No newline at end of file
diff --git a/dist/ikons/foursquare.js b/dist/ikons/foursquare.js
new file mode 100644
index 000000000..533b5babe
--- /dev/null
+++ b/dist/ikons/foursquare.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.foursquare = void 0;
+var foursquare = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "foursquare_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "foursquare"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "foursquare"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41.523,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245c-2.46-1.881-5.468-3.047-8.815-3.047\r\n\t\t\t\tc-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311c0.623,0,1.222-0.104,1.825-0.181l13.387,12.458\r\n\t\t\t\tl34.24-30.692V5.018L41.523,27.182z M14.725,43.102c-0.057,0-0.109,0.017-0.166,0.017c-5.998,0-10.877-4.806-10.877-10.71\r\n\t\t\t\tc0-5.907,4.879-10.712,10.877-10.712c2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722\r\n\t\t\t\tC25.434,38.257,20.642,43.014,14.725,43.102z M59.8,27.491L48.426,37.908L30.158,54.157l-9.723-8.753\r\n\t\t\t\tc2.691-1.211,4.978-3.209,6.487-5.69l3.794,3.925l13.511-13.911L59.8,13.77V27.491z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41.523,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245c-2.46-1.881-5.468-3.047-8.815-3.047\r\n\t\t\t\tc-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311c0.623,0,1.222-0.104,1.825-0.181l13.387,12.458\r\n\t\t\t\tl34.24-30.692V5.018L41.523,27.182z M14.725,43.102c-0.057,0-0.109,0.017-0.166,0.017c-5.998,0-10.877-4.806-10.877-10.71\r\n\t\t\t\tc0-5.907,4.879-10.712,10.877-10.712c2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722\r\n\t\t\t\tC25.434,38.257,20.642,43.014,14.725,43.102z M59.8,27.491L48.426,37.908L30.158,54.157l-9.723-8.753\r\n\t\t\t\tc2.691-1.211,4.978-3.209,6.487-5.69l3.794,3.925l13.511-13.911L59.8,13.77V27.491z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.foursquare = foursquare;
\ No newline at end of file
diff --git a/dist/ikons/frame.js b/dist/ikons/frame.js
new file mode 100644
index 000000000..08312133c
--- /dev/null
+++ b/dist/ikons/frame.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.frame = void 0;
+var frame = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FRAME_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FRAME"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "FRAME"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2\r\n\t\t\t\th-3.367C52.402,2.838,51.305,2,50,2s-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367\r\n\t\t\t\tC34.402,2.838,33.305,2,32,2c-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23\r\n\t\t\t\ts0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.837,38.598,2,39.695,2,41\r\n\t\t\t\ts0.837,2.402,2,2.816v3.367C2.837,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.837,56.598,2,57.695,2,59\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.815v-3.367c1.162-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.816V25.82c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z\r\n\t\t\t\t M54,54H10V10h44V54z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2\r\n\t\t\t\th-3.367C52.402,2.838,51.305,2,50,2s-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367\r\n\t\t\t\tC34.402,2.838,33.305,2,32,2c-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23\r\n\t\t\t\ts0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.837,38.598,2,39.695,2,41\r\n\t\t\t\ts0.837,2.402,2,2.816v3.367C2.837,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.837,56.598,2,57.695,2,59\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.815v-3.367c1.162-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.816V25.82c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z\r\n\t\t\t\t M54,54H10V10h44V54z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.frame = frame;
\ No newline at end of file
diff --git a/dist/ikons/globe.js b/dist/ikons/globe.js
new file mode 100644
index 000000000..ff4afcd84
--- /dev/null
+++ b/dist/ikons/globe.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.globe = void 0;
+var globe = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GLOBE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GLOBE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GLOBE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089c0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013\r\n\t\t\t\tc-0.023-0.013-0.047-0.026-0.07-0.038c-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235\r\n\t\t\t\tc-0.03-0.002-0.059-0.004-0.089-0.006c-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114\r\n\t\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.006c-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z\r\n\t\t\t\t M43.382,11.985c0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.164,0.009,0.279,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.31,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.065-0.023-0.131-0.047-0.196-0.07c-0.172-0.022-0.357,0.059-0.478,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.02,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.275,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.287,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.103,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.094-0.021,0.188-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.049-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.113-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.063-0.045h-0.172c-0.066-0.021-0.113-0.079-0.211-0.089C32.725,7,32.688,7.043,32.652,7.085\r\n\t\t\t\tc-0.041,0.109,0.107,0.294,0.127,0.4c-0.02,0.017-0.038,0.034-0.057,0.051c-0.109-0.025-0.307-0.287-0.351-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.102,0.233-0.28,0.267v0.114c0.275,0.013,0.552,0.025,0.826,0.038c0.06-0.04,0.119-0.081,0.179-0.121\r\n\t\t\t\tc0.077-0.033,0.161-0.016,0.254-0.045c0.078-0.04,0.156-0.08,0.234-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.022-0.038-0.047-0.076-0.069-0.114c-0.062-0.017-0.123-0.034-0.185-0.051\r\n\t\t\t\tc-0.119-0.023-0.25,0.029-0.375,0.026c-0.024-0.051-0.051-0.102-0.075-0.153c-0.03-0.011-0.06-0.021-0.089-0.032\r\n\t\t\t\tc-0.133,0.016-0.224,0.14-0.286,0.229h-0.108c-0.027-0.1-0.003-0.248,0.025-0.343c-0.137,0.061-0.143,0.232-0.268,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.031,0.032c-0.168-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.082,0.106-0.162,0.212-0.242,0.318c-0.086,0.062-0.15,0.069-0.196,0.172c-0.004,0.004-0.009,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061C21.277,9.6,21.247,9.54,21.129,9.564C21.066,9.601,20.983,9.637,20.993,9.697z M21.388,8.988\r\n\t\t\t\tc-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24L20.988,9.24\r\n\t\t\t\tc0.003-0.004-0.005-0.009-0.001-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.052-0.021-0.103-0.043-0.153-0.064c-0.119,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.146-0.017-0.19-0.024\r\n\t\t\t\tc-0.086-0.018-0.14,0.054-0.197,0.069c-0.06-0.006-0.119-0.013-0.178-0.019h-0.014c-0.072,0.047-0.145,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.06-0.242-0.038c-0.091,0.04-0.183,0.08-0.272,0.121h-0.179c-0.091-0.1-0.215-0.211-0.272-0.337\r\n\t\t\t\tc-0.055-0.015-0.129-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.014c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.168-0.232-0.211-0.33-0.305c-0.018-0.016-0.033-0.139-0.089-0.19c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.088-0.098-0.178-0.194-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.055-0.074-0.139-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.107c-0.005,0.002-0.009,0.004-0.014,0.008c-0.182-0.153-0.225-0.623-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.105-0.144-0.037-0.516-0.089-0.724c-0.032-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.152-0.152c-0.14-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.166-0.432\r\n\t\t\t\tc-0.094-0.171-0.256-0.287-0.299-0.521c0.033-0.045,0.039-0.066,0.096-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.075,0.013c0.08-0.159,0.058-0.398,0.185-0.508c-0.074-0.191-0.148-0.381-0.223-0.572\r\n\t\t\t\tc-0.121,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.157,0.011-0.28,0.032c-0.041-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.039,0.032-0.08,0.063-0.12,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.014-0.017-0.025-0.034-0.039-0.051c-0.147-0.032-0.297-0.064-0.444-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.069-0.038-0.032-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.168,0.358-0.146,0.527c-0.038,0.02-0.089,0.07-0.146,0.064\r\n\t\t\t\tc-0.154-0.018-0.267-0.184-0.4-0.235c-0.133-0.05-0.434-0.054-0.541-0.114c-0.118-0.068-0.136-0.311-0.24-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.067-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.075,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.021,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.178-0.032,0.262\r\n\t\t\t\tc0.08,0.135,0.04,0.035,0.14,0.102c0.004,0.016,0.008,0.03,0.013,0.044c0.042,0.024,0.085,0.052,0.127,0.076\r\n\t\t\t\tc0.063-0.013,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.018,0.08,0.021,0.102,0.044\r\n\t\t\t\tc0.015,0.021,0.01,0.028,0.006,0.058c0.034,0.022,0.057,0.033,0.121,0.031c0.011,0.033,0.011,0.061,0,0.096\r\n\t\t\t\tc0.065,0.068,0.166,0.135,0.267,0.164c0.006,0.032,0.013,0.063,0.019,0.096c0.033,0.061,0.118,0.08,0.14,0.158v0.096\r\n\t\t\t\tc0.014,0.018,0.035,0.021,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.024c-0.023,0.019-0.047,0.038-0.07,0.058h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.033,0.013,0.047,0.006,0.094c0.142,0.043,0.215,0.149,0.324,0.223\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.361c0.062,0.033,0.311,0.192,0.388,0.173\r\n\t\t\t\tc0.102-0.054,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.011,0.145,0.062,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.279c0.087-0.008,0.174-0.018,0.261-0.025c0.052-0.039,0.054-0.107,0.127-0.133\r\n\t\t\t\tc0.214-0.02,0.428-0.038,0.642-0.057c0.032-0.013,0.039-0.043,0.083-0.058c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.024,0.03,0.051,0.044,0.075c0.023,0.002,0.047,0.005,0.07,0.007c0.006,0.008,0.013,0.017,0.019,0.024\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.096c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.007\r\n\t\t\t\tc0.002-0.026-0.002-0.036-0.013-0.062c0.025-0.017,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.025,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.016-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.063,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.262c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.166c0.049,0.041,0.097,0.084,0.146,0.127v0.006c-0.038-0.004-0.076-0.01-0.114-0.014\r\n\t\t\t\tc-0.031,0.139-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.016,0.114,0.07\r\n\t\t\t\tc-0.021,0.016-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.014c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.016-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.205,0.133,0.248c0.029,0.068-0.018,0.162,0.038,0.262\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.011-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.031-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.223-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.215,0.216,0.432,0.324,0.647c0.075,0.146,0.371,0.403,0.203,0.571c0.03,0.141,0.059,0.281,0.089,0.42\r\n\t\t\t\tc0.023,0.055,0.047,0.109,0.07,0.165c0.02,0.081-0.031,0.143-0.025,0.202c0.008,0.08,0.071,0.147,0.089,0.211\r\n\t\t\t\tc0.014,0.047-0.021,0.072-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.116,0.131,0.233,0.264,0.349,0.395\r\n\t\t\t\tc0.12,0.189,0.16,0.434,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.078,0-0.096,0.025\r\n\t\t\t\tc-0.025,0.031,0.123,0.229,0.159,0.285c-0.017,0.049-0.034,0.099-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.031\r\n\t\t\t\tc0.006,0.003,0.013,0.005,0.019,0.007c0.006-0.015,0.013-0.03,0.019-0.045c0.018-0.009,0.022-0.011,0.052-0.013\r\n\t\t\t\tc0.013,0.022,0.024,0.047,0.038,0.069c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.028,0.021,0.056,0.038,0.095\r\n\t\t\t\tc0.024,0.043,0.115,0.075,0.165,0.09c0.061-0.047,0.096-0.123,0.178-0.146c0.115-0.035,0.252,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.09c0.15-0.07,0.214,0,0.331,0c0.034-0.019,0.067-0.037,0.103-0.057\r\n\t\t\t\tc0.121-0.035,0.233,0.073,0.317,0.102c0.04-0.03,0.07-0.055,0.095-0.102c0.058,0.014,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.018-0.019,0.021-0.053,0.033-0.075c0.049-0.049,0.321-0.018,0.399-0.07c0.083-0.072,0.165-0.145,0.248-0.217\r\n\t\t\t\tc0.416-0.326,0.721-0.688,1.017-1.138c0.074-0.112,0.264-0.19,0.305-0.299c0.021-0.052-0.027-0.122-0.019-0.146\r\n\t\t\t\tc0.017-0.045,0.065-0.033,0.089-0.064c0.071-0.091,0.109-0.35,0.09-0.496c-0.039-0.016-0.078-0.04-0.096-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.02-0.019c0.078-0.091,0.133-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.008-0.062-0.051-0.036-0.063-0.07c0.002-0.006,0.005-0.013,0.007-0.019c0.012-0.032,0.024-0.064,0.037-0.096\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.02-0.388c-0.028,0.011-0.035,0.019-0.076,0.019c-0.039-0.123-0.087-0.273-0.044-0.375\r\n\t\t\t\tc-0.007-0.074-0.062-0.111-0.114-0.14v-0.202c0.119-0.088,0.237-0.175,0.355-0.262c0.146-0.122,0.233-0.305,0.4-0.406\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.643-0.293c0.137-0.094,0.224-0.268,0.33-0.394c0-0.028-0.008-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.012-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.162,0.013-0.337-0.069-0.432c0.003-0.034,0.034-0.062,0.044-0.107c0.025-0.113-0.041-0.295-0.057-0.395\r\n\t\t\t\tc0.029-0.055,0.059-0.11,0.088-0.165c-0.064-0.14-0.182-0.157-0.266-0.267c-0.084-0.108-0.127-0.394-0.07-0.554\r\n\t\t\t\tc-0.019-0.028-0.043-0.032-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.127-0.196-0.217\r\n\t\t\t\tc-0.037-0.095,0.061-0.406,0.102-0.451c0.023-0.025,0.068-0.021,0.089-0.051c0.047-0.067,0.006-0.104,0.024-0.164\r\n\t\t\t\tc0.043-0.138,0.173-0.144,0.185-0.369c0.097-0.053,0.187-0.051,0.19-0.203c0.086,0.017,0.125-0.021,0.191-0.051\r\n\t\t\t\tc0.024-0.035,0.026-0.054,0.006-0.095c0.209-0.235,0.416-0.47,0.623-0.704c0.229-0.186,0.516-0.326,0.744-0.509\r\n\t\t\t\tc0.086-0.104,0.17-0.208,0.254-0.312c0.168-0.215,0.42-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.073-0.118,0.147-0.236,0.222-0.355c-0.002-0.027-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.109-0.194,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.015-0.04,0.08-0.069,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.154c-0.031-0.184-0.127-0.277-0.279-0.375c0.018,0.078-0.004,0.113-0.025,0.191c-0.033,0.026-0.04,0.043-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.009,0.029-0.013,0.044c0.015,0.017,0.029,0.034,0.043,0.051c-0.028,0.063-0.008,0.077,0.007,0.14v0.318\r\n\t\t\t\tc0.022,0.102,0.073,0.268,0.146,0.324c0.209,0.044,0.477-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.227,51.768,35.186,51.688,35.154z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z\r\n\t\t\t\t M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.316,0.022-0.352-0.084\r\n\t\t\t\tC50.471,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.037,0.017,0.076,0.034,0.113,0.051\r\n\t\t\t\tc0.07-0.025,0.141-0.051,0.211-0.076c-0.014-0.036-0.025-0.072-0.039-0.108c0.033-0.077,0.143-0.097,0.203-0.146\r\n\t\t\t\tc0.084-0.066,0.228-0.183,0.268-0.286c0.015-0.059,0.029-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.063-0.146\r\n\t\t\t\tc-0.099-0.13-0.201-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.024-0.222\r\n\t\t\t\tc0.032-0.042,0.063-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.1,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.103-0.002,0.239,0.039,0.312,0.025\r\n\t\t\t\tc0.033-0.012,0.068-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.231,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.057,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.067,0.042-0.103,0.064\r\n\t\t\t\tc-0.043,0.061-0.037,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.084,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.309,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.062-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.014-0.03,0.025-0.044,0.039c-0.012-0.053-0.021-0.069-0.07-0.084\r\n\t\t\t\tc-0.033-0.006-0.066,0.023-0.095,0.039c-0.203,0.106-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.016\r\n\t\t\t\tc-0.076-0.303-0.168-0.599-0.232-0.904c0.011,0,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.029,0.009-0.056,0.013-0.084h0.006c0.023,0.049,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.014,0.019,0.02\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.059,0.138-0.1,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.09c0.198-0.062,0.318-0.017,0.375,0.141c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.05,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.01,0.006,0.014c-0.061-0.009-0.097-0.021-0.121,0.031\r\n\t\t\t\tC7.564,37.5,7.647,37.605,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.436c0.051-0.051,0.122-0.09,0.155-0.152\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.021,0.108,0.044,0.172,0.02h0.006c0.013,0.191-0.204,0.291-0.248,0.482\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.35c0.051-0.121,0.102-0.241,0.153-0.361c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.078-0.036-0.114-0.057-0.172c0.045-0.055,0.132-0.205,0.019-0.255v-0.038c0.146,0.014,0.159-0.072,0.235-0.14\r\n\t\t\t\tc0.08-0.069,0.491-0.363,0.585-0.381c0.051-0.011,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.024\r\n\t\t\t\tc-0.005-0.183,0.137-0.241,0.292-0.254c-0.009-0.052-0.017-0.103-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.069,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.17,0.065-0.289,0.184-0.332c0-0.047-0.035-0.138-0.019-0.222c0.021-0.106,0.097-0.243,0.076-0.368\r\n\t\t\t\tc-0.017-0.166-0.034-0.332-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.465c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.103h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.063c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.757\r\n\t\t\t\tc-0.161-0.049-0.338,0.009-0.458-0.069c-0.256-0.166-0.436-0.435-0.731-0.565c-0.171-0.076-0.287,0.017-0.451-0.014\r\n\t\t\t\tc-0.1-0.016-0.199-0.029-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.241c0.013-0.078-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.033-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.217c-0.065-0.022-0.106-0.067-0.159-0.102c-0.052,0.007-0.15,0.016-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.19c-0.069,0.102-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.069,0.012-0.1,0.032-0.146c-0.111,0.022-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.293\r\n\t\t\t\tc0.065-0.104,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.577c-0.021-0.068-0.016-0.144-0.076-0.173c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.035-0.22-0.072-0.331-0.107c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.026-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.016-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.119-0.214-0.313-0.388-0.291c-0.011,0.021-0.021,0.041-0.032,0.062v0.013c-0.013-0.091-0.026-0.182-0.038-0.272\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.02c-0.066-0.004-0.131-0.009-0.197-0.014v-0.006\r\n\t\t\t\tc0.187-0.059,0.138-0.167,0.273-0.223c0.002-0.004,0.004-0.008,0.006-0.012c-0.051-0.035-0.122-0.046-0.178-0.084\r\n\t\t\t\tc-0.013-0.019-0.026-0.037-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.02-0.038,0.035-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191v-0.039c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.014,0.032-0.02c0.004-0.009,0.008-0.018,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.127-0.21,0.146c-0.261,0.059-0.335-0.148-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.058-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.017-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.031c-0.016,0.063-0.425,0.178-0.515,0.211\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.012c-0.008,0.037-0.018,0.037-0.038,0.058c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.045-0.094,0.072-0.152,0.084c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.101,0.07-0.187,0.121-0.254\r\n\t\t\t\tc-0.012-0.103-0.056-0.167-0.089-0.254c0.041-0.062,0.144-0.086,0.241-0.089c0.011-0.014,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.185c-0.04,0.012-0.081,0.024-0.121,0.037\r\n\t\t\t\tc0.019-0.035,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.022-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.037\r\n\t\t\t\tc-0.047,0.031-0.093,0.063-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.127-0.331,0.094\r\n\t\t\t\tc-0.05-0.062-0.09-0.027-0.135-0.021c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.031v0.007c-0.047,0.013-0.093,0.024-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.082c0.114,0.035,0.208,0.115,0.337,0.146c0.067,0.018,0.202-0.02,0.261,0.02\r\n\t\t\t\tc0.043,0.024,0.066,0.123,0.07,0.184c0.099,0.061,0.295,0.061,0.388,0.127c-0.006,0.064-0.053,0.105-0.102,0.127\r\n\t\t\t\tC7.811,33.859,7.792,33.88,7.773,33.9v0.007c0.141,0.006,0.266-0.058,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.031\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.069c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.02c0.013-0.027,0.025-0.055,0.038-0.082c-0.079-0.081-0.36-0.09-0.483-0.141\r\n\t\t\t\tc-0.04-0.043-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.105-0.191-0.158H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.018-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21h0.06c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tc-0.004-0.026-0.004-0.02-0.017-0.036c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.021,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006H8.37c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299H12.48c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0s0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tC18.58,15.989,18.564,16,18.55,15.989c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.021-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005C21.061,9.85,21.006,9.85,20.952,9.85c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.818,0,9.316,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.047-0.001-0.131-0.022-0.152-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.014,0.013-0.025,0.025-0.039,0.038\r\n\t\t\t\tc0.039,0.028,0.076,0.062,0.103,0.102c-0.099,0.069-0.239,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.014,0.013\r\n\t\t\t\tc0.033,0.03,0.064,0.059,0.096,0.089c-0.004,0.027-0.008,0.055-0.014,0.083c-0.383-0.001-0.321,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.209,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.227,0.096,0.344,0.121c0.108-0.061,0.16-0.161,0.248-0.241\r\n\t\t\t\tc-0.003-0.025-0.005-0.051-0.007-0.076c-0.034-0.021-0.067-0.042-0.103-0.064c-0.004-0.006-0.008-0.013-0.012-0.019\r\n\t\t\t\tc0.022-0.023,0.047-0.047,0.069-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.043-0.034-0.064-0.051c-0.014-0.017-0.002-0.045,0.006-0.076c0.016-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.271,0.047,0.356,0.006c0.035-0.028,0.072-0.055,0.107-0.083c0.021-0.023,0.043-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.056-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.1-0.106c0.829,0.518,1.631,1.072,2.395,1.677\r\n\t\t\t\tc-0.006,0.025-0.012,0.05-0.016,0.075c-0.05,0.083-0.098,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.465,0.489\r\n\t\t\t\tc0.054,0.004,0.107,0.008,0.16,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.029,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.136,0.168,0.286,0.146c-0.018,0.094-0.113,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.636-0.089\r\n\t\t\t\tc-0.08,0.019-0.115,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.119,0.179-0.291,0.203c-0.021,0.033-0.037,0.114-0.052,0.146c-0.095,0.048-0.19-0.018-0.216-0.089\r\n\t\t\t\tc0.029-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.45,0.032c-0.043,0.034-0.086,0.068-0.128,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.104-0.03-0.279-0.002-0.361,0.032c-0.092,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.045-0.057c-0.182,0.003-0.223,0.07-0.375,0.019c0-0.05,0.008-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.168,0.2-0.42,0.248\r\n\t\t\t\tc-0.006-0.002-0.012-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.399,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.342,0.069-0.428-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.098,0.009-0.195,0.017-0.293,0.025c-0.082-0.018-0.133-0.053-0.215-0.032\r\n\t\t\t\tc-0.018,0.148,0.158,0.164,0.12,0.337c-0.051,0.081-0.102,0.161-0.151,0.241c-0.004,0.004-0.01,0.009-0.014,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.028,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.02,0.108v0.013\r\n\t\t\t\tc-0.165-0.008-0.334-0.211-0.565-0.184c-0.124,0.261-0.491,0.237-0.661,0.445c0.006,0.173,0.26,0.294,0.141,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.103-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.104,0-0.1,0.078-0.152,0.127c0.002,0.063,0.125,0.201,0.19,0.229c0.058,0.024,0.138-0.001,0.19,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.26,0.21c-0.072-0.016-0.158,0.001-0.211-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.075-0.038-0.206-0.014-0.291-0.057c-0.043-0.022-0.209-0.444-0.217-0.527c0.123-0.036,0.164-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.137-0.088-0.245-0.222-0.362-0.33c0.222-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.141,0.021,0.211,0.032c0.5,0.15,1.305,0.524,1.83,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.361-0.305c-0.068-0.021-0.137-0.042-0.203-0.063c-0.108-0.038-0.217-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.06,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.014-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.047,0.019-0.104,0.021-0.141,0.044\r\n\t\t\t\tc-0.113-0.074-0.219-0.036-0.369-0.025c-0.065-0.103-0.205-0.127-0.279-0.222c0.236,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.005-0.047-0.007-0.07c-0.027-0.017-0.055-0.034-0.082-0.051c-0.065-0.023-0.141,0.003-0.191-0.019\r\n\t\t\t\tc-0.105-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.039-0.008-0.08-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.059-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.116,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.012-0.28c-0.14,0.095-0.322,0.263-0.389,0.426c-0.018-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.28-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.145,0.185-0.172,0.273c-0.188-0.096-0.28-0.273-0.381,0.083c-0.043-0.036-0.086-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.014-0.004-0.02-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.152,0.229\r\n\t\t\t\tc0.014-0.069,0.026-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.014-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.147,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.024-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.037,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.105,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.031,0.14\r\n\t\t\t\tc-0.019,0.028-0.037,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.063-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.01,0.027,0.014,0.055,0.043,0.076v0.038c-0.054,0.016-0.076,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.253-0.025\r\n\t\t\t\tc0.021,0.015,0.043,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.014,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.029-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.177,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.02-0.002,0.039-0.004,0.058-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.014-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.279,0.045c-0.111-0.019-0.164-0.137-0.3-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.036-0.04,0.304,0.049,0.368,0.083c0.082,0.043,0.287-0.119,0.312-0.153h0.058c-0.002-0.095-0.049-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.053-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.02-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.063-0.083\r\n\t\t\t\tc0.017-0.027-0.004-0.073-0.012-0.115h0.127c0.079-0.112,0.116-0.111,0.221-0.191c0.051-0.038,0.051-0.096,0.115-0.127\r\n\t\t\t\tc0.022,0.015,0.047,0.03,0.069,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.185-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.127-0.081,0.151-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.092-0.069,0.095-0.193,0.211-0.248c0.051,0.034,0.102,0.068,0.152,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.262,0.115c0.011,0.019,0.021,0.038,0.031,0.057c0.015,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.052,0.057c0.013,0.018,0.008,0.038,0.006,0.076c-0.041-0.002-0.082-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.037-0.057v-0.013c-0.091,0.094-0.017,0.207-0.16,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.158-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.09,0.064c0,0.094-0.021,0.143-0.032,0.216c0.034,0.053,0.067,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.024,0.121c-0.035,0.188-0.012,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.054-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.021,0.042,0.039,0.071,0.084,0.089\r\n\t\t\t\tc0.066,0.051,0.192-0.016,0.234-0.038v0.026c0.064-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.056,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.018-0.083,0.1-0.04,0.152-0.083c0.027-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.107,0.038\r\n\t\t\t\tc0.026-0.027,0.035-0.043,0.084-0.051c0.021,0.013,0.041,0.025,0.063,0.038c0.06-0.057,0.198-0.098,0.3-0.108\r\n\t\t\t\tc0.008-0.015,0.016-0.03,0.024-0.045c0.028-0.003-0.011,0.079-0.019,0.114c0.147,0.215,0.344-0.041,0.488,0.229\r\n\t\t\t\tc-0.015,0.011-0.029,0.021-0.045,0.032c-0.094-0.003-0.141-0.044-0.222-0.07c-0.076,0.006-0.101,0.066-0.14,0.108\r\n\t\t\t\tc-0.054-0.012-0.054-0.037-0.103-0.025c-0.017,0.027-0.015,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.024,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.063,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.057,0.067-0.107,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.033,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.012,0.045c-0.045-0.007-0.062,0.006-0.103-0.006c-0.085,0.046-0.146,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.014,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.045,0.165c0.021,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.024,0.017,0.037,0.025c-0.021,0.16-0.09,0.268-0.037,0.451c-0.041,0.106-0.223,0.17-0.324,0.076\r\n\t\t\t\tc-0.016-0.04-0.03-0.081-0.044-0.121c-0.048-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.268,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.033,0.025-0.064,0.051-0.096,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.01,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.012,0.035,0.018,0.047,0.014,0.089c-0.082,0.046-0.25,0.013-0.362,0.007c-0.017,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.01-0.053-0.025-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025V22.17\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025H32.2c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.022,0.012,0.038-0.004,0.069-0.019c0.034,0.01,0.182,0.419,0.172,0.451v0.013c-0.022-0.002-0.047-0.004-0.069-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.014,0.009,0.025,0.017,0.039,0.025h0.082\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.062-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.062-0.034-0.123-0.068-0.185-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.007,0.095,0.142,0.064,0.202,0.108c0.031,0.023,0.007,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.437-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.096-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.328,0.011-0.414-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.184,0.165,0.266,0.267c0.025,0.026,0.06-0.025,0.109-0.013\r\n\t\t\t\tc0.006,0.001,0.152,0.061,0.164,0.07c0.049,0.035,0.09,0.097,0.141,0.133c0.133,0.095,0.271,0.155,0.406,0.248\r\n\t\t\t\tc0.03,0.036,0.06,0.072,0.09,0.108c0.041,0.021,0.084,0.042,0.127,0.064c0.002,0.051,0.002,0.06-0.039,0.07\r\n\t\t\t\tc-0.006,0.043,0.017,0.226,0.014,0.235c-0.018,0.032-0.034,0.064-0.051,0.095c0.021,0.032,0.037,0.045,0.037,0.102\r\n\t\t\t\tc-0.01-0.002-0.021-0.004-0.031-0.006c0.027,0.077,0.145,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.024,0.025v0.013c-0.026,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.037,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.228-0.061,0.349-0.025c0.078,0.022,0.119,0.081,0.224,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.041,0.076-0.063,0.114\r\n\t\t\t\tc0.038,0.047,0.075,0.093,0.114,0.14c0.014,0.044-0.017,0.099-0.014,0.146c0.02,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.02-0.015,0.039-0.03,0.058-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.056-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.033,0.011,0.068,0.021,0.102,0.032h0.014c-0.006,0.013-0.014,0.025-0.02,0.038c0.018,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.02-0.035,0.029-0.044,0.083-0.045c-0.022-0.029-0.028-0.02-0.024-0.064c-0.021,0.004-0.043,0.009-0.064,0.013\r\n\t\t\t\tc-0.021-0.048-0.025-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.106,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.014-0.011,0.025-0.021,0.039-0.032c-0.014-0.04-0.025-0.081-0.039-0.121\r\n\t\t\t\tc0.008-0.002,0.018-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.103-0.044\r\n\t\t\t\tc-0.014-0.03-0.026-0.059-0.039-0.089v-0.007c0.031-0.019,0.043-0.017,0.084-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.018-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.223-0.311\r\n\t\t\t\tc0.003-0.047,0.016-0.064,0.039-0.089c-0.012-0.013-0.021-0.025-0.032-0.038c0.034-0.015,0.06-0.023,0.075-0.057\r\n\t\t\t\tc0.009,0.002,0.018,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.031,0.019\r\n\t\t\t\tc0.039,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.063,0.008,0.095,0.013h0.014c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.016-0.002,0.031-0.004,0.045-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.023-0.041-0.061-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.066,0.015,0.082,0.045\r\n\t\t\t\tc0.018,0.015,0.035,0.03,0.052,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.19-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.033,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.271-0.012,0.285,0.121c0.008-0.009,0.018-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.096,0.057c-0.008,0.032-0.017,0.064-0.024,0.095\r\n\t\t\t\tc0.065-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.016-0.03,0.03-0.059,0.045-0.089\r\n\t\t\t\tc0.037-0.022,0.1,0.002,0.152-0.019c0.137-0.054,0.112,0.009,0.273,0.013c0.025-0.03,0.045-0.056,0.062-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.209-0.089c-0.088-0.049-0.179-0.313-0.268-0.299v-0.051c0.035-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.014-0.121\r\n\t\t\t\tc0.035-0.199,0.06-0.377,0.285-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.033-0.038-0.051-0.064\r\n\t\t\t\tc-0.031-0.104,0.094-0.097,0.152-0.133c0.199-0.119,0.104-0.321,0.51-0.311c0.008-0.015,0.018-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.063,0.076v0.013c-0.022,0.021-0.047,0.042-0.069,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.025,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267V23.7c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.103-0.009,0.153-0.013c0.034-0.028,0.067-0.055,0.103-0.083c0.06-0.018,0.088,0.017,0.133,0.025\r\n\t\t\t\tc0.037-0.006,0.076-0.013,0.113-0.019c0.023-0.032,0.053-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.234,0.038c-0.024-0.123-0.199-0.258-0.338-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.104-0.029,0.197-0.016,0.306-0.019c0.036-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.021,0.013,0.02,0.008,0.045,0c0.051-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.048-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.223-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.187-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.031,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.412,0.152c-0.008,0.011-0.018,0.021-0.026,0.032c0.073,0.053,0.147,0.098,0.196,0.178\r\n\t\t\t\tc-0.033,0.026-0.076,0.034-0.139,0.032c-0.029,0.081-0.084,0.13-0.09,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.045,0.013,0.09,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.281,0.21c0.047,0.038,0.115,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.014,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.016,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.08,0.289-0.088,0.388-0.324,0.445c-0.131,0.031-0.221-0.051-0.336-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.099,0.022-0.277-0.021-0.382-0.038c-0.125-0.021-0.15-0.13-0.291-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.103,0.03-0.172,0.013c-0.084-0.021-0.076-0.089-0.121-0.146c-0.174,0.111-0.323-0.021-0.541,0.032\r\n\t\t\t\tc-0.195,0.047-0.34,0.172-0.514,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.139,0.074-0.203,0.007-0.318-0.013\r\n\t\t\t\tc-0.02,0.006-0.038,0.013-0.057,0.019c-0.094-0.008-0.187-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.068,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.014,0.009,0.02,0.013\r\n\t\t\t\tc-0.006,0.008-0.014,0.017-0.02,0.025c-0.113-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.09-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.014,0.006,0.026,0.013,0.039,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.143,0.01-0.16-0.044c-0.09,0.011-0.202,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.069,0.064\r\n\t\t\t\tc-0.011,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.262-0.038v0.006c-0.016,0.024-0.031,0.039-0.058,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.063,0.045c0.015,0.023-0.006,0.02-0.013,0.064h0.058\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.008,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.033-0.003-0.056-0.025-0.09-0.044c-0.011,0.023-0.021,0.047-0.031,0.07v0.045\r\n\t\t\t\tc0.104,0.013,0.133,0.046,0.221,0.07c0.004,0.06-0.021,0.124,0.007,0.165c0.034,0.021,0.067,0.042,0.103,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.056,0.021-0.084,0.032c0.006,0.013,0.014,0.025,0.02,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.018,0.019-0.023,0.019-0.032,0.051\r\n\t\t\t\tc0.007,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.01,0.004,0.014,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.084-0.003,0.086,0.023,0.146,0.051c0.028,0.014,0.049-0.015,0.076-0.038c0.024,0.059,0.051,0.119,0.075,0.178\r\n\t\t\t\tc0.1,0.031,0.23-0.025,0.3,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.029-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.107,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.012,0.017,0.024,0.034,0.037,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.018,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.037,0.107-0.063,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.306,0.578c-0.008,0.042-0.017,0.085-0.024,0.127c-0.041,0.134-0.077,0.258-0.173,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.223,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.071,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.065,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.069,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.067,0.051,0.103,0.076c0.086,0.071,0.194,0.232,0.234,0.344\r\n\t\t\t\tc0.012,0.067,0.021,0.135,0.032,0.202c-0.009,0.039-0.042,0.068-0.032,0.128c0.03,0.172,0.113,0.353,0.165,0.495v0.216\r\n\t\t\t\tc0.095,0.205,0.384,0.166,0.554,0.057c0.057-0.047,0.113-0.092,0.172-0.139c0.094-0.029,0.217,0.012,0.299-0.014\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.025,0.163,0.016,0.229-0.02c0.068-0.035,0.086-0.123,0.151-0.158\r\n\t\t\t\tc0.238-0.131,0.547-0.129,0.769-0.268c0.062-0.037,0.047-0.087,0.076-0.158c0.029-0.07,0.139-0.143,0.211-0.172\r\n\t\t\t\tc0.121-0.041,0.24-0.082,0.361-0.121c0.07,0.008,0.141,0.017,0.21,0.024c0.024-0.015,0.052-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.017-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.272-0.051c0.032-0.027,0.026-0.071,0.044-0.114\r\n\t\t\t\tc0.049-0.12,0.189-0.153,0.35-0.159c0.008-0.116-0.013-0.304,0.025-0.419c0.057-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.043-0.04,0.086-0.08,0.128-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.128-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.183-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.014-0.203\r\n\t\t\t\tc-0.015-0.018-0.023-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.041,0.011-0.062,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.478-0.019\r\n\t\t\t\tc-0.019,0.017-0.022,0.015-0.031,0.044c-0.073,0.007-0.131-0.005-0.203-0.006c0.013-0.058-0.016-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.018-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.029-0.004-0.044-0.006c-0.083,0.059-0.118,0.288-0.069,0.407c0.006,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.046-0.059-0.109-0.211-0.115-0.311c-0.033-0.027-0.035-0.039-0.076-0.032c-0.032-0.107-0.057-0.116-0.012-0.229\r\n\t\t\t\tc-0.014-0.021-0.026-0.042-0.039-0.064c0.021-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.035-0.028-0.025-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.113-0.013c-0.07-0.185-0.159-0.356-0.211-0.553\r\n\t\t\t\tc-0.035,0.009-0.071,0.017-0.107,0.026c-0.013-0.006-0.025-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.009-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.02\r\n\t\t\t\tc-0.002,0.041,0,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.241,0.032c0.043,0.069,0.144,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.137,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.312,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.105,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.187-0.121,0.196-0.172\r\n\t\t\t\tc0.099-0.035,0.203-0.075,0.324-0.044c0.051,0.012,0.039,0.034,0.09,0.038c0.015,0.043,0.01,0.1,0.031,0.159\r\n\t\t\t\tc0.026,0.069,0.096,0.113,0.096,0.21c0.067,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.143,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.217,0.083c0.131,0.021,0.254-0.027,0.355-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.19-0.07c0.08,0.167,0.549-0.018,0.687-0.025c0.073,0.053,0.075,0.102,0.069,0.223\r\n\t\t\t\tc0.047,0.011,0.094,0.021,0.141,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.113,0.032,0.19,0.076\r\n\t\t\t\tc0.03,0.042,0.06,0.085,0.089,0.127c0.104,0.123,0.381,0.229,0.598,0.153c0.002,0.052-0.021,0.064-0.051,0.095\r\n\t\t\t\tc-0.143,0.145-0.215,0.023-0.369,0.076h-0.014c0.049,0.113,0.434,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.018-0.059,0.025-0.089c0.031-0.019,0.082-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.015,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.014,0.062-0.094,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.103,0.616c0.07,0.251,0.209,0.444,0.305,0.655\r\n\t\t\t\tc0.064,0.143,0.116,0.299,0.165,0.457c0.021,0.078,0.042,0.156,0.063,0.234c0.039,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.033,0.111,0.064,0.225,0.096,0.337c0.059,0.063,0.119,0.127,0.178,0.19\r\n\t\t\t\tc0.09-0.002,0.219-0.063,0.248-0.127c0.025-0.054,0.004-0.105,0.038-0.146c0.083-0.028,0.165-0.056,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.058-0.057c0.025-0.072,0.052-0.145,0.076-0.217c0.037-0.021,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.024-0.213,0.286-0.457,0.108-0.654c0.057-0.142-0.035-0.297,0-0.451\r\n\t\t\t\tc0.021-0.047,0.041-0.094,0.063-0.141c0.06-0.048,0.118-0.061,0.19-0.019c0.049-0.031,0.078-0.104,0.096-0.165\r\n\t\t\t\tc0.059-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.049-0.168,0.108-0.217c0.063-0.031,0.127-0.063,0.19-0.094\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.179-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.194-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.147-0.181,0.229-0.273c-0.014-0.045-0.025-0.089-0.039-0.134\r\n\t\t\t\tc0.072-0.072,0.18-0.083,0.268-0.14c0.032-0.034,0.064-0.068,0.096-0.102c0.028,0.022,0.049,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.037,0.013c0.018-0.03,0.035-0.059,0.052-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.02,0.01,0.039,0.021,0.058,0.032\r\n\t\t\t\tc0.013-0.021,0.024-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.008,0.021,0.016,0.043,0.025,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.009-0.004,0.013-0.006c0.021,0.038,0.043,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.017-0.069,0.026-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.031-0.184c-0.002-0.034-0.004-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.096,0.127c0.069-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.021,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.067,0.037,0.106,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.103,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.031-0.057c0.004-0.002,0.01-0.004,0.014-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.018,0.129-0.099,0.221-0.103,0.361c0.015,0.012,0.03,0.021,0.044,0.033c0.047-0.039,0.073-0.066,0.152-0.076\r\n\t\t\t\tc-0.006,0.024-0.012,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.031h0.025c0.029-0.023,0.031-0.041,0.082-0.044v0.058\r\n\t\t\t\tc0.08,0.072,0.095-0.08,0.153-0.121c0.185-0.133,0.273-0.031,0.306-0.344H56.3c0.085,0.062,0.089,0.235,0.197,0.268\r\n\t\t\t\tc0.026,0.18,0.051,0.359,0.075,0.54c0.048,0.163,0.152,0.309,0.203,0.45c0.054,0.145,0.031,0.291,0.025,0.433\r\n\t\t\t\tc0.02,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.052,0.038\r\n\t\t\t\tc-0.064,0.162-0.162,0.391-0.103,0.566c0.024-0.012,0.051-0.021,0.075-0.032c0.086,0.091,0.166,0.136,0.211,0.272\r\n\t\t\t\tc0.02,0.008,0.033,0.01,0.064,0c0.043,0.058,0.051,0.1,0.051,0.197c0.011,0.006,0.021,0.014,0.031,0.02\r\n\t\t\t\tc0.034,0.043,0.078,0.029,0.121,0.006c0.004,0.004,0.008,0.008,0.014,0.013c-0.019,0.14-0.008,0.3,0.043,0.445\r\n\t\t\t\tc0.025,0.047,0.052,0.093,0.076,0.14c0.01,0.069-0.023,0.131,0.014,0.191c0.039,0.033,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.021,0.021,0.057,0.031,0.088C55.357,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.069-0.013c-0.035,0.011-0.068,0.021-0.103,0.032c-0.005-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.014-0.004-0.026-0.008-0.039-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.033-0.068-0.051-0.102c-0.066,0.075-0.078,0.271-0.043,0.369\r\n\t\t\t\tc0.038,0.021,0.133,0.008,0.215,0.006c-0.015,0.019-0.029,0.038-0.043,0.057c0.004,0.013,0.008,0.025,0.012,0.038\r\n\t\t\t\tc0.015,0.023,0.043,0.036,0.07,0.045v0.019c-0.045-0.004-0.088-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.031,0.045v0.044\r\n\t\t\t\tc0.041-0.029,0.065-0.018,0.127-0.006c0.023,0.067,0.084,0.076,0.113,0.133c0.014,0.054-0.037,0.118-0.037,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.02,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.062,0.047-0.192,0.025-0.281,0.045\r\n\t\t\t\tc-0.313,0.07-0.747,0.1-0.857-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.053-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.014-0.008,0.02-0.013c0.017,0.015,0.019,0.017,0.024,0.044c0.007,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.007-0.03,0.014-0.059,0.02-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.057-0.128-0.189-0.036-0.242-0.108c-0.029-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.105-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.058-0.019\r\n\t\t\t\tc-0.049-0.07-0.076-0.16-0.139-0.216c-0.016-0.004-0.031-0.009-0.045-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.031,0.114h-0.007\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.031-0.019-0.074-0.01-0.088-0.045v-0.032c0.004-0.075,0.082-0.081,0.113-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.016,0.008,0.029,0.017,0.044,0.025c0.017-0.02,0.021-0.029,0.019-0.07c0.103-0.023,0.135-0.121,0.217-0.153\r\n\t\t\t\tc0.039-0.002,0.08-0.004,0.121-0.006c0.129-0.041,0.242-0.21,0.412-0.197c0.097,0.007,0.138,0.073,0.211,0.089\r\n\t\t\t\tc0.076,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.113,0.025,0.172,0.038c0.015,0.025,0.029,0.051,0.045,0.076\r\n\t\t\t\tc-0.018,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.084,0.33c0.005,0.058,0.07,0.083,0.115,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.139-0.013-0.275-0.025-0.414-0.038c-0.037,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.037,0.102c-0.029,0.036-0.058,0.02-0.076,0.076c0.026,0.039,0.063,0.068,0.113,0.083\r\n\t\t\t\tc0.006,0.008,0.014,0.017,0.02,0.026c-0.062,0.044-0.215-0.025-0.338-0.019c-0.006,0.006-0.012,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.134,0.043,0.185,0.051c0.027,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.234,0.064c-0.033,0.064-0.069,0.143-0.094,0.203c0.022,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.026-0.072,0.01-0.226,0.031-0.305c0.088-0.015,0.174-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.016,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.043-0.024-0.084-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.024-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.052,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.367,0.016-0.324-0.226-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.024,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.062,0.004-0.119,0.022-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.123-0.633,0.191-0.826c-0.005-0.053-0.01-0.105-0.014-0.158c0.02-0.082,0.062-0.115,0.025-0.217\r\n\t\t\t\tc0.092-0.07,0.145-0.061,0.291-0.051c-0.006,0.076-0.012,0.152-0.019,0.229c0.058,0.002,0.08,0.024,0.121,0.033\r\n\t\t\t\tc0.078,0.014,0.106-0.055,0.19-0.007c0.039,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.11,1.104-0.188,1.649C57.688,35.667,57.663,35.645,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.059-0.106-0.061-0.14-0.133\r\n\t\t\t\tc-0.067-0.055-0.062-0.042-0.127,0.013c0.009,0.101,0.008,0.235-0.07,0.299c-0.044,0.036-0.079,0.04-0.102,0.103\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.037-0.004-0.057-0.006c-0.003,0.068,0.016,0.109,0.038,0.165\r\n\t\t\t\tc-0.005,0.011-0.009,0.021-0.013,0.032c-0.024,0.016-0.041,0.024-0.084,0.024c-0.002,0.005-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.004,0.045,0.026,0.06,0.045,0.103c-0.022,0.024-0.047,0.051-0.069,0.076c-0.039-0.005-0.04-0.009-0.052-0.038H41.85\r\n\t\t\t\tc-0.031,0.027-0.062,0.055-0.095,0.083c0.009,0.034,0.022,0.045,0.038,0.069c-0.014,0.01-0.025,0.018-0.038,0.026\r\n\t\t\t\tc-0.024,0.011-0.026-0.009-0.063-0.019c-0.047,0.029-0.094,0.059-0.141,0.089c0.004,0.024,0.01,0.051,0.014,0.075\r\n\t\t\t\tc-0.071,0.018-0.121-0.053-0.211-0.012c-0.017,0.019-0.033,0.037-0.051,0.057c-0.039,0.02-0.074-0.014-0.107-0.014\r\n\t\t\t\tc-0.025,0.02-0.051,0.039-0.076,0.058c-0.044,0.002-0.09,0.004-0.133,0.006c0,0.213-0.084,0.245-0.141,0.381\r\n\t\t\t\tc-0.025,0.101,0.069,0.325,0.121,0.388c-0.015,0.032-0.029,0.064-0.044,0.096c0.032,0.039,0.063,0.076,0.095,0.115\r\n\t\t\t\tc0.03,0.114-0.166,0.512-0.216,0.559c-0.024,0.009-0.051,0.017-0.075,0.025c-0.045,0.031-0.103,0.232-0.09,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.024,0.097-0.038,0.146c-0.031,0.145,0.061,0.157,0.083,0.229\r\n\t\t\t\tc0.017,0.051-0.006,0.092,0.019,0.127c0.084,0.119,0.263,0.084,0.344,0.21c0.137-0.008,0.17-0.09,0.285-0.121\r\n\t\t\t\tc0.07-0.009,0.141-0.018,0.211-0.025c0.132-0.082,0.205-0.498,0.261-0.674c0.149-0.486,0.302-0.971,0.451-1.455\r\n\t\t\t\tc0.028-0.096-0.011-0.189,0.019-0.3c0.026-0.093,0.125-0.146,0.146-0.254c-0.047-0.071-0.09-0.157-0.09-0.272\r\n\t\t\t\tc0.012-0.006,0.021-0.014,0.033-0.02c0.004-0.004,0.008-0.009,0.013-0.013c0.028,0.053,0.069,0.133,0.12,0.165\r\n\t\t\t\tc0.035-0.029,0.115-0.123,0.103-0.191c-0.026-0.053-0.055-0.105-0.083-0.158C42.622,41.831,42.634,41.518,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.143-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.018-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.018-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.01-0.034,0.014-0.051c-0.002-0.002-0.004-0.004-0.007-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.021-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.057-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.02,0.095c0.088,0.039,0.261,0.031,0.356,0.07\r\n\t\t\t\tL35.215,27.014L35.215,27.014z M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095\r\n\t\t\t\tc-0.036-0.095,0.072-0.224,0.103-0.292v-0.006c-0.059-0.014-0.121,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044\r\n\t\t\t\tc-0.091,0.081-0.209,0.007-0.254,0.152c0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z\r\n\t\t\t\t M21.217,10.482c0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.058\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.012c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089V21.17h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006L25.078,20.894L25.078,20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.022-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.146-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.029-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.101,0.036-0.199,0.072-0.299,0.108c-0.06-0.006-0.119-0.013-0.179-0.019c0.011,0.023,0.013,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.107c0.048-0.057,0.064-0.207,0.095-0.268c-0.057-0.054-0.445-0.061-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.039,0.009,0.092,0.013,0.135\r\n\t\t\t\tc0.086,0.021,0.114-0.016,0.203-0.02c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.062-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.02c0.044,0.002,0.042,0.01,0.063,0.031c-0.012,0.031-0.012,0.051,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.014-0.013,0.02v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.082-0.008-0.158,0.032-0.217v-0.006h-0.038C11.059,37.904,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.082c-0.045,0.004-0.062,0.022-0.089,0.031c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.018-0.194-0.057-0.324-0.057C9.066,33.9,9.038,33.904,9.01,33.909\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.024c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.146,0.095,0.211\r\n\t\t\t\tc0.004,0.006,0.008,0.012,0.013,0.019c-0.128,0.082-0.41,0.036-0.572-0.013c-0.013,0.015-0.025,0.029-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.013,0.053-0.048,0.102-0.058\r\n\t\t\t\tc0.076,0.012,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.15,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.061,0.178-0.076\r\n\t\t\t\tc0.044-0.012,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.046,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.113\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.17,0.311,0.153\r\n\t\t\t\tc0.044-0.013,0.058-0.078,0.14-0.058c0.051,0.014,0.064,0.041,0.127,0.039c0.002-0.012,0.004-0.021,0.006-0.033\r\n\t\t\t\tc-0.073-0.109-0.33-0.157-0.515-0.152C7.628,34.352,7.604,34.368,7.581,34.385z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089c0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013\r\n\t\t\t\tc-0.023-0.013-0.047-0.026-0.07-0.038c-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235\r\n\t\t\t\tc-0.03-0.002-0.059-0.004-0.089-0.006c-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114\r\n\t\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.006c-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z\r\n\t\t\t\t M43.382,11.985c0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.164,0.009,0.279,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.31,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.065-0.023-0.131-0.047-0.196-0.07c-0.172-0.022-0.357,0.059-0.478,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.02,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.275,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.287,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.103,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.094-0.021,0.188-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.049-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.113-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.063-0.045h-0.172c-0.066-0.021-0.113-0.079-0.211-0.089C32.725,7,32.688,7.043,32.652,7.085\r\n\t\t\t\tc-0.041,0.109,0.107,0.294,0.127,0.4c-0.02,0.017-0.038,0.034-0.057,0.051c-0.109-0.025-0.307-0.287-0.351-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.102,0.233-0.28,0.267v0.114c0.275,0.013,0.552,0.025,0.826,0.038c0.06-0.04,0.119-0.081,0.179-0.121\r\n\t\t\t\tc0.077-0.033,0.161-0.016,0.254-0.045c0.078-0.04,0.156-0.08,0.234-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.022-0.038-0.047-0.076-0.069-0.114c-0.062-0.017-0.123-0.034-0.185-0.051\r\n\t\t\t\tc-0.119-0.023-0.25,0.029-0.375,0.026c-0.024-0.051-0.051-0.102-0.075-0.153c-0.03-0.011-0.06-0.021-0.089-0.032\r\n\t\t\t\tc-0.133,0.016-0.224,0.14-0.286,0.229h-0.108c-0.027-0.1-0.003-0.248,0.025-0.343c-0.137,0.061-0.143,0.232-0.268,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.031,0.032c-0.168-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.082,0.106-0.162,0.212-0.242,0.318c-0.086,0.062-0.15,0.069-0.196,0.172c-0.004,0.004-0.009,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061C21.277,9.6,21.247,9.54,21.129,9.564C21.066,9.601,20.983,9.637,20.993,9.697z M21.388,8.988\r\n\t\t\t\tc-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24L20.988,9.24\r\n\t\t\t\tc0.003-0.004-0.005-0.009-0.001-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.052-0.021-0.103-0.043-0.153-0.064c-0.119,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.146-0.017-0.19-0.024\r\n\t\t\t\tc-0.086-0.018-0.14,0.054-0.197,0.069c-0.06-0.006-0.119-0.013-0.178-0.019h-0.014c-0.072,0.047-0.145,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.06-0.242-0.038c-0.091,0.04-0.183,0.08-0.272,0.121h-0.179c-0.091-0.1-0.215-0.211-0.272-0.337\r\n\t\t\t\tc-0.055-0.015-0.129-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.014c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.168-0.232-0.211-0.33-0.305c-0.018-0.016-0.033-0.139-0.089-0.19c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.088-0.098-0.178-0.194-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.055-0.074-0.139-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.107c-0.005,0.002-0.009,0.004-0.014,0.008c-0.182-0.153-0.225-0.623-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.105-0.144-0.037-0.516-0.089-0.724c-0.032-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.152-0.152c-0.14-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.166-0.432\r\n\t\t\t\tc-0.094-0.171-0.256-0.287-0.299-0.521c0.033-0.045,0.039-0.066,0.096-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.075,0.013c0.08-0.159,0.058-0.398,0.185-0.508c-0.074-0.191-0.148-0.381-0.223-0.572\r\n\t\t\t\tc-0.121,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.157,0.011-0.28,0.032c-0.041-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.039,0.032-0.08,0.063-0.12,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.014-0.017-0.025-0.034-0.039-0.051c-0.147-0.032-0.297-0.064-0.444-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.069-0.038-0.032-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.168,0.358-0.146,0.527c-0.038,0.02-0.089,0.07-0.146,0.064\r\n\t\t\t\tc-0.154-0.018-0.267-0.184-0.4-0.235c-0.133-0.05-0.434-0.054-0.541-0.114c-0.118-0.068-0.136-0.311-0.24-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.067-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.075,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.021,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.178-0.032,0.262\r\n\t\t\t\tc0.08,0.135,0.04,0.035,0.14,0.102c0.004,0.016,0.008,0.03,0.013,0.044c0.042,0.024,0.085,0.052,0.127,0.076\r\n\t\t\t\tc0.063-0.013,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.018,0.08,0.021,0.102,0.044\r\n\t\t\t\tc0.015,0.021,0.01,0.028,0.006,0.058c0.034,0.022,0.057,0.033,0.121,0.031c0.011,0.033,0.011,0.061,0,0.096\r\n\t\t\t\tc0.065,0.068,0.166,0.135,0.267,0.164c0.006,0.032,0.013,0.063,0.019,0.096c0.033,0.061,0.118,0.08,0.14,0.158v0.096\r\n\t\t\t\tc0.014,0.018,0.035,0.021,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.024c-0.023,0.019-0.047,0.038-0.07,0.058h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.033,0.013,0.047,0.006,0.094c0.142,0.043,0.215,0.149,0.324,0.223\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.361c0.062,0.033,0.311,0.192,0.388,0.173\r\n\t\t\t\tc0.102-0.054,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.011,0.145,0.062,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.279c0.087-0.008,0.174-0.018,0.261-0.025c0.052-0.039,0.054-0.107,0.127-0.133\r\n\t\t\t\tc0.214-0.02,0.428-0.038,0.642-0.057c0.032-0.013,0.039-0.043,0.083-0.058c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.024,0.03,0.051,0.044,0.075c0.023,0.002,0.047,0.005,0.07,0.007c0.006,0.008,0.013,0.017,0.019,0.024\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.096c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.007\r\n\t\t\t\tc0.002-0.026-0.002-0.036-0.013-0.062c0.025-0.017,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.025,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.016-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.063,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.262c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.166c0.049,0.041,0.097,0.084,0.146,0.127v0.006c-0.038-0.004-0.076-0.01-0.114-0.014\r\n\t\t\t\tc-0.031,0.139-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.016,0.114,0.07\r\n\t\t\t\tc-0.021,0.016-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.014c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.016-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.205,0.133,0.248c0.029,0.068-0.018,0.162,0.038,0.262\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.011-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.031-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.223-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.215,0.216,0.432,0.324,0.647c0.075,0.146,0.371,0.403,0.203,0.571c0.03,0.141,0.059,0.281,0.089,0.42\r\n\t\t\t\tc0.023,0.055,0.047,0.109,0.07,0.165c0.02,0.081-0.031,0.143-0.025,0.202c0.008,0.08,0.071,0.147,0.089,0.211\r\n\t\t\t\tc0.014,0.047-0.021,0.072-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.116,0.131,0.233,0.264,0.349,0.395\r\n\t\t\t\tc0.12,0.189,0.16,0.434,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.078,0-0.096,0.025\r\n\t\t\t\tc-0.025,0.031,0.123,0.229,0.159,0.285c-0.017,0.049-0.034,0.099-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.031\r\n\t\t\t\tc0.006,0.003,0.013,0.005,0.019,0.007c0.006-0.015,0.013-0.03,0.019-0.045c0.018-0.009,0.022-0.011,0.052-0.013\r\n\t\t\t\tc0.013,0.022,0.024,0.047,0.038,0.069c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.028,0.021,0.056,0.038,0.095\r\n\t\t\t\tc0.024,0.043,0.115,0.075,0.165,0.09c0.061-0.047,0.096-0.123,0.178-0.146c0.115-0.035,0.252,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.09c0.15-0.07,0.214,0,0.331,0c0.034-0.019,0.067-0.037,0.103-0.057\r\n\t\t\t\tc0.121-0.035,0.233,0.073,0.317,0.102c0.04-0.03,0.07-0.055,0.095-0.102c0.058,0.014,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.018-0.019,0.021-0.053,0.033-0.075c0.049-0.049,0.321-0.018,0.399-0.07c0.083-0.072,0.165-0.145,0.248-0.217\r\n\t\t\t\tc0.416-0.326,0.721-0.688,1.017-1.138c0.074-0.112,0.264-0.19,0.305-0.299c0.021-0.052-0.027-0.122-0.019-0.146\r\n\t\t\t\tc0.017-0.045,0.065-0.033,0.089-0.064c0.071-0.091,0.109-0.35,0.09-0.496c-0.039-0.016-0.078-0.04-0.096-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.02-0.019c0.078-0.091,0.133-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.008-0.062-0.051-0.036-0.063-0.07c0.002-0.006,0.005-0.013,0.007-0.019c0.012-0.032,0.024-0.064,0.037-0.096\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.02-0.388c-0.028,0.011-0.035,0.019-0.076,0.019c-0.039-0.123-0.087-0.273-0.044-0.375\r\n\t\t\t\tc-0.007-0.074-0.062-0.111-0.114-0.14v-0.202c0.119-0.088,0.237-0.175,0.355-0.262c0.146-0.122,0.233-0.305,0.4-0.406\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.643-0.293c0.137-0.094,0.224-0.268,0.33-0.394c0-0.028-0.008-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.012-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.162,0.013-0.337-0.069-0.432c0.003-0.034,0.034-0.062,0.044-0.107c0.025-0.113-0.041-0.295-0.057-0.395\r\n\t\t\t\tc0.029-0.055,0.059-0.11,0.088-0.165c-0.064-0.14-0.182-0.157-0.266-0.267c-0.084-0.108-0.127-0.394-0.07-0.554\r\n\t\t\t\tc-0.019-0.028-0.043-0.032-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.127-0.196-0.217\r\n\t\t\t\tc-0.037-0.095,0.061-0.406,0.102-0.451c0.023-0.025,0.068-0.021,0.089-0.051c0.047-0.067,0.006-0.104,0.024-0.164\r\n\t\t\t\tc0.043-0.138,0.173-0.144,0.185-0.369c0.097-0.053,0.187-0.051,0.19-0.203c0.086,0.017,0.125-0.021,0.191-0.051\r\n\t\t\t\tc0.024-0.035,0.026-0.054,0.006-0.095c0.209-0.235,0.416-0.47,0.623-0.704c0.229-0.186,0.516-0.326,0.744-0.509\r\n\t\t\t\tc0.086-0.104,0.17-0.208,0.254-0.312c0.168-0.215,0.42-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.073-0.118,0.147-0.236,0.222-0.355c-0.002-0.027-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.109-0.194,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.015-0.04,0.08-0.069,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.154c-0.031-0.184-0.127-0.277-0.279-0.375c0.018,0.078-0.004,0.113-0.025,0.191c-0.033,0.026-0.04,0.043-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.009,0.029-0.013,0.044c0.015,0.017,0.029,0.034,0.043,0.051c-0.028,0.063-0.008,0.077,0.007,0.14v0.318\r\n\t\t\t\tc0.022,0.102,0.073,0.268,0.146,0.324c0.209,0.044,0.477-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.227,51.768,35.186,51.688,35.154z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z\r\n\t\t\t\t M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.316,0.022-0.352-0.084\r\n\t\t\t\tC50.471,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.037,0.017,0.076,0.034,0.113,0.051\r\n\t\t\t\tc0.07-0.025,0.141-0.051,0.211-0.076c-0.014-0.036-0.025-0.072-0.039-0.108c0.033-0.077,0.143-0.097,0.203-0.146\r\n\t\t\t\tc0.084-0.066,0.228-0.183,0.268-0.286c0.015-0.059,0.029-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.063-0.146\r\n\t\t\t\tc-0.099-0.13-0.201-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.024-0.222\r\n\t\t\t\tc0.032-0.042,0.063-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.1,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.103-0.002,0.239,0.039,0.312,0.025\r\n\t\t\t\tc0.033-0.012,0.068-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.231,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.057,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.067,0.042-0.103,0.064\r\n\t\t\t\tc-0.043,0.061-0.037,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.084,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.309,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.062-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.014-0.03,0.025-0.044,0.039c-0.012-0.053-0.021-0.069-0.07-0.084\r\n\t\t\t\tc-0.033-0.006-0.066,0.023-0.095,0.039c-0.203,0.106-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.016\r\n\t\t\t\tc-0.076-0.303-0.168-0.599-0.232-0.904c0.011,0,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.029,0.009-0.056,0.013-0.084h0.006c0.023,0.049,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.014,0.019,0.02\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.059,0.138-0.1,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.09c0.198-0.062,0.318-0.017,0.375,0.141c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.05,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.01,0.006,0.014c-0.061-0.009-0.097-0.021-0.121,0.031\r\n\t\t\t\tC7.564,37.5,7.647,37.605,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.436c0.051-0.051,0.122-0.09,0.155-0.152\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.021,0.108,0.044,0.172,0.02h0.006c0.013,0.191-0.204,0.291-0.248,0.482\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.35c0.051-0.121,0.102-0.241,0.153-0.361c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.078-0.036-0.114-0.057-0.172c0.045-0.055,0.132-0.205,0.019-0.255v-0.038c0.146,0.014,0.159-0.072,0.235-0.14\r\n\t\t\t\tc0.08-0.069,0.491-0.363,0.585-0.381c0.051-0.011,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.024\r\n\t\t\t\tc-0.005-0.183,0.137-0.241,0.292-0.254c-0.009-0.052-0.017-0.103-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.069,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.17,0.065-0.289,0.184-0.332c0-0.047-0.035-0.138-0.019-0.222c0.021-0.106,0.097-0.243,0.076-0.368\r\n\t\t\t\tc-0.017-0.166-0.034-0.332-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.465c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.103h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.063c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.757\r\n\t\t\t\tc-0.161-0.049-0.338,0.009-0.458-0.069c-0.256-0.166-0.436-0.435-0.731-0.565c-0.171-0.076-0.287,0.017-0.451-0.014\r\n\t\t\t\tc-0.1-0.016-0.199-0.029-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.241c0.013-0.078-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.033-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.217c-0.065-0.022-0.106-0.067-0.159-0.102c-0.052,0.007-0.15,0.016-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.19c-0.069,0.102-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.069,0.012-0.1,0.032-0.146c-0.111,0.022-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.293\r\n\t\t\t\tc0.065-0.104,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.577c-0.021-0.068-0.016-0.144-0.076-0.173c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.035-0.22-0.072-0.331-0.107c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.026-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.016-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.119-0.214-0.313-0.388-0.291c-0.011,0.021-0.021,0.041-0.032,0.062v0.013c-0.013-0.091-0.026-0.182-0.038-0.272\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.02c-0.066-0.004-0.131-0.009-0.197-0.014v-0.006\r\n\t\t\t\tc0.187-0.059,0.138-0.167,0.273-0.223c0.002-0.004,0.004-0.008,0.006-0.012c-0.051-0.035-0.122-0.046-0.178-0.084\r\n\t\t\t\tc-0.013-0.019-0.026-0.037-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.02-0.038,0.035-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191v-0.039c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.014,0.032-0.02c0.004-0.009,0.008-0.018,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.127-0.21,0.146c-0.261,0.059-0.335-0.148-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.058-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.017-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.031c-0.016,0.063-0.425,0.178-0.515,0.211\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.012c-0.008,0.037-0.018,0.037-0.038,0.058c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.045-0.094,0.072-0.152,0.084c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.101,0.07-0.187,0.121-0.254\r\n\t\t\t\tc-0.012-0.103-0.056-0.167-0.089-0.254c0.041-0.062,0.144-0.086,0.241-0.089c0.011-0.014,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.185c-0.04,0.012-0.081,0.024-0.121,0.037\r\n\t\t\t\tc0.019-0.035,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.022-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.037\r\n\t\t\t\tc-0.047,0.031-0.093,0.063-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.127-0.331,0.094\r\n\t\t\t\tc-0.05-0.062-0.09-0.027-0.135-0.021c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.031v0.007c-0.047,0.013-0.093,0.024-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.082c0.114,0.035,0.208,0.115,0.337,0.146c0.067,0.018,0.202-0.02,0.261,0.02\r\n\t\t\t\tc0.043,0.024,0.066,0.123,0.07,0.184c0.099,0.061,0.295,0.061,0.388,0.127c-0.006,0.064-0.053,0.105-0.102,0.127\r\n\t\t\t\tC7.811,33.859,7.792,33.88,7.773,33.9v0.007c0.141,0.006,0.266-0.058,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.031\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.069c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.02c0.013-0.027,0.025-0.055,0.038-0.082c-0.079-0.081-0.36-0.09-0.483-0.141\r\n\t\t\t\tc-0.04-0.043-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.105-0.191-0.158H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.018-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21h0.06c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tc-0.004-0.026-0.004-0.02-0.017-0.036c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.021,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006H8.37c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299H12.48c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0s0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tC18.58,15.989,18.564,16,18.55,15.989c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.021-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005C21.061,9.85,21.006,9.85,20.952,9.85c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.818,0,9.316,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.047-0.001-0.131-0.022-0.152-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.014,0.013-0.025,0.025-0.039,0.038\r\n\t\t\t\tc0.039,0.028,0.076,0.062,0.103,0.102c-0.099,0.069-0.239,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.014,0.013\r\n\t\t\t\tc0.033,0.03,0.064,0.059,0.096,0.089c-0.004,0.027-0.008,0.055-0.014,0.083c-0.383-0.001-0.321,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.209,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.227,0.096,0.344,0.121c0.108-0.061,0.16-0.161,0.248-0.241\r\n\t\t\t\tc-0.003-0.025-0.005-0.051-0.007-0.076c-0.034-0.021-0.067-0.042-0.103-0.064c-0.004-0.006-0.008-0.013-0.012-0.019\r\n\t\t\t\tc0.022-0.023,0.047-0.047,0.069-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.043-0.034-0.064-0.051c-0.014-0.017-0.002-0.045,0.006-0.076c0.016-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.271,0.047,0.356,0.006c0.035-0.028,0.072-0.055,0.107-0.083c0.021-0.023,0.043-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.056-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.1-0.106c0.829,0.518,1.631,1.072,2.395,1.677\r\n\t\t\t\tc-0.006,0.025-0.012,0.05-0.016,0.075c-0.05,0.083-0.098,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.465,0.489\r\n\t\t\t\tc0.054,0.004,0.107,0.008,0.16,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.029,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.136,0.168,0.286,0.146c-0.018,0.094-0.113,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.636-0.089\r\n\t\t\t\tc-0.08,0.019-0.115,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.119,0.179-0.291,0.203c-0.021,0.033-0.037,0.114-0.052,0.146c-0.095,0.048-0.19-0.018-0.216-0.089\r\n\t\t\t\tc0.029-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.45,0.032c-0.043,0.034-0.086,0.068-0.128,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.104-0.03-0.279-0.002-0.361,0.032c-0.092,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.045-0.057c-0.182,0.003-0.223,0.07-0.375,0.019c0-0.05,0.008-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.168,0.2-0.42,0.248\r\n\t\t\t\tc-0.006-0.002-0.012-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.399,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.342,0.069-0.428-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.098,0.009-0.195,0.017-0.293,0.025c-0.082-0.018-0.133-0.053-0.215-0.032\r\n\t\t\t\tc-0.018,0.148,0.158,0.164,0.12,0.337c-0.051,0.081-0.102,0.161-0.151,0.241c-0.004,0.004-0.01,0.009-0.014,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.028,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.02,0.108v0.013\r\n\t\t\t\tc-0.165-0.008-0.334-0.211-0.565-0.184c-0.124,0.261-0.491,0.237-0.661,0.445c0.006,0.173,0.26,0.294,0.141,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.103-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.104,0-0.1,0.078-0.152,0.127c0.002,0.063,0.125,0.201,0.19,0.229c0.058,0.024,0.138-0.001,0.19,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.26,0.21c-0.072-0.016-0.158,0.001-0.211-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.075-0.038-0.206-0.014-0.291-0.057c-0.043-0.022-0.209-0.444-0.217-0.527c0.123-0.036,0.164-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.137-0.088-0.245-0.222-0.362-0.33c0.222-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.141,0.021,0.211,0.032c0.5,0.15,1.305,0.524,1.83,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.361-0.305c-0.068-0.021-0.137-0.042-0.203-0.063c-0.108-0.038-0.217-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.06,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.014-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.047,0.019-0.104,0.021-0.141,0.044\r\n\t\t\t\tc-0.113-0.074-0.219-0.036-0.369-0.025c-0.065-0.103-0.205-0.127-0.279-0.222c0.236,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.005-0.047-0.007-0.07c-0.027-0.017-0.055-0.034-0.082-0.051c-0.065-0.023-0.141,0.003-0.191-0.019\r\n\t\t\t\tc-0.105-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.039-0.008-0.08-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.059-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.116,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.012-0.28c-0.14,0.095-0.322,0.263-0.389,0.426c-0.018-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.28-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.145,0.185-0.172,0.273c-0.188-0.096-0.28-0.273-0.381,0.083c-0.043-0.036-0.086-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.014-0.004-0.02-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.152,0.229\r\n\t\t\t\tc0.014-0.069,0.026-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.014-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.147,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.024-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.037,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.105,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.031,0.14\r\n\t\t\t\tc-0.019,0.028-0.037,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.063-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.01,0.027,0.014,0.055,0.043,0.076v0.038c-0.054,0.016-0.076,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.253-0.025\r\n\t\t\t\tc0.021,0.015,0.043,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.014,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.029-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.177,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.02-0.002,0.039-0.004,0.058-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.014-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.279,0.045c-0.111-0.019-0.164-0.137-0.3-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.036-0.04,0.304,0.049,0.368,0.083c0.082,0.043,0.287-0.119,0.312-0.153h0.058c-0.002-0.095-0.049-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.053-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.02-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.063-0.083\r\n\t\t\t\tc0.017-0.027-0.004-0.073-0.012-0.115h0.127c0.079-0.112,0.116-0.111,0.221-0.191c0.051-0.038,0.051-0.096,0.115-0.127\r\n\t\t\t\tc0.022,0.015,0.047,0.03,0.069,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.185-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.127-0.081,0.151-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.092-0.069,0.095-0.193,0.211-0.248c0.051,0.034,0.102,0.068,0.152,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.262,0.115c0.011,0.019,0.021,0.038,0.031,0.057c0.015,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.052,0.057c0.013,0.018,0.008,0.038,0.006,0.076c-0.041-0.002-0.082-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.037-0.057v-0.013c-0.091,0.094-0.017,0.207-0.16,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.158-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.09,0.064c0,0.094-0.021,0.143-0.032,0.216c0.034,0.053,0.067,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.024,0.121c-0.035,0.188-0.012,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.054-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.021,0.042,0.039,0.071,0.084,0.089\r\n\t\t\t\tc0.066,0.051,0.192-0.016,0.234-0.038v0.026c0.064-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.056,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.018-0.083,0.1-0.04,0.152-0.083c0.027-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.107,0.038\r\n\t\t\t\tc0.026-0.027,0.035-0.043,0.084-0.051c0.021,0.013,0.041,0.025,0.063,0.038c0.06-0.057,0.198-0.098,0.3-0.108\r\n\t\t\t\tc0.008-0.015,0.016-0.03,0.024-0.045c0.028-0.003-0.011,0.079-0.019,0.114c0.147,0.215,0.344-0.041,0.488,0.229\r\n\t\t\t\tc-0.015,0.011-0.029,0.021-0.045,0.032c-0.094-0.003-0.141-0.044-0.222-0.07c-0.076,0.006-0.101,0.066-0.14,0.108\r\n\t\t\t\tc-0.054-0.012-0.054-0.037-0.103-0.025c-0.017,0.027-0.015,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.024,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.063,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.057,0.067-0.107,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.033,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.012,0.045c-0.045-0.007-0.062,0.006-0.103-0.006c-0.085,0.046-0.146,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.014,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.045,0.165c0.021,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.024,0.017,0.037,0.025c-0.021,0.16-0.09,0.268-0.037,0.451c-0.041,0.106-0.223,0.17-0.324,0.076\r\n\t\t\t\tc-0.016-0.04-0.03-0.081-0.044-0.121c-0.048-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.268,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.033,0.025-0.064,0.051-0.096,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.01,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.012,0.035,0.018,0.047,0.014,0.089c-0.082,0.046-0.25,0.013-0.362,0.007c-0.017,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.01-0.053-0.025-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025V22.17\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025H32.2c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.022,0.012,0.038-0.004,0.069-0.019c0.034,0.01,0.182,0.419,0.172,0.451v0.013c-0.022-0.002-0.047-0.004-0.069-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.014,0.009,0.025,0.017,0.039,0.025h0.082\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.062-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.062-0.034-0.123-0.068-0.185-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.007,0.095,0.142,0.064,0.202,0.108c0.031,0.023,0.007,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.437-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.096-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.328,0.011-0.414-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.184,0.165,0.266,0.267c0.025,0.026,0.06-0.025,0.109-0.013\r\n\t\t\t\tc0.006,0.001,0.152,0.061,0.164,0.07c0.049,0.035,0.09,0.097,0.141,0.133c0.133,0.095,0.271,0.155,0.406,0.248\r\n\t\t\t\tc0.03,0.036,0.06,0.072,0.09,0.108c0.041,0.021,0.084,0.042,0.127,0.064c0.002,0.051,0.002,0.06-0.039,0.07\r\n\t\t\t\tc-0.006,0.043,0.017,0.226,0.014,0.235c-0.018,0.032-0.034,0.064-0.051,0.095c0.021,0.032,0.037,0.045,0.037,0.102\r\n\t\t\t\tc-0.01-0.002-0.021-0.004-0.031-0.006c0.027,0.077,0.145,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.024,0.025v0.013c-0.026,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.037,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.228-0.061,0.349-0.025c0.078,0.022,0.119,0.081,0.224,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.041,0.076-0.063,0.114\r\n\t\t\t\tc0.038,0.047,0.075,0.093,0.114,0.14c0.014,0.044-0.017,0.099-0.014,0.146c0.02,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.02-0.015,0.039-0.03,0.058-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.056-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.033,0.011,0.068,0.021,0.102,0.032h0.014c-0.006,0.013-0.014,0.025-0.02,0.038c0.018,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.02-0.035,0.029-0.044,0.083-0.045c-0.022-0.029-0.028-0.02-0.024-0.064c-0.021,0.004-0.043,0.009-0.064,0.013\r\n\t\t\t\tc-0.021-0.048-0.025-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.106,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.014-0.011,0.025-0.021,0.039-0.032c-0.014-0.04-0.025-0.081-0.039-0.121\r\n\t\t\t\tc0.008-0.002,0.018-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.103-0.044\r\n\t\t\t\tc-0.014-0.03-0.026-0.059-0.039-0.089v-0.007c0.031-0.019,0.043-0.017,0.084-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.018-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.223-0.311\r\n\t\t\t\tc0.003-0.047,0.016-0.064,0.039-0.089c-0.012-0.013-0.021-0.025-0.032-0.038c0.034-0.015,0.06-0.023,0.075-0.057\r\n\t\t\t\tc0.009,0.002,0.018,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.031,0.019\r\n\t\t\t\tc0.039,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.063,0.008,0.095,0.013h0.014c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.016-0.002,0.031-0.004,0.045-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.023-0.041-0.061-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.066,0.015,0.082,0.045\r\n\t\t\t\tc0.018,0.015,0.035,0.03,0.052,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.19-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.033,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.271-0.012,0.285,0.121c0.008-0.009,0.018-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.096,0.057c-0.008,0.032-0.017,0.064-0.024,0.095\r\n\t\t\t\tc0.065-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.016-0.03,0.03-0.059,0.045-0.089\r\n\t\t\t\tc0.037-0.022,0.1,0.002,0.152-0.019c0.137-0.054,0.112,0.009,0.273,0.013c0.025-0.03,0.045-0.056,0.062-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.209-0.089c-0.088-0.049-0.179-0.313-0.268-0.299v-0.051c0.035-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.014-0.121\r\n\t\t\t\tc0.035-0.199,0.06-0.377,0.285-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.033-0.038-0.051-0.064\r\n\t\t\t\tc-0.031-0.104,0.094-0.097,0.152-0.133c0.199-0.119,0.104-0.321,0.51-0.311c0.008-0.015,0.018-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.063,0.076v0.013c-0.022,0.021-0.047,0.042-0.069,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.025,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267V23.7c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.103-0.009,0.153-0.013c0.034-0.028,0.067-0.055,0.103-0.083c0.06-0.018,0.088,0.017,0.133,0.025\r\n\t\t\t\tc0.037-0.006,0.076-0.013,0.113-0.019c0.023-0.032,0.053-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.234,0.038c-0.024-0.123-0.199-0.258-0.338-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.104-0.029,0.197-0.016,0.306-0.019c0.036-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.021,0.013,0.02,0.008,0.045,0c0.051-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.048-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.223-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.187-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.031,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.412,0.152c-0.008,0.011-0.018,0.021-0.026,0.032c0.073,0.053,0.147,0.098,0.196,0.178\r\n\t\t\t\tc-0.033,0.026-0.076,0.034-0.139,0.032c-0.029,0.081-0.084,0.13-0.09,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.045,0.013,0.09,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.281,0.21c0.047,0.038,0.115,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.014,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.016,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.08,0.289-0.088,0.388-0.324,0.445c-0.131,0.031-0.221-0.051-0.336-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.099,0.022-0.277-0.021-0.382-0.038c-0.125-0.021-0.15-0.13-0.291-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.103,0.03-0.172,0.013c-0.084-0.021-0.076-0.089-0.121-0.146c-0.174,0.111-0.323-0.021-0.541,0.032\r\n\t\t\t\tc-0.195,0.047-0.34,0.172-0.514,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.139,0.074-0.203,0.007-0.318-0.013\r\n\t\t\t\tc-0.02,0.006-0.038,0.013-0.057,0.019c-0.094-0.008-0.187-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.068,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.014,0.009,0.02,0.013\r\n\t\t\t\tc-0.006,0.008-0.014,0.017-0.02,0.025c-0.113-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.09-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.014,0.006,0.026,0.013,0.039,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.143,0.01-0.16-0.044c-0.09,0.011-0.202,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.069,0.064\r\n\t\t\t\tc-0.011,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.262-0.038v0.006c-0.016,0.024-0.031,0.039-0.058,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.063,0.045c0.015,0.023-0.006,0.02-0.013,0.064h0.058\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.008,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.033-0.003-0.056-0.025-0.09-0.044c-0.011,0.023-0.021,0.047-0.031,0.07v0.045\r\n\t\t\t\tc0.104,0.013,0.133,0.046,0.221,0.07c0.004,0.06-0.021,0.124,0.007,0.165c0.034,0.021,0.067,0.042,0.103,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.056,0.021-0.084,0.032c0.006,0.013,0.014,0.025,0.02,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.018,0.019-0.023,0.019-0.032,0.051\r\n\t\t\t\tc0.007,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.01,0.004,0.014,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.084-0.003,0.086,0.023,0.146,0.051c0.028,0.014,0.049-0.015,0.076-0.038c0.024,0.059,0.051,0.119,0.075,0.178\r\n\t\t\t\tc0.1,0.031,0.23-0.025,0.3,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.029-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.107,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.012,0.017,0.024,0.034,0.037,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.018,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.037,0.107-0.063,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.306,0.578c-0.008,0.042-0.017,0.085-0.024,0.127c-0.041,0.134-0.077,0.258-0.173,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.223,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.071,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.065,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.069,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.067,0.051,0.103,0.076c0.086,0.071,0.194,0.232,0.234,0.344\r\n\t\t\t\tc0.012,0.067,0.021,0.135,0.032,0.202c-0.009,0.039-0.042,0.068-0.032,0.128c0.03,0.172,0.113,0.353,0.165,0.495v0.216\r\n\t\t\t\tc0.095,0.205,0.384,0.166,0.554,0.057c0.057-0.047,0.113-0.092,0.172-0.139c0.094-0.029,0.217,0.012,0.299-0.014\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.025,0.163,0.016,0.229-0.02c0.068-0.035,0.086-0.123,0.151-0.158\r\n\t\t\t\tc0.238-0.131,0.547-0.129,0.769-0.268c0.062-0.037,0.047-0.087,0.076-0.158c0.029-0.07,0.139-0.143,0.211-0.172\r\n\t\t\t\tc0.121-0.041,0.24-0.082,0.361-0.121c0.07,0.008,0.141,0.017,0.21,0.024c0.024-0.015,0.052-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.017-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.272-0.051c0.032-0.027,0.026-0.071,0.044-0.114\r\n\t\t\t\tc0.049-0.12,0.189-0.153,0.35-0.159c0.008-0.116-0.013-0.304,0.025-0.419c0.057-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.043-0.04,0.086-0.08,0.128-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.128-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.183-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.014-0.203\r\n\t\t\t\tc-0.015-0.018-0.023-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.041,0.011-0.062,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.478-0.019\r\n\t\t\t\tc-0.019,0.017-0.022,0.015-0.031,0.044c-0.073,0.007-0.131-0.005-0.203-0.006c0.013-0.058-0.016-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.018-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.029-0.004-0.044-0.006c-0.083,0.059-0.118,0.288-0.069,0.407c0.006,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.046-0.059-0.109-0.211-0.115-0.311c-0.033-0.027-0.035-0.039-0.076-0.032c-0.032-0.107-0.057-0.116-0.012-0.229\r\n\t\t\t\tc-0.014-0.021-0.026-0.042-0.039-0.064c0.021-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.035-0.028-0.025-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.113-0.013c-0.07-0.185-0.159-0.356-0.211-0.553\r\n\t\t\t\tc-0.035,0.009-0.071,0.017-0.107,0.026c-0.013-0.006-0.025-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.009-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.02\r\n\t\t\t\tc-0.002,0.041,0,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.241,0.032c0.043,0.069,0.144,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.137,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.312,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.105,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.187-0.121,0.196-0.172\r\n\t\t\t\tc0.099-0.035,0.203-0.075,0.324-0.044c0.051,0.012,0.039,0.034,0.09,0.038c0.015,0.043,0.01,0.1,0.031,0.159\r\n\t\t\t\tc0.026,0.069,0.096,0.113,0.096,0.21c0.067,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.143,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.217,0.083c0.131,0.021,0.254-0.027,0.355-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.19-0.07c0.08,0.167,0.549-0.018,0.687-0.025c0.073,0.053,0.075,0.102,0.069,0.223\r\n\t\t\t\tc0.047,0.011,0.094,0.021,0.141,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.113,0.032,0.19,0.076\r\n\t\t\t\tc0.03,0.042,0.06,0.085,0.089,0.127c0.104,0.123,0.381,0.229,0.598,0.153c0.002,0.052-0.021,0.064-0.051,0.095\r\n\t\t\t\tc-0.143,0.145-0.215,0.023-0.369,0.076h-0.014c0.049,0.113,0.434,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.018-0.059,0.025-0.089c0.031-0.019,0.082-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.015,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.014,0.062-0.094,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.103,0.616c0.07,0.251,0.209,0.444,0.305,0.655\r\n\t\t\t\tc0.064,0.143,0.116,0.299,0.165,0.457c0.021,0.078,0.042,0.156,0.063,0.234c0.039,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.033,0.111,0.064,0.225,0.096,0.337c0.059,0.063,0.119,0.127,0.178,0.19\r\n\t\t\t\tc0.09-0.002,0.219-0.063,0.248-0.127c0.025-0.054,0.004-0.105,0.038-0.146c0.083-0.028,0.165-0.056,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.058-0.057c0.025-0.072,0.052-0.145,0.076-0.217c0.037-0.021,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.024-0.213,0.286-0.457,0.108-0.654c0.057-0.142-0.035-0.297,0-0.451\r\n\t\t\t\tc0.021-0.047,0.041-0.094,0.063-0.141c0.06-0.048,0.118-0.061,0.19-0.019c0.049-0.031,0.078-0.104,0.096-0.165\r\n\t\t\t\tc0.059-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.049-0.168,0.108-0.217c0.063-0.031,0.127-0.063,0.19-0.094\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.179-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.194-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.147-0.181,0.229-0.273c-0.014-0.045-0.025-0.089-0.039-0.134\r\n\t\t\t\tc0.072-0.072,0.18-0.083,0.268-0.14c0.032-0.034,0.064-0.068,0.096-0.102c0.028,0.022,0.049,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.037,0.013c0.018-0.03,0.035-0.059,0.052-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.02,0.01,0.039,0.021,0.058,0.032\r\n\t\t\t\tc0.013-0.021,0.024-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.008,0.021,0.016,0.043,0.025,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.009-0.004,0.013-0.006c0.021,0.038,0.043,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.017-0.069,0.026-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.031-0.184c-0.002-0.034-0.004-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.096,0.127c0.069-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.021,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.067,0.037,0.106,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.103,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.031-0.057c0.004-0.002,0.01-0.004,0.014-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.018,0.129-0.099,0.221-0.103,0.361c0.015,0.012,0.03,0.021,0.044,0.033c0.047-0.039,0.073-0.066,0.152-0.076\r\n\t\t\t\tc-0.006,0.024-0.012,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.031h0.025c0.029-0.023,0.031-0.041,0.082-0.044v0.058\r\n\t\t\t\tc0.08,0.072,0.095-0.08,0.153-0.121c0.185-0.133,0.273-0.031,0.306-0.344H56.3c0.085,0.062,0.089,0.235,0.197,0.268\r\n\t\t\t\tc0.026,0.18,0.051,0.359,0.075,0.54c0.048,0.163,0.152,0.309,0.203,0.45c0.054,0.145,0.031,0.291,0.025,0.433\r\n\t\t\t\tc0.02,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.052,0.038\r\n\t\t\t\tc-0.064,0.162-0.162,0.391-0.103,0.566c0.024-0.012,0.051-0.021,0.075-0.032c0.086,0.091,0.166,0.136,0.211,0.272\r\n\t\t\t\tc0.02,0.008,0.033,0.01,0.064,0c0.043,0.058,0.051,0.1,0.051,0.197c0.011,0.006,0.021,0.014,0.031,0.02\r\n\t\t\t\tc0.034,0.043,0.078,0.029,0.121,0.006c0.004,0.004,0.008,0.008,0.014,0.013c-0.019,0.14-0.008,0.3,0.043,0.445\r\n\t\t\t\tc0.025,0.047,0.052,0.093,0.076,0.14c0.01,0.069-0.023,0.131,0.014,0.191c0.039,0.033,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.021,0.021,0.057,0.031,0.088C55.357,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.069-0.013c-0.035,0.011-0.068,0.021-0.103,0.032c-0.005-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.014-0.004-0.026-0.008-0.039-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.033-0.068-0.051-0.102c-0.066,0.075-0.078,0.271-0.043,0.369\r\n\t\t\t\tc0.038,0.021,0.133,0.008,0.215,0.006c-0.015,0.019-0.029,0.038-0.043,0.057c0.004,0.013,0.008,0.025,0.012,0.038\r\n\t\t\t\tc0.015,0.023,0.043,0.036,0.07,0.045v0.019c-0.045-0.004-0.088-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.031,0.045v0.044\r\n\t\t\t\tc0.041-0.029,0.065-0.018,0.127-0.006c0.023,0.067,0.084,0.076,0.113,0.133c0.014,0.054-0.037,0.118-0.037,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.02,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.062,0.047-0.192,0.025-0.281,0.045\r\n\t\t\t\tc-0.313,0.07-0.747,0.1-0.857-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.053-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.014-0.008,0.02-0.013c0.017,0.015,0.019,0.017,0.024,0.044c0.007,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.007-0.03,0.014-0.059,0.02-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.057-0.128-0.189-0.036-0.242-0.108c-0.029-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.105-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.058-0.019\r\n\t\t\t\tc-0.049-0.07-0.076-0.16-0.139-0.216c-0.016-0.004-0.031-0.009-0.045-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.031,0.114h-0.007\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.031-0.019-0.074-0.01-0.088-0.045v-0.032c0.004-0.075,0.082-0.081,0.113-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.016,0.008,0.029,0.017,0.044,0.025c0.017-0.02,0.021-0.029,0.019-0.07c0.103-0.023,0.135-0.121,0.217-0.153\r\n\t\t\t\tc0.039-0.002,0.08-0.004,0.121-0.006c0.129-0.041,0.242-0.21,0.412-0.197c0.097,0.007,0.138,0.073,0.211,0.089\r\n\t\t\t\tc0.076,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.113,0.025,0.172,0.038c0.015,0.025,0.029,0.051,0.045,0.076\r\n\t\t\t\tc-0.018,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.084,0.33c0.005,0.058,0.07,0.083,0.115,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.139-0.013-0.275-0.025-0.414-0.038c-0.037,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.037,0.102c-0.029,0.036-0.058,0.02-0.076,0.076c0.026,0.039,0.063,0.068,0.113,0.083\r\n\t\t\t\tc0.006,0.008,0.014,0.017,0.02,0.026c-0.062,0.044-0.215-0.025-0.338-0.019c-0.006,0.006-0.012,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.134,0.043,0.185,0.051c0.027,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.234,0.064c-0.033,0.064-0.069,0.143-0.094,0.203c0.022,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.026-0.072,0.01-0.226,0.031-0.305c0.088-0.015,0.174-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.016,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.043-0.024-0.084-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.024-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.052,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.367,0.016-0.324-0.226-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.024,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.062,0.004-0.119,0.022-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.123-0.633,0.191-0.826c-0.005-0.053-0.01-0.105-0.014-0.158c0.02-0.082,0.062-0.115,0.025-0.217\r\n\t\t\t\tc0.092-0.07,0.145-0.061,0.291-0.051c-0.006,0.076-0.012,0.152-0.019,0.229c0.058,0.002,0.08,0.024,0.121,0.033\r\n\t\t\t\tc0.078,0.014,0.106-0.055,0.19-0.007c0.039,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.11,1.104-0.188,1.649C57.688,35.667,57.663,35.645,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.059-0.106-0.061-0.14-0.133\r\n\t\t\t\tc-0.067-0.055-0.062-0.042-0.127,0.013c0.009,0.101,0.008,0.235-0.07,0.299c-0.044,0.036-0.079,0.04-0.102,0.103\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.037-0.004-0.057-0.006c-0.003,0.068,0.016,0.109,0.038,0.165\r\n\t\t\t\tc-0.005,0.011-0.009,0.021-0.013,0.032c-0.024,0.016-0.041,0.024-0.084,0.024c-0.002,0.005-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.004,0.045,0.026,0.06,0.045,0.103c-0.022,0.024-0.047,0.051-0.069,0.076c-0.039-0.005-0.04-0.009-0.052-0.038H41.85\r\n\t\t\t\tc-0.031,0.027-0.062,0.055-0.095,0.083c0.009,0.034,0.022,0.045,0.038,0.069c-0.014,0.01-0.025,0.018-0.038,0.026\r\n\t\t\t\tc-0.024,0.011-0.026-0.009-0.063-0.019c-0.047,0.029-0.094,0.059-0.141,0.089c0.004,0.024,0.01,0.051,0.014,0.075\r\n\t\t\t\tc-0.071,0.018-0.121-0.053-0.211-0.012c-0.017,0.019-0.033,0.037-0.051,0.057c-0.039,0.02-0.074-0.014-0.107-0.014\r\n\t\t\t\tc-0.025,0.02-0.051,0.039-0.076,0.058c-0.044,0.002-0.09,0.004-0.133,0.006c0,0.213-0.084,0.245-0.141,0.381\r\n\t\t\t\tc-0.025,0.101,0.069,0.325,0.121,0.388c-0.015,0.032-0.029,0.064-0.044,0.096c0.032,0.039,0.063,0.076,0.095,0.115\r\n\t\t\t\tc0.03,0.114-0.166,0.512-0.216,0.559c-0.024,0.009-0.051,0.017-0.075,0.025c-0.045,0.031-0.103,0.232-0.09,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.024,0.097-0.038,0.146c-0.031,0.145,0.061,0.157,0.083,0.229\r\n\t\t\t\tc0.017,0.051-0.006,0.092,0.019,0.127c0.084,0.119,0.263,0.084,0.344,0.21c0.137-0.008,0.17-0.09,0.285-0.121\r\n\t\t\t\tc0.07-0.009,0.141-0.018,0.211-0.025c0.132-0.082,0.205-0.498,0.261-0.674c0.149-0.486,0.302-0.971,0.451-1.455\r\n\t\t\t\tc0.028-0.096-0.011-0.189,0.019-0.3c0.026-0.093,0.125-0.146,0.146-0.254c-0.047-0.071-0.09-0.157-0.09-0.272\r\n\t\t\t\tc0.012-0.006,0.021-0.014,0.033-0.02c0.004-0.004,0.008-0.009,0.013-0.013c0.028,0.053,0.069,0.133,0.12,0.165\r\n\t\t\t\tc0.035-0.029,0.115-0.123,0.103-0.191c-0.026-0.053-0.055-0.105-0.083-0.158C42.622,41.831,42.634,41.518,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.143-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.018-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.018-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.01-0.034,0.014-0.051c-0.002-0.002-0.004-0.004-0.007-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.021-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.057-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.02,0.095c0.088,0.039,0.261,0.031,0.356,0.07\r\n\t\t\t\tL35.215,27.014L35.215,27.014z M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095\r\n\t\t\t\tc-0.036-0.095,0.072-0.224,0.103-0.292v-0.006c-0.059-0.014-0.121,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044\r\n\t\t\t\tc-0.091,0.081-0.209,0.007-0.254,0.152c0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z\r\n\t\t\t\t M21.217,10.482c0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.058\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.012c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089V21.17h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006L25.078,20.894L25.078,20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.022-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.146-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.029-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.101,0.036-0.199,0.072-0.299,0.108c-0.06-0.006-0.119-0.013-0.179-0.019c0.011,0.023,0.013,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.107c0.048-0.057,0.064-0.207,0.095-0.268c-0.057-0.054-0.445-0.061-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.039,0.009,0.092,0.013,0.135\r\n\t\t\t\tc0.086,0.021,0.114-0.016,0.203-0.02c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.062-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.02c0.044,0.002,0.042,0.01,0.063,0.031c-0.012,0.031-0.012,0.051,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.014-0.013,0.02v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.082-0.008-0.158,0.032-0.217v-0.006h-0.038C11.059,37.904,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.082c-0.045,0.004-0.062,0.022-0.089,0.031c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.018-0.194-0.057-0.324-0.057C9.066,33.9,9.038,33.904,9.01,33.909\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.024c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.146,0.095,0.211\r\n\t\t\t\tc0.004,0.006,0.008,0.012,0.013,0.019c-0.128,0.082-0.41,0.036-0.572-0.013c-0.013,0.015-0.025,0.029-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.013,0.053-0.048,0.102-0.058\r\n\t\t\t\tc0.076,0.012,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.15,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.061,0.178-0.076\r\n\t\t\t\tc0.044-0.012,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.046,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.113\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.17,0.311,0.153\r\n\t\t\t\tc0.044-0.013,0.058-0.078,0.14-0.058c0.051,0.014,0.064,0.041,0.127,0.039c0.002-0.012,0.004-0.021,0.006-0.033\r\n\t\t\t\tc-0.073-0.109-0.33-0.157-0.515-0.152C7.628,34.352,7.604,34.368,7.581,34.385z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.globe = globe;
\ No newline at end of file
diff --git a/dist/ikons/google_plus.js b/dist/ikons/google_plus.js
new file mode 100644
index 000000000..46945a976
--- /dev/null
+++ b/dist/ikons/google_plus.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.google_plus = void 0;
+var google_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "google_plus_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "google_plus"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "google_plus"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522c0,6.666,5.158,12.23,12.857,12.23\r\n\t\t\t\tc0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142c0,1.854,1.014,3.379,2.297,4.604\r\n\t\t\t\tc-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533c0,5.986,8.158,10.472,17.533,10.472\r\n\t\t\t\tc10.686,0,16.463-6.688,16.463-12.678c0-4.8-1.318-7.675-5.777-10.772c-1.525-1.06-4.443-3.642-4.443-5.157\r\n\t\t\t\tc0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407c0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z\r\n\t\t\t\t M29.574,46.295c0.133,0.557,0.207,1.128,0.207,1.711c0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.536-11.158-8.375\r\n\t\t\t\tc0-4.741,5.805-8.69,12.283-8.622c1.512,0.018,2.92,0.256,4.199,0.664C26.34,42.201,28.862,43.559,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54L54,14.817z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522c0,6.666,5.158,12.23,12.857,12.23\r\n\t\t\t\tc0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142c0,1.854,1.014,3.379,2.297,4.604\r\n\t\t\t\tc-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533c0,5.986,8.158,10.472,17.533,10.472\r\n\t\t\t\tc10.686,0,16.463-6.688,16.463-12.678c0-4.8-1.318-7.675-5.777-10.772c-1.525-1.06-4.443-3.642-4.443-5.157\r\n\t\t\t\tc0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407c0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z\r\n\t\t\t\t M29.574,46.295c0.133,0.557,0.207,1.128,0.207,1.711c0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.536-11.158-8.375\r\n\t\t\t\tc0-4.741,5.805-8.69,12.283-8.622c1.512,0.018,2.92,0.256,4.199,0.664C26.34,42.201,28.862,43.559,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54L54,14.817z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.google_plus = google_plus;
\ No newline at end of file
diff --git a/dist/ikons/graph_fall.js b/dist/ikons/graph_fall.js
new file mode 100644
index 000000000..3b18648b8
--- /dev/null
+++ b/dist/ikons/graph_fall.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.graph_fall = void 0;
+var graph_fall = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GRAPH_FALL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,30c-1.657,0-3,1.343-3,3v4.757L43.086,22.843v0l-5.965-5.965\r\n\t\t\tC36.578,16.336,35.828,16,35,16s-1.578,0.336-2.121,0.879L19,30.758L5.121,16.879C4.578,16.336,3.828,16,3,16\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.579,0.879,2.121l16,16C17.422,37.664,18.172,38,19,38c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\tL35,23.243l3.843,3.843l0.298,0.298l1.738,1.738L53.757,42H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tV33C64,31.343,62.657,30,61,30z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,30c-1.657,0-3,1.343-3,3v4.757L43.086,22.843v0l-5.965-5.965\r\n\t\t\tC36.578,16.336,35.828,16,35,16s-1.578,0.336-2.121,0.879L19,30.758L5.121,16.879C4.578,16.336,3.828,16,3,16\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.579,0.879,2.121l16,16C17.422,37.664,18.172,38,19,38c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\tL35,23.243l3.843,3.843l0.298,0.298l1.738,1.738L53.757,42H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tV33C64,31.343,62.657,30,61,30z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.graph_fall = graph_fall;
\ No newline at end of file
diff --git a/dist/ikons/graph_rise.js b/dist/ikons/graph_rise.js
new file mode 100644
index 000000000..612a9169e
--- /dev/null
+++ b/dist/ikons/graph_rise.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.graph_rise = void 0;
+var graph_rise = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GRAPH_RISE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,16H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L40.879,34.879\r\n\t\t\tl-1.738,1.738l-0.298,0.298L35,40.758L21.121,26.879C20.578,26.336,19.829,26,19,26c-0.828,0-1.578,0.336-2.121,0.879l-16,16\r\n\t\t\tC0.336,43.422,0,44.172,0,45c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L19,33.243l13.879,13.879\r\n\t\t\tC33.422,47.664,34.172,48,35,48c0.828,0,1.578-0.336,2.121-0.879l5.964-5.965h0L58,26.243V31c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V19C64,17.343,62.657,16,61,16z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,16H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L40.879,34.879\r\n\t\t\tl-1.738,1.738l-0.298,0.298L35,40.758L21.121,26.879C20.578,26.336,19.829,26,19,26c-0.828,0-1.578,0.336-2.121,0.879l-16,16\r\n\t\t\tC0.336,43.422,0,44.172,0,45c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L19,33.243l13.879,13.879\r\n\t\t\tC33.422,47.664,34.172,48,35,48c0.828,0,1.578-0.336,2.121-0.879l5.964-5.965h0L58,26.243V31c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V19C64,17.343,62.657,16,61,16z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.graph_rise = graph_rise;
\ No newline at end of file
diff --git a/dist/ikons/grid_1.js b/dist/ikons/grid_1.js
new file mode 100644
index 000000000..447c8ae8b
--- /dev/null
+++ b/dist/ikons/grid_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.grid_1 = void 0;
+var grid_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GRID_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GRID_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GRID_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z M55,55H41\r\n\t\t\t\tV41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55\r\n\t\t\t\tH9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41\r\n\t\t\t\tV9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14\r\n\t\t\t\tV23z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z M55,55H41\r\n\t\t\t\tV41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55\r\n\t\t\t\tH9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41\r\n\t\t\t\tV9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14\r\n\t\t\t\tV23z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.grid_1 = grid_1;
\ No newline at end of file
diff --git a/dist/ikons/grid_2.js b/dist/ikons/grid_2.js
new file mode 100644
index 000000000..a25594eea
--- /dev/null
+++ b/dist/ikons/grid_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.grid_2 = void 0;
+var grid_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GRID_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GRID_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "GRID_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M26,3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M26,3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.grid_2 = grid_2;
\ No newline at end of file
diff --git a/dist/ikons/hashtag.js b/dist/ikons/hashtag.js
new file mode 100644
index 000000000..3d6160b36
--- /dev/null
+++ b/dist/ikons/hashtag.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hashtag = void 0;
+var hashtag = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "HASHTAG_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "HASHTAG"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "HASHTAG"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M58,18h-8.689l2.613-11.325l0,0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL43.152,18H27.31l2.614-11.325l0,0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL21.152,18H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h7.767l-3.692,16H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325l0,0\r\n\t\t\t\tC12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46h15.841l-2.613,11.325l0,0\r\n\t\t\t\tC34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-7.768l3.692-16H58c1.657,0,3-1.343,3-3S59.657,18,58,18z M38.075,40H22.233l3.692-16h15.843L38.075,40z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M58,18h-8.689l2.613-11.325l0,0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL43.152,18H27.31l2.614-11.325l0,0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL21.152,18H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h7.767l-3.692,16H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325l0,0\r\n\t\t\t\tC12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46h15.841l-2.613,11.325l0,0\r\n\t\t\t\tC34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-7.768l3.692-16H58c1.657,0,3-1.343,3-3S59.657,18,58,18z M38.075,40H22.233l3.692-16h15.843L38.075,40z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.hashtag = hashtag;
\ No newline at end of file
diff --git a/dist/ikons/heart.js b/dist/ikons/heart.js
new file mode 100644
index 000000000..a16251783
--- /dev/null
+++ b/dist/ikons/heart.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heart = void 0;
+var heart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "HEART_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "HEART"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "HEART"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M58.729,9.272C55.328,5.873,50.809,4,46,4s-8.662,1.727-12.061,5.126c-0.002,0.002-0.004,0.003-0.006,0.005l-0.002,0.001\r\n\t\t\t\tL32,11.565l-1.932-2.286c-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4\r\n\t\t\t\tS8.672,5.873,5.272,9.272C1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.816\r\n\t\t\t\tC29.911,59.574,30.933,60,32,60c1.066,0,2.089-0.426,2.84-1.184l23.893-24.092C62.129,31.325,64,26.806,64,22\r\n\t\t\t\tC64,17.192,62.128,12.672,58.729,9.272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M58.729,9.272C55.328,5.873,50.809,4,46,4s-8.662,1.727-12.061,5.126c-0.002,0.002-0.004,0.003-0.006,0.005l-0.002,0.001\r\n\t\t\t\tL32,11.565l-1.932-2.286c-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4\r\n\t\t\t\tS8.672,5.873,5.272,9.272C1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.816\r\n\t\t\t\tC29.911,59.574,30.933,60,32,60c1.066,0,2.089-0.426,2.84-1.184l23.893-24.092C62.129,31.325,64,26.806,64,22\r\n\t\t\t\tC64,17.192,62.128,12.672,58.729,9.272z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.heart = heart;
\ No newline at end of file
diff --git a/dist/ikons/home.js b/dist/ikons/home.js
new file mode 100644
index 000000000..e2edea6fd
--- /dev/null
+++ b/dist/ikons/home.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.home = void 0;
+var home = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "HOME_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "HOME"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "HOME"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39z M27,51H15V39h12V51z M63.189,31.96\r\n\t\t\t\tl0.006-0.007L52,20.757V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v2.757L34.195,2.953l-0.002,0.002\r\n\t\t\t\tc-0.478-0.512-1.131-0.857-1.865-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2H32c-0.85,0-1.616,0.354-2.162,0.922L0.922,31.838\r\n\t\t\t\tC0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001l0.077,0.072V9.32\r\n\t\t\t\tl26.877,26.877l0.007-0.008C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3C64,33.21,63.688,32.496,63.189,31.96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39z M27,51H15V39h12V51z M63.189,31.96\r\n\t\t\t\tl0.006-0.007L52,20.757V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v2.757L34.195,2.953l-0.002,0.002\r\n\t\t\t\tc-0.478-0.512-1.131-0.857-1.865-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2H32c-0.85,0-1.616,0.354-2.162,0.922L0.922,31.838\r\n\t\t\t\tC0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001l0.077,0.072V9.32\r\n\t\t\t\tl26.877,26.877l0.007-0.008C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3C64,33.21,63.688,32.496,63.189,31.96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.home = home;
\ No newline at end of file
diff --git a/dist/ikons/imac.js b/dist/ikons/imac.js
new file mode 100644
index 000000000..8daf141ba
--- /dev/null
+++ b/dist/ikons/imac.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.imac = void 0;
+var imac = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IMAC_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IMAC"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IMAC"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.imac = imac;
\ No newline at end of file
diff --git a/dist/ikons/image.js b/dist/ikons/image.js
new file mode 100644
index 000000000..e04cce78e
--- /dev/null
+++ b/dist/ikons/image.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.image = void 0;
+var image = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IMAGE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IMAGE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IMAGE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M40,15L40,15h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V13l0,0V9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4\r\n\t\t\t\tl0,0V40l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3v9h-9l0,0c-1.657,0-3,1.343-3,3S38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3l0,0h-9v-9l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v11l0,0v4H24L24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tl0,0v-9h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H9v4l0,0V24L9,24z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M40,15L40,15h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V13l0,0V9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4\r\n\t\t\t\tl0,0V40l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3v9h-9l0,0c-1.657,0-3,1.343-3,3S38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3l0,0h-9v-9l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v11l0,0v4H24L24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tl0,0v-9h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H9v4l0,0V24L9,24z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.image = image;
\ No newline at end of file
diff --git a/dist/ikons/inbox.js b/dist/ikons/inbox.js
new file mode 100644
index 000000000..e06713757
--- /dev/null
+++ b/dist/ikons/inbox.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inbox = void 0;
+var inbox = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "INBOX_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "INBOX"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "INBOX"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.279,9,53,9H11c-1.28,0-2.365,0.806-2.796,1.935\r\n\t\t\t\tl-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V33\r\n\t\t\t\tC64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h37.865\r\n\t\t\t\tl5.715,15H47z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.279,9,53,9H11c-1.28,0-2.365,0.806-2.796,1.935\r\n\t\t\t\tl-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V33\r\n\t\t\t\tC64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h37.865\r\n\t\t\t\tl5.715,15H47z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.inbox = inbox;
\ No newline at end of file
diff --git a/dist/ikons/inbox_in.js b/dist/ikons/inbox_in.js
new file mode 100644
index 000000000..a1c7dc36a
--- /dev/null
+++ b/dist/ikons/inbox_in.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inbox_in = void 0;
+var inbox_in = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "INBOX__x2F__IN_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "INBOX__x2F__IN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "INBOX__x2F__IN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14H38v6h12.932l5.715,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15H26v-6\r\n\t\t\t\tH11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC64,37.621,63.93,37.258,63.8,36.924z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14H38v6h12.932l5.715,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15H26v-6\r\n\t\t\t\tH11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC64,37.621,63.93,37.258,63.8,36.924z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.inbox_in = inbox_in;
\ No newline at end of file
diff --git a/dist/ikons/inbox_out.js b/dist/ikons/inbox_out.js
new file mode 100644
index 000000000..0f5939572
--- /dev/null
+++ b/dist/ikons/inbox_out.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.inbox_out = void 0;
+var inbox_out = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "INBOX__x2F__OUT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "INBOX__x2F__OUT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "INBOX__x2F__OUT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3s3-1.343,3-3V15.243l1.879,1.879\r\n\t\t\t\tC37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,5.336,32.829,5,32,5\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15C22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14h-8.102C44.954,14.327,45,14.658,45,15c0,2.09-1.07,3.926-2.691,5h8.623l5.715,15H47\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623C20.071,18.926,19,17.09,19,15\r\n\t\t\t\tc0-0.342,0.046-0.673,0.101-1H11l0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.93,37.258,63.8,36.924z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3s3-1.343,3-3V15.243l1.879,1.879\r\n\t\t\t\tC37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,5.336,32.829,5,32,5\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15C22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14h-8.102C44.954,14.327,45,14.658,45,15c0,2.09-1.07,3.926-2.691,5h8.623l5.715,15H47\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623C20.071,18.926,19,17.09,19,15\r\n\t\t\t\tc0-0.342,0.046-0.673,0.101-1H11l0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.93,37.258,63.8,36.924z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.inbox_out = inbox_out;
\ No newline at end of file
diff --git a/dist/ikons/index.js b/dist/ikons/index.js
new file mode 100644
index 000000000..c28ff3c23
--- /dev/null
+++ b/dist/ikons/index.js
@@ -0,0 +1 @@
+"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.crop=exports.credit_card=exports.copy_2=exports.copy_1=exports.computer_upload=exports.computer_remove=exports.computer_ok=exports.computer_download=exports.computer_delete=exports.computer_add=exports.compass=exports.command=exports.columns=exports.cog=exports.code=exports.cloud_upload=exports.cloud_ok=exports.cloud_fail=exports.cloud_download=exports.cloud=exports.close=exports.clip=exports.circle_up=exports.circle_stop=exports.circle_skip_previous=exports.circle_skip_next=exports.circle_right=exports.circle_rewind=exports.circle_plus=exports.circle_play=exports.circle_pause=exports.circle_ok=exports.circle_minus=exports.circle_left=exports.circle_fast_forward=exports.circle_down=exports.circle_delete=exports.circle=exports.chart_7_8=exports.chart_5_8=exports.chart_3_8=exports.chart_3_4=exports.chart_1_8=exports.chart_1_4=exports.chart_1_2=exports.chart=exports.cassette=exports.camera=exports.calendar_ok=exports.calendar_add=exports.calendar=exports.bullseye=exports.browser_remove=exports.browser_ok=exports.browser_layout_3=exports.browser_layout_2=exports.browser_layout_1=exports.browser_delete=exports.browser_add=exports.browser=exports.brightness_low=exports.brightness_high=exports.bookmark=exports.book_2=exports.book_1=exports.book=exports.bluetooth=exports.block=exports.bin=exports.bell=exports.behance=exports.battery_full=exports.battery_empty=exports.battery_2_3=exports.battery_1_3=exports.basket_remove=exports.basket_ok=exports.basket_delete=exports.basket_add=exports.basket=exports.bar_graph=exports.bar_chart_3=exports.bar_chart_2=exports.bar_chart_1=exports.arrows_vertical_2=exports.arrows_vertical=exports.arrows_horizontal_2=exports.arrows_horizontal=exports.arrows=exports.arrow_up=exports.arrow_right=exports.arrow_left=exports.arrow_down=exports.arrow_2=exports.arrow_1=exports.appstore=exports.apple=exports.android=exports.alt=exports.alarm=void 0;exports.play=exports.pinterest_2=exports.pinterest_1=exports.pin_zoom_out=exports.pin_zoom_in=exports.pin_2=exports.pin_1=exports.pill=exports.pie_chart=exports.picture=exports.pen_3=exports.pen_2=exports.pen_1=exports.paypal=exports.pause=exports.notepad_remove=exports.notepad_ok=exports.notepad_delete=exports.notepad_add=exports.notepad=exports.music=exports.moustache=exports.more_2=exports.more=exports.minus=exports.microsoft=exports.microphone_off=exports.microphone=exports.map_remove=exports.map_ok=exports.map_delete=exports.map_add=exports.map=exports.mail_outgoing=exports.mail_incoming=exports.mail=exports.magnifying_glass_remove=exports.magnifying_glass_add=exports.magnifying_glass=exports.macbook=exports.logout=exports.login=exports.lock=exports.location=exports.loading=exports.list_2=exports.list=exports.linkedin=exports.link=exports.line_graph_square=exports.line_graph=exports.layers=exports.iphone=exports.ipad=exports.instagram=exports.inbox_out=exports.inbox_in=exports.inbox=exports.image=exports.imac=exports.home=exports.heart=exports.hashtag=exports.grid_2=exports.grid_1=exports.graph_rise=exports.graph_fall=exports.google_plus=exports.globe=exports.frame=exports.foursquare=exports.forrst=exports.font_size_up=exports.font_size_down=exports.following=exports.followers=exports.folder_remove=exports.folder_ok=exports.folder_delete=exports.folder_add=exports.folder=exports.first_aid=exports.fast_forward=exports.facebook_2=exports.facebook_1=exports.equalizer=exports.eject=exports.dropbox=exports.drop=exports.dribbble=exports.download=exports.documents=exports.document_upload=exports.document_remove=exports.document_ok=exports.document_download=exports.document_delete=exports.document_add=exports.documentIcon=exports.diskette=void 0;exports.zoom_out=exports.zoom_in=exports.youtube=exports.windows=exports.wifi_3=exports.wifi_2=exports.wifi_1=exports.warning=exports.volume_up=exports.volume_off=exports.volume_mute=exports.volume_down=exports.volume_3=exports.volume_2=exports.volume_1=exports.voicemail=exports.vimeo=exports.view_off=exports.view=exports.users=exports.user_square=exports.user_remove=exports.user_ok=exports.user_delete=exports.user_circle=exports.user_add=exports.user=exports.upload=exports.unlock=exports.twitter=exports.tumblr=exports.timer=exports.time=exports.tick=exports.text_right=exports.text_left=exports.text_justify=exports.text_center=exports.terminal=exports.target=exports.tags=exports.tag=exports.suitcase=exports.stop=exports.star=exports.square_up=exports.square_right=exports.square_remove=exports.square_ok=exports.square_left=exports.square_down=exports.square_delete=exports.square_dashed=exports.square_add=exports.square=exports.spotify=exports.speech_bubbles=exports.speech_bubble_2=exports.speech_bubble_1=exports.speech_4=exports.speech_3=exports.speech_2=exports.speech_1=exports.slideshow=exports.skype=exports.skip_previous=exports.skip_next=exports.shuffle=exports.shopping_cart_remove=exports.shopping_cart_ok=exports.shopping_cart_delete=exports.shopping_cart_add=exports.shopping_cart=exports.shopping_bag=exports.shop=exports.share_2=exports.share=exports.screen_expand_3=exports.screen_expand_2=exports.screen_expand_1=exports.rss=exports.rewind=exports.resize_6=exports.resize_5=exports.resize_4=exports.resize_3=exports.resize_2=exports.resize_1=exports.repeat_2=exports.repeat_1=exports.repeat=exports.record=exports.progress=exports.printer=exports.presentation=exports.power=exports.polaroids=exports.polaroid=exports.plus=exports.plug=void 0;var alarm={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ALARM_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ALARM"},"children":[{"name":"g","attribs":{"id":"ALARM"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M44,31h-9V18c0-1.657-1.343-3-3-3s-3,1.343-3,3v16c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S45.657,31,44,31z\r\n\t\t\t\t M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14c0,2.8,0.967,5.37,2.575,7.412\r\n\t\t\t\tC5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521c7.393,3.167,13.318,9.093,16.484,16.485\r\n\t\t\t\tc1.574-2,2.521-4.516,2.521-7.257C64,7.26,58.74,2,52.251,2z M32,5C15.984,5,3,17.984,3,34c0,7.691,3.015,14.664,7.902,19.855\r\n\t\t\t\tl-4.023,4.023C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l4.327-4.327\r\n\t\t\t\tC20.144,61.066,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.227l4.356,4.357C53.473,62.668,54.215,63,55.034,63\r\n\t\t\t\tC56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.562-0.869-2.099l-4.056-4.056C57.977,48.688,61,41.704,61,34\r\n\t\t\t\tC61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23c12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[{"name":"path","attribs":{"d":"M44,31h-9V18c0-1.657-1.343-3-3-3s-3,1.343-3,3v16c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S45.657,31,44,31z\r\n\t\t\t\t M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14c0,2.8,0.967,5.37,2.575,7.412\r\n\t\t\t\tC5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521c7.393,3.167,13.318,9.093,16.484,16.485\r\n\t\t\t\tc1.574-2,2.521-4.516,2.521-7.257C64,7.26,58.74,2,52.251,2z M32,5C15.984,5,3,17.984,3,34c0,7.691,3.015,14.664,7.902,19.855\r\n\t\t\t\tl-4.023,4.023C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l4.327-4.327\r\n\t\t\t\tC20.144,61.066,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.227l4.356,4.357C53.473,62.668,54.215,63,55.034,63\r\n\t\t\t\tC56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.562-0.869-2.099l-4.056-4.056C57.977,48.688,61,41.704,61,34\r\n\t\t\t\tC61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23c12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[]}]}]}]}]}]}]}]};exports.alarm=alarm;var alt={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ALT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,20h30c1.657,0,3-1.343,3-3s-1.343-3-3-3H31c-1.657,0-3,1.343-3,3\r\n\t\t\tS29.343,20,31,20z M61,44H32.651L14.535,15.395l-0.006,0.004C13.997,14.56,13.066,14,12,14H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\th7.349l18.117,28.605l0.006-0.004C29.003,49.44,29.934,50,31,50h30c1.657,0,3-1.343,3-3C64,45.343,62.657,44,61,44z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,20h30c1.657,0,3-1.343,3-3s-1.343-3-3-3H31c-1.657,0-3,1.343-3,3\r\n\t\t\tS29.343,20,31,20z M61,44H32.651L14.535,15.395l-0.006,0.004C13.997,14.56,13.066,14,12,14H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\th7.349l18.117,28.605l0.006-0.004C29.003,49.44,29.934,50,31,50h30c1.657,0,3-1.343,3-3C64,45.343,62.657,44,61,44z"},"children":[]}]}]}]}]}]};exports.alt=alt;var android={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"android_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"android"},"children":[{"name":"g","attribs":{"id":"android"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752c-0.092,0.327-0.144,0.673-0.144,1.031v7.848\r\n\t\t\t\tc0,2.052,1.618,3.718,3.612,3.718c1.995,0,3.613-1.666,3.613-3.718V52.45c0-0.358-0.053-0.704-0.144-1.031h6.708\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.718,3.612,3.718s3.613-1.666,3.613-3.718V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.145-1.031h2.752c2.104,0,3.812-1.761,3.812-3.926v-27.26h-33.71V47.493z M9.626,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.901c0,2.053,1.617,3.717,3.612,3.717c1.994,0,3.612-1.664,3.612-3.717v-15.9\r\n\t\t\t\tC13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233c-1.995,0-3.611,1.664-3.611,3.717v15.901\r\n\t\t\t\tc0,2.053,1.616,3.717,3.611,3.717s3.611-1.664,3.611-3.717v-15.9C58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355\r\n\t\t\t\tl0.678-1.047l0.668-1.032l1.502-2.318c0.184-0.285,0.108-0.669-0.166-0.859c-0.279-0.191-0.652-0.114-0.837,0.172l-1.608,2.485\r\n\t\t\t\tl-0.678,1.045L39.662,4.86c-2.176-0.868-4.602-1.355-7.162-1.355c-2.559,0-4.986,0.487-7.16,1.354L24.655,3.8l-0.676-1.045\r\n\t\t\t\tL22.367,0.27c-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857S26.275,12.799,25.278,12.799z\r\n\t\t\t\t M39.725,12.799c-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857s1.805,0.831,1.805,1.857S40.723,12.799,39.725,12.799\r\n\t\t\t\tz"},"children":[{"name":"path","attribs":{"d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752c-0.092,0.327-0.144,0.673-0.144,1.031v7.848\r\n\t\t\t\tc0,2.052,1.618,3.718,3.612,3.718c1.995,0,3.613-1.666,3.613-3.718V52.45c0-0.358-0.053-0.704-0.144-1.031h6.708\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.718,3.612,3.718s3.613-1.666,3.613-3.718V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.145-1.031h2.752c2.104,0,3.812-1.761,3.812-3.926v-27.26h-33.71V47.493z M9.626,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.901c0,2.053,1.617,3.717,3.612,3.717c1.994,0,3.612-1.664,3.612-3.717v-15.9\r\n\t\t\t\tC13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233c-1.995,0-3.611,1.664-3.611,3.717v15.901\r\n\t\t\t\tc0,2.053,1.616,3.717,3.611,3.717s3.611-1.664,3.611-3.717v-15.9C58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355\r\n\t\t\t\tl0.678-1.047l0.668-1.032l1.502-2.318c0.184-0.285,0.108-0.669-0.166-0.859c-0.279-0.191-0.652-0.114-0.837,0.172l-1.608,2.485\r\n\t\t\t\tl-0.678,1.045L39.662,4.86c-2.176-0.868-4.602-1.355-7.162-1.355c-2.559,0-4.986,0.487-7.16,1.354L24.655,3.8l-0.676-1.045\r\n\t\t\t\tL22.367,0.27c-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857S26.275,12.799,25.278,12.799z\r\n\t\t\t\t M39.725,12.799c-0.998,0-1.806-0.833-1.806-1.859s0.808-1.857,1.806-1.857s1.805,0.831,1.805,1.857S40.723,12.799,39.725,12.799\r\n\t\t\t\tz"},"children":[]}]}]}]}]}]}]}]};exports.android=android;var apple={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"apple_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"apple"},"children":[{"name":"g","attribs":{"id":"apple"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M42.111,10.214c2.4-2.709,4.021-6.473,3.58-10.221c-3.459,0.13-7.647,2.14-10.131,4.846\r\n\t\t\t\tc-2.225,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.111,10.214z M50.771,34.008\r\n\t\t\t\tc-0.086-8.109,7.104-11.997,7.427-12.193c-4.041-5.499-10.337-6.254-12.576-6.34c-5.354-0.506-10.451,2.935-13.169,2.935\r\n\t\t\t\tc-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028c-6.065,9.793-1.552,24.307,4.359,32.256\r\n\t\t\t\tc2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622c5.269,0,6.746,2.622,11.354,2.541\r\n\t\t\t\tc4.685-0.079,7.655-3.959,10.522-7.859c3.318-4.514,4.683-8.886,4.765-9.106C59.896,46.91,50.865,43.689,50.771,34.008z"},"children":[{"name":"path","attribs":{"d":"M42.111,10.214c2.4-2.709,4.021-6.473,3.58-10.221c-3.459,0.13-7.647,2.14-10.131,4.846\r\n\t\t\t\tc-2.225,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.111,10.214z M50.771,34.008\r\n\t\t\t\tc-0.086-8.109,7.104-11.997,7.427-12.193c-4.041-5.499-10.337-6.254-12.576-6.34c-5.354-0.506-10.451,2.935-13.169,2.935\r\n\t\t\t\tc-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028c-6.065,9.793-1.552,24.307,4.359,32.256\r\n\t\t\t\tc2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622c5.269,0,6.746,2.622,11.354,2.541\r\n\t\t\t\tc4.685-0.079,7.655-3.959,10.522-7.859c3.318-4.514,4.683-8.886,4.765-9.106C59.896,46.91,50.865,43.689,50.771,34.008z"},"children":[]}]}]}]}]}]}]}]};exports.apple=apple;var appstore={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"appstore_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"appstore"},"children":[{"name":"g","attribs":{"id":"appstore"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31.03,28.052L24.522,39.43h17.662c-1.283-2.539-2.981-6.173-5.262-11.376H31.03V28.052z M31.735,21.424\r\n\t\t\t\tc0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328L12.899,39.43l-5.433,9.5\r\n\t\t\t\tc-0.409,0.709-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202l4.879-8.532L31.735,21.424z\r\n\t\t\t\t M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.735l-0.666,5.824c-0.093,0.811,0.382,1.102,1.054,0.643\r\n\t\t\t\tl4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35c-0.74,0-1.339,0.601-1.339,1.343v8.692\r\n\t\t\t\tc0,0.741,0.599,1.343,1.339,1.343h8.464L16.322,28.052z M62.65,28.052H49.643c1.53,2.879,2.948,5.589,3.948,7.505\r\n\t\t\t\tc0.692,1.325,1.239,2.373,1.433,2.723c0.203,0.373,0.347,0.757,0.444,1.15h7.183c0.74,0,1.34-0.602,1.34-1.343v-8.692\r\n\t\t\t\tC63.988,28.654,63.389,28.052,62.65,28.052z M52.677,39.575c-0.022-0.038-0.051-0.093-0.079-0.146\r\n\t\t\t\tc-0.357-0.664-1.255-2.394-2.433-4.639c-0.015-0.031-0.028-0.057-0.043-0.087c-0.09-0.173-0.181-0.347-0.274-0.524\r\n\t\t\t\tc-0.068-0.128-0.135-0.258-0.205-0.388c-0.057-0.112-0.117-0.224-0.175-0.339c-0.104-0.199-0.211-0.396-0.317-0.602\r\n\t\t\t\tc-0.033-0.063-0.065-0.127-0.1-0.19c-0.119-0.229-0.24-0.459-0.363-0.693c-0.035-0.066-0.07-0.132-0.106-0.201\r\n\t\t\t\tc-2.714-5.151-6.123-11.492-8.228-14.827c-3.683-5.844-8.599-15.583-9.971-14.89C28.46,3.011,34.41,15.374,36.38,20.02\r\n\t\t\t\tc1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.773,2.14,0.344,3.169-0.084C51.773,42.729,53.619,41.3,52.677,39.575z\r\n\t\t\t\t M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107c1.657,2.349,5.362,2.453,5.85,4.012\r\n\t\t\t\tC62.064,61.986,63.229,50.061,56.504,53.867z M57.07,48.749l-1.834-3.536c-0.416-0.8-1.393-1.126-2.172-0.727l-2.213,1.145\r\n\t\t\t\tc-0.778,0.405-1.024,1.354-0.545,2.117l2.321,3.682c0.479,0.758,1.491,1.008,2.242,0.553l1.58-0.953\r\n\t\t\t\tC57.205,50.575,57.484,49.549,57.07,48.749z"},"children":[{"name":"path","attribs":{"d":"M31.03,28.052L24.522,39.43h17.662c-1.283-2.539-2.981-6.173-5.262-11.376H31.03V28.052z M31.735,21.424\r\n\t\t\t\tc0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328L12.899,39.43l-5.433,9.5\r\n\t\t\t\tc-0.409,0.709-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202l4.879-8.532L31.735,21.424z\r\n\t\t\t\t M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.735l-0.666,5.824c-0.093,0.811,0.382,1.102,1.054,0.643\r\n\t\t\t\tl4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35c-0.74,0-1.339,0.601-1.339,1.343v8.692\r\n\t\t\t\tc0,0.741,0.599,1.343,1.339,1.343h8.464L16.322,28.052z M62.65,28.052H49.643c1.53,2.879,2.948,5.589,3.948,7.505\r\n\t\t\t\tc0.692,1.325,1.239,2.373,1.433,2.723c0.203,0.373,0.347,0.757,0.444,1.15h7.183c0.74,0,1.34-0.602,1.34-1.343v-8.692\r\n\t\t\t\tC63.988,28.654,63.389,28.052,62.65,28.052z M52.677,39.575c-0.022-0.038-0.051-0.093-0.079-0.146\r\n\t\t\t\tc-0.357-0.664-1.255-2.394-2.433-4.639c-0.015-0.031-0.028-0.057-0.043-0.087c-0.09-0.173-0.181-0.347-0.274-0.524\r\n\t\t\t\tc-0.068-0.128-0.135-0.258-0.205-0.388c-0.057-0.112-0.117-0.224-0.175-0.339c-0.104-0.199-0.211-0.396-0.317-0.602\r\n\t\t\t\tc-0.033-0.063-0.065-0.127-0.1-0.19c-0.119-0.229-0.24-0.459-0.363-0.693c-0.035-0.066-0.07-0.132-0.106-0.201\r\n\t\t\t\tc-2.714-5.151-6.123-11.492-8.228-14.827c-3.683-5.844-8.599-15.583-9.971-14.89C28.46,3.011,34.41,15.374,36.38,20.02\r\n\t\t\t\tc1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.773,2.14,0.344,3.169-0.084C51.773,42.729,53.619,41.3,52.677,39.575z\r\n\t\t\t\t M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107c1.657,2.349,5.362,2.453,5.85,4.012\r\n\t\t\t\tC62.064,61.986,63.229,50.061,56.504,53.867z M57.07,48.749l-1.834-3.536c-0.416-0.8-1.393-1.126-2.172-0.727l-2.213,1.145\r\n\t\t\t\tc-0.778,0.405-1.024,1.354-0.545,2.117l2.321,3.682c0.479,0.758,1.491,1.008,2.242,0.553l1.58-0.953\r\n\t\t\t\tC57.205,50.575,57.484,49.549,57.07,48.749z"},"children":[]}]}]}]}]}]}]}]};exports.appstore=appstore;var arrow_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_1"},"children":[{"name":"g","attribs":{"id":"ARROW_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-2.999,1.343-2.999,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.122l1.879,1.879h-1.773v0.005h-3l0,0h-2.756L15.118,10.879C14.575,10.336,13.825,10,12.997,10\r\n\t\t\t\tH2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126c0.543,0.543,1.293,0.879,2.12,0.879h8.767\r\n\t\t\t\tl-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001\r\n\t\t\t\tC63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[{"name":"path","attribs":{"d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-2.999,1.343-2.999,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.122l1.879,1.879h-1.773v0.005h-3l0,0h-2.756L15.118,10.879C14.575,10.336,13.825,10,12.997,10\r\n\t\t\t\tH2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126c0.543,0.543,1.293,0.879,2.12,0.879h8.767\r\n\t\t\t\tl-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001\r\n\t\t\t\tC63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_1=arrow_1;var arrow_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_2"},"children":[{"name":"g","attribs":{"id":"ARROW_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9l0,0H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121\r\n\t\t\t\tc0,1.657,1.342,3,3,3c0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121S63.68,18.427,63.137,17.884z"},"children":[{"name":"path","attribs":{"d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9l0,0H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121\r\n\t\t\t\tc0,1.657,1.342,3,3,3c0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121S63.68,18.427,63.137,17.884z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_2=arrow_2;var arrow_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001L31.993,36.764L16.275,21.046\r\n\t\t\t\tC15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008l18,18l0.001-0.001\r\n\t\t\t\tC30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0c0.849,0,1.612-0.352,2.159-0.918\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C52.68,24.543,53,23.809,53,23z"},"children":[{"name":"path","attribs":{"d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001L31.993,36.764L16.275,21.046\r\n\t\t\t\tC15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008l18,18l0.001-0.001\r\n\t\t\t\tC30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0c0.849,0,1.612-0.352,2.159-0.918\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C52.68,24.543,53,23.809,53,23z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_down=arrow_down;var arrow_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.807,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987c0,0.002,0,0.004,0,0.007\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.849,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001C39.458,52.68,40.191,53,41,53\r\n\t\t\t\tc1.657,0,3-1.343,3-3C44,49.191,43.68,48.458,43.16,47.917L43.16,47.917z"},"children":[{"name":"path","attribs":{"d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.807,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987c0,0.002,0,0.004,0,0.007\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.849,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001C39.458,52.68,40.191,53,41,53\r\n\t\t\t\tc1.657,0,3-1.343,3-3C44,49.191,43.68,48.458,43.16,47.917L43.16,47.917z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_left=arrow_left;var arrow_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008\r\n\t\t\t\tC24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L20.84,47.917l0.001,0.001\r\n\t\t\t\tC20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.32,2.082-0.841l0.001,0.001l18-18l-0.001-0.001\r\n\t\t\t\tC43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[{"name":"path","attribs":{"d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008\r\n\t\t\t\tC24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L20.84,47.917l0.001,0.001\r\n\t\t\t\tC20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.32,2.082-0.841l0.001,0.001l18-18l-0.001-0.001\r\n\t\t\t\tC43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_right=arrow_right;var arrow_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001C33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0\r\n\t\t\t\ts-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001l-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718L47.917,43.16l0.001-0.001C48.458,43.68,49.191,44,50,44\r\n\t\t\t\tc1.657,0,3-1.343,3-3C53,40.191,52.68,39.458,52.159,38.918z"},"children":[{"name":"path","attribs":{"d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001C33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0\r\n\t\t\t\ts-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001l-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718L47.917,43.16l0.001-0.001C48.458,43.68,49.191,44,50,44\r\n\t\t\t\tc1.657,0,3-1.343,3-3C53,40.191,52.68,39.458,52.159,38.918z"},"children":[]}]}]}]}]}]}]}]};exports.arrow_up=arrow_up;var arrows={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROWS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS"},"children":[{"name":"g","attribs":{"id":"ARROWS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\ts0.384,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0\r\n\t\t\t\tL10.818,35H29v18.182l-3.77-4.188l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0\r\n\t\t\t\tl9,10l0,0C30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.188,3.77l0,0C48.384,39.32,48,40.115,48,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z"},"children":[{"name":"path","attribs":{"d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\ts0.384,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0\r\n\t\t\t\tL10.818,35H29v18.182l-3.77-4.188l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0\r\n\t\t\t\tl9,10l0,0C30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.188,3.77l0,0C48.384,39.32,48,40.115,48,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z"},"children":[]}]}]}]}]}]}]}]};exports.arrows=arrows;var arrows_horizontal={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,22h32l0,0h18.182l-4.188,3.77L49,25.779c-0.609,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.771,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222c0.609-0.549,1-1.337,1-2.222s-0.391-1.673-1-2.222l0.007-0.008l-10-9\r\n\t\t\t\tL53,7.778C52.468,7.3,51.771,7,51,7c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39l0,0H26l0,0\r\n\t\t\t\tH10.818l0,0H3c-1.657,0-3,1.343-3,3S1.343,22,3,22z M61,42h-7.818l0,0H38l0,0H25l0,0H10.818l4.189-3.77L15,38.223\r\n\t\t\t\tc0.61-0.55,1-1.337,1-2.223c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.777l-0.007-0.008l-10,9L1,42.777\r\n\t\t\t\tC0.391,43.328,0,44.115,0,45s0.391,1.672,1,2.223L0.993,47.23l10,9L11,56.223C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.223l0.007-0.008L10.818,48H35l0,0h26c1.657,0,3-1.343,3-3S62.657,42,61,42z"},"children":[{"name":"path","attribs":{"d":"M3,22h32l0,0h18.182l-4.188,3.77L49,25.779c-0.609,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.771,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222c0.609-0.549,1-1.337,1-2.222s-0.391-1.673-1-2.222l0.007-0.008l-10-9\r\n\t\t\t\tL53,7.778C52.468,7.3,51.771,7,51,7c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39l0,0H26l0,0\r\n\t\t\t\tH10.818l0,0H3c-1.657,0-3,1.343-3,3S1.343,22,3,22z M61,42h-7.818l0,0H38l0,0H25l0,0H10.818l4.189-3.77L15,38.223\r\n\t\t\t\tc0.61-0.55,1-1.337,1-2.223c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.777l-0.007-0.008l-10,9L1,42.777\r\n\t\t\t\tC0.391,43.328,0,44.115,0,45s0.391,1.672,1,2.223L0.993,47.23l10,9L11,56.223C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.223l0.007-0.008L10.818,48H35l0,0h26c1.657,0,3-1.343,3-3S62.657,42,61,42z"},"children":[]}]}]}]}]}]}]}]};exports.arrows_horizontal=arrows_horizontal;var arrows_horizontal_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL"},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32s0.383,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23l0,0L10.818,35h42.364l-4.188,3.77l0,0\r\n\t\t\t\tC48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C52.475,20.292,51.771,20,51,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32s0.383,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23l0,0L10.818,35h42.364l-4.188,3.77l0,0\r\n\t\t\t\tC48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.682,64,32.885,64,32z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.arrows_horizontal_2=arrows_horizontal_2;var arrows_vertical={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L48,53.182V29l0,0V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v7.818l0,0V26l0,0v13l0,0v14.182l-3.77-4.188L38.223,49c-0.55-0.609-1.338-1-2.223-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.771,0.3,1.468,0.777,2l-0.008,0.007l9,10L42.777,63c0.55,0.609,1.338,1,2.223,1s1.672-0.391,2.223-1l0.008,0.007l9-10\r\n\t\t\t\tL56.223,53C56.701,52.468,57,51.771,57,51z M30.23,10.993l-9-10L21.222,1C20.673,0.391,19.885,0,19,0s-1.673,0.391-2.222,1.001\r\n\t\t\t\tL16.77,0.993l-9,10L7.778,11C7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818\r\n\t\t\t\tV25l0,0v13l0,0v15.182l0,0V61c0,1.657,1.343,3,3,3s3-1.343,3-3V29l0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[{"name":"path","attribs":{"d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L48,53.182V29l0,0V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v7.818l0,0V26l0,0v13l0,0v14.182l-3.77-4.188L38.223,49c-0.55-0.609-1.338-1-2.223-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.771,0.3,1.468,0.777,2l-0.008,0.007l9,10L42.777,63c0.55,0.609,1.338,1,2.223,1s1.672-0.391,2.223-1l0.008,0.007l9-10\r\n\t\t\t\tL56.223,53C56.701,52.468,57,51.771,57,51z M30.23,10.993l-9-10L21.222,1C20.673,0.391,19.885,0,19,0s-1.673,0.391-2.222,1.001\r\n\t\t\t\tL16.77,0.993l-9,10L7.778,11C7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818\r\n\t\t\t\tV25l0,0v13l0,0v15.182l0,0V61c0,1.657,1.343,3,3,3s3-1.343,3-3V29l0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[]}]}]}]}]}]}]}]};exports.arrows_vertical=arrows_vertical;var arrows_vertical_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL"},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,48c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0\r\n\t\t\t\tl-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.188\r\n\t\t\t\tl0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51C44,49.343,42.657,48,41,48z"},"children":[{"name":"path","attribs":{"d":"M41,48c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0C39.318,15.616,40.115,16,41,16\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,0.384,32.885,0,32,0s-1.681,0.384-2.23,0.993l0,0\r\n\t\t\t\tl-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3c0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.188\r\n\t\t\t\tl0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.771,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64s1.682-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.771,44,51C44,49.343,42.657,48,41,48z"},"children":[]}]}]}]}]}]}]}]};exports.arrows_vertical_2=arrows_vertical_2;var bar_chart_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BAR_CHART_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC43,48.657,44.343,50,46,50z M12,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC9,48.657,10.343,50,12,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC43,48.657,44.343,50,46,50z M12,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC9,48.657,10.343,50,12,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z"},"children":[]}]}]}]}]}]};exports.bar_chart_1=bar_chart_1;var bar_chart_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BAR_CHART_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59\r\n\t\t\tc1.381,0,2.5-1.119,2.5-2.5v-1C64,54.12,62.881,53,61.5,53z M46,50h6c1.657,0,3-1.343,3-3V20c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v27C43,48.657,44.343,50,46,50z M29,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v39C26,48.657,27.343,50,29,50z M12,50h6c1.657,0,3-1.343,3-3V35c0-1.656-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.344-3,3v12C9,48.657,10.343,50,12,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59\r\n\t\t\tc1.381,0,2.5-1.119,2.5-2.5v-1C64,54.12,62.881,53,61.5,53z M46,50h6c1.657,0,3-1.343,3-3V20c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v27C43,48.657,44.343,50,46,50z M29,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.343-3,3v39C26,48.657,27.343,50,29,50z M12,50h6c1.657,0,3-1.343,3-3V35c0-1.656-1.343-3-3-3h-6\r\n\t\t\tc-1.657,0-3,1.344-3,3v12C9,48.657,10.343,50,12,50z"},"children":[]}]}]}]}]}]};exports.bar_chart_2=bar_chart_2;var bar_chart_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BAR_CHART_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC43,48.657,44.343,50,46,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z M12,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC9,48.657,10.343,50,12,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29,50h6c1.657,0,3-1.343,3-3V22c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\tv25C26,48.657,27.343,50,29,50z M46,50h6c1.657,0,3-1.343,3-3V36c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v11\r\n\t\t\tC43,48.657,44.343,50,46,50z M61.5,53h-59C1.119,53,0,54.12,0,55.5v1C0,57.881,1.119,59,2.5,59h59c1.381,0,2.5-1.119,2.5-2.5v-1\r\n\t\t\tC64,54.12,62.881,53,61.5,53z M12,50h6c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v39\r\n\t\t\tC9,48.657,10.343,50,12,50z"},"children":[]}]}]}]}]}]};exports.bar_chart_3=bar_chart_3;var bar_graph={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BAR_GRAPH_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH"},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C45,48.657,46.343,50,48,50z M31,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C28,48.657,29.343,50,31,50z M61,53H6v-7l0,0V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C11,48.657,12.343,50,14,50z"},"children":[{"name":"path","attribs":{"d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C45,48.657,46.343,50,48,50z M31,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C28,48.657,29.343,50,31,50z M61,53H6v-7l0,0V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C11,48.657,12.343,50,14,50z"},"children":[]}]}]}]}]}]}]}]};exports.bar_graph=bar_graph;var basket={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BASKET_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET"},"children":[{"name":"g","attribs":{"id":"BASKET"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019c-0.001-0.074-0.005-0.148-0.011-0.221c-0.004-0.042-0.008-0.084-0.014-0.125\r\n\t\t\t\tc-0.004-0.04-0.011-0.08-0.017-0.12c-0.22-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729\r\n\t\t\t\tl0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002\r\n\t\t\t\tL58.342,31H61c1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469L42.018,22\r\n\t\t\t\th6.789L40.686,6.662l-0.011,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469\r\n\t\t\t\tz M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662\r\n\t\t\t\tL15.2,22h6.789L28.623,9.469z"},"children":[{"name":"path","attribs":{"d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019c-0.001-0.074-0.005-0.148-0.011-0.221c-0.004-0.042-0.008-0.084-0.014-0.125\r\n\t\t\t\tc-0.004-0.04-0.011-0.08-0.017-0.12c-0.22-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729\r\n\t\t\t\tl0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002\r\n\t\t\t\tL58.342,31H61c1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469L42.018,22\r\n\t\t\t\th6.789L40.686,6.662l-0.011,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469\r\n\t\t\t\tz M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662\r\n\t\t\t\tL15.2,22h6.789L28.623,9.469z"},"children":[]}]}]}]}]}]}]}]};exports.basket=basket;var basket_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M51,13\r\n\t\t\t\tc-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS58.657,29,57,29z M47,41.477V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26\r\n\t\t\t\tc0-0.338,0.029-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59\r\n\t\t\t\tl0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M51,13\r\n\t\t\t\tc-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS58.657,29,57,29z M47,41.477V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26\r\n\t\t\t\tc0-0.338,0.029-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59\r\n\t\t\t\tl0,0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[]}]}]}]}]}]}]}]};exports.basket_add=basket_add;var basket_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[]}]}]}]}]}]}]}]};exports.basket_delete=basket_delete;var basket_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.012,0.006C40.184,5.683,39.176,5,38,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34c-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3\r\n\t\t\t\tC60,23.828,59.664,24.579,59.121,25.122z"},"children":[{"name":"path","attribs":{"d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.012,0.006C40.184,5.683,39.176,5,38,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34c-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3\r\n\t\t\t\tC60,23.828,59.664,24.579,59.121,25.122z"},"children":[]}]}]}]}]}]}]}]};exports.basket_ok=basket_ok;var basket_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.673,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57,29H45c-1.657,0-3-1.343-3-3s1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[{"name":"path","attribs":{"d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.673,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.012,0.006C40.184,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.15,1.028,0.396,1.462L35.383,9.469z M47,41.477V50\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.029-0.668,0.05-1H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h2.658l6.432,25.729l0.009-0.002C12.424,58.029,13.595,59,15,59l0,0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.404,0,2.576-0.971,2.9-2.275l0.01,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.807,47,41.477z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13\r\n\t\t\t\tz M57,29H45c-1.657,0-3-1.343-3-3s1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[]}]}]}]}]}]}]}]};exports.basket_remove=basket_remove;var battery_1_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]}]};exports.battery_1_3=battery_1_3;var battery_2_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]}]};exports.battery_2_3=battery_2_3;var battery_empty={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]}]};exports.battery_empty=battery_empty;var battery_full={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BATTERY_FULL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL"},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[{"name":"path","attribs":{"d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[]}]}]}]}]}]}]}]};exports.battery_full=battery_full;var behance={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"behance_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"behance"},"children":[{"name":"g","attribs":{"id":"behance"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338c0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255\r\n\t\t\t\tc7.179,0,14.027-3.472,14.027-11.584C33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18\r\n\t\t\t\tc3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749H7.991V18.774z M17.338,45.062H7.991V34.098h9.513\r\n\t\t\t\tc3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.062,17.338,45.062z M57.973,15.993H42.027v4.072h15.943v-4.072H57.973z\r\n\t\t\t\t M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273c0,8.947,5.621,15.211,14.692,15.211c6.515,0,10.62-1.965,12.843-8.789\r\n\t\t\t\th-6.328c-0.502,1.793-3.064,2.806-6.238,2.806c-4.395,0-6.844-1.854-7.064-6.892h20.756\r\n\t\t\t\tC64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198c0.109-2.234,1.557-5.709,6.563-5.709\r\n\t\t\t\tc3.839,0,5.567,1.684,6.293,5.709H43.262z"},"children":[{"name":"path","attribs":{"d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338c0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255\r\n\t\t\t\tc7.179,0,14.027-3.472,14.027-11.584C33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18\r\n\t\t\t\tc3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749H7.991V18.774z M17.338,45.062H7.991V34.098h9.513\r\n\t\t\t\tc3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.062,17.338,45.062z M57.973,15.993H42.027v4.072h15.943v-4.072H57.973z\r\n\t\t\t\t M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273c0,8.947,5.621,15.211,14.692,15.211c6.515,0,10.62-1.965,12.843-8.789\r\n\t\t\t\th-6.328c-0.502,1.793-3.064,2.806-6.238,2.806c-4.395,0-6.844-1.854-7.064-6.892h20.756\r\n\t\t\t\tC64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198c0.109-2.234,1.557-5.709,6.563-5.709\r\n\t\t\t\tc3.839,0,5.567,1.684,6.293,5.709H43.262z"},"children":[]}]}]}]}]}]}]}]};exports.behance=behance;var bell={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BELL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BELL"},"children":[{"name":"g","attribs":{"id":"BELL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3s-3,1.343-3,3c-7.732,0-14,6.268-14,14v20\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26\r\n\t\t\t\tC26,57.314,28.686,60,32,60z"},"children":[{"name":"path","attribs":{"d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3s-3,1.343-3,3c-7.732,0-14,6.268-14,14v20\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26\r\n\t\t\t\tC26,57.314,28.686,60,32,60z"},"children":[]}]}]}]}]}]}]}]};exports.bell=bell;var bin={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BIN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BIN"},"children":[{"name":"g","attribs":{"id":"BIN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11c-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z\r\n\t\t\t\t M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z"},"children":[{"name":"path","attribs":{"d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11c-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z\r\n\t\t\t\t M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3s3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3\r\n\t\t\t\ts3,1.343,3,3v25c0,1.657-1.343,3-3,3s-3-1.343-3-3V27z"},"children":[]}]}]}]}]}]}]}]};exports.bin=bin;var block={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BLOCK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BLOCK"},"children":[{"name":"g","attribs":{"id":"BLOCK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tc0-6.098,2.115-11.694,5.63-16.128L48.128,52.37C43.693,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63\r\n\t\t\t\tC20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26C58,38.098,55.887,43.693,52.37,48.128z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tc0-6.098,2.115-11.694,5.63-16.128L48.128,52.37C43.693,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63\r\n\t\t\t\tC20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26C58,38.098,55.887,43.693,52.37,48.128z"},"children":[]}]}]}]}]}]}]}]};exports.block=block;var bluetooth={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BLUETOOTH"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37.243,32l11.879-11.879C49.664,19.578,50,18.829,50,18\r\n\t\t\tc0-0.829-0.336-1.578-0.879-2.121l-15-15C33.578,0.336,32.828,0,32,0c-1.657,0-3,1.343-3,3v20.758l-9.879-9.879\r\n\t\t\tC18.579,13.336,17.828,13,17,13c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L28.758,32L14.879,45.879\r\n\t\t\tC14.336,46.422,14,47.172,14,48c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L29,40.243V61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.578-0.336,2.121-0.879l15-15C49.664,47.579,50,46.829,50,46c0-0.828-0.336-1.578-0.879-2.121L37.243,32z M35,10.243\r\n\t\t\tL42.757,18L35,25.757V10.243z M35,53.757V38.243L42.757,46L35,53.757z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37.243,32l11.879-11.879C49.664,19.578,50,18.829,50,18\r\n\t\t\tc0-0.829-0.336-1.578-0.879-2.121l-15-15C33.578,0.336,32.828,0,32,0c-1.657,0-3,1.343-3,3v20.758l-9.879-9.879\r\n\t\t\tC18.579,13.336,17.828,13,17,13c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L28.758,32L14.879,45.879\r\n\t\t\tC14.336,46.422,14,47.172,14,48c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L29,40.243V61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.578-0.336,2.121-0.879l15-15C49.664,47.579,50,46.829,50,46c0-0.828-0.336-1.578-0.879-2.121L37.243,32z M35,10.243\r\n\t\t\tL42.757,18L35,25.757V10.243z M35,53.757V38.243L42.757,46L35,53.757z"},"children":[]}]}]}]}]}]};exports.bluetooth=bluetooth;var book={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BOOK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK"},"children":[{"name":"g","attribs":{"id":"BOOK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,18h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5\r\n\t\t\t\tc3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5\r\n\t\t\t\tv3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3h8\r\n\t\t\t\tC19.657,52,21,50.657,21,49z"},"children":[{"name":"path","attribs":{"d":"M10,18h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5\r\n\t\t\t\tc3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5\r\n\t\t\t\tv3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3h8\r\n\t\t\t\tC19.657,52,21,50.657,21,49z"},"children":[]}]}]}]}]}]}]}]};exports.book=book;var book_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BOOK_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_1"},"children":[{"name":"g","attribs":{"id":"BOOK_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z"},"children":[{"name":"path","attribs":{"d":"M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z"},"children":[]}]}]}]}]}]}]}]};exports.book_1=book_1;var book_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BOOK_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_2"},"children":[{"name":"g","attribs":{"id":"BOOK_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10.759,32.73L10.759,32.73l11,5l0,0C22.137,37.902,22.557,38,23,38c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.73z M10.759,43.73L10.759,43.73l11,5l0,0C22.137,48.902,22.557,49,23,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.73l0,0l-11-5l0,0C12.863,38.098,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.73z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5l0,0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.098-1.241,0.27l0,0l-11,5l0,0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5l0,0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5l0,0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[{"name":"path","attribs":{"d":"M10.759,32.73L10.759,32.73l11,5l0,0C22.137,37.902,22.557,38,23,38c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.73z M10.759,43.73L10.759,43.73l11,5l0,0C22.137,48.902,22.557,49,23,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.73l0,0l-11-5l0,0C12.863,38.098,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.73z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5l0,0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5l0,0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.098-1.241,0.27l0,0l-11,5l0,0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.146,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.779l28.942,11.977C31.177,63.913,31.578,64,32,64s0.823-0.087,1.188-0.245l28.941-11.976\r\n\t\t\t\tC63.227,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.098,1.241-0.27l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5l0,0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5l0,0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[]}]}]}]}]}]}]}]};exports.book_2=book_2;var bookmark={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BOOKMARK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOKMARK"},"children":[{"name":"g","attribs":{"id":"BOOKMARK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[{"name":"path","attribs":{"d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[]}]}]}]}]}]}]}]};exports.bookmark=bookmark;var brightness_high={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.887-2.113\r\n\t\t\t\tl0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444C56.664,11.578,57,10.828,57,10\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.443,5.445l-1.557,1.556l0.01,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C29,12.657,30.343,14,32,14z\r\n\t\t\t\t M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h8C12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.557,1.556l5.443,5.444\r\n\t\t\t\tC52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th8c1.657,0,3-1.343,3-3S62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.887-2.113\r\n\t\t\t\tl0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444C56.664,11.578,57,10.828,57,10\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.443,5.445l-1.557,1.556l0.01,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C29,12.657,30.343,14,32,14z\r\n\t\t\t\t M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h8C12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.557,1.556l5.443,5.444\r\n\t\t\t\tC52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th8c1.657,0,3-1.343,3-3S62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]}]};exports.brightness_high=brightness_high;var brightness_low={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113\r\n\t\t\t\tl0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12c-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112\r\n\t\t\t\tL12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2l-0.009-0.009C51.659,16.573,52,15.83,52,15\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3s1.343,3,3,3h2C12.657,35,14,33.657,14,32z\r\n\t\t\t\t M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3s-3,1.343-3,3v2C29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12\r\n\t\t\t\tc0,1.021,0.141,2.007,0.381,2.953l1.183,2.958C23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z\r\n\t\t\t\t M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2\r\n\t\t\t\tC12.336,47.422,12,48.172,12,49c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M55,29h-2c-1.657,0-3,1.343-3,3s1.343,3,3,3h2c1.657,0,3-1.343,3-3S56.657,29,55,29z M32,50\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v2c0,1.657,1.343,3,3,3s3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113\r\n\t\t\t\tl0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12c-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112\r\n\t\t\t\tL12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2l-0.009-0.009C51.659,16.573,52,15.83,52,15\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009C44.342,15.427,44,16.17,44,17\r\n\t\t\t\tC44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3s1.343,3,3,3h2C12.657,35,14,33.657,14,32z\r\n\t\t\t\t M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3s-3,1.343-3,3v2C29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12\r\n\t\t\t\tc0,1.021,0.141,2.007,0.381,2.953l1.183,2.958C23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z\r\n\t\t\t\t M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879\r\n\t\t\t\tC48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2\r\n\t\t\t\tC12.336,47.422,12,48.172,12,49c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M55,29h-2c-1.657,0-3,1.343-3,3s1.343,3,3,3h2c1.657,0,3-1.343,3-3S56.657,29,55,29z M32,50\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v2c0,1.657,1.343,3,3,3s3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]}]};exports.brightness_low=brightness_low;var browser={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER"},"children":[{"name":"g","attribs":{"id":"BROWSER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]}]};exports.browser=browser;var browser_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3S20.343,40,22,40z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3S20.343,40,22,40z"},"children":[]}]}]}]}]}]}]}]};exports.browser_add=browser_add;var browser_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M27.758,37l-4.95,4.95\r\n\t\t\t\tc-1.172,1.172-1.172,3.071,0,4.243s3.071,1.172,4.243,0l4.95-4.95l4.95,4.95c1.172,1.172,3.07,1.172,4.242,0\r\n\t\t\t\tc1.173-1.172,1.172-3.071,0-4.243L36.243,37l4.95-4.95c1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0\r\n\t\t\t\tL32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0c-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z M27.758,37l-4.95,4.95\r\n\t\t\t\tc-1.172,1.172-1.172,3.071,0,4.243s3.071,1.172,4.243,0l4.95-4.95l4.95,4.95c1.172,1.172,3.07,1.172,4.242,0\r\n\t\t\t\tc1.173-1.172,1.172-3.071,0-4.243L36.243,37l4.95-4.95c1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0\r\n\t\t\t\tL32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0c-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[]}]}]}]}]}]}]}]};exports.browser_delete=browser_delete;var browser_layout_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z\r\n\t\t\t\t M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z\r\n\t\t\t\t M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]}]};exports.browser_layout_1=browser_layout_1;var browser_layout_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3V31h43V57z M61,57H49V31h12V57z\r\n\t\t\t\t M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3V31h43V57z M61,57H49V31h12V57z\r\n\t\t\t\t M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]}]};exports.browser_layout_2=browser_layout_2;var browser_layout_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M46,57H18V31h28V57z\r\n\t\t\t\t M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3\r\n\t\t\t\tS13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M46,57H18V31h28V57z\r\n\t\t\t\t M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]}]};exports.browser_layout_3=browser_layout_3;var browser_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12C43.664,32.579,44,31.828,44,31\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878C24.579,34.336,23.828,34,23,34\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12C43.664,32.579,44,31.828,44,31\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878C24.579,34.336,23.828,34,23,34\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]}]};exports.browser_ok=browser_ok;var browser_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,40h4l0,0h16l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7l0,0h-6l0,0h-7c-1.657,0-3,1.343-3,3S20.343,40,22,40z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"d":"M22,40h4l0,0h16l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7l0,0h-6l0,0h-7c-1.657,0-3,1.343-3,3S20.343,40,22,40z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]}]};exports.browser_remove=browser_remove;var bullseye={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"BULLSEYE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\tC38,28.687,35.314,26,32,26z M32,13c-10.493,0-19,8.506-19,19c0,10.493,8.507,19,19,19c10.493,0,19-8.507,19-19\r\n\t\t\tC51,21.507,42.493,13,32,13z M32,45c-7.18,0-13-5.821-13-13c0-7.18,5.82-13,13-13c7.18,0,13,5.82,13,13C45,39.18,39.18,45,32,45z\r\n\t\t\t M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\tC17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\tC38,28.687,35.314,26,32,26z M32,13c-10.493,0-19,8.506-19,19c0,10.493,8.507,19,19,19c10.493,0,19-8.507,19-19\r\n\t\t\tC51,21.507,42.493,13,32,13z M32,45c-7.18,0-13-5.821-13-13c0-7.18,5.82-13,13-13c7.18,0,13,5.82,13,13C45,39.18,39.18,45,32,45z\r\n\t\t\t M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\tC17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[]}]}]}]}]}]};exports.bullseye=bullseye;var calendar={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CALENDAR_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR"},"children":[{"name":"g","attribs":{"id":"CALENDAR"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632c-0.373,0.347-0.785,0.663-1.235,0.949\r\n\t\t\t\tc-0.451,0.286-0.875,0.567-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586c-0.702,0.521-1.313,1.088-1.833,1.703\r\n\t\t\t\ts-0.932,1.312-1.235,2.094c-0.304,0.779-0.455,1.698-0.455,2.756H31.47v-3.172h-8.606c0.451-0.625,0.97-1.17,1.56-1.639\r\n\t\t\t\tc0.589-0.468,1.196-0.904,1.82-1.312c0.624-0.407,1.244-0.819,1.859-1.235c0.615-0.416,1.166-0.88,1.651-1.392\r\n\t\t\t\tc0.485-0.51,0.875-1.096,1.17-1.754c0.294-0.66,0.442-1.447,0.442-2.367c0-0.883-0.169-1.68-0.507-2.392\r\n\t\t\t\tc-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118C26.751,31.13,25.958,31,25.126,31\r\n\t\t\t\tc-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56c-0.555,0.667-0.971,1.447-1.248,2.34\r\n\t\t\t\tc-0.277,0.893-0.399,1.859-0.364,2.898h3.536c0-0.484,0.048-0.975,0.143-1.469c0.095-0.494,0.255-0.945,0.481-1.352\r\n\t\t\t\tc0.225-0.407,0.524-0.737,0.897-0.988s0.828-0.377,1.365-0.377c0.797,0,1.452,0.247,1.963,0.741\r\n\t\t\t\tc0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.481C27.045,38.895,26.733,39.285,26.361,39.632z\r\n\t\t\t\t M41.467,45.807c-0.269,0.321-0.598,0.582-0.988,0.78c-0.39,0.199-0.828,0.299-1.312,0.299c-0.832,0-1.518-0.247-2.055-0.741\r\n\t\t\t\tc-0.536-0.494-0.85-1.156-0.936-1.988h-3.692c0.017,0.953,0.211,1.789,0.584,2.509c0.373,0.719,0.871,1.321,1.496,1.808\r\n\t\t\t\tc0.623,0.484,1.338,0.844,2.145,1.078s1.65,0.352,2.535,0.352c0.919,0.017,1.785-0.135,2.6-0.455\r\n\t\t\t\tc0.815-0.321,1.529-0.776,2.145-1.365s1.105-1.287,1.47-2.094c0.364-0.805,0.546-1.676,0.546-2.612\r\n\t\t\t\tc0-0.849-0.126-1.651-0.377-2.405c-0.252-0.754-0.615-1.408-1.092-1.963s-1.062-0.997-1.756-1.326\r\n\t\t\t\tc-0.692-0.328-1.49-0.494-2.391-0.494c-0.729,0-1.379,0.109-1.951,0.326c-0.571,0.217-1.108,0.575-1.611,1.078l-0.053-0.052\r\n\t\t\t\tl0.729-4.134h7.514v-3.042H34.85l-1.793,10.062h3.327c0.364-0.503,0.755-0.871,1.171-1.105c0.416-0.233,0.952-0.35,1.611-0.35\r\n\t\t\t\tc0.503,0,0.945,0.086,1.326,0.26c0.381,0.172,0.711,0.416,0.988,0.728c0.276,0.312,0.484,0.676,0.623,1.092\r\n\t\t\t\tc0.14,0.416,0.209,0.858,0.209,1.326c0,0.451-0.074,0.89-0.222,1.313C41.943,45.114,41.734,45.486,41.467,45.807z"},"children":[{"name":"path","attribs":{"d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632c-0.373,0.347-0.785,0.663-1.235,0.949\r\n\t\t\t\tc-0.451,0.286-0.875,0.567-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586c-0.702,0.521-1.313,1.088-1.833,1.703\r\n\t\t\t\ts-0.932,1.312-1.235,2.094c-0.304,0.779-0.455,1.698-0.455,2.756H31.47v-3.172h-8.606c0.451-0.625,0.97-1.17,1.56-1.639\r\n\t\t\t\tc0.589-0.468,1.196-0.904,1.82-1.312c0.624-0.407,1.244-0.819,1.859-1.235c0.615-0.416,1.166-0.88,1.651-1.392\r\n\t\t\t\tc0.485-0.51,0.875-1.096,1.17-1.754c0.294-0.66,0.442-1.447,0.442-2.367c0-0.883-0.169-1.68-0.507-2.392\r\n\t\t\t\tc-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118C26.751,31.13,25.958,31,25.126,31\r\n\t\t\t\tc-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56c-0.555,0.667-0.971,1.447-1.248,2.34\r\n\t\t\t\tc-0.277,0.893-0.399,1.859-0.364,2.898h3.536c0-0.484,0.048-0.975,0.143-1.469c0.095-0.494,0.255-0.945,0.481-1.352\r\n\t\t\t\tc0.225-0.407,0.524-0.737,0.897-0.988s0.828-0.377,1.365-0.377c0.797,0,1.452,0.247,1.963,0.741\r\n\t\t\t\tc0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.481C27.045,38.895,26.733,39.285,26.361,39.632z\r\n\t\t\t\t M41.467,45.807c-0.269,0.321-0.598,0.582-0.988,0.78c-0.39,0.199-0.828,0.299-1.312,0.299c-0.832,0-1.518-0.247-2.055-0.741\r\n\t\t\t\tc-0.536-0.494-0.85-1.156-0.936-1.988h-3.692c0.017,0.953,0.211,1.789,0.584,2.509c0.373,0.719,0.871,1.321,1.496,1.808\r\n\t\t\t\tc0.623,0.484,1.338,0.844,2.145,1.078s1.65,0.352,2.535,0.352c0.919,0.017,1.785-0.135,2.6-0.455\r\n\t\t\t\tc0.815-0.321,1.529-0.776,2.145-1.365s1.105-1.287,1.47-2.094c0.364-0.805,0.546-1.676,0.546-2.612\r\n\t\t\t\tc0-0.849-0.126-1.651-0.377-2.405c-0.252-0.754-0.615-1.408-1.092-1.963s-1.062-0.997-1.756-1.326\r\n\t\t\t\tc-0.692-0.328-1.49-0.494-2.391-0.494c-0.729,0-1.379,0.109-1.951,0.326c-0.571,0.217-1.108,0.575-1.611,1.078l-0.053-0.052\r\n\t\t\t\tl0.729-4.134h7.514v-3.042H34.85l-1.793,10.062h3.327c0.364-0.503,0.755-0.871,1.171-1.105c0.416-0.233,0.952-0.35,1.611-0.35\r\n\t\t\t\tc0.503,0,0.945,0.086,1.326,0.26c0.381,0.172,0.711,0.416,0.988,0.728c0.276,0.312,0.484,0.676,0.623,1.092\r\n\t\t\t\tc0.14,0.416,0.209,0.858,0.209,1.326c0,0.451-0.074,0.89-0.222,1.313C41.943,45.114,41.734,45.486,41.467,45.807z"},"children":[]}]}]}]}]}]}]}]};exports.calendar=calendar;var calendar_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M25.126,31\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3s3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4v-4\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3S23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8\r\n\t\t\t\tH23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11\r\n\t\t\t\tC64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[{"name":"path","attribs":{"d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M25.126,31\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3s3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4v-4\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3S23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8\r\n\t\t\t\tH23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11\r\n\t\t\t\tC64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[]}]}]}]}]}]}]}]};exports.calendar_add=calendar_add;var calendar_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121C27.422,50.664,28.172,51,29,51s1.578-0.336,2.121-0.879l14-14\r\n\t\t\t\tC45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879\r\n\t\t\t\tC23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[{"name":"path","attribs":{"d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M61,8h-6v3\r\n\t\t\t\tc0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H3c-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121C27.422,50.664,28.172,51,29,51s1.578-0.336,2.121-0.879l14-14\r\n\t\t\t\tC45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879\r\n\t\t\t\tC23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[]}]}]}]}]}]}]}]};exports.calendar_ok=calendar_ok;var camera={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CAMERA_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CAMERA"},"children":[{"name":"g","attribs":{"id":"CAMERA"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12s12-5.373,12-12S38.627,22,32,22z M61,12H48.243l-5.095-5.094\r\n\t\t\t\tl-0.002,0.003C42.602,6.35,41.843,6,41,6H23c-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,43.941,41.941,52,32,52z"},"children":[{"name":"path","attribs":{"d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12s12-5.373,12-12S38.627,22,32,22z M61,12H48.243l-5.095-5.094\r\n\t\t\t\tl-0.002,0.003C42.602,6.35,41.843,6,41,6H23c-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,43.941,41.941,52,32,52z"},"children":[]}]}]}]}]}]}]}]};exports.camera=camera;var cassette={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CASSETTE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,9H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h8.369l4.846-12.114\r\n\t\t\tl0.004,0.002C16.661,41.783,17.737,41,19,41h26c1.263,0,2.339,0.782,2.781,1.887l0.004-0.002L52.631,55H61c1.657,0,3-1.343,3-3V12\r\n\t\t\tC64,10.343,62.657,9,61,9z M16,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C20,30.209,18.209,32,16,32z\r\n\t\t\t M40,32H24v-8h16V32z M48,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C52,30.209,50.209,32,48,32z M45.834,46.056\r\n\t\t\tC45.436,44.865,44.325,44,43,44H21c-1.296,0-2.391,0.827-2.81,1.978l-0.01-0.004L14.899,55h33.93l-2.983-8.949L45.834,46.056z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,9H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h8.369l4.846-12.114\r\n\t\t\tl0.004,0.002C16.661,41.783,17.737,41,19,41h26c1.263,0,2.339,0.782,2.781,1.887l0.004-0.002L52.631,55H61c1.657,0,3-1.343,3-3V12\r\n\t\t\tC64,10.343,62.657,9,61,9z M16,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C20,30.209,18.209,32,16,32z\r\n\t\t\t M40,32H24v-8h16V32z M48,32c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C52,30.209,50.209,32,48,32z M45.834,46.056\r\n\t\t\tC45.436,44.865,44.325,44,43,44H21c-1.296,0-2.391,0.827-2.81,1.978l-0.01-0.004L14.899,55h33.93l-2.983-8.949L45.834,46.056z"},"children":[]}]}]}]}]}]};exports.cassette=cassette;var chart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART"},"children":[{"name":"g","attribs":{"id":"CHART"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C43,53.657,44.343,55,46,55z M29,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C26,53.657,27.343,55,29,55z M12,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C9,53.657,10.343,55,12,55z"},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21C43,53.657,44.343,55,46,55z M29,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33C26,53.657,27.343,55,29,55z M12,55h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6C9,53.657,10.343,55,12,55z"},"children":[]}]}]}]}]}]}]}]};exports.chart=chart;var chart_1_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6V58z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6V58z"},"children":[]}]}]}]}]}]}]}]};exports.chart_1_2=chart_1_2;var chart_1_4={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26h26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26h26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.chart_1_4=chart_1_4;var chart_1_8={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8"},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385-18.385C55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385-18.385C55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.chart_1_8=chart_1_8;var chart_3_4={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]}]};exports.chart_3_4=chart_3_4;var chart_3_8={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385,18.385C45.68,55.09,39.18,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6v26l18.385,18.385C45.68,55.09,39.18,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.chart_3_8=chart_3_8;var chart_5_8={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,50.385\r\n\t\t\t\tC8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,50.385\r\n\t\t\t\tC8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]}]};exports.chart_5_8=chart_5_8;var chart_7_8={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,13.615\r\n\t\t\t\tC18.32,8.91,24.82,6,32,6V32z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,32L13.615,13.615\r\n\t\t\t\tC18.32,8.91,24.82,6,32,6V32z"},"children":[]}]}]}]}]}]}]}]};exports.chart_7_8=chart_7_8;var circle={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE"},"children":[{"name":"g","attribs":{"id":"CIRCLE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle=circle;var circle_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.578,46,21.829,46,21z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.578,46,21.829,46,21z"},"children":[]}]}]}]}]}]}]}]};exports.circle_delete=circle_delete;var circle_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,32c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.188\r\n\t\t\t\tL25.222,33c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.771,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47\r\n\t\t\t\tc0.549,0.609,1.336,1,2.222,1c0.885,0,1.673-0.391,2.223-1l0.008,0.007l9-10L43.223,37C43.7,36.468,44,35.771,44,35\r\n\t\t\t\tC44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M41,32c-0.885,0-1.673,0.391-2.223,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.188\r\n\t\t\t\tL25.222,33c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.771,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47\r\n\t\t\t\tc0.549,0.609,1.336,1,2.222,1c0.885,0,1.673-0.391,2.223-1l0.008,0.007l9-10L43.223,37C43.7,36.468,44,35.771,44,35\r\n\t\t\t\tC44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_down=circle_down;var circle_fast_forward={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M45.559,29.437l-9.699-6.789\r\n\t\t\t\tC35.35,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394\r\n\t\t\t\tC21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005\r\n\t\t\t\tC17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.654l9.125-6.388v4.067h0.005C31.013,40.67,32.351,42,34,42\r\n\t\t\t\tc0.708,0,1.357-0.246,1.871-0.654l9.68-6.777C46.419,34.043,47,33.089,47,32C47,30.914,46.423,29.963,45.559,29.437z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M45.559,29.437l-9.699-6.789\r\n\t\t\t\tC35.35,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394\r\n\t\t\t\tC21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3c0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005\r\n\t\t\t\tC17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.654l9.125-6.388v4.067h0.005C31.013,40.67,32.351,42,34,42\r\n\t\t\t\tc0.708,0,1.357-0.246,1.871-0.654l9.68-6.777C46.419,34.043,47,33.089,47,32C47,30.914,46.423,29.963,45.559,29.437z"},"children":[]}]}]}]}]}]}]}]};exports.circle_fast_forward=circle_fast_forward;var circle_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778\r\n\t\t\t\tl-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.223l-0.007,0.008l10,9L27,43.223\r\n\t\t\t\tC27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.223l0.007-0.008L26.818,35H45c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222c0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778\r\n\t\t\t\tl-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.223l-0.007,0.008l10,9L27,43.223\r\n\t\t\t\tC27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.223l0.007-0.008L26.818,35H45c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_left=circle_left;var circle_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_minus=circle_minus;var circle_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,43.001L46,43.001C46,43,46,43,46,42.999V43.001z M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l9,9C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M46,43.001L46,43.001C46,43,46,43,46,42.999V43.001z M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l9,9C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_ok=circle_ok;var circle_pause={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M29,24c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07\r\n\t\t\t\tC28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35\r\n\t\t\t\tC35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z M29,24c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07\r\n\t\t\t\tC28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35\r\n\t\t\t\tC35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[]}]}]}]}]}]}]}]};exports.circle_pause=circle_pause;var circle_play={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004c0.055-0.005,0.109-0.011,0.163-0.019\r\n\t\t\t\tc0.01,0,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035c0.01-0.002,0.019-0.005,0.029-0.007\r\n\t\t\t\tc0.057-0.013,0.112-0.026,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008c0.128-0.038,0.252-0.084,0.372-0.138\r\n\t\t\t\tc0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.057,0.242-0.121,0.355-0.191l0.013,0.02l15.912-9.974\r\n\t\t\t\tC42.404,34.066,43,33.104,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004c0.055-0.005,0.109-0.011,0.163-0.019\r\n\t\t\t\tc0.01,0,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035c0.01-0.002,0.019-0.005,0.029-0.007\r\n\t\t\t\tc0.057-0.013,0.112-0.026,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008c0.128-0.038,0.252-0.084,0.372-0.138\r\n\t\t\t\tc0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.057,0.242-0.121,0.355-0.191l0.013,0.02l15.912-9.974\r\n\t\t\t\tC42.404,34.066,43,33.104,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_play=circle_play;var circle_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h10v10c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h10v10c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tS49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_plus=circle_plus;var circle_rewind={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.35,0.242-1.861,0.648l-9.135,6.394v-4.018h-0.006C32.999,25.016,33,25.008,33,25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789C17.577,29.963,17,30.914,17,32\r\n\t\t\t\tc0,1.089,0.581,2.043,1.449,2.568l9.68,6.777C28.642,41.754,29.292,42,30,42c1.649,0,2.986-1.33,2.999-2.977h0.005v-4.066\r\n\t\t\t\tl9.125,6.387C42.643,41.754,43.292,42,44,42c1.648,0,2.986-1.33,2.999-2.977h0.005v-14h-0.005C46.999,25.016,47,25.008,47,25z\r\n\t\t\t\t M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.35,0.242-1.861,0.648l-9.135,6.394v-4.018h-0.006C32.999,25.016,33,25.008,33,25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789C17.577,29.963,17,30.914,17,32\r\n\t\t\t\tc0,1.089,0.581,2.043,1.449,2.568l9.68,6.777C28.642,41.754,29.292,42,30,42c1.649,0,2.986-1.33,2.999-2.977h0.005v-4.066\r\n\t\t\t\tl9.125,6.387C42.643,41.754,43.292,42,44,42c1.648,0,2.986-1.33,2.999-2.977h0.005v-14h-0.005C46.999,25.016,47,25.008,47,25z\r\n\t\t\t\t M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_rewind=circle_rewind;var circle_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.771,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.188,3.77L33,38.777c-0.61,0.55-1,1.338-1,2.223\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.468-0.299,2-0.777l0.007,0.008l10-9L47,34.223c0.609-0.55,1-1.337,1-2.223\r\n\t\t\t\tS47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.771,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.188,3.77L33,38.777c-0.61,0.55-1,1.338-1,2.223\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.771,0,1.468-0.299,2-0.777l0.007,0.008l10-9L47,34.223c0.609-0.55,1-1.337,1-2.223\r\n\t\t\t\tS47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_right=circle_right;var circle_skip_next={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58C26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71V39c0,1.657,1.343,3,3,3s3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58C26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71V39c0,1.657,1.343,3,3,3s3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_skip_next=circle_skip_next;var circle_skip_previous={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M39,22c-0.66,0-1.266,0.219-1.76,0.58l-0.006-0.007L28,29.291V25c0-1.657-1.343-3-3-3s-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-4.29l9.234,6.717l0.006-0.007C37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M39,22c-0.66,0-1.266,0.219-1.76,0.58l-0.006-0.007L28,29.291V25c0-1.657-1.343-3-3-3s-3,1.343-3,3v14\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-4.29l9.234,6.717l0.006-0.007C37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25\r\n\t\t\t\tC42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_skip_previous=circle_skip_previous;var circle_stop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3V24C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3V24C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_stop=circle_stop;var circle_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43.23,26.993l-9-10L34.223,17c-0.55-0.61-1.336-1-2.223-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10L20.778,27\r\n\t\t\t\tC20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V26.818l3.77,4.189L38.777,31c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.777-2\r\n\t\t\t\tL43.23,26.993z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M43.23,26.993l-9-10L34.223,17c-0.55-0.61-1.336-1-2.223-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10L20.778,27\r\n\t\t\t\tC20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V26.818l3.77,4.189L38.777,31c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.777-2\r\n\t\t\t\tL43.23,26.993z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.64,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.circle_up=circle_up;var clip={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLIP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.628,11.373c-7.029-7.029-18.426-7.029-25.456,0L6.837,34.707\r\n\t\t\tc-5.077,5.077-5.077,13.308,0,18.385c5.077,5.077,13.308,5.077,18.385,0l21.92-21.92c3.124-3.124,3.124-8.189,0-11.314\r\n\t\t\tc-3.124-3.124-8.19-3.124-11.314,0L17.444,38.243c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0\r\n\t\t\tl18.385-18.385c0.781-0.781,2.047-0.781,2.828,0c0.781,0.781,0.781,2.047,0,2.828l-21.92,21.92c-2.734,2.734-7.166,2.734-9.899,0\r\n\t\t\tc-2.734-2.734-2.734-7.166,0-9.9l23.334-23.334c4.686-4.686,12.284-4.686,16.971,0c4.686,4.686,4.686,12.284,0,16.971\r\n\t\t\tL31.586,52.385c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.171,3.071,1.171,4.243,0l19.799-19.799\r\n\t\t\tC62.657,29.799,62.657,18.402,55.628,11.373z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.628,11.373c-7.029-7.029-18.426-7.029-25.456,0L6.837,34.707\r\n\t\t\tc-5.077,5.077-5.077,13.308,0,18.385c5.077,5.077,13.308,5.077,18.385,0l21.92-21.92c3.124-3.124,3.124-8.189,0-11.314\r\n\t\t\tc-3.124-3.124-8.19-3.124-11.314,0L17.444,38.243c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0\r\n\t\t\tl18.385-18.385c0.781-0.781,2.047-0.781,2.828,0c0.781,0.781,0.781,2.047,0,2.828l-21.92,21.92c-2.734,2.734-7.166,2.734-9.899,0\r\n\t\t\tc-2.734-2.734-2.734-7.166,0-9.9l23.334-23.334c4.686-4.686,12.284-4.686,16.971,0c4.686,4.686,4.686,12.284,0,16.971\r\n\t\t\tL31.586,52.385c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.171,3.071,1.171,4.243,0l19.799-19.799\r\n\t\t\tC62.657,29.799,62.657,18.402,55.628,11.373z"},"children":[]}]}]}]}]}]};exports.clip=clip;var close={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOSE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOSE"},"children":[{"name":"g","attribs":{"id":"CLOSE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32\r\n\t\t\t\tL15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879\r\n\t\t\t\tC44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[{"name":"path","attribs":{"d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32\r\n\t\t\t\tL15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879\r\n\t\t\t\tC44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[]}]}]}]}]}]}]}]};exports.close=close;var cloud={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOUD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD"},"children":[{"name":"g","attribs":{"id":"CLOUD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655C4.47,26.532,0,32.243,0,39\r\n\t\t\t\tc0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.529,26.532,53.387,24.656z M49,48H15c-4.97,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655C4.47,26.532,0,32.243,0,39\r\n\t\t\t\tc0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.529,26.532,53.387,24.656z M49,48H15c-4.97,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.cloud=cloud;var cloud_download={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,44c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,49.182V34c0-1.657-1.343-3-3-3s-3,1.343-3,3v15.182l-3.77-4.188l0,0\r\n\t\t\t\tC24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.191,0.014,0.286l0,0c0.062,0.659,0.337,1.256,0.756,1.721\r\n\t\t\t\tl0,0l9,10L29.778,59c0.549,0.609,1.337,1,2.222,1s1.673-0.391,2.223-1.001l0.008,0.007l9-10l0,0\r\n\t\t\t\tc0.418-0.465,0.693-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.016-0.307C43.831,45.182,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.589,0.326c0.032,0.019,0.063,0.039,0.097,0.058c0.205,0.128,0.405,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.026,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"d":"M41,44c-0.885,0-1.682,0.384-2.23,0.993l0,0L35,49.182V34c0-1.657-1.343-3-3-3s-3,1.343-3,3v15.182l-3.77-4.188l0,0\r\n\t\t\t\tC24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.191,0.014,0.286l0,0c0.062,0.659,0.337,1.256,0.756,1.721\r\n\t\t\t\tl0,0l9,10L29.778,59c0.549,0.609,1.337,1,2.222,1s1.673-0.391,2.223-1.001l0.008,0.007l9-10l0,0\r\n\t\t\t\tc0.418-0.465,0.693-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.016-0.307C43.831,45.182,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.191,0,11.596,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.396,0.21,0.589,0.326c0.032,0.019,0.063,0.039,0.097,0.058c0.205,0.128,0.405,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.026,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]}]};exports.cloud_download=cloud_download;var cloud_fail={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758l-5.879-5.879C25.578,36.336,24.829,36,24,36\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879C21.336,53.422,21,54.172,21,55\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879C38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879C42.664,40.579,43,39.829,43,39z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6s-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.589-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097\r\n\t\t\t\tC20.406,15.318,25.808,12,32,12c6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.363,1.112c0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512\r\n\t\t\t\tC48.814,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485\r\n\t\t\t\tC56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,28.243,59.529,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758l-5.879-5.879C25.578,36.336,24.829,36,24,36\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879C21.336,53.422,21,54.172,21,55\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879C38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879C42.664,40.579,43,39.829,43,39z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6s-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.589-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097\r\n\t\t\t\tC20.406,15.318,25.808,12,32,12c6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.363,1.112c0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512\r\n\t\t\t\tC48.814,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485\r\n\t\t\t\tC56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,28.243,59.529,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]}]};exports.cloud_fail=cloud_fail;var cloud_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43,36c-1.039,0-1.954,0.527-2.493,1.33l-8.936,12.998l-5.45-5.45C25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58c1.039,0,1.954-0.527,2.493-1.33l10.969-15.954\r\n\t\t\t\tC45.801,40.23,46,39.639,46,39C46,37.343,44.657,36,43,36z M53.387,20.656C50.048,12.086,41.752,6,32,6\r\n\t\t\t\tc-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.041-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.172,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.2,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.529,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"d":"M43,36c-1.039,0-1.954,0.527-2.493,1.33l-8.936,12.998l-5.45-5.45C25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58c1.039,0,1.954-0.527,2.493-1.33l10.969-15.954\r\n\t\t\t\tC45.801,40.23,46,39.639,46,39C46,37.343,44.657,36,43,36z M53.387,20.656C50.048,12.086,41.752,6,32,6\r\n\t\t\t\tc-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tc-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.041-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.191,0,11.594,3.318,14.562,8.266c0.213,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.172,0.356,0.325,0.724,0.474,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.363,1.112\r\n\t\t\t\tc0.036,0.12,0.082,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.343,1.512C48.814,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075\r\n\t\t\t\tc0.156,0.03,0.307,0.07,0.457,0.109c0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.17,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.2,0.101,0.396,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.529,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]}]};exports.cloud_ok=cloud_ok;var cloud_upload={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719l0,0l-0.008-0.01\r\n\t\t\t\tc-0.002,0-0.002-0.002-0.004-0.002l-8.99-9.989L34.221,32c-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.673,0.391-2.222,1\r\n\t\t\t\tl-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.004-0.006,0.006l-0.006,0.007l0,0C20.292,42.525,20,43.229,20,44\r\n\t\t\t\tc0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.006,0.098-0.008\r\n\t\t\t\tc0.012-0.002,0.024-0.004,0.036-0.006c0.044-0.004,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.112,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.188l0,0\r\n\t\t\t\tc0.446,0.495,1.056,0.841,1.742,0.953c0.002,0,0.002,0,0.002,0c0.045,0.007,0.088,0.013,0.133,0.019\r\n\t\t\t\tc0.011,0,0.022,0.002,0.033,0.004c0.033,0.002,0.067,0.006,0.1,0.008c0.021,0.002,0.043,0.004,0.063,0.005s0.04,0.001,0.06,0.002\r\n\t\t\t\tC40.936,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002C44,43.904,43.995,43.811,43.986,43.719z\r\n\t\t\t\t M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34\r\n\t\t\t\tc0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11c6.191,0,11.596,3.318,14.562,8.266\r\n\t\t\t\tc0.213,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.138,0.363,0.252,0.737,0.365,1.112c0.035,0.12,0.08,0.236,0.113,0.357\r\n\t\t\t\tc0.137,0.495,0.251,0.999,0.342,1.512C48.814,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109\r\n\t\t\t\tc0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\tc8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719l0,0l-0.008-0.01\r\n\t\t\t\tc-0.002,0-0.002-0.002-0.004-0.002l-8.99-9.989L34.221,32c-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.673,0.391-2.222,1\r\n\t\t\t\tl-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.004-0.006,0.006l-0.006,0.007l0,0C20.292,42.525,20,43.229,20,44\r\n\t\t\t\tc0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.006,0.098-0.008\r\n\t\t\t\tc0.012-0.002,0.024-0.004,0.036-0.006c0.044-0.004,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.112,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.188l0,0\r\n\t\t\t\tc0.446,0.495,1.056,0.841,1.742,0.953c0.002,0,0.002,0,0.002,0c0.045,0.007,0.088,0.013,0.133,0.019\r\n\t\t\t\tc0.011,0,0.022,0.002,0.033,0.004c0.033,0.002,0.067,0.006,0.1,0.008c0.021,0.002,0.043,0.004,0.063,0.005s0.04,0.001,0.06,0.002\r\n\t\t\t\tC40.936,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002C44,43.904,43.995,43.811,43.986,43.719z\r\n\t\t\t\t M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34\r\n\t\t\t\tc0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3s-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.6-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11c6.191,0,11.596,3.318,14.562,8.266\r\n\t\t\t\tc0.213,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.138,0.363,0.252,0.737,0.365,1.112c0.035,0.12,0.08,0.236,0.113,0.357\r\n\t\t\t\tc0.137,0.495,0.251,0.999,0.342,1.512C48.814,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.164,0.023,0.33,0.043,0.492,0.075c0.156,0.03,0.307,0.07,0.457,0.109\r\n\t\t\t\tc0.119,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.349,0.113,0.519,0.175c0.084,0.031,0.17,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.562,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.396,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.207,0.128,0.406,0.263,0.602,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\tc8.284,0,15-6.716,15-15C64,27.243,59.529,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]}]};exports.cloud_upload=cloud_upload;var code={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CODE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CODE"},"children":[{"name":"g","attribs":{"id":"CODE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735C0.413,30.285,0,31.091,0,32\r\n\t\t\t\tc0,0.844,0.351,1.604,0.912,2.148L0.91,34.152l12,12l0.003-0.004C13.453,46.674,14.187,47,15,47c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003c0.561-0.545,0.913-1.305,0.913-2.149\r\n\t\t\t\tC18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265L51.152,17.91l-0.002,0.003\r\n\t\t\t\tC50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.352,1.604,0.913,2.149l-0.003,0.003l9.863,9.863l-9.895,9.895\r\n\t\t\t\tl0.003,0.003c-0.524,0.54-0.851,1.274-0.851,2.087c0,1.657,1.343,3,3,3c0.812,0,1.547-0.326,2.088-0.852l0.003,0.004l12-12\r\n\t\t\t\tl-0.003-0.004C63.68,33.604,64.031,32.844,64.031,32z M40,8c-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924\r\n\t\t\t\tC21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.982L42.8,12.076C42.93,11.742,43,11.38,43,11\r\n\t\t\t\tC43,9.343,41.657,8,40,8z"},"children":[{"name":"path","attribs":{"d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735C0.413,30.285,0,31.091,0,32\r\n\t\t\t\tc0,0.844,0.351,1.604,0.912,2.148L0.91,34.152l12,12l0.003-0.004C13.453,46.674,14.187,47,15,47c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003c0.561-0.545,0.913-1.305,0.913-2.149\r\n\t\t\t\tC18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265L51.152,17.91l-0.002,0.003\r\n\t\t\t\tC50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.352,1.604,0.913,2.149l-0.003,0.003l9.863,9.863l-9.895,9.895\r\n\t\t\t\tl0.003,0.003c-0.524,0.54-0.851,1.274-0.851,2.087c0,1.657,1.343,3,3,3c0.812,0,1.547-0.326,2.088-0.852l0.003,0.004l12-12\r\n\t\t\t\tl-0.003-0.004C63.68,33.604,64.031,32.844,64.031,32z M40,8c-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924\r\n\t\t\t\tC21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.982L42.8,12.076C42.93,11.742,43,11.38,43,11\r\n\t\t\t\tC43,9.343,41.657,8,40,8z"},"children":[]}]}]}]}]}]}]}]};exports.code=code;var cog={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COG_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COG"},"children":[{"name":"g","attribs":{"id":"COG"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12S38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M55.518,25.462c-0.541-1.957-1.326-3.811-2.311-5.536\r\n\t\t\t\tc1.121-1.507,4.98-7.143,2.199-9.926l-1.428-1.507c-2.379-2.378-8.455,1.336-9.931,2.298c-1.745-0.989-3.62-1.774-5.6-2.31\r\n\t\t\t\tc-0.317-1.887-1.704-8.487-5.619-8.487h-1.567c-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32\r\n\t\t\t\tC18.661,9.839,12.841,5.816,10,8.656L8.493,9.924c-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435\r\n\t\t\t\tc-1.641,0.262-8.649,1.614-8.649,5.646v1.566c0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.709,2.255,5.394\r\n\t\t\t\tc-0.791,1.239-4.745,7.739-2.292,10.194l1.427,1.188c3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334\r\n\t\t\t\tc1.789,1.058,3.726,1.896,5.773,2.47c0.335,1.379,2.275,8.677,5.755,8.677h1.567c4.566,0,5.697-8.521,5.697-8.521l-0.418-0.013\r\n\t\t\t\tc2.069-0.529,4.031-1.325,5.851-2.345c1.426,0.949,7.401,4.688,9.786,2.304l1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877\r\n\t\t\t\tc0.984-1.722,1.773-3.571,2.316-5.525c1.78-0.452,8.483-2.374,8.483-5.707v-1.566C63.988,26.73,56.016,25.533,55.518,25.462z\r\n\t\t\t\t M32,50c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,41.941,41.941,50,32,50z"},"children":[{"name":"path","attribs":{"d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12S38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M55.518,25.462c-0.541-1.957-1.326-3.811-2.311-5.536\r\n\t\t\t\tc1.121-1.507,4.98-7.143,2.199-9.926l-1.428-1.507c-2.379-2.378-8.455,1.336-9.931,2.298c-1.745-0.989-3.62-1.774-5.6-2.31\r\n\t\t\t\tc-0.317-1.887-1.704-8.487-5.619-8.487h-1.567c-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32\r\n\t\t\t\tC18.661,9.839,12.841,5.816,10,8.656L8.493,9.924c-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435\r\n\t\t\t\tc-1.641,0.262-8.649,1.614-8.649,5.646v1.566c0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.709,2.255,5.394\r\n\t\t\t\tc-0.791,1.239-4.745,7.739-2.292,10.194l1.427,1.188c3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334\r\n\t\t\t\tc1.789,1.058,3.726,1.896,5.773,2.47c0.335,1.379,2.275,8.677,5.755,8.677h1.567c4.566,0,5.697-8.521,5.697-8.521l-0.418-0.013\r\n\t\t\t\tc2.069-0.529,4.031-1.325,5.851-2.345c1.426,0.949,7.401,4.688,9.786,2.304l1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877\r\n\t\t\t\tc0.984-1.722,1.773-3.571,2.316-5.525c1.78-0.452,8.483-2.374,8.483-5.707v-1.566C63.988,26.73,56.016,25.533,55.518,25.462z\r\n\t\t\t\t M32,50c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C50,41.941,41.941,50,32,50z"},"children":[]}]}]}]}]}]}]}]};exports.cog=cog;var columns={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COLUMNS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COLUMNS"},"children":[{"name":"g","attribs":{"id":"COLUMNS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9C64,7.343,62.657,6,61,6z M21,52H6V12h15\r\n\t\t\t\tV52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[{"name":"path","attribs":{"d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9C64,7.343,62.657,6,61,6z M21,52H6V12h15\r\n\t\t\t\tV52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[]}]}]}]}]}]}]}]};exports.columns=columns;var command={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMMAND"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,39h-6V25h6c6.627,0,12-5.372,12-12c0-6.628-5.372-12-12-12\r\n\t\t\tc-6.628,0-12,5.373-12,12v6H25v-6c0-6.628-5.373-12-12-12C6.373,1,1,6.373,1,13c0,6.627,5.373,12,12,12h6v14h-6\r\n\t\t\tC6.373,39,1,44.373,1,51c0,6.628,5.373,12,12,12c6.627,0,12-5.372,12-12v-6h14v6c0,6.628,5.372,12,12,12c6.627,0,12-5.372,12-12\r\n\t\t\tC63,44.373,57.627,39,51,39z M45,13c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6s-2.686,6-6,6h-6V13z M19,51c0,3.314-2.686,6-6,6\r\n\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h6V51z M19,19h-6c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6V19z M39,39H25\r\n\t\t\tV25h14V39z M51,57c-3.314,0-6-2.686-6-6v-6h7v0.101c2.835,0.478,5,2.928,5,5.899C57,54.314,54.314,57,51,57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,39h-6V25h6c6.627,0,12-5.372,12-12c0-6.628-5.372-12-12-12\r\n\t\t\tc-6.628,0-12,5.373-12,12v6H25v-6c0-6.628-5.373-12-12-12C6.373,1,1,6.373,1,13c0,6.627,5.373,12,12,12h6v14h-6\r\n\t\t\tC6.373,39,1,44.373,1,51c0,6.628,5.373,12,12,12c6.627,0,12-5.372,12-12v-6h14v6c0,6.628,5.372,12,12,12c6.627,0,12-5.372,12-12\r\n\t\t\tC63,44.373,57.627,39,51,39z M45,13c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6s-2.686,6-6,6h-6V13z M19,51c0,3.314-2.686,6-6,6\r\n\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h6V51z M19,19h-6c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6V19z M39,39H25\r\n\t\t\tV25h14V39z M51,57c-3.314,0-6-2.686-6-6v-6h7v0.101c2.835,0.478,5,2.928,5,5.899C57,54.314,54.314,57,51,57z"},"children":[]}]}]}]}]}]};exports.command=command;var compass={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPASS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPASS"},"children":[{"name":"g","attribs":{"id":"COMPASS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S33.657,35,32,35z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S33.657,35,32,35z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.64,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.compass=compass;var computer_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3s-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26\r\n\t\t\t\tv-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3s-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26\r\n\t\t\t\tv-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]}]};exports.computer_add=computer_add;var computer_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879\r\n\t\t\t\tC36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879\r\n\t\t\t\tC40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879\r\n\t\t\t\tC27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879\r\n\t\t\t\tC23.336,29.422,23,30.172,23,31z"},"children":[{"name":"path","attribs":{"d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879\r\n\t\t\t\tC36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879\r\n\t\t\t\tC40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879\r\n\t\t\t\tC27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879\r\n\t\t\t\tC23.336,29.422,23,30.172,23,31z"},"children":[]}]}]}]}]}]}]}]};exports.computer_delete=computer_delete;var computer_download={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,18.758V5c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z M60,6H38v4h21v34H5V10h21V6H4\r\n\t\t\t\tC2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,18.758V5c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z M60,6H38v4h21v34H5V10h21V6H4\r\n\t\t\t\tC2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]}]};exports.computer_download=computer_download;var computer_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879l8-8C40.664,22.578,41,21.829,41,21\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879C27.578,22.336,26.828,22,26,22\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5\r\n\t\t\t\tl-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879l8-8C40.664,22.578,41,21.829,41,21\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879C27.578,22.336,26.828,22,26,22\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5\r\n\t\t\t\tl-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]}]};exports.computer_ok=computer_ok;var computer_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,28h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H26c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"d":"M26,28h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H26c-1.657,0-3,1.343-3,3S24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40\r\n\t\t\t\tc0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]}]};exports.computer_remove=computer_remove;var computer_upload={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3s3-1.343,3-3V12.243l1.879,1.879\r\n\t\t\t\tC37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,2.336,32.829,2,32,2\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z M60,6H41.484l4,4H59v34H5V10\r\n\t\t\t\th13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3s3-1.343,3-3V12.243l1.879,1.879\r\n\t\t\t\tC37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,2.336,32.829,2,32,2\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z M60,6H41.484l4,4H59v34H5V10\r\n\t\t\t\th13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]}]};exports.computer_upload=computer_upload;var copy_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COPY_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M38,58h-9v0H16v0H6V26h11v-6H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h10\r\n\t\t\tv0h17v0h11c1.657,0,3-1.343,3-3V47h-6V58z M61,0H23c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,38h-9v0H36v0H26V6h32V38z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M38,58h-9v0H16v0H6V26h11v-6H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h10\r\n\t\t\tv0h17v0h11c1.657,0,3-1.343,3-3V47h-6V58z M61,0H23c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,38h-9v0H36v0H26V6h32V38z"},"children":[]}]}]}]}]}]};exports.copy_1=copy_1;var copy_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"COPY"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,20H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3\r\n\t\t\tV23C44,21.343,42.657,20,41,20z M38,58H6V26h9v0h13v0h10V58z M61,0H23c-1.657,0-3,1.343-3,3v14h6V6h9v0h13v0h10v32H47v6h14\r\n\t\t\tc1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,20H3c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3\r\n\t\t\tV23C44,21.343,42.657,20,41,20z M38,58H6V26h9v0h13v0h10V58z M61,0H23c-1.657,0-3,1.343-3,3v14h6V6h9v0h13v0h10v32H47v6h14\r\n\t\t\tc1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z"},"children":[]}]}]}]}]}]};exports.copy_2=copy_2;var credit_card={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CREDIT_CARD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD"},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z M6,45h12v3H6V45z M61,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z M6,45h12v3H6V45z M61,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]}]};exports.credit_card=credit_card;var crop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"CROP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,49h-6V13.243l8.121-8.121C63.664,4.579,64,3.828,64,3c0-1.657-1.343-3-3-3\r\n\t\t\tc-0.829,0-1.578,0.336-2.121,0.879L50.757,9H15V3c0-1.657-1.343-3-3-3S9,1.343,9,3v6H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3\r\n\t\t\th6v35.758l-0.121,0.121L9,51v1.5c0,1.381,1.119,2.5,2.5,2.5H13l0.121,0.121L13.243,55H49v6c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3v-6h6c1.657,0,3-1.343,3-3C64,50.343,62.657,49,61,49z M15,15h29.757L15,44.757V15z M49,49H19.243L49,19.243\r\n\t\t\tV49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,49h-6V13.243l8.121-8.121C63.664,4.579,64,3.828,64,3c0-1.657-1.343-3-3-3\r\n\t\t\tc-0.829,0-1.578,0.336-2.121,0.879L50.757,9H15V3c0-1.657-1.343-3-3-3S9,1.343,9,3v6H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3\r\n\t\t\th6v35.758l-0.121,0.121L9,51v1.5c0,1.381,1.119,2.5,2.5,2.5H13l0.121,0.121L13.243,55H49v6c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3v-6h6c1.657,0,3-1.343,3-3C64,50.343,62.657,49,61,49z M15,15h29.757L15,44.757V15z M49,49H19.243L49,19.243\r\n\t\t\tV49z"},"children":[]}]}]}]}]}]};exports.crop=crop;var diskette={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DISKETTE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,25.001c0,1.661,1.343,3.007,3,3.007h4V28h18v0.008h4\r\n\t\t\tc1.657,0,3-1.346,3-3.007V19h0V1H15v18h0V25.001z M32,5h9v19h-9V5z M63.121,10.879l-9-9C53.578,1.336,52.829,1,52,1h-2v15h0v9.001\r\n\t\t\tc0,3.272-2.61,5.92-5.856,5.999H17.856C14.611,30.922,12,28.273,12,25.001V16h0V1H3C1.343,1,0,2.343,0,4v56c0,1.657,1.343,3,3,3\r\n\t\t\th58c1.657,0,3-1.343,3-3V13C64,12.172,63.664,11.422,63.121,10.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,25.001c0,1.661,1.343,3.007,3,3.007h4V28h18v0.008h4\r\n\t\t\tc1.657,0,3-1.346,3-3.007V19h0V1H15v18h0V25.001z M32,5h9v19h-9V5z M63.121,10.879l-9-9C53.578,1.336,52.829,1,52,1h-2v15h0v9.001\r\n\t\t\tc0,3.272-2.61,5.92-5.856,5.999H17.856C14.611,30.922,12,28.273,12,25.001V16h0V1H3C1.343,1,0,2.343,0,4v56c0,1.657,1.343,3,3,3\r\n\t\t\th58c1.657,0,3-1.343,3-3V13C64,12.172,63.664,11.422,63.121,10.879z"},"children":[]}]}]}]}]}]};exports.diskette=diskette;var documentIcon={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT"},"children":[{"name":"g","attribs":{"id":"DOCUMENT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001V3H13c-1.657,0-3,1.343-3,3v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[{"name":"path","attribs":{"d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001V3H13c-1.657,0-3,1.343-3,3v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[]}]}]}]}]}]}]}]};exports.documentIcon=documentIcon;var document_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31c-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h35l0,0C40.686,60,38,57.314,38,54z"},"children":[{"name":"path","attribs":{"d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31c-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h35l0,0C40.686,60,38,57.314,38,54z"},"children":[]}]}]}]}]}]}]}]};exports.document_add=document_add;var document_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.516,54l-1.758-1.757\r\n\t\t\t\tC38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.152,0.675,4.238,1.762l0.005-0.005L49,44.516v-19.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28l0,0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.516,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[{"name":"path","attribs":{"d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.516,54l-1.758-1.757\r\n\t\t\t\tC38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.152,0.675,4.238,1.762l0.005-0.005L49,44.516v-19.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28l0,0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.516,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[]}]}]}]}]}]}]}]};exports.document_delete=document_delete;var document_download={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0.343,0,0.673,0.046,1,0.102V39c0-3.314,2.686-6,6-6l0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h31.516l-1.758-1.757C36.672,56.157,36,54.657,36,53z M56,50c-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63s1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53\r\n\t\t\t\tC59,51.343,57.657,50,56,50z"},"children":[{"name":"path","attribs":{"d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0.343,0,0.673,0.046,1,0.102V39c0-3.314,2.686-6,6-6l0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h31.516l-1.758-1.757C36.672,56.157,36,54.657,36,53z M56,50c-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63s1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53\r\n\t\t\t\tC59,51.343,57.657,50,56,50z"},"children":[]}]}]}]}]}]}]}]};exports.document_download=document_download;var document_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48c-0.828,0-1.578,0.336-2.121,0.879L48,54.757\r\n\t\t\t\tl-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51C59,49.343,57.657,48,56,48z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6c1.533,0,2.909,0.6,3.967,1.547L49,49.516v-23.5H30c-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h23l0,0h10.516l-1.758-1.757C38.672,58.157,38,56.657,38,55z"},"children":[{"name":"path","attribs":{"d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48c-0.828,0-1.578,0.336-2.121,0.879L48,54.757\r\n\t\t\t\tl-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51C59,49.343,57.657,48,56,48z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6c1.533,0,2.909,0.6,3.967,1.547L49,49.516v-23.5H30c-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h23l0,0h10.516l-1.758-1.757C38.672,58.157,38,56.657,38,55z"},"children":[]}]}]}]}]}]}]}]};exports.document_ok=document_ok;var document_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55c0-3.314,2.686-6,6-6h6V26.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35l0,0C40.686,61,38,58.314,38,55z M56,52\r\n\t\t\t\tH44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[{"name":"path","attribs":{"d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55c0-3.314,2.686-6,6-6h6V26.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35l0,0C40.686,61,38,58.314,38,55z M56,52\r\n\t\t\t\tH44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[]}]}]}]}]}]}]}]};exports.document_remove=document_remove;var document_upload={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46c0-1.657,0.672-3.157,1.757-4.243l7-7\r\n\t\t\t\tC45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.102\r\n\t\t\t\tC42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243\r\n\t\t\t\tV60c0,1.657,1.343,3,3,3s3-1.343,3-3V46.243l1.879,1.879C54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tC59,45.172,58.664,44.422,58.121,43.879z"},"children":[{"name":"path","attribs":{"d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46c0-1.657,0.672-3.157,1.757-4.243l7-7\r\n\t\t\t\tC45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8C6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.102\r\n\t\t\t\tC42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243\r\n\t\t\t\tV60c0,1.657,1.343,3,3,3s3-1.343,3-3V46.243l1.879,1.879C54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tC59,45.172,58.664,44.422,58.121,43.879z"},"children":[]}]}]}]}]}]}]}]};exports.document_upload=document_upload;var documents={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOCUMENTS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENTS"},"children":[{"name":"g","attribs":{"id":"DOCUMENTS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23.015H38\r\n\t\t\t\tC34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037C35,18.662,36.343,20.008,38,20.008z M10,55V6\r\n\t\t\t\tC8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16C12.686,61,10,58.314,10,55z"},"children":[{"name":"path","attribs":{"d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23.015H38\r\n\t\t\t\tC34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037C35,18.662,36.343,20.008,38,20.008z M10,55V6\r\n\t\t\t\tC8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16C12.686,61,10,58.314,10,55z"},"children":[]}]}]}]}]}]}]}]};exports.documents=documents;var download={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DOWNLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOWNLOAD"},"children":[{"name":"g","attribs":{"id":"DOWNLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40s1.68-0.384,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3c-0.885,0-1.682,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.182l-3.77-4.189l0,0C24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007\r\n\t\t\t\tL20.77,29.007z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0s0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40s1.68-0.384,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3c-0.885,0-1.682,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.182l-3.77-4.189l0,0C24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007\r\n\t\t\t\tL20.77,29.007z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0s0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]}]};exports.download=download;var dribbble={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"dribbble_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dribbble"},"children":[{"name":"g","attribs":{"id":"dribbble"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.865-6.015c-0.803-1.899-1.795-3.727-2.951-5.436\r\n\t\t\t\tc-1.145-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907c-1.709-1.158-3.539-2.149-5.436-2.953\r\n\t\t\t\tC42.523,1.7,40.5,1.068,38.443,0.651c-2.107-0.433-4.276-0.652-6.442-0.652c-2.169,0-4.338,0.22-6.446,0.652\r\n\t\t\t\tc-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953C12.411,6.61,10.818,7.924,9.37,9.373\r\n\t\t\t\tc-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436c-0.818,1.934-1.446,3.96-1.867,6.015\r\n\t\t\t\tc-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448c0.421,2.056,1.049,4.08,1.867,6.013\r\n\t\t\t\tc0.802,1.896,1.795,3.729,2.951,5.438c1.144,1.694,2.458,3.285,3.904,4.733c1.447,1.446,3.04,2.759,4.734,3.904\r\n\t\t\t\tc1.711,1.155,3.541,2.149,5.437,2.95c1.933,0.82,3.957,1.445,6.013,1.867c2.109,0.435,4.277,0.651,6.446,0.651\r\n\t\t\t\tc2.167,0,4.335-0.217,6.441-0.651c2.058-0.422,4.082-1.047,6.015-1.867c1.896-0.801,3.728-1.795,5.437-2.95\r\n\t\t\t\tc1.693-1.146,3.287-2.458,4.734-3.904c1.446-1.448,2.762-3.039,3.905-4.733c1.155-1.709,2.149-3.541,2.95-5.438\r\n\t\t\t\tc0.817-1.933,1.447-3.957,1.867-6.013C63.781,36.339,64,34.17,64,31.997C64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67\r\n\t\t\t\tc6.919,0,13.233,2.579,18.049,6.819c-0.067,0.106-3.96,6.03-14.276,9.896C31.104,12.802,25.971,5.982,25.56,5.441\r\n\t\t\t\tC27.626,4.941,29.78,4.67,32.001,4.67z M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018\r\n\t\t\t\tC25.396,5.479,25.426,5.474,25.455,5.464z M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747\r\n\t\t\t\tc-13.123,3.487-24.511,3.35-25.233,3.337C7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.264\r\n\t\t\t\tC7.321,45.421,4.672,39.02,4.672,31.997c0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894\r\n\t\t\t\tc0.784,1.532,1.532,3.09,2.219,4.645c-0.363,0.101-0.72,0.21-1.078,0.326c-14.75,4.767-22.23,18.038-22.23,18.038\r\n\t\t\t\tS11.671,50.258,11.673,50.264z M32.001,59.33c-6.338,0-12.157-2.176-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01\r\n\t\t\t\ts-0.252-0.188-0.612-0.479c0.199,0.164,0.413,0.31,0.617,0.469c0.1-0.217,5.39-11.471,21.442-17.062\r\n\t\t\t\tc0.06-0.022,0.121-0.041,0.182-0.058c3.846,9.993,5.434,18.362,5.838,20.751C39.393,58.559,35.785,59.33,32.001,59.33z\r\n\t\t\t\t M47.271,54.668c-0.277-1.65-1.733-9.671-5.319-19.521c8.823-1.412,16.468,1.008,17.032,1.192\r\n\t\t\t\tC57.768,43.955,53.408,50.523,47.271,54.668z M40.286,30.832c-0.192-0.468-0.388-0.938-0.589-1.411\r\n\t\t\t\tc-0.569-1.337-1.182-2.662-1.817-3.964c10.793-4.405,15.175-10.741,15.226-10.817c3.834,4.655,6.152,10.602,6.215,17.087\r\n\t\t\t\tC58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[{"name":"path","attribs":{"d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.865-6.015c-0.803-1.899-1.795-3.727-2.951-5.436\r\n\t\t\t\tc-1.145-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907c-1.709-1.158-3.539-2.149-5.436-2.953\r\n\t\t\t\tC42.523,1.7,40.5,1.068,38.443,0.651c-2.107-0.433-4.276-0.652-6.442-0.652c-2.169,0-4.338,0.22-6.446,0.652\r\n\t\t\t\tc-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953C12.411,6.61,10.818,7.924,9.37,9.373\r\n\t\t\t\tc-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436c-0.818,1.934-1.446,3.96-1.867,6.015\r\n\t\t\t\tc-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448c0.421,2.056,1.049,4.08,1.867,6.013\r\n\t\t\t\tc0.802,1.896,1.795,3.729,2.951,5.438c1.144,1.694,2.458,3.285,3.904,4.733c1.447,1.446,3.04,2.759,4.734,3.904\r\n\t\t\t\tc1.711,1.155,3.541,2.149,5.437,2.95c1.933,0.82,3.957,1.445,6.013,1.867c2.109,0.435,4.277,0.651,6.446,0.651\r\n\t\t\t\tc2.167,0,4.335-0.217,6.441-0.651c2.058-0.422,4.082-1.047,6.015-1.867c1.896-0.801,3.728-1.795,5.437-2.95\r\n\t\t\t\tc1.693-1.146,3.287-2.458,4.734-3.904c1.446-1.448,2.762-3.039,3.905-4.733c1.155-1.709,2.149-3.541,2.95-5.438\r\n\t\t\t\tc0.817-1.933,1.447-3.957,1.867-6.013C63.781,36.339,64,34.17,64,31.997C64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67\r\n\t\t\t\tc6.919,0,13.233,2.579,18.049,6.819c-0.067,0.106-3.96,6.03-14.276,9.896C31.104,12.802,25.971,5.982,25.56,5.441\r\n\t\t\t\tC27.626,4.941,29.78,4.67,32.001,4.67z M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018\r\n\t\t\t\tC25.396,5.479,25.426,5.474,25.455,5.464z M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747\r\n\t\t\t\tc-13.123,3.487-24.511,3.35-25.233,3.337C7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.264\r\n\t\t\t\tC7.321,45.421,4.672,39.02,4.672,31.997c0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894\r\n\t\t\t\tc0.784,1.532,1.532,3.09,2.219,4.645c-0.363,0.101-0.72,0.21-1.078,0.326c-14.75,4.767-22.23,18.038-22.23,18.038\r\n\t\t\t\tS11.671,50.258,11.673,50.264z M32.001,59.33c-6.338,0-12.157-2.176-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01\r\n\t\t\t\ts-0.252-0.188-0.612-0.479c0.199,0.164,0.413,0.31,0.617,0.469c0.1-0.217,5.39-11.471,21.442-17.062\r\n\t\t\t\tc0.06-0.022,0.121-0.041,0.182-0.058c3.846,9.993,5.434,18.362,5.838,20.751C39.393,58.559,35.785,59.33,32.001,59.33z\r\n\t\t\t\t M47.271,54.668c-0.277-1.65-1.733-9.671-5.319-19.521c8.823-1.412,16.468,1.008,17.032,1.192\r\n\t\t\t\tC57.768,43.955,53.408,50.523,47.271,54.668z M40.286,30.832c-0.192-0.468-0.388-0.938-0.589-1.411\r\n\t\t\t\tc-0.569-1.337-1.182-2.662-1.817-3.964c10.793-4.405,15.175-10.741,15.226-10.817c3.834,4.655,6.152,10.602,6.215,17.087\r\n\t\t\t\tC58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[]}]}]}]}]}]}]}]};exports.dribbble=dribbble;var drop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"DROP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.583,3.847c0,0-19.616,25.205-19.592,35.712\r\n\t\t\tc0.026,11.331,9.338,20.49,19.948,20.462c10.609-0.029,20.137-9.239,20.111-20.57C52.024,28.592,31.583,3.847,31.583,3.847z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.583,3.847c0,0-19.616,25.205-19.592,35.712\r\n\t\t\tc0.026,11.331,9.338,20.49,19.948,20.462c10.609-0.029,20.137-9.239,20.111-20.57C52.024,28.592,31.583,3.847,31.583,3.847z"},"children":[]}]}]}]}]}]};exports.drop=drop;var dropbox={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"dropbox_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dropbox"},"children":[{"name":"g","attribs":{"id":"dropbox"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32.04,39.477L18.826,50.346l-5.654-3.662v4.105L32.04,62.003l18.864-11.215v-4.106l-5.652,3.662L32.04,39.477z\r\n\t\t\t\t M0.001,35.846l18.825,12.184L32,37.134L13.018,25.513L0.001,35.846z M32,37.134l13.174,10.896L64,35.846L50.982,25.513\r\n\t\t\t\tL32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176L45.174,2.997L32,13.893\r\n\t\t\t\tl18.982,11.619L63.999,15.176z"},"children":[{"name":"path","attribs":{"d":"M32.04,39.477L18.826,50.346l-5.654-3.662v4.105L32.04,62.003l18.864-11.215v-4.106l-5.652,3.662L32.04,39.477z\r\n\t\t\t\t M0.001,35.846l18.825,12.184L32,37.134L13.018,25.513L0.001,35.846z M32,37.134l13.174,10.896L64,35.846L50.982,25.513\r\n\t\t\t\tL32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176L45.174,2.997L32,13.893\r\n\t\t\t\tl18.982,11.619L63.999,15.176z"},"children":[]}]}]}]}]}]}]}]};exports.dropbox=dropbox;var eject={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"EJECT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EJECT"},"children":[{"name":"g","attribs":{"id":"EJECT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3S43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962c-0.004-0.005-0.006-0.01-0.01-0.016l-0.015-0.022l0,0\r\n\t\t\t\tC34.014,17.563,33.073,17,32,17s-2.013,0.563-2.544,1.41l0,0l-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0\r\n\t\t\t\tC19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[{"name":"path","attribs":{"d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3S43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962c-0.004-0.005-0.006-0.01-0.01-0.016l-0.015-0.022l0,0\r\n\t\t\t\tC34.014,17.563,33.073,17,32,17s-2.013,0.563-2.544,1.41l0,0l-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0\r\n\t\t\t\tC19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[]}]}]}]}]}]}]}]};exports.eject=eject;var equalizer={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"EQUALIZER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EQUALIZER"},"children":[{"name":"g","attribs":{"id":"EQUALIZER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V26C16,24.343,14.657,23,13,23z M13,3\r\n\t\t\t\tc0-1.657-1.343-3-3-3S7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3v25h6V3z M57,3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3s3-1.343,3-3V44H7V61z M57,15h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61c0,1.657,1.343,3,3,3s3-1.343,3-3V36h-6V61z M29,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34\r\n\t\t\t\tC38,32.343,36.657,31,35,31z"},"children":[{"name":"path","attribs":{"d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V26C16,24.343,14.657,23,13,23z M13,3\r\n\t\t\t\tc0-1.657-1.343-3-3-3S7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3v25h6V3z M57,3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3s3-1.343,3-3V44H7V61z M57,15h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61c0,1.657,1.343,3,3,3s3-1.343,3-3V36h-6V61z M29,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34\r\n\t\t\t\tC38,32.343,36.657,31,35,31z"},"children":[]}]}]}]}]}]}]}]};exports.equalizer=equalizer;var facebook_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"facebook_2_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook_1_"},"children":[{"name":"g","attribs":{"id":"facebook_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.516-9.593c1.901-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303\r\n\t\t\t\tc-11.982,0-15.904-0.501-20.016,3.675c-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938\r\n\t\t\t\tc-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0v-32.01c0,0,5.173,0,8.042,0\r\n\t\t\t\tc0.626-3.385,1.236-6.036,2.088-9.947L36.963,22.048L36.963,22.048z"},"children":[{"name":"path","attribs":{"d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.516-9.593c1.901-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303\r\n\t\t\t\tc-11.982,0-15.904-0.501-20.016,3.675c-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938\r\n\t\t\t\tc-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0v-32.01c0,0,5.173,0,8.042,0\r\n\t\t\t\tc0.626-3.385,1.236-6.036,2.088-9.947L36.963,22.048L36.963,22.048z"},"children":[]}]}]}]}]}]}]}]};exports.facebook_1=facebook_1;var facebook_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"facebook_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook"},"children":[{"name":"g","attribs":{"id":"facebook"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M59.059-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932v54.354c0,2.725,2.207,4.728,4.929,4.728h54.117\r\n\t\t\t\tc2.721,0,4.928-2.002,4.928-4.728V4.926C63.986,2.202,61.781-0.006,59.059-0.006z M33.615,21.199\r\n\t\t\t\tc-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692v2.691h8.148\r\n\t\t\t\tl-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.337,0.994,8.208,1.803L33.615,21.199z"},"children":[{"name":"path","attribs":{"d":"M59.059-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932v54.354c0,2.725,2.207,4.728,4.929,4.728h54.117\r\n\t\t\t\tc2.721,0,4.928-2.002,4.928-4.728V4.926C63.986,2.202,61.781-0.006,59.059-0.006z M33.615,21.199\r\n\t\t\t\tc-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692v2.691h8.148\r\n\t\t\t\tl-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.337,0.994,8.208,1.803L33.615,21.199z"},"children":[]}]}]}]}]}]}]}]};exports.facebook_2=facebook_2;var fast_forward={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FAST_FORWARD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD"},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M51,32c0-1.073-0.562-2.013-1.41-2.544l0,0l-0.021-0.014c-0.006-0.003-0.01-0.007-0.017-0.01L33.59,19.456l0,0\r\n\t\t\t\tC33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131l0,0C17.129,19.168,16.584,19,16,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413V42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.004,0.011-0.008,0.017-0.01l0.021-0.015l0,0\r\n\t\t\t\tC50.438,34.014,51,33.073,51,32z"},"children":[{"name":"path","attribs":{"d":"M51,32c0-1.073-0.562-2.013-1.41-2.544l0,0l-0.021-0.014c-0.006-0.003-0.01-0.007-0.017-0.01L33.59,19.456l0,0\r\n\t\t\t\tC33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131l0,0C17.129,19.168,16.584,19,16,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413V42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.004,0.011-0.008,0.017-0.01l0.021-0.015l0,0\r\n\t\t\t\tC50.438,34.014,51,33.073,51,32z"},"children":[]}]}]}]}]}]}]}]};exports.fast_forward=fast_forward;var first_aid={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FIRST_AID"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,18H47c0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H3\r\n\t\t\tc-1.657,0-3,1.343-3,3v37c0,1.657,1.343,3,3,3h5v0h3v0h42v0h3v0h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z M32,9\r\n\t\t\tc4.971,0,9,4.029,9,9H23C23,13.03,27.03,9,32,9z M43,42h-8v8c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-8h-8\r\n\t\t\tc-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h8v-8c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v8h8c1.657,0,3,1.343,3,3\r\n\t\t\tC46,40.657,44.657,42,43,42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,18H47c0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H3\r\n\t\t\tc-1.657,0-3,1.343-3,3v37c0,1.657,1.343,3,3,3h5v0h3v0h42v0h3v0h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z M32,9\r\n\t\t\tc4.971,0,9,4.029,9,9H23C23,13.03,27.03,9,32,9z M43,42h-8v8c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-8h-8\r\n\t\t\tc-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h8v-8c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v8h8c1.657,0,3,1.343,3,3\r\n\t\t\tC46,40.657,44.657,42,43,42z"},"children":[]}]}]}]}]}]};exports.first_aid=first_aid;var folder={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLDER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER"},"children":[{"name":"g","attribs":{"id":"FOLDER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3\r\n\t\t\t\tC64,14.343,62.657,13,61,13z"},"children":[{"name":"path","attribs":{"d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3\r\n\t\t\t\tC64,14.343,62.657,13,61,13z"},"children":[]}]}]}]}]}]}]}]};exports.folder=folder;var folder_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_2_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M60,49h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.145,53.372,42,52.705,42,52\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.938,0.6,4,1.557V19H0V51z M61,10H23.982L18,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"d":"M60,49h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.145,53.372,42,52.705,42,52\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.938,0.6,4,1.557V19H0V51z M61,10H23.982L18,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]}]};exports.folder_add=folder_add;var folder_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757l-3.879-3.879C50.578,43.336,49.828,43,49,43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879C46.336,56.422,46,57.172,46,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879C59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879C63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41l0,0h0.557\r\n\t\t\t\tc0.07-0.078,0.127-0.168,0.2-0.243L46.516,52l-1.758-1.758C43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L55,43.516l1.757-1.758C57.843,40.672,59.343,40,61,40c1.098,0,2.113,0.316,3,0.832V19H0V51z\r\n\t\t\t\t M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757l-3.879-3.879C50.578,43.336,49.828,43,49,43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879C46.336,56.422,46,57.172,46,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879C59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879C63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41l0,0h0.557\r\n\t\t\t\tc0.07-0.078,0.127-0.168,0.2-0.243L46.516,52l-1.758-1.758C43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L55,43.516l1.757-1.758C57.843,40.672,59.343,40,61,40c1.098,0,2.113,0.316,3,0.832V19H0V51z\r\n\t\t\t\t M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3C64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]}]};exports.folder_delete=folder_delete;var folder_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879C50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60s1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49\r\n\t\t\t\tC64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3C1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h40.367l0,0C43.145,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538\r\n\t\t\t\tl3.781-3.781C57.843,43.672,59.343,43,61,43c1.1,0,2.113,0.316,3,0.832V20H0V52z"},"children":[{"name":"path","attribs":{"d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879C50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60s1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49\r\n\t\t\t\tC64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3C1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h40.367l0,0C43.145,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538\r\n\t\t\t\tl3.781-3.781C57.843,43.672,59.343,43,61,43c1.1,0,2.113,0.316,3,0.832V20H0V52z"},"children":[]}]}]}]}]}]}]}]};exports.folder_ok=folder_ok;var folder_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.145,56.372,42,55.705,42,55c0-3.314,2.686-6,6-6h12c1.544,0,2.938,0.6,4,1.557V22H0\r\n\t\t\t\tV54z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52z M61,13H23.982L18,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[{"name":"path","attribs":{"d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.145,56.372,42,55.705,42,55c0-3.314,2.686-6,6-6h12c1.544,0,2.938,0.6,4,1.557V22H0\r\n\t\t\t\tV54z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52z M61,13H23.982L18,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[]}]}]}]}]}]}]}]};exports.folder_remove=folder_remove;var followers={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLLOWERS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWERS"},"children":[{"name":"g","attribs":{"id":"FOLLOWERS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.018c0.379-0.375,0.806-0.702,1.272-0.969\r\n\t\t\t\tc-3.979-1.701-5.021-2.293-5.021-2.293l-0.055-5.894c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.925c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.516\r\n\t\t\t\tl-5.758-5.758C34.672,56.157,34,54.657,34,53z M52.898,47h5.828c-0.789-0.725-1.662-1.391-2.713-1.913\r\n\t\t\t\tc-1.854-0.923-2.765-1.246-3.482-1.415C52.833,44.387,53,45.174,53,46C53,46.343,52.954,46.673,52.898,47z M47.243,56H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H47.243l1.879-1.879C49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53c0,0.829,0.336,1.578,0.879,2.121l7,7\r\n\t\t\t\tC45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L47.243,56z M64.001,59.993\r\n\t\t\t\tc0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.104C52.953,59.326,53,59.657,53,60c0,1.1-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.018c0.379-0.375,0.806-0.702,1.272-0.969\r\n\t\t\t\tc-3.979-1.701-5.021-2.293-5.021-2.293l-0.055-5.894c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.925c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.516\r\n\t\t\t\tl-5.758-5.758C34.672,56.157,34,54.657,34,53z M52.898,47h5.828c-0.789-0.725-1.662-1.391-2.713-1.913\r\n\t\t\t\tc-1.854-0.923-2.765-1.246-3.482-1.415C52.833,44.387,53,45.174,53,46C53,46.343,52.954,46.673,52.898,47z M47.243,56H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H47.243l1.879-1.879C49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53c0,0.829,0.336,1.578,0.879,2.121l7,7\r\n\t\t\t\tC45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L47.243,56z M64.001,59.993\r\n\t\t\t\tc0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.104C52.953,59.326,53,59.657,53,60c0,1.1-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]}]};exports.followers=followers;var following={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FOLLOWING_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWING"},"children":[{"name":"g","attribs":{"id":"FOLLOWING"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.484,63H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z\r\n\t\t\t\t M48.102,59H40c-3.314,0-6-2.686-6-6s2.686-6,6-6h8.102C48.046,46.673,48,46.343,48,46c0-1.186,0.355-2.282,0.947-3.212\r\n\t\t\t\tc-0.609-0.213-1.332-0.486-2.247-0.865c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.353,3.046,7.353l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.994,0,59.994h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C48,59.657,48.046,59.327,48.102,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3s1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.484,63H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z\r\n\t\t\t\t M48.102,59H40c-3.314,0-6-2.686-6-6s2.686-6,6-6h8.102C48.046,46.673,48,46.343,48,46c0-1.186,0.355-2.282,0.947-3.212\r\n\t\t\t\tc-0.609-0.213-1.332-0.486-2.247-0.865c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.353,3.046,7.353l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047C0,49.062,0,59.994,0,59.994h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C48,59.657,48.046,59.327,48.102,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3s1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[]}]}]}]}]}]}]}]};exports.following=following;var font_size_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FONT_SIZE_DOWN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.798,52.919l-17-44l-0.007,0.002C22.358,7.799,21.275,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.006-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.694,45h20.613l3.895,10.081l0.006-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29H43\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.798,52.919l-17-44l-0.007,0.002C22.358,7.799,21.275,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.006-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.694,45h20.613l3.895,10.081l0.006-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29H43\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"},"children":[]}]}]}]}]}]};exports.font_size_down=font_size_down;var font_size_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FONT_SIZE_UP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.798,52.919l-17-44l-0.006,0.002C22.358,7.799,21.276,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.007-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.693,45h20.613l3.895,10.081l0.007-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29h-6v-6\r\n\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6h-6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6v6c0,1.657,1.343,3,3,3s3-1.343,3-3v-6h6\r\n\t\t\tc1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.798,52.919l-17-44l-0.006,0.002C22.358,7.799,21.276,7,20,7\r\n\t\t\tc-1.275,0-2.358,0.799-2.792,1.921l-0.007-0.002l-17,44l0.007,0.003C0.078,53.257,0,53.619,0,54c0,1.657,1.343,3,3,3\r\n\t\t\tc1.275,0,2.358-0.799,2.792-1.921l0.007,0.002L9.693,45h20.613l3.895,10.081l0.007-0.002C34.642,56.201,35.725,57,37,57\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.382-0.078-0.743-0.208-1.079L39.798,52.919z M12.012,39L20,18.324L27.988,39H12.012z M61,29h-6v-6\r\n\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6h-6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6v6c0,1.657,1.343,3,3,3s3-1.343,3-3v-6h6\r\n\t\t\tc1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z"},"children":[]}]}]}]}]}]};exports.font_size_up=font_size_up;var forrst={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"forrst_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"forrst"},"children":[{"name":"g","attribs":{"id":"forrst"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M59.873,61.947L33.865,0.88c-0.229-0.538-0.747-0.883-1.321-0.883c-0.574,0-1.093,0.345-1.32,0.88L5.127,61.943\r\n\t\t\t\tc-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667L20.714,48c-1.085,0-1.964-0.895-1.964-2\r\n\t\t\t\ts0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929c1.085,0,1.964,0.896,1.964,2v3l5.893-3\r\n\t\t\t\tc1.086,0,1.965,0.895,1.965,2c0,1.104-0.879,2-1.965,2l-5.893,3v7l9.821-6c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2\r\n\t\t\t\tl-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663C60.021,62.928,60.066,62.4,59.873,61.947z"},"children":[{"name":"path","attribs":{"d":"M59.873,61.947L33.865,0.88c-0.229-0.538-0.747-0.883-1.321-0.883c-0.574,0-1.093,0.345-1.32,0.88L5.127,61.943\r\n\t\t\t\tc-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667L20.714,48c-1.085,0-1.964-0.895-1.964-2\r\n\t\t\t\ts0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929c1.085,0,1.964,0.896,1.964,2v3l5.893-3\r\n\t\t\t\tc1.086,0,1.965,0.895,1.965,2c0,1.104-0.879,2-1.965,2l-5.893,3v7l9.821-6c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2\r\n\t\t\t\tl-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663C60.021,62.928,60.066,62.4,59.873,61.947z"},"children":[]}]}]}]}]}]}]}]};exports.forrst=forrst;var foursquare={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"foursquare_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"foursquare"},"children":[{"name":"g","attribs":{"id":"foursquare"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41.523,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245c-2.46-1.881-5.468-3.047-8.815-3.047\r\n\t\t\t\tc-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311c0.623,0,1.222-0.104,1.825-0.181l13.387,12.458\r\n\t\t\t\tl34.24-30.692V5.018L41.523,27.182z M14.725,43.102c-0.057,0-0.109,0.017-0.166,0.017c-5.998,0-10.877-4.806-10.877-10.71\r\n\t\t\t\tc0-5.907,4.879-10.712,10.877-10.712c2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722\r\n\t\t\t\tC25.434,38.257,20.642,43.014,14.725,43.102z M59.8,27.491L48.426,37.908L30.158,54.157l-9.723-8.753\r\n\t\t\t\tc2.691-1.211,4.978-3.209,6.487-5.69l3.794,3.925l13.511-13.911L59.8,13.77V27.491z"},"children":[{"name":"path","attribs":{"d":"M41.523,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245c-2.46-1.881-5.468-3.047-8.815-3.047\r\n\t\t\t\tc-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311c0.623,0,1.222-0.104,1.825-0.181l13.387,12.458\r\n\t\t\t\tl34.24-30.692V5.018L41.523,27.182z M14.725,43.102c-0.057,0-0.109,0.017-0.166,0.017c-5.998,0-10.877-4.806-10.877-10.71\r\n\t\t\t\tc0-5.907,4.879-10.712,10.877-10.712c2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722\r\n\t\t\t\tC25.434,38.257,20.642,43.014,14.725,43.102z M59.8,27.491L48.426,37.908L30.158,54.157l-9.723-8.753\r\n\t\t\t\tc2.691-1.211,4.978-3.209,6.487-5.69l3.794,3.925l13.511-13.911L59.8,13.77V27.491z"},"children":[]}]}]}]}]}]}]}]};exports.foursquare=foursquare;var frame={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"FRAME_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FRAME"},"children":[{"name":"g","attribs":{"id":"FRAME"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2\r\n\t\t\t\th-3.367C52.402,2.838,51.305,2,50,2s-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367\r\n\t\t\t\tC34.402,2.838,33.305,2,32,2c-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23\r\n\t\t\t\ts0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.837,38.598,2,39.695,2,41\r\n\t\t\t\ts0.837,2.402,2,2.816v3.367C2.837,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.837,56.598,2,57.695,2,59\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.815v-3.367c1.162-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.816V25.82c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z\r\n\t\t\t\t M54,54H10V10h44V54z"},"children":[{"name":"path","attribs":{"d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2\r\n\t\t\t\th-3.367C52.402,2.838,51.305,2,50,2s-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367\r\n\t\t\t\tC34.402,2.838,33.305,2,32,2c-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23\r\n\t\t\t\ts0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.837,38.598,2,39.695,2,41\r\n\t\t\t\ts0.837,2.402,2,2.816v3.367C2.837,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.837,56.598,2,57.695,2,59\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.815v-3.367c1.162-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.162-0.412,2-1.512,2-2.815\r\n\t\t\t\ts-0.837-2.403-2-2.816V25.82c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z\r\n\t\t\t\t M54,54H10V10h44V54z"},"children":[]}]}]}]}]}]}]}]};exports.frame=frame;var globe={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"GLOBE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GLOBE"},"children":[{"name":"g","attribs":{"id":"GLOBE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089c0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013\r\n\t\t\t\tc-0.023-0.013-0.047-0.026-0.07-0.038c-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235\r\n\t\t\t\tc-0.03-0.002-0.059-0.004-0.089-0.006c-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114\r\n\t\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.006c-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z\r\n\t\t\t\t M43.382,11.985c0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.164,0.009,0.279,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.31,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.065-0.023-0.131-0.047-0.196-0.07c-0.172-0.022-0.357,0.059-0.478,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.02,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.275,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.287,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.103,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.094-0.021,0.188-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.049-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.113-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.063-0.045h-0.172c-0.066-0.021-0.113-0.079-0.211-0.089C32.725,7,32.688,7.043,32.652,7.085\r\n\t\t\t\tc-0.041,0.109,0.107,0.294,0.127,0.4c-0.02,0.017-0.038,0.034-0.057,0.051c-0.109-0.025-0.307-0.287-0.351-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.102,0.233-0.28,0.267v0.114c0.275,0.013,0.552,0.025,0.826,0.038c0.06-0.04,0.119-0.081,0.179-0.121\r\n\t\t\t\tc0.077-0.033,0.161-0.016,0.254-0.045c0.078-0.04,0.156-0.08,0.234-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.022-0.038-0.047-0.076-0.069-0.114c-0.062-0.017-0.123-0.034-0.185-0.051\r\n\t\t\t\tc-0.119-0.023-0.25,0.029-0.375,0.026c-0.024-0.051-0.051-0.102-0.075-0.153c-0.03-0.011-0.06-0.021-0.089-0.032\r\n\t\t\t\tc-0.133,0.016-0.224,0.14-0.286,0.229h-0.108c-0.027-0.1-0.003-0.248,0.025-0.343c-0.137,0.061-0.143,0.232-0.268,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.031,0.032c-0.168-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.082,0.106-0.162,0.212-0.242,0.318c-0.086,0.062-0.15,0.069-0.196,0.172c-0.004,0.004-0.009,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061C21.277,9.6,21.247,9.54,21.129,9.564C21.066,9.601,20.983,9.637,20.993,9.697z M21.388,8.988\r\n\t\t\t\tc-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24L20.988,9.24\r\n\t\t\t\tc0.003-0.004-0.005-0.009-0.001-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.052-0.021-0.103-0.043-0.153-0.064c-0.119,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.146-0.017-0.19-0.024\r\n\t\t\t\tc-0.086-0.018-0.14,0.054-0.197,0.069c-0.06-0.006-0.119-0.013-0.178-0.019h-0.014c-0.072,0.047-0.145,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.06-0.242-0.038c-0.091,0.04-0.183,0.08-0.272,0.121h-0.179c-0.091-0.1-0.215-0.211-0.272-0.337\r\n\t\t\t\tc-0.055-0.015-0.129-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.014c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.168-0.232-0.211-0.33-0.305c-0.018-0.016-0.033-0.139-0.089-0.19c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.088-0.098-0.178-0.194-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.055-0.074-0.139-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.107c-0.005,0.002-0.009,0.004-0.014,0.008c-0.182-0.153-0.225-0.623-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.105-0.144-0.037-0.516-0.089-0.724c-0.032-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.152-0.152c-0.14-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.166-0.432\r\n\t\t\t\tc-0.094-0.171-0.256-0.287-0.299-0.521c0.033-0.045,0.039-0.066,0.096-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.075,0.013c0.08-0.159,0.058-0.398,0.185-0.508c-0.074-0.191-0.148-0.381-0.223-0.572\r\n\t\t\t\tc-0.121,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.157,0.011-0.28,0.032c-0.041-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.039,0.032-0.08,0.063-0.12,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.014-0.017-0.025-0.034-0.039-0.051c-0.147-0.032-0.297-0.064-0.444-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.069-0.038-0.032-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.168,0.358-0.146,0.527c-0.038,0.02-0.089,0.07-0.146,0.064\r\n\t\t\t\tc-0.154-0.018-0.267-0.184-0.4-0.235c-0.133-0.05-0.434-0.054-0.541-0.114c-0.118-0.068-0.136-0.311-0.24-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.067-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.075,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.021,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.178-0.032,0.262\r\n\t\t\t\tc0.08,0.135,0.04,0.035,0.14,0.102c0.004,0.016,0.008,0.03,0.013,0.044c0.042,0.024,0.085,0.052,0.127,0.076\r\n\t\t\t\tc0.063-0.013,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.018,0.08,0.021,0.102,0.044\r\n\t\t\t\tc0.015,0.021,0.01,0.028,0.006,0.058c0.034,0.022,0.057,0.033,0.121,0.031c0.011,0.033,0.011,0.061,0,0.096\r\n\t\t\t\tc0.065,0.068,0.166,0.135,0.267,0.164c0.006,0.032,0.013,0.063,0.019,0.096c0.033,0.061,0.118,0.08,0.14,0.158v0.096\r\n\t\t\t\tc0.014,0.018,0.035,0.021,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.024c-0.023,0.019-0.047,0.038-0.07,0.058h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.033,0.013,0.047,0.006,0.094c0.142,0.043,0.215,0.149,0.324,0.223\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.361c0.062,0.033,0.311,0.192,0.388,0.173\r\n\t\t\t\tc0.102-0.054,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.011,0.145,0.062,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.279c0.087-0.008,0.174-0.018,0.261-0.025c0.052-0.039,0.054-0.107,0.127-0.133\r\n\t\t\t\tc0.214-0.02,0.428-0.038,0.642-0.057c0.032-0.013,0.039-0.043,0.083-0.058c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.024,0.03,0.051,0.044,0.075c0.023,0.002,0.047,0.005,0.07,0.007c0.006,0.008,0.013,0.017,0.019,0.024\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.096c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.007\r\n\t\t\t\tc0.002-0.026-0.002-0.036-0.013-0.062c0.025-0.017,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.025,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.016-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.063,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.262c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.166c0.049,0.041,0.097,0.084,0.146,0.127v0.006c-0.038-0.004-0.076-0.01-0.114-0.014\r\n\t\t\t\tc-0.031,0.139-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.016,0.114,0.07\r\n\t\t\t\tc-0.021,0.016-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.014c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.016-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.205,0.133,0.248c0.029,0.068-0.018,0.162,0.038,0.262\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.011-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.031-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.223-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.215,0.216,0.432,0.324,0.647c0.075,0.146,0.371,0.403,0.203,0.571c0.03,0.141,0.059,0.281,0.089,0.42\r\n\t\t\t\tc0.023,0.055,0.047,0.109,0.07,0.165c0.02,0.081-0.031,0.143-0.025,0.202c0.008,0.08,0.071,0.147,0.089,0.211\r\n\t\t\t\tc0.014,0.047-0.021,0.072-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.116,0.131,0.233,0.264,0.349,0.395\r\n\t\t\t\tc0.12,0.189,0.16,0.434,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.078,0-0.096,0.025\r\n\t\t\t\tc-0.025,0.031,0.123,0.229,0.159,0.285c-0.017,0.049-0.034,0.099-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.031\r\n\t\t\t\tc0.006,0.003,0.013,0.005,0.019,0.007c0.006-0.015,0.013-0.03,0.019-0.045c0.018-0.009,0.022-0.011,0.052-0.013\r\n\t\t\t\tc0.013,0.022,0.024,0.047,0.038,0.069c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.028,0.021,0.056,0.038,0.095\r\n\t\t\t\tc0.024,0.043,0.115,0.075,0.165,0.09c0.061-0.047,0.096-0.123,0.178-0.146c0.115-0.035,0.252,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.09c0.15-0.07,0.214,0,0.331,0c0.034-0.019,0.067-0.037,0.103-0.057\r\n\t\t\t\tc0.121-0.035,0.233,0.073,0.317,0.102c0.04-0.03,0.07-0.055,0.095-0.102c0.058,0.014,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.018-0.019,0.021-0.053,0.033-0.075c0.049-0.049,0.321-0.018,0.399-0.07c0.083-0.072,0.165-0.145,0.248-0.217\r\n\t\t\t\tc0.416-0.326,0.721-0.688,1.017-1.138c0.074-0.112,0.264-0.19,0.305-0.299c0.021-0.052-0.027-0.122-0.019-0.146\r\n\t\t\t\tc0.017-0.045,0.065-0.033,0.089-0.064c0.071-0.091,0.109-0.35,0.09-0.496c-0.039-0.016-0.078-0.04-0.096-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.02-0.019c0.078-0.091,0.133-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.008-0.062-0.051-0.036-0.063-0.07c0.002-0.006,0.005-0.013,0.007-0.019c0.012-0.032,0.024-0.064,0.037-0.096\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.02-0.388c-0.028,0.011-0.035,0.019-0.076,0.019c-0.039-0.123-0.087-0.273-0.044-0.375\r\n\t\t\t\tc-0.007-0.074-0.062-0.111-0.114-0.14v-0.202c0.119-0.088,0.237-0.175,0.355-0.262c0.146-0.122,0.233-0.305,0.4-0.406\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.643-0.293c0.137-0.094,0.224-0.268,0.33-0.394c0-0.028-0.008-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.012-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.162,0.013-0.337-0.069-0.432c0.003-0.034,0.034-0.062,0.044-0.107c0.025-0.113-0.041-0.295-0.057-0.395\r\n\t\t\t\tc0.029-0.055,0.059-0.11,0.088-0.165c-0.064-0.14-0.182-0.157-0.266-0.267c-0.084-0.108-0.127-0.394-0.07-0.554\r\n\t\t\t\tc-0.019-0.028-0.043-0.032-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.127-0.196-0.217\r\n\t\t\t\tc-0.037-0.095,0.061-0.406,0.102-0.451c0.023-0.025,0.068-0.021,0.089-0.051c0.047-0.067,0.006-0.104,0.024-0.164\r\n\t\t\t\tc0.043-0.138,0.173-0.144,0.185-0.369c0.097-0.053,0.187-0.051,0.19-0.203c0.086,0.017,0.125-0.021,0.191-0.051\r\n\t\t\t\tc0.024-0.035,0.026-0.054,0.006-0.095c0.209-0.235,0.416-0.47,0.623-0.704c0.229-0.186,0.516-0.326,0.744-0.509\r\n\t\t\t\tc0.086-0.104,0.17-0.208,0.254-0.312c0.168-0.215,0.42-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.073-0.118,0.147-0.236,0.222-0.355c-0.002-0.027-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.109-0.194,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.015-0.04,0.08-0.069,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.154c-0.031-0.184-0.127-0.277-0.279-0.375c0.018,0.078-0.004,0.113-0.025,0.191c-0.033,0.026-0.04,0.043-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.009,0.029-0.013,0.044c0.015,0.017,0.029,0.034,0.043,0.051c-0.028,0.063-0.008,0.077,0.007,0.14v0.318\r\n\t\t\t\tc0.022,0.102,0.073,0.268,0.146,0.324c0.209,0.044,0.477-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.227,51.768,35.186,51.688,35.154z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z\r\n\t\t\t\t M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.316,0.022-0.352-0.084\r\n\t\t\t\tC50.471,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.037,0.017,0.076,0.034,0.113,0.051\r\n\t\t\t\tc0.07-0.025,0.141-0.051,0.211-0.076c-0.014-0.036-0.025-0.072-0.039-0.108c0.033-0.077,0.143-0.097,0.203-0.146\r\n\t\t\t\tc0.084-0.066,0.228-0.183,0.268-0.286c0.015-0.059,0.029-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.063-0.146\r\n\t\t\t\tc-0.099-0.13-0.201-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.024-0.222\r\n\t\t\t\tc0.032-0.042,0.063-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.1,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.103-0.002,0.239,0.039,0.312,0.025\r\n\t\t\t\tc0.033-0.012,0.068-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.231,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.057,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.067,0.042-0.103,0.064\r\n\t\t\t\tc-0.043,0.061-0.037,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.084,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.309,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.062-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.014-0.03,0.025-0.044,0.039c-0.012-0.053-0.021-0.069-0.07-0.084\r\n\t\t\t\tc-0.033-0.006-0.066,0.023-0.095,0.039c-0.203,0.106-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.016\r\n\t\t\t\tc-0.076-0.303-0.168-0.599-0.232-0.904c0.011,0,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.029,0.009-0.056,0.013-0.084h0.006c0.023,0.049,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.014,0.019,0.02\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.059,0.138-0.1,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.09c0.198-0.062,0.318-0.017,0.375,0.141c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.05,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.01,0.006,0.014c-0.061-0.009-0.097-0.021-0.121,0.031\r\n\t\t\t\tC7.564,37.5,7.647,37.605,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.436c0.051-0.051,0.122-0.09,0.155-0.152\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.021,0.108,0.044,0.172,0.02h0.006c0.013,0.191-0.204,0.291-0.248,0.482\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.35c0.051-0.121,0.102-0.241,0.153-0.361c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.078-0.036-0.114-0.057-0.172c0.045-0.055,0.132-0.205,0.019-0.255v-0.038c0.146,0.014,0.159-0.072,0.235-0.14\r\n\t\t\t\tc0.08-0.069,0.491-0.363,0.585-0.381c0.051-0.011,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.024\r\n\t\t\t\tc-0.005-0.183,0.137-0.241,0.292-0.254c-0.009-0.052-0.017-0.103-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.069,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.17,0.065-0.289,0.184-0.332c0-0.047-0.035-0.138-0.019-0.222c0.021-0.106,0.097-0.243,0.076-0.368\r\n\t\t\t\tc-0.017-0.166-0.034-0.332-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.465c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.103h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.063c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.757\r\n\t\t\t\tc-0.161-0.049-0.338,0.009-0.458-0.069c-0.256-0.166-0.436-0.435-0.731-0.565c-0.171-0.076-0.287,0.017-0.451-0.014\r\n\t\t\t\tc-0.1-0.016-0.199-0.029-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.241c0.013-0.078-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.033-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.217c-0.065-0.022-0.106-0.067-0.159-0.102c-0.052,0.007-0.15,0.016-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.19c-0.069,0.102-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.069,0.012-0.1,0.032-0.146c-0.111,0.022-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.293\r\n\t\t\t\tc0.065-0.104,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.577c-0.021-0.068-0.016-0.144-0.076-0.173c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.035-0.22-0.072-0.331-0.107c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.026-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.016-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.119-0.214-0.313-0.388-0.291c-0.011,0.021-0.021,0.041-0.032,0.062v0.013c-0.013-0.091-0.026-0.182-0.038-0.272\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.02c-0.066-0.004-0.131-0.009-0.197-0.014v-0.006\r\n\t\t\t\tc0.187-0.059,0.138-0.167,0.273-0.223c0.002-0.004,0.004-0.008,0.006-0.012c-0.051-0.035-0.122-0.046-0.178-0.084\r\n\t\t\t\tc-0.013-0.019-0.026-0.037-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.02-0.038,0.035-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191v-0.039c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.014,0.032-0.02c0.004-0.009,0.008-0.018,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.127-0.21,0.146c-0.261,0.059-0.335-0.148-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.058-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.017-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.031c-0.016,0.063-0.425,0.178-0.515,0.211\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.012c-0.008,0.037-0.018,0.037-0.038,0.058c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.045-0.094,0.072-0.152,0.084c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.101,0.07-0.187,0.121-0.254\r\n\t\t\t\tc-0.012-0.103-0.056-0.167-0.089-0.254c0.041-0.062,0.144-0.086,0.241-0.089c0.011-0.014,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.185c-0.04,0.012-0.081,0.024-0.121,0.037\r\n\t\t\t\tc0.019-0.035,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.022-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.037\r\n\t\t\t\tc-0.047,0.031-0.093,0.063-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.127-0.331,0.094\r\n\t\t\t\tc-0.05-0.062-0.09-0.027-0.135-0.021c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.031v0.007c-0.047,0.013-0.093,0.024-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.082c0.114,0.035,0.208,0.115,0.337,0.146c0.067,0.018,0.202-0.02,0.261,0.02\r\n\t\t\t\tc0.043,0.024,0.066,0.123,0.07,0.184c0.099,0.061,0.295,0.061,0.388,0.127c-0.006,0.064-0.053,0.105-0.102,0.127\r\n\t\t\t\tC7.811,33.859,7.792,33.88,7.773,33.9v0.007c0.141,0.006,0.266-0.058,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.031\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.069c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.02c0.013-0.027,0.025-0.055,0.038-0.082c-0.079-0.081-0.36-0.09-0.483-0.141\r\n\t\t\t\tc-0.04-0.043-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.105-0.191-0.158H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.018-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21h0.06c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tc-0.004-0.026-0.004-0.02-0.017-0.036c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.021,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006H8.37c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299H12.48c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0s0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tC18.58,15.989,18.564,16,18.55,15.989c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.021-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005C21.061,9.85,21.006,9.85,20.952,9.85c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.818,0,9.316,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.047-0.001-0.131-0.022-0.152-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.014,0.013-0.025,0.025-0.039,0.038\r\n\t\t\t\tc0.039,0.028,0.076,0.062,0.103,0.102c-0.099,0.069-0.239,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.014,0.013\r\n\t\t\t\tc0.033,0.03,0.064,0.059,0.096,0.089c-0.004,0.027-0.008,0.055-0.014,0.083c-0.383-0.001-0.321,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.209,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.227,0.096,0.344,0.121c0.108-0.061,0.16-0.161,0.248-0.241\r\n\t\t\t\tc-0.003-0.025-0.005-0.051-0.007-0.076c-0.034-0.021-0.067-0.042-0.103-0.064c-0.004-0.006-0.008-0.013-0.012-0.019\r\n\t\t\t\tc0.022-0.023,0.047-0.047,0.069-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.043-0.034-0.064-0.051c-0.014-0.017-0.002-0.045,0.006-0.076c0.016-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.271,0.047,0.356,0.006c0.035-0.028,0.072-0.055,0.107-0.083c0.021-0.023,0.043-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.056-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.1-0.106c0.829,0.518,1.631,1.072,2.395,1.677\r\n\t\t\t\tc-0.006,0.025-0.012,0.05-0.016,0.075c-0.05,0.083-0.098,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.465,0.489\r\n\t\t\t\tc0.054,0.004,0.107,0.008,0.16,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.029,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.136,0.168,0.286,0.146c-0.018,0.094-0.113,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.636-0.089\r\n\t\t\t\tc-0.08,0.019-0.115,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.119,0.179-0.291,0.203c-0.021,0.033-0.037,0.114-0.052,0.146c-0.095,0.048-0.19-0.018-0.216-0.089\r\n\t\t\t\tc0.029-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.45,0.032c-0.043,0.034-0.086,0.068-0.128,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.104-0.03-0.279-0.002-0.361,0.032c-0.092,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.045-0.057c-0.182,0.003-0.223,0.07-0.375,0.019c0-0.05,0.008-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.168,0.2-0.42,0.248\r\n\t\t\t\tc-0.006-0.002-0.012-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.399,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.342,0.069-0.428-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.098,0.009-0.195,0.017-0.293,0.025c-0.082-0.018-0.133-0.053-0.215-0.032\r\n\t\t\t\tc-0.018,0.148,0.158,0.164,0.12,0.337c-0.051,0.081-0.102,0.161-0.151,0.241c-0.004,0.004-0.01,0.009-0.014,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.028,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.02,0.108v0.013\r\n\t\t\t\tc-0.165-0.008-0.334-0.211-0.565-0.184c-0.124,0.261-0.491,0.237-0.661,0.445c0.006,0.173,0.26,0.294,0.141,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.103-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.104,0-0.1,0.078-0.152,0.127c0.002,0.063,0.125,0.201,0.19,0.229c0.058,0.024,0.138-0.001,0.19,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.26,0.21c-0.072-0.016-0.158,0.001-0.211-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.075-0.038-0.206-0.014-0.291-0.057c-0.043-0.022-0.209-0.444-0.217-0.527c0.123-0.036,0.164-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.137-0.088-0.245-0.222-0.362-0.33c0.222-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.141,0.021,0.211,0.032c0.5,0.15,1.305,0.524,1.83,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.361-0.305c-0.068-0.021-0.137-0.042-0.203-0.063c-0.108-0.038-0.217-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.06,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.014-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.047,0.019-0.104,0.021-0.141,0.044\r\n\t\t\t\tc-0.113-0.074-0.219-0.036-0.369-0.025c-0.065-0.103-0.205-0.127-0.279-0.222c0.236,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.005-0.047-0.007-0.07c-0.027-0.017-0.055-0.034-0.082-0.051c-0.065-0.023-0.141,0.003-0.191-0.019\r\n\t\t\t\tc-0.105-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.039-0.008-0.08-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.059-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.116,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.012-0.28c-0.14,0.095-0.322,0.263-0.389,0.426c-0.018-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.28-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.145,0.185-0.172,0.273c-0.188-0.096-0.28-0.273-0.381,0.083c-0.043-0.036-0.086-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.014-0.004-0.02-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.152,0.229\r\n\t\t\t\tc0.014-0.069,0.026-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.014-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.147,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.024-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.037,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.105,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.031,0.14\r\n\t\t\t\tc-0.019,0.028-0.037,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.063-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.01,0.027,0.014,0.055,0.043,0.076v0.038c-0.054,0.016-0.076,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.253-0.025\r\n\t\t\t\tc0.021,0.015,0.043,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.014,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.029-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.177,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.02-0.002,0.039-0.004,0.058-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.014-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.279,0.045c-0.111-0.019-0.164-0.137-0.3-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.036-0.04,0.304,0.049,0.368,0.083c0.082,0.043,0.287-0.119,0.312-0.153h0.058c-0.002-0.095-0.049-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.053-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.02-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.063-0.083\r\n\t\t\t\tc0.017-0.027-0.004-0.073-0.012-0.115h0.127c0.079-0.112,0.116-0.111,0.221-0.191c0.051-0.038,0.051-0.096,0.115-0.127\r\n\t\t\t\tc0.022,0.015,0.047,0.03,0.069,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.185-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.127-0.081,0.151-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.092-0.069,0.095-0.193,0.211-0.248c0.051,0.034,0.102,0.068,0.152,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.262,0.115c0.011,0.019,0.021,0.038,0.031,0.057c0.015,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.052,0.057c0.013,0.018,0.008,0.038,0.006,0.076c-0.041-0.002-0.082-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.037-0.057v-0.013c-0.091,0.094-0.017,0.207-0.16,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.158-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.09,0.064c0,0.094-0.021,0.143-0.032,0.216c0.034,0.053,0.067,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.024,0.121c-0.035,0.188-0.012,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.054-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.021,0.042,0.039,0.071,0.084,0.089\r\n\t\t\t\tc0.066,0.051,0.192-0.016,0.234-0.038v0.026c0.064-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.056,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.018-0.083,0.1-0.04,0.152-0.083c0.027-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.107,0.038\r\n\t\t\t\tc0.026-0.027,0.035-0.043,0.084-0.051c0.021,0.013,0.041,0.025,0.063,0.038c0.06-0.057,0.198-0.098,0.3-0.108\r\n\t\t\t\tc0.008-0.015,0.016-0.03,0.024-0.045c0.028-0.003-0.011,0.079-0.019,0.114c0.147,0.215,0.344-0.041,0.488,0.229\r\n\t\t\t\tc-0.015,0.011-0.029,0.021-0.045,0.032c-0.094-0.003-0.141-0.044-0.222-0.07c-0.076,0.006-0.101,0.066-0.14,0.108\r\n\t\t\t\tc-0.054-0.012-0.054-0.037-0.103-0.025c-0.017,0.027-0.015,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.024,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.063,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.057,0.067-0.107,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.033,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.012,0.045c-0.045-0.007-0.062,0.006-0.103-0.006c-0.085,0.046-0.146,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.014,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.045,0.165c0.021,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.024,0.017,0.037,0.025c-0.021,0.16-0.09,0.268-0.037,0.451c-0.041,0.106-0.223,0.17-0.324,0.076\r\n\t\t\t\tc-0.016-0.04-0.03-0.081-0.044-0.121c-0.048-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.268,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.033,0.025-0.064,0.051-0.096,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.01,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.012,0.035,0.018,0.047,0.014,0.089c-0.082,0.046-0.25,0.013-0.362,0.007c-0.017,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.01-0.053-0.025-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025V22.17\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025H32.2c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.022,0.012,0.038-0.004,0.069-0.019c0.034,0.01,0.182,0.419,0.172,0.451v0.013c-0.022-0.002-0.047-0.004-0.069-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.014,0.009,0.025,0.017,0.039,0.025h0.082\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.062-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.062-0.034-0.123-0.068-0.185-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.007,0.095,0.142,0.064,0.202,0.108c0.031,0.023,0.007,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.437-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.096-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.328,0.011-0.414-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.184,0.165,0.266,0.267c0.025,0.026,0.06-0.025,0.109-0.013\r\n\t\t\t\tc0.006,0.001,0.152,0.061,0.164,0.07c0.049,0.035,0.09,0.097,0.141,0.133c0.133,0.095,0.271,0.155,0.406,0.248\r\n\t\t\t\tc0.03,0.036,0.06,0.072,0.09,0.108c0.041,0.021,0.084,0.042,0.127,0.064c0.002,0.051,0.002,0.06-0.039,0.07\r\n\t\t\t\tc-0.006,0.043,0.017,0.226,0.014,0.235c-0.018,0.032-0.034,0.064-0.051,0.095c0.021,0.032,0.037,0.045,0.037,0.102\r\n\t\t\t\tc-0.01-0.002-0.021-0.004-0.031-0.006c0.027,0.077,0.145,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.024,0.025v0.013c-0.026,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.037,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.228-0.061,0.349-0.025c0.078,0.022,0.119,0.081,0.224,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.041,0.076-0.063,0.114\r\n\t\t\t\tc0.038,0.047,0.075,0.093,0.114,0.14c0.014,0.044-0.017,0.099-0.014,0.146c0.02,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.02-0.015,0.039-0.03,0.058-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.056-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.033,0.011,0.068,0.021,0.102,0.032h0.014c-0.006,0.013-0.014,0.025-0.02,0.038c0.018,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.02-0.035,0.029-0.044,0.083-0.045c-0.022-0.029-0.028-0.02-0.024-0.064c-0.021,0.004-0.043,0.009-0.064,0.013\r\n\t\t\t\tc-0.021-0.048-0.025-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.106,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.014-0.011,0.025-0.021,0.039-0.032c-0.014-0.04-0.025-0.081-0.039-0.121\r\n\t\t\t\tc0.008-0.002,0.018-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.103-0.044\r\n\t\t\t\tc-0.014-0.03-0.026-0.059-0.039-0.089v-0.007c0.031-0.019,0.043-0.017,0.084-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.018-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.223-0.311\r\n\t\t\t\tc0.003-0.047,0.016-0.064,0.039-0.089c-0.012-0.013-0.021-0.025-0.032-0.038c0.034-0.015,0.06-0.023,0.075-0.057\r\n\t\t\t\tc0.009,0.002,0.018,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.031,0.019\r\n\t\t\t\tc0.039,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.063,0.008,0.095,0.013h0.014c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.016-0.002,0.031-0.004,0.045-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.023-0.041-0.061-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.066,0.015,0.082,0.045\r\n\t\t\t\tc0.018,0.015,0.035,0.03,0.052,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.19-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.033,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.271-0.012,0.285,0.121c0.008-0.009,0.018-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.096,0.057c-0.008,0.032-0.017,0.064-0.024,0.095\r\n\t\t\t\tc0.065-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.016-0.03,0.03-0.059,0.045-0.089\r\n\t\t\t\tc0.037-0.022,0.1,0.002,0.152-0.019c0.137-0.054,0.112,0.009,0.273,0.013c0.025-0.03,0.045-0.056,0.062-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.209-0.089c-0.088-0.049-0.179-0.313-0.268-0.299v-0.051c0.035-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.014-0.121\r\n\t\t\t\tc0.035-0.199,0.06-0.377,0.285-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.033-0.038-0.051-0.064\r\n\t\t\t\tc-0.031-0.104,0.094-0.097,0.152-0.133c0.199-0.119,0.104-0.321,0.51-0.311c0.008-0.015,0.018-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.063,0.076v0.013c-0.022,0.021-0.047,0.042-0.069,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.025,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267V23.7c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.103-0.009,0.153-0.013c0.034-0.028,0.067-0.055,0.103-0.083c0.06-0.018,0.088,0.017,0.133,0.025\r\n\t\t\t\tc0.037-0.006,0.076-0.013,0.113-0.019c0.023-0.032,0.053-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.234,0.038c-0.024-0.123-0.199-0.258-0.338-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.104-0.029,0.197-0.016,0.306-0.019c0.036-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.021,0.013,0.02,0.008,0.045,0c0.051-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.048-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.223-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.187-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.031,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.412,0.152c-0.008,0.011-0.018,0.021-0.026,0.032c0.073,0.053,0.147,0.098,0.196,0.178\r\n\t\t\t\tc-0.033,0.026-0.076,0.034-0.139,0.032c-0.029,0.081-0.084,0.13-0.09,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.045,0.013,0.09,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.281,0.21c0.047,0.038,0.115,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.014,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.016,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.08,0.289-0.088,0.388-0.324,0.445c-0.131,0.031-0.221-0.051-0.336-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.099,0.022-0.277-0.021-0.382-0.038c-0.125-0.021-0.15-0.13-0.291-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.103,0.03-0.172,0.013c-0.084-0.021-0.076-0.089-0.121-0.146c-0.174,0.111-0.323-0.021-0.541,0.032\r\n\t\t\t\tc-0.195,0.047-0.34,0.172-0.514,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.139,0.074-0.203,0.007-0.318-0.013\r\n\t\t\t\tc-0.02,0.006-0.038,0.013-0.057,0.019c-0.094-0.008-0.187-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.068,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.014,0.009,0.02,0.013\r\n\t\t\t\tc-0.006,0.008-0.014,0.017-0.02,0.025c-0.113-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.09-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.014,0.006,0.026,0.013,0.039,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.143,0.01-0.16-0.044c-0.09,0.011-0.202,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.069,0.064\r\n\t\t\t\tc-0.011,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.262-0.038v0.006c-0.016,0.024-0.031,0.039-0.058,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.063,0.045c0.015,0.023-0.006,0.02-0.013,0.064h0.058\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.008,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.033-0.003-0.056-0.025-0.09-0.044c-0.011,0.023-0.021,0.047-0.031,0.07v0.045\r\n\t\t\t\tc0.104,0.013,0.133,0.046,0.221,0.07c0.004,0.06-0.021,0.124,0.007,0.165c0.034,0.021,0.067,0.042,0.103,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.056,0.021-0.084,0.032c0.006,0.013,0.014,0.025,0.02,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.018,0.019-0.023,0.019-0.032,0.051\r\n\t\t\t\tc0.007,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.01,0.004,0.014,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.084-0.003,0.086,0.023,0.146,0.051c0.028,0.014,0.049-0.015,0.076-0.038c0.024,0.059,0.051,0.119,0.075,0.178\r\n\t\t\t\tc0.1,0.031,0.23-0.025,0.3,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.029-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.107,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.012,0.017,0.024,0.034,0.037,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.018,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.037,0.107-0.063,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.306,0.578c-0.008,0.042-0.017,0.085-0.024,0.127c-0.041,0.134-0.077,0.258-0.173,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.223,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.071,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.065,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.069,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.067,0.051,0.103,0.076c0.086,0.071,0.194,0.232,0.234,0.344\r\n\t\t\t\tc0.012,0.067,0.021,0.135,0.032,0.202c-0.009,0.039-0.042,0.068-0.032,0.128c0.03,0.172,0.113,0.353,0.165,0.495v0.216\r\n\t\t\t\tc0.095,0.205,0.384,0.166,0.554,0.057c0.057-0.047,0.113-0.092,0.172-0.139c0.094-0.029,0.217,0.012,0.299-0.014\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.025,0.163,0.016,0.229-0.02c0.068-0.035,0.086-0.123,0.151-0.158\r\n\t\t\t\tc0.238-0.131,0.547-0.129,0.769-0.268c0.062-0.037,0.047-0.087,0.076-0.158c0.029-0.07,0.139-0.143,0.211-0.172\r\n\t\t\t\tc0.121-0.041,0.24-0.082,0.361-0.121c0.07,0.008,0.141,0.017,0.21,0.024c0.024-0.015,0.052-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.017-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.272-0.051c0.032-0.027,0.026-0.071,0.044-0.114\r\n\t\t\t\tc0.049-0.12,0.189-0.153,0.35-0.159c0.008-0.116-0.013-0.304,0.025-0.419c0.057-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.043-0.04,0.086-0.08,0.128-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.128-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.183-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.014-0.203\r\n\t\t\t\tc-0.015-0.018-0.023-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.041,0.011-0.062,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.478-0.019\r\n\t\t\t\tc-0.019,0.017-0.022,0.015-0.031,0.044c-0.073,0.007-0.131-0.005-0.203-0.006c0.013-0.058-0.016-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.018-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.029-0.004-0.044-0.006c-0.083,0.059-0.118,0.288-0.069,0.407c0.006,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.046-0.059-0.109-0.211-0.115-0.311c-0.033-0.027-0.035-0.039-0.076-0.032c-0.032-0.107-0.057-0.116-0.012-0.229\r\n\t\t\t\tc-0.014-0.021-0.026-0.042-0.039-0.064c0.021-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.035-0.028-0.025-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.113-0.013c-0.07-0.185-0.159-0.356-0.211-0.553\r\n\t\t\t\tc-0.035,0.009-0.071,0.017-0.107,0.026c-0.013-0.006-0.025-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.009-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.02\r\n\t\t\t\tc-0.002,0.041,0,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.241,0.032c0.043,0.069,0.144,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.137,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.312,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.105,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.187-0.121,0.196-0.172\r\n\t\t\t\tc0.099-0.035,0.203-0.075,0.324-0.044c0.051,0.012,0.039,0.034,0.09,0.038c0.015,0.043,0.01,0.1,0.031,0.159\r\n\t\t\t\tc0.026,0.069,0.096,0.113,0.096,0.21c0.067,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.143,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.217,0.083c0.131,0.021,0.254-0.027,0.355-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.19-0.07c0.08,0.167,0.549-0.018,0.687-0.025c0.073,0.053,0.075,0.102,0.069,0.223\r\n\t\t\t\tc0.047,0.011,0.094,0.021,0.141,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.113,0.032,0.19,0.076\r\n\t\t\t\tc0.03,0.042,0.06,0.085,0.089,0.127c0.104,0.123,0.381,0.229,0.598,0.153c0.002,0.052-0.021,0.064-0.051,0.095\r\n\t\t\t\tc-0.143,0.145-0.215,0.023-0.369,0.076h-0.014c0.049,0.113,0.434,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.018-0.059,0.025-0.089c0.031-0.019,0.082-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.015,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.014,0.062-0.094,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.103,0.616c0.07,0.251,0.209,0.444,0.305,0.655\r\n\t\t\t\tc0.064,0.143,0.116,0.299,0.165,0.457c0.021,0.078,0.042,0.156,0.063,0.234c0.039,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.033,0.111,0.064,0.225,0.096,0.337c0.059,0.063,0.119,0.127,0.178,0.19\r\n\t\t\t\tc0.09-0.002,0.219-0.063,0.248-0.127c0.025-0.054,0.004-0.105,0.038-0.146c0.083-0.028,0.165-0.056,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.058-0.057c0.025-0.072,0.052-0.145,0.076-0.217c0.037-0.021,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.024-0.213,0.286-0.457,0.108-0.654c0.057-0.142-0.035-0.297,0-0.451\r\n\t\t\t\tc0.021-0.047,0.041-0.094,0.063-0.141c0.06-0.048,0.118-0.061,0.19-0.019c0.049-0.031,0.078-0.104,0.096-0.165\r\n\t\t\t\tc0.059-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.049-0.168,0.108-0.217c0.063-0.031,0.127-0.063,0.19-0.094\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.179-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.194-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.147-0.181,0.229-0.273c-0.014-0.045-0.025-0.089-0.039-0.134\r\n\t\t\t\tc0.072-0.072,0.18-0.083,0.268-0.14c0.032-0.034,0.064-0.068,0.096-0.102c0.028,0.022,0.049,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.037,0.013c0.018-0.03,0.035-0.059,0.052-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.02,0.01,0.039,0.021,0.058,0.032\r\n\t\t\t\tc0.013-0.021,0.024-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.008,0.021,0.016,0.043,0.025,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.009-0.004,0.013-0.006c0.021,0.038,0.043,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.017-0.069,0.026-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.031-0.184c-0.002-0.034-0.004-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.096,0.127c0.069-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.021,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.067,0.037,0.106,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.103,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.031-0.057c0.004-0.002,0.01-0.004,0.014-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.018,0.129-0.099,0.221-0.103,0.361c0.015,0.012,0.03,0.021,0.044,0.033c0.047-0.039,0.073-0.066,0.152-0.076\r\n\t\t\t\tc-0.006,0.024-0.012,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.031h0.025c0.029-0.023,0.031-0.041,0.082-0.044v0.058\r\n\t\t\t\tc0.08,0.072,0.095-0.08,0.153-0.121c0.185-0.133,0.273-0.031,0.306-0.344H56.3c0.085,0.062,0.089,0.235,0.197,0.268\r\n\t\t\t\tc0.026,0.18,0.051,0.359,0.075,0.54c0.048,0.163,0.152,0.309,0.203,0.45c0.054,0.145,0.031,0.291,0.025,0.433\r\n\t\t\t\tc0.02,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.052,0.038\r\n\t\t\t\tc-0.064,0.162-0.162,0.391-0.103,0.566c0.024-0.012,0.051-0.021,0.075-0.032c0.086,0.091,0.166,0.136,0.211,0.272\r\n\t\t\t\tc0.02,0.008,0.033,0.01,0.064,0c0.043,0.058,0.051,0.1,0.051,0.197c0.011,0.006,0.021,0.014,0.031,0.02\r\n\t\t\t\tc0.034,0.043,0.078,0.029,0.121,0.006c0.004,0.004,0.008,0.008,0.014,0.013c-0.019,0.14-0.008,0.3,0.043,0.445\r\n\t\t\t\tc0.025,0.047,0.052,0.093,0.076,0.14c0.01,0.069-0.023,0.131,0.014,0.191c0.039,0.033,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.021,0.021,0.057,0.031,0.088C55.357,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.069-0.013c-0.035,0.011-0.068,0.021-0.103,0.032c-0.005-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.014-0.004-0.026-0.008-0.039-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.033-0.068-0.051-0.102c-0.066,0.075-0.078,0.271-0.043,0.369\r\n\t\t\t\tc0.038,0.021,0.133,0.008,0.215,0.006c-0.015,0.019-0.029,0.038-0.043,0.057c0.004,0.013,0.008,0.025,0.012,0.038\r\n\t\t\t\tc0.015,0.023,0.043,0.036,0.07,0.045v0.019c-0.045-0.004-0.088-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.031,0.045v0.044\r\n\t\t\t\tc0.041-0.029,0.065-0.018,0.127-0.006c0.023,0.067,0.084,0.076,0.113,0.133c0.014,0.054-0.037,0.118-0.037,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.02,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.062,0.047-0.192,0.025-0.281,0.045\r\n\t\t\t\tc-0.313,0.07-0.747,0.1-0.857-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.053-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.014-0.008,0.02-0.013c0.017,0.015,0.019,0.017,0.024,0.044c0.007,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.007-0.03,0.014-0.059,0.02-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.057-0.128-0.189-0.036-0.242-0.108c-0.029-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.105-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.058-0.019\r\n\t\t\t\tc-0.049-0.07-0.076-0.16-0.139-0.216c-0.016-0.004-0.031-0.009-0.045-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.031,0.114h-0.007\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.031-0.019-0.074-0.01-0.088-0.045v-0.032c0.004-0.075,0.082-0.081,0.113-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.016,0.008,0.029,0.017,0.044,0.025c0.017-0.02,0.021-0.029,0.019-0.07c0.103-0.023,0.135-0.121,0.217-0.153\r\n\t\t\t\tc0.039-0.002,0.08-0.004,0.121-0.006c0.129-0.041,0.242-0.21,0.412-0.197c0.097,0.007,0.138,0.073,0.211,0.089\r\n\t\t\t\tc0.076,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.113,0.025,0.172,0.038c0.015,0.025,0.029,0.051,0.045,0.076\r\n\t\t\t\tc-0.018,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.084,0.33c0.005,0.058,0.07,0.083,0.115,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.139-0.013-0.275-0.025-0.414-0.038c-0.037,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.037,0.102c-0.029,0.036-0.058,0.02-0.076,0.076c0.026,0.039,0.063,0.068,0.113,0.083\r\n\t\t\t\tc0.006,0.008,0.014,0.017,0.02,0.026c-0.062,0.044-0.215-0.025-0.338-0.019c-0.006,0.006-0.012,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.134,0.043,0.185,0.051c0.027,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.234,0.064c-0.033,0.064-0.069,0.143-0.094,0.203c0.022,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.026-0.072,0.01-0.226,0.031-0.305c0.088-0.015,0.174-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.016,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.043-0.024-0.084-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.024-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.052,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.367,0.016-0.324-0.226-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.024,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.062,0.004-0.119,0.022-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.123-0.633,0.191-0.826c-0.005-0.053-0.01-0.105-0.014-0.158c0.02-0.082,0.062-0.115,0.025-0.217\r\n\t\t\t\tc0.092-0.07,0.145-0.061,0.291-0.051c-0.006,0.076-0.012,0.152-0.019,0.229c0.058,0.002,0.08,0.024,0.121,0.033\r\n\t\t\t\tc0.078,0.014,0.106-0.055,0.19-0.007c0.039,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.11,1.104-0.188,1.649C57.688,35.667,57.663,35.645,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.059-0.106-0.061-0.14-0.133\r\n\t\t\t\tc-0.067-0.055-0.062-0.042-0.127,0.013c0.009,0.101,0.008,0.235-0.07,0.299c-0.044,0.036-0.079,0.04-0.102,0.103\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.037-0.004-0.057-0.006c-0.003,0.068,0.016,0.109,0.038,0.165\r\n\t\t\t\tc-0.005,0.011-0.009,0.021-0.013,0.032c-0.024,0.016-0.041,0.024-0.084,0.024c-0.002,0.005-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.004,0.045,0.026,0.06,0.045,0.103c-0.022,0.024-0.047,0.051-0.069,0.076c-0.039-0.005-0.04-0.009-0.052-0.038H41.85\r\n\t\t\t\tc-0.031,0.027-0.062,0.055-0.095,0.083c0.009,0.034,0.022,0.045,0.038,0.069c-0.014,0.01-0.025,0.018-0.038,0.026\r\n\t\t\t\tc-0.024,0.011-0.026-0.009-0.063-0.019c-0.047,0.029-0.094,0.059-0.141,0.089c0.004,0.024,0.01,0.051,0.014,0.075\r\n\t\t\t\tc-0.071,0.018-0.121-0.053-0.211-0.012c-0.017,0.019-0.033,0.037-0.051,0.057c-0.039,0.02-0.074-0.014-0.107-0.014\r\n\t\t\t\tc-0.025,0.02-0.051,0.039-0.076,0.058c-0.044,0.002-0.09,0.004-0.133,0.006c0,0.213-0.084,0.245-0.141,0.381\r\n\t\t\t\tc-0.025,0.101,0.069,0.325,0.121,0.388c-0.015,0.032-0.029,0.064-0.044,0.096c0.032,0.039,0.063,0.076,0.095,0.115\r\n\t\t\t\tc0.03,0.114-0.166,0.512-0.216,0.559c-0.024,0.009-0.051,0.017-0.075,0.025c-0.045,0.031-0.103,0.232-0.09,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.024,0.097-0.038,0.146c-0.031,0.145,0.061,0.157,0.083,0.229\r\n\t\t\t\tc0.017,0.051-0.006,0.092,0.019,0.127c0.084,0.119,0.263,0.084,0.344,0.21c0.137-0.008,0.17-0.09,0.285-0.121\r\n\t\t\t\tc0.07-0.009,0.141-0.018,0.211-0.025c0.132-0.082,0.205-0.498,0.261-0.674c0.149-0.486,0.302-0.971,0.451-1.455\r\n\t\t\t\tc0.028-0.096-0.011-0.189,0.019-0.3c0.026-0.093,0.125-0.146,0.146-0.254c-0.047-0.071-0.09-0.157-0.09-0.272\r\n\t\t\t\tc0.012-0.006,0.021-0.014,0.033-0.02c0.004-0.004,0.008-0.009,0.013-0.013c0.028,0.053,0.069,0.133,0.12,0.165\r\n\t\t\t\tc0.035-0.029,0.115-0.123,0.103-0.191c-0.026-0.053-0.055-0.105-0.083-0.158C42.622,41.831,42.634,41.518,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.143-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.018-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.018-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.01-0.034,0.014-0.051c-0.002-0.002-0.004-0.004-0.007-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.021-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.057-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.02,0.095c0.088,0.039,0.261,0.031,0.356,0.07\r\n\t\t\t\tL35.215,27.014L35.215,27.014z M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095\r\n\t\t\t\tc-0.036-0.095,0.072-0.224,0.103-0.292v-0.006c-0.059-0.014-0.121,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044\r\n\t\t\t\tc-0.091,0.081-0.209,0.007-0.254,0.152c0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z\r\n\t\t\t\t M21.217,10.482c0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.058\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.012c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089V21.17h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006L25.078,20.894L25.078,20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.022-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.146-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.029-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.101,0.036-0.199,0.072-0.299,0.108c-0.06-0.006-0.119-0.013-0.179-0.019c0.011,0.023,0.013,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.107c0.048-0.057,0.064-0.207,0.095-0.268c-0.057-0.054-0.445-0.061-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.039,0.009,0.092,0.013,0.135\r\n\t\t\t\tc0.086,0.021,0.114-0.016,0.203-0.02c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.062-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.02c0.044,0.002,0.042,0.01,0.063,0.031c-0.012,0.031-0.012,0.051,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.014-0.013,0.02v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.082-0.008-0.158,0.032-0.217v-0.006h-0.038C11.059,37.904,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.082c-0.045,0.004-0.062,0.022-0.089,0.031c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.018-0.194-0.057-0.324-0.057C9.066,33.9,9.038,33.904,9.01,33.909\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.024c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.146,0.095,0.211\r\n\t\t\t\tc0.004,0.006,0.008,0.012,0.013,0.019c-0.128,0.082-0.41,0.036-0.572-0.013c-0.013,0.015-0.025,0.029-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.013,0.053-0.048,0.102-0.058\r\n\t\t\t\tc0.076,0.012,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.15,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.061,0.178-0.076\r\n\t\t\t\tc0.044-0.012,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.046,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.113\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.17,0.311,0.153\r\n\t\t\t\tc0.044-0.013,0.058-0.078,0.14-0.058c0.051,0.014,0.064,0.041,0.127,0.039c0.002-0.012,0.004-0.021,0.006-0.033\r\n\t\t\t\tc-0.073-0.109-0.33-0.157-0.515-0.152C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[{"name":"path","attribs":{"d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089c0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013\r\n\t\t\t\tc-0.023-0.013-0.047-0.026-0.07-0.038c-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235\r\n\t\t\t\tc-0.03-0.002-0.059-0.004-0.089-0.006c-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114\r\n\t\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.006c-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z\r\n\t\t\t\t M43.382,11.985c0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.164,0.009,0.279,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.31,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.065-0.023-0.131-0.047-0.196-0.07c-0.172-0.022-0.357,0.059-0.478,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.02,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.275,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.287,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.103,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.094-0.021,0.188-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.049-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.113-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.063-0.045h-0.172c-0.066-0.021-0.113-0.079-0.211-0.089C32.725,7,32.688,7.043,32.652,7.085\r\n\t\t\t\tc-0.041,0.109,0.107,0.294,0.127,0.4c-0.02,0.017-0.038,0.034-0.057,0.051c-0.109-0.025-0.307-0.287-0.351-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.102,0.233-0.28,0.267v0.114c0.275,0.013,0.552,0.025,0.826,0.038c0.06-0.04,0.119-0.081,0.179-0.121\r\n\t\t\t\tc0.077-0.033,0.161-0.016,0.254-0.045c0.078-0.04,0.156-0.08,0.234-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.022-0.038-0.047-0.076-0.069-0.114c-0.062-0.017-0.123-0.034-0.185-0.051\r\n\t\t\t\tc-0.119-0.023-0.25,0.029-0.375,0.026c-0.024-0.051-0.051-0.102-0.075-0.153c-0.03-0.011-0.06-0.021-0.089-0.032\r\n\t\t\t\tc-0.133,0.016-0.224,0.14-0.286,0.229h-0.108c-0.027-0.1-0.003-0.248,0.025-0.343c-0.137,0.061-0.143,0.232-0.268,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.031,0.032c-0.168-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.082,0.106-0.162,0.212-0.242,0.318c-0.086,0.062-0.15,0.069-0.196,0.172c-0.004,0.004-0.009,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061C21.277,9.6,21.247,9.54,21.129,9.564C21.066,9.601,20.983,9.637,20.993,9.697z M21.388,8.988\r\n\t\t\t\tc-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24L20.988,9.24\r\n\t\t\t\tc0.003-0.004-0.005-0.009-0.001-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.052-0.021-0.103-0.043-0.153-0.064c-0.119,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.146-0.017-0.19-0.024\r\n\t\t\t\tc-0.086-0.018-0.14,0.054-0.197,0.069c-0.06-0.006-0.119-0.013-0.178-0.019h-0.014c-0.072,0.047-0.145,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.06-0.242-0.038c-0.091,0.04-0.183,0.08-0.272,0.121h-0.179c-0.091-0.1-0.215-0.211-0.272-0.337\r\n\t\t\t\tc-0.055-0.015-0.129-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.014c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.168-0.232-0.211-0.33-0.305c-0.018-0.016-0.033-0.139-0.089-0.19c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.088-0.098-0.178-0.194-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.055-0.074-0.139-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.107c-0.005,0.002-0.009,0.004-0.014,0.008c-0.182-0.153-0.225-0.623-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.105-0.144-0.037-0.516-0.089-0.724c-0.032-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.152-0.152c-0.14-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.166-0.432\r\n\t\t\t\tc-0.094-0.171-0.256-0.287-0.299-0.521c0.033-0.045,0.039-0.066,0.096-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.075,0.013c0.08-0.159,0.058-0.398,0.185-0.508c-0.074-0.191-0.148-0.381-0.223-0.572\r\n\t\t\t\tc-0.121,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.157,0.011-0.28,0.032c-0.041-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.039,0.032-0.08,0.063-0.12,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.014-0.017-0.025-0.034-0.039-0.051c-0.147-0.032-0.297-0.064-0.444-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.069-0.038-0.032-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.168,0.358-0.146,0.527c-0.038,0.02-0.089,0.07-0.146,0.064\r\n\t\t\t\tc-0.154-0.018-0.267-0.184-0.4-0.235c-0.133-0.05-0.434-0.054-0.541-0.114c-0.118-0.068-0.136-0.311-0.24-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.067-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.075,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.021,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.178-0.032,0.262\r\n\t\t\t\tc0.08,0.135,0.04,0.035,0.14,0.102c0.004,0.016,0.008,0.03,0.013,0.044c0.042,0.024,0.085,0.052,0.127,0.076\r\n\t\t\t\tc0.063-0.013,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.018,0.08,0.021,0.102,0.044\r\n\t\t\t\tc0.015,0.021,0.01,0.028,0.006,0.058c0.034,0.022,0.057,0.033,0.121,0.031c0.011,0.033,0.011,0.061,0,0.096\r\n\t\t\t\tc0.065,0.068,0.166,0.135,0.267,0.164c0.006,0.032,0.013,0.063,0.019,0.096c0.033,0.061,0.118,0.08,0.14,0.158v0.096\r\n\t\t\t\tc0.014,0.018,0.035,0.021,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.024c-0.023,0.019-0.047,0.038-0.07,0.058h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.033,0.013,0.047,0.006,0.094c0.142,0.043,0.215,0.149,0.324,0.223\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.361c0.062,0.033,0.311,0.192,0.388,0.173\r\n\t\t\t\tc0.102-0.054,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.011,0.145,0.062,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.279c0.087-0.008,0.174-0.018,0.261-0.025c0.052-0.039,0.054-0.107,0.127-0.133\r\n\t\t\t\tc0.214-0.02,0.428-0.038,0.642-0.057c0.032-0.013,0.039-0.043,0.083-0.058c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.024,0.03,0.051,0.044,0.075c0.023,0.002,0.047,0.005,0.07,0.007c0.006,0.008,0.013,0.017,0.019,0.024\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.096c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.007\r\n\t\t\t\tc0.002-0.026-0.002-0.036-0.013-0.062c0.025-0.017,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.025,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.016-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.063,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.262c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.166c0.049,0.041,0.097,0.084,0.146,0.127v0.006c-0.038-0.004-0.076-0.01-0.114-0.014\r\n\t\t\t\tc-0.031,0.139-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.016,0.114,0.07\r\n\t\t\t\tc-0.021,0.016-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.014c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.016-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.205,0.133,0.248c0.029,0.068-0.018,0.162,0.038,0.262\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.011-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.031-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.223-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.215,0.216,0.432,0.324,0.647c0.075,0.146,0.371,0.403,0.203,0.571c0.03,0.141,0.059,0.281,0.089,0.42\r\n\t\t\t\tc0.023,0.055,0.047,0.109,0.07,0.165c0.02,0.081-0.031,0.143-0.025,0.202c0.008,0.08,0.071,0.147,0.089,0.211\r\n\t\t\t\tc0.014,0.047-0.021,0.072-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.116,0.131,0.233,0.264,0.349,0.395\r\n\t\t\t\tc0.12,0.189,0.16,0.434,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.078,0-0.096,0.025\r\n\t\t\t\tc-0.025,0.031,0.123,0.229,0.159,0.285c-0.017,0.049-0.034,0.099-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.031\r\n\t\t\t\tc0.006,0.003,0.013,0.005,0.019,0.007c0.006-0.015,0.013-0.03,0.019-0.045c0.018-0.009,0.022-0.011,0.052-0.013\r\n\t\t\t\tc0.013,0.022,0.024,0.047,0.038,0.069c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.028,0.021,0.056,0.038,0.095\r\n\t\t\t\tc0.024,0.043,0.115,0.075,0.165,0.09c0.061-0.047,0.096-0.123,0.178-0.146c0.115-0.035,0.252,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.09c0.15-0.07,0.214,0,0.331,0c0.034-0.019,0.067-0.037,0.103-0.057\r\n\t\t\t\tc0.121-0.035,0.233,0.073,0.317,0.102c0.04-0.03,0.07-0.055,0.095-0.102c0.058,0.014,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.018-0.019,0.021-0.053,0.033-0.075c0.049-0.049,0.321-0.018,0.399-0.07c0.083-0.072,0.165-0.145,0.248-0.217\r\n\t\t\t\tc0.416-0.326,0.721-0.688,1.017-1.138c0.074-0.112,0.264-0.19,0.305-0.299c0.021-0.052-0.027-0.122-0.019-0.146\r\n\t\t\t\tc0.017-0.045,0.065-0.033,0.089-0.064c0.071-0.091,0.109-0.35,0.09-0.496c-0.039-0.016-0.078-0.04-0.096-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.02-0.019c0.078-0.091,0.133-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.008-0.062-0.051-0.036-0.063-0.07c0.002-0.006,0.005-0.013,0.007-0.019c0.012-0.032,0.024-0.064,0.037-0.096\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.02-0.388c-0.028,0.011-0.035,0.019-0.076,0.019c-0.039-0.123-0.087-0.273-0.044-0.375\r\n\t\t\t\tc-0.007-0.074-0.062-0.111-0.114-0.14v-0.202c0.119-0.088,0.237-0.175,0.355-0.262c0.146-0.122,0.233-0.305,0.4-0.406\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.643-0.293c0.137-0.094,0.224-0.268,0.33-0.394c0-0.028-0.008-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.012-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.162,0.013-0.337-0.069-0.432c0.003-0.034,0.034-0.062,0.044-0.107c0.025-0.113-0.041-0.295-0.057-0.395\r\n\t\t\t\tc0.029-0.055,0.059-0.11,0.088-0.165c-0.064-0.14-0.182-0.157-0.266-0.267c-0.084-0.108-0.127-0.394-0.07-0.554\r\n\t\t\t\tc-0.019-0.028-0.043-0.032-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.127-0.196-0.217\r\n\t\t\t\tc-0.037-0.095,0.061-0.406,0.102-0.451c0.023-0.025,0.068-0.021,0.089-0.051c0.047-0.067,0.006-0.104,0.024-0.164\r\n\t\t\t\tc0.043-0.138,0.173-0.144,0.185-0.369c0.097-0.053,0.187-0.051,0.19-0.203c0.086,0.017,0.125-0.021,0.191-0.051\r\n\t\t\t\tc0.024-0.035,0.026-0.054,0.006-0.095c0.209-0.235,0.416-0.47,0.623-0.704c0.229-0.186,0.516-0.326,0.744-0.509\r\n\t\t\t\tc0.086-0.104,0.17-0.208,0.254-0.312c0.168-0.215,0.42-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.073-0.118,0.147-0.236,0.222-0.355c-0.002-0.027-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.109-0.194,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.015-0.04,0.08-0.069,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.154c-0.031-0.184-0.127-0.277-0.279-0.375c0.018,0.078-0.004,0.113-0.025,0.191c-0.033,0.026-0.04,0.043-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.009,0.029-0.013,0.044c0.015,0.017,0.029,0.034,0.043,0.051c-0.028,0.063-0.008,0.077,0.007,0.14v0.318\r\n\t\t\t\tc0.022,0.102,0.073,0.268,0.146,0.324c0.209,0.044,0.477-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.227,51.768,35.186,51.688,35.154z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z\r\n\t\t\t\t M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.316,0.022-0.352-0.084\r\n\t\t\t\tC50.471,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.037,0.017,0.076,0.034,0.113,0.051\r\n\t\t\t\tc0.07-0.025,0.141-0.051,0.211-0.076c-0.014-0.036-0.025-0.072-0.039-0.108c0.033-0.077,0.143-0.097,0.203-0.146\r\n\t\t\t\tc0.084-0.066,0.228-0.183,0.268-0.286c0.015-0.059,0.029-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.063-0.146\r\n\t\t\t\tc-0.099-0.13-0.201-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.024-0.222\r\n\t\t\t\tc0.032-0.042,0.063-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.1,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.103-0.002,0.239,0.039,0.312,0.025\r\n\t\t\t\tc0.033-0.012,0.068-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.231,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.057,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.067,0.042-0.103,0.064\r\n\t\t\t\tc-0.043,0.061-0.037,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.084,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.309,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.062-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.014-0.03,0.025-0.044,0.039c-0.012-0.053-0.021-0.069-0.07-0.084\r\n\t\t\t\tc-0.033-0.006-0.066,0.023-0.095,0.039c-0.203,0.106-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.016\r\n\t\t\t\tc-0.076-0.303-0.168-0.599-0.232-0.904c0.011,0,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.029,0.009-0.056,0.013-0.084h0.006c0.023,0.049,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.014,0.019,0.02\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.059,0.138-0.1,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.09c0.198-0.062,0.318-0.017,0.375,0.141c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.05,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.01,0.006,0.014c-0.061-0.009-0.097-0.021-0.121,0.031\r\n\t\t\t\tC7.564,37.5,7.647,37.605,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.436c0.051-0.051,0.122-0.09,0.155-0.152\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.021,0.108,0.044,0.172,0.02h0.006c0.013,0.191-0.204,0.291-0.248,0.482\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.35c0.051-0.121,0.102-0.241,0.153-0.361c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.078-0.036-0.114-0.057-0.172c0.045-0.055,0.132-0.205,0.019-0.255v-0.038c0.146,0.014,0.159-0.072,0.235-0.14\r\n\t\t\t\tc0.08-0.069,0.491-0.363,0.585-0.381c0.051-0.011,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.024\r\n\t\t\t\tc-0.005-0.183,0.137-0.241,0.292-0.254c-0.009-0.052-0.017-0.103-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.069,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.17,0.065-0.289,0.184-0.332c0-0.047-0.035-0.138-0.019-0.222c0.021-0.106,0.097-0.243,0.076-0.368\r\n\t\t\t\tc-0.017-0.166-0.034-0.332-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.465c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.103h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.063c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.757\r\n\t\t\t\tc-0.161-0.049-0.338,0.009-0.458-0.069c-0.256-0.166-0.436-0.435-0.731-0.565c-0.171-0.076-0.287,0.017-0.451-0.014\r\n\t\t\t\tc-0.1-0.016-0.199-0.029-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.241c0.013-0.078-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.033-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.217c-0.065-0.022-0.106-0.067-0.159-0.102c-0.052,0.007-0.15,0.016-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.19c-0.069,0.102-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.069,0.012-0.1,0.032-0.146c-0.111,0.022-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.293\r\n\t\t\t\tc0.065-0.104,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.577c-0.021-0.068-0.016-0.144-0.076-0.173c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.035-0.22-0.072-0.331-0.107c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.026-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.016-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.119-0.214-0.313-0.388-0.291c-0.011,0.021-0.021,0.041-0.032,0.062v0.013c-0.013-0.091-0.026-0.182-0.038-0.272\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.02c-0.066-0.004-0.131-0.009-0.197-0.014v-0.006\r\n\t\t\t\tc0.187-0.059,0.138-0.167,0.273-0.223c0.002-0.004,0.004-0.008,0.006-0.012c-0.051-0.035-0.122-0.046-0.178-0.084\r\n\t\t\t\tc-0.013-0.019-0.026-0.037-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.02-0.038,0.035-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191v-0.039c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.014,0.032-0.02c0.004-0.009,0.008-0.018,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.127-0.21,0.146c-0.261,0.059-0.335-0.148-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.058-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.017-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.031c-0.016,0.063-0.425,0.178-0.515,0.211\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.012c-0.008,0.037-0.018,0.037-0.038,0.058c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.045-0.094,0.072-0.152,0.084c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.101,0.07-0.187,0.121-0.254\r\n\t\t\t\tc-0.012-0.103-0.056-0.167-0.089-0.254c0.041-0.062,0.144-0.086,0.241-0.089c0.011-0.014,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.185c-0.04,0.012-0.081,0.024-0.121,0.037\r\n\t\t\t\tc0.019-0.035,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.022-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.037\r\n\t\t\t\tc-0.047,0.031-0.093,0.063-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.127-0.331,0.094\r\n\t\t\t\tc-0.05-0.062-0.09-0.027-0.135-0.021c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.031v0.007c-0.047,0.013-0.093,0.024-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.082c0.114,0.035,0.208,0.115,0.337,0.146c0.067,0.018,0.202-0.02,0.261,0.02\r\n\t\t\t\tc0.043,0.024,0.066,0.123,0.07,0.184c0.099,0.061,0.295,0.061,0.388,0.127c-0.006,0.064-0.053,0.105-0.102,0.127\r\n\t\t\t\tC7.811,33.859,7.792,33.88,7.773,33.9v0.007c0.141,0.006,0.266-0.058,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.031\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.069c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.02c0.013-0.027,0.025-0.055,0.038-0.082c-0.079-0.081-0.36-0.09-0.483-0.141\r\n\t\t\t\tc-0.04-0.043-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.105-0.191-0.158H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.018-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21h0.06c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tc-0.004-0.026-0.004-0.02-0.017-0.036c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.021,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006H8.37c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299H12.48c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0s0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tC18.58,15.989,18.564,16,18.55,15.989c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.021-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005C21.061,9.85,21.006,9.85,20.952,9.85c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.818,0,9.316,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.047-0.001-0.131-0.022-0.152-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.014,0.013-0.025,0.025-0.039,0.038\r\n\t\t\t\tc0.039,0.028,0.076,0.062,0.103,0.102c-0.099,0.069-0.239,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.014,0.013\r\n\t\t\t\tc0.033,0.03,0.064,0.059,0.096,0.089c-0.004,0.027-0.008,0.055-0.014,0.083c-0.383-0.001-0.321,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.209,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.227,0.096,0.344,0.121c0.108-0.061,0.16-0.161,0.248-0.241\r\n\t\t\t\tc-0.003-0.025-0.005-0.051-0.007-0.076c-0.034-0.021-0.067-0.042-0.103-0.064c-0.004-0.006-0.008-0.013-0.012-0.019\r\n\t\t\t\tc0.022-0.023,0.047-0.047,0.069-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.043-0.034-0.064-0.051c-0.014-0.017-0.002-0.045,0.006-0.076c0.016-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.271,0.047,0.356,0.006c0.035-0.028,0.072-0.055,0.107-0.083c0.021-0.023,0.043-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.056-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.1-0.106c0.829,0.518,1.631,1.072,2.395,1.677\r\n\t\t\t\tc-0.006,0.025-0.012,0.05-0.016,0.075c-0.05,0.083-0.098,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.465,0.489\r\n\t\t\t\tc0.054,0.004,0.107,0.008,0.16,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.029,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.136,0.168,0.286,0.146c-0.018,0.094-0.113,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.636-0.089\r\n\t\t\t\tc-0.08,0.019-0.115,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.119,0.179-0.291,0.203c-0.021,0.033-0.037,0.114-0.052,0.146c-0.095,0.048-0.19-0.018-0.216-0.089\r\n\t\t\t\tc0.029-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.45,0.032c-0.043,0.034-0.086,0.068-0.128,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.104-0.03-0.279-0.002-0.361,0.032c-0.092,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.045-0.057c-0.182,0.003-0.223,0.07-0.375,0.019c0-0.05,0.008-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.168,0.2-0.42,0.248\r\n\t\t\t\tc-0.006-0.002-0.012-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.399,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.342,0.069-0.428-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.098,0.009-0.195,0.017-0.293,0.025c-0.082-0.018-0.133-0.053-0.215-0.032\r\n\t\t\t\tc-0.018,0.148,0.158,0.164,0.12,0.337c-0.051,0.081-0.102,0.161-0.151,0.241c-0.004,0.004-0.01,0.009-0.014,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.028,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.02,0.108v0.013\r\n\t\t\t\tc-0.165-0.008-0.334-0.211-0.565-0.184c-0.124,0.261-0.491,0.237-0.661,0.445c0.006,0.173,0.26,0.294,0.141,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.103-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.104,0-0.1,0.078-0.152,0.127c0.002,0.063,0.125,0.201,0.19,0.229c0.058,0.024,0.138-0.001,0.19,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.26,0.21c-0.072-0.016-0.158,0.001-0.211-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.075-0.038-0.206-0.014-0.291-0.057c-0.043-0.022-0.209-0.444-0.217-0.527c0.123-0.036,0.164-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.137-0.088-0.245-0.222-0.362-0.33c0.222-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.141,0.021,0.211,0.032c0.5,0.15,1.305,0.524,1.83,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.361-0.305c-0.068-0.021-0.137-0.042-0.203-0.063c-0.108-0.038-0.217-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.06,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.014-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.047,0.019-0.104,0.021-0.141,0.044\r\n\t\t\t\tc-0.113-0.074-0.219-0.036-0.369-0.025c-0.065-0.103-0.205-0.127-0.279-0.222c0.236,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.005-0.047-0.007-0.07c-0.027-0.017-0.055-0.034-0.082-0.051c-0.065-0.023-0.141,0.003-0.191-0.019\r\n\t\t\t\tc-0.105-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.039-0.008-0.08-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.059-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.116,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.012-0.28c-0.14,0.095-0.322,0.263-0.389,0.426c-0.018-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.28-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.145,0.185-0.172,0.273c-0.188-0.096-0.28-0.273-0.381,0.083c-0.043-0.036-0.086-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.014-0.004-0.02-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.152,0.229\r\n\t\t\t\tc0.014-0.069,0.026-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.014-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.147,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.024-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.037,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.105,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.031,0.14\r\n\t\t\t\tc-0.019,0.028-0.037,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.063-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.01,0.027,0.014,0.055,0.043,0.076v0.038c-0.054,0.016-0.076,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.253-0.025\r\n\t\t\t\tc0.021,0.015,0.043,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.014,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.029-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.177,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.02-0.002,0.039-0.004,0.058-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.014-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.279,0.045c-0.111-0.019-0.164-0.137-0.3-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.036-0.04,0.304,0.049,0.368,0.083c0.082,0.043,0.287-0.119,0.312-0.153h0.058c-0.002-0.095-0.049-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.053-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.02-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.063-0.083\r\n\t\t\t\tc0.017-0.027-0.004-0.073-0.012-0.115h0.127c0.079-0.112,0.116-0.111,0.221-0.191c0.051-0.038,0.051-0.096,0.115-0.127\r\n\t\t\t\tc0.022,0.015,0.047,0.03,0.069,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.185-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.127-0.081,0.151-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.092-0.069,0.095-0.193,0.211-0.248c0.051,0.034,0.102,0.068,0.152,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.262,0.115c0.011,0.019,0.021,0.038,0.031,0.057c0.015,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.052,0.057c0.013,0.018,0.008,0.038,0.006,0.076c-0.041-0.002-0.082-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.037-0.057v-0.013c-0.091,0.094-0.017,0.207-0.16,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.158-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.09,0.064c0,0.094-0.021,0.143-0.032,0.216c0.034,0.053,0.067,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.024,0.121c-0.035,0.188-0.012,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.054-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.021,0.042,0.039,0.071,0.084,0.089\r\n\t\t\t\tc0.066,0.051,0.192-0.016,0.234-0.038v0.026c0.064-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.056,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.018-0.083,0.1-0.04,0.152-0.083c0.027-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.107,0.038\r\n\t\t\t\tc0.026-0.027,0.035-0.043,0.084-0.051c0.021,0.013,0.041,0.025,0.063,0.038c0.06-0.057,0.198-0.098,0.3-0.108\r\n\t\t\t\tc0.008-0.015,0.016-0.03,0.024-0.045c0.028-0.003-0.011,0.079-0.019,0.114c0.147,0.215,0.344-0.041,0.488,0.229\r\n\t\t\t\tc-0.015,0.011-0.029,0.021-0.045,0.032c-0.094-0.003-0.141-0.044-0.222-0.07c-0.076,0.006-0.101,0.066-0.14,0.108\r\n\t\t\t\tc-0.054-0.012-0.054-0.037-0.103-0.025c-0.017,0.027-0.015,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.024,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.063,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.057,0.067-0.107,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.033,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.012,0.045c-0.045-0.007-0.062,0.006-0.103-0.006c-0.085,0.046-0.146,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.014,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.045,0.165c0.021,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.024,0.017,0.037,0.025c-0.021,0.16-0.09,0.268-0.037,0.451c-0.041,0.106-0.223,0.17-0.324,0.076\r\n\t\t\t\tc-0.016-0.04-0.03-0.081-0.044-0.121c-0.048-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.268,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.033,0.025-0.064,0.051-0.096,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.01,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.012,0.035,0.018,0.047,0.014,0.089c-0.082,0.046-0.25,0.013-0.362,0.007c-0.017,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.01-0.053-0.025-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025V22.17\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025H32.2c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.022,0.012,0.038-0.004,0.069-0.019c0.034,0.01,0.182,0.419,0.172,0.451v0.013c-0.022-0.002-0.047-0.004-0.069-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.014,0.009,0.025,0.017,0.039,0.025h0.082\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.062-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.062-0.034-0.123-0.068-0.185-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.007,0.095,0.142,0.064,0.202,0.108c0.031,0.023,0.007,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.437-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.096-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.328,0.011-0.414-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.184,0.165,0.266,0.267c0.025,0.026,0.06-0.025,0.109-0.013\r\n\t\t\t\tc0.006,0.001,0.152,0.061,0.164,0.07c0.049,0.035,0.09,0.097,0.141,0.133c0.133,0.095,0.271,0.155,0.406,0.248\r\n\t\t\t\tc0.03,0.036,0.06,0.072,0.09,0.108c0.041,0.021,0.084,0.042,0.127,0.064c0.002,0.051,0.002,0.06-0.039,0.07\r\n\t\t\t\tc-0.006,0.043,0.017,0.226,0.014,0.235c-0.018,0.032-0.034,0.064-0.051,0.095c0.021,0.032,0.037,0.045,0.037,0.102\r\n\t\t\t\tc-0.01-0.002-0.021-0.004-0.031-0.006c0.027,0.077,0.145,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.024,0.025v0.013c-0.026,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.037,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.228-0.061,0.349-0.025c0.078,0.022,0.119,0.081,0.224,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.041,0.076-0.063,0.114\r\n\t\t\t\tc0.038,0.047,0.075,0.093,0.114,0.14c0.014,0.044-0.017,0.099-0.014,0.146c0.02,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.02-0.015,0.039-0.03,0.058-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.056-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.033,0.011,0.068,0.021,0.102,0.032h0.014c-0.006,0.013-0.014,0.025-0.02,0.038c0.018,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.02-0.035,0.029-0.044,0.083-0.045c-0.022-0.029-0.028-0.02-0.024-0.064c-0.021,0.004-0.043,0.009-0.064,0.013\r\n\t\t\t\tc-0.021-0.048-0.025-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.106,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.014-0.011,0.025-0.021,0.039-0.032c-0.014-0.04-0.025-0.081-0.039-0.121\r\n\t\t\t\tc0.008-0.002,0.018-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.103-0.044\r\n\t\t\t\tc-0.014-0.03-0.026-0.059-0.039-0.089v-0.007c0.031-0.019,0.043-0.017,0.084-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.018-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.223-0.311\r\n\t\t\t\tc0.003-0.047,0.016-0.064,0.039-0.089c-0.012-0.013-0.021-0.025-0.032-0.038c0.034-0.015,0.06-0.023,0.075-0.057\r\n\t\t\t\tc0.009,0.002,0.018,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.031,0.019\r\n\t\t\t\tc0.039,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.063,0.008,0.095,0.013h0.014c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.016-0.002,0.031-0.004,0.045-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.023-0.041-0.061-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.066,0.015,0.082,0.045\r\n\t\t\t\tc0.018,0.015,0.035,0.03,0.052,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.19-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.033,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.271-0.012,0.285,0.121c0.008-0.009,0.018-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.096,0.057c-0.008,0.032-0.017,0.064-0.024,0.095\r\n\t\t\t\tc0.065-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.016-0.03,0.03-0.059,0.045-0.089\r\n\t\t\t\tc0.037-0.022,0.1,0.002,0.152-0.019c0.137-0.054,0.112,0.009,0.273,0.013c0.025-0.03,0.045-0.056,0.062-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.209-0.089c-0.088-0.049-0.179-0.313-0.268-0.299v-0.051c0.035-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.014-0.121\r\n\t\t\t\tc0.035-0.199,0.06-0.377,0.285-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.033-0.038-0.051-0.064\r\n\t\t\t\tc-0.031-0.104,0.094-0.097,0.152-0.133c0.199-0.119,0.104-0.321,0.51-0.311c0.008-0.015,0.018-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.063,0.076v0.013c-0.022,0.021-0.047,0.042-0.069,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.025,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267V23.7c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.103-0.009,0.153-0.013c0.034-0.028,0.067-0.055,0.103-0.083c0.06-0.018,0.088,0.017,0.133,0.025\r\n\t\t\t\tc0.037-0.006,0.076-0.013,0.113-0.019c0.023-0.032,0.053-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.234,0.038c-0.024-0.123-0.199-0.258-0.338-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.104-0.029,0.197-0.016,0.306-0.019c0.036-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.021,0.013,0.02,0.008,0.045,0c0.051-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.048-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.223-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.187-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.031,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.412,0.152c-0.008,0.011-0.018,0.021-0.026,0.032c0.073,0.053,0.147,0.098,0.196,0.178\r\n\t\t\t\tc-0.033,0.026-0.076,0.034-0.139,0.032c-0.029,0.081-0.084,0.13-0.09,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.045,0.013,0.09,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.281,0.21c0.047,0.038,0.115,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.014,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.016,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.08,0.289-0.088,0.388-0.324,0.445c-0.131,0.031-0.221-0.051-0.336-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.099,0.022-0.277-0.021-0.382-0.038c-0.125-0.021-0.15-0.13-0.291-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.103,0.03-0.172,0.013c-0.084-0.021-0.076-0.089-0.121-0.146c-0.174,0.111-0.323-0.021-0.541,0.032\r\n\t\t\t\tc-0.195,0.047-0.34,0.172-0.514,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.139,0.074-0.203,0.007-0.318-0.013\r\n\t\t\t\tc-0.02,0.006-0.038,0.013-0.057,0.019c-0.094-0.008-0.187-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.068,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.014,0.009,0.02,0.013\r\n\t\t\t\tc-0.006,0.008-0.014,0.017-0.02,0.025c-0.113-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.09-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.014,0.006,0.026,0.013,0.039,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.143,0.01-0.16-0.044c-0.09,0.011-0.202,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.069,0.064\r\n\t\t\t\tc-0.011,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.262-0.038v0.006c-0.016,0.024-0.031,0.039-0.058,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.063,0.045c0.015,0.023-0.006,0.02-0.013,0.064h0.058\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.008,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.033-0.003-0.056-0.025-0.09-0.044c-0.011,0.023-0.021,0.047-0.031,0.07v0.045\r\n\t\t\t\tc0.104,0.013,0.133,0.046,0.221,0.07c0.004,0.06-0.021,0.124,0.007,0.165c0.034,0.021,0.067,0.042,0.103,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.056,0.021-0.084,0.032c0.006,0.013,0.014,0.025,0.02,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.018,0.019-0.023,0.019-0.032,0.051\r\n\t\t\t\tc0.007,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.01,0.004,0.014,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.084-0.003,0.086,0.023,0.146,0.051c0.028,0.014,0.049-0.015,0.076-0.038c0.024,0.059,0.051,0.119,0.075,0.178\r\n\t\t\t\tc0.1,0.031,0.23-0.025,0.3,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.029-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.107,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.012,0.017,0.024,0.034,0.037,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.018,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.037,0.107-0.063,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.306,0.578c-0.008,0.042-0.017,0.085-0.024,0.127c-0.041,0.134-0.077,0.258-0.173,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.223,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.071,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.065,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.069,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.067,0.051,0.103,0.076c0.086,0.071,0.194,0.232,0.234,0.344\r\n\t\t\t\tc0.012,0.067,0.021,0.135,0.032,0.202c-0.009,0.039-0.042,0.068-0.032,0.128c0.03,0.172,0.113,0.353,0.165,0.495v0.216\r\n\t\t\t\tc0.095,0.205,0.384,0.166,0.554,0.057c0.057-0.047,0.113-0.092,0.172-0.139c0.094-0.029,0.217,0.012,0.299-0.014\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.025,0.163,0.016,0.229-0.02c0.068-0.035,0.086-0.123,0.151-0.158\r\n\t\t\t\tc0.238-0.131,0.547-0.129,0.769-0.268c0.062-0.037,0.047-0.087,0.076-0.158c0.029-0.07,0.139-0.143,0.211-0.172\r\n\t\t\t\tc0.121-0.041,0.24-0.082,0.361-0.121c0.07,0.008,0.141,0.017,0.21,0.024c0.024-0.015,0.052-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.017-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.272-0.051c0.032-0.027,0.026-0.071,0.044-0.114\r\n\t\t\t\tc0.049-0.12,0.189-0.153,0.35-0.159c0.008-0.116-0.013-0.304,0.025-0.419c0.057-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.043-0.04,0.086-0.08,0.128-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.128-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.183-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.014-0.203\r\n\t\t\t\tc-0.015-0.018-0.023-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.041,0.011-0.062,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.478-0.019\r\n\t\t\t\tc-0.019,0.017-0.022,0.015-0.031,0.044c-0.073,0.007-0.131-0.005-0.203-0.006c0.013-0.058-0.016-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.018-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.029-0.004-0.044-0.006c-0.083,0.059-0.118,0.288-0.069,0.407c0.006,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.046-0.059-0.109-0.211-0.115-0.311c-0.033-0.027-0.035-0.039-0.076-0.032c-0.032-0.107-0.057-0.116-0.012-0.229\r\n\t\t\t\tc-0.014-0.021-0.026-0.042-0.039-0.064c0.021-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.035-0.028-0.025-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.113-0.013c-0.07-0.185-0.159-0.356-0.211-0.553\r\n\t\t\t\tc-0.035,0.009-0.071,0.017-0.107,0.026c-0.013-0.006-0.025-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.009-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.02\r\n\t\t\t\tc-0.002,0.041,0,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.241,0.032c0.043,0.069,0.144,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.137,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.312,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.105,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.187-0.121,0.196-0.172\r\n\t\t\t\tc0.099-0.035,0.203-0.075,0.324-0.044c0.051,0.012,0.039,0.034,0.09,0.038c0.015,0.043,0.01,0.1,0.031,0.159\r\n\t\t\t\tc0.026,0.069,0.096,0.113,0.096,0.21c0.067,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.143,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.217,0.083c0.131,0.021,0.254-0.027,0.355-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.19-0.07c0.08,0.167,0.549-0.018,0.687-0.025c0.073,0.053,0.075,0.102,0.069,0.223\r\n\t\t\t\tc0.047,0.011,0.094,0.021,0.141,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.113,0.032,0.19,0.076\r\n\t\t\t\tc0.03,0.042,0.06,0.085,0.089,0.127c0.104,0.123,0.381,0.229,0.598,0.153c0.002,0.052-0.021,0.064-0.051,0.095\r\n\t\t\t\tc-0.143,0.145-0.215,0.023-0.369,0.076h-0.014c0.049,0.113,0.434,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.018-0.059,0.025-0.089c0.031-0.019,0.082-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.015,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.014,0.062-0.094,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.103,0.616c0.07,0.251,0.209,0.444,0.305,0.655\r\n\t\t\t\tc0.064,0.143,0.116,0.299,0.165,0.457c0.021,0.078,0.042,0.156,0.063,0.234c0.039,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.033,0.111,0.064,0.225,0.096,0.337c0.059,0.063,0.119,0.127,0.178,0.19\r\n\t\t\t\tc0.09-0.002,0.219-0.063,0.248-0.127c0.025-0.054,0.004-0.105,0.038-0.146c0.083-0.028,0.165-0.056,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.058-0.057c0.025-0.072,0.052-0.145,0.076-0.217c0.037-0.021,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.024-0.213,0.286-0.457,0.108-0.654c0.057-0.142-0.035-0.297,0-0.451\r\n\t\t\t\tc0.021-0.047,0.041-0.094,0.063-0.141c0.06-0.048,0.118-0.061,0.19-0.019c0.049-0.031,0.078-0.104,0.096-0.165\r\n\t\t\t\tc0.059-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.049-0.168,0.108-0.217c0.063-0.031,0.127-0.063,0.19-0.094\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.179-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.194-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.147-0.181,0.229-0.273c-0.014-0.045-0.025-0.089-0.039-0.134\r\n\t\t\t\tc0.072-0.072,0.18-0.083,0.268-0.14c0.032-0.034,0.064-0.068,0.096-0.102c0.028,0.022,0.049,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.037,0.013c0.018-0.03,0.035-0.059,0.052-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.02,0.01,0.039,0.021,0.058,0.032\r\n\t\t\t\tc0.013-0.021,0.024-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.008,0.021,0.016,0.043,0.025,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.009-0.004,0.013-0.006c0.021,0.038,0.043,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.017-0.069,0.026-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.031-0.184c-0.002-0.034-0.004-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.096,0.127c0.069-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.021,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.067,0.037,0.106,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.103,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.031-0.057c0.004-0.002,0.01-0.004,0.014-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.018,0.129-0.099,0.221-0.103,0.361c0.015,0.012,0.03,0.021,0.044,0.033c0.047-0.039,0.073-0.066,0.152-0.076\r\n\t\t\t\tc-0.006,0.024-0.012,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.031h0.025c0.029-0.023,0.031-0.041,0.082-0.044v0.058\r\n\t\t\t\tc0.08,0.072,0.095-0.08,0.153-0.121c0.185-0.133,0.273-0.031,0.306-0.344H56.3c0.085,0.062,0.089,0.235,0.197,0.268\r\n\t\t\t\tc0.026,0.18,0.051,0.359,0.075,0.54c0.048,0.163,0.152,0.309,0.203,0.45c0.054,0.145,0.031,0.291,0.025,0.433\r\n\t\t\t\tc0.02,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.052,0.038\r\n\t\t\t\tc-0.064,0.162-0.162,0.391-0.103,0.566c0.024-0.012,0.051-0.021,0.075-0.032c0.086,0.091,0.166,0.136,0.211,0.272\r\n\t\t\t\tc0.02,0.008,0.033,0.01,0.064,0c0.043,0.058,0.051,0.1,0.051,0.197c0.011,0.006,0.021,0.014,0.031,0.02\r\n\t\t\t\tc0.034,0.043,0.078,0.029,0.121,0.006c0.004,0.004,0.008,0.008,0.014,0.013c-0.019,0.14-0.008,0.3,0.043,0.445\r\n\t\t\t\tc0.025,0.047,0.052,0.093,0.076,0.14c0.01,0.069-0.023,0.131,0.014,0.191c0.039,0.033,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.021,0.021,0.057,0.031,0.088C55.357,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.069-0.013c-0.035,0.011-0.068,0.021-0.103,0.032c-0.005-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.014-0.004-0.026-0.008-0.039-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.033-0.068-0.051-0.102c-0.066,0.075-0.078,0.271-0.043,0.369\r\n\t\t\t\tc0.038,0.021,0.133,0.008,0.215,0.006c-0.015,0.019-0.029,0.038-0.043,0.057c0.004,0.013,0.008,0.025,0.012,0.038\r\n\t\t\t\tc0.015,0.023,0.043,0.036,0.07,0.045v0.019c-0.045-0.004-0.088-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.031,0.045v0.044\r\n\t\t\t\tc0.041-0.029,0.065-0.018,0.127-0.006c0.023,0.067,0.084,0.076,0.113,0.133c0.014,0.054-0.037,0.118-0.037,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.02,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.062,0.047-0.192,0.025-0.281,0.045\r\n\t\t\t\tc-0.313,0.07-0.747,0.1-0.857-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.053-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.014-0.008,0.02-0.013c0.017,0.015,0.019,0.017,0.024,0.044c0.007,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.007-0.03,0.014-0.059,0.02-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.057-0.128-0.189-0.036-0.242-0.108c-0.029-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.105-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.058-0.019\r\n\t\t\t\tc-0.049-0.07-0.076-0.16-0.139-0.216c-0.016-0.004-0.031-0.009-0.045-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.031,0.114h-0.007\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.031-0.019-0.074-0.01-0.088-0.045v-0.032c0.004-0.075,0.082-0.081,0.113-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.016,0.008,0.029,0.017,0.044,0.025c0.017-0.02,0.021-0.029,0.019-0.07c0.103-0.023,0.135-0.121,0.217-0.153\r\n\t\t\t\tc0.039-0.002,0.08-0.004,0.121-0.006c0.129-0.041,0.242-0.21,0.412-0.197c0.097,0.007,0.138,0.073,0.211,0.089\r\n\t\t\t\tc0.076,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.113,0.025,0.172,0.038c0.015,0.025,0.029,0.051,0.045,0.076\r\n\t\t\t\tc-0.018,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.084,0.33c0.005,0.058,0.07,0.083,0.115,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.139-0.013-0.275-0.025-0.414-0.038c-0.037,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.037,0.102c-0.029,0.036-0.058,0.02-0.076,0.076c0.026,0.039,0.063,0.068,0.113,0.083\r\n\t\t\t\tc0.006,0.008,0.014,0.017,0.02,0.026c-0.062,0.044-0.215-0.025-0.338-0.019c-0.006,0.006-0.012,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.134,0.043,0.185,0.051c0.027,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.234,0.064c-0.033,0.064-0.069,0.143-0.094,0.203c0.022,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.026-0.072,0.01-0.226,0.031-0.305c0.088-0.015,0.174-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.016,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.043-0.024-0.084-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.024-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.052,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.367,0.016-0.324-0.226-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.024,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.062,0.004-0.119,0.022-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.123-0.633,0.191-0.826c-0.005-0.053-0.01-0.105-0.014-0.158c0.02-0.082,0.062-0.115,0.025-0.217\r\n\t\t\t\tc0.092-0.07,0.145-0.061,0.291-0.051c-0.006,0.076-0.012,0.152-0.019,0.229c0.058,0.002,0.08,0.024,0.121,0.033\r\n\t\t\t\tc0.078,0.014,0.106-0.055,0.19-0.007c0.039,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.11,1.104-0.188,1.649C57.688,35.667,57.663,35.645,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.059-0.106-0.061-0.14-0.133\r\n\t\t\t\tc-0.067-0.055-0.062-0.042-0.127,0.013c0.009,0.101,0.008,0.235-0.07,0.299c-0.044,0.036-0.079,0.04-0.102,0.103\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.037-0.004-0.057-0.006c-0.003,0.068,0.016,0.109,0.038,0.165\r\n\t\t\t\tc-0.005,0.011-0.009,0.021-0.013,0.032c-0.024,0.016-0.041,0.024-0.084,0.024c-0.002,0.005-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.004,0.045,0.026,0.06,0.045,0.103c-0.022,0.024-0.047,0.051-0.069,0.076c-0.039-0.005-0.04-0.009-0.052-0.038H41.85\r\n\t\t\t\tc-0.031,0.027-0.062,0.055-0.095,0.083c0.009,0.034,0.022,0.045,0.038,0.069c-0.014,0.01-0.025,0.018-0.038,0.026\r\n\t\t\t\tc-0.024,0.011-0.026-0.009-0.063-0.019c-0.047,0.029-0.094,0.059-0.141,0.089c0.004,0.024,0.01,0.051,0.014,0.075\r\n\t\t\t\tc-0.071,0.018-0.121-0.053-0.211-0.012c-0.017,0.019-0.033,0.037-0.051,0.057c-0.039,0.02-0.074-0.014-0.107-0.014\r\n\t\t\t\tc-0.025,0.02-0.051,0.039-0.076,0.058c-0.044,0.002-0.09,0.004-0.133,0.006c0,0.213-0.084,0.245-0.141,0.381\r\n\t\t\t\tc-0.025,0.101,0.069,0.325,0.121,0.388c-0.015,0.032-0.029,0.064-0.044,0.096c0.032,0.039,0.063,0.076,0.095,0.115\r\n\t\t\t\tc0.03,0.114-0.166,0.512-0.216,0.559c-0.024,0.009-0.051,0.017-0.075,0.025c-0.045,0.031-0.103,0.232-0.09,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.024,0.097-0.038,0.146c-0.031,0.145,0.061,0.157,0.083,0.229\r\n\t\t\t\tc0.017,0.051-0.006,0.092,0.019,0.127c0.084,0.119,0.263,0.084,0.344,0.21c0.137-0.008,0.17-0.09,0.285-0.121\r\n\t\t\t\tc0.07-0.009,0.141-0.018,0.211-0.025c0.132-0.082,0.205-0.498,0.261-0.674c0.149-0.486,0.302-0.971,0.451-1.455\r\n\t\t\t\tc0.028-0.096-0.011-0.189,0.019-0.3c0.026-0.093,0.125-0.146,0.146-0.254c-0.047-0.071-0.09-0.157-0.09-0.272\r\n\t\t\t\tc0.012-0.006,0.021-0.014,0.033-0.02c0.004-0.004,0.008-0.009,0.013-0.013c0.028,0.053,0.069,0.133,0.12,0.165\r\n\t\t\t\tc0.035-0.029,0.115-0.123,0.103-0.191c-0.026-0.053-0.055-0.105-0.083-0.158C42.622,41.831,42.634,41.518,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.143-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.018-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.018-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.01-0.034,0.014-0.051c-0.002-0.002-0.004-0.004-0.007-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.021-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.057-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.02,0.095c0.088,0.039,0.261,0.031,0.356,0.07\r\n\t\t\t\tL35.215,27.014L35.215,27.014z M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095\r\n\t\t\t\tc-0.036-0.095,0.072-0.224,0.103-0.292v-0.006c-0.059-0.014-0.121,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044\r\n\t\t\t\tc-0.091,0.081-0.209,0.007-0.254,0.152c0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z\r\n\t\t\t\t M21.217,10.482c0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.058\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.012c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089V21.17h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006L25.078,20.894L25.078,20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.022-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.146-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.029-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.101,0.036-0.199,0.072-0.299,0.108c-0.06-0.006-0.119-0.013-0.179-0.019c0.011,0.023,0.013,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.107c0.048-0.057,0.064-0.207,0.095-0.268c-0.057-0.054-0.445-0.061-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.039,0.009,0.092,0.013,0.135\r\n\t\t\t\tc0.086,0.021,0.114-0.016,0.203-0.02c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.062-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.02c0.044,0.002,0.042,0.01,0.063,0.031c-0.012,0.031-0.012,0.051,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.014-0.013,0.02v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.082-0.008-0.158,0.032-0.217v-0.006h-0.038C11.059,37.904,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.082c-0.045,0.004-0.062,0.022-0.089,0.031c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.018-0.194-0.057-0.324-0.057C9.066,33.9,9.038,33.904,9.01,33.909\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.024c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.146,0.095,0.211\r\n\t\t\t\tc0.004,0.006,0.008,0.012,0.013,0.019c-0.128,0.082-0.41,0.036-0.572-0.013c-0.013,0.015-0.025,0.029-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.013,0.053-0.048,0.102-0.058\r\n\t\t\t\tc0.076,0.012,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.15,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.061,0.178-0.076\r\n\t\t\t\tc0.044-0.012,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.046,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.113\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.17,0.311,0.153\r\n\t\t\t\tc0.044-0.013,0.058-0.078,0.14-0.058c0.051,0.014,0.064,0.041,0.127,0.039c0.002-0.012,0.004-0.021,0.006-0.033\r\n\t\t\t\tc-0.073-0.109-0.33-0.157-0.515-0.152C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[]}]}]}]}]}]}]}]};exports.globe=globe;var google_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"google_plus_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"google_plus"},"children":[{"name":"g","attribs":{"id":"google_plus"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522c0,6.666,5.158,12.23,12.857,12.23\r\n\t\t\t\tc0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142c0,1.854,1.014,3.379,2.297,4.604\r\n\t\t\t\tc-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533c0,5.986,8.158,10.472,17.533,10.472\r\n\t\t\t\tc10.686,0,16.463-6.688,16.463-12.678c0-4.8-1.318-7.675-5.777-10.772c-1.525-1.06-4.443-3.642-4.443-5.157\r\n\t\t\t\tc0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407c0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z\r\n\t\t\t\t M29.574,46.295c0.133,0.557,0.207,1.128,0.207,1.711c0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.536-11.158-8.375\r\n\t\t\t\tc0-4.741,5.805-8.69,12.283-8.622c1.512,0.018,2.92,0.256,4.199,0.664C26.34,42.201,28.862,43.559,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54L54,14.817z"},"children":[{"name":"path","attribs":{"d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522c0,6.666,5.158,12.23,12.857,12.23\r\n\t\t\t\tc0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142c0,1.854,1.014,3.379,2.297,4.604\r\n\t\t\t\tc-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533c0,5.986,8.158,10.472,17.533,10.472\r\n\t\t\t\tc10.686,0,16.463-6.688,16.463-12.678c0-4.8-1.318-7.675-5.777-10.772c-1.525-1.06-4.443-3.642-4.443-5.157\r\n\t\t\t\tc0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407c0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z\r\n\t\t\t\t M29.574,46.295c0.133,0.557,0.207,1.128,0.207,1.711c0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.536-11.158-8.375\r\n\t\t\t\tc0-4.741,5.805-8.69,12.283-8.622c1.512,0.018,2.92,0.256,4.199,0.664C26.34,42.201,28.862,43.559,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54L54,14.817z"},"children":[]}]}]}]}]}]}]}]};exports.google_plus=google_plus;var graph_fall={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"GRAPH_FALL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,30c-1.657,0-3,1.343-3,3v4.757L43.086,22.843v0l-5.965-5.965\r\n\t\t\tC36.578,16.336,35.828,16,35,16s-1.578,0.336-2.121,0.879L19,30.758L5.121,16.879C4.578,16.336,3.828,16,3,16\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.579,0.879,2.121l16,16C17.422,37.664,18.172,38,19,38c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\tL35,23.243l3.843,3.843l0.298,0.298l1.738,1.738L53.757,42H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tV33C64,31.343,62.657,30,61,30z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,30c-1.657,0-3,1.343-3,3v4.757L43.086,22.843v0l-5.965-5.965\r\n\t\t\tC36.578,16.336,35.828,16,35,16s-1.578,0.336-2.121,0.879L19,30.758L5.121,16.879C4.578,16.336,3.828,16,3,16\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.579,0.879,2.121l16,16C17.422,37.664,18.172,38,19,38c0.828,0,1.578-0.336,2.121-0.879\r\n\t\t\tL35,23.243l3.843,3.843l0.298,0.298l1.738,1.738L53.757,42H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tV33C64,31.343,62.657,30,61,30z"},"children":[]}]}]}]}]}]};exports.graph_fall=graph_fall;var graph_rise={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"GRAPH_RISE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,16H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L40.879,34.879\r\n\t\t\tl-1.738,1.738l-0.298,0.298L35,40.758L21.121,26.879C20.578,26.336,19.829,26,19,26c-0.828,0-1.578,0.336-2.121,0.879l-16,16\r\n\t\t\tC0.336,43.422,0,44.172,0,45c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L19,33.243l13.879,13.879\r\n\t\t\tC33.422,47.664,34.172,48,35,48c0.828,0,1.578-0.336,2.121-0.879l5.964-5.965h0L58,26.243V31c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V19C64,17.343,62.657,16,61,16z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,16H49c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L40.879,34.879\r\n\t\t\tl-1.738,1.738l-0.298,0.298L35,40.758L21.121,26.879C20.578,26.336,19.829,26,19,26c-0.828,0-1.578,0.336-2.121,0.879l-16,16\r\n\t\t\tC0.336,43.422,0,44.172,0,45c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L19,33.243l13.879,13.879\r\n\t\t\tC33.422,47.664,34.172,48,35,48c0.828,0,1.578-0.336,2.121-0.879l5.964-5.965h0L58,26.243V31c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V19C64,17.343,62.657,16,61,16z"},"children":[]}]}]}]}]}]};exports.graph_rise=graph_rise;var grid_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"GRID_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_1"},"children":[{"name":"g","attribs":{"id":"GRID_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z M55,55H41\r\n\t\t\t\tV41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55\r\n\t\t\t\tH9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41\r\n\t\t\t\tV9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14\r\n\t\t\t\tV23z"},"children":[{"name":"path","attribs":{"d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z M55,55H41\r\n\t\t\t\tV41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55\r\n\t\t\t\tH9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41\r\n\t\t\t\tV9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14\r\n\t\t\t\tV23z"},"children":[]}]}]}]}]}]}]}]};exports.grid_1=grid_1;var grid_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"GRID_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_2"},"children":[{"name":"g","attribs":{"id":"GRID_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M26,3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z"},"children":[{"name":"path","attribs":{"d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M26,3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38C61,36.343,59.657,35,58,35z"},"children":[]}]}]}]}]}]}]}]};exports.grid_2=grid_2;var hashtag={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"HASHTAG_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HASHTAG"},"children":[{"name":"g","attribs":{"id":"HASHTAG"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M58,18h-8.689l2.613-11.325l0,0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL43.152,18H27.31l2.614-11.325l0,0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL21.152,18H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h7.767l-3.692,16H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325l0,0\r\n\t\t\t\tC12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46h15.841l-2.613,11.325l0,0\r\n\t\t\t\tC34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-7.768l3.692-16H58c1.657,0,3-1.343,3-3S59.657,18,58,18z M38.075,40H22.233l3.692-16h15.843L38.075,40z"},"children":[{"name":"path","attribs":{"d":"M58,18h-8.689l2.613-11.325l0,0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL43.152,18H27.31l2.614-11.325l0,0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3c-1.425,0-2.617,0.994-2.923,2.326l0,0\r\n\t\t\t\tL21.152,18H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h7.767l-3.692,16H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325l0,0\r\n\t\t\t\tC12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46h15.841l-2.613,11.325l0,0\r\n\t\t\t\tC34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3c1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-7.768l3.692-16H58c1.657,0,3-1.343,3-3S59.657,18,58,18z M38.075,40H22.233l3.692-16h15.843L38.075,40z"},"children":[]}]}]}]}]}]}]}]};exports.hashtag=hashtag;var heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"HEART_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HEART"},"children":[{"name":"g","attribs":{"id":"HEART"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M58.729,9.272C55.328,5.873,50.809,4,46,4s-8.662,1.727-12.061,5.126c-0.002,0.002-0.004,0.003-0.006,0.005l-0.002,0.001\r\n\t\t\t\tL32,11.565l-1.932-2.286c-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4\r\n\t\t\t\tS8.672,5.873,5.272,9.272C1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.816\r\n\t\t\t\tC29.911,59.574,30.933,60,32,60c1.066,0,2.089-0.426,2.84-1.184l23.893-24.092C62.129,31.325,64,26.806,64,22\r\n\t\t\t\tC64,17.192,62.128,12.672,58.729,9.272z"},"children":[{"name":"path","attribs":{"d":"M58.729,9.272C55.328,5.873,50.809,4,46,4s-8.662,1.727-12.061,5.126c-0.002,0.002-0.004,0.003-0.006,0.005l-0.002,0.001\r\n\t\t\t\tL32,11.565l-1.932-2.286c-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4\r\n\t\t\t\tS8.672,5.873,5.272,9.272C1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.816\r\n\t\t\t\tC29.911,59.574,30.933,60,32,60c1.066,0,2.089-0.426,2.84-1.184l23.893-24.092C62.129,31.325,64,26.806,64,22\r\n\t\t\t\tC64,17.192,62.128,12.672,58.729,9.272z"},"children":[]}]}]}]}]}]}]}]};exports.heart=heart;var home={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"HOME_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HOME"},"children":[{"name":"g","attribs":{"id":"HOME"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39z M27,51H15V39h12V51z M63.189,31.96\r\n\t\t\t\tl0.006-0.007L52,20.757V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v2.757L34.195,2.953l-0.002,0.002\r\n\t\t\t\tc-0.478-0.512-1.131-0.857-1.865-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2H32c-0.85,0-1.616,0.354-2.162,0.922L0.922,31.838\r\n\t\t\t\tC0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001l0.077,0.072V9.32\r\n\t\t\t\tl26.877,26.877l0.007-0.008C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3C64,33.21,63.688,32.496,63.189,31.96z"},"children":[{"name":"path","attribs":{"d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39z M27,51H15V39h12V51z M63.189,31.96\r\n\t\t\t\tl0.006-0.007L52,20.757V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v2.757L34.195,2.953l-0.002,0.002\r\n\t\t\t\tc-0.478-0.512-1.131-0.857-1.865-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2H32c-0.85,0-1.616,0.354-2.162,0.922L0.922,31.838\r\n\t\t\t\tC0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001l0.077,0.072V9.32\r\n\t\t\t\tl26.877,26.877l0.007-0.008C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3C64,33.21,63.688,32.496,63.189,31.96z"},"children":[]}]}]}]}]}]}]}]};exports.home=home;var imac={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"IMAC_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAC"},"children":[{"name":"g","attribs":{"id":"IMAC"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]}]};exports.imac=imac;var image={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"IMAGE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAGE"},"children":[{"name":"g","attribs":{"id":"IMAGE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M40,15L40,15h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V13l0,0V9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4\r\n\t\t\t\tl0,0V40l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3v9h-9l0,0c-1.657,0-3,1.343-3,3S38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3l0,0h-9v-9l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v11l0,0v4H24L24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tl0,0v-9h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H9v4l0,0V24L9,24z"},"children":[{"name":"path","attribs":{"d":"M40,15L40,15h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V13l0,0V9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4\r\n\t\t\t\tl0,0V40l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3v9h-9l0,0c-1.657,0-3,1.343-3,3S38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3l0,0h-9v-9l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v11l0,0v4H24L24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tl0,0v-9h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H9v4l0,0V24L9,24z"},"children":[]}]}]}]}]}]}]}]};exports.image=image;var inbox={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"INBOX_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX"},"children":[{"name":"g","attribs":{"id":"INBOX"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.279,9,53,9H11c-1.28,0-2.365,0.806-2.796,1.935\r\n\t\t\t\tl-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V33\r\n\t\t\t\tC64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h37.865\r\n\t\t\t\tl5.715,15H47z"},"children":[{"name":"path","attribs":{"d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.279,9,53,9H11c-1.28,0-2.365,0.806-2.796,1.935\r\n\t\t\t\tl-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V33\r\n\t\t\t\tC64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h37.865\r\n\t\t\t\tl5.715,15H47z"},"children":[]}]}]}]}]}]}]}]};exports.inbox=inbox;var inbox_in={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14H38v6h12.932l5.715,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15H26v-6\r\n\t\t\t\tH11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC64,37.621,63.93,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37s1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tC41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14H38v6h12.932l5.715,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15H26v-6\r\n\t\t\t\tH11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC64,37.621,63.93,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]}]};exports.inbox_in=inbox_in;var inbox_out={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3s3-1.343,3-3V15.243l1.879,1.879\r\n\t\t\t\tC37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,5.336,32.829,5,32,5\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15C22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14h-8.102C44.954,14.327,45,14.658,45,15c0,2.09-1.07,3.926-2.691,5h8.623l5.715,15H47\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623C20.071,18.926,19,17.09,19,15\r\n\t\t\t\tc0-0.342,0.046-0.673,0.101-1H11l0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.93,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3s3-1.343,3-3V15.243l1.879,1.879\r\n\t\t\t\tC37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,5.336,32.829,5,32,5\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15C22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941\r\n\t\t\t\tC55.406,14.827,54.3,14,53,14h-8.102C44.954,14.327,45,14.658,45,15c0,2.09-1.07,3.926-2.691,5h8.623l5.715,15H47\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623C20.071,18.926,19,17.09,19,15\r\n\t\t\t\tc0-0.342,0.046-0.673,0.101-1H11l0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.93,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]}]};exports.inbox_out=inbox_out;var instagram={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"instagram_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"instagram"},"children":[{"name":"g","attribs":{"id":"instagram"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8C64,3.582,60.418,0,56,0z M19.673,30.673\r\n\t\t\t\tc0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92c0.029-0.136,0.069-0.267,0.103-0.401\r\n\t\t\t\tc0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389c0.1-0.272,0.204-0.541,0.322-0.804\r\n\t\t\t\tc0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2c4.988,0,9.277,2.953,11.246,7.2h0.011\r\n\t\t\t\tc0.021,0.045,0.035,0.092,0.056,0.137c0.117,0.263,0.222,0.532,0.321,0.804c0.048,0.13,0.099,0.257,0.142,0.389\r\n\t\t\t\tc0.092,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.104,0.401c0.064,0.302,0.109,0.61,0.152,0.92\r\n\t\t\t\tc0.018,0.125,0.043,0.247,0.058,0.374C44.373,31.109,44.4,31.551,44.4,32c0,6.85-5.553,12.4-12.4,12.4\r\n\t\t\t\tc-6.848,0-12.4-5.553-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6c0,1.768-1.433,3.2-3.2,3.2H10.4\r\n\t\t\t\tc-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32c0,10.825,8.775,19.6,19.6,19.6S51.6,42.825,51.6,32\r\n\t\t\t\tc0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8c0,1.767-1.433,3.2-3.2,3.2H47.2c-1.767,0-3.2-1.433-3.2-3.2v-6.4\r\n\t\t\t\tc0-1.767,1.434-3.2,3.2-3.2H53.6c1.768,0,3.2,1.432,3.2,3.2V16.8z"},"children":[{"name":"path","attribs":{"d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8C64,3.582,60.418,0,56,0z M19.673,30.673\r\n\t\t\t\tc0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92c0.029-0.136,0.069-0.267,0.103-0.401\r\n\t\t\t\tc0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389c0.1-0.272,0.204-0.541,0.322-0.804\r\n\t\t\t\tc0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2c4.988,0,9.277,2.953,11.246,7.2h0.011\r\n\t\t\t\tc0.021,0.045,0.035,0.092,0.056,0.137c0.117,0.263,0.222,0.532,0.321,0.804c0.048,0.13,0.099,0.257,0.142,0.389\r\n\t\t\t\tc0.092,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.104,0.401c0.064,0.302,0.109,0.61,0.152,0.92\r\n\t\t\t\tc0.018,0.125,0.043,0.247,0.058,0.374C44.373,31.109,44.4,31.551,44.4,32c0,6.85-5.553,12.4-12.4,12.4\r\n\t\t\t\tc-6.848,0-12.4-5.553-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6c0,1.768-1.433,3.2-3.2,3.2H10.4\r\n\t\t\t\tc-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32c0,10.825,8.775,19.6,19.6,19.6S51.6,42.825,51.6,32\r\n\t\t\t\tc0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8c0,1.767-1.433,3.2-3.2,3.2H47.2c-1.767,0-3.2-1.433-3.2-3.2v-6.4\r\n\t\t\t\tc0-1.767,1.434-3.2,3.2-3.2H53.6c1.768,0,3.2,1.432,3.2,3.2V16.8z"},"children":[]}]}]}]}]}]}]}]};exports.instagram=instagram;var ipad={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"IPAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPAD"},"children":[{"name":"g","attribs":{"id":"IPAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M32,59\r\n\t\t\t\tc-1.105,0-2-0.896-2-2s0.895-2,2-2c1.105,0,2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[{"name":"path","attribs":{"d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M32,59\r\n\t\t\t\tc-1.105,0-2-0.896-2-2s0.895-2,2-2c1.105,0,2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[]}]}]}]}]}]}]}]};exports.ipad=ipad;var iphone={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"IPHONE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPHONE"},"children":[{"name":"g","attribs":{"id":"IPHONE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3V6C49,4.343,47.657,3,46,3z M32,58\r\n\t\t\t\tc-1.105,0-2-0.895-2-2s0.895-2,2-2c1.105,0,2,0.895,2,2S33.105,58,32,58z M46,51H18V9h28V51z"},"children":[{"name":"path","attribs":{"d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3V6C49,4.343,47.657,3,46,3z M32,58\r\n\t\t\t\tc-1.105,0-2-0.895-2-2s0.895-2,2-2c1.105,0,2,0.895,2,2S33.105,58,32,58z M46,51H18V9h28V51z"},"children":[]}]}]}]}]}]}]}]};exports.iphone=iphone;var layers={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LAYERS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,42c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.005\r\n\t\t\tc-0.004,0.002-0.009,0.003-0.013,0.005L32,53.753L4.174,42.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001\r\n\t\t\tC3.793,42.083,3.406,42,3,42c-1.657,0-3,1.343-3,3c0,1.25,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.004,0.013,0.005l0.013,0.005l0.001-0.001C31.207,59.917,31.594,60,32,60c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,47.32,64,46.25,64,45\r\n\t\t\tC64,43.343,62.657,42,61,42z M1.854,21.771l0,0.001l28.974,11.989c0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001\r\n\t\t\tC31.207,33.917,31.594,34,32,34c0.406,0,0.793-0.083,1.147-0.229l0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005\r\n\t\t\tl28.973-11.989l0-0.001C63.234,21.32,64,20.25,64,19c0-1.25-0.766-2.32-1.853-2.771l0-0.001L33.174,4.239\r\n\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001C32.793,4.083,32.406,4,32,4c-0.406,0-0.793,0.083-1.146,0.229\r\n\t\t\tl-0.001-0.001L30.84,4.233c-0.004,0.002-0.009,0.004-0.013,0.005L1.853,16.228l0,0.001C0.766,16.68,0,17.75,0,19\r\n\t\t\tC0,20.25,0.766,21.32,1.854,21.771z M61,29c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.006\r\n\t\t\tc-0.004,0.002-0.009,0.004-0.013,0.005L32,40.753L4.174,29.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.006l-0.001,0.001\r\n\t\t\tC3.793,29.083,3.406,29,3,29c-1.657,0-3,1.343-3,3c0,1.251,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001C31.207,46.917,31.594,47,32,47c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,34.32,64,33.251,64,32\r\n\t\t\tC64,30.343,62.657,29,61,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,42c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.005\r\n\t\t\tc-0.004,0.002-0.009,0.003-0.013,0.005L32,53.753L4.174,42.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001\r\n\t\t\tC3.793,42.083,3.406,42,3,42c-1.657,0-3,1.343-3,3c0,1.25,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.004,0.013,0.005l0.013,0.005l0.001-0.001C31.207,59.917,31.594,60,32,60c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,47.32,64,46.25,64,45\r\n\t\t\tC64,43.343,62.657,42,61,42z M1.854,21.771l0,0.001l28.974,11.989c0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001\r\n\t\t\tC31.207,33.917,31.594,34,32,34c0.406,0,0.793-0.083,1.147-0.229l0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005\r\n\t\t\tl28.973-11.989l0-0.001C63.234,21.32,64,20.25,64,19c0-1.25-0.766-2.32-1.853-2.771l0-0.001L33.174,4.239\r\n\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001C32.793,4.083,32.406,4,32,4c-0.406,0-0.793,0.083-1.146,0.229\r\n\t\t\tl-0.001-0.001L30.84,4.233c-0.004,0.002-0.009,0.004-0.013,0.005L1.853,16.228l0,0.001C0.766,16.68,0,17.75,0,19\r\n\t\t\tC0,20.25,0.766,21.32,1.854,21.771z M61,29c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.006\r\n\t\t\tc-0.004,0.002-0.009,0.004-0.013,0.005L32,40.753L4.174,29.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.006l-0.001,0.001\r\n\t\t\tC3.793,29.083,3.406,29,3,29c-1.657,0-3,1.343-3,3c0,1.251,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001C31.207,46.917,31.594,47,32,47c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,34.32,64,33.251,64,32\r\n\t\t\tC64,30.343,62.657,29,61,29z"},"children":[]}]}]}]}]}]};exports.layers=layers;var line_graph={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LINE_GRAPH_2_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0,0.003,0.002,0.005,0.003l0.011,0.007l0.001-0.001\r\n\t\t\t\tC33.812,41.812,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979c0,0,0.001,0,0.001-0.001l0.03-0.021\r\n\t\t\t\tl-0.002-0.003C63.486,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3c-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84\r\n\t\t\t\tl-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007l-0.001,0.001C21.187,26.187,20.616,26,20,26\r\n\t\t\t\tc-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,53,61,53z"},"children":[{"name":"path","attribs":{"d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0,0.003,0.002,0.005,0.003l0.011,0.007l0.001-0.001\r\n\t\t\t\tC33.812,41.812,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979c0,0,0.001,0,0.001-0.001l0.03-0.021\r\n\t\t\t\tl-0.002-0.003C63.486,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3c-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84\r\n\t\t\t\tl-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007l-0.001,0.001C21.187,26.187,20.616,26,20,26\r\n\t\t\t\tc-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,53,61,53z"},"children":[]}]}]}]}]}]}]}]};exports.line_graph=line_graph;var line_graph_square={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LINE_GRAPH_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.312,8.875c0.488,0.344,1.082,0.545,1.724,0.545\r\n\t\t\t\tc0.656,0,1.263-0.211,1.757-0.568h0.001l17-12l-0.001-0.001C54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.662,0-1.273,0.215-1.77,0.578L34.953,36.373l-13.261-8.841l-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514\r\n\t\t\t\tc-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002C9.573,33.006,9,33.953,9,35.035\r\n\t\t\t\tC9,36.691,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.312,8.875c0.488,0.344,1.082,0.545,1.724,0.545\r\n\t\t\t\tc0.656,0,1.263-0.211,1.757-0.568h0.001l17-12l-0.001-0.001C54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.662,0-1.273,0.215-1.77,0.578L34.953,36.373l-13.261-8.841l-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514\r\n\t\t\t\tc-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002C9.573,33.006,9,33.953,9,35.035\r\n\t\t\t\tC9,36.691,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]}]};exports.line_graph_square=line_graph_square;var link={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LINK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINK"},"children":[{"name":"g","attribs":{"id":"LINK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26.461,45.766c-0.056,0.062-0.096,0.131-0.155,0.19l-8.349,8.37c-2.306,2.311-6.043,2.311-8.349,0\r\n\t\t\t\tc-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.029,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05L5.433,41.77c-4.611,4.623-4.611,12.119,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.369c3.091-3.101,4.1-7.49,3.044-11.44L26.461,45.766z M58.48,5.401c-4.61-4.623-12.086-4.623-16.696,0l-8.349,8.37\r\n\t\t\t\tc-3.083,3.09-4.094,7.462-3.055,11.403l7.221-7.221l0.006,0.006c0.002-0.001,0.002-0.002,0.002-0.002l8.35-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.35,0c2.305,2.311,2.305,6.059,0,8.37l-8.35,8.37c-0.098,0.098-0.211,0.167-0.312,0.256l-6.971,6.97\r\n\t\t\t\tc3.953,1.078,8.354,0.071,11.457-3.041l8.35-8.37C63.091,17.518,63.091,10.023,58.48,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.645,0.374-2.191,0.964L19.964,39.809C19.375,40.355,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.01l20-20l-0.01-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[{"name":"path","attribs":{"d":"M26.461,45.766c-0.056,0.062-0.096,0.131-0.155,0.19l-8.349,8.37c-2.306,2.311-6.043,2.311-8.349,0\r\n\t\t\t\tc-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.029,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05L5.433,41.77c-4.611,4.623-4.611,12.119,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.369c3.091-3.101,4.1-7.49,3.044-11.44L26.461,45.766z M58.48,5.401c-4.61-4.623-12.086-4.623-16.696,0l-8.349,8.37\r\n\t\t\t\tc-3.083,3.09-4.094,7.462-3.055,11.403l7.221-7.221l0.006,0.006c0.002-0.001,0.002-0.002,0.002-0.002l8.35-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.35,0c2.305,2.311,2.305,6.059,0,8.37l-8.35,8.37c-0.098,0.098-0.211,0.167-0.312,0.256l-6.971,6.97\r\n\t\t\t\tc3.953,1.078,8.354,0.071,11.457-3.041l8.35-8.37C63.091,17.518,63.091,10.023,58.48,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.645,0.374-2.191,0.964L19.964,39.809C19.375,40.355,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.01l20-20l-0.01-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[]}]}]}]}]}]}]}]};exports.link=link;var linkedin={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"linkedin_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"linkedin"},"children":[{"name":"g","attribs":{"id":"linkedin"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0.798,62.986h14.315V22.368H0.798V62.986z M48.434,21.087c-5.925,0-9.192,1.972-12.953,6.749v-5.469H21.189v40.619\r\n\t\t\t\tH35.48V40.914c0-4.658,2.24-9.214,7.596-9.214s6.673,4.555,6.673,9.103v22.184H64v-23.09C64,23.854,54.361,21.087,48.434,21.087z\r\n\t\t\t\t M7.982,2.013C3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[{"name":"path","attribs":{"d":"M0.798,62.986h14.315V22.368H0.798V62.986z M48.434,21.087c-5.925,0-9.192,1.972-12.953,6.749v-5.469H21.189v40.619\r\n\t\t\t\tH35.48V40.914c0-4.658,2.24-9.214,7.596-9.214s6.673,4.555,6.673,9.103v22.184H64v-23.09C64,23.854,54.361,21.087,48.434,21.087z\r\n\t\t\t\t M7.982,2.013C3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[]}]}]}]}]}]}]}]};exports.linkedin=linkedin;var list={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LIST_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST"},"children":[{"name":"g","attribs":{"id":"LIST"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,19h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,29,61,29z M61,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,45,61,45z"},"children":[{"name":"path","attribs":{"d":"M3,19h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,29,61,29z M61,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,45,61,45z"},"children":[]}]}]}]}]}]}]}]};exports.list=list;var list_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LIST_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST_2"},"children":[{"name":"g","attribs":{"id":"LIST_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M9,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3S10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3S62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3s-1.343-3-3-3H21.001H21c-1.657,0-3,1.343-3,3S19.343,19,21,19z M9,13L9,13H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h6c1.657,0,3-1.343,3-3S10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h40\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,45,61,45z"},"children":[{"name":"path","attribs":{"d":"M9,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3S10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3S62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3s-1.343-3-3-3H21.001H21c-1.657,0-3,1.343-3,3S19.343,19,21,19z M9,13L9,13H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h6c1.657,0,3-1.343,3-3S10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h40\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,45,61,45z"},"children":[]}]}]}]}]}]}]}]};exports.list_2=list_2;var loading={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LOADING"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M17,44c-0.828,0-1.578,0.336-2.121,0.879l-6,6C8.336,51.422,8,52.172,8,53\r\n\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l6-6C19.664,48.578,20,47.828,20,47C20,45.343,18.657,44,17,44z M14,32\r\n\t\t\tc0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C12.657,35,14,33.657,14,32z M13.121,8.879\r\n\t\t\tC12.578,8.336,11.828,8,11,8c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l6,6C15.422,19.664,16.172,20,17,20\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L13.121,8.879z M47,20c0.828,0,1.578-0.336,2.121-0.879l6-6\r\n\t\t\tC55.664,12.578,56,11.828,56,11c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-6,6C44.336,15.422,44,16.172,44,17\r\n\t\t\tC44,18.657,45.343,20,47,20z M49.121,44.879C48.579,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\tl6,6C51.422,55.664,52.172,56,53,56c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M32,50\r\n\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C35,51.343,33.657,50,32,50z M61,29h-8c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z M32,0c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\ts3-1.343,3-3V3C35,1.343,33.657,0,32,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M17,44c-0.828,0-1.578,0.336-2.121,0.879l-6,6C8.336,51.422,8,52.172,8,53\r\n\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l6-6C19.664,48.578,20,47.828,20,47C20,45.343,18.657,44,17,44z M14,32\r\n\t\t\tc0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C12.657,35,14,33.657,14,32z M13.121,8.879\r\n\t\t\tC12.578,8.336,11.828,8,11,8c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l6,6C15.422,19.664,16.172,20,17,20\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L13.121,8.879z M47,20c0.828,0,1.578-0.336,2.121-0.879l6-6\r\n\t\t\tC55.664,12.578,56,11.828,56,11c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-6,6C44.336,15.422,44,16.172,44,17\r\n\t\t\tC44,18.657,45.343,20,47,20z M49.121,44.879C48.579,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\tl6,6C51.422,55.664,52.172,56,53,56c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M32,50\r\n\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C35,51.343,33.657,50,32,50z M61,29h-8c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z M32,0c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\ts3-1.343,3-3V3C35,1.343,33.657,0,32,0z"},"children":[]}]}]}]}]}]};exports.loading=loading;var location={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LOCATION"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,3c0-1.657-1.343-3-3-3c-0.375,0-0.73,0.077-1.061,0.202l-0.003-0.007l-58,22\r\n\t\t\tl0.003,0.008C0.808,22.632,0,23.718,0,25c0,1.414,0.981,2.592,2.298,2.909l-0.002,0.007l27.218,6.57l6.57,27.218l0.007-0.002\r\n\t\t\tC36.409,63.019,37.586,64,39,64c1.282,0,2.368-0.808,2.797-1.939l0.008,0.003l22-58l-0.019-0.007C63.913,3.726,64,3.376,64,3z\r\n\t\t\t M39.638,50.859l-4.722-19.562l-0.007,0.002c-0.263-1.09-1.119-1.941-2.207-2.205l0.002-0.01l-19.562-4.722L55.831,8.169\r\n\t\t\tL39.638,50.859z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,3c0-1.657-1.343-3-3-3c-0.375,0-0.73,0.077-1.061,0.202l-0.003-0.007l-58,22\r\n\t\t\tl0.003,0.008C0.808,22.632,0,23.718,0,25c0,1.414,0.981,2.592,2.298,2.909l-0.002,0.007l27.218,6.57l6.57,27.218l0.007-0.002\r\n\t\t\tC36.409,63.019,37.586,64,39,64c1.282,0,2.368-0.808,2.797-1.939l0.008,0.003l22-58l-0.019-0.007C63.913,3.726,64,3.376,64,3z\r\n\t\t\t M39.638,50.859l-4.722-19.562l-0.007,0.002c-0.263-1.09-1.119-1.941-2.207-2.205l0.002-0.01l-19.562-4.722L55.831,8.169\r\n\t\t\tL39.638,50.859z"},"children":[]}]}]}]}]}]};exports.location=location;var lock={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LOCK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOCK"},"children":[{"name":"g","attribs":{"id":"LOCK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46\r\n\t\t\t\tc1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832\r\n\t\t\t\tc-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z M44,32H20V18\r\n\t\t\t\tc0-6.627,5.373-12,12-12s12,5.373,12,12V32z"},"children":[{"name":"path","attribs":{"d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46\r\n\t\t\t\tc1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832\r\n\t\t\t\tc-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z M44,32H20V18\r\n\t\t\t\tc0-6.627,5.373-12,12-12s12,5.373,12,12V32z"},"children":[]}]}]}]}]}]}]}]};exports.lock=lock;var login={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LOGIN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGIN"},"children":[{"name":"g","attribs":{"id":"LOGIN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M39.007,34.23C39.617,33.682,40,32.885,40,32s-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.189,3.77\r\n\t\t\t\tl0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z\r\n\t\t\t\t M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.342-3,3\r\n\t\t\t\tc0,1.656,1.343,3,3,3h15c1.657,0,3-1.344,3-3V31.937c0-0.001,0-0.002,0-0.003C56,31.934,56,31.933,56,31.932z"},"children":[{"name":"path","attribs":{"d":"M39.007,34.23C39.617,33.682,40,32.885,40,32s-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.189,3.77\r\n\t\t\t\tl0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z\r\n\t\t\t\t M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.342-3,3\r\n\t\t\t\tc0,1.656,1.343,3,3,3h15c1.657,0,3-1.344,3-3V31.937c0-0.001,0-0.002,0-0.003C56,31.934,56,31.933,56,31.932z"},"children":[]}]}]}]}]}]}]}]};exports.login=login;var logout={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"LOGOUT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGOUT"},"children":[{"name":"g","attribs":{"id":"LOGOUT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C44.475,20.292,43.771,20,43,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h18.182l-4.188,3.77l0,0\r\n\t\t\t\tC40.384,39.32,40,40.115,40,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.682,56,32.885,56,32z\r\n\t\t\t\t M26,52H14V12h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tS27.657,52,26,52z"},"children":[{"name":"path","attribs":{"d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C44.475,20.292,43.771,20,43,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h18.182l-4.188,3.77l0,0\r\n\t\t\t\tC40.384,39.32,40,40.115,40,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.682,56,32.885,56,32z\r\n\t\t\t\t M26,52H14V12h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tS27.657,52,26,52z"},"children":[]}]}]}]}]}]}]}]};exports.logout=logout;var macbook={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MACBOOK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MACBOOK"},"children":[{"name":"g","attribs":{"id":"MACBOOK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49\r\n\t\t\t\tH25v-2h14V49z M54,42H10V16h44V42z"},"children":[{"name":"path","attribs":{"d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49\r\n\t\t\t\tH25v-2h14V49z M54,42H10V16h44V42z"},"children":[]}]}]}]}]}]}]}]};exports.macbook=macbook;var magnifying_glass={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.584,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z"},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.584,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z"},"children":[]}]}]}]}]}]}]}]};exports.magnifying_glass=magnifying_glass;var magnifying_glass_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3s1.343,3,3,3h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3s1.343,3,3,3h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]}]};exports.magnifying_glass_add=magnifying_glass_add;var magnifying_glass_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"d":"M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]}]};exports.magnifying_glass_remove=magnifying_glass_remove;var mail={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAIL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL"},"children":[{"name":"g","attribs":{"id":"MAIL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.002,10.78C62.471,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78L32,35L63.002,10.78z M0.894,10.866\r\n\t\t\t\tC0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z M32,41l-8.136-7.881L0.943,53.175\r\n\t\t\t\tC1.481,53.684,2.202,54,3,54h58c0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,41z M63.105,10.866L43.622,29.741\r\n\t\t\t\tl19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.105,10.866z"},"children":[{"name":"path","attribs":{"d":"M63.002,10.78C62.471,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78L32,35L63.002,10.78z M0.894,10.866\r\n\t\t\t\tC0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z M32,41l-8.136-7.881L0.943,53.175\r\n\t\t\t\tC1.481,53.684,2.202,54,3,54h58c0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,41z M63.105,10.866L43.622,29.741\r\n\t\t\t\tl19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.105,10.866z"},"children":[]}]}]}]}]}]}]}]};exports.mail=mail;var mail_incoming={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879l7-7C41.664,21.579,42,20.829,42,20\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L29.879,29.122z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H44.168C44.684,17.886,45,18.902,45,20c0,1.657-0.672,3.157-1.757,4.243l-7,7\r\n\t\t\t\tC35.157,32.328,33.657,33,32,33s-3.157-0.672-4.243-1.757l-7-7C19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.105,17.866z M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58c0.798,0,1.52-0.316,2.057-0.825\r\n\t\t\t\tl-22.92-20.056L32,48z"},"children":[{"name":"path","attribs":{"d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879l7-7C41.664,21.579,42,20.829,42,20\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L29.879,29.122z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H44.168C44.684,17.886,45,18.902,45,20c0,1.657-0.672,3.157-1.757,4.243l-7,7\r\n\t\t\t\tC35.157,32.328,33.657,33,32,33s-3.157-0.672-4.243-1.757l-7-7C19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.105,17.866z M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58c0.798,0,1.52-0.316,2.057-0.825\r\n\t\t\t\tl-22.92-20.056L32,48z"},"children":[]}]}]}]}]}]}]}]};exports.mail_incoming=mail_incoming;var mail_outgoing={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M25,16\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243l1.879,1.879\r\n\t\t\t\tC37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,3.336,32.828,3,32,3\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.674,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3c-0.773,0-1.47,0.3-2.002,0.78L32,42\r\n\t\t\t\tL63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20\r\n\t\t\t\tC64,19.165,63.657,18.41,63.105,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,48z"},"children":[{"name":"path","attribs":{"d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M25,16\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243l1.879,1.879\r\n\t\t\t\tC37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,3.336,32.828,3,32,3\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.674,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3c-0.773,0-1.47,0.3-2.002,0.78L32,42\r\n\t\t\t\tL63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20\r\n\t\t\t\tC64,19.165,63.657,18.41,63.105,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,48z"},"children":[]}]}]}]}]}]}]}]};exports.mail_outgoing=mail_outgoing;var map={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP"},"children":[{"name":"g","attribs":{"id":"MAP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M60.866,15.668L60.866,15.668l-0.024-0.02c-0.072-0.058-0.145-0.117-0.224-0.168L44.867,3.667l-0.001,0.001\r\n\t\t\t\tC44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667L6.866,3.668\r\n\t\t\t\tC6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C19.692,60.762,20.315,61,21,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.389l0.003,0.007l20.272-11.058l14.543,10.905l0.012-0.016C57.766,60.795,58.357,61,59,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017l10,7.5V51.986z M40,44.212l-16,8.728\r\n\t\t\t\tV19.79l16-8.727V44.212z M56,52.018l-10-7.5v-32.5l10,7.5V52.018z"},"children":[{"name":"path","attribs":{"d":"M60.866,15.668L60.866,15.668l-0.024-0.02c-0.072-0.058-0.145-0.117-0.224-0.168L44.867,3.667l-0.001,0.001\r\n\t\t\t\tC44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667L6.866,3.668\r\n\t\t\t\tC6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C19.692,60.762,20.315,61,21,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.389l0.003,0.007l20.272-11.058l14.543,10.905l0.012-0.016C57.766,60.795,58.357,61,59,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017l10,7.5V51.986z M40,44.212l-16,8.728\r\n\t\t\t\tV19.79l16-8.727V44.212z M56,52.018l-10-7.5v-32.5l10,7.5V52.018z"},"children":[]}]}]}]}]}]}]}]};exports.map=map;var map_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.072-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.072-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]}]};exports.map_add=map_add;var map_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.529,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z\r\n\t\t\t\t M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56.121,49.879C56.664,50.422,57,51.172,57,52\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879C47.578,54.664,46.828,55,46,55\r\n\t\t\t\tc-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879C43.336,45.578,43,44.829,43,44\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879C52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[{"name":"path","attribs":{"d":"M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.529,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z\r\n\t\t\t\t M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56.121,49.879C56.664,50.422,57,51.172,57,52\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879C47.578,54.664,46.828,55,46,55\r\n\t\t\t\tc-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879C43.336,45.578,43,44.829,43,44\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879C52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[]}]}]}]}]}]}]}]};exports.map_delete=map_delete;var map_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAP__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M58.121,47.121l-8,8\r\n\t\t\t\tC49.578,55.664,48.828,56,48,56s-1.578-0.336-2.121-0.879l-4-4C41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3\r\n\t\t\t\tc0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879C54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.004,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M58.121,47.121l-8,8\r\n\t\t\t\tC49.578,55.664,48.828,56,48,56s-1.578-0.336-2.121-0.879l-4-4C41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3\r\n\t\t\t\tc0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879C54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.004,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]}]};exports.map_ok=map_ok;var map_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3s1.343-3,3-3\r\n\t\t\t\th12c1.657,0,3,1.343,3,3S57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"d":"M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3s1.343-3,3-3\r\n\t\t\t\th12c1.657,0,3,1.343,3,3S57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]}]};exports.map_remove=map_remove;var microphone={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MICROPHONE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE"},"children":[{"name":"g","attribs":{"id":"MICROPHONE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12S20,5.373,20,12v16C20,34.628,25.373,40,32,40z M54,29.023\r\n\t\t\t\tc0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0\r\n\t\t\t\tc-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.295,19,21.752V58H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225C45.727,49.318,54,40.148,54,29.023z"},"children":[{"name":"path","attribs":{"d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12S20,5.373,20,12v16C20,34.628,25.373,40,32,40z M54,29.023\r\n\t\t\t\tc0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0\r\n\t\t\t\tc-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.295,19,21.752V58H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225C45.727,49.318,54,40.148,54,29.023z"},"children":[]}]}]}]}]}]}]}]};exports.microphone=microphone;var microphone_off={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF"},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12.631,39.404l5.051-3.301C16.617,33.961,16.002,31.555,16,29l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023C10,32.785,10.964,36.312,12.631,39.404z M44,18.895V12\r\n\t\t\t\tc0-6.627-5.373-12-12-12S20,5.373,20,12v16c0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.246v-0.001l-0.018,0.011l0,0L5.079,47.945l0,0C4.67,48.214,4.4,48.675,4.4,49.2\r\n\t\t\t\tc0,0.829,0.672,1.5,1.5,1.5c0.303,0,0.585-0.091,0.821-0.246v0.001l0.017-0.012l0,0L58.82,16.355v-0.001\r\n\t\t\t\tC59.23,16.087,59.5,15.625,59.5,15.1z M43.859,29.739l-15.025,9.825C29.844,39.841,30.902,40,32,40\r\n\t\t\t\tC38.035,40,43.016,35.54,43.859,29.739z M51,26c-1.657,0-3,1.343-3,3l0,0c-0.004,8.092-6.018,14.759-13.816,15.829\r\n\t\t\t\tc-0.24,0.034-0.48,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078v0.002c-0.04,0-0.078,0.005-0.118,0.005\r\n\t\t\t\tc-2.959,0-5.72-0.816-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.44V58H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225c10.727-1.457,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015\r\n\t\t\t\tC53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[{"name":"path","attribs":{"d":"M12.631,39.404l5.051-3.301C16.617,33.961,16.002,31.555,16,29l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023C10,32.785,10.964,36.312,12.631,39.404z M44,18.895V12\r\n\t\t\t\tc0-6.627-5.373-12-12-12S20,5.373,20,12v16c0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.246v-0.001l-0.018,0.011l0,0L5.079,47.945l0,0C4.67,48.214,4.4,48.675,4.4,49.2\r\n\t\t\t\tc0,0.829,0.672,1.5,1.5,1.5c0.303,0,0.585-0.091,0.821-0.246v0.001l0.017-0.012l0,0L58.82,16.355v-0.001\r\n\t\t\t\tC59.23,16.087,59.5,15.625,59.5,15.1z M43.859,29.739l-15.025,9.825C29.844,39.841,30.902,40,32,40\r\n\t\t\t\tC38.035,40,43.016,35.54,43.859,29.739z M51,26c-1.657,0-3,1.343-3,3l0,0c-0.004,8.092-6.018,14.759-13.816,15.829\r\n\t\t\t\tc-0.24,0.034-0.48,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078v0.002c-0.04,0-0.078,0.005-0.118,0.005\r\n\t\t\t\tc-2.959,0-5.72-0.816-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.44V58H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225c10.727-1.457,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015\r\n\t\t\t\tC53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[]}]}]}]}]}]}]}]};exports.microphone_off=microphone_off;var microsoft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"microsoft_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"microsoft"},"children":[{"name":"g","attribs":{"id":"microsoft"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486c-0.383,0-0.764,0.014-1.149,0.049\r\n\t\t\t\tc-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814L0.002,54.346c4.476-1.945,8.093-2.721,11.133-2.721\r\n\t\t\t\tc5.01,0,8.484,2.084,11.763,4.436c1.217-4.441,5.348-19.635,6.133-22.527C28.143,32.939,27.25,32.344,26.307,31.796z\r\n\t\t\t\t M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382c1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548\r\n\t\t\t\tc-1.409-0.359-3.003-0.585-4.766-0.585h-0.069c-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86\r\n\t\t\t\tc4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.561,13.559c-6.488,0-10.767-2.974-12.658-4.559l-5.985,22.306\r\n\t\t\t\tc0.017,0.019,0.043,0.035,0.063,0.048c3.291,2.371,7.572,4.287,12.732,4.287c3.412,0,7.204-0.836,11.348-2.94v-0.03\r\n\t\t\t\tc0.01,0,0.021-0.008,0.037-0.014l5.901-21.899C59.641,12.807,55.824,13.559,52.561,13.559z M32.568,36.329l-5.904,22.085\r\n\t\t\t\tc-0.009-0.005,6.904,4.584,12.089,4.584c3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.291-11.185,2.291\r\n\t\t\t\tC38.529,40.812,34.367,37.874,32.568,36.329z"},"children":[{"name":"path","attribs":{"d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486c-0.383,0-0.764,0.014-1.149,0.049\r\n\t\t\t\tc-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814L0.002,54.346c4.476-1.945,8.093-2.721,11.133-2.721\r\n\t\t\t\tc5.01,0,8.484,2.084,11.763,4.436c1.217-4.441,5.348-19.635,6.133-22.527C28.143,32.939,27.25,32.344,26.307,31.796z\r\n\t\t\t\t M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382c1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548\r\n\t\t\t\tc-1.409-0.359-3.003-0.585-4.766-0.585h-0.069c-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86\r\n\t\t\t\tc4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.561,13.559c-6.488,0-10.767-2.974-12.658-4.559l-5.985,22.306\r\n\t\t\t\tc0.017,0.019,0.043,0.035,0.063,0.048c3.291,2.371,7.572,4.287,12.732,4.287c3.412,0,7.204-0.836,11.348-2.94v-0.03\r\n\t\t\t\tc0.01,0,0.021-0.008,0.037-0.014l5.901-21.899C59.641,12.807,55.824,13.559,52.561,13.559z M32.568,36.329l-5.904,22.085\r\n\t\t\t\tc-0.009-0.005,6.904,4.584,12.089,4.584c3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.291-11.185,2.291\r\n\t\t\t\tC38.529,40.812,34.367,37.874,32.568,36.329z"},"children":[]}]}]}]}]}]}]}]};exports.microsoft=microsoft;var minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MINUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MINUS"},"children":[{"name":"g","attribs":{"id":"MINUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[{"name":"path","attribs":{"d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[]}]}]}]}]}]}]}]};exports.minus=minus;var more={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MORE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE"},"children":[{"name":"g","attribs":{"id":"MORE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.314,2.687,6.001,6.001,6.001s6.001-2.687,6.001-6.001\r\n\t\t\t\tC19.001,28.687,16.315,26,13.001,26z M51.001,26C47.688,26,45,28.687,45,32.002c0,3.314,2.688,6.001,6.001,6.001\r\n\t\t\t\ts6.001-2.687,6.001-6.001C57.001,28.687,54.314,26,51.001,26z M32.001,26C28.687,26,26,28.687,26,32.002\r\n\t\t\t\tc0,3.314,2.686,6.001,6.001,6.001c3.315,0,6.001-2.687,6.001-6.001C38.001,28.687,35.314,26,32.001,26z"},"children":[{"name":"path","attribs":{"d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.314,2.687,6.001,6.001,6.001s6.001-2.687,6.001-6.001\r\n\t\t\t\tC19.001,28.687,16.315,26,13.001,26z M51.001,26C47.688,26,45,28.687,45,32.002c0,3.314,2.688,6.001,6.001,6.001\r\n\t\t\t\ts6.001-2.687,6.001-6.001C57.001,28.687,54.314,26,51.001,26z M32.001,26C28.687,26,26,28.687,26,32.002\r\n\t\t\t\tc0,3.314,2.686,6.001,6.001,6.001c3.315,0,6.001-2.687,6.001-6.001C38.001,28.687,35.314,26,32.001,26z"},"children":[]}]}]}]}]}]}]}]};exports.more=more;var more_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MORE_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE_2"},"children":[{"name":"g","attribs":{"id":"MORE_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.313,2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001\r\n\t\t\t\tC38,28.687,35.312,26,31.998,26z M31.998,19.001C35.312,19.001,38,16.314,38,13c0-3.313-2.688-6-6.002-6\r\n\t\t\t\tc-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45c-3.314,0-6.001,2.688-6.001,6.001\r\n\t\t\t\ts2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001S35.312,45,31.998,45z"},"children":[{"name":"path","attribs":{"d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.313,2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001\r\n\t\t\t\tC38,28.687,35.312,26,31.998,26z M31.998,19.001C35.312,19.001,38,16.314,38,13c0-3.313-2.688-6-6.002-6\r\n\t\t\t\tc-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45c-3.314,0-6.001,2.688-6.001,6.001\r\n\t\t\t\ts2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001S35.312,45,31.998,45z"},"children":[]}]}]}]}]}]}]}]};exports.more_2=more_2;var moustache={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MOUSTACHE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MOUSTACHE"},"children":[{"name":"g","attribs":{"id":"MOUSTACHE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125c-5.254,0-7.725-8.839-15.935-8.839\r\n\t\t\t\tc-6.513,0-8.497,5.067-8.928,5.067s-2.415-5.067-8.927-5.067c-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125\r\n\t\t\t\tc-1.06,0.269,1.955,15.277,16.323,15.277c9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.183,7.238,15.504,7.238\r\n\t\t\t\tC61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[{"name":"path","attribs":{"d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125c-5.254,0-7.725-8.839-15.935-8.839\r\n\t\t\t\tc-6.513,0-8.497,5.067-8.928,5.067s-2.415-5.067-8.927-5.067c-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125\r\n\t\t\t\tc-1.06,0.269,1.955,15.277,16.323,15.277c9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.183,7.238,15.504,7.238\r\n\t\t\t\tC61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[]}]}]}]}]}]}]}]};exports.moustache=moustache;var music={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"MUSIC_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MUSIC"},"children":[{"name":"g","attribs":{"id":"MUSIC"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6\r\n\t\t\t\tV26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6V3\r\n\t\t\t\tC63,1.343,61.657,0,60,0z"},"children":[{"name":"path","attribs":{"d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6\r\n\t\t\t\tV26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6V3\r\n\t\t\t\tC63,1.343,61.657,0,60,0z"},"children":[]}]}]}]}]}]}]}]};exports.music=music;var notepad={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"NOTEPAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD"},"children":[{"name":"g","attribs":{"id":"NOTEPAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C29,10.657,30.343,12,32,12z M47,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5S51.881,54,50.5,54z M50,42H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,29,50,29z"},"children":[{"name":"path","attribs":{"d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C29,10.657,30.343,12,32,12z M47,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5S51.881,54,50.5,54z M50,42H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,29,50,29z"},"children":[]}]}]}]}]}]}]}]};exports.notepad=notepad;var notepad_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M60,52h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tS61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5\r\n\t\t\t\tC3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S11.343,23,13,23z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5s1.119-2.5,2.5-2.5h19\r\n\t\t\t\tc1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M39,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3\r\n\t\t\t\tS40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M60,52h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tS61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5\r\n\t\t\t\tC3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S11.343,23,13,23z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5s1.119-2.5,2.5-2.5h19\r\n\t\t\t\tc1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M39,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3\r\n\t\t\t\tS40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[]}]}]}]}]}]}]}]};exports.notepad_add=notepad_add;var notepad_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879\r\n\t\t\t\tC62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879\r\n\t\t\t\tC49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879\r\n\t\t\t\tC45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879\r\n\t\t\t\tC58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3c0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M43.757,56.758L45.516,55l-1.758-1.757\r\n\t\t\t\tC42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L54,46.516l1.757-1.759l0.015,0.017\r\n\t\t\t\tC56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832\r\n\t\t\t\tC42.316,63.114,42,62.1,42,61c0-1.659,0.682-3.146,1.773-4.227L43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h24\r\n\t\t\t\tc1.657,0,3,1.343,3,3S38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879\r\n\t\t\t\tC62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879\r\n\t\t\t\tC49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879\r\n\t\t\t\tC45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879\r\n\t\t\t\tC58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3c0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M43.757,56.758L45.516,55l-1.758-1.757\r\n\t\t\t\tC42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L54,46.516l1.757-1.759l0.015,0.017\r\n\t\t\t\tC56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832\r\n\t\t\t\tC42.316,63.114,42,62.1,42,61c0-1.659,0.682-3.146,1.773-4.227L43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h24\r\n\t\t\t\tc1.657,0,3,1.343,3,3S38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[]}]}]}]}]}]}]}]};exports.notepad_delete=notepad_delete;var notepad_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M46,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50c-0.828,0-1.578,0.336-2.121,0.879L52,56.758\r\n\t\t\t\tl-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53C63,51.343,61.657,50,60,50z\r\n\t\t\t\t M43.775,61.225C42.684,60.146,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.555l3.797-3.798\r\n\t\t\t\tC56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h41.516\r\n\t\t\t\tl-2.758-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z"},"children":[{"name":"path","attribs":{"d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M46,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50c-0.828,0-1.578,0.336-2.121,0.879L52,56.758\r\n\t\t\t\tl-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53C63,51.343,61.657,50,60,50z\r\n\t\t\t\t M43.775,61.225C42.684,60.146,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.555l3.797-3.798\r\n\t\t\t\tC56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h41.516\r\n\t\t\t\tl-2.758-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z"},"children":[]}]}]}]}]}]}]}]};exports.notepad_ok=notepad_ok;var notepad_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48\r\n\t\t\t\tC44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52\r\n\t\t\t\tz"},"children":[{"name":"path","attribs":{"d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48\r\n\t\t\t\tC44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52\r\n\t\t\t\tz"},"children":[]}]}]}]}]}]}]}]};exports.notepad_remove=notepad_remove;var pause={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PAUSE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PAUSE"},"children":[{"name":"g","attribs":{"id":"PAUSE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C29,20.343,27.657,19,26,19z M38,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[{"name":"path","attribs":{"d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C29,20.343,27.657,19,26,19z M38,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[]}]}]}]}]}]}]}]};exports.pause=pause;var paypal={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"paypal_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"paypal"},"children":[{"name":"g","attribs":{"id":"paypal"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018c1.145-1.061,2.006-2.423,2.369-3.916\r\n\t\t\t\tc0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65l-0.214,0.901L24.45,25.935h6.372\r\n\t\t\t\tC32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.087c0.159,0,0.254,0.026,0.301,0.043\r\n\t\t\t\tc0.011,0.067,0.019,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082c-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z\r\n\t\t\t\t M60.611,16.282c-1.295-1.592-2.928-2.913-4.782-3.928c-0.61-2.671-1.804-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0\r\n\t\t\t\tH12.265l-0.787,3.458L1.224,48.52L0,53.9v0.031h10.042l-1.058,4.661L7.752,64h22.802l0.774-3.477l2.55-11.44h6.089\r\n\t\t\t\tc11.803,0,21.03-7.176,23.508-18.278c0.367-1.649,0.521-3.163,0.525-4.557v-0.456C63.904,21.396,62.234,18.281,60.611,16.282z\r\n\t\t\t\t M5.606,49.491L15.861,4.43H39c4.283,0,9.005,1.916,11.316,5.974c0.795,1.398,1.306,3.051,1.412,4.969\r\n\t\t\t\tc0.076,1.334-0.043,2.801-0.399,4.398c-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.463,5.652-13.979,5.732\r\n\t\t\t\tc-0.117,0.004-0.229,0.014-0.344,0.014H22.51L19.186,49.49L5.606,49.491L5.606,49.491z M59.087,29.848\r\n\t\t\t\tc-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.639h8.147l0.777-3.484l2.547-11.441h6.09\r\n\t\t\t\tc11.802,0,21.026-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696C58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[{"name":"path","attribs":{"d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018c1.145-1.061,2.006-2.423,2.369-3.916\r\n\t\t\t\tc0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65l-0.214,0.901L24.45,25.935h6.372\r\n\t\t\t\tC32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.087c0.159,0,0.254,0.026,0.301,0.043\r\n\t\t\t\tc0.011,0.067,0.019,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082c-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z\r\n\t\t\t\t M60.611,16.282c-1.295-1.592-2.928-2.913-4.782-3.928c-0.61-2.671-1.804-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0\r\n\t\t\t\tH12.265l-0.787,3.458L1.224,48.52L0,53.9v0.031h10.042l-1.058,4.661L7.752,64h22.802l0.774-3.477l2.55-11.44h6.089\r\n\t\t\t\tc11.803,0,21.03-7.176,23.508-18.278c0.367-1.649,0.521-3.163,0.525-4.557v-0.456C63.904,21.396,62.234,18.281,60.611,16.282z\r\n\t\t\t\t M5.606,49.491L15.861,4.43H39c4.283,0,9.005,1.916,11.316,5.974c0.795,1.398,1.306,3.051,1.412,4.969\r\n\t\t\t\tc0.076,1.334-0.043,2.801-0.399,4.398c-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.463,5.652-13.979,5.732\r\n\t\t\t\tc-0.117,0.004-0.229,0.014-0.344,0.014H22.51L19.186,49.49L5.606,49.491L5.606,49.491z M59.087,29.848\r\n\t\t\t\tc-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.639h8.147l0.777-3.484l2.547-11.441h6.09\r\n\t\t\t\tc11.802,0,21.026-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696C58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[]}]}]}]}]}]}]}]};exports.paypal=paypal;var pen_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PEN_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_1"},"children":[{"name":"g","attribs":{"id":"PEN_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12.938,42.498l8.446,8.429l25.339-25.288l-8.447-8.429L12.938,42.498z M7.998,55.84l11.258-2.806l-8.447-8.431\r\n\t\t\t\tL7.998,55.84z M55.167,12.996l-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[{"name":"path","attribs":{"d":"M12.938,42.498l8.446,8.429l25.339-25.288l-8.447-8.429L12.938,42.498z M7.998,55.84l11.258-2.806l-8.447-8.431\r\n\t\t\t\tL7.998,55.84z M55.167,12.996l-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[]}]}]}]}]}]}]}]};exports.pen_1=pen_1;var pen_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PEN_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_2"},"children":[{"name":"g","attribs":{"id":"PEN_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46.721,19.639l-8.445-8.429L12.938,36.498l8.446,8.429L46.721,19.639z M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214\r\n\t\t\t\tl-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429L55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,56,61,56z M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[{"name":"path","attribs":{"d":"M46.721,19.639l-8.445-8.429L12.938,36.498l8.446,8.429L46.721,19.639z M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214\r\n\t\t\t\tl-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429L55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,56,61,56z M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[]}]}]}]}]}]}]}]};exports.pen_2=pen_2;var pen_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PEN_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_3"},"children":[{"name":"g","attribs":{"id":"PEN_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61.167,6.995L56.943,2.78c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52c0,1.657,1.343,3,3,3h52\r\n\t\t\t\tc1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.445-8.429L18.938,36.498l8.446,8.429L52.721,19.639z M13.998,49.84\r\n\t\t\t\tl11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[{"name":"path","attribs":{"d":"M61.167,6.995L56.943,2.78c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52c0,1.657,1.343,3,3,3h52\r\n\t\t\t\tc1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.445-8.429L18.938,36.498l8.446,8.429L52.721,19.639z M13.998,49.84\r\n\t\t\t\tl11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[]}]}]}]}]}]}]}]};exports.pen_3=pen_3;var picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PICTURE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PICTURE"},"children":[{"name":"g","attribs":{"id":"PICTURE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M22,28c3.314,0,6-2.686,6-6s-2.686-6-6-6s-6,2.686-6,6S18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816\r\n\t\t\t\tC61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2h-3.367C52.402,2.838,51.305,2,50,2\r\n\t\t\t\ts-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367C34.402,2.838,33.305,2,32,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\ts-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.838,38.598,2,39.695,2,41s0.837,2.402,2,2.816v3.367\r\n\t\t\t\tC2.838,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.838,56.598,2,57.695,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.815v-3.367\r\n\t\t\t\tc1.163-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.816V25.82\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[{"name":"path","attribs":{"d":"M22,28c3.314,0,6-2.686,6-6s-2.686-6-6-6s-6,2.686-6,6S18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816\r\n\t\t\t\tC61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2h-3.367C52.402,2.838,51.305,2,50,2\r\n\t\t\t\ts-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367C34.402,2.838,33.305,2,32,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\ts-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.838,38.598,2,39.695,2,41s0.837,2.402,2,2.816v3.367\r\n\t\t\t\tC2.838,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.838,56.598,2,57.695,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.815v-3.367\r\n\t\t\t\tc1.163-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.816V25.82\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[]}]}]}]}]}]}]}]};exports.picture=picture;var pie_chart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PIE_CHART_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIE_CHART"},"children":[{"name":"g","attribs":{"id":"PIE_CHART"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35c0,16.018,12.984,29,29,29c16.016,0,29-12.984,29-29\r\n\t\t\t\tH29V6z"},"children":[{"name":"path","attribs":{"d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35c0,16.018,12.984,29,29,29c16.016,0,29-12.984,29-29\r\n\t\t\t\tH29V6z"},"children":[]}]}]}]}]}]}]}]};exports.pie_chart=pie_chart;var pill={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PILL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.981,9.726l-0.707-0.707c-6.834-6.834-17.914-6.834-24.749,0L9.019,29.525\r\n\t\t\tc-6.834,6.834-6.834,17.914,0,24.748l0.707,0.707c6.834,6.834,17.914,6.834,24.749,0l20.506-20.506\r\n\t\t\tC61.815,27.641,61.815,16.56,54.981,9.726z M30.232,50.738c-4.491,4.491-11.772,4.491-16.263,0l-0.707-0.707\r\n\t\t\tc-4.491-4.491-4.491-11.772,0-16.263l10.253-10.253l16.971,16.97L30.232,50.738z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.981,9.726l-0.707-0.707c-6.834-6.834-17.914-6.834-24.749,0L9.019,29.525\r\n\t\t\tc-6.834,6.834-6.834,17.914,0,24.748l0.707,0.707c6.834,6.834,17.914,6.834,24.749,0l20.506-20.506\r\n\t\t\tC61.815,27.641,61.815,16.56,54.981,9.726z M30.232,50.738c-4.491,4.491-11.772,4.491-16.263,0l-0.707-0.707\r\n\t\t\tc-4.491-4.491-4.491-11.772,0-16.263l10.253-10.253l16.971,16.97L30.232,50.738z"},"children":[]}]}]}]}]}]};exports.pill=pill;var pin_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PIN_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_1"},"children":[{"name":"g","attribs":{"id":"PIN_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40\r\n\t\t\t\tc-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"},"children":[{"name":"path","attribs":{"d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40\r\n\t\t\t\tc-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"},"children":[]}]}]}]}]}]}]}]};exports.pin_1=pin_1;var pin_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PIN_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_2"},"children":[{"name":"g","attribs":{"id":"PIN_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,16c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"},"children":[{"name":"path","attribs":{"d":"M32,16c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"},"children":[]}]}]}]}]}]}]}]};exports.pin_2=pin_2;var pin_zoom_in={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3s1.343,3,3,3h5v5c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"},"children":[{"name":"path","attribs":{"d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3s1.343,3,3,3h5v5c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"},"children":[]}]}]}]}]}]}]}]};exports.pin_zoom_in=pin_zoom_in;var pin_zoom_out={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M40,21H24c-1.657,0-3,1.343-3,3s1.343,3,3,3h16c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"},"children":[{"name":"path","attribs":{"d":"M40,21H24c-1.657,0-3,1.343-3,3s1.343,3,3,3h16c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"},"children":[]}]}]}]}]}]}]}]};exports.pin_zoom_out=pin_zoom_out;var pinterest_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"pinterest_2_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest_1_"},"children":[{"name":"g","attribs":{"id":"pinterest_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M55.988,15.676c-0.967-3.324-2.491-5.987-4.586-8.274c-2.033-2.223-4.437-4.016-7.449-5.364\r\n\t\t\t\tC41.1,0.762,37.307-0.183,33.139,0.014c-1.428,0.067-2.742,0.144-4.013,0.329c-3.83,0.557-6.978,1.715-9.768,3.364\r\n\t\t\t\tc-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452c-0.493,2.498-0.494,5.513,0,8.096\r\n\t\t\t\tc0.812,4.253,2.794,7.532,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.606c1.241-0.024,1.27-1.492,1.545-2.555\r\n\t\t\t\tc0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493c-1.046-1.586-1.695-3.622-1.695-6.249\r\n\t\t\t\tc0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831c3.188-0.546,6.777-0.264,9.371,0.582\r\n\t\t\t\tc2.613,0.853,4.763,2.371,6.279,4.276c1.594,2.002,2.598,4.583,2.816,7.793c0.117,1.739-0.006,3.502-0.174,5.035\r\n\t\t\t\tc-0.524,4.757-1.906,8.754-4.187,11.715c-1.426,1.852-3.56,3.813-6.629,3.922c-1.737,0.061-2.998-0.365-4.062-1.139\r\n\t\t\t\tc-1.027-0.748-1.779-1.744-2.12-3.188c-0.369-1.574,0.078-3.072,0.473-4.53c0.798-2.94,1.675-5.229,2.342-8.274\r\n\t\t\t\tc0.297-1.352,0.568-3.19,0.2-4.731c-0.347-1.445-1.087-2.467-2.168-3.112c-1.049-0.626-2.777-0.872-4.336-0.33\r\n\t\t\t\tc-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858c0.158,1.514,0.518,2.809,1.071,4.251\r\n\t\t\t\tc0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408c-0.636,2.708-1.321,5.419-1.47,8.679\r\n\t\t\t\tc-0.131,2.86-0.371,5.803-0.019,8.35c0.065,0.469,0.094,0.791,0.424,0.86c0.433,0.089,0.127,0.755,1.564-0.911\r\n\t\t\t\tc2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.934,1.256-4.068,1.794-6.173c0.546-2.134,1.072-4.318,1.595-6.401\r\n\t\t\t\tc0.804,1.414,1.939,2.35,3.29,3.112c1.362,0.769,2.979,1.306,4.959,1.442c2.037,0.142,3.94-0.223,5.606-0.709\r\n\t\t\t\tc1.682-0.49,3.162-1.226,4.387-2.024c5.046-3.29,8.408-9.072,9.594-16.142c0.316-1.889,0.77-3.777,0.77-5.921\r\n\t\t\t\tC56.982,19.258,56.492,17.406,55.988,15.676z"},"children":[{"name":"path","attribs":{"d":"M55.988,15.676c-0.967-3.324-2.491-5.987-4.586-8.274c-2.033-2.223-4.437-4.016-7.449-5.364\r\n\t\t\t\tC41.1,0.762,37.307-0.183,33.139,0.014c-1.428,0.067-2.742,0.144-4.013,0.329c-3.83,0.557-6.978,1.715-9.768,3.364\r\n\t\t\t\tc-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452c-0.493,2.498-0.494,5.513,0,8.096\r\n\t\t\t\tc0.812,4.253,2.794,7.532,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.606c1.241-0.024,1.27-1.492,1.545-2.555\r\n\t\t\t\tc0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493c-1.046-1.586-1.695-3.622-1.695-6.249\r\n\t\t\t\tc0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831c3.188-0.546,6.777-0.264,9.371,0.582\r\n\t\t\t\tc2.613,0.853,4.763,2.371,6.279,4.276c1.594,2.002,2.598,4.583,2.816,7.793c0.117,1.739-0.006,3.502-0.174,5.035\r\n\t\t\t\tc-0.524,4.757-1.906,8.754-4.187,11.715c-1.426,1.852-3.56,3.813-6.629,3.922c-1.737,0.061-2.998-0.365-4.062-1.139\r\n\t\t\t\tc-1.027-0.748-1.779-1.744-2.12-3.188c-0.369-1.574,0.078-3.072,0.473-4.53c0.798-2.94,1.675-5.229,2.342-8.274\r\n\t\t\t\tc0.297-1.352,0.568-3.19,0.2-4.731c-0.347-1.445-1.087-2.467-2.168-3.112c-1.049-0.626-2.777-0.872-4.336-0.33\r\n\t\t\t\tc-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858c0.158,1.514,0.518,2.809,1.071,4.251\r\n\t\t\t\tc0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408c-0.636,2.708-1.321,5.419-1.47,8.679\r\n\t\t\t\tc-0.131,2.86-0.371,5.803-0.019,8.35c0.065,0.469,0.094,0.791,0.424,0.86c0.433,0.089,0.127,0.755,1.564-0.911\r\n\t\t\t\tc2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.934,1.256-4.068,1.794-6.173c0.546-2.134,1.072-4.318,1.595-6.401\r\n\t\t\t\tc0.804,1.414,1.939,2.35,3.29,3.112c1.362,0.769,2.979,1.306,4.959,1.442c2.037,0.142,3.94-0.223,5.606-0.709\r\n\t\t\t\tc1.682-0.49,3.162-1.226,4.387-2.024c5.046-3.29,8.408-9.072,9.594-16.142c0.316-1.889,0.77-3.777,0.77-5.921\r\n\t\t\t\tC56.982,19.258,56.492,17.406,55.988,15.676z"},"children":[]}]}]}]}]}]}]}]};exports.pinterest_1=pinterest_1;var pinterest_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"pinterest_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest"},"children":[{"name":"g","attribs":{"id":"pinterest"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396c-0.082-2.23-0.002-4.892,0.562-7.303\r\n\t\t\t\tc0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084c0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826\r\n\t\t\t\tc0,2.936-1.873,7.326-2.84,11.393c-0.801,3.406,1.715,6.188,5.075,6.188c6.079,0,10.176-7.815,10.176-17.079\r\n\t\t\t\tc0-7.035-4.734-12.307-13.359-12.307c-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299\r\n\t\t\t\tc0.594,0.701,0.674,0.983,0.457,1.793c-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.812-0.875,1.098-1.609,0.799\r\n\t\t\t\tc-4.484-1.828-6.578-6.742-6.578-12.266c0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395\r\n\t\t\t\tc0,12.605-7.006,22.013-17.328,22.013c-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.393-2.262,8.826\r\n\t\t\t\tc-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.57,28.94,64,32,64c17.672,0,32-14.328,32-32S49.672,0,32,0z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396c-0.082-2.23-0.002-4.892,0.562-7.303\r\n\t\t\t\tc0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084c0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826\r\n\t\t\t\tc0,2.936-1.873,7.326-2.84,11.393c-0.801,3.406,1.715,6.188,5.075,6.188c6.079,0,10.176-7.815,10.176-17.079\r\n\t\t\t\tc0-7.035-4.734-12.307-13.359-12.307c-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299\r\n\t\t\t\tc0.594,0.701,0.674,0.983,0.457,1.793c-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.812-0.875,1.098-1.609,0.799\r\n\t\t\t\tc-4.484-1.828-6.578-6.742-6.578-12.266c0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395\r\n\t\t\t\tc0,12.605-7.006,22.013-17.328,22.013c-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.393-2.262,8.826\r\n\t\t\t\tc-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.57,28.94,64,32,64c17.672,0,32-14.328,32-32S49.672,0,32,0z"},"children":[]}]}]}]}]}]}]}]};exports.pinterest_2=pinterest_2;var play={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PLAY_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLAY"},"children":[{"name":"g","attribs":{"id":"PLAY"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,32c0-1.099-0.592-2.06-1.475-2.583l0,0L22.561,16.438c-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0\r\n\t\t\t\tC22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3c0.557,0,1.079-0.152,1.526-0.417l0,0l0.011-0.007\r\n\t\t\t\tc0.008-0.006,0.016-0.01,0.024-0.014l21.964-12.979l0,0C45.408,34.061,46,33.1,46,32z"},"children":[{"name":"path","attribs":{"d":"M46,32c0-1.099-0.592-2.06-1.475-2.583l0,0L22.561,16.438c-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0\r\n\t\t\t\tC22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3c0.557,0,1.079-0.152,1.526-0.417l0,0l0.011-0.007\r\n\t\t\t\tc0.008-0.006,0.016-0.01,0.024-0.014l21.964-12.979l0,0C45.408,34.061,46,33.1,46,32z"},"children":[]}]}]}]}]}]}]}]};exports.play=play;var plug={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PLUG"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.836,21.812c-1.164-1.164-3.052-1.164-4.216,0l-7.026,7.026l-8.432-8.432\r\n\t\t\tl7.026-7.026c1.164-1.164,1.164-3.052,0-4.216C41.024,8,39.137,8,37.973,9.164l-7.026,7.026l-4.216-4.216l-5.972,5.972\r\n\t\t\tc-6.193,6.193-6.719,15.885-1.617,22.696L9.164,50.62C8,51.784,8,53.672,9.164,54.836c1.164,1.164,3.052,1.164,4.216,0\r\n\t\t\tl9.977-9.977c6.811,5.102,16.503,4.576,22.696-1.617l5.972-5.973l-4.216-4.216l7.026-7.026C56,24.863,56,22.976,54.836,21.812z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.836,21.812c-1.164-1.164-3.052-1.164-4.216,0l-7.026,7.026l-8.432-8.432\r\n\t\t\tl7.026-7.026c1.164-1.164,1.164-3.052,0-4.216C41.024,8,39.137,8,37.973,9.164l-7.026,7.026l-4.216-4.216l-5.972,5.972\r\n\t\t\tc-6.193,6.193-6.719,15.885-1.617,22.696L9.164,50.62C8,51.784,8,53.672,9.164,54.836c1.164,1.164,3.052,1.164,4.216,0\r\n\t\t\tl9.977-9.977c6.811,5.102,16.503,4.576,22.696-1.617l5.972-5.973l-4.216-4.216l7.026-7.026C56,24.863,56,22.976,54.836,21.812z"},"children":[]}]}]}]}]}]};exports.plug=plug;var plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PLUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLUS"},"children":[{"name":"g","attribs":{"id":"PLUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52,29H35V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v17H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[{"name":"path","attribs":{"d":"M52,29H35V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v17H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[]}]}]}]}]}]}]}]};exports.plus=plus;var polaroid={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"POLAROID_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROID"},"children":[{"name":"g","attribs":{"id":"POLAROID"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9C56,7.343,54.657,6,53,6z M50,43H14V12h36\r\n\t\t\t\tV43z"},"children":[{"name":"path","attribs":{"d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9C56,7.343,54.657,6,53,6z M50,43H14V12h36\r\n\t\t\t\tV43z"},"children":[]}]}]}]}]}]}]}]};exports.polaroid=polaroid;var polaroids={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"POLAROIDS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROIDS"},"children":[{"name":"g","attribs":{"id":"POLAROIDS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V15C48,13.343,46.657,12,45,12z M42,49H6\r\n\t\t\t\tV18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V15C48,13.343,46.657,12,45,12z M42,49H6\r\n\t\t\t\tV18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]}]};exports.polaroids=polaroids;var power={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"POWER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POWER"},"children":[{"name":"g","attribs":{"id":"POWER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186l0,0V30C28,31.657,29.343,33,31,33z M42,8.162\r\n\t\t\t\tv0.009C41.688,8.061,41.352,8,41,8c-1.657,0-3,1.343-3,3c0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35\r\n\t\t\t\tc0,12.703-10.297,23-23,23S8,47.703,8,35c0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162C9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29\r\n\t\t\t\tc16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[{"name":"path","attribs":{"d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186l0,0V30C28,31.657,29.343,33,31,33z M42,8.162\r\n\t\t\t\tv0.009C41.688,8.061,41.352,8,41,8c-1.657,0-3,1.343-3,3c0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35\r\n\t\t\t\tc0,12.703-10.297,23-23,23S8,47.703,8,35c0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162C9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29\r\n\t\t\t\tc16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[]}]}]}]}]}]}]}]};exports.power=power;var presentation={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PRESENTATION"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H35V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3H3C1.343,6,0,7.343,0,9\r\n\t\t\tc0,1.657,1.343,3,3,3h3v34c0,1.657,1.343,3,3,3h15.757l-9.879,9.879C14.336,59.422,14,60.172,14,61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.579-0.336,2.121-0.879L29,53.243V61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7.757l9.879,9.879\r\n\t\t\tC45.422,63.664,46.172,64,47,64c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L39.243,49H55c1.657,0,3-1.343,3-3V12h3\r\n\t\t\tc1.657,0,3-1.343,3-3C64,7.343,62.657,6,61,6z M52,43H12V12h40V43z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H35V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3H3C1.343,6,0,7.343,0,9\r\n\t\t\tc0,1.657,1.343,3,3,3h3v34c0,1.657,1.343,3,3,3h15.757l-9.879,9.879C14.336,59.422,14,60.172,14,61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.579-0.336,2.121-0.879L29,53.243V61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7.757l9.879,9.879\r\n\t\t\tC45.422,63.664,46.172,64,47,64c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L39.243,49H55c1.657,0,3-1.343,3-3V12h3\r\n\t\t\tc1.657,0,3-1.343,3-3C64,7.343,62.657,6,61,6z M52,43H12V12h40V43z"},"children":[]}]}]}]}]}]};exports.presentation=presentation;var printer={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PRINTER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PRINTER"},"children":[{"name":"g","attribs":{"id":"PRINTER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10c1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15\r\n\t\t\t\tz M9,27c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC47.99,2.351,47.8,1.782,47.477,1.309c-0.004-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.351-0.419l0,0\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.008-0.006c-0.166-0.165-0.358-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004\r\n\t\t\t\tc0,0-0.001,0-0.001-0.001c-0.285-0.171-0.594-0.305-0.93-0.373l0,0c-0.139-0.028-0.283-0.034-0.427-0.043\r\n\t\t\t\tC45.117,0.014,45.061,0,45,0H19c-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3V37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[{"name":"path","attribs":{"d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10c1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15\r\n\t\t\t\tz M9,27c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC47.99,2.351,47.8,1.782,47.477,1.309c-0.004-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.351-0.419l0,0\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.008-0.006c-0.166-0.165-0.358-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004\r\n\t\t\t\tc0,0-0.001,0-0.001-0.001c-0.285-0.171-0.594-0.305-0.93-0.373l0,0c-0.139-0.028-0.283-0.034-0.427-0.043\r\n\t\t\t\tC45.117,0.014,45.061,0,45,0H19c-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3V37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[]}]}]}]}]}]}]}]};exports.printer=printer;var progress={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"PROGRESS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PROGRESS"},"children":[{"name":"g","attribs":{"id":"PROGRESS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32C29,30.343,27.657,29,26,29z M14,37\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z M50,13c-1.657,0-3,1.343-3,3v32\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[{"name":"path","attribs":{"d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32C29,30.343,27.657,29,26,29z M14,37\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z M50,13c-1.657,0-3,1.343-3,3v32\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[]}]}]}]}]}]}]}]};exports.progress=progress;var record={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RECORD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RECORD"},"children":[{"name":"g","attribs":{"id":"RECORD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"32","cy":"32","r":"14"},"children":[{"name":"circle","attribs":{"cx":"32","cy":"32","r":"14"},"children":[]}]}]}]}]}]}]}]};exports.record=record;var repeat={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"REPEAT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,22c-1.657,0-3,1.343-3,3v7c0,6.627-5.373,12-12,12H26v0.003h-2.987v-0.005\r\n\t\t\tH21.24l1.878-1.879c0.543-0.543,0.878-1.293,0.878-2.122c0-1.657-1.343-3-2.999-3c-0.828,0-1.578,0.336-2.121,0.879l-6.998,7.001\r\n\t\t\tC11.336,45.42,11,46.17,11,46.999c0,0.829,0.336,1.578,0.878,2.122l6.998,7.001C19.42,56.664,20.169,57,20.998,57\r\n\t\t\tc1.657,0,2.999-1.343,2.999-3c0-0.829-0.336-1.578-0.878-2.122l-1.873-1.874H27V50h19c9.941,0,18-8.059,18-18v-7\r\n\t\t\tC64,23.343,62.657,22,61,22z M38,20v-0.004h2.987v0.005h1.773l-1.878,1.879c-0.543,0.543-0.879,1.293-0.879,2.122\r\n\t\t\tc0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C52.664,18.58,53,17.83,53,17.001\r\n\t\t\tc0-0.829-0.336-1.579-0.878-2.122l-6.998-7.001C44.581,7.336,43.831,7,43.003,7c-1.657,0-2.999,1.344-2.999,3.001\r\n\t\t\tc0,0.828,0.336,1.579,0.879,2.122l1.873,1.874H37V14H18C8.059,14,0,22.059,0,32v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7\r\n\t\t\tc0-6.627,5.373-12,12-12H38z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,22c-1.657,0-3,1.343-3,3v7c0,6.627-5.373,12-12,12H26v0.003h-2.987v-0.005\r\n\t\t\tH21.24l1.878-1.879c0.543-0.543,0.878-1.293,0.878-2.122c0-1.657-1.343-3-2.999-3c-0.828,0-1.578,0.336-2.121,0.879l-6.998,7.001\r\n\t\t\tC11.336,45.42,11,46.17,11,46.999c0,0.829,0.336,1.578,0.878,2.122l6.998,7.001C19.42,56.664,20.169,57,20.998,57\r\n\t\t\tc1.657,0,2.999-1.343,2.999-3c0-0.829-0.336-1.578-0.878-2.122l-1.873-1.874H27V50h19c9.941,0,18-8.059,18-18v-7\r\n\t\t\tC64,23.343,62.657,22,61,22z M38,20v-0.004h2.987v0.005h1.773l-1.878,1.879c-0.543,0.543-0.879,1.293-0.879,2.122\r\n\t\t\tc0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C52.664,18.58,53,17.83,53,17.001\r\n\t\t\tc0-0.829-0.336-1.579-0.878-2.122l-6.998-7.001C44.581,7.336,43.831,7,43.003,7c-1.657,0-2.999,1.344-2.999,3.001\r\n\t\t\tc0,0.828,0.336,1.579,0.879,2.122l1.873,1.874H37V14H18C8.059,14,0,22.059,0,32v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7\r\n\t\t\tc0-6.627,5.373-12,12-12H38z"},"children":[]}]}]}]}]}]};exports.repeat=repeat;var repeat_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"REPEAT_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_1"},"children":[{"name":"g","attribs":{"id":"REPEAT_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c8.77,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[{"name":"path","attribs":{"d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c8.77,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[]}]}]}]}]}]}]}]};exports.repeat_1=repeat_1;var repeat_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"REPEAT_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_2"},"children":[{"name":"g","attribs":{"id":"REPEAT_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26c-8.768,0-16.506-4.348-21.207-11H16c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.454C11.789,58.68,21.254,64,32,64\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5c-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.732,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3s3-1.343,3-3C6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h13c1.657,0,3-1.343,3-3V8C64,6.343,62.657,5,61,5z"},"children":[{"name":"path","attribs":{"d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26c-8.768,0-16.506-4.348-21.207-11H16c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.454C11.789,58.68,21.254,64,32,64\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5c-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.732,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3s3-1.343,3-3C6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h13c1.657,0,3-1.343,3-3V8C64,6.343,62.657,5,61,5z"},"children":[]}]}]}]}]}]}]}]};exports.repeat_2=repeat_2;var resize_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_1_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3s-1.343-3-3-3H6C4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tv-4.757l14.914,14.914l0.003-0.003C24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083\r\n\t\t\t\tL28.157,23.914z M26,35c-0.81,0-1.543,0.325-2.082,0.848l-0.003-0.004L9,50.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.811,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.811,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.811,0.324,1.543,0.848,2.083l-0.004,0.003L50.757,55H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.843,23.914l0.003,0.003\r\n\t\t\t\tC35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.811,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3s-1.343-3-3-3H6C4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tv-4.757l14.914,14.914l0.003-0.003C24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083\r\n\t\t\t\tL28.157,23.914z M26,35c-0.81,0-1.543,0.325-2.082,0.848l-0.003-0.004L9,50.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.811,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.811,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.811,0.324,1.543,0.848,2.083l-0.004,0.003L50.757,55H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.843,23.914l0.003,0.003\r\n\t\t\t\tC35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.811,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]}]};exports.resize_1=resize_1;var resize_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_2_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003C3.325,56.457,3,57.189,3,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.848l0.003,0.004L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.811,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tH38c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.189,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.811-0.325-1.543-0.848-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843\r\n\t\t\t\tL8.083,3.847C7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[{"name":"path","attribs":{"d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003C3.325,56.457,3,57.189,3,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.848l0.003,0.004L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.811,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tH38c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.189,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.811-0.325-1.543-0.848-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843\r\n\t\t\t\tL8.083,3.847C7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[]}]}]}]}]}]}]}]};exports.resize_2=resize_2;var resize_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_1_4_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.879-14.879C28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879C35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.879-14.879C28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879C35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]}]};exports.resize_3=resize_3;var resize_4={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_2_4_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.879,55.879C3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[{"name":"path","attribs":{"d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.879,55.879C3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[]}]}]}]}]}]}]}]};exports.resize_4=resize_4;var resize_5={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_1_5_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1"},"children":[{"name":"g","attribs":{"id":"RESIZE_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l9.879-9.879C20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z"},"children":[{"name":"path","attribs":{"d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l9.879-9.879C20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z"},"children":[]}]}]}]}]}]}]}]};exports.resize_5=resize_5;var resize_6={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RESIZE_2_5_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2"},"children":[{"name":"g","attribs":{"id":"RESIZE_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,43H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3s3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-4.757l9.879-9.879C63.664,4.578,64,3.829,64,3z"},"children":[{"name":"path","attribs":{"d":"M18,43H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3s3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-4.757l9.879-9.879C63.664,4.578,64,3.829,64,3z"},"children":[]}]}]}]}]}]}]}]};exports.resize_6=resize_6;var rewind={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"REWIND_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REWIND"},"children":[{"name":"g","attribs":{"id":"REWIND"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3c-0.584,0-1.129,0.168-1.59,0.456l0,0\r\n\t\t\t\tl-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0C13.564,29.987,13,30.927,13,32s0.564,2.014,1.41,2.544l0,0\r\n\t\t\t\tl0.023,0.015c0.005,0.002,0.01,0.006,0.016,0.01l15.962,9.976l0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587\r\n\t\t\t\tl11.41,7.131l0,0C46.871,44.833,47.416,45,48,45c1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[{"name":"path","attribs":{"d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3c-0.584,0-1.129,0.168-1.59,0.456l0,0\r\n\t\t\t\tl-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0C13.564,29.987,13,30.927,13,32s0.564,2.014,1.41,2.544l0,0\r\n\t\t\t\tl0.023,0.015c0.005,0.002,0.01,0.006,0.016,0.01l15.962,9.976l0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587\r\n\t\t\t\tl11.41,7.131l0,0C46.871,44.833,47.416,45,48,45c1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[]}]}]}]}]}]}]}]};exports.rewind=rewind;var rss={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"RSS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RSS"},"children":[{"name":"g","attribs":{"id":"RSS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M8,48c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S12.418,48,8,48z M0,23v11c16.569,0,30,13.432,30,30h11\r\n\t\t\t\tC41,41.355,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53h11C64,28.654,35.346,0,0,0z"},"children":[{"name":"path","attribs":{"d":"M8,48c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S12.418,48,8,48z M0,23v11c16.569,0,30,13.432,30,30h11\r\n\t\t\t\tC41,41.355,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53h11C64,28.654,35.346,0,0,0z"},"children":[]}]}]}]}]}]}]}]};exports.rss=rss;var screen_expand_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M9,55h46\r\n\t\t\t\tV9H9V55z M15,15h34v34H15V15z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"d":"M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M9,55h46\r\n\t\t\t\tV9H9V55z M15,15h34v34H15V15z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]}]};exports.screen_expand_1=screen_expand_1;var screen_expand_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H3C1.343,0,0,1.343,0,3v12l0,0c0,1.657,1.343,3,3,3s3-1.343,3-3V6H15L15,6z\r\n\t\t\t\t M64,49c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V49L64,49z M55,9H9\r\n\t\t\t\tv46h46V9z M49,49H15V15h34V49z"},"children":[{"name":"path","attribs":{"d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H3C1.343,0,0,1.343,0,3v12l0,0c0,1.657,1.343,3,3,3s3-1.343,3-3V6H15L15,6z\r\n\t\t\t\t M64,49c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V49L64,49z M55,9H9\r\n\t\t\t\tv46h46V9z M49,49H15V15h34V49z"},"children":[]}]}]}]}]}]}]}]};exports.screen_expand_2=screen_expand_2;var screen_expand_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,18c1.657,0,3-1.343,3-3V6h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,0,0,1.343,0,3v12l0,0\r\n\t\t\t\tC0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9l0,0\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"d":"M3,18c1.657,0,3-1.343,3-3V6h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,0,0,1.343,0,3v12l0,0\r\n\t\t\t\tC0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9l0,0\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]}]};exports.screen_expand_3=screen_expand_3;var share={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHARE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE"},"children":[{"name":"g","attribs":{"id":"SHARE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52,26.168V52H12V12h25.832C37.316,11.114,37,10.098,37,9c0-1.099,0.316-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168C57.113,26.683,56.1,27,55,27C53.902,27,52.887,26.683,52,26.168z M55,6H43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.811,0,1.543-0.325,2.082-0.847l0.003,0.003L52,16.243V21c0,1.657,1.343,3,2.999,3H55c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC58,7.343,56.657,6,55,6z"},"children":[{"name":"path","attribs":{"d":"M52,26.168V52H12V12h25.832C37.316,11.114,37,10.098,37,9c0-1.099,0.316-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168C57.113,26.683,56.1,27,55,27C53.902,27,52.887,26.683,52,26.168z M55,6H43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.811,0,1.543-0.325,2.082-0.847l0.003,0.003L52,16.243V21c0,1.657,1.343,3,2.999,3H55c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC58,7.343,56.657,6,55,6z"},"children":[]}]}]}]}]}]}]}]};exports.share=share;var share_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHARE_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE_2"},"children":[{"name":"g","attribs":{"id":"SHARE_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29c0,1.657,1.343,3,3,3s3-1.343,3-3V10.818l3.77,4.189\r\n\t\t\t\tL38.777,15c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.777-2l0.008-0.007l-9-10L34.223,1\r\n\t\t\t\tC33.673,0.391,32.885,0,32,0s-1.673,0.39-2.222,1L29.77,0.993l-9,10L20.778,11C20.3,11.532,20,12.228,20,13\r\n\t\t\t\tC20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[{"name":"path","attribs":{"d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29c0,1.657,1.343,3,3,3s3-1.343,3-3V10.818l3.77,4.189\r\n\t\t\t\tL38.777,15c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.777-2l0.008-0.007l-9-10L34.223,1\r\n\t\t\t\tC33.673,0.391,32.885,0,32,0s-1.673,0.39-2.222,1L29.77,0.993l-9,10L20.778,11C20.3,11.532,20,12.228,20,13\r\n\t\t\t\tC20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[]}]}]}]}]}]}]}]};exports.share_2=share_2;var shop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOP"},"children":[{"name":"g","attribs":{"id":"SHOP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M10,9h44c1.657,0,3-1.343,3-3s-1.343-3-3-3H10C8.343,3,7,4.343,7,6S8.343,9,10,9z M58.375,12H5.625L0,27\r\n\t\t\t\tc0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8\r\n\t\t\t\ts8-3.582,8-8L58.375,12z M55,37.952V37.95c-0.287-0.026-0.57-0.069-0.85-0.117c-0.061-0.01-0.123-0.015-0.183-0.026\r\n\t\t\t\tc-0.13-0.023-0.256-0.061-0.384-0.09C53.042,37.593,52.51,37.439,52,37.24V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478\r\n\t\t\t\tc-0.128,0.029-0.253,0.065-0.382,0.09c-0.06,0.012-0.122,0.017-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002\r\n\t\t\t\tC8.671,37.982,8.338,38,8,38c-0.684,0-1.351-0.07-2-0.189V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.811\r\n\t\t\t\tC57.352,37.93,56.684,38,56,38C55.663,38,55.329,37.982,55,37.952z"},"children":[{"name":"path","attribs":{"d":"M10,9h44c1.657,0,3-1.343,3-3s-1.343-3-3-3H10C8.343,3,7,4.343,7,6S8.343,9,10,9z M58.375,12H5.625L0,27\r\n\t\t\t\tc0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8\r\n\t\t\t\ts8-3.582,8-8L58.375,12z M55,37.952V37.95c-0.287-0.026-0.57-0.069-0.85-0.117c-0.061-0.01-0.123-0.015-0.183-0.026\r\n\t\t\t\tc-0.13-0.023-0.256-0.061-0.384-0.09C53.042,37.593,52.51,37.439,52,37.24V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478\r\n\t\t\t\tc-0.128,0.029-0.253,0.065-0.382,0.09c-0.06,0.012-0.122,0.017-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002\r\n\t\t\t\tC8.671,37.982,8.338,38,8,38c-0.684,0-1.351-0.07-2-0.189V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.811\r\n\t\t\t\tC57.352,37.93,56.684,38,56,38C55.663,38,55.329,37.982,55,37.952z"},"children":[]}]}]}]}]}]}]}]};exports.shop=shop;var shopping_bag={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOPPING_BAG_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG"},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8c0-8.284-6.716-15-15-15S17,6.716,17,15H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15c0-4.971,4.029-9,9-9c4.971,0,9,4.03,9,9H23z"},"children":[{"name":"path","attribs":{"d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8c0-8.284-6.716-15-15-15S17,6.716,17,15H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15c0-4.971,4.029-9,9-9c4.971,0,9,4.03,9,9H23z"},"children":[]}]}]}]}]}]}]}]};exports.shopping_bag=shopping_bag;var shopping_cart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOPPING_CART_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.763l0,0l9-20l-0.006-0.002C63.9,17.853,64,17.439,64,17\r\n\t\t\t\tc0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872\r\n\t\t\t\tl11.55,33H16c-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6s-2.686-6-6-6H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.846L18.679,20h37.68l-6.356,14.127L24.224,35.846z"},"children":[{"name":"path","attribs":{"d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.763l0,0l9-20l-0.006-0.002C63.9,17.853,64,17.439,64,17\r\n\t\t\t\tc0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872\r\n\t\t\t\tl11.55,33H16c-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6s-2.686-6-6-6H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.846L18.679,20h37.68l-6.356,14.127L24.224,35.846z"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart=shopping_cart;var shopping_cart_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"Background_xA0_Image_1_","display":"none"},"children":[{"name":"image","attribs":{"display":"inline","overflow":"visible","width":"64","height":"64","id":"Background_xA0_Image"},"children":[{"name":"image","attribs":{"display":"inline","overflow":"visible","width":"64","height":"64","id":"Background_xA0_Image"},"children":[]}]}]},{"name":"g","attribs":{"id":"paypal_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"paypal","display":"inline"},"children":[{"name":"g","attribs":{"id":"paypal","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018\r\n\t\t\t\tc1.145-1.061,2.006-2.423,2.369-3.916c0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65\r\n\t\t\t\tl-0.214,0.901L24.45,25.935h6.372C32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.086\r\n\t\t\t\tc0.16,0,0.255,0.026,0.302,0.043c0.01,0.067,0.018,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082\r\n\t\t\t\tc-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z M60.612,16.282c-1.296-1.592-2.929-2.913-4.783-3.928\r\n\t\t\t\tc-0.61-2.671-1.803-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0H12.265l-0.787,3.458L1.224,48.519L0,53.901v0.031\r\n\t\t\t\th10.042l-1.058,4.661L7.752,64h22.802l0.774-3.476l2.55-11.441h6.089c11.803,0,21.03-7.176,23.507-18.278\r\n\t\t\t\tc0.368-1.649,0.522-3.163,0.526-4.557v-0.456C63.904,21.396,62.235,18.281,60.612,16.282z M5.606,49.491L15.861,4.43H39\r\n\t\t\t\tc4.283,0,9.005,1.916,11.316,5.974c0.796,1.398,1.306,3.051,1.413,4.969c0.075,1.334-0.044,2.801-0.4,4.398\r\n\t\t\t\tc-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.462,5.651-13.979,5.732c-0.116,0.003-0.228,0.013-0.343,0.013h-9.701\r\n\t\t\t\tl-3.324,14.926H5.606z M59.087,29.848c-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.638h8.147\r\n\t\t\t\tl0.777-3.485l2.547-11.441h6.09c11.801,0,21.027-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696\r\n\t\t\t\tC58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018\r\n\t\t\t\tc1.145-1.061,2.006-2.423,2.369-3.916c0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65\r\n\t\t\t\tl-0.214,0.901L24.45,25.935h6.372C32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.086\r\n\t\t\t\tc0.16,0,0.255,0.026,0.302,0.043c0.01,0.067,0.018,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082\r\n\t\t\t\tc-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z M60.612,16.282c-1.296-1.592-2.929-2.913-4.783-3.928\r\n\t\t\t\tc-0.61-2.671-1.803-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0H12.265l-0.787,3.458L1.224,48.519L0,53.901v0.031\r\n\t\t\t\th10.042l-1.058,4.661L7.752,64h22.802l0.774-3.476l2.55-11.441h6.089c11.803,0,21.03-7.176,23.507-18.278\r\n\t\t\t\tc0.368-1.649,0.522-3.163,0.526-4.557v-0.456C63.904,21.396,62.235,18.281,60.612,16.282z M5.606,49.491L15.861,4.43H39\r\n\t\t\t\tc4.283,0,9.005,1.916,11.316,5.974c0.796,1.398,1.306,3.051,1.413,4.969c0.075,1.334-0.044,2.801-0.4,4.398\r\n\t\t\t\tc-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.462,5.651-13.979,5.732c-0.116,0.003-0.228,0.013-0.343,0.013h-9.701\r\n\t\t\t\tl-3.324,14.926H5.606z M59.087,29.848c-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.638h8.147\r\n\t\t\t\tl0.777-3.485l2.547-11.441h6.09c11.801,0,21.027-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696\r\n\t\t\t\tC58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"linkedin_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"linkedin","display":"inline"},"children":[{"name":"g","attribs":{"id":"linkedin","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.798,62.987h14.315V22.368H0.798V62.987z M48.433,21.087\r\n\t\t\t\tc-5.924,0-9.192,1.972-12.952,6.749v-5.469H21.189v40.619h14.291V40.914c0-4.658,2.24-9.214,7.596-9.214\r\n\t\t\t\tc5.356,0,6.673,4.555,6.673,9.103v22.184H64V39.896C64,23.854,54.362,21.087,48.433,21.087z M7.982,2.013\r\n\t\t\t\tC3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.798,62.987h14.315V22.368H0.798V62.987z M48.433,21.087\r\n\t\t\t\tc-5.924,0-9.192,1.972-12.952,6.749v-5.469H21.189v40.619h14.291V40.914c0-4.658,2.24-9.214,7.596-9.214\r\n\t\t\t\tc5.356,0,6.673,4.555,6.673,9.103v22.184H64V39.896C64,23.854,54.362,21.087,48.433,21.087z M7.982,2.013\r\n\t\t\t\tC3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"spotify_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"spotify","display":"inline"},"children":[{"name":"g","attribs":{"id":"spotify","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.671,55.675c-4.217,0-7.496,1.355-10.156,4.239\r\n\t\t\t\tc4.795,2.869,9.491,4.079,15.486,4.079c3.087,0,4.405-0.132,7.23-0.948C36.949,58.528,32.591,55.675,26.671,55.675z\r\n\t\t\t\t M32.001,0.008c-17.67,0-31.993,14.323-31.993,31.993c0,8.223,3.103,15.72,8.202,21.387c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.892,12.458c8.691-5.72,14.43-15.56,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.32,1.788-1.936c0.713-0.131,18.112-3.927,30.538,4.408\r\n\t\t\t\tc0.923,0.726,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.48,0-0.927-0.137-1.308-0.37\r\n\t\t\t\th-0.001c-13.9-8.339-29.991-4.409-32.002-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.196,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.041,4.852c0.934,0.507,1.566,1.497,1.566,2.635C56.581,24.7,55.237,26.042,53.583,26.042z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.671,55.675c-4.217,0-7.496,1.355-10.156,4.239\r\n\t\t\t\tc4.795,2.869,9.491,4.079,15.486,4.079c3.087,0,4.405-0.132,7.23-0.948C36.949,58.528,32.591,55.675,26.671,55.675z\r\n\t\t\t\t M32.001,0.008c-17.67,0-31.993,14.323-31.993,31.993c0,8.223,3.103,15.72,8.202,21.387c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.892,12.458c8.691-5.72,14.43-15.56,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.32,1.788-1.936c0.713-0.131,18.112-3.927,30.538,4.408\r\n\t\t\t\tc0.923,0.726,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.48,0-0.927-0.137-1.308-0.37\r\n\t\t\t\th-0.001c-13.9-8.339-29.991-4.409-32.002-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.196,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.041,4.852c0.934,0.507,1.566,1.497,1.566,2.635C56.581,24.7,55.237,26.042,53.583,26.042z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"youtube_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"youtube","display":"inline"},"children":[{"name":"g","attribs":{"id":"youtube","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944\r\n\t\t\t\tv26.474c0,5.316,6.101,8.559,11.534,8.559H54.15c5.432,0,9.835-3.242,9.835-8.559V18.976\r\n\t\t\t\tC63.985,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044l14.03,10.168L27.856,42.205z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944\r\n\t\t\t\tv26.474c0,5.316,6.101,8.559,11.534,8.559H54.15c5.432,0,9.835-3.242,9.835-8.559V18.976\r\n\t\t\t\tC63.985,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044l14.03,10.168L27.856,42.205z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"vimeo_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"vimeo","display":"inline"},"children":[{"name":"g","attribs":{"id":"vimeo","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.348,18.728c2.748-0.624,7.538-1.522,8.529,1.306\r\n\t\t\t\tc1.246,8.476-4.612,15.408-9.84,19.602C24.919,34.128,32.524,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255\r\n\t\t\t\tC4.788,13.151-0.013,16.758,0,19.531v0.073c0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306\r\n\t\t\t\tc8.471,6.948,5.793,37.749,18.37,39.856c4.882,0.818,11.08-3.648,14.433-6.534c4.625-3.981,9.924-10.722,13.777-16.335\r\n\t\t\t\tc0,0,9.677-12.741,8.529-23.521C61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.348,18.728c2.748-0.624,7.538-1.522,8.529,1.306\r\n\t\t\t\tc1.246,8.476-4.612,15.408-9.84,19.602C24.919,34.128,32.524,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255\r\n\t\t\t\tC4.788,13.151-0.013,16.758,0,19.531v0.073c0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306\r\n\t\t\t\tc8.471,6.948,5.793,37.749,18.37,39.856c4.882,0.818,11.08-3.648,14.433-6.534c4.625-3.981,9.924-10.722,13.777-16.335\r\n\t\t\t\tc0,0,9.677-12.741,8.529-23.521C61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"google_plus_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"google_plus","display":"inline"},"children":[{"name":"g","attribs":{"id":"google_plus","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522\r\n\t\t\t\tc0,6.666,5.158,12.23,12.857,12.23c0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142\r\n\t\t\t\tc0,1.853,1.014,3.378,2.297,4.604c-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533\r\n\t\t\t\tc0,5.987,8.158,10.472,17.533,10.472c10.686,0,16.463-6.689,16.463-12.678c0-4.799-1.318-7.675-5.777-10.773\r\n\t\t\t\tc-1.525-1.059-4.443-3.641-4.443-5.156c0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407\r\n\t\t\t\tc0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z M29.574,46.295c0.133,0.556,0.207,1.128,0.207,1.711\r\n\t\t\t\tc0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.537-11.158-8.375c0-4.742,5.805-8.69,12.283-8.622\r\n\t\t\t\tc1.512,0.017,2.92,0.255,4.199,0.664C26.34,42.201,28.862,43.558,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522\r\n\t\t\t\tc0,6.666,5.158,12.23,12.857,12.23c0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142\r\n\t\t\t\tc0,1.853,1.014,3.378,2.297,4.604c-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533\r\n\t\t\t\tc0,5.987,8.158,10.472,17.533,10.472c10.686,0,16.463-6.689,16.463-12.678c0-4.799-1.318-7.675-5.777-10.773\r\n\t\t\t\tc-1.525-1.059-4.443-3.641-4.443-5.156c0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407\r\n\t\t\t\tc0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z M29.574,46.295c0.133,0.556,0.207,1.128,0.207,1.711\r\n\t\t\t\tc0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.537-11.158-8.375c0-4.742,5.805-8.69,12.283-8.622\r\n\t\t\t\tc1.512,0.017,2.92,0.255,4.199,0.664C26.34,42.201,28.862,43.558,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"skype_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"skype","display":"inline"},"children":[{"name":"g","attribs":{"id":"skype","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.539,36.935C59.825,35.33,60,33.687,60,32C60,16.536,47.464,4,32,4\r\n\t\t\t\tc-1.687,0-3.33,0.175-4.934,0.461C24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066\r\n\t\t\t\tC4.175,28.67,4,30.313,4,32c0,15.464,12.536,28,28,28c1.687,0,3.33-0.175,4.935-0.461C39.809,62.297,43.702,64,48,64\r\n\t\t\t\tc8.837,0,16-7.163,16-16C64,43.703,62.297,39.809,59.539,36.935z M44.331,43.208c-1.105,1.506-2.74,2.7-4.857,3.548\r\n\t\t\t\tc-2.095,0.838-4.608,1.265-7.468,1.265c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.573,0.995-2.171c0.655-0.594,1.494-0.894,2.495-0.894\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.724,1.372,2.342\r\n\t\t\t\tc0.471,0.6,1.144,1.101,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.407,4.814-1.208\r\n\t\t\t\tc1.191-0.781,1.768-1.721,1.768-2.871c0-0.908-0.302-1.621-0.922-2.183c-0.652-0.586-1.509-1.039-2.55-1.355\r\n\t\t\t\tc-1.087-0.324-2.562-0.679-4.386-1.047c-2.48-0.509-4.587-1.118-6.264-1.802c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.904,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.833,1.635,2.324,2.515c0.494,0.886,0.747,1.77,0.747,2.624c0,0.823-0.33,1.571-0.981,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.885,0-1.578-0.209-2.059-0.616c-0.448-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.804-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.144,0.717,2.05,1.637,2.694,2.738c0.646,1.105,0.972,2.469,0.972,4.053\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.539,36.935C59.825,35.33,60,33.687,60,32C60,16.536,47.464,4,32,4\r\n\t\t\t\tc-1.687,0-3.33,0.175-4.934,0.461C24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066\r\n\t\t\t\tC4.175,28.67,4,30.313,4,32c0,15.464,12.536,28,28,28c1.687,0,3.33-0.175,4.935-0.461C39.809,62.297,43.702,64,48,64\r\n\t\t\t\tc8.837,0,16-7.163,16-16C64,43.703,62.297,39.809,59.539,36.935z M44.331,43.208c-1.105,1.506-2.74,2.7-4.857,3.548\r\n\t\t\t\tc-2.095,0.838-4.608,1.265-7.468,1.265c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.573,0.995-2.171c0.655-0.594,1.494-0.894,2.495-0.894\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.724,1.372,2.342\r\n\t\t\t\tc0.471,0.6,1.144,1.101,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.407,4.814-1.208\r\n\t\t\t\tc1.191-0.781,1.768-1.721,1.768-2.871c0-0.908-0.302-1.621-0.922-2.183c-0.652-0.586-1.509-1.039-2.55-1.355\r\n\t\t\t\tc-1.087-0.324-2.562-0.679-4.386-1.047c-2.48-0.509-4.587-1.118-6.264-1.802c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.904,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.833,1.635,2.324,2.515c0.494,0.886,0.747,1.77,0.747,2.624c0,0.823-0.33,1.571-0.981,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.885,0-1.578-0.209-2.059-0.616c-0.448-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.804-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.144,0.717,2.05,1.637,2.694,2.738c0.646,1.105,0.972,2.469,0.972,4.053\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"foursquare_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"foursquare","display":"inline"},"children":[{"name":"g","attribs":{"id":"foursquare","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.524,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245\r\n\t\t\t\tc-2.46-1.881-5.468-3.047-8.815-3.047c-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311\r\n\t\t\t\tc0.623,0,1.222-0.105,1.825-0.181l13.387,12.458l34.24-30.692V5.018L41.524,27.182z M14.725,43.102\r\n\t\t\t\tc-0.057,0-0.109,0.016-0.166,0.016c-5.998,0-10.877-4.805-10.877-10.71c0-5.907,4.879-10.712,10.877-10.712\r\n\t\t\t\tc2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722C25.434,38.257,20.642,43.013,14.725,43.102z M59.8,27.491\r\n\t\t\t\tL48.426,37.908L30.158,54.157l-9.723-8.753c2.691-1.21,4.978-3.209,6.487-5.69l3.794,3.924l13.511-13.91L59.8,13.77V27.491z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.524,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245\r\n\t\t\t\tc-2.46-1.881-5.468-3.047-8.815-3.047c-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311\r\n\t\t\t\tc0.623,0,1.222-0.105,1.825-0.181l13.387,12.458l34.24-30.692V5.018L41.524,27.182z M14.725,43.102\r\n\t\t\t\tc-0.057,0-0.109,0.016-0.166,0.016c-5.998,0-10.877-4.805-10.877-10.71c0-5.907,4.879-10.712,10.877-10.712\r\n\t\t\t\tc2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722C25.434,38.257,20.642,43.013,14.725,43.102z M59.8,27.491\r\n\t\t\t\tL48.426,37.908L30.158,54.157l-9.723-8.753c2.691-1.21,4.978-3.209,6.487-5.69l3.794,3.924l13.511-13.91L59.8,13.77V27.491z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"dropbox_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dropbox","display":"inline"},"children":[{"name":"g","attribs":{"id":"dropbox","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.04,39.477L18.826,50.345l-5.654-3.662v4.106L32.04,62.003l18.865-11.215\r\n\t\t\t\tv-4.106l-5.653,3.662L32.04,39.477z M0.001,35.846L18.826,48.03L32,37.134L13.018,25.513L0.001,35.846z M32,37.134L45.174,48.03\r\n\t\t\t\tl18.826-12.184L50.982,25.513L32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176\r\n\t\t\t\tL45.174,2.997L32,13.893l18.982,11.619L63.999,15.176z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.04,39.477L18.826,50.345l-5.654-3.662v4.106L32.04,62.003l18.865-11.215\r\n\t\t\t\tv-4.106l-5.653,3.662L32.04,39.477z M0.001,35.846L18.826,48.03L32,37.134L13.018,25.513L0.001,35.846z M32,37.134L45.174,48.03\r\n\t\t\t\tl18.826-12.184L50.982,25.513L32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176\r\n\t\t\t\tL45.174,2.997L32,13.893l18.982,11.619L63.999,15.176z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"tumblr_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"tumblr","display":"inline"},"children":[{"name":"g","attribs":{"id":"tumblr","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.41,53.584c-1.816,0-3.423-0.428-4.834-1.275\r\n\t\t\t\tc-1.063-0.629-2.039-1.718-2.428-2.767c-0.391-1.049-0.343-3.19-0.343-6.905V26.215h14.728V14.788H34.806V-0.028h-9.062\r\n\t\t\t\tc-0.405,3.308-1.15,6.026-2.231,8.16c-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654v22.455\r\n\t\t\t\tc0,2.933,0.305,5.167,0.915,6.708c0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.36,3.487,2.42,5.725,3.162\r\n\t\t\t\tc2.237,0.734,3.955,1.101,6.869,1.101c2.565,0,4.95-0.258,7.16-0.779c2.207-0.52,4.673-1.428,7.394-2.711v-10.1\r\n\t\t\t\tC48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.41,53.584c-1.816,0-3.423-0.428-4.834-1.275\r\n\t\t\t\tc-1.063-0.629-2.039-1.718-2.428-2.767c-0.391-1.049-0.343-3.19-0.343-6.905V26.215h14.728V14.788H34.806V-0.028h-9.062\r\n\t\t\t\tc-0.405,3.308-1.15,6.026-2.231,8.16c-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654v22.455\r\n\t\t\t\tc0,2.933,0.305,5.167,0.915,6.708c0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.36,3.487,2.42,5.725,3.162\r\n\t\t\t\tc2.237,0.734,3.955,1.101,6.869,1.101c2.565,0,4.95-0.258,7.16-0.779c2.207-0.52,4.673-1.428,7.394-2.711v-10.1\r\n\t\t\t\tC48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"instagram_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"instagram","display":"inline"},"children":[{"name":"g","attribs":{"id":"instagram","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8\r\n\t\t\t\tC64,3.582,60.418,0,56,0z M19.673,30.673c0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92\r\n\t\t\t\tc0.029-0.136,0.069-0.267,0.103-0.401c0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389\r\n\t\t\t\tc0.1-0.272,0.204-0.541,0.322-0.804c0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2\r\n\t\t\t\tc4.989,0,9.278,2.953,11.246,7.2h0.011c0.021,0.045,0.035,0.092,0.055,0.137c0.118,0.263,0.222,0.532,0.322,0.804\r\n\t\t\t\tc0.048,0.13,0.099,0.257,0.142,0.389c0.091,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.103,0.401\r\n\t\t\t\tc0.065,0.302,0.11,0.61,0.153,0.92c0.017,0.125,0.043,0.247,0.057,0.374C44.373,31.109,44.4,31.551,44.4,32\r\n\t\t\t\tc0,6.849-5.552,12.4-12.4,12.4c-6.848,0-12.4-5.552-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2H10.4c-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32\r\n\t\t\t\tc0,10.825,8.775,19.6,19.6,19.6c10.825,0,19.6-8.775,19.6-19.6c0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2h-6.4c-1.767,0-3.2-1.433-3.2-3.2v-6.4c0-1.767,1.433-3.2,3.2-3.2h6.4c1.767,0,3.2,1.432,3.2,3.2V16.8\r\n\t\t\t\tz"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8\r\n\t\t\t\tC64,3.582,60.418,0,56,0z M19.673,30.673c0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92\r\n\t\t\t\tc0.029-0.136,0.069-0.267,0.103-0.401c0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389\r\n\t\t\t\tc0.1-0.272,0.204-0.541,0.322-0.804c0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2\r\n\t\t\t\tc4.989,0,9.278,2.953,11.246,7.2h0.011c0.021,0.045,0.035,0.092,0.055,0.137c0.118,0.263,0.222,0.532,0.322,0.804\r\n\t\t\t\tc0.048,0.13,0.099,0.257,0.142,0.389c0.091,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.103,0.401\r\n\t\t\t\tc0.065,0.302,0.11,0.61,0.153,0.92c0.017,0.125,0.043,0.247,0.057,0.374C44.373,31.109,44.4,31.551,44.4,32\r\n\t\t\t\tc0,6.849-5.552,12.4-12.4,12.4c-6.848,0-12.4-5.552-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2H10.4c-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32\r\n\t\t\t\tc0,10.825,8.775,19.6,19.6,19.6c10.825,0,19.6-8.775,19.6-19.6c0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2h-6.4c-1.767,0-3.2-1.433-3.2-3.2v-6.4c0-1.767,1.433-3.2,3.2-3.2h6.4c1.767,0,3.2,1.432,3.2,3.2V16.8\r\n\t\t\t\tz"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"twitter_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"twitter","display":"inline"},"children":[{"name":"g","attribs":{"id":"twitter","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.569,14.179v-0.032c0.557-0.218,0.997-0.68,1.441-1.022\r\n\t\t\t\tc2-1.541,3.301-3.57,4.26-6.164c-0.544,0.298-1.089,0.596-1.634,0.894c-1.68,0.853-4.532,2.079-6.727,2.267\r\n\t\t\t\tc-2.586-2.356-5.292-4.209-10.378-4.12c-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.024,0.508-2.915,0.894\r\n\t\t\t\tc-3.724,1.616-6.263,4.631-7.431,8.814c-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767\r\n\t\t\t\tC18.69,19.594,14.372,17.29,9.578,13.54C8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43\r\n\t\t\t\tC4.463,8.42,4.442,8.409,4.421,8.398c-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912\r\n\t\t\t\tc0.664,0.826,1.741,1.338,2.402,2.108h0.064c-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766\r\n\t\t\t\tc-0.448-0.213-0.897-0.426-1.345-0.639c-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.635,4.292,1.724\r\n\t\t\t\tc-0.867,0.732-4.575,0.396-5.862,0.255c1.609,4.142,4.081,6.9,8.328,8.399c1.096,0.387,2.433,0.729,3.908,0.703\r\n\t\t\t\tc-0.783,0.93-2.454,1.687-3.556,2.331c-2.272,1.329-4.91,2.191-7.88,2.842c-1.191,0.261-2.457,0.207-3.748,0.415\r\n\t\t\t\tc-1.427,0.23-2.92-0.122-4.196-0.16c0.384,0.234,0.769,0.469,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916\r\n\t\t\t\tc2.379,1.04,4.914,1.826,7.72,2.523c5.658,1.405,13.64,0.773,18.579-0.766c13.754-4.286,22.443-14.292,25.722-29.03\r\n\t\t\t\tc0.564-2.535,0.646-5.414,0.609-8.431c0.683-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032\r\n\t\t\t\tC61.768,12.864,59.418,14.149,56.569,14.179z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.569,14.179v-0.032c0.557-0.218,0.997-0.68,1.441-1.022\r\n\t\t\t\tc2-1.541,3.301-3.57,4.26-6.164c-0.544,0.298-1.089,0.596-1.634,0.894c-1.68,0.853-4.532,2.079-6.727,2.267\r\n\t\t\t\tc-2.586-2.356-5.292-4.209-10.378-4.12c-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.024,0.508-2.915,0.894\r\n\t\t\t\tc-3.724,1.616-6.263,4.631-7.431,8.814c-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767\r\n\t\t\t\tC18.69,19.594,14.372,17.29,9.578,13.54C8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43\r\n\t\t\t\tC4.463,8.42,4.442,8.409,4.421,8.398c-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912\r\n\t\t\t\tc0.664,0.826,1.741,1.338,2.402,2.108h0.064c-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766\r\n\t\t\t\tc-0.448-0.213-0.897-0.426-1.345-0.639c-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.635,4.292,1.724\r\n\t\t\t\tc-0.867,0.732-4.575,0.396-5.862,0.255c1.609,4.142,4.081,6.9,8.328,8.399c1.096,0.387,2.433,0.729,3.908,0.703\r\n\t\t\t\tc-0.783,0.93-2.454,1.687-3.556,2.331c-2.272,1.329-4.91,2.191-7.88,2.842c-1.191,0.261-2.457,0.207-3.748,0.415\r\n\t\t\t\tc-1.427,0.23-2.92-0.122-4.196-0.16c0.384,0.234,0.769,0.469,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916\r\n\t\t\t\tc2.379,1.04,4.914,1.826,7.72,2.523c5.658,1.405,13.64,0.773,18.579-0.766c13.754-4.286,22.443-14.292,25.722-29.03\r\n\t\t\t\tc0.564-2.535,0.646-5.414,0.609-8.431c0.683-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032\r\n\t\t\t\tC61.768,12.864,59.418,14.149,56.569,14.179z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"facebook_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook","display":"inline"},"children":[{"name":"g","attribs":{"id":"facebook","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.058-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932V59.28\r\n\t\t\t\tc0,2.724,2.207,4.727,4.929,4.727h54.116c2.722,0,4.929-2.002,4.929-4.727V4.926C63.987,2.202,61.781-0.006,59.058-0.006z\r\n\t\t\t\t M33.615,21.199c-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692\r\n\t\t\t\tv2.691h8.148l-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.338,0.994,8.208,1.803L33.615,21.199z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.058-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932V59.28\r\n\t\t\t\tc0,2.724,2.207,4.727,4.929,4.727h54.116c2.722,0,4.929-2.002,4.929-4.727V4.926C63.987,2.202,61.781-0.006,59.058-0.006z\r\n\t\t\t\t M33.615,21.199c-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692\r\n\t\t\t\tv2.691h8.148l-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.338,0.994,8.208,1.803L33.615,21.199z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"facebook_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"facebook_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.515-9.593\r\n\t\t\t\tc1.902-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303c-11.982,0-15.903-0.501-20.015,3.675\r\n\t\t\t\tc-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938c-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0\r\n\t\t\t\tv-32.01c0,0,5.173,0,8.042,0c0.626-3.385,1.236-6.036,2.088-9.947H36.963z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.515-9.593\r\n\t\t\t\tc1.902-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303c-11.982,0-15.903-0.501-20.015,3.675\r\n\t\t\t\tc-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938c-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0\r\n\t\t\t\tv-32.01c0,0,5.173,0,8.042,0c0.626-3.385,1.236-6.036,2.088-9.947H36.963z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"pinterest_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest","display":"inline"},"children":[{"name":"g","attribs":{"id":"pinterest","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396\r\n\t\t\t\tc-0.082-2.23-0.002-4.891,0.562-7.302c0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084\r\n\t\t\t\tc0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826c0,2.936-1.873,7.326-2.84,11.393\r\n\t\t\t\tc-0.801,3.406,1.715,6.188,5.074,6.188c6.08,0,10.176-7.815,10.176-17.078c0-7.035-4.734-12.307-13.359-12.307\r\n\t\t\t\tc-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299c0.594,0.701,0.674,0.984,0.457,1.793\r\n\t\t\t\tc-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.813-0.875,1.098-1.609,0.799c-4.484-1.828-6.578-6.742-6.578-12.266\r\n\t\t\t\tc0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395c0,12.605-7.006,22.014-17.328,22.014\r\n\t\t\t\tc-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.392-2.262,8.826c-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.571,28.94,64,32,64\r\n\t\t\t\tc17.672,0,32-14.328,32-32C64,14.328,49.672,0,32,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396\r\n\t\t\t\tc-0.082-2.23-0.002-4.891,0.562-7.302c0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084\r\n\t\t\t\tc0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826c0,2.936-1.873,7.326-2.84,11.393\r\n\t\t\t\tc-0.801,3.406,1.715,6.188,5.074,6.188c6.08,0,10.176-7.815,10.176-17.078c0-7.035-4.734-12.307-13.359-12.307\r\n\t\t\t\tc-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299c0.594,0.701,0.674,0.984,0.457,1.793\r\n\t\t\t\tc-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.813-0.875,1.098-1.609,0.799c-4.484-1.828-6.578-6.742-6.578-12.266\r\n\t\t\t\tc0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395c0,12.605-7.006,22.014-17.328,22.014\r\n\t\t\t\tc-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.392-2.262,8.826c-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.571,28.94,64,32,64\r\n\t\t\t\tc17.672,0,32-14.328,32-32C64,14.328,49.672,0,32,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"pinterest_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"pinterest_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.989,15.676c-0.967-3.324-2.492-5.987-4.586-8.274\r\n\t\t\t\tc-2.034-2.223-4.437-4.016-7.45-5.364c-2.854-1.276-6.646-2.221-10.815-2.024c-1.427,0.067-2.741,0.144-4.012,0.329\r\n\t\t\t\tc-3.83,0.557-6.978,1.715-9.768,3.364c-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452\r\n\t\t\t\tc-0.493,2.498-0.494,5.513,0,8.096c0.812,4.253,2.794,7.533,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.607\r\n\t\t\t\tc1.241-0.025,1.27-1.492,1.545-2.555c0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493\r\n\t\t\t\tc-1.046-1.586-1.695-3.622-1.695-6.249c0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831\r\n\t\t\t\tc3.188-0.546,6.777-0.264,9.37,0.582c2.614,0.853,4.763,2.371,6.28,4.276c1.593,2.002,2.598,4.583,2.816,7.793\r\n\t\t\t\tc0.118,1.739-0.006,3.502-0.174,5.035c-0.524,4.757-1.906,8.754-4.186,11.715c-1.426,1.852-3.56,3.814-6.629,3.922\r\n\t\t\t\tc-1.738,0.061-2.998-0.365-4.062-1.139c-1.027-0.748-1.779-1.743-2.119-3.187c-0.369-1.574,0.078-3.072,0.473-4.53\r\n\t\t\t\tc0.798-2.94,1.675-5.229,2.342-8.274c0.297-1.352,0.568-3.19,0.2-4.731c-0.346-1.445-1.087-2.467-2.168-3.112\r\n\t\t\t\tc-1.049-0.626-2.777-0.872-4.336-0.33c-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858\r\n\t\t\t\tc0.158,1.514,0.518,2.809,1.071,4.251c0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408\r\n\t\t\t\tc-0.636,2.708-1.321,5.419-1.47,8.679c-0.131,2.86-0.371,5.802-0.019,8.349c0.065,0.469,0.094,0.792,0.424,0.861\r\n\t\t\t\tc0.433,0.089,0.127,0.755,1.564-0.911c2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.933,1.256-4.069,1.794-6.173\r\n\t\t\t\tc0.546-2.134,1.072-4.318,1.595-6.401c0.804,1.414,1.939,2.349,3.29,3.112c1.362,0.769,2.98,1.306,4.959,1.442\r\n\t\t\t\tc2.037,0.142,3.94-0.222,5.607-0.709c1.681-0.49,3.162-1.225,4.386-2.024c5.046-3.29,8.409-9.072,9.594-16.142\r\n\t\t\t\tc0.317-1.889,0.77-3.777,0.77-5.921C56.982,19.258,56.492,17.406,55.989,15.676z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.989,15.676c-0.967-3.324-2.492-5.987-4.586-8.274\r\n\t\t\t\tc-2.034-2.223-4.437-4.016-7.45-5.364c-2.854-1.276-6.646-2.221-10.815-2.024c-1.427,0.067-2.741,0.144-4.012,0.329\r\n\t\t\t\tc-3.83,0.557-6.978,1.715-9.768,3.364c-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452\r\n\t\t\t\tc-0.493,2.498-0.494,5.513,0,8.096c0.812,4.253,2.794,7.533,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.607\r\n\t\t\t\tc1.241-0.025,1.27-1.492,1.545-2.555c0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493\r\n\t\t\t\tc-1.046-1.586-1.695-3.622-1.695-6.249c0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831\r\n\t\t\t\tc3.188-0.546,6.777-0.264,9.37,0.582c2.614,0.853,4.763,2.371,6.28,4.276c1.593,2.002,2.598,4.583,2.816,7.793\r\n\t\t\t\tc0.118,1.739-0.006,3.502-0.174,5.035c-0.524,4.757-1.906,8.754-4.186,11.715c-1.426,1.852-3.56,3.814-6.629,3.922\r\n\t\t\t\tc-1.738,0.061-2.998-0.365-4.062-1.139c-1.027-0.748-1.779-1.743-2.119-3.187c-0.369-1.574,0.078-3.072,0.473-4.53\r\n\t\t\t\tc0.798-2.94,1.675-5.229,2.342-8.274c0.297-1.352,0.568-3.19,0.2-4.731c-0.346-1.445-1.087-2.467-2.168-3.112\r\n\t\t\t\tc-1.049-0.626-2.777-0.872-4.336-0.33c-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858\r\n\t\t\t\tc0.158,1.514,0.518,2.809,1.071,4.251c0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408\r\n\t\t\t\tc-0.636,2.708-1.321,5.419-1.47,8.679c-0.131,2.86-0.371,5.802-0.019,8.349c0.065,0.469,0.094,0.792,0.424,0.861\r\n\t\t\t\tc0.433,0.089,0.127,0.755,1.564-0.911c2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.933,1.256-4.069,1.794-6.173\r\n\t\t\t\tc0.546-2.134,1.072-4.318,1.595-6.401c0.804,1.414,1.939,2.349,3.29,3.112c1.362,0.769,2.98,1.306,4.959,1.442\r\n\t\t\t\tc2.037,0.142,3.94-0.222,5.607-0.709c1.681-0.49,3.162-1.225,4.386-2.024c5.046-3.29,8.409-9.072,9.594-16.142\r\n\t\t\t\tc0.317-1.889,0.77-3.777,0.77-5.921C56.982,19.258,56.492,17.406,55.989,15.676z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"forrst_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"forrst","display":"inline"},"children":[{"name":"g","attribs":{"id":"forrst","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.873,61.947L33.865,0.88c-0.228-0.538-0.747-0.883-1.321-0.883\r\n\t\t\t\ts-1.093,0.345-1.32,0.88L5.127,61.944c-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667\r\n\t\t\t\tL20.714,48c-1.085,0-1.964-0.895-1.964-2c0-1.105,0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929\r\n\t\t\t\tc1.085,0,1.964,0.896,1.964,2v3l5.893-3c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-5.893,3v7l9.821-6\r\n\t\t\t\tc1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663\r\n\t\t\t\tC60.022,62.928,60.066,62.401,59.873,61.947z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.873,61.947L33.865,0.88c-0.228-0.538-0.747-0.883-1.321-0.883\r\n\t\t\t\ts-1.093,0.345-1.32,0.88L5.127,61.944c-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667\r\n\t\t\t\tL20.714,48c-1.085,0-1.964-0.895-1.964-2c0-1.105,0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929\r\n\t\t\t\tc1.085,0,1.964,0.896,1.964,2v3l5.893-3c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-5.893,3v7l9.821-6\r\n\t\t\t\tc1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663\r\n\t\t\t\tC60.022,62.928,60.066,62.401,59.873,61.947z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"dribbble_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dribbble","display":"inline"},"children":[{"name":"g","attribs":{"id":"dribbble","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.866-6.015\r\n\t\t\t\tc-0.802-1.899-1.795-3.727-2.951-5.436c-1.144-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907\r\n\t\t\t\tc-1.709-1.158-3.54-2.149-5.436-2.953c-1.933-0.814-3.957-1.446-6.014-1.863c-2.107-0.433-4.276-0.652-6.442-0.652\r\n\t\t\t\tc-2.169,0-4.338,0.22-6.446,0.652c-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953\r\n\t\t\t\tC12.411,6.61,10.818,7.924,9.37,9.373c-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436\r\n\t\t\t\tc-0.818,1.934-1.446,3.96-1.867,6.015c-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448\r\n\t\t\t\tc0.421,2.056,1.049,4.081,1.867,6.013c0.802,1.896,1.795,3.73,2.951,5.439c1.144,1.694,2.458,3.284,3.904,4.733\r\n\t\t\t\tc1.447,1.446,3.04,2.759,4.734,3.904c1.711,1.155,3.541,2.149,5.437,2.951c1.933,0.819,3.957,1.444,6.013,1.866\r\n\t\t\t\tc2.109,0.435,4.277,0.652,6.446,0.652c2.167,0,4.335-0.217,6.442-0.652c2.057-0.422,4.081-1.047,6.014-1.866\r\n\t\t\t\tc1.896-0.802,3.727-1.795,5.436-2.951c1.694-1.146,3.287-2.458,4.735-3.904c1.446-1.449,2.761-3.039,3.905-4.733\r\n\t\t\t\tc1.155-1.709,2.149-3.542,2.951-5.439c0.817-1.932,1.446-3.957,1.866-6.013c0.432-2.106,0.651-4.275,0.651-6.448\r\n\t\t\t\tC64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67c6.919,0,13.234,2.579,18.049,6.819\r\n\t\t\t\tc-0.067,0.106-3.96,6.03-14.276,9.897C31.104,12.802,25.971,5.982,25.56,5.441C27.626,4.941,29.78,4.67,32.001,4.67z\r\n\t\t\t\t M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018C25.396,5.479,25.426,5.474,25.455,5.464z\r\n\t\t\t\t M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747c-13.123,3.487-24.511,3.35-25.233,3.337\r\n\t\t\t\tC7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.263c-4.352-4.842-7.001-11.244-7.001-18.266\r\n\t\t\t\tc0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894c0.784,1.532,1.532,3.09,2.218,4.645\r\n\t\t\t\tc-0.362,0.101-0.719,0.21-1.077,0.326C19.143,36.979,11.662,50.25,11.662,50.25S11.671,50.258,11.673,50.263z M32.001,59.33\r\n\t\t\t\tc-6.338,0-12.157-2.175-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01s-0.252-0.187-0.612-0.478\r\n\t\t\t\tc0.199,0.164,0.413,0.309,0.617,0.468c0.1-0.216,5.39-11.47,21.443-17.062c0.059-0.023,0.12-0.041,0.181-0.058\r\n\t\t\t\tc3.846,9.993,5.434,18.362,5.838,20.751C39.392,58.559,35.785,59.33,32.001,59.33z M47.272,54.668\r\n\t\t\t\tc-0.278-1.651-1.734-9.671-5.32-19.522c8.823-1.411,16.468,1.009,17.032,1.193C57.767,43.955,53.408,50.523,47.272,54.668z\r\n\t\t\t\t M40.286,30.832c-0.192-0.468-0.387-0.938-0.589-1.411c-0.569-1.337-1.181-2.662-1.817-3.964\r\n\t\t\t\tc10.793-4.405,15.174-10.741,15.226-10.817c3.833,4.655,6.152,10.602,6.215,17.087C58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.866-6.015\r\n\t\t\t\tc-0.802-1.899-1.795-3.727-2.951-5.436c-1.144-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907\r\n\t\t\t\tc-1.709-1.158-3.54-2.149-5.436-2.953c-1.933-0.814-3.957-1.446-6.014-1.863c-2.107-0.433-4.276-0.652-6.442-0.652\r\n\t\t\t\tc-2.169,0-4.338,0.22-6.446,0.652c-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953\r\n\t\t\t\tC12.411,6.61,10.818,7.924,9.37,9.373c-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436\r\n\t\t\t\tc-0.818,1.934-1.446,3.96-1.867,6.015c-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448\r\n\t\t\t\tc0.421,2.056,1.049,4.081,1.867,6.013c0.802,1.896,1.795,3.73,2.951,5.439c1.144,1.694,2.458,3.284,3.904,4.733\r\n\t\t\t\tc1.447,1.446,3.04,2.759,4.734,3.904c1.711,1.155,3.541,2.149,5.437,2.951c1.933,0.819,3.957,1.444,6.013,1.866\r\n\t\t\t\tc2.109,0.435,4.277,0.652,6.446,0.652c2.167,0,4.335-0.217,6.442-0.652c2.057-0.422,4.081-1.047,6.014-1.866\r\n\t\t\t\tc1.896-0.802,3.727-1.795,5.436-2.951c1.694-1.146,3.287-2.458,4.735-3.904c1.446-1.449,2.761-3.039,3.905-4.733\r\n\t\t\t\tc1.155-1.709,2.149-3.542,2.951-5.439c0.817-1.932,1.446-3.957,1.866-6.013c0.432-2.106,0.651-4.275,0.651-6.448\r\n\t\t\t\tC64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67c6.919,0,13.234,2.579,18.049,6.819\r\n\t\t\t\tc-0.067,0.106-3.96,6.03-14.276,9.897C31.104,12.802,25.971,5.982,25.56,5.441C27.626,4.941,29.78,4.67,32.001,4.67z\r\n\t\t\t\t M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018C25.396,5.479,25.426,5.474,25.455,5.464z\r\n\t\t\t\t M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747c-13.123,3.487-24.511,3.35-25.233,3.337\r\n\t\t\t\tC7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.263c-4.352-4.842-7.001-11.244-7.001-18.266\r\n\t\t\t\tc0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894c0.784,1.532,1.532,3.09,2.218,4.645\r\n\t\t\t\tc-0.362,0.101-0.719,0.21-1.077,0.326C19.143,36.979,11.662,50.25,11.662,50.25S11.671,50.258,11.673,50.263z M32.001,59.33\r\n\t\t\t\tc-6.338,0-12.157-2.175-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01s-0.252-0.187-0.612-0.478\r\n\t\t\t\tc0.199,0.164,0.413,0.309,0.617,0.468c0.1-0.216,5.39-11.47,21.443-17.062c0.059-0.023,0.12-0.041,0.181-0.058\r\n\t\t\t\tc3.846,9.993,5.434,18.362,5.838,20.751C39.392,58.559,35.785,59.33,32.001,59.33z M47.272,54.668\r\n\t\t\t\tc-0.278-1.651-1.734-9.671-5.32-19.522c8.823-1.411,16.468,1.009,17.032,1.193C57.767,43.955,53.408,50.523,47.272,54.668z\r\n\t\t\t\t M40.286,30.832c-0.192-0.468-0.387-0.938-0.589-1.411c-0.569-1.337-1.181-2.662-1.817-3.964\r\n\t\t\t\tc10.793-4.405,15.174-10.741,15.226-10.817c3.833,4.655,6.152,10.602,6.215,17.087C58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"behance_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"behance","display":"inline"},"children":[{"name":"g","attribs":{"id":"behance","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338\r\n\t\t\t\tc0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255c7.179,0,14.027-3.472,14.027-11.584\r\n\t\t\t\tC33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18c3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749\r\n\t\t\t\tH7.991V18.774z M17.338,45.063H7.991V34.098h9.513c3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.063,17.338,45.063z\r\n\t\t\t\t M57.972,15.993H42.028v4.072h15.943V15.993z M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273\r\n\t\t\t\tc0,8.947,5.621,15.212,14.692,15.212c6.514,0,10.62-1.965,12.842-8.79h-6.328c-0.501,1.793-3.064,2.806-6.238,2.806\r\n\t\t\t\tc-4.395,0-6.843-1.855-7.064-6.891h20.756C64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198\r\n\t\t\t\tc0.109-2.234,1.556-5.709,6.563-5.709c3.839,0,5.568,1.684,6.293,5.709H43.262z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338\r\n\t\t\t\tc0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255c7.179,0,14.027-3.472,14.027-11.584\r\n\t\t\t\tC33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18c3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749\r\n\t\t\t\tH7.991V18.774z M17.338,45.063H7.991V34.098h9.513c3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.063,17.338,45.063z\r\n\t\t\t\t M57.972,15.993H42.028v4.072h15.943V15.993z M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273\r\n\t\t\t\tc0,8.947,5.621,15.212,14.692,15.212c6.514,0,10.62-1.965,12.842-8.79h-6.328c-0.501,1.793-3.064,2.806-6.238,2.806\r\n\t\t\t\tc-4.395,0-6.843-1.855-7.064-6.891h20.756C64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198\r\n\t\t\t\tc0.109-2.234,1.556-5.709,6.563-5.709c3.839,0,5.568,1.684,6.293,5.709H43.262z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"windows_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"windows","display":"inline"},"children":[{"name":"g","attribs":{"id":"windows","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.632\r\n\t\t\t\tV0.015L29.353,5.029z M0.015,54.721l25.809,3.738V33.765H0.015V54.721z M29.353,58.97l34.632,5.015v-30.22H29.353V58.97z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.632\r\n\t\t\t\tV0.015L29.353,5.029z M0.015,54.721l25.809,3.738V33.765H0.015V54.721z M29.353,58.97l34.632,5.015v-30.22H29.353V58.97z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"microsoft_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"microsoft","display":"inline"},"children":[{"name":"g","attribs":{"id":"microsoft","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486\r\n\t\t\t\tc-0.383,0-0.764,0.014-1.149,0.049c-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814l-5.924,22.12\r\n\t\t\t\tc4.476-1.944,8.093-2.72,11.133-2.72c5.01,0,8.484,2.084,11.763,4.435c1.217-4.441,5.348-19.634,6.133-22.527\r\n\t\t\t\tC28.143,32.94,27.25,32.344,26.307,31.796z M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382\r\n\t\t\t\tc1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548c-1.409-0.359-3.003-0.585-4.766-0.585h-0.069\r\n\t\t\t\tc-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86c4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.56,13.559\r\n\t\t\t\tc-6.488,0-10.766-2.974-12.658-4.559l-5.985,22.306c0.016,0.019,0.043,0.035,0.063,0.048c3.292,2.37,7.573,4.287,12.733,4.287\r\n\t\t\t\tc3.412,0,7.204-0.836,11.348-2.941v-0.03c0.009,0,0.021-0.008,0.036-0.014l5.902-21.899\r\n\t\t\t\tC59.641,12.807,55.824,13.559,52.56,13.559z M32.569,36.329l-5.905,22.085c-0.009-0.005,6.904,4.584,12.089,4.584\r\n\t\t\t\tc3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.292-11.184,2.292\r\n\t\t\t\tC38.529,40.813,34.367,37.874,32.569,36.329z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486\r\n\t\t\t\tc-0.383,0-0.764,0.014-1.149,0.049c-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814l-5.924,22.12\r\n\t\t\t\tc4.476-1.944,8.093-2.72,11.133-2.72c5.01,0,8.484,2.084,11.763,4.435c1.217-4.441,5.348-19.634,6.133-22.527\r\n\t\t\t\tC28.143,32.94,27.25,32.344,26.307,31.796z M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382\r\n\t\t\t\tc1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548c-1.409-0.359-3.003-0.585-4.766-0.585h-0.069\r\n\t\t\t\tc-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86c4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.56,13.559\r\n\t\t\t\tc-6.488,0-10.766-2.974-12.658-4.559l-5.985,22.306c0.016,0.019,0.043,0.035,0.063,0.048c3.292,2.37,7.573,4.287,12.733,4.287\r\n\t\t\t\tc3.412,0,7.204-0.836,11.348-2.941v-0.03c0.009,0,0.021-0.008,0.036-0.014l5.902-21.899\r\n\t\t\t\tC59.641,12.807,55.824,13.559,52.56,13.559z M32.569,36.329l-5.905,22.085c-0.009-0.005,6.904,4.584,12.089,4.584\r\n\t\t\t\tc3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.292-11.184,2.292\r\n\t\t\t\tC38.529,40.813,34.367,37.874,32.569,36.329z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"appstore_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"appstore","display":"inline"},"children":[{"name":"g","attribs":{"id":"appstore","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.03,28.052L24.522,39.43h17.661c-1.283-2.54-2.981-6.173-5.261-11.377H31.03\r\n\t\t\t\tz M31.735,21.424c0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328\r\n\t\t\t\tL12.899,39.43l-5.433,9.5c-0.409,0.708-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202\r\n\t\t\t\tl4.879-8.532L31.735,21.424z M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.736l-0.666,5.824\r\n\t\t\t\tc-0.093,0.81,0.382,1.101,1.054,0.642l4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35\r\n\t\t\t\tc-0.74,0-1.339,0.601-1.339,1.343v8.692c0,0.741,0.599,1.342,1.339,1.342h8.464L16.322,28.052z M62.65,28.052H49.643\r\n\t\t\t\tc1.53,2.879,2.948,5.589,3.948,7.505c0.692,1.325,1.239,2.372,1.433,2.723c0.202,0.372,0.346,0.756,0.444,1.149h7.183\r\n\t\t\t\tc0.739,0,1.339-0.601,1.339-1.342v-8.692C63.989,28.654,63.389,28.052,62.65,28.052z M52.677,39.575\r\n\t\t\t\tc-0.022-0.038-0.051-0.092-0.079-0.145c-0.358-0.665-1.255-2.394-2.433-4.639c-0.014-0.031-0.029-0.056-0.043-0.087\r\n\t\t\t\tc-0.09-0.173-0.181-0.346-0.275-0.525c-0.067-0.127-0.134-0.257-0.204-0.387c-0.057-0.112-0.117-0.224-0.175-0.339\r\n\t\t\t\tc-0.105-0.199-0.211-0.397-0.317-0.601c-0.034-0.064-0.066-0.127-0.1-0.191c-0.119-0.229-0.241-0.459-0.364-0.693\r\n\t\t\t\tc-0.035-0.066-0.07-0.132-0.106-0.201c-2.714-5.151-6.123-11.492-8.227-14.827c-3.683-5.844-8.599-15.583-9.971-14.89\r\n\t\t\t\tc-1.923,0.961,4.027,13.324,5.997,17.97c1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.774,2.14,0.344,3.169-0.084\r\n\t\t\t\tC51.774,42.729,53.619,41.3,52.677,39.575z M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107\r\n\t\t\t\tc1.657,2.349,5.362,2.454,5.85,4.013C62.065,61.986,63.229,50.061,56.504,53.867z M57.071,48.749l-1.835-3.536\r\n\t\t\t\tc-0.416-0.8-1.392-1.126-2.171-0.726l-2.213,1.144c-0.779,0.405-1.025,1.353-0.546,2.117l2.322,3.681\r\n\t\t\t\tc0.48,0.759,1.491,1.009,2.242,0.553l1.58-0.953C57.205,50.575,57.484,49.549,57.071,48.749z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.03,28.052L24.522,39.43h17.661c-1.283-2.54-2.981-6.173-5.261-11.377H31.03\r\n\t\t\t\tz M31.735,21.424c0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328\r\n\t\t\t\tL12.899,39.43l-5.433,9.5c-0.409,0.708-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202\r\n\t\t\t\tl4.879-8.532L31.735,21.424z M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.736l-0.666,5.824\r\n\t\t\t\tc-0.093,0.81,0.382,1.101,1.054,0.642l4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35\r\n\t\t\t\tc-0.74,0-1.339,0.601-1.339,1.343v8.692c0,0.741,0.599,1.342,1.339,1.342h8.464L16.322,28.052z M62.65,28.052H49.643\r\n\t\t\t\tc1.53,2.879,2.948,5.589,3.948,7.505c0.692,1.325,1.239,2.372,1.433,2.723c0.202,0.372,0.346,0.756,0.444,1.149h7.183\r\n\t\t\t\tc0.739,0,1.339-0.601,1.339-1.342v-8.692C63.989,28.654,63.389,28.052,62.65,28.052z M52.677,39.575\r\n\t\t\t\tc-0.022-0.038-0.051-0.092-0.079-0.145c-0.358-0.665-1.255-2.394-2.433-4.639c-0.014-0.031-0.029-0.056-0.043-0.087\r\n\t\t\t\tc-0.09-0.173-0.181-0.346-0.275-0.525c-0.067-0.127-0.134-0.257-0.204-0.387c-0.057-0.112-0.117-0.224-0.175-0.339\r\n\t\t\t\tc-0.105-0.199-0.211-0.397-0.317-0.601c-0.034-0.064-0.066-0.127-0.1-0.191c-0.119-0.229-0.241-0.459-0.364-0.693\r\n\t\t\t\tc-0.035-0.066-0.07-0.132-0.106-0.201c-2.714-5.151-6.123-11.492-8.227-14.827c-3.683-5.844-8.599-15.583-9.971-14.89\r\n\t\t\t\tc-1.923,0.961,4.027,13.324,5.997,17.97c1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.774,2.14,0.344,3.169-0.084\r\n\t\t\t\tC51.774,42.729,53.619,41.3,52.677,39.575z M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107\r\n\t\t\t\tc1.657,2.349,5.362,2.454,5.85,4.013C62.065,61.986,63.229,50.061,56.504,53.867z M57.071,48.749l-1.835-3.536\r\n\t\t\t\tc-0.416-0.8-1.392-1.126-2.171-0.726l-2.213,1.144c-0.779,0.405-1.025,1.353-0.546,2.117l2.322,3.681\r\n\t\t\t\tc0.48,0.759,1.491,1.009,2.242,0.553l1.58-0.953C57.205,50.575,57.484,49.549,57.071,48.749z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"apple_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"apple","display":"inline"},"children":[{"name":"g","attribs":{"id":"apple","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.112,10.214c2.399-2.709,4.021-6.473,3.579-10.221\r\n\t\t\t\tc-3.459,0.13-7.647,2.14-10.131,4.846c-2.224,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.112,10.214z\r\n\t\t\t\t M50.772,34.008c-0.087-8.109,7.104-11.997,7.426-12.193c-4.041-5.499-10.336-6.254-12.576-6.34\r\n\t\t\t\tc-5.355-0.506-10.451,2.935-13.169,2.935c-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028\r\n\t\t\t\tc-6.065,9.794-1.552,24.307,4.359,32.256c2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622\r\n\t\t\t\tc5.268,0,6.746,2.622,11.354,2.541c4.685-0.079,7.655-3.959,10.522-7.86c3.318-4.513,4.683-8.885,4.765-9.106\r\n\t\t\t\tC59.896,46.91,50.865,43.69,50.772,34.008z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.112,10.214c2.399-2.709,4.021-6.473,3.579-10.221\r\n\t\t\t\tc-3.459,0.13-7.647,2.14-10.131,4.846c-2.224,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.112,10.214z\r\n\t\t\t\t M50.772,34.008c-0.087-8.109,7.104-11.997,7.426-12.193c-4.041-5.499-10.336-6.254-12.576-6.34\r\n\t\t\t\tc-5.355-0.506-10.451,2.935-13.169,2.935c-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028\r\n\t\t\t\tc-6.065,9.794-1.552,24.307,4.359,32.256c2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622\r\n\t\t\t\tc5.268,0,6.746,2.622,11.354,2.541c4.685-0.079,7.655-3.959,10.522-7.86c3.318-4.513,4.683-8.885,4.765-9.106\r\n\t\t\t\tC59.896,46.91,50.865,43.69,50.772,34.008z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"android_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"android","display":"inline"},"children":[{"name":"g","attribs":{"id":"android","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717c1.995,0,3.613-1.665,3.613-3.717V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.144-1.031h6.708c-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717\r\n\t\t\t\tc1.995,0,3.613-1.665,3.613-3.717V52.45c0-0.358-0.052-0.704-0.144-1.031h2.752c2.103,0,3.812-1.761,3.812-3.926v-27.26H15.647\r\n\t\t\t\tV47.493z M9.626,20.233c-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717\r\n\t\t\t\tc1.994,0,3.612-1.665,3.612-3.717V23.951C13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717c1.995,0,3.611-1.665,3.611-3.717V23.951\r\n\t\t\t\tC58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355l0.678-1.047l0.668-1.032l1.501-2.318\r\n\t\t\t\tc0.184-0.285,0.109-0.669-0.166-0.859c-0.278-0.191-0.651-0.114-0.836,0.172l-1.609,2.485l-0.677,1.045L39.662,4.86\r\n\t\t\t\tC37.487,3.992,35.06,3.505,32.5,3.505c-2.559,0-4.986,0.487-7.16,1.354l-0.685-1.059l-0.676-1.045l-1.612-2.485\r\n\t\t\t\tc-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859c0-1.026,0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857\r\n\t\t\t\tC27.084,11.966,26.275,12.799,25.278,12.799z M39.724,12.799c-0.997,0-1.805-0.833-1.805-1.859c0-1.026,0.808-1.857,1.805-1.857\r\n\t\t\t\tc0.998,0,1.806,0.831,1.806,1.857C41.529,11.966,40.722,12.799,39.724,12.799z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717c1.995,0,3.613-1.665,3.613-3.717V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.144-1.031h6.708c-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717\r\n\t\t\t\tc1.995,0,3.613-1.665,3.613-3.717V52.45c0-0.358-0.052-0.704-0.144-1.031h2.752c2.103,0,3.812-1.761,3.812-3.926v-27.26H15.647\r\n\t\t\t\tV47.493z M9.626,20.233c-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717\r\n\t\t\t\tc1.994,0,3.612-1.665,3.612-3.717V23.951C13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717c1.995,0,3.611-1.665,3.611-3.717V23.951\r\n\t\t\t\tC58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355l0.678-1.047l0.668-1.032l1.501-2.318\r\n\t\t\t\tc0.184-0.285,0.109-0.669-0.166-0.859c-0.278-0.191-0.651-0.114-0.836,0.172l-1.609,2.485l-0.677,1.045L39.662,4.86\r\n\t\t\t\tC37.487,3.992,35.06,3.505,32.5,3.505c-2.559,0-4.986,0.487-7.16,1.354l-0.685-1.059l-0.676-1.045l-1.612-2.485\r\n\t\t\t\tc-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859c0-1.026,0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857\r\n\t\t\t\tC27.084,11.966,26.275,12.799,25.278,12.799z M39.724,12.799c-0.997,0-1.805-0.833-1.805-1.859c0-1.026,0.808-1.857,1.805-1.857\r\n\t\t\t\tc0.998,0,1.806,0.831,1.806,1.857C41.529,11.966,40.722,12.799,39.724,12.799z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RSS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RSS","display":"inline"},"children":[{"name":"g","attribs":{"id":"RSS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M8,48c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC16,51.582,12.418,48,8,48z M0,23v11c16.569,0,30,13.431,30,30h11C41,41.356,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53\r\n\t\t\t\th11C64,28.654,35.346,0,0,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M8,48c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC16,51.582,12.418,48,8,48z M0,23v11c16.569,0,30,13.431,30,30h11C41,41.356,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53\r\n\t\t\t\th11C64,28.654,35.346,0,0,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HASHTAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HASHTAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"HASHTAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,18h-8.69l2.614-11.325h0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L43.152,18H27.31l2.614-11.325h0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L21.152,18H12c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7.767l-3.692,16H6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325h0C12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46H36.69l-2.614,11.325h0C34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7.767l3.692-16H58c1.657,0,3-1.343,3-3\r\n\t\t\t\tC61,19.343,59.657,18,58,18z M38.075,40H22.233l3.692-16h15.842L38.075,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,18h-8.69l2.614-11.325h0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L43.152,18H27.31l2.614-11.325h0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L21.152,18H12c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7.767l-3.692,16H6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325h0C12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46H36.69l-2.614,11.325h0C34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7.767l3.692-16H58c1.657,0,3-1.343,3-3\r\n\t\t\t\tC61,19.343,59.657,18,58,18z M38.075,40H22.233l3.692-16h15.842L38.075,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COLUMNS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COLUMNS","display":"inline"},"children":[{"name":"g","attribs":{"id":"COLUMNS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC64,7.343,62.657,6,61,6z M21,52H6V12h15V52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC64,7.343,62.657,6,61,6z M21,52H6V12h15V52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.167,6.995l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322\r\n\t\t\t\tl8.446,8.429l6.334-6.322C62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.446-8.429L18.938,36.498l8.446,8.429\r\n\t\t\t\tL52.721,19.639z M13.998,49.84l11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.167,6.995l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322\r\n\t\t\t\tl8.446,8.429l6.334-6.322C62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.446-8.429L18.938,36.498l8.446,8.429\r\n\t\t\t\tL52.721,19.639z M13.998,49.84l11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.721,19.639l-8.446-8.429L12.938,36.498l8.446,8.429L46.721,19.639z\r\n\t\t\t\t M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429\r\n\t\t\t\tL55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,57.343,62.657,56,61,56z\r\n\t\t\t\t M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.721,19.639l-8.446-8.429L12.938,36.498l8.446,8.429L46.721,19.639z\r\n\t\t\t\t M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429\r\n\t\t\t\tL55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,57.343,62.657,56,61,56z\r\n\t\t\t\t M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.938,42.498l8.446,8.429l25.338-25.288l-8.446-8.429L12.938,42.498z\r\n\t\t\t\t M7.998,55.84l11.258-2.806l-8.447-8.431L7.998,55.84z M55.167,12.996l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0\r\n\t\t\t\tl-6.334,6.322l8.446,8.429l6.334-6.322C56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.938,42.498l8.446,8.429l25.338-25.288l-8.446-8.429L12.938,42.498z\r\n\t\t\t\t M7.998,55.84l11.258-2.806l-8.447-8.431L7.998,55.84z M55.167,12.996l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0\r\n\t\t\t\tl-6.334,6.322l8.446,8.429l6.334-6.322C56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_5_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43H6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC63.664,4.578,64,3.829,64,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43H6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC63.664,4.578,64,3.829,64,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_5_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_4_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757\r\n\t\t\t\tL60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L3.879,55.879\r\n\t\t\t\tC3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757\r\n\t\t\t\tL60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L3.879,55.879\r\n\t\t\t\tC3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_4_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.879-14.879\r\n\t\t\t\tC28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879\r\n\t\t\t\tC35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.879-14.879\r\n\t\t\t\tC28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879\r\n\t\t\t\tC35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COG","display":"inline"},"children":[{"name":"g","attribs":{"id":"COG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12\r\n\t\t\t\tC44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C38,35.314,35.314,38,32,38z\r\n\t\t\t\t M55.517,25.462c-0.54-1.957-1.326-3.811-2.31-5.536c1.121-1.507,4.981-7.143,2.199-9.926l-1.428-1.507\r\n\t\t\t\tc-2.379-2.378-8.455,1.336-9.93,2.298c-1.745-0.989-3.62-1.774-5.6-2.31c-0.317-1.887-1.704-8.487-5.619-8.487h-1.567\r\n\t\t\t\tc-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32C18.661,9.839,12.841,5.816,10,8.656L8.493,9.924\r\n\t\t\t\tc-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435c-1.641,0.262-8.649,1.614-8.649,5.646v1.566\r\n\t\t\t\tc0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.708,2.255,5.393c-0.791,1.24-4.745,7.74-2.292,10.194l1.427,1.188\r\n\t\t\t\tc3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334c1.789,1.058,3.726,1.895,5.773,2.47c0.335,1.378,2.275,8.676,5.755,8.676\r\n\t\t\t\th1.567c4.566,0,5.698-8.52,5.698-8.52l-0.419-0.013c2.07-0.529,4.032-1.325,5.851-2.345c1.426,0.95,7.401,4.689,9.786,2.304\r\n\t\t\t\tl1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877c0.985-1.722,1.774-3.571,2.317-5.525c1.78-0.452,8.483-2.374,8.483-5.707\r\n\t\t\t\tv-1.566C63.989,26.73,56.015,25.533,55.517,25.462z M32,50c-9.941,0-18-8.059-18-18s8.059-18,18-18s18,8.059,18,18\r\n\t\t\t\tS41.941,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12\r\n\t\t\t\tC44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C38,35.314,35.314,38,32,38z\r\n\t\t\t\t M55.517,25.462c-0.54-1.957-1.326-3.811-2.31-5.536c1.121-1.507,4.981-7.143,2.199-9.926l-1.428-1.507\r\n\t\t\t\tc-2.379-2.378-8.455,1.336-9.93,2.298c-1.745-0.989-3.62-1.774-5.6-2.31c-0.317-1.887-1.704-8.487-5.619-8.487h-1.567\r\n\t\t\t\tc-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32C18.661,9.839,12.841,5.816,10,8.656L8.493,9.924\r\n\t\t\t\tc-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435c-1.641,0.262-8.649,1.614-8.649,5.646v1.566\r\n\t\t\t\tc0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.708,2.255,5.393c-0.791,1.24-4.745,7.74-2.292,10.194l1.427,1.188\r\n\t\t\t\tc3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334c1.789,1.058,3.726,1.895,5.773,2.47c0.335,1.378,2.275,8.676,5.755,8.676\r\n\t\t\t\th1.567c4.566,0,5.698-8.52,5.698-8.52l-0.419-0.013c2.07-0.529,4.032-1.325,5.851-2.345c1.426,0.95,7.401,4.689,9.786,2.304\r\n\t\t\t\tl1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877c0.985-1.722,1.774-3.571,2.317-5.525c1.78-0.452,8.483-2.374,8.483-5.707\r\n\t\t\t\tv-1.566C63.989,26.73,56.015,25.533,55.517,25.462z M32,50c-9.941,0-18-8.059-18-18s8.059-18,18-18s18,8.059,18,18\r\n\t\t\t\tS41.941,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WARNING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WARNING","display":"inline"},"children":[{"name":"g","attribs":{"id":"WARNING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.563,53.463l0.017-0.011l-29-47l-0.017,0.01C34.039,5.59,33.092,5,32,5\r\n\t\t\t\tc-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01l-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03C62.671,57.982,64,56.648,64,55C64,54.435,63.835,53.914,63.563,53.463z M32,52\r\n\t\t\t\tc-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C36,50.209,34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22\r\n\t\t\t\tc0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.563,53.463l0.017-0.011l-29-47l-0.017,0.01C34.039,5.59,33.092,5,32,5\r\n\t\t\t\tc-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01l-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03C62.671,57.982,64,56.648,64,55C64,54.435,63.835,53.914,63.563,53.463z M32,52\r\n\t\t\t\tc-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C36,50.209,34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22\r\n\t\t\t\tc0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REPEAT_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"REPEAT_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tc-8.768,0-16.506-4.347-21.207-11H16c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-5.454C11.789,58.679,21.254,64,32,64c17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.733,0,32,0C14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8\r\n\t\t\t\tC64,6.343,62.657,5,61,5z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tc-8.768,0-16.506-4.347-21.207-11H16c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-5.454C11.789,58.679,21.254,64,32,64c17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.733,0,32,0C14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8\r\n\t\t\t\tC64,6.343,62.657,5,61,5z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REPEAT_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"REPEAT_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.769,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.769,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9v0H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121C64.016,19.177,63.68,18.427,63.137,17.884z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9v0H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121C64.016,19.177,63.68,18.427,63.137,17.884z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-2.999,1.343-2.999,3c0,0.829,0.336,1.579,0.879,2.122l1.878,1.879h-1.773v0.005h-2.999v0h-2.757L15.118,10.879\r\n\t\t\t\tC14.575,10.336,13.825,10,12.997,10H2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126\r\n\t\t\t\tc0.543,0.543,1.293,0.879,2.121,0.879h8.766l-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-2.999,1.343-2.999,3c0,0.829,0.336,1.579,0.879,2.122l1.878,1.879h-1.773v0.005h-2.999v0h-2.757L15.118,10.879\r\n\t\t\t\tC14.575,10.336,13.825,10,12.997,10H2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126\r\n\t\t\t\tc0.543,0.543,1.293,0.879,2.121,0.879h8.766l-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHUFFLE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHUFFLE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHUFFLE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879\r\n\t\t\t\tC14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121c0-0.828-0.336-1.578-0.879-2.121l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19H52z M56.137,38.874\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52V45h-5.757\r\n\t\t\t\tL35.364,34.121l-4.243,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879\r\n\t\t\t\tC14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121c0-0.828-0.336-1.578-0.879-2.121l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19H52z M56.137,38.874\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52V45h-5.757\r\n\t\t\t\tL35.364,34.121l-4.243,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003\r\n\t\t\t\tC3.325,56.457,3,57.19,3,58c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V38C29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.81,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3H38\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.19,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.81-0.325-1.543-0.847-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843L8.083,3.847\r\n\t\t\t\tC7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003\r\n\t\t\t\tC3.325,56.457,3,57.19,3,58c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V38C29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.81,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3H38\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.19,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.81-0.325-1.543-0.847-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843L8.083,3.847\r\n\t\t\t\tC7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003\r\n\t\t\t\tC24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083L28.157,23.914z M26,35\r\n\t\t\t\tc-0.81,0-1.543,0.325-2.082,0.847l-0.003-0.003L9,50.757V46c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.81,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.81,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.81,0.324,1.543,0.847,2.083l-0.003,0.003L50.757,55H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L35.843,23.914\r\n\t\t\t\tl0.003,0.003C35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003\r\n\t\t\t\tC24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083L28.157,23.914z M26,35\r\n\t\t\t\tc-0.81,0-1.543,0.325-2.082,0.847l-0.003-0.003L9,50.757V46c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.81,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.81,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.81,0.324,1.543,0.847,2.083l-0.003,0.003L50.757,55H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L35.843,23.914\r\n\t\t\t\tl0.003,0.003C35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32c0,0.885,0.384,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0L10.818,35H29v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.772,44,51c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32c0,0.885,0.384,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0L10.818,35H29v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.772,44,51c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\tc0,0.885,0.383,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23\r\n\t\t\t\tl0,0L10.818,35h42.364l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0\r\n\t\t\t\tl10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\tc0,0.885,0.383,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23\r\n\t\t\t\tl0,0L10.818,35h42.364l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0\r\n\t\t\t\tl10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_VERTICAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,48c-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.189l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0C30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,52.475,44,51.772,44,51C44,49.343,42.657,48,41,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,48c-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.189l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0C30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,52.475,44,51.772,44,51C44,49.343,42.657,48,41,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007\r\n\t\t\t\tL48,53.182V29c0,0,0,0,0,0V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7.818l0,0V26h0v13h0v14.182l-3.77-4.189L38.222,49\r\n\t\t\t\tc-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L42.778,63\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c0.885,0,1.672-0.391,2.222-1l0.008,0.007l9-10L56.222,53C56.701,52.468,57,51.772,57,51z\r\n\t\t\t\t M30.23,10.993l-9-10l-0.008,0.007C20.673,0.391,19.885,0,19,0c-0.885,0-1.673,0.391-2.222,1.001L16.77,0.993l-9,10l0.008,0.007\r\n\t\t\t\tC7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818V25h0v13h0v15.182h0V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V29c0,0,0,0,0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007\r\n\t\t\t\tL48,53.182V29c0,0,0,0,0,0V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7.818l0,0V26h0v13h0v14.182l-3.77-4.189L38.222,49\r\n\t\t\t\tc-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L42.778,63\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c0.885,0,1.672-0.391,2.222-1l0.008,0.007l9-10L56.222,53C56.701,52.468,57,51.772,57,51z\r\n\t\t\t\t M30.23,10.993l-9-10l-0.008,0.007C20.673,0.391,19.885,0,19,0c-0.885,0-1.673,0.391-2.222,1.001L16.77,0.993l-9,10l0.008,0.007\r\n\t\t\t\tC7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818V25h0v13h0v15.182h0V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V29c0,0,0,0,0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,22h32c0,0,0,0,0,0h18.182l-4.189,3.77L49,25.779\r\n\t\t\t\tc-0.61,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222\r\n\t\t\t\tc0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.673-1-2.222l0.007-0.008l-10-9L53,7.778C52.468,7.3,51.772,7,51,7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39v0H26v0H10.818l0,0H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,20.657,1.343,22,3,22z M61,42h-7.818l0,0H38v0H25v0H10.818l4.189-3.77L15,38.222c0.61-0.549,1-1.336,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L1,42.778C0.391,43.328,0,44.115,0,45\r\n\t\t\t\tc0,0.885,0.391,1.672,1,2.222L0.993,47.23l10,9L11,56.222C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L10.818,48H35c0,0,0,0,0,0h26c1.657,0,3-1.343,3-3C64,43.343,62.657,42,61,42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,22h32c0,0,0,0,0,0h18.182l-4.189,3.77L49,25.779\r\n\t\t\t\tc-0.61,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222\r\n\t\t\t\tc0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.673-1-2.222l0.007-0.008l-10-9L53,7.778C52.468,7.3,51.772,7,51,7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39v0H26v0H10.818l0,0H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,20.657,1.343,22,3,22z M61,42h-7.818l0,0H38v0H25v0H10.818l4.189-3.77L15,38.222c0.61-0.549,1-1.336,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L1,42.778C0.391,43.328,0,44.115,0,45\r\n\t\t\t\tc0,0.885,0.391,1.672,1,2.222L0.993,47.23l10,9L11,56.222C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L10.818,48H35c0,0,0,0,0,0h26c1.657,0,3-1.343,3-3C64,43.343,62.657,42,61,42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHARE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHARE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V10.818l3.77,4.189L38.778,15c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.299-1.468-0.778-2l0.008-0.007l-9-10L34.222,1C33.673,0.391,32.885,0,32,0c-0.885,0-1.673,0.39-2.222,1L29.77,0.993\r\n\t\t\t\tl-9,10L20.778,11C20.3,11.532,20,12.228,20,13C20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V10.818l3.77,4.189L38.778,15c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.299-1.468-0.778-2l0.008-0.007l-9-10L34.222,1C33.673,0.391,32.885,0,32,0c-0.885,0-1.673,0.39-2.222,1L29.77,0.993\r\n\t\t\t\tl-9,10L20.778,11C20.3,11.532,20,12.228,20,13C20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHARE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHARE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,26.168V52H12V12h25.832C37.317,11.114,37,10.098,37,9\r\n\t\t\t\tc0-1.099,0.317-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168\r\n\t\t\t\tC57.114,26.683,56.099,27,55,27C53.902,27,52.886,26.683,52,26.168z M55,6H43c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757\r\n\t\t\t\tL32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003\r\n\t\t\t\tL52,16.243V21c0,1.657,1.343,3,2.999,3h0.001C56.657,24,58,22.657,58,21V9C58,7.343,56.657,6,55,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,26.168V52H12V12h25.832C37.317,11.114,37,10.098,37,9\r\n\t\t\t\tc0-1.099,0.317-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168\r\n\t\t\t\tC57.114,26.683,56.099,27,55,27C53.902,27,52.886,26.683,52,26.168z M55,6H43c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757\r\n\t\t\t\tL32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003\r\n\t\t\t\tL52,16.243V21c0,1.657,1.343,3,2.999,3h0.001C56.657,24,58,22.657,58,21V9C58,7.343,56.657,6,55,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M61,0H49\r\n\t\t\t\tc0,0,0,0,0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M61,0H49\r\n\t\t\t\tc0,0,0,0,0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3c0,0,0,0,0,0H3C1.343,0,0,1.343,0,3v12\r\n\t\t\t\tc0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V6L15,6L15,6z M64,49c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3L64,49L64,49z M55,9H9v46h46V9z M49,49H15V15\r\n\t\t\t\th34V49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3c0,0,0,0,0,0H3C1.343,0,0,1.343,0,3v12\r\n\t\t\t\tc0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V6L15,6L15,6z M64,49c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3L64,49L64,49z M55,9H9v46h46V9z M49,49H15V15\r\n\t\t\t\th34V49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,0H49c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,0H49c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IMAGE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAGE","display":"inline"},"children":[{"name":"g","attribs":{"id":"IMAGE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,15L40,15l9,0v9c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3c0,0,0,0,0,0V13h0\r\n\t\t\t\tV9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4h0V40c0,0,0,0,0,0c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h-9v0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C37,53.657,38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3v0h-9v-9h0c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c0,0,0,0,0,0v11h0v4H24C24,55,24,55,24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3h0v-9h9v0c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3c0,0,0,0,0,0H9v4h0L9,24C9,24,9,24,9,24z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,15L40,15l9,0v9c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3c0,0,0,0,0,0V13h0\r\n\t\t\t\tV9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4h0V40c0,0,0,0,0,0c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h-9v0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C37,53.657,38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3v0h-9v-9h0c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c0,0,0,0,0,0v11h0v4H24C24,55,24,55,24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3h0v-9h9v0c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3c0,0,0,0,0,0H9v4h0L9,24C9,24,9,24,9,24z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243\r\n\t\t\t\tl8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243\r\n\t\t\t\tl8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M46,43.001C46,43.001,46,43,46,43.001C46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL28,35.757l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z\r\n\t\t\t\t M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M46,43.001C46,43.001,46,43,46,43.001C46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL28,35.757l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z\r\n\t\t\t\t M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M19,35h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M19,35h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M19,35h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M19,35h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GRID_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"GRID_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C29,36.343,27.657,35,26,35z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC61,36.343,59.657,35,58,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C29,36.343,27.657,35,26,35z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC61,36.343,59.657,35,58,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GRID_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"GRID_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C61,36.343,59.657,35,58,35z M55,55H41V41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55H9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\th20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41V9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14V23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C61,36.343,59.657,35,58,35z M55,55H41V41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55H9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\th20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41V9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14V23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"UNLOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UNLOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"UNLOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z M44,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z M44,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX__x2F__OUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V15.243l1.879,1.879C37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tl-7-7C33.578,5.336,32.829,5,32,5c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15\r\n\t\t\t\tC22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941C55.406,14.827,54.3,14,53,14h-8.101C44.954,14.327,45,14.658,45,15\r\n\t\t\t\tc0,2.09-1.071,3.926-2.691,5h8.623l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623\r\n\t\t\t\tC20.071,18.926,19,17.09,19,15c0-0.342,0.046-0.673,0.101-1H11c0,0,0,0,0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924\r\n\t\t\t\tC0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V15.243l1.879,1.879C37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tl-7-7C33.578,5.336,32.829,5,32,5c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15\r\n\t\t\t\tC22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941C55.406,14.827,54.3,14,53,14h-8.101C44.954,14.327,45,14.658,45,15\r\n\t\t\t\tc0,2.09-1.071,3.926-2.691,5h8.623l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623\r\n\t\t\t\tC20.071,18.926,19,17.09,19,15c0-0.342,0.046-0.673,0.101-1H11c0,0,0,0,0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924\r\n\t\t\t\tC0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX__x2F__IN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37\r\n\t\t\t\ts1.578-0.336,2.121-0.879l7-7C41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924\r\n\t\t\t\tl-7.978-20.941C55.406,14.827,54.3,14,53,14H38v6h12.932l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15H26v-6H11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37\r\n\t\t\t\ts1.578-0.336,2.121-0.879l7-7C41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924\r\n\t\t\t\tl-7.978-20.941C55.406,14.827,54.3,14,53,14H38v6h12.932l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15H26v-6H11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.28,9,53,9H11\r\n\t\t\t\tc-1.28,0-2.365,0.806-2.796,1.935l-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V33C64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15h37.865l5.714,15H47z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.28,9,53,9H11\r\n\t\t\t\tc-1.28,0-2.365,0.806-2.796,1.935l-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V33C64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15h37.865l5.714,15H47z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SLIDESHOW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SLIDESHOW","display":"inline"},"children":[{"name":"g","attribs":{"id":"SLIDESHOW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC15,19.343,13.657,18,12,18z M3,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C6,13.343,4.657,12,3,12z\r\n\t\t\t\t M52,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC15,19.343,13.657,18,12,18z M3,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C6,13.343,4.657,12,3,12z\r\n\t\t\t\t M52,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOICEMAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOICEMAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOICEMAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.731,2.52,8H25.48\r\n\t\t\t\tc1.584-2.269,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14S0,24.268,0,32s6.268,14,14,14h36c7.732,0,14-6.268,14-14S57.732,18,50,18\r\n\t\t\t\tz M14,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8\r\n\t\t\t\tS54.418,40,50,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.731,2.52,8H25.48\r\n\t\t\t\tc1.584-2.269,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14S0,24.268,0,32s6.268,14,14,14h36c7.732,0,14-6.268,14-14S57.732,18,50,18\r\n\t\t\t\tz M14,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8\r\n\t\t\t\tS54.418,40,50,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CREDIT_CARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z\r\n\t\t\t\t M6,45h12v3H6V45z M61,10H3c-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z\r\n\t\t\t\t M6,45h12v3H6V45z M61,10H3c-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HOME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HOME","display":"inline"},"children":[{"name":"g","attribs":{"id":"HOME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39\r\n\t\t\t\tz M27,51H15V39h12V51z M63.189,31.96l0.007-0.007L52,20.757V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2.757L34.196,2.953\r\n\t\t\t\tl-0.002,0.002c-0.478-0.512-1.132-0.857-1.866-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2C32.001,2,32,2,32,2c-0.85,0-1.616,0.354-2.162,0.922\r\n\t\t\t\tL0.922,31.838C0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001\r\n\t\t\t\tl0.077,0.072l0,0.002l26.877,26.877l0.007-0.007C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,33.21,63.688,32.496,63.189,31.96z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39\r\n\t\t\t\tz M27,51H15V39h12V51z M63.189,31.96l0.007-0.007L52,20.757V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2.757L34.196,2.953\r\n\t\t\t\tl-0.002,0.002c-0.478-0.512-1.132-0.857-1.866-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2C32.001,2,32,2,32,2c-0.85,0-1.616,0.354-2.162,0.922\r\n\t\t\t\tL0.922,31.838C0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001\r\n\t\t\t\tl0.077,0.072l0,0.002l26.877,26.877l0.007-0.007C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,33.21,63.688,32.496,63.189,31.96z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SUITCASE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SUITCASE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SUITCASE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3\r\n\t\t\t\tc-8.284,0-15,6.716-15,15h-6v43h42V18h-6C47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5\r\n\t\t\t\tv43h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3\r\n\t\t\t\tc-8.284,0-15,6.716-15,15h-6v43h42V18h-6C47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5\r\n\t\t\t\tv43h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TAGS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAGS","display":"inline"},"children":[{"name":"g","attribs":{"id":"TAGS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.113,26.872l-5.133-4.91c-0.005,0.009-0.011,0.019-0.016,0.028L34.126,5.884\r\n\t\t\t\tC33.582,5.338,32.831,5,32,5c-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9\r\n\t\t\t\tl0.002,0.001C56.731,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951\r\n\t\t\t\tc-0.001-0.087-0.004-0.174-0.013-0.259c-0.002-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253\r\n\t\t\t\tc0-0.002-0.001-0.003-0.001-0.004c-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001v-0.008H10V11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196\r\n\t\t\t\tl-0.011,0.012l25,23l0.005-0.005c0.395,0.347,0.88,0.593,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01\r\n\t\t\t\tc0.067,0.011,0.134,0.022,0.202,0.029C34.806,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20\r\n\t\t\t\tl-0.001-0.001C54.73,37.418,55,36.741,55,36C55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4\r\n\t\t\t\tc0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C19,21.209,17.209,23,15,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.113,26.872l-5.133-4.91c-0.005,0.009-0.011,0.019-0.016,0.028L34.126,5.884\r\n\t\t\t\tC33.582,5.338,32.831,5,32,5c-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9\r\n\t\t\t\tl0.002,0.001C56.731,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951\r\n\t\t\t\tc-0.001-0.087-0.004-0.174-0.013-0.259c-0.002-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253\r\n\t\t\t\tc0-0.002-0.001-0.003-0.001-0.004c-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001v-0.008H10V11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196\r\n\t\t\t\tl-0.011,0.012l25,23l0.005-0.005c0.395,0.347,0.88,0.593,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01\r\n\t\t\t\tc0.067,0.011,0.134,0.022,0.202,0.029C34.806,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20\r\n\t\t\t\tl-0.001-0.001C54.73,37.418,55,36.741,55,36C55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4\r\n\t\t\t\tc0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C19,21.209,17.209,23,15,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"TAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,33c0-0.017-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258\r\n\t\t\t\tc-0.001-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253c0-0.002-0.001-0.003-0.001-0.005\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884C31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8\r\n\t\t\t\tc-1.657,0-3,1.343-3,3H7.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.005-0.005\r\n\t\t\t\tc0.395,0.347,0.88,0.592,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01c0.067,0.011,0.134,0.022,0.202,0.029\r\n\t\t\t\tC35.806,55.995,35.902,56,36,56c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20l-0.001-0.001C55.73,34.418,56,33.741,56,33z\r\n\t\t\t\t M16,20c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C20,18.209,18.209,20,16,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,33c0-0.017-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258\r\n\t\t\t\tc-0.001-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253c0-0.002-0.001-0.003-0.001-0.005\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884C31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8\r\n\t\t\t\tc-1.657,0-3,1.343-3,3H7.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.005-0.005\r\n\t\t\t\tc0.395,0.347,0.88,0.592,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01c0.067,0.011,0.134,0.022,0.202,0.029\r\n\t\t\t\tC35.806,55.995,35.902,56,36,56c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20l-0.001-0.001C55.73,34.418,56,33.741,56,33z\r\n\t\t\t\t M16,20c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C20,18.209,18.209,20,16,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z\r\n\t\t\t\t M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z\r\n\t\t\t\t M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M28.623,9.469\r\n\t\t\t\tL28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789\r\n\t\t\t\tL28.623,9.469z M47,41.476V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0\r\n\t\t\t\tc0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42\r\n\t\t\t\tC49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tc0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13C64,18.82,58.18,13,51,13z M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3C60,23.828,59.664,24.579,59.121,25.122z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M28.623,9.469\r\n\t\t\t\tL28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789\r\n\t\t\t\tL28.623,9.469z M47,41.476V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0\r\n\t\t\t\tc0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42\r\n\t\t\t\tC49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tc0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13C64,18.82,58.18,13,51,13z M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3C60,23.828,59.664,24.579,59.121,25.122z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.673,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z\r\n\t\t\t\t M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29H45c-1.657,0-3-1.343-3-3\r\n\t\t\t\ts1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.673,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z\r\n\t\t\t\t M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29H45c-1.657,0-3-1.343-3-3\r\n\t\t\t\ts1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3S58.657,29,57,29z M47,41.476V50c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3V38.479C37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3S58.657,29,57,29z M47,41.476V50c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3V38.479C37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019\r\n\t\t\t\tc-0.001-0.074-0.005-0.148-0.011-0.221c-0.003-0.042-0.008-0.084-0.013-0.125c-0.005-0.04-0.011-0.08-0.017-0.12\r\n\t\t\t\tc-0.219-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002L58.342,31H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469\r\n\t\t\t\tL42.017,22h6.789l-8.12-15.338l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462\r\n\t\t\t\tL35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019\r\n\t\t\t\tc-0.001-0.074-0.005-0.148-0.011-0.221c-0.003-0.042-0.008-0.084-0.013-0.125c-0.005-0.04-0.011-0.08-0.017-0.12\r\n\t\t\t\tc-0.219-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002L58.342,31H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469\r\n\t\t\t\tL42.017,22h6.789l-8.12-15.338l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462\r\n\t\t\t\tL35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_BAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8\r\n\t\t\t\tc0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H9c-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15\r\n\t\t\t\tc0-4.971,4.029-9,9-9s9,4.03,9,9H23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8\r\n\t\t\t\tc0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H9c-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15\r\n\t\t\t\tc0-4.971,4.029-9,9-9s9,4.03,9,9H23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,9h44c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H10C8.343,3,7,4.343,7,6\r\n\t\t\t\tC7,7.657,8.343,9,10,9z M58.375,12H5.625L0,27c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tc0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8L58.375,12z M55,37.952V37.95\r\n\t\t\t\tc-0.287-0.026-0.57-0.069-0.85-0.117c-0.06-0.01-0.122-0.015-0.182-0.026c-0.13-0.024-0.256-0.061-0.384-0.09\r\n\t\t\t\tc-0.542-0.124-1.074-0.278-1.584-0.477V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478c-0.128,0.029-0.253,0.065-0.382,0.09\r\n\t\t\t\tc-0.06,0.011-0.122,0.016-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002C8.671,37.982,8.338,38,8,38\r\n\t\t\t\tc-0.684,0-1.351-0.071-2-0.19V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.81C57.351,37.929,56.684,38,56,38\r\n\t\t\t\tC55.663,38,55.329,37.982,55,37.952z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,9h44c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H10C8.343,3,7,4.343,7,6\r\n\t\t\t\tC7,7.657,8.343,9,10,9z M58.375,12H5.625L0,27c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tc0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8L58.375,12z M55,37.952V37.95\r\n\t\t\t\tc-0.287-0.026-0.57-0.069-0.85-0.117c-0.06-0.01-0.122-0.015-0.182-0.026c-0.13-0.024-0.256-0.061-0.384-0.09\r\n\t\t\t\tc-0.542-0.124-1.074-0.278-1.584-0.477V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478c-0.128,0.029-0.253,0.065-0.382,0.09\r\n\t\t\t\tc-0.06,0.011-0.122,0.016-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002C8.671,37.982,8.338,38,8,38\r\n\t\t\t\tc-0.684,0-1.351-0.071-2-0.19V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.81C57.351,37.929,56.684,38,56,38\r\n\t\t\t\tC55.663,38,55.329,37.982,55,37.952z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\tc3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,17\r\n\t\t\t\tl1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879\r\n\t\t\t\tC48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3c0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\tc3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,17\r\n\t\t\t\tl1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879\r\n\t\t\t\tC48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3c0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879L49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8C50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\ts6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879L49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8C50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\ts6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13S38,9.82,38,17\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457\r\n\t\t\t\tl-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004\r\n\t\t\t\tC14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13S38,9.82,38,17\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457\r\n\t\t\t\tl-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004\r\n\t\t\t\tC14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h3v-3c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3s-1.343,3-3,3h-3v3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.779l-1.498-4.279L52.2,42.993\r\n\t\t\t\tv-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719\r\n\t\t\t\tL18.678,23h17.496C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h3v-3c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3s-1.343,3-3,3h-3v3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.779l-1.498-4.279L52.2,42.993\r\n\t\t\t\tv-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719\r\n\t\t\t\tL18.678,23h17.496C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.762h0l9-20l-0.005-0.002\r\n\t\t\t\tC63.901,17.853,64,17.439,64,17c0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6c0-3.314-2.686-6-6-6H27.778l-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.845L18.679,20\r\n\t\t\t\tH56.36l-6.357,14.127L24.224,35.845z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.762h0l9-20l-0.005-0.002\r\n\t\t\t\tC63.901,17.853,64,17.439,64,17c0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6c0-3.314-2.686-6-6-6H27.778l-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.845L18.679,20\r\n\t\t\t\tH56.36l-6.357,14.127L24.224,35.845z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CAMERA_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CAMERA","display":"inline"},"children":[{"name":"g","attribs":{"id":"CAMERA","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12c6.627,0,12-5.373,12-12\r\n\t\t\t\tC44,27.373,38.627,22,32,22z M61,12H48.243l-5.094-5.094l-0.003,0.003C42.602,6.35,41.843,6,41,6H23\r\n\t\t\t\tc-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15\r\n\t\t\t\tC64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC50,43.941,41.941,52,32,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12c6.627,0,12-5.373,12-12\r\n\t\t\t\tC44,27.373,38.627,22,32,22z M61,12H48.243l-5.094-5.094l-0.003,0.003C42.602,6.35,41.843,6,41,6H23\r\n\t\t\t\tc-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15\r\n\t\t\t\tC64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC50,43.941,41.941,52,32,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MUSIC_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MUSIC","display":"inline"},"children":[{"name":"g","attribs":{"id":"MUSIC","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V3C63,1.343,61.657,0,60,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V3C63,1.343,61.657,0,60,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PROGRESS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PROGRESS","display":"inline"},"children":[{"name":"g","attribs":{"id":"PROGRESS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32\r\n\t\t\t\tC29,30.343,27.657,29,26,29z M14,37c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z\r\n\t\t\t\t M50,13c-1.657,0-3,1.343-3,3v32c0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32\r\n\t\t\t\tC29,30.343,27.657,29,26,29z M14,37c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z\r\n\t\t\t\t M50,13c-1.657,0-3,1.343-3,3v32c0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CODE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CODE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CODE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735\r\n\t\t\t\tC0.413,30.285,0,31.091,0,32c0,0.844,0.351,1.604,0.912,2.149L0.91,34.152l12,12l0.003-0.003C13.453,46.674,14.187,47,15,47\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003\r\n\t\t\t\tc0.561-0.545,0.913-1.305,0.913-2.149C18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265\r\n\t\t\t\tL51.153,17.91l-0.003,0.003C50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.351,1.604,0.913,2.149l-0.003,0.003\r\n\t\t\t\tl9.863,9.863l-9.894,9.895l0.003,0.003c-0.525,0.54-0.851,1.275-0.851,2.087c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.813,0,1.547-0.326,2.088-0.851l0.003,0.003l12-12l-0.003-0.003C63.68,33.604,64.031,32.844,64.031,32z M40,8\r\n\t\t\t\tc-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924C21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.983\r\n\t\t\t\tL42.8,12.076C42.929,11.742,43,11.38,43,11C43,9.343,41.657,8,40,8z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735\r\n\t\t\t\tC0.413,30.285,0,31.091,0,32c0,0.844,0.351,1.604,0.912,2.149L0.91,34.152l12,12l0.003-0.003C13.453,46.674,14.187,47,15,47\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003\r\n\t\t\t\tc0.561-0.545,0.913-1.305,0.913-2.149C18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265\r\n\t\t\t\tL51.153,17.91l-0.003,0.003C50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.351,1.604,0.913,2.149l-0.003,0.003\r\n\t\t\t\tl9.863,9.863l-9.894,9.895l0.003,0.003c-0.525,0.54-0.851,1.275-0.851,2.087c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.813,0,1.547-0.326,2.088-0.851l0.003,0.003l12-12l-0.003-0.003C63.68,33.604,64.031,32.844,64.031,32z M40,8\r\n\t\t\t\tc-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924C21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.983\r\n\t\t\t\tL42.8,12.076C42.929,11.742,43,11.38,43,11C43,9.343,41.657,8,40,8z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINK","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.461,45.766c-0.056,0.061-0.096,0.131-0.155,0.19l-8.349,8.37\r\n\t\t\t\tc-2.306,2.311-6.043,2.311-8.349,0c-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.03,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05l-8.349,8.37c-4.611,4.623-4.611,12.118,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.37c3.092-3.1,4.1-7.489,3.045-11.44L26.461,45.766z M58.481,5.401c-4.611-4.623-12.086-4.623-16.697,0l-8.349,8.37\r\n\t\t\t\tc-3.082,3.09-4.093,7.462-3.054,11.403l7.221-7.221l0.006,0.006c0.001-0.001,0.001-0.002,0.002-0.002l8.349-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.349,0c2.305,2.311,2.305,6.059,0,8.37l-8.349,8.37c-0.097,0.098-0.211,0.167-0.313,0.256l-6.97,6.97\r\n\t\t\t\tc3.953,1.078,8.353,0.071,11.457-3.041l8.349-8.37C63.091,17.518,63.091,10.023,58.481,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.644,0.374-2.192,0.964L19.964,39.808C19.375,40.356,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.009l20-20l-0.009-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.461,45.766c-0.056,0.061-0.096,0.131-0.155,0.19l-8.349,8.37\r\n\t\t\t\tc-2.306,2.311-6.043,2.311-8.349,0c-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.03,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05l-8.349,8.37c-4.611,4.623-4.611,12.118,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.37c3.092-3.1,4.1-7.489,3.045-11.44L26.461,45.766z M58.481,5.401c-4.611-4.623-12.086-4.623-16.697,0l-8.349,8.37\r\n\t\t\t\tc-3.082,3.09-4.093,7.462-3.054,11.403l7.221-7.221l0.006,0.006c0.001-0.001,0.001-0.002,0.002-0.002l8.349-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.349,0c2.305,2.311,2.305,6.059,0,8.37l-8.349,8.37c-0.097,0.098-0.211,0.167-0.313,0.256l-6.97,6.97\r\n\t\t\t\tc3.953,1.078,8.353,0.071,11.457-3.041l8.349-8.37C63.091,17.518,63.091,10.023,58.481,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.644,0.374-2.192,0.964L19.964,39.808C19.375,40.356,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.009l20-20l-0.009-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BIN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BIN","display":"inline"},"children":[{"name":"g","attribs":{"id":"BIN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"EQUALIZER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EQUALIZER","display":"inline"},"children":[{"name":"g","attribs":{"id":"EQUALIZER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tV26C16,24.343,14.657,23,13,23z M13,3c0-1.657-1.343-3-3-3C8.343,0,7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv25h6V3z M57,3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V44H7V61z M57,15\r\n\t\t\t\th-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V36h-6V61z M29,61c0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34C38,32.343,36.657,31,35,31z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tV26C16,24.343,14.657,23,13,23z M13,3c0-1.657-1.343-3-3-3C8.343,0,7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv25h6V3z M57,3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V44H7V61z M57,15\r\n\t\t\t\th-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V36h-6V61z M29,61c0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34C38,32.343,36.657,31,35,31z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MORE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"MORE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.315,0,6.002-2.687,6.002-6.001C38,28.687,35.313,26,31.998,26z M31.998,19.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,9.687,35.313,7,31.998,7c-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45\r\n\t\t\t\tc-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,47.687,35.313,45,31.998,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.315,0,6.002-2.687,6.002-6.001C38,28.687,35.313,26,31.998,26z M31.998,19.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,9.687,35.313,7,31.998,7c-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45\r\n\t\t\t\tc-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,47.687,35.313,45,31.998,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__CENTER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53\r\n\t\t\t\tH21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53\r\n\t\t\t\tH21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C0,25.657,1.343,27,3,27z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z\r\n\t\t\t\t M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C0,25.657,1.343,27,3,27z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z\r\n\t\t\t\t M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY_FULL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"STAR_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STAR","display":"inline"},"children":[{"name":"g","attribs":{"id":"STAR","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.351,2,32,2\r\n\t\t\t\tc-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3c-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0l16.118,11.66l-6.209,18.971\r\n\t\t\t\tC11.053,59.357,11,59.672,11,60c0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.571l0.001,0.001L32,50.681l16.242,11.749\r\n\t\t\t\tl0.001-0.001C48.737,62.788,49.343,63,50,63c1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.151-0.938L46.641,40.09l16.118-11.66l0,0\r\n\t\t\t\tC63.51,27.885,64,27,64,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.351,2,32,2\r\n\t\t\t\tc-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3c-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0l16.118,11.66l-6.209,18.971\r\n\t\t\t\tC11.053,59.357,11,59.672,11,60c0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.571l0.001,0.001L32,50.681l16.242,11.749\r\n\t\t\t\tl0.001-0.001C48.737,62.788,49.343,63,50,63c1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.151-0.938L46.641,40.09l16.118-11.66l0,0\r\n\t\t\t\tC63.51,27.885,64,27,64,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51.841,47.327L45.515,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv34c0,1.656,1.341,2.998,2.996,3H7.5v0H8v6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393\r\n\t\t\t\tc0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184\r\n\t\t\t\tc0.098,0.145,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.535,1.271,0.865,2.084,0.875\r\n\t\t\t\tC10.976,62.996,10.987,63,11,63c0.828,0,1.578-0.336,2.121-0.879L21.243,54H22v0h3v0h6.9v0H53v0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.614,0-3.072-0.645-4.151-1.681L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.013,0,0.025-0.004,0.037-0.004c0.813-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.235-0.259,0.333-0.404c0.039-0.057,0.065-0.123,0.1-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.046-0.129,0.094-0.257,0.122-0.393\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51.841,47.327L45.515,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv34c0,1.656,1.341,2.998,2.996,3H7.5v0H8v6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393\r\n\t\t\t\tc0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184\r\n\t\t\t\tc0.098,0.145,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.535,1.271,0.865,2.084,0.875\r\n\t\t\t\tC10.976,62.996,10.987,63,11,63c0.828,0,1.578-0.336,2.121-0.879L21.243,54H22v0h3v0h6.9v0H53v0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.614,0-3.072-0.645-4.151-1.681L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.013,0,0.025-0.004,0.037-0.004c0.813-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.235-0.259,0.333-0.404c0.039-0.057,0.065-0.123,0.1-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.046-0.129,0.094-0.257,0.122-0.393\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6C23,31.314,20.314,34,17,34z M32,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,31.314,35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C53,31.314,50.314,34,47,34z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6C23,31.314,20.314,34,17,34z M32,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,31.314,35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C53,31.314,50.314,34,47,34z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9\r\n\t\t\t\th52V46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9\r\n\t\t\t\th52V46z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLES_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.477\r\n\t\t\t\tc-12.036-0.75-19.873-8.212-20.379-17.122c-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.571\r\n\t\t\t\tc0,6.961,4.177,13.176,11.123,17.257c1.573,0.924,1.752,7.862-7.097,12.05c0,0,12.529,1.976,20.473-8.067\r\n\t\t\t\tc1.964,0.282,3.996,0.883,6.075,0.883c14.557,0,24.238-7.163,26.777-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z\r\n\t\t\t\t M56.72,27.814c4.55-2.673,7.286-6.744,7.286-11.304c0-8.052-8.85-14.579-20.028-14.579c-11.178,0-17.992,6.527-17.992,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.992,14.492c1.362,0,2.693-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.69,28.419,56.72,27.814z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.477\r\n\t\t\t\tc-12.036-0.75-19.873-8.212-20.379-17.122c-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.571\r\n\t\t\t\tc0,6.961,4.177,13.176,11.123,17.257c1.573,0.924,1.752,7.862-7.097,12.05c0,0,12.529,1.976,20.473-8.067\r\n\t\t\t\tc1.964,0.282,3.996,0.883,6.075,0.883c14.557,0,24.238-7.163,26.777-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z\r\n\t\t\t\t M56.72,27.814c4.55-2.673,7.286-6.744,7.286-11.304c0-8.052-8.85-14.579-20.028-14.579c-11.178,0-17.992,6.527-17.992,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.992,14.492c1.362,0,2.693-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.69,28.419,56.72,27.814z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C23,32.314,20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,32.314,35.314,35,32,35z M47,35c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6\r\n\t\t\t\tc3.314,0,6,2.686,6,6C53,32.314,50.314,35,47,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C23,32.314,20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,32.314,35.314,35,32,35z M47,35c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6\r\n\t\t\t\tc3.314,0,6,2.686,6,6C53,32.314,50.314,35,47,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,49c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\t\tC38,51.686,35.314,49,32,49z M32,34c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764\r\n\t\t\t\tC11.283,14.34,21.132,10,32,10c10.868,0,20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544\r\n\t\t\t\tl3.739,4.819C17.954,28.242,24.59,25,32,25c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19\r\n\t\t\t\tC23.209,19,15.279,22.666,9.637,28.544z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,49c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\t\tC38,51.686,35.314,49,32,49z M32,34c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764\r\n\t\t\t\tC11.283,14.34,21.132,10,32,10c10.868,0,20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544\r\n\t\t\t\tl3.739,4.819C17.954,28.242,24.59,25,32,25c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19\r\n\t\t\t\tC23.209,19,15.279,22.666,9.637,28.544z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,41c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,43.686,35.314,41,32,41z M32,26c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544\r\n\t\t\t\tl3.739,4.819C17.954,20.242,24.59,17,32,17c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,41c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,43.686,35.314,41,32,41z M32,26c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544\r\n\t\t\t\tl3.739,4.819C17.954,20.242,24.59,17,32,17c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,34c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,36.686,35.314,34,32,34z M32,19c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25\r\n\t\t\t\ts7.482,1.937,9.666,4.91l3.302-4.256C42.062,21.629,37.343,19,32,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,34c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,36.686,35.314,34,32,34z M32,19c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25\r\n\t\t\t\ts7.482,1.937,9.666,4.91l3.302-4.256C42.062,21.629,37.343,19,32,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VIEW__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26\r\n\t\t\t\tC28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755C58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.245l0-0.001l-0.018,0.012L4.679,48.245l0,0C4.271,48.513,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51\r\n\t\t\t\tc0.303,0,0.585-0.091,0.82-0.245l0,0.001l0.018-0.012L58.32,16.755L58.32,16.755z M9.455,42.364L10,42l10.409-6.939\r\n\t\t\t\tC20.151,34.082,20,33.06,20,32c0-6.628,5.373-12,12-12c2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345\r\n\t\t\t\tc-2.648-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165c-3.549,0.649-6.969,2-10.17,3.674\r\n\t\t\t\tc-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45\r\n\t\t\t\tc2.042,2.476,4.47,4.679,6.94,6.692C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.004-0.041c-0.001-0.02-0.005-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009c-0.079-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.677-0.552-1.367-1.092-2.069-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.845-6.997-2.265L17,47l-0.09,0.09c2.8,1.44,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.01-2.621,9.586-6.232,13.574-10.28\r\n\t\t\t\tc0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347c0-0.003,0.001-0.006,0.001-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058c0.001-0.014,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.276l-7.01,4.612C31.223,37.96,31.607,38,32,38C34.876,38,37.276,35.976,37.861,33.276z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26\r\n\t\t\t\tC28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755C58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.245l0-0.001l-0.018,0.012L4.679,48.245l0,0C4.271,48.513,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51\r\n\t\t\t\tc0.303,0,0.585-0.091,0.82-0.245l0,0.001l0.018-0.012L58.32,16.755L58.32,16.755z M9.455,42.364L10,42l10.409-6.939\r\n\t\t\t\tC20.151,34.082,20,33.06,20,32c0-6.628,5.373-12,12-12c2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345\r\n\t\t\t\tc-2.648-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165c-3.549,0.649-6.969,2-10.17,3.674\r\n\t\t\t\tc-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45\r\n\t\t\t\tc2.042,2.476,4.47,4.679,6.94,6.692C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.004-0.041c-0.001-0.02-0.005-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009c-0.079-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.677-0.552-1.367-1.092-2.069-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.845-6.997-2.265L17,47l-0.09,0.09c2.8,1.44,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.01-2.621,9.586-6.232,13.574-10.28\r\n\t\t\t\tc0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347c0-0.003,0.001-0.006,0.001-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058c0.001-0.014,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.276l-7.01,4.612C31.223,37.96,31.607,38,32,38C34.876,38,37.276,35.976,37.861,33.276z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VIEW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW","display":"inline"},"children":[{"name":"g","attribs":{"id":"VIEW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,28.686,35.314,26,32,26z M63.997,32.379c-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.002-0.028-0.004-0.041\r\n\t\t\t\tc-0.001-0.02-0.005-0.039-0.008-0.058c-0.003-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009\r\n\t\t\t\tc-0.079-0.506-0.312-0.981-0.669-1.346c-2.042-2.476-4.471-4.68-6.94-6.692c-5.319-4.337-11.403-7.964-18.117-9.425\r\n\t\t\t\tc-3.881-0.844-7.786-0.879-11.688-0.165c-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28\r\n\t\t\t\tc-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45c2.042,2.476,4.47,4.679,6.94,6.692\r\n\t\t\t\tc5.32,4.337,11.403,7.963,18.118,9.424c3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673\r\n\t\t\t\tc5.01-2.621,9.586-6.232,13.574-10.28c0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347\r\n\t\t\t\tc0-0.003,0.001-0.006,0.001-0.008c0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058\r\n\t\t\t\tc0.001-0.014,0.002-0.027,0.004-0.041c0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122\r\n\t\t\t\tC64.001,32.459,63.998,32.419,63.997,32.379z M32,44c-6.627,0-12-5.372-12-12c0-6.628,5.372-12,12-12s12,5.373,12,12\r\n\t\t\t\tC44,38.628,38.627,44,32,44z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,28.686,35.314,26,32,26z M63.997,32.379c-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.002-0.028-0.004-0.041\r\n\t\t\t\tc-0.001-0.02-0.005-0.039-0.008-0.058c-0.003-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009\r\n\t\t\t\tc-0.079-0.506-0.312-0.981-0.669-1.346c-2.042-2.476-4.471-4.68-6.94-6.692c-5.319-4.337-11.403-7.964-18.117-9.425\r\n\t\t\t\tc-3.881-0.844-7.786-0.879-11.688-0.165c-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28\r\n\t\t\t\tc-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45c2.042,2.476,4.47,4.679,6.94,6.692\r\n\t\t\t\tc5.32,4.337,11.403,7.963,18.118,9.424c3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673\r\n\t\t\t\tc5.01-2.621,9.586-6.232,13.574-10.28c0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347\r\n\t\t\t\tc0-0.003,0.001-0.006,0.001-0.008c0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058\r\n\t\t\t\tc0.001-0.014,0.002-0.027,0.004-0.041c0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122\r\n\t\t\t\tC64.001,32.459,63.998,32.419,63.997,32.379z M32,44c-6.627,0-12-5.372-12-12c0-6.628,5.372-12,12-12s12,5.373,12,12\r\n\t\t\t\tC44,38.628,38.627,44,32,44z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992\r\n\t\t\t\tv0.008C1.339,24.006,0,25.346,0,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C28,16.343,26.657,15,25,15z M36.903,17.926l-2.847,2.847C36.519,23.852,38,27.75,38,32\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.903,17.926z\r\n\t\t\t\t M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32c0,7.288-2.708,13.93-7.147,19.024l2.848,2.848\r\n\t\t\t\tC49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336l-2.831,2.831\r\n\t\t\t\tC56.086,12.263,60,21.674,60,32c0,10.326-3.914,19.737-10.338,26.833l2.831,2.831C59.639,53.842,64,43.431,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992\r\n\t\t\t\tv0.008C1.339,24.006,0,25.346,0,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C28,16.343,26.657,15,25,15z M36.903,17.926l-2.847,2.847C36.519,23.852,38,27.75,38,32\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.903,17.926z\r\n\t\t\t\t M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32c0,7.288-2.708,13.93-7.147,19.024l2.848,2.848\r\n\t\t\t\tC49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336l-2.831,2.831\r\n\t\t\t\tC56.086,12.263,60,21.674,60,32c0,10.326-3.914,19.737-10.338,26.833l2.831,2.831C59.639,53.842,64,43.431,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32\r\n\t\t\t\tc0,7.288-2.708,13.93-7.147,19.024l2.848,2.848C55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678l-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z\r\n\t\t\t\t M42.903,17.926l-2.847,2.847C42.519,23.852,44,27.75,44,32c0,4.25-1.481,8.148-3.944,11.227l2.847,2.847\r\n\t\t\t\tC46.083,42.26,48,37.355,48,32C48,26.645,46.083,21.74,42.903,17.926z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32\r\n\t\t\t\tc0,7.288-2.708,13.93-7.147,19.024l2.848,2.848C55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678l-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z\r\n\t\t\t\t M42.903,17.926l-2.847,2.847C42.519,23.852,44,27.75,44,32c0,4.25-1.481,8.148-3.944,11.227l2.847,2.847\r\n\t\t\t\tC46.083,42.26,48,37.355,48,32C48,26.645,46.083,21.74,42.903,17.926z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689L34.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C12.339,25.006,11,26.346,11,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C34.736,48.781,35.34,49,36,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C39,17.343,37.657,16,36,16z M47.903,18.926l-2.847,2.847C47.519,24.852,49,28.75,49,33\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.903,18.926z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689L34.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C12.339,25.006,11,26.346,11,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C34.736,48.781,35.34,49,36,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C39,17.343,37.657,16,36,16z M47.903,18.926l-2.847,2.847C47.519,24.852,49,28.75,49,33\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.903,18.926z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\tS56.657,30,55,30z M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28\r\n\t\t\t\tv10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\tS56.657,30,55,30z M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28\r\n\t\t\t\tv10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689L40.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C18.339,25.006,17,26.346,17,28v9.627l27.972-18.9C44.832,17.2,43.563,16,42,16z M30.024,41l10.211,7.426l0.005-0.007\r\n\t\t\t\tC40.736,48.781,41.34,49,42,49c1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.601,0.095-0.841,0.258\r\n\t\t\t\tL13.064,43.955c-0.4,0.269-0.664,0.727-0.664,1.245c0,0.828,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.258l37.095-25.097\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689L40.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C18.339,25.006,17,26.346,17,28v9.627l27.972-18.9C44.832,17.2,43.563,16,42,16z M30.024,41l10.211,7.426l0.005-0.007\r\n\t\t\t\tC40.736,48.781,41.34,49,42,49c1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.601,0.095-0.841,0.258\r\n\t\t\t\tL13.064,43.955c-0.4,0.269-0.664,0.727-0.664,1.245c0,0.828,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.258l37.095-25.097\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PRINTER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PRINTER","display":"inline"},"children":[{"name":"g","attribs":{"id":"PRINTER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15z M9,27c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3s3,1.343,3,3\r\n\t\t\t\tC12,25.657,10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003c-0.007-0.615-0.197-1.184-0.52-1.657\r\n\t\t\t\tc-0.005-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.35-0.419c0,0,0,0,0,0c-0.002-0.002-0.005-0.004-0.008-0.006\r\n\t\t\t\tc-0.167-0.165-0.359-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004c0,0-0.001,0-0.001-0.001\r\n\t\t\t\tc-0.285-0.171-0.594-0.305-0.93-0.373c0,0,0,0,0,0c-0.138-0.028-0.282-0.034-0.426-0.043C45.117,0.014,45.06,0,45,0H19\r\n\t\t\t\tc-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tV37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15z M9,27c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3s3,1.343,3,3\r\n\t\t\t\tC12,25.657,10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003c-0.007-0.615-0.197-1.184-0.52-1.657\r\n\t\t\t\tc-0.005-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.35-0.419c0,0,0,0,0,0c-0.002-0.002-0.005-0.004-0.008-0.006\r\n\t\t\t\tc-0.167-0.165-0.359-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004c0,0-0.001,0-0.001-0.001\r\n\t\t\t\tc-0.285-0.171-0.594-0.305-0.93-0.373c0,0,0,0,0,0c-0.138-0.028-0.282-0.034-0.426-0.043C45.117,0.014,45.06,0,45,0H19\r\n\t\t\t\tc-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tV37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M25,16c0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243\r\n\t\t\t\tl1.879,1.879C37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,3.336,32.828,3,32,3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z\r\n\t\t\t\t M63.002,17.78C62.47,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.673,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.106,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.683,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M25,16c0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243\r\n\t\t\t\tl1.879,1.879C37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,3.336,32.828,3,32,3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z\r\n\t\t\t\t M63.002,17.78C62.47,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.673,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.106,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.683,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl7-7C41.664,21.579,42,20.829,42,20c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v13.757l-1.879-1.879C26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL29.879,29.122z M63.002,17.78C62.47,17.3,61.773,17,61,17H44.168C44.683,17.886,45,18.902,45,20\r\n\t\t\t\tc0,1.657-0.672,3.157-1.757,4.243l-7,7C35.157,32.328,33.657,33,32,33c-1.657,0-3.157-0.672-4.243-1.757l-7-7\r\n\t\t\t\tC19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3c-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866\r\n\t\t\t\tL43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20C64,19.165,63.657,18.41,63.106,17.866z M0.894,17.866\r\n\t\t\t\tC0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175\r\n\t\t\t\tC1.481,60.683,2.202,61,3,61h58c0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl7-7C41.664,21.579,42,20.829,42,20c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v13.757l-1.879-1.879C26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL29.879,29.122z M63.002,17.78C62.47,17.3,61.773,17,61,17H44.168C44.683,17.886,45,18.902,45,20\r\n\t\t\t\tc0,1.657-0.672,3.157-1.757,4.243l-7,7C35.157,32.328,33.657,33,32,33c-1.657,0-3.157-0.672-4.243-1.757l-7-7\r\n\t\t\t\tC19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3c-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866\r\n\t\t\t\tL43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20C64,19.165,63.657,18.41,63.106,17.866z M0.894,17.866\r\n\t\t\t\tC0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175\r\n\t\t\t\tC1.481,60.683,2.202,61,3,61h58c0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.002,10.78C62.47,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78\r\n\t\t\t\tL32,35L63.002,10.78z M0.894,10.866C0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z\r\n\t\t\t\t M32,41l-8.136-7.881L0.943,53.175C1.481,53.683,2.202,54,3,54h58c0.798,0,1.519-0.317,2.057-0.825L40.136,33.119L32,41z\r\n\t\t\t\t M63.106,10.866L43.622,29.741l19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.106,10.866z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.002,10.78C62.47,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78\r\n\t\t\t\tL32,35L63.002,10.78z M0.894,10.866C0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z\r\n\t\t\t\t M32,41l-8.136-7.881L0.943,53.175C1.481,53.683,2.202,54,3,54h58c0.798,0,1.519-0.317,2.057-0.825L40.136,33.119L32,41z\r\n\t\t\t\t M63.106,10.866L43.622,29.741l19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.106,10.866z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S4.343,7,6,7z\r\n\t\t\t\t M61,57H3V16h58V57z M27.758,37l-4.95,4.95c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0l4.95-4.95\r\n\t\t\t\tl4.95,4.95c1.172,1.172,3.071,1.172,4.243,0c1.172-1.172,1.171-3.071,0-4.243L36.243,37l4.95-4.95\r\n\t\t\t\tc1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0L32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0\r\n\t\t\t\tc-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S4.343,7,6,7z\r\n\t\t\t\t M61,57H3V16h58V57z M27.758,37l-4.95,4.95c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0l4.95-4.95\r\n\t\t\t\tl4.95,4.95c1.172,1.172,3.071,1.172,4.243,0c1.172-1.172,1.171-3.071,0-4.243L36.243,37l4.95-4.95\r\n\t\t\t\tc1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0L32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0\r\n\t\t\t\tc-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12\r\n\t\t\t\tC43.664,32.579,44,31.828,44,31c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878\r\n\t\t\t\tC24.579,34.336,23.828,34,23,34c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12\r\n\t\t\t\tC43.664,32.579,44,31.828,44,31c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878\r\n\t\t\t\tC24.579,34.336,23.828,34,23,34c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,40h4v0h16v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-7v0h-6v0h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,40h4v0h16v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-7v0h-6v0h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M15,57H3V31h12V57z M46,57H18V31h28V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M15,57H3V31h12V57z M46,57H18V31h28V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3\r\n\t\t\t\tV31h43V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3\r\n\t\t\t\tV31h43V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3s-3-1.343-3-3C21,8.343,22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C12,8.343,13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C3,8.343,4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3s-3-1.343-3-3C21,8.343,22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C12,8.343,13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C3,8.343,4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MOUSTACHE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MOUSTACHE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MOUSTACHE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125\r\n\t\t\t\tc-5.253,0-7.725-8.839-15.934-8.839c-6.513,0-8.497,5.067-8.928,5.067c-0.431,0-2.415-5.067-8.927-5.067\r\n\t\t\t\tc-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125c-1.06,0.269,1.955,15.277,16.323,15.277\r\n\t\t\t\tc9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.182,7.238,15.504,7.238C61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125\r\n\t\t\t\tc-5.253,0-7.725-8.839-15.934-8.839c-6.513,0-8.497,5.067-8.928,5.067c-0.431,0-2.415-5.067-8.927-5.067\r\n\t\t\t\tc-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125c-1.06,0.269,1.955,15.277,16.323,15.277\r\n\t\t\t\tc9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.182,7.238,15.504,7.238C61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LIST_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"LIST_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M9,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,46.343,10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3s1.343,3,3,3c0,0,0,0,0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c0,0,0,0,0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H21.001c0,0-0.001,0-0.001,0c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC18,17.657,19.343,19,21,19z M9,13C9,13,8.999,13,8.999,13H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,14.343,10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,46.343,62.657,45,61,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M9,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,46.343,10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3s1.343,3,3,3c0,0,0,0,0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c0,0,0,0,0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H21.001c0,0-0.001,0-0.001,0c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC18,17.657,19.343,19,21,19z M9,13C9,13,8.999,13,8.999,13H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,14.343,10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,46.343,62.657,45,61,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LIST_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST","display":"inline"},"children":[{"name":"g","attribs":{"id":"LIST","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h58c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,17.657,1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z\r\n\t\t\t\t M61,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,46.343,62.657,45,61,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h58c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,17.657,1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z\r\n\t\t\t\t M61,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,46.343,62.657,45,61,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MORE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MORE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.315,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.314,0,6.001-2.687,6.001-6.001C19.001,28.687,16.315,26,13.001,26z M51.001,26C47.687,26,45,28.687,45,32.002\r\n\t\t\t\tc0,3.315,2.687,6.001,6.001,6.001c3.314,0,6.001-2.687,6.001-6.001C57.001,28.687,54.315,26,51.001,26z M32.001,26\r\n\t\t\t\tC28.687,26,26,28.687,26,32.002c0,3.315,2.686,6.001,6.001,6.001s6.001-2.687,6.001-6.001C38.001,28.687,35.315,26,32.001,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.315,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.314,0,6.001-2.687,6.001-6.001C19.001,28.687,16.315,26,13.001,26z M51.001,26C47.687,26,45,28.687,45,32.002\r\n\t\t\t\tc0,3.315,2.687,6.001,6.001,6.001c3.314,0,6.001-2.687,6.001-6.001C57.001,28.687,54.315,26,51.001,26z M32.001,26\r\n\t\t\t\tC28.687,26,26,28.687,26,32.002c0,3.315,2.686,6.001,6.001,6.001s6.001-2.687,6.001-6.001C38.001,28.687,35.315,26,32.001,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159\r\n\t\t\t\tl0.001-0.001l-18-18l-0.008,0.008C24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275\r\n\t\t\t\tl15.718,15.718L20.84,47.917l0.001,0.001C20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.321,2.082-0.841\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159\r\n\t\t\t\tl0.001-0.001l-18-18l-0.008,0.008C24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275\r\n\t\t\t\tl15.718,15.718L20.84,47.917l0.001,0.001C20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.321,2.082-0.841\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.806,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.002,0,0.004,0,0.007c0,0.848,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001\r\n\t\t\t\tC39.458,52.679,40.191,53,41,53c1.657,0,3-1.343,3-3C44,49.191,43.679,48.458,43.16,47.917L43.16,47.917z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.806,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.002,0,0.004,0,0.007c0,0.848,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001\r\n\t\t\t\tC39.458,52.679,40.191,53,41,53c1.657,0,3-1.343,3-3C44,49.191,43.679,48.458,43.16,47.917L43.16,47.917z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001\r\n\t\t\t\tC33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0s-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001\r\n\t\t\t\tl-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41c0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718\r\n\t\t\t\tL47.917,43.16l0.001-0.001C48.458,43.679,49.191,44,50,44c1.657,0,3-1.343,3-3C53,40.191,52.679,39.458,52.159,38.918z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001\r\n\t\t\t\tC33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0s-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001\r\n\t\t\t\tl-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41c0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718\r\n\t\t\t\tL47.917,43.16l0.001-0.001C48.458,43.679,49.191,44,50,44c1.657,0,3-1.343,3-3C53,40.191,52.679,39.458,52.159,38.918z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001\r\n\t\t\t\tL31.993,36.764L16.275,21.046C15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008\r\n\t\t\t\tl18,18l0.001-0.001C30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0\r\n\t\t\t\tc0.848,0,1.613-0.352,2.159-0.918l0.001,0.001l18-18l-0.001-0.001C52.679,24.543,53,23.809,53,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001\r\n\t\t\t\tL31.993,36.764L16.275,21.046C15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008\r\n\t\t\t\tl18,18l0.001-0.001C30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0\r\n\t\t\t\tc0.848,0,1.613-0.352,2.159-0.918l0.001,0.001l18-18l-0.001-0.001C52.679,24.543,53,23.809,53,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32L15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879C44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32L15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879C44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TICK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TICK","display":"inline"},"children":[{"name":"g","attribs":{"id":"TICK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879\r\n\t\t\t\tC15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l23-23C52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879\r\n\t\t\t\tC15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l23-23C52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MINUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MINUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"MINUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS53.657,29,52,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS53.657,29,52,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PLUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"PLUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H35V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v17H12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H35V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v17H12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOKMARK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOKMARK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOKMARK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10.759,32.731L10.759,32.731l11,5l0,0C22.137,37.903,22.557,38,23,38\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.731z M10.759,43.731L10.759,43.731l11,5l0,0C22.137,48.903,22.557,49,23,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,38.097,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.731z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731h0l-11-5v0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64c0.422,0,0.823-0.087,1.187-0.245L62.129,51.78\r\n\t\t\t\tC63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10.759,32.731L10.759,32.731l11,5l0,0C22.137,37.903,22.557,38,23,38\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.731z M10.759,43.731L10.759,43.731l11,5l0,0C22.137,48.903,22.557,49,23,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,38.097,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.731z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731h0l-11-5v0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64c0.422,0,0.823-0.087,1.187-0.245L62.129,51.78\r\n\t\t\t\tC63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23\r\n\t\t\t\tc-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241C4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228v0\r\n\t\t\t\tC3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46c0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64\r\n\t\t\t\tc0.422,0,0.823-0.087,1.187-0.245L62.129,51.78C63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995\r\n\t\t\t\tV7.488l23,9.517V56.512z M58,46.995l-23,9.517V17.005l23-9.517V46.995z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23\r\n\t\t\t\tc-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241C4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228v0\r\n\t\t\t\tC3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46c0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64\r\n\t\t\t\tc0.422,0,0.823-0.087,1.187-0.245L62.129,51.78C63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995\r\n\t\t\t\tV7.488l23,9.517V56.512z M58,46.995l-23,9.517V17.005l23-9.517V46.995z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,18h8c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC7,16.657,8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6\r\n\t\t\t\tc0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C19.657,52,21,50.657,21,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,18h8c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC7,16.657,8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6\r\n\t\t\t\tc0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C19.657,52,21,50.657,21,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46\r\n\t\t\t\tc0-1.657,0.672-3.157,1.757-4.243l7-7C45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.101C42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z\r\n\t\t\t\t M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36c-0.828,0-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243V60c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V46.243l1.879,1.879\r\n\t\t\t\tC54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3C59,45.172,58.664,44.422,58.121,43.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46\r\n\t\t\t\tc0-1.657,0.672-3.157,1.757-4.243l7-7C45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.101C42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z\r\n\t\t\t\t M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36c-0.828,0-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243V60c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V46.243l1.879,1.879\r\n\t\t\t\tC54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3C59,45.172,58.664,44.422,58.121,43.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0.343,0,0.673,0.046,1,0.101V39c0-3.314,2.686-6,6-6c0,0,0,0,0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h31.515l-1.757-1.757C36.672,56.157,36,54.657,36,53z M56,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53C59,51.343,57.657,50,56,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0.343,0,0.673,0.046,1,0.101V39c0-3.314,2.686-6,6-6c0,0,0,0,0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h31.515l-1.757-1.757C36.672,56.157,36,54.657,36,53z M56,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53C59,51.343,57.657,50,56,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.515,54\r\n\t\t\t\tl-1.757-1.757C38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.153,0.675,4.238,1.762l0.005-0.005L49,44.515v-19.5\r\n\t\t\t\tH30c-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28v0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.515,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.515,54\r\n\t\t\t\tl-1.757-1.757C38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.153,0.675,4.238,1.762l0.005-0.005L49,44.515v-19.5\r\n\t\t\t\tH30c-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28v0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.515,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L48,54.757l-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l4,4C46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51\r\n\t\t\t\tC59,49.343,57.657,48,56,48z M38,55c0-3.314,2.686-6,6-6c1.533,0,2.909,0.599,3.967,1.547L49,49.515v-23.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52c0,1.657,1.343,3,3,3h23v0h10.515l-1.757-1.757\r\n\t\t\t\tC38.672,58.157,38,56.657,38,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L48,54.757l-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l4,4C46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51\r\n\t\t\t\tC59,49.343,57.657,48,56,48z M38,55c0-3.314,2.686-6,6-6c1.533,0,2.909,0.599,3.967,1.547L49,49.515v-23.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52c0,1.657,1.343,3,3,3h23v0h10.515l-1.757-1.757\r\n\t\t\t\tC38.672,58.157,38,56.657,38,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h6V26.014H31c-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35\r\n\t\t\t\tc0,0,0,0,0,0C40.686,61,38,58.314,38,55z M56,52H44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h6V26.014H31c-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35\r\n\t\t\t\tc0,0,0,0,0,0C40.686,61,38,58.314,38,55z M56,52H44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3\r\n\t\t\t\tv-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52c0,1.657,1.343,3,3,3h35c0,0,0,0,0,0C40.686,60,38,57.314,38,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3\r\n\t\t\t\tv-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52c0,1.657,1.343,3,3,3h35c0,0,0,0,0,0C40.686,60,38,57.314,38,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENTS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENTS","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENTS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23.015H38C34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037\r\n\t\t\t\tC35,18.662,36.343,20.008,38,20.008z M10,55V6C8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16\r\n\t\t\t\tC12.686,61,10,58.314,10,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23.015H38C34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037\r\n\t\t\t\tC35,18.662,36.343,20.008,38,20.008z M10,55V6C8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16\r\n\t\t\t\tC12.686,61,10,58.314,10,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001\r\n\t\t\t\tV3H13c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001\r\n\t\t\t\tV3H13c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757\r\n\t\t\t\tl-3.879-3.879C50.578,43.336,49.828,43,49,43c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879\r\n\t\t\t\tC46.336,56.422,46,57.172,46,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879\r\n\t\t\t\tC59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879\r\n\t\t\t\tC63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41v0h0.557c0.07-0.078,0.126-0.168,0.2-0.243L46.515,52l-1.757-1.758\r\n\t\t\t\tC43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L55,43.515l1.757-1.757\r\n\t\t\t\tC57.843,40.672,59.343,40,61,40c1.098,0,2.114,0.317,3,0.832V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757\r\n\t\t\t\tl-3.879-3.879C50.578,43.336,49.828,43,49,43c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879\r\n\t\t\t\tC46.336,56.422,46,57.172,46,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879\r\n\t\t\t\tC59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879\r\n\t\t\t\tC63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41v0h0.557c0.07-0.078,0.126-0.168,0.2-0.243L46.515,52l-1.757-1.758\r\n\t\t\t\tC43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L55,43.515l1.757-1.757\r\n\t\t\t\tC57.843,40.672,59.343,40,61,40c1.098,0,2.114,0.317,3,0.832V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__OK_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879\r\n\t\t\t\tC50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60\r\n\t\t\t\ts1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49C64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3\r\n\t\t\t\tC1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52c0,1.657,1.343,3,3,3h40.367c0,0,0,0,0,0\r\n\t\t\t\tC43.144,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781C57.843,43.672,59.343,43,61,43\r\n\t\t\t\tc1.099,0,2.114,0.317,3,0.832V20H0V52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879\r\n\t\t\t\tC50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60\r\n\t\t\t\ts1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49C64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3\r\n\t\t\t\tC1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52c0,1.657,1.343,3,3,3h40.367c0,0,0,0,0,0\r\n\t\t\t\tC43.144,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781C57.843,43.672,59.343,43,61,43\r\n\t\t\t\tc1.099,0,2.114,0.317,3,0.832V20H0V52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.144,56.372,42,55.705,42,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h12c1.544,0,2.937,0.599,4,1.557V22H0V54z M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.144,56.372,42,55.705,42,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h12c1.544,0,2.937,0.599,4,1.557V22H0V54z M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__OK_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,49h-3v-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC63,50.343,61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.144,53.372,42,52.705,42,52c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.937,0.599,4,1.557V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,49h-3v-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC63,50.343,61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.144,53.372,42,52.705,42,52c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.937,0.599,4,1.557V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58\r\n\t\t\t\tC26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71\r\n\t\t\t\tV39c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58\r\n\t\t\t\tC26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71\r\n\t\t\t\tV39c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-0.66,0-1.265,0.219-1.76,0.58l-0.005-0.007L28,29.291V25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.29l9.235,6.717l0.005-0.007\r\n\t\t\t\tC37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-0.66,0-1.265,0.219-1.76,0.58l-0.005-0.007L28,29.291V25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.29l9.235,6.717l0.005-0.007\r\n\t\t\t\tC37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z M45.559,29.437l-9.699-6.789C35.349,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394C21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005C17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.655l9.125-6.387\r\n\t\t\t\tv4.067h0.005C31.013,40.67,32.351,42,34,42c0.708,0,1.358-0.246,1.871-0.655l9.68-6.776C46.419,34.043,47,33.089,47,32\r\n\t\t\t\tC47,30.914,46.423,29.963,45.559,29.437z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z M45.559,29.437l-9.699-6.789C35.349,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394C21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005C17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.655l9.125-6.387\r\n\t\t\t\tv4.067h0.005C31.013,40.67,32.351,42,34,42c0.708,0,1.358-0.246,1.871-0.655l9.68-6.776C46.419,34.043,47,33.089,47,32\r\n\t\t\t\tC47,30.914,46.423,29.963,45.559,29.437z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.135,6.394\r\n\t\t\t\tv-4.018h-0.006C32.999,25.016,33,25.008,33,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789\r\n\t\t\t\tC17.577,29.963,17,30.914,17,32c0,1.089,0.581,2.043,1.449,2.569l9.68,6.776C28.642,41.754,29.292,42,30,42\r\n\t\t\t\tc1.649,0,2.987-1.33,2.999-2.976h0.005v-4.067l9.125,6.387C42.642,41.754,43.292,42,44,42c1.649,0,2.987-1.33,2.999-2.976h0.005\r\n\t\t\t\tv-14h-0.005C46.999,25.016,47,25.008,47,25z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.135,6.394\r\n\t\t\t\tv-4.018h-0.006C32.999,25.016,33,25.008,33,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789\r\n\t\t\t\tC17.577,29.963,17,30.914,17,32c0,1.089,0.581,2.043,1.449,2.569l9.68,6.776C28.642,41.754,29.292,42,30,42\r\n\t\t\t\tc1.649,0,2.987-1.33,2.999-2.976h0.005v-4.067l9.125,6.387C42.642,41.754,43.292,42,44,42c1.649,0,2.987-1.33,2.999-2.976h0.005\r\n\t\t\t\tv-14h-0.005C46.999,25.016,47,25.008,47,25z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z\r\n\t\t\t\t M29,24c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35C35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z\r\n\t\t\t\t M29,24c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35C35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tV24C43,22.343,41.657,21,40,21z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tV24C43,22.343,41.657,21,40,21z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3c0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004\r\n\t\t\t\tc0.055-0.005,0.109-0.01,0.163-0.018c0.01-0.001,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035\r\n\t\t\t\tc0.01-0.002,0.019-0.005,0.029-0.007c0.057-0.013,0.112-0.027,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008\r\n\t\t\t\tc0.128-0.038,0.252-0.084,0.372-0.138c0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.056,0.242-0.12,0.355-0.191l0.013,0.02\r\n\t\t\t\tl15.911-9.974C42.405,34.066,43,33.103,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3c0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004\r\n\t\t\t\tc0.055-0.005,0.109-0.01,0.163-0.018c0.01-0.001,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035\r\n\t\t\t\tc0.01-0.002,0.019-0.005,0.029-0.007c0.057-0.013,0.112-0.027,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008\r\n\t\t\t\tc0.128-0.038,0.252-0.084,0.372-0.138c0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.056,0.242-0.12,0.355-0.191l0.013,0.02\r\n\t\t\t\tl15.911-9.974C42.405,34.066,43,33.103,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V12.243l1.879,1.879C37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,2.336,32.829,2,32,2c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z\r\n\t\t\t\t M60,6H41.485l4,4H59v34H5V10h13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V12.243l1.879,1.879C37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,2.336,32.829,2,32,2c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z\r\n\t\t\t\t M60,6H41.485l4,4H59v34H5V10h13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL35,18.758V5c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z\r\n\t\t\t\t M60,6H38v4h21v34H5V10h21V6H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL35,18.758V5c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z\r\n\t\t\t\t M60,6H38v4h21v34H5V10h21V6H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879C36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879C40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879C27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879C23.336,29.422,23,30.172,23,31z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879C36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879C40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879C27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879C23.336,29.422,23,30.172,23,31z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl8-8C40.664,22.578,41,21.829,41,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879\r\n\t\t\t\tC27.578,22.336,26.828,22,26,22c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl8-8C40.664,22.578,41,21.829,41,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879\r\n\t\t\t\tC27.578,22.336,26.828,22,26,22c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H26c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC23,26.657,24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H26c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC23,26.657,24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3C23,26.657,24.343,28,26,28z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3C23,26.657,24.343,28,26,28z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IMAC_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAC","display":"inline"},"children":[{"name":"g","attribs":{"id":"IMAC","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MACBOOK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MACBOOK","display":"inline"},"children":[{"name":"g","attribs":{"id":"MACBOOK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49H25v-2h14V49z M54,42H10V16h44V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49H25v-2h14V49z M54,42H10V16h44V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IPAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"IPAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC57,4.343,55.657,3,54,3z M32,59c-1.105,0-2-0.896-2-2s0.895-2,2-2s2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC57,4.343,55.657,3,54,3z M32,59c-1.105,0-2-0.896-2-2s0.895-2,2-2s2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IPHONE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPHONE","display":"inline"},"children":[{"name":"g","attribs":{"id":"IPHONE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3\r\n\t\t\t\tV6C49,4.343,47.657,3,46,3z M32,58c-1.105,0-2-0.895-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C34,57.105,33.105,58,32,58z M46,51H18\r\n\t\t\t\tV9h28V51z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3\r\n\t\t\t\tV6C49,4.343,47.657,3,46,3z M32,58c-1.105,0-2-0.895-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C34,57.105,33.105,58,32,58z M46,51H18\r\n\t\t\t\tV9h28V51z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOGOUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGOUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOGOUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC44.475,20.292,43.772,20,43,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c0,0,0,0,0,0h18.182l-4.189,3.77l0,0C40.384,39.32,40,40.115,40,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.681,56,32.885,56,32z M26,52H14V12h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tC29,53.343,27.657,52,26,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC44.475,20.292,43.772,20,43,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c0,0,0,0,0,0h18.182l-4.189,3.77l0,0C40.384,39.32,40,40.115,40,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.681,56,32.885,56,32z M26,52H14V12h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tC29,53.343,27.657,52,26,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOGIN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGIN","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOGIN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.007,34.23C39.617,33.681,40,32.885,40,32c0-0.885-0.384-1.681-0.993-2.23\r\n\t\t\t\tl0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182l-4.189,3.77l0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3V31.937c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC56,31.934,56,31.933,56,31.932z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.007,34.23C39.617,33.681,40,32.885,40,32c0-0.885-0.384-1.681-0.993-2.23\r\n\t\t\t\tl0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182l-4.189,3.77l0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3V31.937c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC56,31.934,56,31.933,56,31.932z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3c0,0,0,0,0,0V18.818l3.77,4.189l0,0C39.319,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,8.384,32.885,8,32,8c-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3c0,0,0,0,0,0V18.818l3.77,4.189l0,0C39.319,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,8.384,32.885,8,32,8c-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0l9-10l0,0C43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007L20.77,29.007z M55,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0l9-10l0,0C43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007L20.77,29.007z M55,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632\r\n\t\t\t\tc-0.373,0.347-0.785,0.663-1.235,0.949c-0.451,0.286-0.875,0.568-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586\r\n\t\t\t\tc-0.702,0.52-1.313,1.088-1.833,1.703c-0.52,0.615-0.932,1.313-1.235,2.093c-0.304,0.78-0.455,1.699-0.455,2.756H31.47v-3.172\r\n\t\t\t\th-8.606c0.451-0.624,0.97-1.17,1.56-1.638c0.589-0.468,1.196-0.905,1.82-1.313c0.624-0.407,1.244-0.819,1.859-1.235\r\n\t\t\t\tc0.615-0.416,1.166-0.88,1.651-1.391c0.485-0.511,0.875-1.096,1.17-1.755c0.294-0.659,0.442-1.447,0.442-2.366\r\n\t\t\t\tc0-0.884-0.169-1.681-0.507-2.392c-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118\r\n\t\t\t\tC26.751,31.13,25.958,31,25.126,31c-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56\r\n\t\t\t\tc-0.555,0.667-0.971,1.447-1.248,2.34c-0.277,0.893-0.399,1.859-0.364,2.899h3.536c0-0.485,0.048-0.975,0.143-1.469\r\n\t\t\t\tc0.095-0.494,0.255-0.945,0.481-1.352c0.225-0.407,0.524-0.737,0.897-0.988c0.373-0.251,0.828-0.377,1.365-0.377\r\n\t\t\t\tc0.797,0,1.452,0.247,1.963,0.741c0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.482\r\n\t\t\t\tC27.045,38.895,26.733,39.285,26.361,39.632z M41.467,45.807c-0.269,0.321-0.598,0.581-0.988,0.78\r\n\t\t\t\tc-0.39,0.199-0.828,0.299-1.313,0.299c-0.832,0-1.517-0.247-2.054-0.741c-0.537-0.494-0.85-1.157-0.936-1.989h-3.692\r\n\t\t\t\tc0.017,0.953,0.212,1.79,0.585,2.509c0.373,0.719,0.871,1.322,1.495,1.807c0.624,0.485,1.339,0.845,2.145,1.079\r\n\t\t\t\tc0.806,0.234,1.651,0.351,2.535,0.351c0.919,0.017,1.785-0.134,2.6-0.455c0.815-0.321,1.529-0.776,2.145-1.365\r\n\t\t\t\tc0.615-0.589,1.105-1.287,1.469-2.093c0.364-0.806,0.546-1.677,0.546-2.613c0-0.849-0.126-1.651-0.377-2.405\r\n\t\t\t\tc-0.252-0.754-0.616-1.408-1.092-1.963c-0.477-0.555-1.062-0.997-1.755-1.326c-0.693-0.329-1.491-0.494-2.392-0.494\r\n\t\t\t\tc-0.728,0-1.378,0.109-1.95,0.325c-0.572,0.217-1.109,0.576-1.612,1.079l-0.052-0.052l0.728-4.134h7.514v-3.042H34.85\r\n\t\t\t\tl-1.794,10.062h3.328c0.364-0.503,0.754-0.871,1.17-1.105c0.416-0.234,0.953-0.351,1.612-0.351c0.503,0,0.945,0.087,1.326,0.26\r\n\t\t\t\tc0.381,0.173,0.711,0.416,0.988,0.728c0.277,0.312,0.485,0.676,0.624,1.092c0.139,0.416,0.208,0.858,0.208,1.326\r\n\t\t\t\tc0,0.451-0.074,0.889-0.221,1.313C41.943,45.114,41.735,45.486,41.467,45.807z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632\r\n\t\t\t\tc-0.373,0.347-0.785,0.663-1.235,0.949c-0.451,0.286-0.875,0.568-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586\r\n\t\t\t\tc-0.702,0.52-1.313,1.088-1.833,1.703c-0.52,0.615-0.932,1.313-1.235,2.093c-0.304,0.78-0.455,1.699-0.455,2.756H31.47v-3.172\r\n\t\t\t\th-8.606c0.451-0.624,0.97-1.17,1.56-1.638c0.589-0.468,1.196-0.905,1.82-1.313c0.624-0.407,1.244-0.819,1.859-1.235\r\n\t\t\t\tc0.615-0.416,1.166-0.88,1.651-1.391c0.485-0.511,0.875-1.096,1.17-1.755c0.294-0.659,0.442-1.447,0.442-2.366\r\n\t\t\t\tc0-0.884-0.169-1.681-0.507-2.392c-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118\r\n\t\t\t\tC26.751,31.13,25.958,31,25.126,31c-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56\r\n\t\t\t\tc-0.555,0.667-0.971,1.447-1.248,2.34c-0.277,0.893-0.399,1.859-0.364,2.899h3.536c0-0.485,0.048-0.975,0.143-1.469\r\n\t\t\t\tc0.095-0.494,0.255-0.945,0.481-1.352c0.225-0.407,0.524-0.737,0.897-0.988c0.373-0.251,0.828-0.377,1.365-0.377\r\n\t\t\t\tc0.797,0,1.452,0.247,1.963,0.741c0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.482\r\n\t\t\t\tC27.045,38.895,26.733,39.285,26.361,39.632z M41.467,45.807c-0.269,0.321-0.598,0.581-0.988,0.78\r\n\t\t\t\tc-0.39,0.199-0.828,0.299-1.313,0.299c-0.832,0-1.517-0.247-2.054-0.741c-0.537-0.494-0.85-1.157-0.936-1.989h-3.692\r\n\t\t\t\tc0.017,0.953,0.212,1.79,0.585,2.509c0.373,0.719,0.871,1.322,1.495,1.807c0.624,0.485,1.339,0.845,2.145,1.079\r\n\t\t\t\tc0.806,0.234,1.651,0.351,2.535,0.351c0.919,0.017,1.785-0.134,2.6-0.455c0.815-0.321,1.529-0.776,2.145-1.365\r\n\t\t\t\tc0.615-0.589,1.105-1.287,1.469-2.093c0.364-0.806,0.546-1.677,0.546-2.613c0-0.849-0.126-1.651-0.377-2.405\r\n\t\t\t\tc-0.252-0.754-0.616-1.408-1.092-1.963c-0.477-0.555-1.062-0.997-1.755-1.326c-0.693-0.329-1.491-0.494-2.392-0.494\r\n\t\t\t\tc-0.728,0-1.378,0.109-1.95,0.325c-0.572,0.217-1.109,0.576-1.612,1.079l-0.052-0.052l0.728-4.134h7.514v-3.042H34.85\r\n\t\t\t\tl-1.794,10.062h3.328c0.364-0.503,0.754-0.871,1.17-1.105c0.416-0.234,0.953-0.351,1.612-0.351c0.503,0,0.945,0.087,1.326,0.26\r\n\t\t\t\tc0.381,0.173,0.711,0.416,0.988,0.728c0.277,0.312,0.485,0.676,0.624,1.092c0.139,0.416,0.208,0.858,0.208,1.326\r\n\t\t\t\tc0,0.451-0.074,0.889-0.221,1.313C41.943,45.114,41.735,45.486,41.467,45.807z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC13,12.657,14.343,14,16,14z M25.126,31c-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4v-4c0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC22,42.657,23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC13,12.657,14.343,14,16,14z M25.126,31c-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4v-4c0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC22,42.657,23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121\r\n\t\t\t\tC27.422,50.664,28.172,51,29,51c0.828,0,1.578-0.336,2.121-0.879l14-14C45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879C23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121\r\n\t\t\t\tC27.422,50.664,28.172,51,29,51c0.828,0,1.578-0.336,2.121-0.879l14-14C45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879C23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3\r\n\t\t\t\tH13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z\r\n\t\t\t\t M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3\r\n\t\t\t\tH13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z\r\n\t\t\t\t M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z\r\n\t\t\t\t M60,52h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tV9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z\r\n\t\t\t\t M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z M39,42H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3S40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z\r\n\t\t\t\t M60,52h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tV9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z\r\n\t\t\t\t M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z M39,42H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3S40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879C62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879C49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879C45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879C58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC13,10.657,14.343,12,16,12z M43.757,56.758L45.515,55l-1.757-1.757C42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L54,46.515l1.757-1.758l0.015,0.016C56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6\r\n\t\t\t\tH5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832C42.317,63.114,42,62.099,42,61c0-1.659,0.682-3.146,1.773-4.227\r\n\t\t\t\tL43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h24c1.657,0,3,1.343,3,3\r\n\t\t\t\tC40,40.657,38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879C62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879C49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879C45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879C58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC13,10.657,14.343,12,16,12z M43.757,56.758L45.515,55l-1.757-1.757C42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L54,46.515l1.757-1.758l0.015,0.016C56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6\r\n\t\t\t\tH5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832C42.317,63.114,42,62.099,42,61c0-1.659,0.682-3.146,1.773-4.227\r\n\t\t\t\tL43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h24c1.657,0,3,1.343,3,3\r\n\t\t\t\tC40,40.657,38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z\r\n\t\t\t\t M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,56.758l-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53\r\n\t\t\t\tC63,51.343,61.657,50,60,50z M43.775,61.225C42.683,60.147,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.554\r\n\t\t\t\tl3.797-3.797C56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3\r\n\t\t\t\th41.515l-2.757-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tC10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z\r\n\t\t\t\t M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,56.758l-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53\r\n\t\t\t\tC63,51.343,61.657,50,60,50z M43.775,61.225C42.683,60.147,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.554\r\n\t\t\t\tl3.797-3.797C56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3\r\n\t\t\t\th41.515l-2.757-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tC10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC29,10.657,30.343,12,32,12z M47,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6\r\n\t\t\t\th-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5C53,52.881,51.881,54,50.5,54z M50,42H14\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3\r\n\t\t\t\th36c1.657,0,3,1.343,3,3C53,27.657,51.657,29,50,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC29,10.657,30.343,12,32,12z M47,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6\r\n\t\t\t\th-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5C53,52.881,51.881,54,50.5,54z M50,42H14\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3\r\n\t\t\t\th36c1.657,0,3,1.343,3,3C53,27.657,51.657,29,50,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MICROPHONE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MICROPHONE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12\r\n\t\t\t\tc-6.627,0-12,5.373-12,12v16C20,34.628,25.373,40,32,40z M54,29.023c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3h0c-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16h0c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.296,19,21.752V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tC45.726,49.319,54,40.148,54,29.023z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12\r\n\t\t\t\tc-6.627,0-12,5.373-12,12v16C20,34.628,25.373,40,32,40z M54,29.023c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3h0c-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16h0c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.296,19,21.752V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tC45.726,49.319,54,40.148,54,29.023z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.631,39.405l5.051-3.302C16.617,33.961,16.002,31.555,16,29h0\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023\r\n\t\t\t\tC10,32.785,10.964,36.313,12.631,39.405z M44,18.895V12c0-6.627-5.373-12-12-12c-6.627,0-12,5.373-12,12v16\r\n\t\t\t\tc0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.821,0.246l0-0.001\r\n\t\t\t\tl-0.017,0.011c0,0,0,0,0,0L5.079,47.945l0,0.001C4.67,48.214,4.4,48.675,4.4,49.2c0,0.829,0.672,1.5,1.5,1.5\r\n\t\t\t\tc0.303,0,0.585-0.091,0.821-0.246l0,0.001l0.017-0.011c0,0,0,0,0,0l52.083-34.089l0-0.001C59.23,16.087,59.5,15.625,59.5,15.1z\r\n\t\t\t\t M43.86,29.739l-15.026,9.825C29.844,39.841,30.902,40,32,40C38.035,40,43.015,35.54,43.86,29.739z M51,26c-1.657,0-3,1.343-3,3\r\n\t\t\t\th0c-0.004,8.092-6.017,14.759-13.816,15.829c-0.24,0.034-0.481,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078l0,0.002\r\n\t\t\t\tc-0.04,0-0.078,0.005-0.118,0.005c-2.959,0-5.72-0.817-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.441V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tc10.726-1.456,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.631,39.405l5.051-3.302C16.617,33.961,16.002,31.555,16,29h0\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023\r\n\t\t\t\tC10,32.785,10.964,36.313,12.631,39.405z M44,18.895V12c0-6.627-5.373-12-12-12c-6.627,0-12,5.373-12,12v16\r\n\t\t\t\tc0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.821,0.246l0-0.001\r\n\t\t\t\tl-0.017,0.011c0,0,0,0,0,0L5.079,47.945l0,0.001C4.67,48.214,4.4,48.675,4.4,49.2c0,0.829,0.672,1.5,1.5,1.5\r\n\t\t\t\tc0.303,0,0.585-0.091,0.821-0.246l0,0.001l0.017-0.011c0,0,0,0,0,0l52.083-34.089l0-0.001C59.23,16.087,59.5,15.625,59.5,15.1z\r\n\t\t\t\t M43.86,29.739l-15.026,9.825C29.844,39.841,30.902,40,32,40C38.035,40,43.015,35.54,43.86,29.739z M51,26c-1.657,0-3,1.343-3,3\r\n\t\t\t\th0c-0.004,8.092-6.017,14.759-13.816,15.829c-0.24,0.034-0.481,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078l0,0.002\r\n\t\t\t\tc-0.04,0-0.078,0.005-0.118,0.005c-2.959,0-5.72-0.817-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.441V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tc10.726-1.456,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BELL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BELL","display":"inline"},"children":[{"name":"g","attribs":{"id":"BELL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c-7.732,0-14,6.268-14,14v20c0,1.657-1.343,3-3,3s-3,1.343-3,3c0,1.657,1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC55,46.343,53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26C26,57.314,28.686,60,32,60z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c-7.732,0-14,6.268-14,14v20c0,1.657-1.343,3-3,3s-3,1.343-3,3c0,1.657,1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC55,46.343,53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26C26,57.314,28.686,60,32,60z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"EJECT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EJECT","display":"inline"},"children":[{"name":"g","attribs":{"id":"EJECT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tS43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3c0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962\r\n\t\t\t\tc-0.003-0.005-0.006-0.01-0.01-0.016l-0.014-0.022l0,0C34.013,17.563,33.073,17,32,17c-1.073,0-2.013,0.563-2.544,1.41l0,0\r\n\t\t\t\tl-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0C19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tS43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3c0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962\r\n\t\t\t\tc-0.003-0.005-0.006-0.01-0.01-0.016l-0.014-0.022l0,0C34.013,17.563,33.073,17,32,17c-1.073,0-2.013,0.563-2.544,1.41l0,0\r\n\t\t\t\tl-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0C19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SKIP__x2F__NEXT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT","display":"inline"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0\r\n\t\t\t\tC24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0\r\n\t\t\t\tC24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FAST_FORWARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,32c0-1.073-0.563-2.013-1.41-2.544l0,0l-0.022-0.014\r\n\t\t\t\tc-0.005-0.003-0.01-0.007-0.016-0.01L33.59,19.456l0,0C33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131\r\n\t\t\t\tl0,0C17.129,19.168,16.584,19,16,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413\r\n\t\t\t\tV42c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.003,0.01-0.007,0.016-0.01l0.022-0.014l0,0\r\n\t\t\t\tC50.437,34.013,51,33.073,51,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,32c0-1.073-0.563-2.013-1.41-2.544l0,0l-0.022-0.014\r\n\t\t\t\tc-0.005-0.003-0.01-0.007-0.016-0.01L33.59,19.456l0,0C33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131\r\n\t\t\t\tl0,0C17.129,19.168,16.584,19,16,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413\r\n\t\t\t\tV42c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.003,0.01-0.007,0.016-0.01l0.022-0.014l0,0\r\n\t\t\t\tC50.437,34.013,51,33.073,51,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REWIND_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REWIND","display":"inline"},"children":[{"name":"g","attribs":{"id":"REWIND","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.584,0-1.129,0.168-1.59,0.456l0,0l-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0\r\n\t\t\t\tC13.564,29.987,13,30.927,13,32c0,1.073,0.564,2.013,1.41,2.544l0,0l0.023,0.014c0.005,0.003,0.01,0.007,0.016,0.01l15.962,9.976\r\n\t\t\t\tl0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587l11.41,7.131l0,0C46.871,44.833,47.416,45,48,45\r\n\t\t\t\tc1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.584,0-1.129,0.168-1.59,0.456l0,0l-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0\r\n\t\t\t\tC13.564,29.987,13,30.927,13,32c0,1.073,0.564,2.013,1.41,2.544l0,0l0.023,0.014c0.005,0.003,0.01,0.007,0.016,0.01l15.962,9.976\r\n\t\t\t\tl0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587l11.41,7.131l0,0C46.871,44.833,47.416,45,48,45\r\n\t\t\t\tc1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PAUSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PAUSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"PAUSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC29,20.343,27.657,19,26,19z M38,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC29,20.343,27.657,19,26,19z M38,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"STOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"STOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tV21C46,19.343,44.657,18,43,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tV21C46,19.343,44.657,18,43,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RECORD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RECORD","display":"inline"},"children":[{"name":"g","attribs":{"id":"RECORD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","cx":"32","cy":"32","r":"14"},"children":[{"name":"circle","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","cx":"32","cy":"32","r":"14"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PLAY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLAY","display":"inline"},"children":[{"name":"g","attribs":{"id":"PLAY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,32c0-1.099-0.592-2.06-1.474-2.583l0,0L22.561,16.438\r\n\t\t\t\tc-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0C22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.557,0,1.079-0.153,1.526-0.417l0,0l0.011-0.007c0.008-0.005,0.016-0.009,0.024-0.014l21.965-12.979l0,0\r\n\t\t\t\tC45.408,34.06,46,33.1,46,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,32c0-1.099-0.592-2.06-1.474-2.583l0,0L22.561,16.438\r\n\t\t\t\tc-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0C22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.557,0,1.079-0.153,1.526-0.417l0,0l0.011-0.007c0.008-0.005,0.016-0.009,0.024-0.014l21.965-12.979l0,0\r\n\t\t\t\tC45.408,34.06,46,33.1,46,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21\r\n\t\t\t\tC43,53.657,44.343,55,46,55z M29,55h6c1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC26,53.657,27.343,55,29,55z M12,55h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC9,53.657,10.343,55,12,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21\r\n\t\t\t\tC43,53.657,44.343,55,46,55z M29,55h6c1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC26,53.657,27.343,55,29,55z M12,55h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC9,53.657,10.343,55,12,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINE_GRAPH_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.313,8.875\r\n\t\t\t\tc0.488,0.343,1.081,0.545,1.723,0.545c0.656,0,1.263-0.211,1.757-0.569l0.001,0.001l17-12l-0.001-0.001\r\n\t\t\t\tC54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3c-0.662,0-1.274,0.215-1.77,0.578L34.953,36.373l-13.261-8.841\r\n\t\t\t\tl-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514c-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002\r\n\t\t\t\tC9.573,33.006,9,33.953,9,35.035C9,36.692,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.313,8.875\r\n\t\t\t\tc0.488,0.343,1.081,0.545,1.723,0.545c0.656,0,1.263-0.211,1.757-0.569l0.001,0.001l17-12l-0.001-0.001\r\n\t\t\t\tC54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3c-0.662,0-1.274,0.215-1.77,0.578L34.953,36.373l-13.261-8.841\r\n\t\t\t\tl-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514c-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002\r\n\t\t\t\tC9.573,33.006,9,33.953,9,35.035C9,36.692,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BAR_GRAPH_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv21C45,48.657,46.343,50,48,50z M31,50h6c1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC28,48.657,29.343,50,31,50z M61,53H6v-7h0V8c0-1.657-1.343-3-3-3C1.343,5,0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv6C11,48.657,12.343,50,14,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv21C45,48.657,46.343,50,48,50z M31,50h6c1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC28,48.657,29.343,50,31,50z M61,53H6v-7h0V8c0-1.657-1.343-3-3-3C1.343,5,0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv6C11,48.657,12.343,50,14,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINE_GRAPH_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0.001,0.003,0.002,0.005,0.003\r\n\t\t\t\tl0.011,0.007l0.001-0.001C33.813,41.813,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979\r\n\t\t\t\tc0,0,0.001,0,0.001-0.001l0.03-0.021l-0.002-0.003C63.487,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84l-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007\r\n\t\t\t\tl-0.001,0.001C21.187,26.187,20.616,26,20,26c-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tS0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.343,62.657,53,61,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0.001,0.003,0.002,0.005,0.003\r\n\t\t\t\tl0.011,0.007l0.001-0.001C33.813,41.813,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979\r\n\t\t\t\tc0,0,0.001,0,0.001-0.001l0.03-0.021l-0.002-0.003C63.487,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84l-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007\r\n\t\t\t\tl-0.001,0.001C21.187,26.187,20.616,26,20,26c-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tS0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.343,62.657,53,61,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32L13.615,13.615C18.32,8.91,24.82,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32L13.615,13.615C18.32,8.91,24.82,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,32L13.615,50.385C8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,32L13.615,50.385C8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385,18.385\r\n\t\t\t\tC45.68,55.09,39.18,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385,18.385\r\n\t\t\t\tC45.68,55.09,39.18,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26h26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26h26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385-18.385\r\n\t\t\t\tC55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385-18.385\r\n\t\t\t\tC55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIE_CHART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIE_CHART","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIE_CHART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35\r\n\t\t\t\tc0,16.017,12.984,29,29,29c16.016,0,29-12.984,29-29H29V6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35\r\n\t\t\t\tc0,16.017,12.984,29,29,29c16.016,0,29-12.984,29-29H29V6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POWER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POWER","display":"inline"},"children":[{"name":"g","attribs":{"id":"POWER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3.186\r\n\t\t\t\tc0,0,0,0,0,0V30C28,31.657,29.343,33,31,33z M42,8.162v0.009C41.687,8.061,41.351,8,41,8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35c0,12.703-10.297,23-23,23S8,47.703,8,35\r\n\t\t\t\tc0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829c0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162\r\n\t\t\t\tC9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29c16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3.186\r\n\t\t\t\tc0,0,0,0,0,0V30C28,31.657,29.343,33,31,33z M42,8.162v0.009C41.687,8.061,41.351,8,41,8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35c0,12.703-10.297,23-23,23S8,47.703,8,35\r\n\t\t\t\tc0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829c0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162\r\n\t\t\t\tC9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29c16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ALARM_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ALARM","display":"inline"},"children":[{"name":"g","attribs":{"id":"ALARM","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31h-9V18c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C47,32.343,45.657,31,44,31z M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14\r\n\t\t\t\tc0,2.8,0.967,5.37,2.575,7.412C5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521\r\n\t\t\t\tc7.392,3.167,13.318,9.093,16.485,16.485C63.053,19.006,64,16.49,64,13.749C64,7.26,58.74,2,52.251,2z M32,5\r\n\t\t\t\tC15.984,5,3,17.984,3,34c0,7.692,3.015,14.664,7.902,19.855l-4.023,4.024C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l4.327-4.327C20.144,61.067,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.226l4.357,4.357\r\n\t\t\t\tC53.473,62.668,54.215,63,55.034,63C56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.561-0.869-2.098l-4.056-4.056\r\n\t\t\t\tC57.976,48.687,61,41.704,61,34C61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23\r\n\t\t\t\tc12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31h-9V18c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C47,32.343,45.657,31,44,31z M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14\r\n\t\t\t\tc0,2.8,0.967,5.37,2.575,7.412C5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521\r\n\t\t\t\tc7.392,3.167,13.318,9.093,16.485,16.485C63.053,19.006,64,16.49,64,13.749C64,7.26,58.74,2,52.251,2z M32,5\r\n\t\t\t\tC15.984,5,3,17.984,3,34c0,7.692,3.015,14.664,7.902,19.855l-4.023,4.024C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l4.327-4.327C20.144,61.067,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.226l4.357,4.357\r\n\t\t\t\tC53.473,62.668,54.215,63,55.034,63C56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.561-0.869-2.098l-4.056-4.056\r\n\t\t\t\tC57.976,48.687,61,41.704,61,34C61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23\r\n\t\t\t\tc12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TIME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TIME","display":"inline"},"children":[{"name":"g","attribs":{"id":"TIME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V14c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18c0,1.657,1.343,3,3,3\r\n\t\t\t\th13c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V14c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18c0,1.657,1.343,3,3,3\r\n\t\t\t\th13c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M51.253,49.43c-3.766-1.826-2.382-0.399-7.309-2.427\r\n\t\t\t\tc-5.042-2.073-6.236-2.749-6.236-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917c1.178,0.338,1.578-1.372,1.641-2.464\r\n\t\t\t\tc0.07-1.055,0.697-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235c-0.36-3.691-2.931-7.544-9.42-7.826\r\n\t\t\t\tc-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236c-1.441-0.297-0.821,2.999-0.758,4.054\r\n\t\t\t\tc0.07,1.092,0.46,2.808,1.641,2.469c0.587,4.495,2.475,5.929,2.475,5.929L26.293,44.3c0,0-1.195,0.723-6.236,2.795\r\n\t\t\t\tc-4.927,2.028-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.716,55.432,44.816,51.253,49.43z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M51.253,49.43c-3.766-1.826-2.382-0.399-7.309-2.427\r\n\t\t\t\tc-5.042-2.073-6.236-2.749-6.236-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917c1.178,0.338,1.578-1.372,1.641-2.464\r\n\t\t\t\tc0.07-1.055,0.697-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235c-0.36-3.691-2.931-7.544-9.42-7.826\r\n\t\t\t\tc-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236c-1.441-0.297-0.821,2.999-0.758,4.054\r\n\t\t\t\tc0.07,1.092,0.46,2.808,1.641,2.469c0.587,4.495,2.475,5.929,2.475,5.929L26.293,44.3c0,0-1.195,0.723-6.236,2.795\r\n\t\t\t\tc-4.927,2.028-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.716,55.432,44.816,51.253,49.43z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USERS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USERS","display":"inline"},"children":[{"name":"g","attribs":{"id":"USERS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40.837,41.984c-3.685-1.828-2.266-0.429-6.79-2.299\r\n\t\t\t\tc-4.524-1.867-5.595-2.477-5.595-2.477l-0.04-4.282c0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22\r\n\t\t\t\tc0.063-0.951,0.626-3.916-0.669-3.651c0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051\r\n\t\t\t\tc-4.95,0.254-8.164,3.728-8.488,7.054c-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652\r\n\t\t\t\tc0.062,0.984,0.412,2.53,1.473,2.225c0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.652-5.596,2.519\r\n\t\t\t\tc-4.524,1.87-3.105,0.387-6.79,2.214c-5.824,2.889-5.824,10.832-5.824,10.832h0.002C0.001,52.817,0,52.818,0,52.82\r\n\t\t\t\tC0,54.024,0.979,55,2.187,55h42.285c1.208,0,2.187-0.976,2.187-2.18c0-0.002,0-0.003,0-0.005h0.001\r\n\t\t\t\tC46.66,52.815,46.66,44.872,40.837,41.984z M63.901,53.012c0,0,0-7.226-5.298-9.854c-3.353-1.663-2.062-0.391-6.178-2.092\r\n\t\t\t\tc-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896c0,0,1.541-1.166,2.022-4.85c0.962,0.277,1.288-1.124,1.34-2.02\r\n\t\t\t\tc0.057-0.865,0.569-3.562-0.608-3.322c0.241-1.801,0.43-3.429,0.344-4.291c-0.294-3.025-2.393-6.184-7.69-6.415\r\n\t\t\t\tc-4.504,0.231-7.427,3.392-7.722,6.417c-0.085,0.862,0.088,2.489,0.329,4.293c-1.177-0.244-0.67,2.458-0.618,3.323\r\n\t\t\t\tc0.057,0.896,0.375,2.302,1.34,2.024c0.479,3.685,2.02,4.86,2.02,4.86l-0.039,3.902c1.401,0.331,1.588,0.064,4.411,1.464\r\n\t\t\t\tc6.603,3.275,6.603,12.282,6.603,12.282h-0.002c0,0.002,0.001,0.004,0.001,0.006c0,1.181-0.832,2.165-1.943,2.41H61.91\r\n\t\t\t\tc1.099,0,1.99-0.888,1.99-1.983c0-0.002,0-0.003,0-0.005H63.901z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40.837,41.984c-3.685-1.828-2.266-0.429-6.79-2.299\r\n\t\t\t\tc-4.524-1.867-5.595-2.477-5.595-2.477l-0.04-4.282c0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22\r\n\t\t\t\tc0.063-0.951,0.626-3.916-0.669-3.651c0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051\r\n\t\t\t\tc-4.95,0.254-8.164,3.728-8.488,7.054c-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652\r\n\t\t\t\tc0.062,0.984,0.412,2.53,1.473,2.225c0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.652-5.596,2.519\r\n\t\t\t\tc-4.524,1.87-3.105,0.387-6.79,2.214c-5.824,2.889-5.824,10.832-5.824,10.832h0.002C0.001,52.817,0,52.818,0,52.82\r\n\t\t\t\tC0,54.024,0.979,55,2.187,55h42.285c1.208,0,2.187-0.976,2.187-2.18c0-0.002,0-0.003,0-0.005h0.001\r\n\t\t\t\tC46.66,52.815,46.66,44.872,40.837,41.984z M63.901,53.012c0,0,0-7.226-5.298-9.854c-3.353-1.663-2.062-0.391-6.178-2.092\r\n\t\t\t\tc-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896c0,0,1.541-1.166,2.022-4.85c0.962,0.277,1.288-1.124,1.34-2.02\r\n\t\t\t\tc0.057-0.865,0.569-3.562-0.608-3.322c0.241-1.801,0.43-3.429,0.344-4.291c-0.294-3.025-2.393-6.184-7.69-6.415\r\n\t\t\t\tc-4.504,0.231-7.427,3.392-7.722,6.417c-0.085,0.862,0.088,2.489,0.329,4.293c-1.177-0.244-0.67,2.458-0.618,3.323\r\n\t\t\t\tc0.057,0.896,0.375,2.302,1.34,2.024c0.479,3.685,2.02,4.86,2.02,4.86l-0.039,3.902c1.401,0.331,1.588,0.064,4.411,1.464\r\n\t\t\t\tc6.603,3.275,6.603,12.282,6.603,12.282h-0.002c0,0.002,0.001,0.004,0.001,0.006c0,1.181-0.832,2.165-1.943,2.41H61.91\r\n\t\t\t\tc1.099,0,1.99-0.888,1.99-1.983c0-0.002,0-0.003,0-0.005H63.901z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLLOWING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWING","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLLOWING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.485,63H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M48.101,59H40c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h8.101\r\n\t\t\t\tC48.046,46.673,48,46.343,48,46c0-1.185,0.355-2.282,0.947-3.212c-0.609-0.213-1.332-0.486-2.247-0.865\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.317,62.115,48,61.099,48,60C48,59.657,48.046,59.327,48.101,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.485,63H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M48.101,59H40c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h8.101\r\n\t\t\t\tC48.046,46.673,48,46.343,48,46c0-1.185,0.355-2.282,0.947-3.212c-0.609-0.213-1.332-0.486-2.247-0.865\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.317,62.115,48,61.099,48,60C48,59.657,48.046,59.327,48.101,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLLOWERS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWERS","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLLOWERS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.017\r\n\t\t\t\tc0.379-0.375,0.805-0.702,1.272-0.968c-3.979-1.701-5.021-2.294-5.021-2.294l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.515l-5.757-5.758C34.672,56.157,34,54.657,34,53z M52.899,47h5.827\r\n\t\t\t\tc-0.788-0.724-1.662-1.391-2.712-1.913c-1.855-0.923-2.765-1.246-3.483-1.415C52.833,44.387,53,45.174,53,46\r\n\t\t\t\tC53,46.343,52.954,46.673,52.899,47z M47.243,56H61c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H47.243l1.879-1.879\r\n\t\t\t\tC49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l7,7C45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tL47.243,56z M64.001,59.993c0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.103C52.953,59.326,53,59.657,53,60\r\n\t\t\t\tc0,1.099-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.017\r\n\t\t\t\tc0.379-0.375,0.805-0.702,1.272-0.968c-3.979-1.701-5.021-2.294-5.021-2.294l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.515l-5.757-5.758C34.672,56.157,34,54.657,34,53z M52.899,47h5.827\r\n\t\t\t\tc-0.788-0.724-1.662-1.391-2.712-1.913c-1.855-0.923-2.765-1.246-3.483-1.415C52.833,44.387,53,45.174,53,46\r\n\t\t\t\tC53,46.343,52.954,46.673,52.899,47z M47.243,56H61c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H47.243l1.879-1.879\r\n\t\t\t\tC49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l7,7C45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tL47.243,56z M64.001,59.993c0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.103C52.953,59.326,53,59.657,53,60\r\n\t\t\t\tc0,1.099-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.515,54l-1.757-1.757l0.015-0.016C43.682,51.147,43,49.659,43,48\r\n\t\t\t\tc0-2.776,1.894-5.088,4.454-5.774c-0.243-0.096-0.481-0.191-0.754-0.304c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832\r\n\t\t\t\tC43.317,62.115,43,61.099,43,60c0-1.657,0.672-3.157,1.757-4.243L46.515,54z M59.243,54l3.879-3.878\r\n\t\t\t\tC63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758l-3.879-3.879\r\n\t\t\t\tC50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.515,54l-1.757-1.757l0.015-0.016C43.682,51.147,43,49.659,43,48\r\n\t\t\t\tc0-2.776,1.894-5.088,4.454-5.774c-0.243-0.096-0.481-0.191-0.754-0.304c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832\r\n\t\t\t\tC43.317,62.115,43,61.099,43,60c0-1.657,0.672-3.157,1.757-4.243L46.515,54z M59.243,54l3.879-3.878\r\n\t\t\t\tC63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758l-3.879-3.879\r\n\t\t\t\tC50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.533,0,2.916,0.592,3.977,1.538l3.781-3.781c0.046-0.046,0.103-0.08,0.15-0.124c-0.298-0.183-0.57-0.386-0.894-0.547\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h46.691c-0.335-0.222-0.65-0.474-0.933-0.757L44.757,58.243z M64.001,59.993\r\n\t\t\t\tc0,0-0.008-1.709-0.498-4.011l-6.261,6.261c-0.284,0.283-0.598,0.535-0.933,0.757H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879\r\n\t\t\t\tC50.578,51.336,49.828,51,49,51c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l8-8C63.664,51.579,64,50.828,64,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.533,0,2.916,0.592,3.977,1.538l3.781-3.781c0.046-0.046,0.103-0.08,0.15-0.124c-0.298-0.183-0.57-0.386-0.894-0.547\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h46.691c-0.335-0.222-0.65-0.474-0.933-0.757L44.757,58.243z M64.001,59.993\r\n\t\t\t\tc0,0-0.008-1.709-0.498-4.011l-6.261,6.261c-0.284,0.283-0.598,0.535-0.933,0.757H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879\r\n\t\t\t\tC50.578,51.336,49.828,51,49,51c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l8-8C63.664,51.579,64,50.828,64,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H48\r\n\t\t\t\tC46.343,51,45,52.343,45,54z M64.001,59.993c0,0-0.005-0.571-0.096-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6h11.763c-0.998-1.141-2.225-2.155-3.749-2.913c-5.055-2.515-3.108-0.591-9.314-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H48\r\n\t\t\t\tC46.343,51,45,52.343,45,54z M64.001,59.993c0,0-0.005-0.571-0.096-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6h11.763c-0.998-1.141-2.225-2.155-3.749-2.913c-5.055-2.515-3.108-0.591-9.314-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.005-0.567-0.098-1.47C62.852,59.431,61.499,60,60,60\r\n\t\t\t\tc0,1.098-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-1.952,0.946-3.668,2.389-4.764c-0.797-0.208-1.898-0.571-3.689-1.314c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h45.832\r\n\t\t\t\tC48.317,62.115,48,61.099,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.005-0.567-0.098-1.47C62.852,59.431,61.499,60,60,60\r\n\t\t\t\tc0,1.098-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-1.952,0.946-3.668,2.389-4.764c-0.797-0.208-1.898-0.571-3.689-1.314c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h45.832\r\n\t\t\t\tC48.317,62.115,48,61.099,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0,0-10.932-7.987-14.906\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0,0-10.932-7.987-14.906\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HEART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HEART","display":"inline"},"children":[{"name":"g","attribs":{"id":"HEART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58.728,9.272C55.328,5.873,50.808,4,46,4c-4.808,0-8.662,1.727-12.061,5.126\r\n\t\t\t\tc-0.002,0.002-0.004,0.003-0.006,0.005c0,0-0.001,0.001-0.001,0.001L32,11.565l-1.932-2.286\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4C13.192,4,8.672,5.873,5.272,9.272\r\n\t\t\t\tC1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.817C29.911,59.574,30.933,60,32,60\r\n\t\t\t\tc1.066,0,2.089-0.426,2.84-1.183l23.892-24.093C62.129,31.325,64,26.806,64,22C64,17.192,62.128,12.672,58.728,9.272z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58.728,9.272C55.328,5.873,50.808,4,46,4c-4.808,0-8.662,1.727-12.061,5.126\r\n\t\t\t\tc-0.002,0.002-0.004,0.003-0.006,0.005c0,0-0.001,0.001-0.001,0.001L32,11.565l-1.932-2.286\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4C13.192,4,8.672,5.873,5.272,9.272\r\n\t\t\t\tC1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.817C29.911,59.574,30.933,60,32,60\r\n\t\t\t\tc1.066,0,2.089-0.426,2.84-1.183l23.892-24.093C62.129,31.325,64,26.806,64,22C64,17.192,62.128,12.672,58.728,9.272z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.055,46.909L23,52.939V19.79l16-8.727v25.338\r\n\t\t\t\tc1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332\r\n\t\t\t\tl0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3\r\n\t\t\t\tc-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3\r\n\t\t\t\tC2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.529,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13c7.18,0,13-5.82,13-13S57.18,35,50,35z\r\n\t\t\t\t M56.121,49.879C56.664,50.422,57,51.172,57,52c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879\r\n\t\t\t\tC47.578,54.664,46.828,55,46,55c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879\r\n\t\t\t\tC43.336,45.578,43,44.829,43,44c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879\r\n\t\t\t\tC52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.055,46.909L23,52.939V19.79l16-8.727v25.338\r\n\t\t\t\tc1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332\r\n\t\t\t\tl0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3\r\n\t\t\t\tc-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3\r\n\t\t\t\tC2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.529,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13c7.18,0,13-5.82,13-13S57.18,35,50,35z\r\n\t\t\t\t M56.121,49.879C56.664,50.422,57,51.172,57,52c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879\r\n\t\t\t\tC47.578,54.664,46.828,55,46,55c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879\r\n\t\t\t\tC43.336,45.578,43,44.829,43,44c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879\r\n\t\t\t\tC52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M58.121,47.121l-8,8C49.578,55.664,48.828,56,48,56c-0.828,0-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879\r\n\t\t\t\tC54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3C59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79\r\n\t\t\t\tl16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.004,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M58.121,47.121l-8,8C49.578,55.664,48.828,56,48,56c-0.828,0-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879\r\n\t\t\t\tC54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3C59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79\r\n\t\t\t\tl16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.004,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h12c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5\r\n\t\t\t\tv13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006\r\n\t\t\t\tl13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h12c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5\r\n\t\t\t\tv13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006\r\n\t\t\t\tl13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3s-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3C59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727\r\n\t\t\t\tv25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3s-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3C59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727\r\n\t\t\t\tv25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60.866,15.668l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168\r\n\t\t\t\tL44.867,3.667l-0.001,0.001C44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667\r\n\t\t\t\tL6.866,3.668C6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861\r\n\t\t\t\tC19.692,60.762,20.315,61,21,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006L42.725,49.56l14.542,10.906l0.012-0.016\r\n\t\t\t\tC57.766,60.795,58.358,61,59,61c1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017\r\n\t\t\t\tl10,7.5V51.986z M40,44.212l-16,8.727V19.79l16-8.727V44.212z M56,52.017l-10-7.5v-32.5l10,7.5V52.017z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60.866,15.668l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168\r\n\t\t\t\tL44.867,3.667l-0.001,0.001C44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667\r\n\t\t\t\tL6.866,3.668C6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861\r\n\t\t\t\tC19.692,60.762,20.315,61,21,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006L42.725,49.56l14.542,10.906l0.012-0.016\r\n\t\t\t\tC57.766,60.795,58.358,61,59,61c1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017\r\n\t\t\t\tl10,7.5V51.986z M40,44.212l-16,8.727V19.79l16-8.727V44.212z M56,52.017l-10-7.5v-32.5l10,7.5V52.017z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH","display":"inline"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.83-0.341-1.573-0.887-2.113l0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444\r\n\t\t\t\tC56.664,11.578,57,10.828,57,10c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.444,5.445l-1.556,1.556l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8\r\n\t\t\t\tC12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556C48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l1.556,1.556l5.444,5.444C52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.83-0.341-1.573-0.887-2.113l0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444\r\n\t\t\t\tC56.664,11.578,57,10.828,57,10c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.444,5.445l-1.556,1.556l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8\r\n\t\t\t\tC12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556C48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l1.556,1.556l5.444,5.444C52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW","display":"inline"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113l0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112L12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2\r\n\t\t\t\tl-0.009-0.009C51.659,16.573,52,15.83,52,15c0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h2C12.657,35,14,33.657,14,32z M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879C48.578,44.336,47.828,44,47,44\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2C12.336,47.422,12,48.172,12,49\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M55,29h-2\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h2c1.657,0,3-1.343,3-3C58,30.343,56.657,29,55,29z M32,50c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113l0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112L12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2\r\n\t\t\t\tl-0.009-0.009C51.659,16.573,52,15.83,52,15c0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h2C12.657,35,14,33.657,14,32z M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879C48.578,44.336,47.828,44,47,44\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2C12.336,47.422,12,48.172,12,49\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M55,29h-2\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h2c1.657,0,3-1.343,3-3C58,30.343,56.657,29,55,29z M32,50c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POLAROIDS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROIDS","display":"inline"},"children":[{"name":"g","attribs":{"id":"POLAROIDS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3\r\n\t\t\t\tV15C48,13.343,46.657,12,45,12z M42,49H6V18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3\r\n\t\t\t\tV15C48,13.343,46.657,12,45,12z M42,49H6V18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POLAROID_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROID","display":"inline"},"children":[{"name":"g","attribs":{"id":"POLAROID","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC56,7.343,54.657,6,53,6z M50,43H14V12h36V43z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC56,7.343,54.657,6,53,6z M50,43H14V12h36V43z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PICTURE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PICTURE","display":"inline"},"children":[{"name":"g","attribs":{"id":"PICTURE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,28c3.314,0,6-2.686,6-6c0-3.314-2.686-6-6-6s-6,2.686-6,6\r\n\t\t\t\tC16,25.314,18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2c-1.304,0-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14c0,1.304,0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.304,0.837,2.403,2,2.816v3.367C2.838,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,47.597,2,48.696,2,50c0,1.304,0.837,2.403,2,2.816v3.367C2.838,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.304-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,28c3.314,0,6-2.686,6-6c0-3.314-2.686-6-6-6s-6,2.686-6,6\r\n\t\t\t\tC16,25.314,18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2c-1.304,0-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14c0,1.304,0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.304,0.837,2.403,2,2.816v3.367C2.838,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,47.597,2,48.696,2,50c0,1.304,0.837,2.403,2,2.816v3.367C2.838,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.304-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FRAME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FRAME","display":"inline"},"children":[{"name":"g","attribs":{"id":"FRAME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816\r\n\t\t\t\tC7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367C2.837,47.597,2,48.696,2,50\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.304-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816\r\n\t\t\t\tC7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367C2.837,47.597,2,48.696,2,50\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.304-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.584,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.584,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.772,20,35,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182\r\n\t\t\t\tl-4.189,3.77L33,38.778c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9\r\n\t\t\t\tL47,34.222c0.61-0.549,1-1.336,1-2.222S47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.772,20,35,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182\r\n\t\t\t\tl-4.189,3.77L33,38.778c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9\r\n\t\t\t\tL47,34.222c0.61-0.549,1-1.336,1-2.222S47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008l10,9L27,43.222C27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.222l0.007-0.008\r\n\t\t\t\tL26.818,35H45c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008l10,9L27,43.222C27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.222l0.007-0.008\r\n\t\t\t\tL26.818,35H45c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.23,26.993l-9-10l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818l3.77,4.189L38.778,31\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.993z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.36,0,26,11.64,26,26S46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.23,26.993l-9-10l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818l3.77,4.189L38.778,31\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.993z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.36,0,26,11.64,26,26S46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1c0.885,0,1.673-0.391,2.222-1l0.008,0.007\r\n\t\t\t\tl9-10L43.222,37C43.7,36.468,44,35.772,44,35C44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6s26,11.64,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1c0.885,0,1.673-0.391,2.222-1l0.008,0.007\r\n\t\t\t\tl9-10L43.222,37C43.7,36.468,44,35.772,44,35C44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6s26,11.64,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BLOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BLOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BLOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32c0-6.098,2.115-11.694,5.63-16.128\r\n\t\t\t\tL48.128,52.37C43.694,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63C20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.098,55.886,43.694,52.37,48.128z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32c0-6.098,2.115-11.694,5.63-16.128\r\n\t\t\t\tL48.128,52.37C43.694,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63C20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.098,55.886,43.694,52.37,48.128z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879\r\n\t\t\t\tC41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.578,46,21.829,46,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879\r\n\t\t\t\tC41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.578,46,21.829,46,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,43.001C46,43.001,46,43.001,46,43.001C46,43,46,43,46,42.999V43.001z\r\n\t\t\t\t M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758\r\n\t\t\t\tl-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l9,9\r\n\t\t\t\tC26.422,42.664,27.172,43,28,43c0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21\r\n\t\t\t\tz M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,43.001C46,43.001,46,43.001,46,43.001C46,43,46,43,46,42.999V43.001z\r\n\t\t\t\t M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758\r\n\t\t\t\tl-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l9,9\r\n\t\t\t\tC26.422,42.664,27.172,43,28,43c0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21\r\n\t\t\t\tz M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GLOBE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GLOBE","display":"inline"},"children":[{"name":"g","attribs":{"id":"GLOBE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089\r\n\t\t\t\tc0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013c-0.023-0.013-0.047-0.026-0.07-0.038\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235c-0.03-0.002-0.059-0.004-0.089-0.006\r\n\t\t\t\tc-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114c-0.004-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z M43.382,11.985\r\n\t\t\t\tc0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.165,0.009,0.28,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.309,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.066-0.023-0.131-0.047-0.197-0.07c-0.172-0.022-0.357,0.059-0.477,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.019,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.276,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.288,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.102,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.093-0.021,0.187-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.048-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.114-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.064-0.045h-0.172c-0.066-0.021-0.112-0.079-0.21-0.089c-0.036,0.042-0.072,0.085-0.108,0.127\r\n\t\t\t\tc-0.04,0.109,0.108,0.294,0.127,0.4c-0.019,0.017-0.038,0.034-0.057,0.051c-0.108-0.025-0.306-0.287-0.35-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.101,0.233-0.28,0.267v0.114c0.275,0.013,0.551,0.025,0.826,0.038c0.059-0.04,0.119-0.081,0.178-0.121\r\n\t\t\t\tc0.078-0.033,0.162-0.016,0.254-0.045c0.078-0.04,0.157-0.08,0.235-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.023-0.038-0.047-0.076-0.07-0.114c-0.061-0.017-0.123-0.034-0.184-0.051\r\n\t\t\t\tc-0.119-0.023-0.251,0.029-0.375,0.026c-0.025-0.051-0.051-0.102-0.076-0.153c-0.03-0.011-0.059-0.021-0.089-0.032\r\n\t\t\t\tc-0.132,0.016-0.223,0.14-0.286,0.229h-0.108c-0.028-0.1-0.003-0.248,0.025-0.343c-0.136,0.061-0.143,0.232-0.267,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c-0.167-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.081,0.106-0.161,0.212-0.241,0.318c-0.087,0.062-0.151,0.069-0.197,0.172c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061c-0.074-0.021-0.104-0.081-0.222-0.057C21.066,9.601,20.983,9.637,20.993,9.697z\r\n\t\t\t\t M21.388,8.988c-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24c0,0,0.001,0,0.001,0\r\n\t\t\t\tc0.002-0.004-0.006-0.009-0.002-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.051-0.021-0.102-0.042-0.153-0.064c-0.12,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.145-0.016-0.191-0.025\r\n\t\t\t\tc-0.086-0.017-0.139,0.054-0.197,0.07c-0.059-0.006-0.119-0.013-0.178-0.019h-0.013c-0.072,0.047-0.144,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.059-0.242-0.038c-0.091,0.04-0.182,0.08-0.273,0.121h-0.178c-0.091-0.099-0.215-0.211-0.273-0.337\r\n\t\t\t\tc-0.054-0.014-0.128-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.013c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.169-0.233-0.211-0.33-0.305c-0.017-0.016-0.033-0.139-0.089-0.191c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.089-0.098-0.178-0.195-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.054-0.074-0.138-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.108c-0.004,0.002-0.008,0.004-0.013,0.007c-0.182-0.153-0.224-0.622-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.106-0.144-0.038-0.516-0.089-0.724c-0.033-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.153-0.152c-0.139-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.165-0.432\r\n\t\t\t\tc-0.095-0.171-0.257-0.287-0.299-0.521c0.033-0.045,0.038-0.066,0.095-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.076,0.013c0.08-0.159,0.057-0.398,0.184-0.508c-0.074-0.191-0.148-0.381-0.222-0.572\r\n\t\t\t\tc-0.122,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.158,0.011-0.28,0.032c-0.042-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.04,0.032-0.081,0.063-0.121,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.013-0.017-0.025-0.034-0.038-0.051c-0.148-0.032-0.297-0.064-0.445-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.07-0.038-0.033-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.167,0.358-0.146,0.527c-0.038,0.02-0.088,0.07-0.146,0.064\r\n\t\t\t\tc-0.153-0.018-0.266-0.184-0.4-0.235c-0.132-0.05-0.433-0.054-0.54-0.114c-0.119-0.068-0.137-0.311-0.241-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.068-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.076,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.02,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.177-0.032,0.261\r\n\t\t\t\tc0.08,0.135,0.04,0.036,0.14,0.102c0.004,0.015,0.008,0.03,0.013,0.044c0.042,0.025,0.085,0.051,0.127,0.076\r\n\t\t\t\tc0.063-0.012,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.017,0.08,0.022,0.102,0.044\r\n\t\t\t\tc0.015,0.02,0.01,0.028,0.006,0.057c0.034,0.023,0.057,0.034,0.121,0.032c0.011,0.033,0.011,0.06,0,0.095\r\n\t\t\t\tc0.065,0.069,0.166,0.135,0.267,0.165c0.006,0.032,0.013,0.063,0.019,0.095c0.033,0.061,0.118,0.081,0.14,0.159v0.095\r\n\t\t\t\tc0.014,0.018,0.035,0.022,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.025c-0.023,0.019-0.047,0.038-0.07,0.057h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.034,0.013,0.047,0.006,0.095c0.142,0.043,0.215,0.149,0.324,0.222\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.362c0.062,0.032,0.311,0.192,0.388,0.172\r\n\t\t\t\tc0.102-0.053,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.01,0.145,0.061,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.28c0.087-0.008,0.174-0.017,0.261-0.025c0.052-0.039,0.054-0.108,0.127-0.133\r\n\t\t\t\tc0.214-0.019,0.428-0.038,0.642-0.057c0.032-0.012,0.039-0.042,0.083-0.057c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.025,0.03,0.051,0.044,0.076c0.023,0.002,0.047,0.004,0.07,0.006c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.095c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.006\r\n\t\t\t\tc0.002-0.027-0.002-0.037-0.013-0.063c0.025-0.016,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.026,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.015-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.064,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.261c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.165c0.049,0.042,0.097,0.085,0.146,0.127v0.006c-0.038-0.004-0.076-0.009-0.114-0.013\r\n\t\t\t\tc-0.031,0.138-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.015,0.114,0.07\r\n\t\t\t\tc-0.021,0.015-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.013c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.015-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.204,0.133,0.248c0.029,0.068-0.018,0.161,0.038,0.261\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.01-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.032-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.222-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.216,0.216,0.432,0.324,0.648c0.075,0.146,0.371,0.404,0.203,0.572c0.03,0.14,0.059,0.28,0.089,0.419\r\n\t\t\t\tc0.023,0.055,0.047,0.11,0.07,0.165c0.02,0.082-0.031,0.143-0.025,0.203c0.008,0.08,0.071,0.147,0.089,0.21\r\n\t\t\t\tc0.014,0.047-0.021,0.073-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.117,0.131,0.233,0.263,0.349,0.394\r\n\t\t\t\tc0.12,0.189,0.16,0.433,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.077,0-0.095,0.025\r\n\t\t\t\tc-0.025,0.032,0.123,0.23,0.159,0.286c-0.017,0.049-0.034,0.098-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.032\r\n\t\t\t\tc0.006,0.002,0.013,0.004,0.019,0.006c0.006-0.015,0.013-0.03,0.019-0.045c0.017-0.008,0.022-0.011,0.051-0.013\r\n\t\t\t\tc0.013,0.023,0.025,0.047,0.038,0.07c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.029,0.022,0.055,0.038,0.095\r\n\t\t\t\tc0.024,0.042,0.115,0.075,0.165,0.089c0.06-0.046,0.096-0.122,0.178-0.146c0.115-0.035,0.251,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.089c0.15-0.071,0.214,0,0.331,0c0.034-0.019,0.068-0.038,0.102-0.057\r\n\t\t\t\tc0.122-0.035,0.234,0.073,0.318,0.102c0.04-0.031,0.07-0.055,0.095-0.102c0.057,0.013,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.017-0.018,0.02-0.053,0.032-0.076c0.05-0.048,0.322-0.017,0.4-0.07c0.083-0.072,0.165-0.144,0.248-0.216\r\n\t\t\t\tc0.416-0.327,0.721-0.688,1.017-1.138c0.074-0.113,0.264-0.191,0.305-0.299c0.02-0.052-0.028-0.122-0.019-0.146\r\n\t\t\t\tc0.016-0.044,0.065-0.032,0.089-0.064c0.071-0.091,0.109-0.35,0.089-0.496c-0.038-0.015-0.078-0.04-0.095-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.078-0.091,0.132-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.009-0.061-0.052-0.036-0.064-0.07c0.002-0.006,0.004-0.013,0.006-0.019c0.013-0.032,0.025-0.064,0.038-0.095\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.019-0.388c-0.028,0.01-0.035,0.018-0.076,0.019c-0.039-0.124-0.087-0.274-0.044-0.375\r\n\t\t\t\tc-0.006-0.075-0.062-0.112-0.114-0.14v-0.203c0.119-0.087,0.237-0.174,0.356-0.261c0.145-0.122,0.233-0.305,0.4-0.407\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.642-0.292c0.137-0.094,0.224-0.268,0.331-0.394c0-0.028-0.009-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.011-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.163,0.012-0.337-0.07-0.432c0.003-0.034,0.034-0.063,0.044-0.108c0.026-0.113-0.041-0.294-0.057-0.394\r\n\t\t\t\tc0.03-0.055,0.059-0.11,0.089-0.165c-0.065-0.14-0.183-0.157-0.267-0.267c-0.083-0.108-0.127-0.393-0.07-0.553\r\n\t\t\t\tc-0.018-0.028-0.043-0.033-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.126-0.197-0.216\r\n\t\t\t\tc-0.037-0.095,0.061-0.407,0.102-0.451c0.024-0.026,0.068-0.021,0.089-0.051c0.047-0.068,0.006-0.104,0.025-0.165\r\n\t\t\t\tc0.042-0.137,0.172-0.143,0.184-0.368c0.096-0.053,0.187-0.052,0.191-0.203c0.085,0.016,0.124-0.022,0.191-0.051\r\n\t\t\t\tc0.024-0.036,0.026-0.054,0.006-0.095c0.208-0.235,0.415-0.47,0.623-0.705c0.229-0.185,0.515-0.325,0.744-0.508\r\n\t\t\t\tc0.085-0.104,0.169-0.208,0.254-0.311c0.168-0.215,0.419-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.074-0.119,0.148-0.237,0.222-0.356c-0.002-0.028-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.11-0.195,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.014-0.04,0.079-0.07,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.155c-0.032-0.185-0.128-0.278-0.28-0.375c0.018,0.077-0.003,0.113-0.025,0.191c-0.034,0.026-0.04,0.042-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.044c0.015,0.017,0.03,0.034,0.044,0.051c-0.029,0.063-0.008,0.077,0.006,0.14v0.318\r\n\t\t\t\tc0.023,0.101,0.073,0.267,0.146,0.324c0.208,0.044,0.476-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.226,51.767,35.185,51.688,35.155z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.317,0.022-0.352-0.084\r\n\t\t\t\tC50.47,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.038,0.017,0.076,0.034,0.114,0.051\r\n\t\t\t\tc0.07-0.025,0.14-0.051,0.21-0.076c-0.013-0.036-0.025-0.072-0.038-0.108c0.033-0.077,0.142-0.097,0.203-0.146\r\n\t\t\t\tc0.083-0.066,0.227-0.183,0.267-0.286c0.015-0.059,0.03-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.064-0.146\r\n\t\t\t\tc-0.099-0.13-0.202-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.025-0.222\r\n\t\t\t\tc0.032-0.042,0.064-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.099,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.102-0.002,0.239,0.039,0.311,0.025\r\n\t\t\t\tc0.034-0.012,0.069-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.232,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.056,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.068,0.042-0.102,0.064\r\n\t\t\t\tc-0.044,0.061-0.038,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.085,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.308,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.063-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.013-0.03,0.025-0.044,0.038c-0.012-0.052-0.021-0.069-0.07-0.083\r\n\t\t\t\tc-0.033-0.007-0.066,0.023-0.095,0.038c-0.203,0.107-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.015\r\n\t\t\t\tc-0.076-0.302-0.168-0.598-0.232-0.904c0.011,0.001,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.028,0.009-0.055,0.013-0.083h0.006c0.023,0.048,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.013,0.019,0.019\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.058,0.138-0.099,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.089c0.198-0.063,0.318-0.017,0.375,0.14c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.049,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.009,0.006,0.013c-0.061-0.008-0.097-0.021-0.121,0.032\r\n\t\t\t\tC7.564,37.5,7.647,37.606,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.435c0.051-0.052,0.122-0.09,0.155-0.153\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.022,0.108,0.044,0.172,0.019h0.006c0.013,0.192-0.204,0.292-0.248,0.483\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.349c0.051-0.121,0.102-0.242,0.153-0.362c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.077-0.036-0.114-0.057-0.172c0.045-0.054,0.132-0.205,0.019-0.254v-0.038c0.146,0.013,0.159-0.073,0.235-0.14\r\n\t\t\t\tc0.08-0.07,0.491-0.363,0.585-0.381c0.051-0.01,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.025\r\n\t\t\t\tc-0.005-0.182,0.137-0.241,0.292-0.254c-0.009-0.051-0.017-0.102-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.07,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.169,0.065-0.288,0.184-0.331c0-0.048-0.035-0.138-0.019-0.222c0.021-0.107,0.097-0.243,0.076-0.369\r\n\t\t\t\tc-0.017-0.165-0.034-0.331-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.464c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.102h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.064c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.756\r\n\t\t\t\tc-0.161-0.05-0.338,0.008-0.458-0.07c-0.256-0.166-0.436-0.435-0.731-0.566c-0.171-0.076-0.287,0.017-0.451-0.013\r\n\t\t\t\tc-0.1-0.015-0.199-0.03-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.242c0.013-0.077-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.034-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.216c-0.065-0.023-0.106-0.068-0.159-0.102c-0.052,0.007-0.15,0.015-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.191c-0.069,0.101-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.07,0.012-0.1,0.032-0.146c-0.111,0.023-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.292\r\n\t\t\t\tc0.065-0.105,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.578c-0.021-0.068-0.016-0.143-0.076-0.172c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.036-0.22-0.072-0.331-0.108c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.027-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.015-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.12-0.214-0.314-0.388-0.292c-0.011,0.021-0.021,0.042-0.032,0.063v0.013c-0.013-0.091-0.026-0.182-0.038-0.273\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.019c-0.066-0.004-0.131-0.008-0.197-0.013v-0.006\r\n\t\t\t\tc0.187-0.058,0.138-0.167,0.273-0.222c0.002-0.004,0.004-0.008,0.006-0.013c-0.051-0.035-0.122-0.045-0.178-0.083\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.019-0.038,0.036-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191V37.97c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.009,0.008-0.017,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.126-0.21,0.146c-0.261,0.058-0.335-0.149-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.057-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.016-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.032c-0.016,0.063-0.425,0.178-0.515,0.21\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.008,0.036-0.018,0.036-0.038,0.057c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.044-0.094,0.072-0.152,0.083c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.1,0.07-0.186,0.121-0.254\r\n\t\t\t\tc-0.012-0.102-0.056-0.167-0.089-0.254c0.041-0.061,0.144-0.086,0.241-0.089c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.184c-0.04,0.013-0.081,0.025-0.121,0.038\r\n\t\t\t\tc0.019-0.036,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.023-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.038\r\n\t\t\t\tc-0.047,0.032-0.093,0.064-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.128-0.331,0.095\r\n\t\t\t\tc-0.05-0.063-0.09-0.028-0.135-0.022c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.032v0.006c-0.047,0.013-0.093,0.025-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.083c0.114,0.034,0.208,0.114,0.337,0.146c0.067,0.017,0.202-0.02,0.261,0.019\r\n\t\t\t\tc0.043,0.025,0.066,0.123,0.07,0.184c0.099,0.06,0.295,0.06,0.388,0.127c-0.006,0.065-0.053,0.106-0.102,0.127\r\n\t\t\t\tc-0.019,0.021-0.038,0.042-0.057,0.063v0.006c0.141,0.006,0.266-0.057,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.032\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.07c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.013-0.028,0.025-0.055,0.038-0.083c-0.079-0.081-0.36-0.089-0.483-0.14\r\n\t\t\t\tc-0.04-0.044-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.106-0.191-0.159H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.017-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21H6.52c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tC8.338,28.6,8.338,28.606,8.325,28.59c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.02,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006h0.006c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299h-0.095c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0c0.001,0,0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tc-0.008-0.018-0.024-0.007-0.038-0.018c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.022-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005c-0.054,0.001-0.109,0.001-0.163,0.001c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.819,0,9.317,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.048-0.001-0.132-0.022-0.153-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.013,0.013-0.025,0.025-0.038,0.038\r\n\t\t\t\tc0.039,0.028,0.075,0.062,0.102,0.102c-0.098,0.069-0.24,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc0.032,0.03,0.064,0.059,0.095,0.089c-0.004,0.027-0.008,0.055-0.013,0.083c-0.383-0.001-0.322,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.208,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.226,0.096,0.343,0.121c0.109-0.061,0.161-0.161,0.248-0.241\r\n\t\t\t\tc-0.002-0.025-0.004-0.051-0.006-0.076c-0.034-0.021-0.068-0.042-0.102-0.064c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.023-0.023,0.047-0.047,0.07-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.042-0.034-0.064-0.051c-0.013-0.017-0.002-0.045,0.006-0.076c0.015-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.27,0.047,0.356,0.006c0.036-0.028,0.072-0.055,0.108-0.083c0.021-0.023,0.042-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.055-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.099-0.106c0.83,0.518,1.632,1.072,2.395,1.677\r\n\t\t\t\tc-0.005,0.025-0.011,0.05-0.016,0.075c-0.049,0.083-0.097,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.464,0.489\r\n\t\t\t\tc0.053,0.004,0.106,0.008,0.159,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.03,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.135,0.168,0.286,0.146c-0.018,0.094-0.114,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.635-0.089\r\n\t\t\t\tc-0.081,0.019-0.116,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.12,0.179-0.292,0.203c-0.021,0.033-0.037,0.114-0.051,0.146c-0.095,0.048-0.191-0.018-0.216-0.089\r\n\t\t\t\tc0.03-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.451,0.032c-0.042,0.034-0.085,0.068-0.127,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.105-0.03-0.28-0.002-0.362,0.032c-0.091,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.044-0.057c-0.182,0.003-0.224,0.07-0.375,0.019c0-0.05,0.007-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.167,0.2-0.419,0.248\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.4,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.341,0.069-0.427-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.097,0.009-0.195,0.017-0.292,0.025c-0.082-0.018-0.133-0.053-0.216-0.032\r\n\t\t\t\tc-0.017,0.148,0.159,0.164,0.121,0.337c-0.051,0.081-0.102,0.161-0.152,0.241c-0.004,0.004-0.009,0.009-0.013,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.029,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.019,0.108v0.013\r\n\t\t\t\tc-0.166-0.008-0.335-0.211-0.566-0.184c-0.124,0.261-0.492,0.237-0.661,0.445c0.005,0.173,0.26,0.294,0.14,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.102-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.103,0-0.1,0.078-0.153,0.127c0.003,0.063,0.126,0.201,0.191,0.229c0.057,0.024,0.137-0.001,0.191,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.261,0.21c-0.072-0.016-0.157,0.001-0.21-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.076-0.038-0.207-0.014-0.292-0.057c-0.043-0.022-0.208-0.444-0.216-0.527c0.122-0.036,0.163-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.136-0.088-0.245-0.222-0.362-0.33c0.221-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.14,0.021,0.21,0.032c0.5,0.15,1.305,0.524,1.831,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.362-0.305c-0.068-0.021-0.136-0.042-0.203-0.063c-0.108-0.038-0.216-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.059,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.013-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.046,0.019-0.103,0.021-0.14,0.044\r\n\t\t\t\tc-0.114-0.074-0.219-0.036-0.369-0.025c-0.066-0.103-0.205-0.127-0.28-0.222c0.237,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.028-0.017-0.055-0.034-0.083-0.051c-0.065-0.023-0.14,0.003-0.191-0.019\r\n\t\t\t\tc-0.106-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.04-0.008-0.081-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.058-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.117,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.013-0.28c-0.139,0.095-0.322,0.263-0.388,0.426c-0.017-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.281-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.144,0.185-0.172,0.273c-0.187-0.096-0.28-0.273-0.381,0.083c-0.042-0.036-0.085-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.153,0.229\r\n\t\t\t\tc0.014-0.069,0.027-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.013-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.148,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.025-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.038,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.106,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.032,0.14\r\n\t\t\t\tc-0.019,0.028-0.038,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.064-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.009,0.027,0.014,0.055,0.044,0.076v0.038c-0.054,0.016-0.077,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.254-0.025\r\n\t\t\t\tc0.021,0.015,0.042,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.013,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.03-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.176,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.019-0.002,0.038-0.004,0.057-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.013-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.28,0.045c-0.111-0.019-0.163-0.137-0.299-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.037-0.04,0.304,0.049,0.369,0.083c0.082,0.043,0.287-0.119,0.311-0.153h0.057c-0.002-0.095-0.048-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.052-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.019-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.064-0.083\r\n\t\t\t\tc0.016-0.027-0.004-0.073-0.013-0.115h0.127c0.08-0.112,0.117-0.111,0.222-0.191c0.05-0.038,0.05-0.096,0.114-0.127\r\n\t\t\t\tc0.023,0.015,0.047,0.03,0.07,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.184-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.128-0.081,0.152-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.091-0.069,0.094-0.193,0.21-0.248c0.051,0.034,0.102,0.068,0.153,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.261,0.115c0.011,0.019,0.021,0.038,0.032,0.057c0.014,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.051,0.057c0.013,0.018,0.009,0.038,0.006,0.076c-0.04-0.002-0.081-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.038-0.057v-0.013c-0.09,0.094-0.016,0.207-0.159,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.159-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.089,0.064c0,0.094-0.02,0.143-0.032,0.216c0.034,0.053,0.068,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.025,0.121c-0.035,0.188-0.011,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.053-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.02,0.042,0.039,0.071,0.083,0.089\r\n\t\t\t\tc0.067,0.051,0.193-0.016,0.235-0.038v0.026c0.065-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.055,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.017-0.083,0.1-0.04,0.152-0.083c0.028-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.108,0.038\r\n\t\t\t\tc0.026-0.027,0.034-0.043,0.083-0.051c0.021,0.013,0.042,0.025,0.064,0.038c0.059-0.057,0.198-0.098,0.299-0.108\r\n\t\t\t\tc0.008-0.015,0.017-0.03,0.025-0.045c0.029-0.003-0.01,0.079-0.019,0.114c0.148,0.215,0.345-0.041,0.489,0.229\r\n\t\t\t\tc-0.015,0.011-0.03,0.021-0.045,0.032c-0.094-0.003-0.14-0.044-0.222-0.07c-0.076,0.006-0.1,0.066-0.14,0.108\r\n\t\t\t\tc-0.053-0.012-0.053-0.037-0.102-0.025c-0.016,0.027-0.014,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.025,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.064,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.058,0.067-0.108,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.034,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.045c-0.044-0.007-0.062,0.006-0.102-0.006c-0.085,0.046-0.145,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.013,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.044,0.165c0.022,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.025,0.017,0.038,0.025c-0.021,0.16-0.09,0.268-0.038,0.451c-0.041,0.106-0.222,0.17-0.324,0.076\r\n\t\t\t\tc-0.015-0.04-0.03-0.081-0.044-0.121c-0.047-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.267,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.032,0.025-0.064,0.051-0.095,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.009,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.011,0.035,0.018,0.047,0.013,0.089c-0.081,0.046-0.249,0.013-0.362,0.007c-0.016,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.009-0.053-0.026-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025v-0.044\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025h0.006c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.023,0.012,0.039-0.004,0.07-0.019c0.034,0.01,0.181,0.419,0.172,0.451v0.013c-0.023-0.002-0.047-0.004-0.07-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.013,0.009,0.025,0.017,0.038,0.025h0.083\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.063-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.061-0.034-0.123-0.068-0.184-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.006,0.095,0.142,0.064,0.203,0.108c0.03,0.023,0.006,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.436-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.095-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.327,0.011-0.413-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.185,0.165,0.267,0.267c0.025,0.026,0.059-0.025,0.108-0.013\r\n\t\t\t\tc0.006,0.001,0.153,0.061,0.165,0.07c0.049,0.035,0.089,0.097,0.14,0.133c0.133,0.095,0.272,0.155,0.407,0.248\r\n\t\t\t\tc0.03,0.036,0.059,0.072,0.089,0.108c0.042,0.021,0.085,0.042,0.127,0.064c0.003,0.051,0.002,0.06-0.038,0.07\r\n\t\t\t\tc-0.006,0.043,0.016,0.226,0.013,0.235c-0.017,0.032-0.034,0.064-0.051,0.095c0.022,0.032,0.038,0.045,0.038,0.102\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c0.027,0.077,0.144,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.025,0.025v0.013c-0.027,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.036,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.227-0.061,0.349-0.025c0.077,0.022,0.119,0.081,0.223,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.042,0.076-0.064,0.114\r\n\t\t\t\tc0.038,0.047,0.076,0.093,0.114,0.14c0.014,0.044-0.016,0.099-0.013,0.146c0.019,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.019-0.015,0.038-0.03,0.057-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.055-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.034,0.011,0.068,0.021,0.102,0.032h0.013c-0.006,0.013-0.013,0.025-0.019,0.038c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.019-0.035,0.029-0.044,0.083-0.045c-0.023-0.029-0.028-0.02-0.025-0.064c-0.021,0.004-0.042,0.009-0.064,0.013\r\n\t\t\t\tc-0.022-0.048-0.026-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.107,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.013-0.011,0.025-0.021,0.038-0.032c-0.013-0.04-0.025-0.081-0.038-0.121\r\n\t\t\t\tc0.008-0.002,0.017-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.102-0.044\r\n\t\t\t\tc-0.013-0.03-0.026-0.059-0.038-0.089v-0.007c0.03-0.019,0.042-0.017,0.083-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.017-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.222-0.311\r\n\t\t\t\tc0.002-0.047,0.015-0.064,0.038-0.089c-0.011-0.013-0.021-0.025-0.032-0.038c0.035-0.015,0.06-0.023,0.076-0.057\r\n\t\t\t\tc0.008,0.002,0.017,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.032,0.019\r\n\t\t\t\tc0.04,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.064,0.008,0.095,0.013h0.013c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.015-0.002,0.03-0.004,0.044-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.024-0.041-0.06-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.067,0.015,0.083,0.045\r\n\t\t\t\tc0.017,0.015,0.034,0.03,0.051,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.191-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.034,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.272-0.012,0.286,0.121c0.008-0.009,0.017-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.095,0.057c-0.008,0.032-0.017,0.064-0.025,0.095\r\n\t\t\t\tc0.066-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.015-0.03,0.03-0.059,0.044-0.089\r\n\t\t\t\tc0.038-0.022,0.1,0.002,0.153-0.019c0.136-0.054,0.112,0.009,0.273,0.013c0.026-0.03,0.045-0.056,0.063-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.21-0.089c-0.087-0.049-0.178-0.313-0.267-0.299v-0.051c0.036-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.013-0.121\r\n\t\t\t\tc0.036-0.199,0.06-0.377,0.286-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.034-0.038-0.051-0.064\r\n\t\t\t\tc-0.032-0.104,0.093-0.097,0.153-0.133c0.199-0.119,0.104-0.321,0.509-0.311c0.008-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.064,0.076v0.013c-0.023,0.021-0.047,0.042-0.07,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.026,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267v0.019c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.102-0.009,0.153-0.013c0.034-0.028,0.068-0.055,0.102-0.083c0.06-0.018,0.089,0.017,0.133,0.025\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0.023-0.032,0.052-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.235,0.038c-0.024-0.123-0.199-0.258-0.337-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.103-0.029,0.197-0.016,0.305-0.019c0.037-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.022,0.013,0.019,0.008,0.045,0c0.05-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.047-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.222-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.186-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.032,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.413,0.152c-0.008,0.011-0.017,0.021-0.026,0.032c0.074,0.053,0.148,0.098,0.197,0.178\r\n\t\t\t\tc-0.034,0.026-0.077,0.034-0.14,0.032c-0.028,0.081-0.083,0.13-0.089,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.044,0.013,0.089,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.28,0.21c0.047,0.038,0.116,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.015,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.079,0.289-0.089,0.388-0.324,0.445c-0.131,0.031-0.222-0.051-0.337-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.098,0.022-0.277-0.021-0.381-0.038c-0.126-0.021-0.151-0.13-0.292-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.102,0.03-0.172,0.013c-0.083-0.021-0.076-0.089-0.121-0.146c-0.173,0.111-0.323-0.021-0.54,0.032\r\n\t\t\t\tc-0.196,0.047-0.34,0.172-0.515,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.138,0.074-0.202,0.007-0.318-0.013\r\n\t\t\t\tc-0.019,0.006-0.038,0.013-0.057,0.019c-0.093-0.008-0.186-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.069,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.013,0.009,0.019,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.025c-0.114-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.089-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.013,0.006,0.026,0.013,0.038,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.142,0.01-0.159-0.044c-0.091,0.011-0.203,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.07,0.064\r\n\t\t\t\tc-0.01,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.261-0.038v0.006c-0.015,0.024-0.03,0.039-0.057,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.064,0.045c0.014,0.023-0.007,0.02-0.013,0.064h0.057\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.007,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.032-0.003-0.055-0.025-0.089-0.044c-0.011,0.023-0.021,0.047-0.032,0.07v0.045\r\n\t\t\t\tc0.105,0.013,0.133,0.046,0.222,0.07c0.003,0.06-0.021,0.124,0.006,0.165c0.034,0.021,0.068,0.042,0.102,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.055,0.021-0.083,0.032c0.006,0.013,0.013,0.025,0.019,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.017,0.019-0.024,0.019-0.032,0.051\r\n\t\t\t\tc0.006,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.009,0.004,0.013,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.085-0.003,0.086,0.023,0.146,0.051c0.029,0.014,0.049-0.015,0.076-0.038c0.025,0.059,0.051,0.119,0.076,0.178\r\n\t\t\t\tc0.099,0.031,0.23-0.025,0.299,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.03-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.108,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.013,0.017,0.025,0.034,0.038,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.017,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.038,0.107-0.064,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.305,0.578c-0.008,0.042-0.017,0.085-0.025,0.127c-0.041,0.134-0.077,0.258-0.172,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.222,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.072,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.066,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.07,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.068,0.051,0.102,0.076c0.086,0.071,0.195,0.232,0.235,0.343\r\n\t\t\t\tc0.011,0.068,0.021,0.136,0.032,0.203c-0.008,0.039-0.042,0.068-0.032,0.127c0.03,0.172,0.113,0.353,0.165,0.496v0.216\r\n\t\t\t\tc0.095,0.205,0.383,0.166,0.553,0.057c0.057-0.047,0.114-0.093,0.172-0.14c0.094-0.028,0.217,0.012,0.299-0.013\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.026,0.163,0.016,0.229-0.019c0.069-0.036,0.087-0.124,0.152-0.159\r\n\t\t\t\tc0.238-0.13,0.547-0.129,0.769-0.267c0.062-0.038,0.046-0.087,0.076-0.159c0.029-0.07,0.139-0.142,0.21-0.172\r\n\t\t\t\tc0.121-0.04,0.241-0.081,0.362-0.121c0.07,0.008,0.14,0.017,0.21,0.025c0.025-0.015,0.051-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.016-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.273-0.051c0.032-0.027,0.027-0.071,0.044-0.114\r\n\t\t\t\tc0.048-0.12,0.19-0.153,0.349-0.159c0.009-0.116-0.012-0.304,0.026-0.419c0.056-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.042-0.04,0.085-0.08,0.127-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.127-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.182-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.013-0.203\r\n\t\t\t\tc-0.015-0.018-0.024-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.042,0.011-0.063,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.477-0.019\r\n\t\t\t\tc-0.019,0.017-0.023,0.015-0.032,0.044c-0.073,0.007-0.13-0.005-0.203-0.006c0.013-0.058-0.015-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.017-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.03-0.004-0.044-0.006c-0.083,0.059-0.119,0.288-0.07,0.407c0.007,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.045-0.059-0.108-0.211-0.114-0.311c-0.034-0.027-0.036-0.039-0.076-0.032c-0.033-0.107-0.058-0.116-0.013-0.229\r\n\t\t\t\tc-0.013-0.021-0.026-0.042-0.038-0.064c0.02-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.036-0.028-0.026-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.114-0.013c-0.07-0.185-0.159-0.356-0.21-0.553\r\n\t\t\t\tc-0.036,0.009-0.072,0.017-0.108,0.026c-0.013-0.006-0.026-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.008-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.019\r\n\t\t\t\tc-0.001,0.041,0.001,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.242,0.032c0.043,0.069,0.143,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.136,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.311,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.106,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.186-0.121,0.197-0.172\r\n\t\t\t\tc0.098-0.035,0.203-0.075,0.324-0.044c0.05,0.012,0.038,0.034,0.089,0.038c0.015,0.043,0.01,0.1,0.032,0.159\r\n\t\t\t\tc0.026,0.069,0.095,0.113,0.095,0.21c0.068,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.142,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.216,0.083c0.131,0.021,0.254-0.027,0.356-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.191-0.07c0.08,0.167,0.549-0.018,0.686-0.025c0.074,0.053,0.075,0.102,0.07,0.223\r\n\t\t\t\tc0.047,0.011,0.093,0.021,0.14,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.114,0.032,0.191,0.076\r\n\t\t\t\tc0.03,0.042,0.059,0.085,0.089,0.127c0.103,0.123,0.38,0.229,0.597,0.153c0.003,0.052-0.02,0.064-0.051,0.095\r\n\t\t\t\tc-0.142,0.145-0.214,0.023-0.369,0.076h-0.013c0.049,0.113,0.433,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.017-0.059,0.025-0.089c0.032-0.019,0.083-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.014,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.015,0.062-0.095,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.102,0.616c0.07,0.251,0.21,0.444,0.305,0.655\r\n\t\t\t\tc0.065,0.143,0.116,0.299,0.165,0.457c0.021,0.079,0.042,0.157,0.064,0.235c0.038,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.032,0.112,0.064,0.225,0.095,0.337c0.059,0.064,0.119,0.127,0.178,0.191\r\n\t\t\t\tc0.09-0.003,0.218-0.064,0.248-0.127c0.026-0.054,0.004-0.106,0.038-0.146c0.083-0.028,0.165-0.055,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.057-0.057c0.025-0.072,0.051-0.144,0.076-0.216c0.037-0.022,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.025-0.213,0.286-0.458,0.108-0.655c0.057-0.141-0.035-0.296,0-0.451\r\n\t\t\t\tc0.021-0.047,0.042-0.093,0.064-0.14c0.06-0.048,0.118-0.061,0.191-0.019c0.048-0.031,0.078-0.105,0.095-0.165\r\n\t\t\t\tc0.058-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.048-0.168,0.108-0.216c0.063-0.032,0.127-0.064,0.191-0.095\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.178-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.195-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.148-0.181,0.229-0.273c-0.013-0.045-0.025-0.089-0.038-0.134\r\n\t\t\t\tc0.071-0.072,0.179-0.083,0.267-0.14c0.032-0.034,0.064-0.068,0.095-0.102c0.029,0.022,0.05,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.017-0.03,0.034-0.059,0.051-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.019,0.01,0.038,0.021,0.057,0.032\r\n\t\t\t\tc0.013-0.021,0.025-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.009,0.021,0.017,0.043,0.026,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.008-0.004,0.013-0.006c0.021,0.038,0.042,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.016-0.069,0.027-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.032-0.184c-0.002-0.034-0.003-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.095,0.127c0.07-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.022,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.068,0.037,0.107,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.102,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.004-0.002,0.009-0.004,0.013-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.017,0.129-0.098,0.22-0.102,0.362c0.015,0.011,0.03,0.021,0.044,0.032c0.047-0.038,0.073-0.066,0.153-0.076\r\n\t\t\t\tc-0.006,0.025-0.013,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.032h0.025c0.029-0.023,0.031-0.041,0.083-0.044v0.057\r\n\t\t\t\tc0.08,0.073,0.094-0.079,0.153-0.121c0.184-0.132,0.273-0.031,0.305-0.343h0.025c0.085,0.062,0.089,0.235,0.197,0.267\r\n\t\t\t\tc0.026,0.18,0.051,0.36,0.076,0.54c0.047,0.164,0.151,0.309,0.203,0.451c0.053,0.144,0.03,0.29,0.025,0.432\r\n\t\t\t\tc0.019,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.051,0.038\r\n\t\t\t\tc-0.064,0.162-0.161,0.391-0.102,0.566c0.025-0.011,0.051-0.021,0.076-0.032c0.085,0.091,0.166,0.136,0.21,0.273\r\n\t\t\t\tc0.02,0.008,0.034,0.009,0.064,0c0.043,0.057,0.051,0.099,0.051,0.197c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc0.034,0.043,0.078,0.03,0.121,0.006c0.004,0.004,0.008,0.008,0.013,0.013c-0.018,0.139-0.008,0.3,0.044,0.445\r\n\t\t\t\tc0.025,0.047,0.051,0.093,0.076,0.14c0.009,0.069-0.024,0.13,0.013,0.191c0.04,0.034,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.022,0.022,0.056,0.031,0.088C55.358,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.07-0.013c-0.034,0.011-0.068,0.021-0.102,0.032c-0.004-0.002-0.008-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.013-0.004-0.026-0.008-0.038-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.034-0.068-0.051-0.102c-0.067,0.075-0.078,0.271-0.044,0.369\r\n\t\t\t\tc0.039,0.021,0.133,0.008,0.216,0.006c-0.015,0.019-0.03,0.038-0.044,0.057c0.004,0.013,0.008,0.025,0.013,0.038\r\n\t\t\t\tc0.014,0.023,0.042,0.036,0.07,0.045v0.019c-0.045-0.004-0.089-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.032,0.045v0.044\r\n\t\t\t\tc0.042-0.029,0.066-0.018,0.127-0.006c0.024,0.067,0.085,0.076,0.114,0.133c0.014,0.054-0.038,0.118-0.038,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.019,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.061,0.047-0.192,0.025-0.28,0.045\r\n\t\t\t\tc-0.314,0.07-0.748,0.1-0.858-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.052-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.017,0.015,0.019,0.017,0.025,0.044c0.006,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.006-0.03,0.013-0.059,0.019-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.056-0.128-0.19-0.036-0.242-0.108c-0.03-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.106-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.057-0.019\r\n\t\t\t\tc-0.05-0.07-0.077-0.16-0.14-0.216c-0.015-0.004-0.03-0.009-0.044-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.032,0.114h-0.006\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.032-0.019-0.075-0.01-0.089-0.045v-0.032c0.004-0.075,0.083-0.081,0.114-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.015,0.008,0.03,0.017,0.044,0.025c0.016-0.02,0.02-0.029,0.019-0.07c0.102-0.023,0.134-0.121,0.216-0.153\r\n\t\t\t\tc0.04-0.002,0.081-0.004,0.121-0.006c0.13-0.041,0.242-0.21,0.413-0.197c0.096,0.007,0.137,0.073,0.21,0.089\r\n\t\t\t\tc0.077,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.114,0.025,0.172,0.038c0.015,0.025,0.03,0.051,0.045,0.076\r\n\t\t\t\tc-0.017,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.083,0.33c0.004,0.058,0.07,0.083,0.114,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.138-0.013-0.275-0.025-0.413-0.038c-0.038,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102c-0.029,0.036-0.057,0.02-0.076,0.076c0.027,0.039,0.064,0.068,0.114,0.083\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.026c-0.061,0.044-0.214-0.025-0.337-0.019c-0.006,0.006-0.013,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.133,0.043,0.184,0.051c0.028,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.235,0.064c-0.034,0.064-0.07,0.143-0.095,0.203c0.023,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.027-0.072,0.011-0.226,0.032-0.305c0.087-0.015,0.173-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.015,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.042-0.024-0.083-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.025-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.051,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.368,0.016-0.324-0.225-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.025,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.063,0.004-0.119,0.023-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.124-0.633,0.191-0.826c-0.004-0.053-0.009-0.106-0.013-0.159c0.02-0.082,0.062-0.114,0.025-0.216\r\n\t\t\t\tc0.092-0.071,0.145-0.061,0.292-0.051c-0.006,0.076-0.013,0.152-0.019,0.229c0.058,0.001,0.08,0.024,0.121,0.032\r\n\t\t\t\tc0.078,0.014,0.107-0.054,0.191-0.006c0.038,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.111,1.104-0.189,1.65C57.688,35.667,57.663,35.644,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.058-0.107-0.06-0.14-0.133\r\n\t\t\t\tc-0.068-0.054-0.061-0.042-0.127,0.013c0.009,0.1,0.008,0.236-0.07,0.299c-0.044,0.036-0.08,0.04-0.102,0.102\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.038-0.004-0.057-0.006c-0.003,0.068,0.015,0.109,0.038,0.165\r\n\t\t\t\tc-0.004,0.011-0.008,0.021-0.013,0.032c-0.024,0.016-0.04,0.025-0.083,0.025c-0.002,0.004-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.003,0.044,0.026,0.059,0.045,0.102c-0.023,0.025-0.047,0.051-0.07,0.076c-0.039-0.004-0.04-0.009-0.051-0.038H41.85\r\n\t\t\t\tc-0.032,0.028-0.063,0.055-0.095,0.083c0.008,0.034,0.022,0.045,0.038,0.07c-0.013,0.009-0.025,0.017-0.038,0.026\r\n\t\t\t\tc-0.024,0.01-0.027-0.009-0.064-0.019c-0.047,0.029-0.093,0.059-0.14,0.089c0.004,0.025,0.009,0.051,0.013,0.076\r\n\t\t\t\tc-0.071,0.017-0.121-0.054-0.21-0.013c-0.017,0.019-0.034,0.038-0.051,0.057c-0.04,0.02-0.074-0.013-0.108-0.013\r\n\t\t\t\tc-0.025,0.019-0.051,0.038-0.076,0.057c-0.044,0.002-0.089,0.004-0.133,0.006c0,0.213-0.083,0.245-0.14,0.381\r\n\t\t\t\tc-0.025,0.1,0.069,0.325,0.121,0.388c-0.015,0.032-0.03,0.064-0.044,0.096c0.032,0.038,0.064,0.076,0.095,0.114\r\n\t\t\t\tc0.03,0.115-0.166,0.512-0.216,0.559c-0.025,0.009-0.051,0.017-0.076,0.025c-0.045,0.032-0.102,0.233-0.089,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.025,0.097-0.038,0.146c-0.031,0.144,0.06,0.157,0.083,0.229\r\n\t\t\t\tc0.016,0.051-0.006,0.092,0.019,0.127c0.083,0.119,0.262,0.084,0.343,0.21c0.137-0.008,0.17-0.09,0.286-0.121\r\n\t\t\t\tc0.07-0.009,0.14-0.017,0.21-0.026c0.132-0.081,0.205-0.497,0.261-0.674c0.15-0.485,0.301-0.97,0.451-1.455\r\n\t\t\t\tc0.028-0.095-0.011-0.189,0.019-0.299c0.026-0.093,0.124-0.146,0.146-0.254c-0.047-0.072-0.09-0.157-0.089-0.273\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.004,0.008-0.009,0.013-0.013c0.029,0.053,0.07,0.133,0.121,0.165\r\n\t\t\t\tc0.035-0.029,0.114-0.123,0.102-0.191c-0.027-0.053-0.055-0.106-0.083-0.159C42.622,41.831,42.634,41.517,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.142-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.017-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.017-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.009-0.034,0.013-0.051c-0.002-0.002-0.004-0.004-0.006-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.02-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.056-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.019,0.095c0.087,0.039,0.26,0.031,0.356,0.07V27.014z\r\n\t\t\t\t M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095c-0.036-0.095,0.072-0.224,0.102-0.292\r\n\t\t\t\tv-0.006c-0.058-0.014-0.12,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044c-0.091,0.081-0.209,0.007-0.254,0.152\r\n\t\t\t\tc0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z M21.217,10.482\r\n\t\t\t\tc0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.057\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089v-0.089h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006V20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.023-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.145-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.03-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.1,0.036-0.199,0.072-0.299,0.108c-0.059-0.006-0.119-0.013-0.178-0.019c0.011,0.023,0.012,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.108c0.048-0.056,0.064-0.206,0.095-0.267c-0.057-0.054-0.445-0.06-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.038,0.009,0.091,0.013,0.134\r\n\t\t\t\tc0.086,0.022,0.114-0.016,0.203-0.019c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.061-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.019c0.044,0.003,0.042,0.01,0.063,0.032c-0.012,0.031-0.012,0.05,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.013-0.013,0.019v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.081-0.008-0.157,0.032-0.216v-0.006h-0.038C11.059,37.905,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.083c-0.045,0.004-0.062,0.023-0.089,0.032c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.017-0.194-0.056-0.324-0.057c-0.027,0.004-0.055,0.008-0.083,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.025c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.145,0.095,0.21\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.128,0.082-0.41,0.037-0.572-0.013c-0.013,0.015-0.025,0.03-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.012,0.053-0.047,0.102-0.057\r\n\t\t\t\tc0.076,0.011,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.151,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.06,0.178-0.076\r\n\t\t\t\tc0.044-0.011,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.045,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.114\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.169,0.311,0.153\r\n\t\t\t\tc0.044-0.012,0.058-0.078,0.14-0.057c0.051,0.013,0.064,0.04,0.127,0.038c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc-0.073-0.11-0.33-0.158-0.515-0.153C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089\r\n\t\t\t\tc0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013c-0.023-0.013-0.047-0.026-0.07-0.038\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235c-0.03-0.002-0.059-0.004-0.089-0.006\r\n\t\t\t\tc-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114c-0.004-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z M43.382,11.985\r\n\t\t\t\tc0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.165,0.009,0.28,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.309,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.066-0.023-0.131-0.047-0.197-0.07c-0.172-0.022-0.357,0.059-0.477,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.019,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.276,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.288,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.102,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.093-0.021,0.187-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.048-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.114-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.064-0.045h-0.172c-0.066-0.021-0.112-0.079-0.21-0.089c-0.036,0.042-0.072,0.085-0.108,0.127\r\n\t\t\t\tc-0.04,0.109,0.108,0.294,0.127,0.4c-0.019,0.017-0.038,0.034-0.057,0.051c-0.108-0.025-0.306-0.287-0.35-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.101,0.233-0.28,0.267v0.114c0.275,0.013,0.551,0.025,0.826,0.038c0.059-0.04,0.119-0.081,0.178-0.121\r\n\t\t\t\tc0.078-0.033,0.162-0.016,0.254-0.045c0.078-0.04,0.157-0.08,0.235-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.023-0.038-0.047-0.076-0.07-0.114c-0.061-0.017-0.123-0.034-0.184-0.051\r\n\t\t\t\tc-0.119-0.023-0.251,0.029-0.375,0.026c-0.025-0.051-0.051-0.102-0.076-0.153c-0.03-0.011-0.059-0.021-0.089-0.032\r\n\t\t\t\tc-0.132,0.016-0.223,0.14-0.286,0.229h-0.108c-0.028-0.1-0.003-0.248,0.025-0.343c-0.136,0.061-0.143,0.232-0.267,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c-0.167-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.081,0.106-0.161,0.212-0.241,0.318c-0.087,0.062-0.151,0.069-0.197,0.172c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061c-0.074-0.021-0.104-0.081-0.222-0.057C21.066,9.601,20.983,9.637,20.993,9.697z\r\n\t\t\t\t M21.388,8.988c-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24c0,0,0.001,0,0.001,0\r\n\t\t\t\tc0.002-0.004-0.006-0.009-0.002-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.051-0.021-0.102-0.042-0.153-0.064c-0.12,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.145-0.016-0.191-0.025\r\n\t\t\t\tc-0.086-0.017-0.139,0.054-0.197,0.07c-0.059-0.006-0.119-0.013-0.178-0.019h-0.013c-0.072,0.047-0.144,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.059-0.242-0.038c-0.091,0.04-0.182,0.08-0.273,0.121h-0.178c-0.091-0.099-0.215-0.211-0.273-0.337\r\n\t\t\t\tc-0.054-0.014-0.128-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.013c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.169-0.233-0.211-0.33-0.305c-0.017-0.016-0.033-0.139-0.089-0.191c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.089-0.098-0.178-0.195-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.054-0.074-0.138-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.108c-0.004,0.002-0.008,0.004-0.013,0.007c-0.182-0.153-0.224-0.622-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.106-0.144-0.038-0.516-0.089-0.724c-0.033-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.153-0.152c-0.139-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.165-0.432\r\n\t\t\t\tc-0.095-0.171-0.257-0.287-0.299-0.521c0.033-0.045,0.038-0.066,0.095-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.076,0.013c0.08-0.159,0.057-0.398,0.184-0.508c-0.074-0.191-0.148-0.381-0.222-0.572\r\n\t\t\t\tc-0.122,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.158,0.011-0.28,0.032c-0.042-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.04,0.032-0.081,0.063-0.121,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.013-0.017-0.025-0.034-0.038-0.051c-0.148-0.032-0.297-0.064-0.445-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.07-0.038-0.033-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.167,0.358-0.146,0.527c-0.038,0.02-0.088,0.07-0.146,0.064\r\n\t\t\t\tc-0.153-0.018-0.266-0.184-0.4-0.235c-0.132-0.05-0.433-0.054-0.54-0.114c-0.119-0.068-0.137-0.311-0.241-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.068-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.076,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.02,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.177-0.032,0.261\r\n\t\t\t\tc0.08,0.135,0.04,0.036,0.14,0.102c0.004,0.015,0.008,0.03,0.013,0.044c0.042,0.025,0.085,0.051,0.127,0.076\r\n\t\t\t\tc0.063-0.012,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.017,0.08,0.022,0.102,0.044\r\n\t\t\t\tc0.015,0.02,0.01,0.028,0.006,0.057c0.034,0.023,0.057,0.034,0.121,0.032c0.011,0.033,0.011,0.06,0,0.095\r\n\t\t\t\tc0.065,0.069,0.166,0.135,0.267,0.165c0.006,0.032,0.013,0.063,0.019,0.095c0.033,0.061,0.118,0.081,0.14,0.159v0.095\r\n\t\t\t\tc0.014,0.018,0.035,0.022,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.025c-0.023,0.019-0.047,0.038-0.07,0.057h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.034,0.013,0.047,0.006,0.095c0.142,0.043,0.215,0.149,0.324,0.222\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.362c0.062,0.032,0.311,0.192,0.388,0.172\r\n\t\t\t\tc0.102-0.053,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.01,0.145,0.061,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.28c0.087-0.008,0.174-0.017,0.261-0.025c0.052-0.039,0.054-0.108,0.127-0.133\r\n\t\t\t\tc0.214-0.019,0.428-0.038,0.642-0.057c0.032-0.012,0.039-0.042,0.083-0.057c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.025,0.03,0.051,0.044,0.076c0.023,0.002,0.047,0.004,0.07,0.006c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.095c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.006\r\n\t\t\t\tc0.002-0.027-0.002-0.037-0.013-0.063c0.025-0.016,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.026,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.015-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.064,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.261c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.165c0.049,0.042,0.097,0.085,0.146,0.127v0.006c-0.038-0.004-0.076-0.009-0.114-0.013\r\n\t\t\t\tc-0.031,0.138-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.015,0.114,0.07\r\n\t\t\t\tc-0.021,0.015-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.013c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.015-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.204,0.133,0.248c0.029,0.068-0.018,0.161,0.038,0.261\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.01-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.032-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.222-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.216,0.216,0.432,0.324,0.648c0.075,0.146,0.371,0.404,0.203,0.572c0.03,0.14,0.059,0.28,0.089,0.419\r\n\t\t\t\tc0.023,0.055,0.047,0.11,0.07,0.165c0.02,0.082-0.031,0.143-0.025,0.203c0.008,0.08,0.071,0.147,0.089,0.21\r\n\t\t\t\tc0.014,0.047-0.021,0.073-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.117,0.131,0.233,0.263,0.349,0.394\r\n\t\t\t\tc0.12,0.189,0.16,0.433,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.077,0-0.095,0.025\r\n\t\t\t\tc-0.025,0.032,0.123,0.23,0.159,0.286c-0.017,0.049-0.034,0.098-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.032\r\n\t\t\t\tc0.006,0.002,0.013,0.004,0.019,0.006c0.006-0.015,0.013-0.03,0.019-0.045c0.017-0.008,0.022-0.011,0.051-0.013\r\n\t\t\t\tc0.013,0.023,0.025,0.047,0.038,0.07c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.029,0.022,0.055,0.038,0.095\r\n\t\t\t\tc0.024,0.042,0.115,0.075,0.165,0.089c0.06-0.046,0.096-0.122,0.178-0.146c0.115-0.035,0.251,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.089c0.15-0.071,0.214,0,0.331,0c0.034-0.019,0.068-0.038,0.102-0.057\r\n\t\t\t\tc0.122-0.035,0.234,0.073,0.318,0.102c0.04-0.031,0.07-0.055,0.095-0.102c0.057,0.013,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.017-0.018,0.02-0.053,0.032-0.076c0.05-0.048,0.322-0.017,0.4-0.07c0.083-0.072,0.165-0.144,0.248-0.216\r\n\t\t\t\tc0.416-0.327,0.721-0.688,1.017-1.138c0.074-0.113,0.264-0.191,0.305-0.299c0.02-0.052-0.028-0.122-0.019-0.146\r\n\t\t\t\tc0.016-0.044,0.065-0.032,0.089-0.064c0.071-0.091,0.109-0.35,0.089-0.496c-0.038-0.015-0.078-0.04-0.095-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.078-0.091,0.132-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.009-0.061-0.052-0.036-0.064-0.07c0.002-0.006,0.004-0.013,0.006-0.019c0.013-0.032,0.025-0.064,0.038-0.095\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.019-0.388c-0.028,0.01-0.035,0.018-0.076,0.019c-0.039-0.124-0.087-0.274-0.044-0.375\r\n\t\t\t\tc-0.006-0.075-0.062-0.112-0.114-0.14v-0.203c0.119-0.087,0.237-0.174,0.356-0.261c0.145-0.122,0.233-0.305,0.4-0.407\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.642-0.292c0.137-0.094,0.224-0.268,0.331-0.394c0-0.028-0.009-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.011-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.163,0.012-0.337-0.07-0.432c0.003-0.034,0.034-0.063,0.044-0.108c0.026-0.113-0.041-0.294-0.057-0.394\r\n\t\t\t\tc0.03-0.055,0.059-0.11,0.089-0.165c-0.065-0.14-0.183-0.157-0.267-0.267c-0.083-0.108-0.127-0.393-0.07-0.553\r\n\t\t\t\tc-0.018-0.028-0.043-0.033-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.126-0.197-0.216\r\n\t\t\t\tc-0.037-0.095,0.061-0.407,0.102-0.451c0.024-0.026,0.068-0.021,0.089-0.051c0.047-0.068,0.006-0.104,0.025-0.165\r\n\t\t\t\tc0.042-0.137,0.172-0.143,0.184-0.368c0.096-0.053,0.187-0.052,0.191-0.203c0.085,0.016,0.124-0.022,0.191-0.051\r\n\t\t\t\tc0.024-0.036,0.026-0.054,0.006-0.095c0.208-0.235,0.415-0.47,0.623-0.705c0.229-0.185,0.515-0.325,0.744-0.508\r\n\t\t\t\tc0.085-0.104,0.169-0.208,0.254-0.311c0.168-0.215,0.419-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.074-0.119,0.148-0.237,0.222-0.356c-0.002-0.028-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.11-0.195,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.014-0.04,0.079-0.07,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.155c-0.032-0.185-0.128-0.278-0.28-0.375c0.018,0.077-0.003,0.113-0.025,0.191c-0.034,0.026-0.04,0.042-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.044c0.015,0.017,0.03,0.034,0.044,0.051c-0.029,0.063-0.008,0.077,0.006,0.14v0.318\r\n\t\t\t\tc0.023,0.101,0.073,0.267,0.146,0.324c0.208,0.044,0.476-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.226,51.767,35.185,51.688,35.155z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.317,0.022-0.352-0.084\r\n\t\t\t\tC50.47,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.038,0.017,0.076,0.034,0.114,0.051\r\n\t\t\t\tc0.07-0.025,0.14-0.051,0.21-0.076c-0.013-0.036-0.025-0.072-0.038-0.108c0.033-0.077,0.142-0.097,0.203-0.146\r\n\t\t\t\tc0.083-0.066,0.227-0.183,0.267-0.286c0.015-0.059,0.03-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.064-0.146\r\n\t\t\t\tc-0.099-0.13-0.202-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.025-0.222\r\n\t\t\t\tc0.032-0.042,0.064-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.099,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.102-0.002,0.239,0.039,0.311,0.025\r\n\t\t\t\tc0.034-0.012,0.069-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.232,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.056,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.068,0.042-0.102,0.064\r\n\t\t\t\tc-0.044,0.061-0.038,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.085,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.308,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.063-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.013-0.03,0.025-0.044,0.038c-0.012-0.052-0.021-0.069-0.07-0.083\r\n\t\t\t\tc-0.033-0.007-0.066,0.023-0.095,0.038c-0.203,0.107-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.015\r\n\t\t\t\tc-0.076-0.302-0.168-0.598-0.232-0.904c0.011,0.001,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.028,0.009-0.055,0.013-0.083h0.006c0.023,0.048,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.013,0.019,0.019\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.058,0.138-0.099,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.089c0.198-0.063,0.318-0.017,0.375,0.14c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.049,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.009,0.006,0.013c-0.061-0.008-0.097-0.021-0.121,0.032\r\n\t\t\t\tC7.564,37.5,7.647,37.606,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.435c0.051-0.052,0.122-0.09,0.155-0.153\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.022,0.108,0.044,0.172,0.019h0.006c0.013,0.192-0.204,0.292-0.248,0.483\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.349c0.051-0.121,0.102-0.242,0.153-0.362c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.077-0.036-0.114-0.057-0.172c0.045-0.054,0.132-0.205,0.019-0.254v-0.038c0.146,0.013,0.159-0.073,0.235-0.14\r\n\t\t\t\tc0.08-0.07,0.491-0.363,0.585-0.381c0.051-0.01,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.025\r\n\t\t\t\tc-0.005-0.182,0.137-0.241,0.292-0.254c-0.009-0.051-0.017-0.102-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.07,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.169,0.065-0.288,0.184-0.331c0-0.048-0.035-0.138-0.019-0.222c0.021-0.107,0.097-0.243,0.076-0.369\r\n\t\t\t\tc-0.017-0.165-0.034-0.331-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.464c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.102h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.064c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.756\r\n\t\t\t\tc-0.161-0.05-0.338,0.008-0.458-0.07c-0.256-0.166-0.436-0.435-0.731-0.566c-0.171-0.076-0.287,0.017-0.451-0.013\r\n\t\t\t\tc-0.1-0.015-0.199-0.03-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.242c0.013-0.077-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.034-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.216c-0.065-0.023-0.106-0.068-0.159-0.102c-0.052,0.007-0.15,0.015-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.191c-0.069,0.101-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.07,0.012-0.1,0.032-0.146c-0.111,0.023-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.292\r\n\t\t\t\tc0.065-0.105,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.578c-0.021-0.068-0.016-0.143-0.076-0.172c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.036-0.22-0.072-0.331-0.108c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.027-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.015-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.12-0.214-0.314-0.388-0.292c-0.011,0.021-0.021,0.042-0.032,0.063v0.013c-0.013-0.091-0.026-0.182-0.038-0.273\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.019c-0.066-0.004-0.131-0.008-0.197-0.013v-0.006\r\n\t\t\t\tc0.187-0.058,0.138-0.167,0.273-0.222c0.002-0.004,0.004-0.008,0.006-0.013c-0.051-0.035-0.122-0.045-0.178-0.083\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.019-0.038,0.036-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191V37.97c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.009,0.008-0.017,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.126-0.21,0.146c-0.261,0.058-0.335-0.149-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.057-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.016-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.032c-0.016,0.063-0.425,0.178-0.515,0.21\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.008,0.036-0.018,0.036-0.038,0.057c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.044-0.094,0.072-0.152,0.083c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.1,0.07-0.186,0.121-0.254\r\n\t\t\t\tc-0.012-0.102-0.056-0.167-0.089-0.254c0.041-0.061,0.144-0.086,0.241-0.089c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.184c-0.04,0.013-0.081,0.025-0.121,0.038\r\n\t\t\t\tc0.019-0.036,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.023-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.038\r\n\t\t\t\tc-0.047,0.032-0.093,0.064-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.128-0.331,0.095\r\n\t\t\t\tc-0.05-0.063-0.09-0.028-0.135-0.022c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.032v0.006c-0.047,0.013-0.093,0.025-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.083c0.114,0.034,0.208,0.114,0.337,0.146c0.067,0.017,0.202-0.02,0.261,0.019\r\n\t\t\t\tc0.043,0.025,0.066,0.123,0.07,0.184c0.099,0.06,0.295,0.06,0.388,0.127c-0.006,0.065-0.053,0.106-0.102,0.127\r\n\t\t\t\tc-0.019,0.021-0.038,0.042-0.057,0.063v0.006c0.141,0.006,0.266-0.057,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.032\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.07c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.013-0.028,0.025-0.055,0.038-0.083c-0.079-0.081-0.36-0.089-0.483-0.14\r\n\t\t\t\tc-0.04-0.044-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.106-0.191-0.159H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.017-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21H6.52c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tC8.338,28.6,8.338,28.606,8.325,28.59c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.02,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006h0.006c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299h-0.095c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0c0.001,0,0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tc-0.008-0.018-0.024-0.007-0.038-0.018c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.022-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005c-0.054,0.001-0.109,0.001-0.163,0.001c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.819,0,9.317,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.048-0.001-0.132-0.022-0.153-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.013,0.013-0.025,0.025-0.038,0.038\r\n\t\t\t\tc0.039,0.028,0.075,0.062,0.102,0.102c-0.098,0.069-0.24,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc0.032,0.03,0.064,0.059,0.095,0.089c-0.004,0.027-0.008,0.055-0.013,0.083c-0.383-0.001-0.322,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.208,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.226,0.096,0.343,0.121c0.109-0.061,0.161-0.161,0.248-0.241\r\n\t\t\t\tc-0.002-0.025-0.004-0.051-0.006-0.076c-0.034-0.021-0.068-0.042-0.102-0.064c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.023-0.023,0.047-0.047,0.07-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.042-0.034-0.064-0.051c-0.013-0.017-0.002-0.045,0.006-0.076c0.015-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.27,0.047,0.356,0.006c0.036-0.028,0.072-0.055,0.108-0.083c0.021-0.023,0.042-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.055-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.099-0.106c0.83,0.518,1.632,1.072,2.395,1.677\r\n\t\t\t\tc-0.005,0.025-0.011,0.05-0.016,0.075c-0.049,0.083-0.097,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.464,0.489\r\n\t\t\t\tc0.053,0.004,0.106,0.008,0.159,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.03,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.135,0.168,0.286,0.146c-0.018,0.094-0.114,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.635-0.089\r\n\t\t\t\tc-0.081,0.019-0.116,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.12,0.179-0.292,0.203c-0.021,0.033-0.037,0.114-0.051,0.146c-0.095,0.048-0.191-0.018-0.216-0.089\r\n\t\t\t\tc0.03-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.451,0.032c-0.042,0.034-0.085,0.068-0.127,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.105-0.03-0.28-0.002-0.362,0.032c-0.091,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.044-0.057c-0.182,0.003-0.224,0.07-0.375,0.019c0-0.05,0.007-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.167,0.2-0.419,0.248\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.4,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.341,0.069-0.427-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.097,0.009-0.195,0.017-0.292,0.025c-0.082-0.018-0.133-0.053-0.216-0.032\r\n\t\t\t\tc-0.017,0.148,0.159,0.164,0.121,0.337c-0.051,0.081-0.102,0.161-0.152,0.241c-0.004,0.004-0.009,0.009-0.013,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.029,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.019,0.108v0.013\r\n\t\t\t\tc-0.166-0.008-0.335-0.211-0.566-0.184c-0.124,0.261-0.492,0.237-0.661,0.445c0.005,0.173,0.26,0.294,0.14,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.102-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.103,0-0.1,0.078-0.153,0.127c0.003,0.063,0.126,0.201,0.191,0.229c0.057,0.024,0.137-0.001,0.191,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.261,0.21c-0.072-0.016-0.157,0.001-0.21-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.076-0.038-0.207-0.014-0.292-0.057c-0.043-0.022-0.208-0.444-0.216-0.527c0.122-0.036,0.163-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.136-0.088-0.245-0.222-0.362-0.33c0.221-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.14,0.021,0.21,0.032c0.5,0.15,1.305,0.524,1.831,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.362-0.305c-0.068-0.021-0.136-0.042-0.203-0.063c-0.108-0.038-0.216-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.059,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.013-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.046,0.019-0.103,0.021-0.14,0.044\r\n\t\t\t\tc-0.114-0.074-0.219-0.036-0.369-0.025c-0.066-0.103-0.205-0.127-0.28-0.222c0.237,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.028-0.017-0.055-0.034-0.083-0.051c-0.065-0.023-0.14,0.003-0.191-0.019\r\n\t\t\t\tc-0.106-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.04-0.008-0.081-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.058-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.117,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.013-0.28c-0.139,0.095-0.322,0.263-0.388,0.426c-0.017-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.281-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.144,0.185-0.172,0.273c-0.187-0.096-0.28-0.273-0.381,0.083c-0.042-0.036-0.085-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.153,0.229\r\n\t\t\t\tc0.014-0.069,0.027-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.013-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.148,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.025-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.038,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.106,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.032,0.14\r\n\t\t\t\tc-0.019,0.028-0.038,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.064-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.009,0.027,0.014,0.055,0.044,0.076v0.038c-0.054,0.016-0.077,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.254-0.025\r\n\t\t\t\tc0.021,0.015,0.042,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.013,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.03-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.176,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.019-0.002,0.038-0.004,0.057-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.013-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.28,0.045c-0.111-0.019-0.163-0.137-0.299-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.037-0.04,0.304,0.049,0.369,0.083c0.082,0.043,0.287-0.119,0.311-0.153h0.057c-0.002-0.095-0.048-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.052-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.019-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.064-0.083\r\n\t\t\t\tc0.016-0.027-0.004-0.073-0.013-0.115h0.127c0.08-0.112,0.117-0.111,0.222-0.191c0.05-0.038,0.05-0.096,0.114-0.127\r\n\t\t\t\tc0.023,0.015,0.047,0.03,0.07,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.184-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.128-0.081,0.152-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.091-0.069,0.094-0.193,0.21-0.248c0.051,0.034,0.102,0.068,0.153,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.261,0.115c0.011,0.019,0.021,0.038,0.032,0.057c0.014,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.051,0.057c0.013,0.018,0.009,0.038,0.006,0.076c-0.04-0.002-0.081-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.038-0.057v-0.013c-0.09,0.094-0.016,0.207-0.159,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.159-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.089,0.064c0,0.094-0.02,0.143-0.032,0.216c0.034,0.053,0.068,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.025,0.121c-0.035,0.188-0.011,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.053-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.02,0.042,0.039,0.071,0.083,0.089\r\n\t\t\t\tc0.067,0.051,0.193-0.016,0.235-0.038v0.026c0.065-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.055,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.017-0.083,0.1-0.04,0.152-0.083c0.028-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.108,0.038\r\n\t\t\t\tc0.026-0.027,0.034-0.043,0.083-0.051c0.021,0.013,0.042,0.025,0.064,0.038c0.059-0.057,0.198-0.098,0.299-0.108\r\n\t\t\t\tc0.008-0.015,0.017-0.03,0.025-0.045c0.029-0.003-0.01,0.079-0.019,0.114c0.148,0.215,0.345-0.041,0.489,0.229\r\n\t\t\t\tc-0.015,0.011-0.03,0.021-0.045,0.032c-0.094-0.003-0.14-0.044-0.222-0.07c-0.076,0.006-0.1,0.066-0.14,0.108\r\n\t\t\t\tc-0.053-0.012-0.053-0.037-0.102-0.025c-0.016,0.027-0.014,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.025,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.064,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.058,0.067-0.108,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.034,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.045c-0.044-0.007-0.062,0.006-0.102-0.006c-0.085,0.046-0.145,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.013,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.044,0.165c0.022,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.025,0.017,0.038,0.025c-0.021,0.16-0.09,0.268-0.038,0.451c-0.041,0.106-0.222,0.17-0.324,0.076\r\n\t\t\t\tc-0.015-0.04-0.03-0.081-0.044-0.121c-0.047-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.267,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.032,0.025-0.064,0.051-0.095,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.009,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.011,0.035,0.018,0.047,0.013,0.089c-0.081,0.046-0.249,0.013-0.362,0.007c-0.016,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.009-0.053-0.026-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025v-0.044\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025h0.006c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.023,0.012,0.039-0.004,0.07-0.019c0.034,0.01,0.181,0.419,0.172,0.451v0.013c-0.023-0.002-0.047-0.004-0.07-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.013,0.009,0.025,0.017,0.038,0.025h0.083\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.063-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.061-0.034-0.123-0.068-0.184-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.006,0.095,0.142,0.064,0.203,0.108c0.03,0.023,0.006,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.436-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.095-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.327,0.011-0.413-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.185,0.165,0.267,0.267c0.025,0.026,0.059-0.025,0.108-0.013\r\n\t\t\t\tc0.006,0.001,0.153,0.061,0.165,0.07c0.049,0.035,0.089,0.097,0.14,0.133c0.133,0.095,0.272,0.155,0.407,0.248\r\n\t\t\t\tc0.03,0.036,0.059,0.072,0.089,0.108c0.042,0.021,0.085,0.042,0.127,0.064c0.003,0.051,0.002,0.06-0.038,0.07\r\n\t\t\t\tc-0.006,0.043,0.016,0.226,0.013,0.235c-0.017,0.032-0.034,0.064-0.051,0.095c0.022,0.032,0.038,0.045,0.038,0.102\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c0.027,0.077,0.144,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.025,0.025v0.013c-0.027,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.036,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.227-0.061,0.349-0.025c0.077,0.022,0.119,0.081,0.223,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.042,0.076-0.064,0.114\r\n\t\t\t\tc0.038,0.047,0.076,0.093,0.114,0.14c0.014,0.044-0.016,0.099-0.013,0.146c0.019,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.019-0.015,0.038-0.03,0.057-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.055-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.034,0.011,0.068,0.021,0.102,0.032h0.013c-0.006,0.013-0.013,0.025-0.019,0.038c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.019-0.035,0.029-0.044,0.083-0.045c-0.023-0.029-0.028-0.02-0.025-0.064c-0.021,0.004-0.042,0.009-0.064,0.013\r\n\t\t\t\tc-0.022-0.048-0.026-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.107,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.013-0.011,0.025-0.021,0.038-0.032c-0.013-0.04-0.025-0.081-0.038-0.121\r\n\t\t\t\tc0.008-0.002,0.017-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.102-0.044\r\n\t\t\t\tc-0.013-0.03-0.026-0.059-0.038-0.089v-0.007c0.03-0.019,0.042-0.017,0.083-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.017-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.222-0.311\r\n\t\t\t\tc0.002-0.047,0.015-0.064,0.038-0.089c-0.011-0.013-0.021-0.025-0.032-0.038c0.035-0.015,0.06-0.023,0.076-0.057\r\n\t\t\t\tc0.008,0.002,0.017,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.032,0.019\r\n\t\t\t\tc0.04,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.064,0.008,0.095,0.013h0.013c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.015-0.002,0.03-0.004,0.044-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.024-0.041-0.06-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.067,0.015,0.083,0.045\r\n\t\t\t\tc0.017,0.015,0.034,0.03,0.051,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.191-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.034,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.272-0.012,0.286,0.121c0.008-0.009,0.017-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.095,0.057c-0.008,0.032-0.017,0.064-0.025,0.095\r\n\t\t\t\tc0.066-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.015-0.03,0.03-0.059,0.044-0.089\r\n\t\t\t\tc0.038-0.022,0.1,0.002,0.153-0.019c0.136-0.054,0.112,0.009,0.273,0.013c0.026-0.03,0.045-0.056,0.063-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.21-0.089c-0.087-0.049-0.178-0.313-0.267-0.299v-0.051c0.036-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.013-0.121\r\n\t\t\t\tc0.036-0.199,0.06-0.377,0.286-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.034-0.038-0.051-0.064\r\n\t\t\t\tc-0.032-0.104,0.093-0.097,0.153-0.133c0.199-0.119,0.104-0.321,0.509-0.311c0.008-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.064,0.076v0.013c-0.023,0.021-0.047,0.042-0.07,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.026,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267v0.019c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.102-0.009,0.153-0.013c0.034-0.028,0.068-0.055,0.102-0.083c0.06-0.018,0.089,0.017,0.133,0.025\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0.023-0.032,0.052-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.235,0.038c-0.024-0.123-0.199-0.258-0.337-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.103-0.029,0.197-0.016,0.305-0.019c0.037-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.022,0.013,0.019,0.008,0.045,0c0.05-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.047-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.222-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.186-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.032,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.413,0.152c-0.008,0.011-0.017,0.021-0.026,0.032c0.074,0.053,0.148,0.098,0.197,0.178\r\n\t\t\t\tc-0.034,0.026-0.077,0.034-0.14,0.032c-0.028,0.081-0.083,0.13-0.089,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.044,0.013,0.089,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.28,0.21c0.047,0.038,0.116,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.015,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.079,0.289-0.089,0.388-0.324,0.445c-0.131,0.031-0.222-0.051-0.337-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.098,0.022-0.277-0.021-0.381-0.038c-0.126-0.021-0.151-0.13-0.292-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.102,0.03-0.172,0.013c-0.083-0.021-0.076-0.089-0.121-0.146c-0.173,0.111-0.323-0.021-0.54,0.032\r\n\t\t\t\tc-0.196,0.047-0.34,0.172-0.515,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.138,0.074-0.202,0.007-0.318-0.013\r\n\t\t\t\tc-0.019,0.006-0.038,0.013-0.057,0.019c-0.093-0.008-0.186-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.069,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.013,0.009,0.019,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.025c-0.114-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.089-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.013,0.006,0.026,0.013,0.038,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.142,0.01-0.159-0.044c-0.091,0.011-0.203,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.07,0.064\r\n\t\t\t\tc-0.01,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.261-0.038v0.006c-0.015,0.024-0.03,0.039-0.057,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.064,0.045c0.014,0.023-0.007,0.02-0.013,0.064h0.057\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.007,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.032-0.003-0.055-0.025-0.089-0.044c-0.011,0.023-0.021,0.047-0.032,0.07v0.045\r\n\t\t\t\tc0.105,0.013,0.133,0.046,0.222,0.07c0.003,0.06-0.021,0.124,0.006,0.165c0.034,0.021,0.068,0.042,0.102,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.055,0.021-0.083,0.032c0.006,0.013,0.013,0.025,0.019,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.017,0.019-0.024,0.019-0.032,0.051\r\n\t\t\t\tc0.006,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.009,0.004,0.013,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.085-0.003,0.086,0.023,0.146,0.051c0.029,0.014,0.049-0.015,0.076-0.038c0.025,0.059,0.051,0.119,0.076,0.178\r\n\t\t\t\tc0.099,0.031,0.23-0.025,0.299,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.03-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.108,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.013,0.017,0.025,0.034,0.038,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.017,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.038,0.107-0.064,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.305,0.578c-0.008,0.042-0.017,0.085-0.025,0.127c-0.041,0.134-0.077,0.258-0.172,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.222,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.072,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.066,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.07,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.068,0.051,0.102,0.076c0.086,0.071,0.195,0.232,0.235,0.343\r\n\t\t\t\tc0.011,0.068,0.021,0.136,0.032,0.203c-0.008,0.039-0.042,0.068-0.032,0.127c0.03,0.172,0.113,0.353,0.165,0.496v0.216\r\n\t\t\t\tc0.095,0.205,0.383,0.166,0.553,0.057c0.057-0.047,0.114-0.093,0.172-0.14c0.094-0.028,0.217,0.012,0.299-0.013\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.026,0.163,0.016,0.229-0.019c0.069-0.036,0.087-0.124,0.152-0.159\r\n\t\t\t\tc0.238-0.13,0.547-0.129,0.769-0.267c0.062-0.038,0.046-0.087,0.076-0.159c0.029-0.07,0.139-0.142,0.21-0.172\r\n\t\t\t\tc0.121-0.04,0.241-0.081,0.362-0.121c0.07,0.008,0.14,0.017,0.21,0.025c0.025-0.015,0.051-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.016-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.273-0.051c0.032-0.027,0.027-0.071,0.044-0.114\r\n\t\t\t\tc0.048-0.12,0.19-0.153,0.349-0.159c0.009-0.116-0.012-0.304,0.026-0.419c0.056-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.042-0.04,0.085-0.08,0.127-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.127-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.182-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.013-0.203\r\n\t\t\t\tc-0.015-0.018-0.024-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.042,0.011-0.063,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.477-0.019\r\n\t\t\t\tc-0.019,0.017-0.023,0.015-0.032,0.044c-0.073,0.007-0.13-0.005-0.203-0.006c0.013-0.058-0.015-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.017-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.03-0.004-0.044-0.006c-0.083,0.059-0.119,0.288-0.07,0.407c0.007,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.045-0.059-0.108-0.211-0.114-0.311c-0.034-0.027-0.036-0.039-0.076-0.032c-0.033-0.107-0.058-0.116-0.013-0.229\r\n\t\t\t\tc-0.013-0.021-0.026-0.042-0.038-0.064c0.02-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.036-0.028-0.026-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.114-0.013c-0.07-0.185-0.159-0.356-0.21-0.553\r\n\t\t\t\tc-0.036,0.009-0.072,0.017-0.108,0.026c-0.013-0.006-0.026-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.008-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.019\r\n\t\t\t\tc-0.001,0.041,0.001,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.242,0.032c0.043,0.069,0.143,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.136,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.311,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.106,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.186-0.121,0.197-0.172\r\n\t\t\t\tc0.098-0.035,0.203-0.075,0.324-0.044c0.05,0.012,0.038,0.034,0.089,0.038c0.015,0.043,0.01,0.1,0.032,0.159\r\n\t\t\t\tc0.026,0.069,0.095,0.113,0.095,0.21c0.068,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.142,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.216,0.083c0.131,0.021,0.254-0.027,0.356-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.191-0.07c0.08,0.167,0.549-0.018,0.686-0.025c0.074,0.053,0.075,0.102,0.07,0.223\r\n\t\t\t\tc0.047,0.011,0.093,0.021,0.14,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.114,0.032,0.191,0.076\r\n\t\t\t\tc0.03,0.042,0.059,0.085,0.089,0.127c0.103,0.123,0.38,0.229,0.597,0.153c0.003,0.052-0.02,0.064-0.051,0.095\r\n\t\t\t\tc-0.142,0.145-0.214,0.023-0.369,0.076h-0.013c0.049,0.113,0.433,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.017-0.059,0.025-0.089c0.032-0.019,0.083-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.014,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.015,0.062-0.095,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.102,0.616c0.07,0.251,0.21,0.444,0.305,0.655\r\n\t\t\t\tc0.065,0.143,0.116,0.299,0.165,0.457c0.021,0.079,0.042,0.157,0.064,0.235c0.038,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.032,0.112,0.064,0.225,0.095,0.337c0.059,0.064,0.119,0.127,0.178,0.191\r\n\t\t\t\tc0.09-0.003,0.218-0.064,0.248-0.127c0.026-0.054,0.004-0.106,0.038-0.146c0.083-0.028,0.165-0.055,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.057-0.057c0.025-0.072,0.051-0.144,0.076-0.216c0.037-0.022,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.025-0.213,0.286-0.458,0.108-0.655c0.057-0.141-0.035-0.296,0-0.451\r\n\t\t\t\tc0.021-0.047,0.042-0.093,0.064-0.14c0.06-0.048,0.118-0.061,0.191-0.019c0.048-0.031,0.078-0.105,0.095-0.165\r\n\t\t\t\tc0.058-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.048-0.168,0.108-0.216c0.063-0.032,0.127-0.064,0.191-0.095\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.178-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.195-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.148-0.181,0.229-0.273c-0.013-0.045-0.025-0.089-0.038-0.134\r\n\t\t\t\tc0.071-0.072,0.179-0.083,0.267-0.14c0.032-0.034,0.064-0.068,0.095-0.102c0.029,0.022,0.05,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.017-0.03,0.034-0.059,0.051-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.019,0.01,0.038,0.021,0.057,0.032\r\n\t\t\t\tc0.013-0.021,0.025-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.009,0.021,0.017,0.043,0.026,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.008-0.004,0.013-0.006c0.021,0.038,0.042,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.016-0.069,0.027-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.032-0.184c-0.002-0.034-0.003-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.095,0.127c0.07-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.022,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.068,0.037,0.107,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.102,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.004-0.002,0.009-0.004,0.013-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.017,0.129-0.098,0.22-0.102,0.362c0.015,0.011,0.03,0.021,0.044,0.032c0.047-0.038,0.073-0.066,0.153-0.076\r\n\t\t\t\tc-0.006,0.025-0.013,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.032h0.025c0.029-0.023,0.031-0.041,0.083-0.044v0.057\r\n\t\t\t\tc0.08,0.073,0.094-0.079,0.153-0.121c0.184-0.132,0.273-0.031,0.305-0.343h0.025c0.085,0.062,0.089,0.235,0.197,0.267\r\n\t\t\t\tc0.026,0.18,0.051,0.36,0.076,0.54c0.047,0.164,0.151,0.309,0.203,0.451c0.053,0.144,0.03,0.29,0.025,0.432\r\n\t\t\t\tc0.019,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.051,0.038\r\n\t\t\t\tc-0.064,0.162-0.161,0.391-0.102,0.566c0.025-0.011,0.051-0.021,0.076-0.032c0.085,0.091,0.166,0.136,0.21,0.273\r\n\t\t\t\tc0.02,0.008,0.034,0.009,0.064,0c0.043,0.057,0.051,0.099,0.051,0.197c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc0.034,0.043,0.078,0.03,0.121,0.006c0.004,0.004,0.008,0.008,0.013,0.013c-0.018,0.139-0.008,0.3,0.044,0.445\r\n\t\t\t\tc0.025,0.047,0.051,0.093,0.076,0.14c0.009,0.069-0.024,0.13,0.013,0.191c0.04,0.034,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.022,0.022,0.056,0.031,0.088C55.358,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.07-0.013c-0.034,0.011-0.068,0.021-0.102,0.032c-0.004-0.002-0.008-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.013-0.004-0.026-0.008-0.038-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.034-0.068-0.051-0.102c-0.067,0.075-0.078,0.271-0.044,0.369\r\n\t\t\t\tc0.039,0.021,0.133,0.008,0.216,0.006c-0.015,0.019-0.03,0.038-0.044,0.057c0.004,0.013,0.008,0.025,0.013,0.038\r\n\t\t\t\tc0.014,0.023,0.042,0.036,0.07,0.045v0.019c-0.045-0.004-0.089-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.032,0.045v0.044\r\n\t\t\t\tc0.042-0.029,0.066-0.018,0.127-0.006c0.024,0.067,0.085,0.076,0.114,0.133c0.014,0.054-0.038,0.118-0.038,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.019,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.061,0.047-0.192,0.025-0.28,0.045\r\n\t\t\t\tc-0.314,0.07-0.748,0.1-0.858-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.052-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.017,0.015,0.019,0.017,0.025,0.044c0.006,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.006-0.03,0.013-0.059,0.019-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.056-0.128-0.19-0.036-0.242-0.108c-0.03-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.106-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.057-0.019\r\n\t\t\t\tc-0.05-0.07-0.077-0.16-0.14-0.216c-0.015-0.004-0.03-0.009-0.044-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.032,0.114h-0.006\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.032-0.019-0.075-0.01-0.089-0.045v-0.032c0.004-0.075,0.083-0.081,0.114-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.015,0.008,0.03,0.017,0.044,0.025c0.016-0.02,0.02-0.029,0.019-0.07c0.102-0.023,0.134-0.121,0.216-0.153\r\n\t\t\t\tc0.04-0.002,0.081-0.004,0.121-0.006c0.13-0.041,0.242-0.21,0.413-0.197c0.096,0.007,0.137,0.073,0.21,0.089\r\n\t\t\t\tc0.077,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.114,0.025,0.172,0.038c0.015,0.025,0.03,0.051,0.045,0.076\r\n\t\t\t\tc-0.017,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.083,0.33c0.004,0.058,0.07,0.083,0.114,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.138-0.013-0.275-0.025-0.413-0.038c-0.038,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102c-0.029,0.036-0.057,0.02-0.076,0.076c0.027,0.039,0.064,0.068,0.114,0.083\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.026c-0.061,0.044-0.214-0.025-0.337-0.019c-0.006,0.006-0.013,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.133,0.043,0.184,0.051c0.028,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.235,0.064c-0.034,0.064-0.07,0.143-0.095,0.203c0.023,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.027-0.072,0.011-0.226,0.032-0.305c0.087-0.015,0.173-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.015,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.042-0.024-0.083-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.025-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.051,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.368,0.016-0.324-0.225-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.025,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.063,0.004-0.119,0.023-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.124-0.633,0.191-0.826c-0.004-0.053-0.009-0.106-0.013-0.159c0.02-0.082,0.062-0.114,0.025-0.216\r\n\t\t\t\tc0.092-0.071,0.145-0.061,0.292-0.051c-0.006,0.076-0.013,0.152-0.019,0.229c0.058,0.001,0.08,0.024,0.121,0.032\r\n\t\t\t\tc0.078,0.014,0.107-0.054,0.191-0.006c0.038,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.111,1.104-0.189,1.65C57.688,35.667,57.663,35.644,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.058-0.107-0.06-0.14-0.133\r\n\t\t\t\tc-0.068-0.054-0.061-0.042-0.127,0.013c0.009,0.1,0.008,0.236-0.07,0.299c-0.044,0.036-0.08,0.04-0.102,0.102\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.038-0.004-0.057-0.006c-0.003,0.068,0.015,0.109,0.038,0.165\r\n\t\t\t\tc-0.004,0.011-0.008,0.021-0.013,0.032c-0.024,0.016-0.04,0.025-0.083,0.025c-0.002,0.004-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.003,0.044,0.026,0.059,0.045,0.102c-0.023,0.025-0.047,0.051-0.07,0.076c-0.039-0.004-0.04-0.009-0.051-0.038H41.85\r\n\t\t\t\tc-0.032,0.028-0.063,0.055-0.095,0.083c0.008,0.034,0.022,0.045,0.038,0.07c-0.013,0.009-0.025,0.017-0.038,0.026\r\n\t\t\t\tc-0.024,0.01-0.027-0.009-0.064-0.019c-0.047,0.029-0.093,0.059-0.14,0.089c0.004,0.025,0.009,0.051,0.013,0.076\r\n\t\t\t\tc-0.071,0.017-0.121-0.054-0.21-0.013c-0.017,0.019-0.034,0.038-0.051,0.057c-0.04,0.02-0.074-0.013-0.108-0.013\r\n\t\t\t\tc-0.025,0.019-0.051,0.038-0.076,0.057c-0.044,0.002-0.089,0.004-0.133,0.006c0,0.213-0.083,0.245-0.14,0.381\r\n\t\t\t\tc-0.025,0.1,0.069,0.325,0.121,0.388c-0.015,0.032-0.03,0.064-0.044,0.096c0.032,0.038,0.064,0.076,0.095,0.114\r\n\t\t\t\tc0.03,0.115-0.166,0.512-0.216,0.559c-0.025,0.009-0.051,0.017-0.076,0.025c-0.045,0.032-0.102,0.233-0.089,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.025,0.097-0.038,0.146c-0.031,0.144,0.06,0.157,0.083,0.229\r\n\t\t\t\tc0.016,0.051-0.006,0.092,0.019,0.127c0.083,0.119,0.262,0.084,0.343,0.21c0.137-0.008,0.17-0.09,0.286-0.121\r\n\t\t\t\tc0.07-0.009,0.14-0.017,0.21-0.026c0.132-0.081,0.205-0.497,0.261-0.674c0.15-0.485,0.301-0.97,0.451-1.455\r\n\t\t\t\tc0.028-0.095-0.011-0.189,0.019-0.299c0.026-0.093,0.124-0.146,0.146-0.254c-0.047-0.072-0.09-0.157-0.089-0.273\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.004,0.008-0.009,0.013-0.013c0.029,0.053,0.07,0.133,0.121,0.165\r\n\t\t\t\tc0.035-0.029,0.114-0.123,0.102-0.191c-0.027-0.053-0.055-0.106-0.083-0.159C42.622,41.831,42.634,41.517,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.142-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.017-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.017-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.009-0.034,0.013-0.051c-0.002-0.002-0.004-0.004-0.006-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.02-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.056-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.019,0.095c0.087,0.039,0.26,0.031,0.356,0.07V27.014z\r\n\t\t\t\t M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095c-0.036-0.095,0.072-0.224,0.102-0.292\r\n\t\t\t\tv-0.006c-0.058-0.014-0.12,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044c-0.091,0.081-0.209,0.007-0.254,0.152\r\n\t\t\t\tc0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z M21.217,10.482\r\n\t\t\t\tc0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.057\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089v-0.089h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006V20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.023-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.145-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.03-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.1,0.036-0.199,0.072-0.299,0.108c-0.059-0.006-0.119-0.013-0.178-0.019c0.011,0.023,0.012,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.108c0.048-0.056,0.064-0.206,0.095-0.267c-0.057-0.054-0.445-0.06-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.038,0.009,0.091,0.013,0.134\r\n\t\t\t\tc0.086,0.022,0.114-0.016,0.203-0.019c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.061-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.019c0.044,0.003,0.042,0.01,0.063,0.032c-0.012,0.031-0.012,0.05,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.013-0.013,0.019v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.081-0.008-0.157,0.032-0.216v-0.006h-0.038C11.059,37.905,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.083c-0.045,0.004-0.062,0.023-0.089,0.032c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.017-0.194-0.056-0.324-0.057c-0.027,0.004-0.055,0.008-0.083,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.025c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.145,0.095,0.21\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.128,0.082-0.41,0.037-0.572-0.013c-0.013,0.015-0.025,0.03-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.012,0.053-0.047,0.102-0.057\r\n\t\t\t\tc0.076,0.011,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.151,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.06,0.178-0.076\r\n\t\t\t\tc0.044-0.011,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.045,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.114\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.169,0.311,0.153\r\n\t\t\t\tc0.044-0.012,0.058-0.078,0.14-0.057c0.051,0.013,0.064,0.04,0.127,0.038c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc-0.073-0.11-0.33-0.158-0.515-0.153C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPASS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPASS","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPASS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3C35,33.657,33.657,35,32,35z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3C35,33.657,33.657,35,32,35z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TARGET_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TARGET","display":"inline"},"children":[{"name":"g","attribs":{"id":"TARGET","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,29c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tC35,30.343,33.657,29,32,29z M61,29h-3.186C56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186\r\n\t\t\t\tC17.042,7.562,7.568,17.044,6.191,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191C46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M46,35h5.751C50.448,43.638,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756\r\n\t\t\t\tC20.366,50.453,13.552,43.638,12.249,35H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-5.756\r\n\t\t\t\tC13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756C43.634,13.547,50.448,20.362,51.751,29H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C43,33.657,44.343,35,46,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,29c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tC35,30.343,33.657,29,32,29z M61,29h-3.186C56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186\r\n\t\t\t\tC17.042,7.562,7.568,17.044,6.191,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191C46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M46,35h5.751C50.448,43.638,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756\r\n\t\t\t\tC20.366,50.453,13.552,43.638,12.249,35H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-5.756\r\n\t\t\t\tC13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756C43.634,13.547,50.448,20.362,51.751,29H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C43,33.657,44.343,35,46,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tC43,22.343,41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tC43,22.343,41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h5v5c0,1.657,1.343,3,3,3s3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16\r\n\t\t\t\tc0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h5v5c0,1.657,1.343,3,3,3s3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16\r\n\t\t\t\tc0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,16c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC40,19.582,36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,16c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC40,19.582,36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\t\t\tC48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\t\t\tC48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719\r\n\t\t\t\tl0,0l-0.008-0.009c-0.001-0.001-0.002-0.002-0.003-0.003l-8.99-9.989l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.673,0.391-2.222,1l-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.005-0.006,0.007l-0.006,0.006l0,0\r\n\t\t\t\tC20.292,42.525,20,43.228,20,44c0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.005,0.098-0.008\r\n\t\t\t\tc0.012-0.001,0.024-0.003,0.036-0.005c0.044-0.005,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.113,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.189l0,0\r\n\t\t\t\tc0.446,0.495,1.055,0.841,1.742,0.953c0.001,0,0.001,0,0.002,0c0.044,0.007,0.088,0.013,0.132,0.018\r\n\t\t\t\tc0.011,0.001,0.023,0.003,0.034,0.004c0.033,0.003,0.067,0.006,0.1,0.008c0.021,0.002,0.042,0.004,0.063,0.005\r\n\t\t\t\tc0.02,0.001,0.04,0.001,0.06,0.002C40.935,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002\r\n\t\t\t\tC44,43.904,43.995,43.811,43.986,43.719z M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.192,0,11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.53,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719\r\n\t\t\t\tl0,0l-0.008-0.009c-0.001-0.001-0.002-0.002-0.003-0.003l-8.99-9.989l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.673,0.391-2.222,1l-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.005-0.006,0.007l-0.006,0.006l0,0\r\n\t\t\t\tC20.292,42.525,20,43.228,20,44c0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.005,0.098-0.008\r\n\t\t\t\tc0.012-0.001,0.024-0.003,0.036-0.005c0.044-0.005,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.113,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.189l0,0\r\n\t\t\t\tc0.446,0.495,1.055,0.841,1.742,0.953c0.001,0,0.001,0,0.002,0c0.044,0.007,0.088,0.013,0.132,0.018\r\n\t\t\t\tc0.011,0.001,0.023,0.003,0.034,0.004c0.033,0.003,0.067,0.006,0.1,0.008c0.021,0.002,0.042,0.004,0.063,0.005\r\n\t\t\t\tc0.02,0.001,0.04,0.001,0.06,0.002C40.935,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002\r\n\t\t\t\tC44,43.904,43.995,43.811,43.986,43.719z M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.192,0,11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.53,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,44c-0.885,0-1.681,0.384-2.23,0.993h0L35,49.182V34c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v15.182l-3.77-4.189l0,0C24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.192,0.014,0.286\r\n\t\t\t\tc0,0,0,0,0,0c0.062,0.659,0.337,1.256,0.756,1.721l0,0l9,10L29.778,59C30.327,59.609,31.115,60,32,60s1.673-0.391,2.222-1.001\r\n\t\t\t\tl0.008,0.007l9-10l0,0c0.419-0.465,0.694-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.015-0.307C43.831,45.181,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097\r\n\t\t\t\tC20.406,14.318,25.808,11,32,11s11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512\r\n\t\t\t\tC48.815,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.397,0.21,0.589,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485\r\n\t\t\t\tC56.822,28.921,58,31.32,58,34c0,4.971-4.03,9-9,9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,27.243,59.53,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,44c-0.885,0-1.681,0.384-2.23,0.993h0L35,49.182V34c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v15.182l-3.77-4.189l0,0C24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.192,0.014,0.286\r\n\t\t\t\tc0,0,0,0,0,0c0.062,0.659,0.337,1.256,0.756,1.721l0,0l9,10L29.778,59C30.327,59.609,31.115,60,32,60s1.673-0.391,2.222-1.001\r\n\t\t\t\tl0.008,0.007l9-10l0,0c0.419-0.465,0.694-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.015-0.307C43.831,45.181,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097\r\n\t\t\t\tC20.406,14.318,25.808,11,32,11s11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512\r\n\t\t\t\tC48.815,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.397,0.21,0.589,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485\r\n\t\t\t\tC56.822,28.921,58,31.32,58,34c0,4.971-4.03,9-9,9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,27.243,59.53,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758\r\n\t\t\t\tl-5.879-5.879C25.578,36.336,24.829,36,24,36c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879\r\n\t\t\t\tC21.336,53.422,21,54.172,21,55c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879\r\n\t\t\t\tC38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3c0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879\r\n\t\t\t\tC42.664,40.579,43,39.829,43,39z M53.387,20.656C50.048,12.086,41.752,6,32,6c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.589-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.192,0,11.594,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758\r\n\t\t\t\tl-5.879-5.879C25.578,36.336,24.829,36,24,36c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879\r\n\t\t\t\tC21.336,53.422,21,54.172,21,55c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879\r\n\t\t\t\tC38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3c0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879\r\n\t\t\t\tC42.664,40.579,43,39.829,43,39z M53.387,20.656C50.048,12.086,41.752,6,32,6c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.589-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.192,0,11.594,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,36c-1.039,0-1.954,0.528-2.493,1.33l-8.936,12.998l-5.45-5.45\r\n\t\t\t\tC25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58\r\n\t\t\t\tc1.039,0,1.954-0.528,2.493-1.33l10.969-15.954C45.801,40.23,46,39.638,46,39C46,37.343,44.657,36,43,36z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6c-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.041-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12c6.192,0,11.594,3.318,14.562,8.266\r\n\t\t\t\tc0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.172,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357\r\n\t\t\t\tc0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109\r\n\t\t\t\tc0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.2,0.101,0.397,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,36c-1.039,0-1.954,0.528-2.493,1.33l-8.936,12.998l-5.45-5.45\r\n\t\t\t\tC25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58\r\n\t\t\t\tc1.039,0,1.954-0.528,2.493-1.33l10.969-15.954C45.801,40.23,46,39.638,46,39C46,37.343,44.657,36,43,36z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6c-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.041-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12c6.192,0,11.594,3.318,14.562,8.266\r\n\t\t\t\tc0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.172,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357\r\n\t\t\t\tc0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109\r\n\t\t\t\tc0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.2,0.101,0.397,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,26.532,0,32.243,0,39c0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.53,26.532,53.387,24.656z M49,48H15\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\ts11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,26.532,0,32.243,0,39c0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.53,26.532,53.387,24.656z M49,48H15\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\ts11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart_add=shopping_cart_add;var shopping_cart_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z M51,30\r\n\t\t\t\tc7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L55.243,17l1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879C48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[{"name":"path","attribs":{"d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z M51,30\r\n\t\t\t\tc7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L55.243,17l1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879C48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart_delete=shopping_cart_delete;var shopping_cart_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8\r\n\t\t\t\tC50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4C42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49\r\n\t\t\t\tH27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"},"children":[{"name":"path","attribs":{"d":"M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8\r\n\t\t\t\tC50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4C42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49\r\n\t\t\t\tH27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart_ok=shopping_cart_ok;var shopping_cart_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0\r\n\t\t\t\tl4.83-10.733c-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17\r\n\t\t\t\tH16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"},"children":[{"name":"path","attribs":{"d":"M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0\r\n\t\t\t\tl4.83-10.733c-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17\r\n\t\t\t\tH16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart_remove=shopping_cart_remove;var shuffle={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SHUFFLE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHUFFLE"},"children":[{"name":"g","attribs":{"id":"SHUFFLE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879C14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tS1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.342,3,3,3\r\n\t\t\t\tc0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121s-0.336-1.578-0.88-2.121l-7-7\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.12-0.879c-1.658,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19\r\n\t\t\t\tH52z M56.137,38.874c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52\r\n\t\t\t\tV45h-5.757l-10.88-10.879l-4.242,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.344,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[{"name":"path","attribs":{"d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879C14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tS1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.342,3,3,3\r\n\t\t\t\tc0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121s-0.336-1.578-0.88-2.121l-7-7\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.12-0.879c-1.658,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19\r\n\t\t\t\tH52z M56.137,38.874c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52\r\n\t\t\t\tV45h-5.757l-10.88-10.879l-4.242,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.344,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[]}]}]}]}]}]}]}]};exports.shuffle=shuffle;var skip_next={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0C24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42c0,1.657,1.343,3,3,3s3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0C24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42c0,1.657,1.343,3,3,3s3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]}]};exports.skip_next=skip_next;var skip_previous={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3s-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3s-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]}]};exports.skip_previous=skip_previous;var skype={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"skype_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"skype"},"children":[{"name":"g","attribs":{"id":"skype"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M59.539,36.936C59.825,35.33,60,33.688,60,32C60,16.536,47.464,4,32,4c-1.687,0-3.33,0.175-4.934,0.461\r\n\t\t\t\tC24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066C4.175,28.67,4,30.313,4,32\r\n\t\t\t\tc0,15.464,12.536,28,28,28c1.688,0,3.33-0.175,4.936-0.461C39.809,62.297,43.702,64,48,64c8.837,0,16-7.163,16-16\r\n\t\t\t\tC64,43.703,62.297,39.809,59.539,36.936z M44.331,43.208c-1.104,1.506-2.74,2.7-4.856,3.548\r\n\t\t\t\tc-2.096,0.838-4.608,1.266-7.469,1.266c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.572,0.995-2.17c0.655-0.595,1.494-0.895,2.495-0.895\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.725,1.372,2.342\r\n\t\t\t\tc0.471,0.601,1.144,1.102,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.406,4.814-1.207\r\n\t\t\t\tc1.19-0.781,1.768-1.722,1.768-2.871c0-0.908-0.303-1.621-0.922-2.184c-0.652-0.586-1.51-1.039-2.551-1.355\r\n\t\t\t\tc-1.086-0.323-2.562-0.678-4.385-1.047c-2.48-0.508-4.587-1.117-6.264-1.801c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.903,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.832,1.635,2.324,2.515c0.493,0.886,0.746,1.77,0.746,2.624c0,0.823-0.33,1.571-0.98,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.886,0-1.578-0.209-2.06-0.616c-0.447-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.805-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.145,0.717,2.051,1.637,2.694,2.737c0.646,1.105,0.972,2.47,0.972,4.054\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[{"name":"path","attribs":{"d":"M59.539,36.936C59.825,35.33,60,33.688,60,32C60,16.536,47.464,4,32,4c-1.687,0-3.33,0.175-4.934,0.461\r\n\t\t\t\tC24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066C4.175,28.67,4,30.313,4,32\r\n\t\t\t\tc0,15.464,12.536,28,28,28c1.688,0,3.33-0.175,4.936-0.461C39.809,62.297,43.702,64,48,64c8.837,0,16-7.163,16-16\r\n\t\t\t\tC64,43.703,62.297,39.809,59.539,36.936z M44.331,43.208c-1.104,1.506-2.74,2.7-4.856,3.548\r\n\t\t\t\tc-2.096,0.838-4.608,1.266-7.469,1.266c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.572,0.995-2.17c0.655-0.595,1.494-0.895,2.495-0.895\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.725,1.372,2.342\r\n\t\t\t\tc0.471,0.601,1.144,1.102,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.406,4.814-1.207\r\n\t\t\t\tc1.19-0.781,1.768-1.722,1.768-2.871c0-0.908-0.303-1.621-0.922-2.184c-0.652-0.586-1.51-1.039-2.551-1.355\r\n\t\t\t\tc-1.086-0.323-2.562-0.678-4.385-1.047c-2.48-0.508-4.587-1.117-6.264-1.801c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.903,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.832,1.635,2.324,2.515c0.493,0.886,0.746,1.77,0.746,2.624c0,0.823-0.33,1.571-0.98,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.886,0-1.578-0.209-2.06-0.616c-0.447-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.805-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.145,0.717,2.051,1.637,2.694,2.737c0.646,1.105,0.972,2.47,0.972,4.054\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[]}]}]}]}]}]}]}]};exports.skype=skype;var slideshow={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SLIDESHOW_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SLIDESHOW"},"children":[{"name":"g","attribs":{"id":"SLIDESHOW"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3s3-1.343,3-3V21C15,19.343,13.657,18,12,18z M3,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3s3-1.343,3-3V15C6,13.343,4.657,12,3,12z M52,18c-1.657,0-3,1.343-3,3v22\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[{"name":"path","attribs":{"d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3s3-1.343,3-3V21C15,19.343,13.657,18,12,18z M3,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3s3-1.343,3-3V15C6,13.343,4.657,12,3,12z M52,18c-1.657,0-3,1.343-3,3v22\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[]}]}]}]}]}]}]}]};exports.slideshow=slideshow;var speech_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_1"},"children":[{"name":"g","attribs":{"id":"SPEECH_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.534,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9h52V46z"},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.534,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9h52V46z"},"children":[]}]}]}]}]}]}]}]};exports.speech_1=speech_1;var speech_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_2"},"children":[{"name":"g","attribs":{"id":"SPEECH_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[]}]}]}]}]}]}]}]};exports.speech_2=speech_2;var speech_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_3"},"children":[{"name":"g","attribs":{"id":"SPEECH_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S20.314,34,17,34z M32,34\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tS50.314,34,47,34z"},"children":[{"name":"path","attribs":{"d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S20.314,34,17,34z M32,34\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tS50.314,34,47,34z"},"children":[]}]}]}]}]}]}]}]};exports.speech_3=speech_3;var speech_4={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_4_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_4"},"children":[{"name":"g","attribs":{"id":"SPEECH_4"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M51.841,47.327L45.516,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3v34c0,1.656,1.341,2.998,2.996,3H7.5l0,0H8\r\n\t\t\t\tv6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.057,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.061,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.027,0.033,0.04c0.534,0.535,1.271,0.864,2.084,0.875C10.976,62.996,10.987,63,11,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L21.243,54H22l0,0h3l0,0h6.9l0,0H53l0,0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.613,0-3.072-0.645-4.15-1.682L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.014,0,0.025-0.004,0.037-0.004c0.812-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.234-0.259,0.332-0.404c0.039-0.057,0.065-0.122,0.101-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.047-0.129,0.095-0.257,0.123-0.394\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[{"name":"path","attribs":{"d":"M51.841,47.327L45.516,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3v34c0,1.656,1.341,2.998,2.996,3H7.5l0,0H8\r\n\t\t\t\tv6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.057,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.061,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.027,0.033,0.04c0.534,0.535,1.271,0.864,2.084,0.875C10.976,62.996,10.987,63,11,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L21.243,54H22l0,0h3l0,0h6.9l0,0H53l0,0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.613,0-3.072-0.645-4.15-1.682L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.014,0,0.025-0.004,0.037-0.004c0.812-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.234-0.259,0.332-0.404c0.039-0.057,0.065-0.122,0.101-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.047-0.129,0.095-0.257,0.123-0.394\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[]}]}]}]}]}]}]}]};exports.speech_4=speech_4;var speech_bubble_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[{"name":"path","attribs":{"d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[]}]}]}]}]}]}]}]};exports.speech_bubble_1=speech_bubble_1;var speech_bubble_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35c-3.314,0-6-2.686-6-6s2.686-6,6-6\r\n\t\t\t\ts6,2.686,6,6S20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,35,32,35z M47,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S50.314,35,47,35z"},"children":[{"name":"path","attribs":{"d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35c-3.314,0-6-2.686-6-6s2.686-6,6-6\r\n\t\t\t\ts6,2.686,6,6S20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,35,32,35z M47,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S50.314,35,47,35z"},"children":[]}]}]}]}]}]}]}]};exports.speech_bubble_2=speech_bubble_2;var speech_bubbles={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.478c-12.036-0.75-19.873-8.212-20.379-17.122\r\n\t\t\t\tc-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.57c0,6.962,4.177,13.177,11.123,17.258\r\n\t\t\t\tc1.573,0.924,1.752,7.861-7.097,12.05c0,0,12.529,1.976,20.473-8.067c1.964,0.282,3.996,0.883,6.075,0.883\r\n\t\t\t\tc14.557,0,24.237-7.162,26.776-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z M56.721,27.814\r\n\t\t\t\tc4.549-2.673,7.285-6.744,7.285-11.304c0-8.052-8.85-14.579-20.027-14.579c-11.179,0-17.993,6.527-17.993,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.993,14.492c1.361,0,2.692-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.689,28.419,56.721,27.814z"},"children":[{"name":"path","attribs":{"d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.478c-12.036-0.75-19.873-8.212-20.379-17.122\r\n\t\t\t\tc-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.57c0,6.962,4.177,13.177,11.123,17.258\r\n\t\t\t\tc1.573,0.924,1.752,7.861-7.097,12.05c0,0,12.529,1.976,20.473-8.067c1.964,0.282,3.996,0.883,6.075,0.883\r\n\t\t\t\tc14.557,0,24.237-7.162,26.776-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z M56.721,27.814\r\n\t\t\t\tc4.549-2.673,7.285-6.744,7.285-11.304c0-8.052-8.85-14.579-20.027-14.579c-11.179,0-17.993,6.527-17.993,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.993,14.492c1.361,0,2.692-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.689,28.419,56.721,27.814z"},"children":[]}]}]}]}]}]}]}]};exports.speech_bubbles=speech_bubbles;var spotify={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"spotify_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"spotify"},"children":[{"name":"g","attribs":{"id":"spotify"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26.671,55.675c-4.217,0-7.496,1.354-10.156,4.239c4.795,2.869,9.491,4.079,15.486,4.079\r\n\t\t\t\tc3.087,0,4.405-0.132,7.229-0.948C36.949,58.527,32.591,55.675,26.671,55.675z M32.001,0.008\r\n\t\t\t\tc-17.67,0-31.993,14.323-31.993,31.993c0,8.224,3.103,15.72,8.202,21.388c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.893,12.458c8.69-5.721,14.43-15.561,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.319,1.788-1.937c0.713-0.131,18.112-3.926,30.539,4.408\r\n\t\t\t\tc0.922,0.727,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.479,0-0.927-0.138-1.308-0.37\r\n\t\t\t\th-0.002c-13.899-8.339-29.991-4.409-32.001-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.195,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.042,4.852c0.934,0.507,1.565,1.497,1.565,2.635C56.581,24.7,55.236,26.042,53.583,26.042z"},"children":[{"name":"path","attribs":{"d":"M26.671,55.675c-4.217,0-7.496,1.354-10.156,4.239c4.795,2.869,9.491,4.079,15.486,4.079\r\n\t\t\t\tc3.087,0,4.405-0.132,7.229-0.948C36.949,58.527,32.591,55.675,26.671,55.675z M32.001,0.008\r\n\t\t\t\tc-17.67,0-31.993,14.323-31.993,31.993c0,8.224,3.103,15.72,8.202,21.388c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.893,12.458c8.69-5.721,14.43-15.561,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.319,1.788-1.937c0.713-0.131,18.112-3.926,30.539,4.408\r\n\t\t\t\tc0.922,0.727,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.479,0-0.927-0.138-1.308-0.37\r\n\t\t\t\th-0.002c-13.899-8.339-29.991-4.409-32.001-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.195,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.042,4.852c0.934,0.507,1.565,1.497,1.565,2.635C56.581,24.7,55.236,26.042,53.583,26.042z"},"children":[]}]}]}]}]}]}]}]};exports.spotify=spotify;var square={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE"},"children":[{"name":"g","attribs":{"id":"SQUARE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz"},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz"},"children":[]}]}]}]}]}]}]}]};exports.square=square;var square_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M19,35h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3s-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"d":"M19,35h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3s-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]}]};exports.square_add=square_add;var square_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DASHED"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0\r\n\t\t\tv12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M37,0H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,1.344,38.657,0,37,0z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0\r\n\t\t\tv12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M37,0H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,1.344,38.657,0,37,0z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[]}]}]}]}]}]};exports.square_dashed=square_dashed;var square_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]}]};exports.square_delete=square_delete;var square_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DOWN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\tl0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3\r\n\t\t\tc0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10\r\n\t\t\tc1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1s1.673-0.391,2.222-1l0.008,0.007l9-10\r\n\t\t\tL43.222,37C43.701,36.468,44,35.772,44,35C44,33.344,42.657,32,41,32z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M61,40\r\n\t\t\tc1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10C58,38.657,59.343,40,61,40z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\tl0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3\r\n\t\t\tc0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10\r\n\t\t\tc1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1s1.673-0.391,2.222-1l0.008,0.007l9-10\r\n\t\t\tL43.222,37C43.701,36.468,44,35.772,44,35C44,33.344,42.657,32,41,32z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M61,40\r\n\t\t\tc1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10C58,38.657,59.343,40,61,40z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[]}]}]}]}]}]};exports.square_down=square_down;var square_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__LEFT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z\r\n\t\t\t M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0\r\n\t\t\tC0,16.657,1.343,18,3,18z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tC18,59.343,16.657,58,15,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M64,37V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3S64,38.657,64,37z M48,32c0-1.657-1.343-3-3-3H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.779c-0.61,0.549-1,1.337-1,2.222\r\n\t\t\tc0,0.885,0.391,1.673,1,2.222l-0.007,0.008l10,9L27,43.222C27.532,43.701,28.229,44,29,44c1.657,0,3-1.343,3-3\r\n\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L26.818,35H45C46.657,35,48,33.657,48,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z\r\n\t\t\t M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0\r\n\t\t\tC0,16.657,1.343,18,3,18z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tC18,59.343,16.657,58,15,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M64,37V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3S64,38.657,64,37z M48,32c0-1.657-1.343-3-3-3H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.779c-0.61,0.549-1,1.337-1,2.222\r\n\t\t\tc0,0.885,0.391,1.673,1,2.222l-0.007,0.008l10,9L27,43.222C27.532,43.701,28.229,44,29,44c1.657,0,3-1.343,3-3\r\n\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L26.818,35H45C46.657,35,48,33.657,48,32z"},"children":[]}]}]}]}]}]};exports.square_left=square_left;var square_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z M46,43.001C46,43.001,46,43,46,43.001\r\n\t\t\t\tC46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L28,35.757l-6.879-6.879\r\n\t\t\t\tC20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z M61,0H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z M46,43.001C46,43.001,46,43,46,43.001\r\n\t\t\t\tC46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L28,35.757l-6.879-6.879\r\n\t\t\t\tC20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z M61,0H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]}]};exports.square_ok=square_ok;var square_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M19,35h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z"},"children":[{"name":"path","attribs":{"d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M19,35h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z"},"children":[]}]}]}]}]}]}]}]};exports.square_remove=square_remove;var square_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__RIGHT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3\r\n\t\t\tC1.343,0,0,1.344,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M32.993,38.771l0.007,0.008c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\tc0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L47,34.222c0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.672-1-2.222l0.007-0.008\r\n\t\t\tl-10-9L37,20.779C36.468,20.3,35.772,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182L32.993,38.771z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3\r\n\t\t\tC1.343,0,0,1.344,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M32.993,38.771l0.007,0.008c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\tc0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L47,34.222c0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.672-1-2.222l0.007-0.008\r\n\t\t\tl-10-9L37,20.779C36.468,20.3,35.772,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182L32.993,38.771z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"},"children":[]}]}]}]}]}]};exports.square_right=square_right;var square_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SQUARE__x2F__UP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12\r\n\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,24c-1.657,0-3,1.343-3,3v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V27\r\n\t\t\tC64,25.343,62.657,24,61,24z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M43.23,26.994l-9-10l-0.008,0.007\r\n\t\t\tc-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29\r\n\t\t\tc0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818\r\n\t\t\tl3.77,4.189L38.778,31c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.994z M61,46\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49\r\n\t\t\tC64,47.343,62.657,46,61,46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12\r\n\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,24c-1.657,0-3,1.343-3,3v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V27\r\n\t\t\tC64,25.343,62.657,24,61,24z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M43.23,26.994l-9-10l-0.008,0.007\r\n\t\t\tc-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29\r\n\t\t\tc0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818\r\n\t\t\tl3.77,4.189L38.778,31c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.994z M61,46\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49\r\n\t\t\tC64,47.343,62.657,46,61,46z"},"children":[]}]}]}]}]}]};exports.square_up=square_up;var star={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"STAR_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STAR"},"children":[{"name":"g","attribs":{"id":"STAR"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.352,2,32,2c-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0L17.36,40.09l-6.209,18.971C11.053,59.357,11,59.672,11,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.57h0.001L32,50.682L48.242,62.43h0.001C48.736,62.788,49.343,63,50,63\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.15-0.938L46.641,40.09l16.118-11.66l0,0C63.51,27.885,64,27,64,26z"},"children":[{"name":"path","attribs":{"d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.352,2,32,2c-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0L17.36,40.09l-6.209,18.971C11.053,59.357,11,59.672,11,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.57h0.001L32,50.682L48.242,62.43h0.001C48.736,62.788,49.343,63,50,63\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.15-0.938L46.641,40.09l16.118-11.66l0,0C63.51,27.885,64,27,64,26z"},"children":[]}]}]}]}]}]}]}]};exports.star=star;var stop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"STOP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STOP"},"children":[{"name":"g","attribs":{"id":"STOP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z"},"children":[{"name":"path","attribs":{"d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z"},"children":[]}]}]}]}]}]}]}]};exports.stop=stop;var suitcase={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"SUITCASE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SUITCASE"},"children":[{"name":"g","attribs":{"id":"SUITCASE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3c-8.284,0-15,6.716-15,15h-6v43h42V18h-6\r\n\t\t\t\tC47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5v43h5c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC64,19.343,62.657,18,61,18z"},"children":[{"name":"path","attribs":{"d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3c-8.284,0-15,6.716-15,15h-6v43h42V18h-6\r\n\t\t\t\tC47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5v43h5c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC64,19.343,62.657,18,61,18z"},"children":[]}]}]}]}]}]}]}]};exports.suitcase=suitcase;var tag={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TAG_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAG"},"children":[{"name":"g","attribs":{"id":"TAG"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56,33c0-0.018-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258c-0.002-0.017-0.006-0.031-0.008-0.047\r\n\t\t\t\tc-0.01-0.084-0.021-0.169-0.039-0.252c0-0.002,0-0.003,0-0.005c-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884\r\n\t\t\t\tC31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8c-1.657,0-3,1.343-3,3H7.993v19.049h0.013\r\n\t\t\t\tc0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005c0.395,0.348,0.879,0.592,1.418,0.693\r\n\t\t\t\tc0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028C35.807,55.995,35.902,56,36,56\r\n\t\t\t\tc0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C55.73,34.418,56,33.741,56,33z M16,20c-2.209,0-4-1.791-4-4\r\n\t\t\t\ts1.791-4,4-4s4,1.791,4,4S18.209,20,16,20z"},"children":[{"name":"path","attribs":{"d":"M56,33c0-0.018-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258c-0.002-0.017-0.006-0.031-0.008-0.047\r\n\t\t\t\tc-0.01-0.084-0.021-0.169-0.039-0.252c0-0.002,0-0.003,0-0.005c-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884\r\n\t\t\t\tC31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8c-1.657,0-3,1.343-3,3H7.993v19.049h0.013\r\n\t\t\t\tc0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005c0.395,0.348,0.879,0.592,1.418,0.693\r\n\t\t\t\tc0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028C35.807,55.995,35.902,56,36,56\r\n\t\t\t\tc0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C55.73,34.418,56,33.741,56,33z M16,20c-2.209,0-4-1.791-4-4\r\n\t\t\t\ts1.791-4,4-4s4,1.791,4,4S18.209,20,16,20z"},"children":[]}]}]}]}]}]}]}]};exports.tag=tag;var tags={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TAGS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAGS"},"children":[{"name":"g","attribs":{"id":"TAGS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56.113,26.872l-5.133-4.91c-0.006,0.009-0.012,0.019-0.017,0.028L34.126,5.884C33.582,5.338,32.831,5,32,5\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9l0.002,0.001\r\n\t\t\t\tC56.73,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951c-0.001-0.087-0.004-0.174-0.013-0.26\r\n\t\t\t\tc-0.002-0.016-0.006-0.03-0.008-0.045c-0.01-0.086-0.021-0.17-0.039-0.254c0-0.002,0-0.002,0-0.004\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11c-0.003,0-0.005,0.001-0.008,0.001v-0.008H10\r\n\t\t\t\tV11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005\r\n\t\t\t\tc0.395,0.348,0.879,0.594,1.418,0.693c0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028\r\n\t\t\t\tC34.807,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C54.73,37.418,55,36.741,55,36\r\n\t\t\t\tC55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4S17.209,23,15,23z"},"children":[{"name":"path","attribs":{"d":"M56.113,26.872l-5.133-4.91c-0.006,0.009-0.012,0.019-0.017,0.028L34.126,5.884C33.582,5.338,32.831,5,32,5\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9l0.002,0.001\r\n\t\t\t\tC56.73,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951c-0.001-0.087-0.004-0.174-0.013-0.26\r\n\t\t\t\tc-0.002-0.016-0.006-0.03-0.008-0.045c-0.01-0.086-0.021-0.17-0.039-0.254c0-0.002,0-0.002,0-0.004\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11c-0.003,0-0.005,0.001-0.008,0.001v-0.008H10\r\n\t\t\t\tV11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005\r\n\t\t\t\tc0.395,0.348,0.879,0.594,1.418,0.693c0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028\r\n\t\t\t\tC34.807,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C54.73,37.418,55,36.741,55,36\r\n\t\t\t\tC55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4S17.209,23,15,23z"},"children":[]}]}]}]}]}]}]}]};exports.tags=tags;var target={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TARGET_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TARGET"},"children":[{"name":"g","attribs":{"id":"TARGET"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,29c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3S33.657,29,32,29z M61,29h-3.186\r\n\t\t\t\tC56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186C17.042,7.562,7.568,17.044,6.191,29H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61c0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191\r\n\t\t\t\tC46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3S62.657,29,61,29z M46,35h5.751\r\n\t\t\t\tC50.448,43.639,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756C20.366,50.453,13.552,43.639,12.249,35H18\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-5.756C13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756\r\n\t\t\t\tC43.634,13.547,50.448,20.362,51.751,29H46c-1.657,0-3,1.343-3,3S44.343,35,46,35z"},"children":[{"name":"path","attribs":{"d":"M32,29c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3S33.657,29,32,29z M61,29h-3.186\r\n\t\t\t\tC56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186C17.042,7.562,7.568,17.044,6.191,29H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61c0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191\r\n\t\t\t\tC46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3S62.657,29,61,29z M46,35h5.751\r\n\t\t\t\tC50.448,43.639,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756C20.366,50.453,13.552,43.639,12.249,35H18\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-5.756C13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756\r\n\t\t\t\tC43.634,13.547,50.448,20.362,51.751,29H46c-1.657,0-3,1.343-3,3S44.343,35,46,35z"},"children":[]}]}]}]}]}]}]}]};exports.target=target;var terminal={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TERMINAL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,32c0-0.002,0-0.005,0-0.007c0-0.002,0-0.005,0-0.007\r\n\t\t\tc0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008C10.536,11.318,9.806,11,9,11c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L6.84,47.917l0.001,0.001C6.321,48.458,6,49.191,6,50c0,1.657,1.343,3,3,3\r\n\t\t\tc0.809,0,1.543-0.321,2.082-0.841l0.001,0.001l18-18l-0.001-0.001C29.648,33.613,30,32.848,30,32z M55.5,47h-23\r\n\t\t\tc-1.381,0-2.5,1.119-2.5,2.5v1c0,1.381,1.119,2.5,2.5,2.5h23c1.381,0,2.5-1.119,2.5-2.5v-1C58,48.119,56.881,47,55.5,47z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,32c0-0.002,0-0.005,0-0.007c0-0.002,0-0.005,0-0.007\r\n\t\t\tc0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008C10.536,11.318,9.806,11,9,11c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L6.84,47.917l0.001,0.001C6.321,48.458,6,49.191,6,50c0,1.657,1.343,3,3,3\r\n\t\t\tc0.809,0,1.543-0.321,2.082-0.841l0.001,0.001l18-18l-0.001-0.001C29.648,33.613,30,32.848,30,32z M55.5,47h-23\r\n\t\t\tc-1.381,0-2.5,1.119-2.5,2.5v1c0,1.381,1.119,2.5,2.5,2.5h23c1.381,0,2.5-1.119,2.5-2.5v-1C58,48.119,56.881,47,55.5,47z"},"children":[]}]}]}]}]}]};exports.terminal=terminal;var text_center={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tS44.657,53,43,53z"},"children":[{"name":"path","attribs":{"d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tS44.657,53,43,53z"},"children":[]}]}]}]}]}]}]}]};exports.text_center=text_center;var text_justify={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z"},"children":[{"name":"path","attribs":{"d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z"},"children":[]}]}]}]}]}]}]}]};exports.text_justify=text_justify;var text_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,27,3,27z M3,11h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[{"name":"path","attribs":{"d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,27,3,27z M3,11h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[]}]}]}]}]}]}]}]};exports.text_left=text_left;var text_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3S62.657,21,61,21z"},"children":[{"name":"path","attribs":{"d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3S62.657,21,61,21z"},"children":[]}]}]}]}]}]}]}]};exports.text_right=text_right;var tick={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TICK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TICK"},"children":[{"name":"g","attribs":{"id":"TICK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879C15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47s1.578-0.336,2.121-0.879l23-23\r\n\t\t\t\tC52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[{"name":"path","attribs":{"d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879C15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47s1.578-0.336,2.121-0.879l23-23\r\n\t\t\t\tC52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[]}]}]}]}]}]}]}]};exports.tick=tick;var time={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TIME_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TIME"},"children":[{"name":"g","attribs":{"id":"TIME"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,29H35V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v18c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"d":"M45,29H35V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v18c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]}]};exports.time=time;var timer={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"TIMER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.129,16l-5.534,21.23c0,0-2.594,8.77,5.391,8.77c0,0,8.015-0.125,5.479-8.685\r\n\t\t\tL32.129,16z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.129,16l-5.534,21.23c0,0-2.594,8.77,5.391,8.77c0,0,8.015-0.125,5.479-8.685\r\n\t\t\tL32.129,16z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[]}]}]}]}]}]};exports.timer=timer;var tumblr={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"tumblr_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"tumblr"},"children":[{"name":"g","attribs":{"id":"tumblr"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M42.41,53.584c-1.816,0-3.424-0.428-4.834-1.275c-1.062-0.629-2.039-1.718-2.428-2.767\r\n\t\t\t\tc-0.392-1.049-0.344-3.19-0.344-6.905V26.215h14.729V14.788H34.807V-0.028h-9.062c-0.405,3.308-1.15,6.026-2.231,8.16\r\n\t\t\t\tc-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654V48.67c0,2.934,0.305,5.167,0.915,6.708\r\n\t\t\t\tc0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.359,3.487,2.42,5.725,3.162c2.238,0.734,3.955,1.101,6.869,1.101\r\n\t\t\t\tc2.565,0,4.951-0.258,7.16-0.778c2.207-0.521,4.674-1.429,7.395-2.711V50.419C48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[{"name":"path","attribs":{"d":"M42.41,53.584c-1.816,0-3.424-0.428-4.834-1.275c-1.062-0.629-2.039-1.718-2.428-2.767\r\n\t\t\t\tc-0.392-1.049-0.344-3.19-0.344-6.905V26.215h14.729V14.788H34.807V-0.028h-9.062c-0.405,3.308-1.15,6.026-2.231,8.16\r\n\t\t\t\tc-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654V48.67c0,2.934,0.305,5.167,0.915,6.708\r\n\t\t\t\tc0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.359,3.487,2.42,5.725,3.162c2.238,0.734,3.955,1.101,6.869,1.101\r\n\t\t\t\tc2.565,0,4.951-0.258,7.16-0.778c2.207-0.521,4.674-1.429,7.395-2.711V50.419C48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[]}]}]}]}]}]}]}]};exports.tumblr=tumblr;var twitter={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"twitter_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"twitter"},"children":[{"name":"g","attribs":{"id":"twitter"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56.568,14.179v-0.032c0.558-0.218,0.998-0.68,1.441-1.022c2-1.541,3.301-3.57,4.26-6.164\r\n\t\t\t\tc-0.543,0.298-1.088,0.596-1.633,0.894c-1.681,0.853-4.533,2.079-6.728,2.267c-2.586-2.356-5.292-4.209-10.378-4.12\r\n\t\t\t\tc-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.025,0.508-2.916,0.894c-3.724,1.616-6.263,4.631-7.431,8.814\r\n\t\t\t\tc-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767C18.69,19.594,14.372,17.29,9.578,13.54\r\n\t\t\t\tC8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43C4.463,8.42,4.442,8.409,4.421,8.398\r\n\t\t\t\tc-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912c0.664,0.826,1.741,1.338,2.402,2.108h0.064\r\n\t\t\t\tc-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766c-0.448-0.213-0.897-0.426-1.345-0.639\r\n\t\t\t\tc-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.636,4.292,1.724c-0.867,0.732-4.575,0.396-5.862,0.256\r\n\t\t\t\tc1.609,4.142,4.081,6.9,8.328,8.398c1.096,0.387,2.433,0.729,3.908,0.703c-0.783,0.93-2.454,1.688-3.556,2.331\r\n\t\t\t\tc-2.272,1.329-4.91,2.191-7.88,2.843c-1.191,0.26-2.457,0.207-3.748,0.414c-1.427,0.23-2.92-0.121-4.196-0.16\r\n\t\t\t\tc0.384,0.234,0.769,0.47,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916c2.379,1.041,4.914,1.826,7.72,2.523\r\n\t\t\t\tc5.658,1.404,13.64,0.773,18.579-0.766c13.754-4.287,22.442-14.293,25.722-29.03c0.564-2.535,0.646-5.414,0.609-8.431\r\n\t\t\t\tc0.684-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032C61.768,12.864,59.418,14.149,56.568,14.179z"},"children":[{"name":"path","attribs":{"d":"M56.568,14.179v-0.032c0.558-0.218,0.998-0.68,1.441-1.022c2-1.541,3.301-3.57,4.26-6.164\r\n\t\t\t\tc-0.543,0.298-1.088,0.596-1.633,0.894c-1.681,0.853-4.533,2.079-6.728,2.267c-2.586-2.356-5.292-4.209-10.378-4.12\r\n\t\t\t\tc-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.025,0.508-2.916,0.894c-3.724,1.616-6.263,4.631-7.431,8.814\r\n\t\t\t\tc-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767C18.69,19.594,14.372,17.29,9.578,13.54\r\n\t\t\t\tC8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43C4.463,8.42,4.442,8.409,4.421,8.398\r\n\t\t\t\tc-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912c0.664,0.826,1.741,1.338,2.402,2.108h0.064\r\n\t\t\t\tc-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766c-0.448-0.213-0.897-0.426-1.345-0.639\r\n\t\t\t\tc-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.636,4.292,1.724c-0.867,0.732-4.575,0.396-5.862,0.256\r\n\t\t\t\tc1.609,4.142,4.081,6.9,8.328,8.398c1.096,0.387,2.433,0.729,3.908,0.703c-0.783,0.93-2.454,1.688-3.556,2.331\r\n\t\t\t\tc-2.272,1.329-4.91,2.191-7.88,2.843c-1.191,0.26-2.457,0.207-3.748,0.414c-1.427,0.23-2.92-0.121-4.196-0.16\r\n\t\t\t\tc0.384,0.234,0.769,0.47,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916c2.379,1.041,4.914,1.826,7.72,2.523\r\n\t\t\t\tc5.658,1.404,13.64,0.773,18.579-0.766c13.754-4.287,22.442-14.293,25.722-29.03c0.564-2.535,0.646-5.414,0.609-8.431\r\n\t\t\t\tc0.684-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032C61.768,12.864,59.418,14.149,56.568,14.179z"},"children":[]}]}]}]}]}]}]}]};exports.twitter=twitter;var unlock={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"UNLOCK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UNLOCK"},"children":[{"name":"g","attribs":{"id":"UNLOCK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M55,32H20V18c0-6.627,5.373-12,12-12s12,5.373,12,12c0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18\r\n\t\t\t\tc-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35\r\n\t\t\t\tC58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z"},"children":[{"name":"path","attribs":{"d":"M55,32H20V18c0-6.627,5.373-12,12-12s12,5.373,12,12c0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18\r\n\t\t\t\tc-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35\r\n\t\t\t\tC58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z"},"children":[]}]}]}]}]}]}]}]};exports.unlock=unlock;var upload={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"UPLOAD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UPLOAD"},"children":[{"name":"g","attribs":{"id":"UPLOAD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V18.818l3.77,4.189l0,0\r\n\t\t\t\tC39.318,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,8.384,32.885,8,32,8\r\n\t\t\t\ts-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V18.818l3.77,4.189l0,0\r\n\t\t\t\tC39.318,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,8.384,32.885,8,32,8\r\n\t\t\t\ts-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]}]};exports.upload=upload;var user={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER_2_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER_1_"},"children":[{"name":"g","attribs":{"id":"USER_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0,0-10.933-7.987-14.906c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409\r\n\t\t\t\tl-0.055-5.893c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0,0-10.933-7.987-14.906c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409\r\n\t\t\t\tl-0.055-5.893c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]}]};exports.user=user;var user_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0-0.005-0.567-0.099-1.47C62.852,59.432,61.499,60,60,60c0,1.098-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6c0-1.952,0.945-3.668,2.389-4.764\r\n\t\t\t\tc-0.797-0.209-1.897-0.571-3.688-1.314c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047C0,49.061,0,59.992,0,59.992h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[{"name":"path","attribs":{"d":"M64.001,59.993c0,0-0.005-0.567-0.099-1.47C62.852,59.432,61.499,60,60,60c0,1.098-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6c0-1.952,0.945-3.668,2.389-4.764\r\n\t\t\t\tc-0.797-0.209-1.897-0.571-3.688-1.314c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047C0,49.061,0,59.992,0,59.992h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[]}]}]}]}]}]}]}]};exports.user_add=user_add;var user_circle={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER_3_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER"},"children":[{"name":"g","attribs":{"id":"USER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M51.253,49.43\r\n\t\t\t\tc-3.767-1.826-2.382-0.398-7.31-2.427c-5.041-2.073-6.235-2.749-6.235-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917\r\n\t\t\t\tc1.178,0.338,1.578-1.372,1.642-2.464c0.069-1.055,0.696-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235\r\n\t\t\t\tc-0.36-3.691-2.931-7.544-9.42-7.826c-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236\r\n\t\t\t\tc-1.441-0.297-0.821,2.999-0.758,4.054c0.07,1.092,0.46,2.809,1.641,2.469c0.587,4.495,2.475,5.93,2.475,5.93L26.293,44.3\r\n\t\t\t\tc0,0-1.195,0.724-6.236,2.796c-4.927,2.027-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,38.716,55.432,44.816,51.253,49.43z"},"children":[{"name":"path","attribs":{"d":"M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M51.253,49.43\r\n\t\t\t\tc-3.767-1.826-2.382-0.398-7.31-2.427c-5.041-2.073-6.235-2.749-6.235-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917\r\n\t\t\t\tc1.178,0.338,1.578-1.372,1.642-2.464c0.069-1.055,0.696-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235\r\n\t\t\t\tc-0.36-3.691-2.931-7.544-9.42-7.826c-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236\r\n\t\t\t\tc-1.441-0.297-0.821,2.999-0.758,4.054c0.07,1.092,0.46,2.809,1.641,2.469c0.587,4.495,2.475,5.93,2.475,5.93L26.293,44.3\r\n\t\t\t\tc0,0-1.195,0.724-6.236,2.796c-4.927,2.027-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,38.716,55.432,44.816,51.253,49.43z"},"children":[]}]}]}]}]}]}]}]};exports.user_circle=user_circle;var user_delete={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE"},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M46.516,54l-1.758-1.757l0.016-0.017C43.682,51.146,43,49.659,43,48c0-2.775,1.895-5.088,4.454-5.773\r\n\t\t\t\tc-0.243-0.097-0.481-0.191-0.754-0.305c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337\r\n\t\t\t\tc1.449,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832C43.316,62.115,43,61.1,43,60c0-1.657,0.672-3.157,1.757-4.243L46.516,54\r\n\t\t\t\tz M59.243,54l3.879-3.878C63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758\r\n\t\t\t\tl-3.879-3.879C50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[{"name":"path","attribs":{"d":"M46.516,54l-1.758-1.757l0.016-0.017C43.682,51.146,43,49.659,43,48c0-2.775,1.895-5.088,4.454-5.773\r\n\t\t\t\tc-0.243-0.097-0.481-0.191-0.754-0.305c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337\r\n\t\t\t\tc1.449,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832C43.316,62.115,43,61.1,43,60c0-1.657,0.672-3.157,1.757-4.243L46.516,54\r\n\t\t\t\tz M59.243,54l3.879-3.878C63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758\r\n\t\t\t\tl-3.879-3.879C50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[]}]}]}]}]}]}]}]};exports.user_delete=user_delete;var user_ok={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER__x2F__OK_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK"},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781\r\n\t\t\t\tc0.047-0.046,0.104-0.08,0.15-0.124c-0.299-0.183-0.57-0.386-0.895-0.547c-5.055-2.516-3.107-0.591-9.313-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337c1.449,0.42,1.94-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491c-0.442-4.576-3.606-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.896-7.675,3.466\r\n\t\t\t\tc-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46.691c-0.336-0.223-0.65-0.475-0.934-0.757L44.757,58.243z M64.001,59.993c0,0-0.008-1.709-0.498-4.011\r\n\t\t\t\tl-6.261,6.261c-0.284,0.282-0.598,0.534-0.934,0.757H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879C50.578,51.336,49.828,51,49,51\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61s1.578-0.336,2.121-0.879l8-8\r\n\t\t\t\tC63.664,51.579,64,50.828,64,50z"},"children":[{"name":"path","attribs":{"d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781\r\n\t\t\t\tc0.047-0.046,0.104-0.08,0.15-0.124c-0.299-0.183-0.57-0.386-0.895-0.547c-5.055-2.516-3.107-0.591-9.313-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337c1.449,0.42,1.94-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491c-0.442-4.576-3.606-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.896-7.675,3.466\r\n\t\t\t\tc-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46.691c-0.336-0.223-0.65-0.475-0.934-0.757L44.757,58.243z M64.001,59.993c0,0-0.008-1.709-0.498-4.011\r\n\t\t\t\tl-6.261,6.261c-0.284,0.282-0.598,0.534-0.934,0.757H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879C50.578,51.336,49.828,51,49,51\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61s1.578-0.336,2.121-0.879l8-8\r\n\t\t\t\tC63.664,51.579,64,50.828,64,50z"},"children":[]}]}]}]}]}]}]}]};exports.user_ok=user_ok;var user_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE"},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H48C46.343,51,45,52.343,45,54z M64.001,59.993\r\n\t\t\t\tc0,0-0.005-0.571-0.097-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6s2.686-6,6-6h11.764\r\n\t\t\t\tc-0.998-1.141-2.226-2.154-3.75-2.913c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H48C46.343,51,45,52.343,45,54z M64.001,59.993\r\n\t\t\t\tc0,0-0.005-0.571-0.097-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6s2.686-6,6-6h11.764\r\n\t\t\t\tc-0.998-1.141-2.226-2.154-3.75-2.913c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]}]};exports.user_remove=user_remove;var user_square={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USER"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,56.843c-0.888-2.64-2.564-5.557-5.739-7.157c-4.265-2.15-2.623-0.505-7.858-2.705\r\n\t\t\tc-5.235-2.197-6.475-2.915-6.475-2.915l-0.046-5.039c0,0,1.961-1.508,2.573-6.273c1.224,0.359,1.638-1.454,1.704-2.612\r\n\t\t\tc0.073-1.119,0.724-4.607-0.774-4.296c0.306-2.329,0.547-4.434,0.438-5.549c-0.374-3.912-3.044-7.998-9.782-8.296\r\n\t\t\tc-5.729,0.299-9.448,4.386-9.823,8.299c-0.108,1.115,0.112,3.218,0.418,5.551c-1.497-0.315-0.852,3.179-0.787,4.297\r\n\t\t\tc0.072,1.158,0.477,2.977,1.705,2.618c0.609,4.765,2.57,6.285,2.57,6.285l-0.049,5.065c0,0-1.24,0.767-6.476,2.963\r\n\t\t\tc-5.235,2.201-3.594,0.455-7.858,2.605C8.565,51.285,6.888,54.203,6,56.843V6h52V56.843z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,56.843c-0.888-2.64-2.564-5.557-5.739-7.157c-4.265-2.15-2.623-0.505-7.858-2.705\r\n\t\t\tc-5.235-2.197-6.475-2.915-6.475-2.915l-0.046-5.039c0,0,1.961-1.508,2.573-6.273c1.224,0.359,1.638-1.454,1.704-2.612\r\n\t\t\tc0.073-1.119,0.724-4.607-0.774-4.296c0.306-2.329,0.547-4.434,0.438-5.549c-0.374-3.912-3.044-7.998-9.782-8.296\r\n\t\t\tc-5.729,0.299-9.448,4.386-9.823,8.299c-0.108,1.115,0.112,3.218,0.418,5.551c-1.497-0.315-0.852,3.179-0.787,4.297\r\n\t\t\tc0.072,1.158,0.477,2.977,1.705,2.618c0.609,4.765,2.57,6.285,2.57,6.285l-0.049,5.065c0,0-1.24,0.767-6.476,2.963\r\n\t\t\tc-5.235,2.201-3.594,0.455-7.858,2.605C8.565,51.285,6.888,54.203,6,56.843V6h52V56.843z"},"children":[]}]}]}]}]}]};exports.user_square=user_square;var users={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"USERS_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USERS"},"children":[{"name":"g","attribs":{"id":"USERS"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M40.837,41.984c-3.685-1.828-2.267-0.43-6.79-2.299c-4.524-1.867-5.595-2.478-5.595-2.478l-0.04-4.282\r\n\t\t\t\tc0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22c0.063-0.951,0.626-3.916-0.669-3.651\r\n\t\t\t\tc0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051c-4.95,0.254-8.164,3.728-8.488,7.054\r\n\t\t\t\tc-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652c0.062,0.984,0.412,2.53,1.473,2.225\r\n\t\t\t\tc0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.651-5.596,2.519c-4.524,1.871-3.105,0.388-6.79,2.215\r\n\t\t\t\tc-5.824,2.889-5.824,10.832-5.824,10.832h0.002c0,0-0.001,0.002-0.001,0.004C0,54.023,0.979,55,2.187,55h42.286\r\n\t\t\t\tc1.207,0,2.187-0.977,2.187-2.18c0-0.002,0-0.004,0-0.006h0.001C46.66,52.814,46.66,44.872,40.837,41.984z M63.9,53.012\r\n\t\t\t\tc0,0,0-7.226-5.297-9.854c-3.354-1.663-2.062-0.391-6.179-2.092c-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896\r\n\t\t\t\tc0,0,1.541-1.166,2.021-4.85c0.963,0.277,1.289-1.124,1.341-2.02c0.057-0.865,0.569-3.562-0.608-3.322\r\n\t\t\t\tc0.241-1.801,0.43-3.429,0.344-4.291c-0.293-3.025-2.393-6.184-7.689-6.415c-4.504,0.231-7.428,3.392-7.723,6.417\r\n\t\t\t\tc-0.084,0.862,0.089,2.489,0.33,4.293c-1.178-0.244-0.67,2.458-0.619,3.323c0.058,0.896,0.375,2.302,1.341,2.024\r\n\t\t\t\tc0.479,3.685,2.021,4.86,2.021,4.86l-0.039,3.901c1.4,0.331,1.588,0.063,4.41,1.464c6.604,3.275,6.604,12.282,6.604,12.282\r\n\t\t\t\th-0.002c0,0.002,0,0.004,0,0.006c0,1.181-0.831,2.165-1.942,2.41H61.91c1.099,0,1.99-0.888,1.99-1.983\r\n\t\t\t\tC63.9,53.014,63.9,53.014,63.9,53.012L63.9,53.012L63.9,53.012z"},"children":[{"name":"path","attribs":{"d":"M40.837,41.984c-3.685-1.828-2.267-0.43-6.79-2.299c-4.524-1.867-5.595-2.478-5.595-2.478l-0.04-4.282\r\n\t\t\t\tc0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22c0.063-0.951,0.626-3.916-0.669-3.651\r\n\t\t\t\tc0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051c-4.95,0.254-8.164,3.728-8.488,7.054\r\n\t\t\t\tc-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652c0.062,0.984,0.412,2.53,1.473,2.225\r\n\t\t\t\tc0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.651-5.596,2.519c-4.524,1.871-3.105,0.388-6.79,2.215\r\n\t\t\t\tc-5.824,2.889-5.824,10.832-5.824,10.832h0.002c0,0-0.001,0.002-0.001,0.004C0,54.023,0.979,55,2.187,55h42.286\r\n\t\t\t\tc1.207,0,2.187-0.977,2.187-2.18c0-0.002,0-0.004,0-0.006h0.001C46.66,52.814,46.66,44.872,40.837,41.984z M63.9,53.012\r\n\t\t\t\tc0,0,0-7.226-5.297-9.854c-3.354-1.663-2.062-0.391-6.179-2.092c-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896\r\n\t\t\t\tc0,0,1.541-1.166,2.021-4.85c0.963,0.277,1.289-1.124,1.341-2.02c0.057-0.865,0.569-3.562-0.608-3.322\r\n\t\t\t\tc0.241-1.801,0.43-3.429,0.344-4.291c-0.293-3.025-2.393-6.184-7.689-6.415c-4.504,0.231-7.428,3.392-7.723,6.417\r\n\t\t\t\tc-0.084,0.862,0.089,2.489,0.33,4.293c-1.178-0.244-0.67,2.458-0.619,3.323c0.058,0.896,0.375,2.302,1.341,2.024\r\n\t\t\t\tc0.479,3.685,2.021,4.86,2.021,4.86l-0.039,3.901c1.4,0.331,1.588,0.063,4.41,1.464c6.604,3.275,6.604,12.282,6.604,12.282\r\n\t\t\t\th-0.002c0,0.002,0,0.004,0,0.006c0,1.181-0.831,2.165-1.942,2.41H61.91c1.099,0,1.99-0.888,1.99-1.983\r\n\t\t\t\tC63.9,53.014,63.9,53.014,63.9,53.012L63.9,53.012L63.9,53.012z"},"children":[]}]}]}]}]}]}]}]};exports.users=users;var view={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VIEW_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW"},"children":[{"name":"g","attribs":{"id":"VIEW"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C38,28.686,35.314,26,32,26z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-5.318-4.337-11.402-7.964-18.116-9.425c-3.882-0.844-7.786-0.879-11.688-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691c5.32,4.337,11.403,7.963,18.118,9.424\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.143-2.328c0.357-0.367,0.591-0.84,0.669-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.008-0.058c0.002-0.015,0.003-0.027,0.005-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z M32,44\r\n\t\t\t\tc-6.627,0-12-5.372-12-12s5.372-12,12-12s12,5.373,12,12C44,38.628,38.627,44,32,44z"},"children":[{"name":"path","attribs":{"d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C38,28.686,35.314,26,32,26z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-5.318-4.337-11.402-7.964-18.116-9.425c-3.882-0.844-7.786-0.879-11.688-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691c5.32,4.337,11.403,7.963,18.118,9.424\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.143-2.328c0.357-0.367,0.591-0.84,0.669-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.008-0.058c0.002-0.015,0.003-0.027,0.005-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z M32,44\r\n\t\t\t\tc-6.627,0-12-5.372-12-12s5.372-12,12-12s12,5.373,12,12C44,38.628,38.627,44,32,44z"},"children":[]}]}]}]}]}]}]}]};exports.view=view;var view_off={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF"},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26C28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755\r\n\t\t\t\tC58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.82,0.245v-0.001l-0.018,0.012L4.679,48.245\r\n\t\t\t\tl0,0C4.271,48.514,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51c0.303,0,0.585-0.091,0.82-0.245v0.001l0.018-0.012L58.32,16.755\r\n\t\t\t\tL58.32,16.755z M9.455,42.364L10,42l10.409-6.939C20.151,34.082,20,33.061,20,32c0-6.628,5.373-12,12-12\r\n\t\t\t\tc2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345c-2.647-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.676-0.552-1.366-1.092-2.068-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.846-6.997-2.266L17,47l-0.09,0.09c2.8,1.439,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.144-2.328c0.356-0.367,0.59-0.841,0.668-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.009-0.058c0.001-0.015,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.275l-7.01,4.613C31.223,37.96,31.607,38,32,38C34.876,38,37.275,35.977,37.861,33.275z"},"children":[{"name":"path","attribs":{"d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26C28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755\r\n\t\t\t\tC58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.82,0.245v-0.001l-0.018,0.012L4.679,48.245\r\n\t\t\t\tl0,0C4.271,48.514,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51c0.303,0,0.585-0.091,0.82-0.245v0.001l0.018-0.012L58.32,16.755\r\n\t\t\t\tL58.32,16.755z M9.455,42.364L10,42l10.409-6.939C20.151,34.082,20,33.061,20,32c0-6.628,5.373-12,12-12\r\n\t\t\t\tc2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345c-2.647-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.676-0.552-1.366-1.092-2.068-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.846-6.997-2.266L17,47l-0.09,0.09c2.8,1.439,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.144-2.328c0.356-0.367,0.59-0.841,0.668-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.009-0.058c0.001-0.015,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.275l-7.01,4.613C31.223,37.96,31.607,38,32,38C34.876,38,37.275,35.977,37.861,33.275z"},"children":[]}]}]}]}]}]}]}]};exports.view_off=view_off;var vimeo={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"vimeo_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"vimeo"},"children":[{"name":"g","attribs":{"id":"vimeo"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M36.348,18.728c2.748-0.624,7.539-1.522,8.529,1.306c1.246,8.476-4.611,15.407-9.84,19.602\r\n\t\t\t\tC24.919,34.128,32.523,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255C4.788,13.151-0.013,16.758,0,19.531v0.073\r\n\t\t\t\tc0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306c8.471,6.948,5.793,37.749,18.37,39.856\r\n\t\t\t\tc4.882,0.817,11.08-3.648,14.433-6.535c4.625-3.98,9.924-10.722,13.777-16.334c0,0,9.677-12.741,8.529-23.521\r\n\t\t\t\tC61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[{"name":"path","attribs":{"d":"M36.348,18.728c2.748-0.624,7.539-1.522,8.529,1.306c1.246,8.476-4.611,15.407-9.84,19.602\r\n\t\t\t\tC24.919,34.128,32.523,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255C4.788,13.151-0.013,16.758,0,19.531v0.073\r\n\t\t\t\tc0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306c8.471,6.948,5.793,37.749,18.37,39.856\r\n\t\t\t\tc4.882,0.817,11.08-3.648,14.433-6.535c4.625-3.98,9.924-10.722,13.777-16.334c0,0,9.677-12.741,8.529-23.521\r\n\t\t\t\tC61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[]}]}]}]}]}]}]}]};exports.vimeo=vimeo;var voicemail={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOICEMAIL_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOICEMAIL"},"children":[{"name":"g","attribs":{"id":"VOICEMAIL"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.73,2.52,8H25.48c1.584-2.27,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14\r\n\t\t\t\tS0,24.268,0,32c0,7.732,6.268,14,14,14h36c7.732,0,14-6.268,14-14C64,24.268,57.732,18,50,18z M14,40c-4.418,0-8-3.582-8-8\r\n\t\t\t\ts3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S54.418,40,50,40z"},"children":[{"name":"path","attribs":{"d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.73,2.52,8H25.48c1.584-2.27,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14\r\n\t\t\t\tS0,24.268,0,32c0,7.732,6.268,14,14,14h36c7.732,0,14-6.268,14-14C64,24.268,57.732,18,50,18z M14,40c-4.418,0-8-3.582-8-8\r\n\t\t\t\ts3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S54.418,40,50,40z"},"children":[]}]}]}]}]}]}]}]};exports.voicemail=voicemail;var volume_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_1"},"children":[{"name":"g","attribs":{"id":"VOLUME_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C12.339,25.006,11,26.346,11,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.21,7.426l0.006-0.007C34.736,48.781,35.34,49,36,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC39,17.343,37.657,16,36,16z M47.902,18.926l-2.846,2.847C47.52,24.852,49,28.75,49,33s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.902,18.926z"},"children":[{"name":"path","attribs":{"d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C12.339,25.006,11,26.346,11,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.21,7.426l0.006-0.007C34.736,48.781,35.34,49,36,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC39,17.343,37.657,16,36,16z M47.902,18.926l-2.846,2.847C47.52,24.852,49,28.75,49,33s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.902,18.926z"},"children":[]}]}]}]}]}]}]}]};exports.volume_1=volume_1;var volume_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_2"},"children":[{"name":"g","attribs":{"id":"VOLUME_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32s-2.708,13.93-7.146,19.023l2.848,2.849\r\n\t\t\t\tC55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15c-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678\r\n\t\t\t\tl-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007\r\n\t\t\t\tC29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z M42.902,17.926l-2.846,2.847\r\n\t\t\t\tC42.52,23.852,44,27.75,44,32s-1.48,8.148-3.943,11.227l2.846,2.848C46.083,42.26,48,37.355,48,32\r\n\t\t\t\tC48,26.645,46.083,21.74,42.902,17.926z"},"children":[{"name":"path","attribs":{"d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32s-2.708,13.93-7.146,19.023l2.848,2.849\r\n\t\t\t\tC55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15c-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678\r\n\t\t\t\tl-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007\r\n\t\t\t\tC29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z M42.902,17.926l-2.846,2.847\r\n\t\t\t\tC42.52,23.852,44,27.75,44,32s-1.48,8.148-3.943,11.227l2.846,2.848C46.083,42.26,48,37.355,48,32\r\n\t\t\t\tC48,26.645,46.083,21.74,42.902,17.926z"},"children":[]}]}]}]}]}]}]}]};exports.volume_2=volume_2;var volume_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_3"},"children":[{"name":"g","attribs":{"id":"VOLUME_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992v0.008C1.339,24.006,0,25.346,0,27v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48c1.657,0,3-1.343,3-3V18\r\n\t\t\t\tC28,16.343,26.657,15,25,15z M36.902,17.926l-2.846,2.847C36.52,23.852,38,27.75,38,32s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.902,17.926z M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32\r\n\t\t\t\ts-2.708,13.93-7.146,19.023l2.848,2.849C49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336\r\n\t\t\t\tl-2.831,2.831C56.086,12.263,60,21.674,60,32s-3.914,19.736-10.338,26.833l2.831,2.831C59.639,53.842,64,43.432,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[{"name":"path","attribs":{"d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992v0.008C1.339,24.006,0,25.346,0,27v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48c1.657,0,3-1.343,3-3V18\r\n\t\t\t\tC28,16.343,26.657,15,25,15z M36.902,17.926l-2.846,2.847C36.52,23.852,38,27.75,38,32s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.902,17.926z M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32\r\n\t\t\t\ts-2.708,13.93-7.146,19.023l2.848,2.849C49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336\r\n\t\t\t\tl-2.831,2.831C56.086,12.263,60,21.674,60,32s-3.914,19.736-10.338,26.833l2.831,2.831C59.639,53.842,64,43.432,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[]}]}]}]}]}]}]}]};exports.volume_3=volume_3;var volume_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S56.657,30,55,30z M31,16\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z"},"children":[{"name":"path","attribs":{"d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S56.657,30,55,30z M31,16\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z"},"children":[]}]}]}]}]}]}]}]};exports.volume_down=volume_down;var volume_mute={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[{"name":"path","attribs":{"d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[]}]}]}]}]}]}]}]};exports.volume_mute=volume_mute;var volume_off={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C18.339,25.006,17,26.346,17,28v9.627\r\n\t\t\t\tl27.973-18.9C44.832,17.2,43.562,16,42,16z M30.024,41l10.21,7.426l0.006-0.007C40.736,48.781,41.34,49,42,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.602,0.095-0.841,0.258L13.064,43.955\r\n\t\t\t\tc-0.4,0.27-0.664,0.727-0.664,1.245c0,0.827,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.259l37.095-25.096\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[{"name":"path","attribs":{"d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C18.339,25.006,17,26.346,17,28v9.627\r\n\t\t\t\tl27.973-18.9C44.832,17.2,43.562,16,42,16z M30.024,41l10.21,7.426l0.006-0.007C40.736,48.781,41.34,49,42,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.602,0.095-0.841,0.258L13.064,43.955\r\n\t\t\t\tc-0.4,0.27-0.664,0.727-0.664,1.245c0,0.827,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.259l37.095-25.096\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[]}]}]}]}]}]}]}]};exports.volume_off=volume_off;var volume_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[{"name":"path","attribs":{"d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[]}]}]}]}]}]}]}]};exports.volume_up=volume_up;var warning={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"WARNING_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WARNING"},"children":[{"name":"g","attribs":{"id":"WARNING"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M63.562,53.463l0.018-0.011l-29-47l-0.018,0.01C34.039,5.59,33.092,5,32,5c-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01\r\n\t\t\t\tl-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3c0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03\r\n\t\t\t\tC62.671,57.982,64,56.648,64,55C64,54.436,63.835,53.914,63.562,53.463z M32,52c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4\r\n\t\t\t\tS34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22c0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[{"name":"path","attribs":{"d":"M63.562,53.463l0.018-0.011l-29-47l-0.018,0.01C34.039,5.59,33.092,5,32,5c-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01\r\n\t\t\t\tl-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3c0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03\r\n\t\t\t\tC62.671,57.982,64,56.648,64,55C64,54.436,63.835,53.914,63.562,53.463z M32,52c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4\r\n\t\t\t\tS34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22c0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[]}]}]}]}]}]}]}]};exports.warning=warning;var wifi_1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"WIFI_1_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_1"},"children":[{"name":"g","attribs":{"id":"WIFI_1"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,34c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,34,32,34z M32,19\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25c3.971,0,7.482,1.937,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,21.629,37.343,19,32,19z"},"children":[{"name":"path","attribs":{"d":"M32,34c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,34,32,34z M32,19\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25c3.971,0,7.482,1.937,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,21.629,37.343,19,32,19z"},"children":[]}]}]}]}]}]}]}]};exports.wifi_1=wifi_1;var wifi_2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"WIFI_2_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_2"},"children":[{"name":"g","attribs":{"id":"WIFI_2"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,41c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,41,32,41z M32,26\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544l3.739,4.819C17.954,20.242,24.59,17,32,17\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[{"name":"path","attribs":{"d":"M32,41c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,41,32,41z M32,26\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544l3.739,4.819C17.954,20.242,24.59,17,32,17\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[]}]}]}]}]}]}]}]};exports.wifi_2=wifi_2;var wifi_3={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"WIFI_3_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_3"},"children":[{"name":"g","attribs":{"id":"WIFI_3"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,49c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,49,32,49z M32,34\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764C11.283,14.34,21.132,10,32,10\r\n\t\t\t\ts20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544l3.739,4.819C17.954,28.242,24.59,25,32,25\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19S15.279,22.666,9.637,28.544z"},"children":[{"name":"path","attribs":{"d":"M32,49c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,49,32,49z M32,34\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764C11.283,14.34,21.132,10,32,10\r\n\t\t\t\ts20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544l3.739,4.819C17.954,28.242,24.59,25,32,25\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19S15.279,22.666,9.637,28.544z"},"children":[]}]}]}]}]}]}]}]};exports.wifi_3=wifi_3;var windows={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"windows_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"windows"},"children":[{"name":"g","attribs":{"id":"windows"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.631V0.015L29.353,5.029z M0.015,54.721\r\n\t\t\t\tl25.809,3.738V33.766H0.015V54.721z M29.353,58.971l34.631,5.014V33.766H29.353V58.971z"},"children":[{"name":"path","attribs":{"d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.631V0.015L29.353,5.029z M0.015,54.721\r\n\t\t\t\tl25.809,3.738V33.766H0.015V54.721z M29.353,58.971l34.631,5.014V33.766H29.353V58.971z"},"children":[]}]}]}]}]}]}]}]};exports.windows=windows;var youtube={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"youtube_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"youtube"},"children":[{"name":"g","attribs":{"id":"youtube"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944v26.474c0,5.316,6.101,8.559,11.534,8.559\r\n\t\t\t\tH54.15c5.432,0,9.834-3.242,9.834-8.559V18.976C63.984,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044\r\n\t\t\t\tl14.03,10.168L27.856,42.205z"},"children":[{"name":"path","attribs":{"d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944v26.474c0,5.316,6.101,8.559,11.534,8.559\r\n\t\t\t\tH54.15c5.432,0,9.834-3.242,9.834-8.559V18.976C63.984,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044\r\n\t\t\t\tl14.03,10.168L27.856,42.205z"},"children":[]}]}]}]}]}]}]}]};exports.youtube=youtube;var zoom_in={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ZOOM_IN"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10c1.657,0,3-1.343,3-3\r\n\t\t\tC48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.008,0H61\r\n\t\t\tc1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58H32\r\n\t\t\tv0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6S58,17.641,58,32.001L58,32.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10c1.657,0,3-1.343,3-3\r\n\t\t\tC48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.008,0H61\r\n\t\t\tc1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58H32\r\n\t\t\tv0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6S58,17.641,58,32.001L58,32.001z"},"children":[]}]}]}]}]}]};exports.zoom_in=zoom_in;var zoom_out={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"ZOOM_OUT"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35v0h-6v0H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h5v0h19v0h2\r\n\t\t\tc1.657,0,3-1.343,3-3C48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.007,0\r\n\t\t\tH61c1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58\r\n\t\t\tH32v0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6C46.36,6,58,17.641,58,32.001L58,32.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35v0h-6v0H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h5v0h19v0h2\r\n\t\t\tc1.657,0,3-1.343,3-3C48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.007,0\r\n\t\t\tH61c1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58\r\n\t\t\tH32v0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6C46.36,6,58,17.641,58,32.001L58,32.001z"},"children":[]}]}]}]}]}]};exports.zoom_out=zoom_out;
\ No newline at end of file
diff --git a/dist/ikons/instagram.js b/dist/ikons/instagram.js
new file mode 100644
index 000000000..e51e49ec4
--- /dev/null
+++ b/dist/ikons/instagram.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.instagram = void 0;
+var instagram = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "instagram_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "instagram"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "instagram"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8C64,3.582,60.418,0,56,0z M19.673,30.673\r\n\t\t\t\tc0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92c0.029-0.136,0.069-0.267,0.103-0.401\r\n\t\t\t\tc0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389c0.1-0.272,0.204-0.541,0.322-0.804\r\n\t\t\t\tc0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2c4.988,0,9.277,2.953,11.246,7.2h0.011\r\n\t\t\t\tc0.021,0.045,0.035,0.092,0.056,0.137c0.117,0.263,0.222,0.532,0.321,0.804c0.048,0.13,0.099,0.257,0.142,0.389\r\n\t\t\t\tc0.092,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.104,0.401c0.064,0.302,0.109,0.61,0.152,0.92\r\n\t\t\t\tc0.018,0.125,0.043,0.247,0.058,0.374C44.373,31.109,44.4,31.551,44.4,32c0,6.85-5.553,12.4-12.4,12.4\r\n\t\t\t\tc-6.848,0-12.4-5.553-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6c0,1.768-1.433,3.2-3.2,3.2H10.4\r\n\t\t\t\tc-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32c0,10.825,8.775,19.6,19.6,19.6S51.6,42.825,51.6,32\r\n\t\t\t\tc0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8c0,1.767-1.433,3.2-3.2,3.2H47.2c-1.767,0-3.2-1.433-3.2-3.2v-6.4\r\n\t\t\t\tc0-1.767,1.434-3.2,3.2-3.2H53.6c1.768,0,3.2,1.432,3.2,3.2V16.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8C64,3.582,60.418,0,56,0z M19.673,30.673\r\n\t\t\t\tc0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92c0.029-0.136,0.069-0.267,0.103-0.401\r\n\t\t\t\tc0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389c0.1-0.272,0.204-0.541,0.322-0.804\r\n\t\t\t\tc0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2c4.988,0,9.277,2.953,11.246,7.2h0.011\r\n\t\t\t\tc0.021,0.045,0.035,0.092,0.056,0.137c0.117,0.263,0.222,0.532,0.321,0.804c0.048,0.13,0.099,0.257,0.142,0.389\r\n\t\t\t\tc0.092,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.104,0.401c0.064,0.302,0.109,0.61,0.152,0.92\r\n\t\t\t\tc0.018,0.125,0.043,0.247,0.058,0.374C44.373,31.109,44.4,31.551,44.4,32c0,6.85-5.553,12.4-12.4,12.4\r\n\t\t\t\tc-6.848,0-12.4-5.553-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6c0,1.768-1.433,3.2-3.2,3.2H10.4\r\n\t\t\t\tc-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32c0,10.825,8.775,19.6,19.6,19.6S51.6,42.825,51.6,32\r\n\t\t\t\tc0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8c0,1.767-1.433,3.2-3.2,3.2H47.2c-1.767,0-3.2-1.433-3.2-3.2v-6.4\r\n\t\t\t\tc0-1.767,1.434-3.2,3.2-3.2H53.6c1.768,0,3.2,1.432,3.2,3.2V16.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.instagram = instagram;
\ No newline at end of file
diff --git a/dist/ikons/ipad.js b/dist/ikons/ipad.js
new file mode 100644
index 000000000..658f11f63
--- /dev/null
+++ b/dist/ikons/ipad.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ipad = void 0;
+var ipad = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IPAD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IPAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IPAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M32,59\r\n\t\t\t\tc-1.105,0-2-0.896-2-2s0.895-2,2-2c1.105,0,2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M32,59\r\n\t\t\t\tc-1.105,0-2-0.896-2-2s0.895-2,2-2c1.105,0,2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ipad = ipad;
\ No newline at end of file
diff --git a/dist/ikons/iphone.js b/dist/ikons/iphone.js
new file mode 100644
index 000000000..b5fff6d50
--- /dev/null
+++ b/dist/ikons/iphone.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iphone = void 0;
+var iphone = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IPHONE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IPHONE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "IPHONE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3V6C49,4.343,47.657,3,46,3z M32,58\r\n\t\t\t\tc-1.105,0-2-0.895-2-2s0.895-2,2-2c1.105,0,2,0.895,2,2S33.105,58,32,58z M46,51H18V9h28V51z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3V6C49,4.343,47.657,3,46,3z M32,58\r\n\t\t\t\tc-1.105,0-2-0.895-2-2s0.895-2,2-2c1.105,0,2,0.895,2,2S33.105,58,32,58z M46,51H18V9h28V51z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iphone = iphone;
\ No newline at end of file
diff --git a/dist/ikons/layers.js b/dist/ikons/layers.js
new file mode 100644
index 000000000..b121d16a0
--- /dev/null
+++ b/dist/ikons/layers.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.layers = void 0;
+var layers = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LAYERS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,42c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.005\r\n\t\t\tc-0.004,0.002-0.009,0.003-0.013,0.005L32,53.753L4.174,42.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001\r\n\t\t\tC3.793,42.083,3.406,42,3,42c-1.657,0-3,1.343-3,3c0,1.25,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.004,0.013,0.005l0.013,0.005l0.001-0.001C31.207,59.917,31.594,60,32,60c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,47.32,64,46.25,64,45\r\n\t\t\tC64,43.343,62.657,42,61,42z M1.854,21.771l0,0.001l28.974,11.989c0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001\r\n\t\t\tC31.207,33.917,31.594,34,32,34c0.406,0,0.793-0.083,1.147-0.229l0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005\r\n\t\t\tl28.973-11.989l0-0.001C63.234,21.32,64,20.25,64,19c0-1.25-0.766-2.32-1.853-2.771l0-0.001L33.174,4.239\r\n\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001C32.793,4.083,32.406,4,32,4c-0.406,0-0.793,0.083-1.146,0.229\r\n\t\t\tl-0.001-0.001L30.84,4.233c-0.004,0.002-0.009,0.004-0.013,0.005L1.853,16.228l0,0.001C0.766,16.68,0,17.75,0,19\r\n\t\t\tC0,20.25,0.766,21.32,1.854,21.771z M61,29c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.006\r\n\t\t\tc-0.004,0.002-0.009,0.004-0.013,0.005L32,40.753L4.174,29.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.006l-0.001,0.001\r\n\t\t\tC3.793,29.083,3.406,29,3,29c-1.657,0-3,1.343-3,3c0,1.251,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001C31.207,46.917,31.594,47,32,47c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,34.32,64,33.251,64,32\r\n\t\t\tC64,30.343,62.657,29,61,29z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,42c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.005\r\n\t\t\tc-0.004,0.002-0.009,0.003-0.013,0.005L32,53.753L4.174,42.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001\r\n\t\t\tC3.793,42.083,3.406,42,3,42c-1.657,0-3,1.343-3,3c0,1.25,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.004,0.013,0.005l0.013,0.005l0.001-0.001C31.207,59.917,31.594,60,32,60c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,47.32,64,46.25,64,45\r\n\t\t\tC64,43.343,62.657,42,61,42z M1.854,21.771l0,0.001l28.974,11.989c0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001\r\n\t\t\tC31.207,33.917,31.594,34,32,34c0.406,0,0.793-0.083,1.147-0.229l0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005\r\n\t\t\tl28.973-11.989l0-0.001C63.234,21.32,64,20.25,64,19c0-1.25-0.766-2.32-1.853-2.771l0-0.001L33.174,4.239\r\n\t\t\tc-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.005l-0.001,0.001C32.793,4.083,32.406,4,32,4c-0.406,0-0.793,0.083-1.146,0.229\r\n\t\t\tl-0.001-0.001L30.84,4.233c-0.004,0.002-0.009,0.004-0.013,0.005L1.853,16.228l0,0.001C0.766,16.68,0,17.75,0,19\r\n\t\t\tC0,20.25,0.766,21.32,1.854,21.771z M61,29c-0.406,0-0.793,0.083-1.147,0.229l0-0.001l-0.013,0.006\r\n\t\t\tc-0.004,0.002-0.009,0.004-0.013,0.005L32,40.753L4.174,29.239c-0.004-0.002-0.009-0.004-0.013-0.005l-0.013-0.006l-0.001,0.001\r\n\t\t\tC3.793,29.083,3.406,29,3,29c-1.657,0-3,1.343-3,3c0,1.251,0.766,2.32,1.853,2.771l0,0.001l28.974,11.989\r\n\t\t\tc0.004,0.002,0.009,0.003,0.013,0.005l0.013,0.005l0.001-0.001C31.207,46.917,31.594,47,32,47c0.406,0,0.793-0.083,1.147-0.229\r\n\t\t\tl0.001,0.001l0.013-0.005c0.004-0.002,0.009-0.004,0.013-0.005l28.973-11.989l0-0.001C63.234,34.32,64,33.251,64,32\r\n\t\t\tC64,30.343,62.657,29,61,29z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.layers = layers;
\ No newline at end of file
diff --git a/dist/ikons/line_graph.js b/dist/ikons/line_graph.js
new file mode 100644
index 000000000..53f302dd3
--- /dev/null
+++ b/dist/ikons/line_graph.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.line_graph = void 0;
+var line_graph = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LINE_GRAPH_2_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LINE_GRAPH_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LINE_GRAPH_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0,0.003,0.002,0.005,0.003l0.011,0.007l0.001-0.001\r\n\t\t\t\tC33.812,41.812,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979c0,0,0.001,0,0.001-0.001l0.03-0.021\r\n\t\t\t\tl-0.002-0.003C63.486,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3c-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84\r\n\t\t\t\tl-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007l-0.001,0.001C21.187,26.187,20.616,26,20,26\r\n\t\t\t\tc-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,53,61,53z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0,0.003,0.002,0.005,0.003l0.011,0.007l0.001-0.001\r\n\t\t\t\tC33.812,41.812,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979c0,0,0.001,0,0.001-0.001l0.03-0.021\r\n\t\t\t\tl-0.002-0.003C63.486,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3c-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84\r\n\t\t\t\tl-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007l-0.001,0.001C21.187,26.187,20.616,26,20,26\r\n\t\t\t\tc-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3S0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,53,61,53z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.line_graph = line_graph;
\ No newline at end of file
diff --git a/dist/ikons/line_graph_square.js b/dist/ikons/line_graph_square.js
new file mode 100644
index 000000000..91c4c0cde
--- /dev/null
+++ b/dist/ikons/line_graph_square.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.line_graph_square = void 0;
+var line_graph_square = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LINE_GRAPH_3_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LINE_GRAPH"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LINE_GRAPH"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.312,8.875c0.488,0.344,1.082,0.545,1.724,0.545\r\n\t\t\t\tc0.656,0,1.263-0.211,1.757-0.568h0.001l17-12l-0.001-0.001C54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.662,0-1.273,0.215-1.77,0.578L34.953,36.373l-13.261-8.841l-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514\r\n\t\t\t\tc-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002C9.573,33.006,9,33.953,9,35.035\r\n\t\t\t\tC9,36.691,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.312,8.875c0.488,0.344,1.082,0.545,1.724,0.545\r\n\t\t\t\tc0.656,0,1.263-0.211,1.757-0.568h0.001l17-12l-0.001-0.001C54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.662,0-1.273,0.215-1.77,0.578L34.953,36.373l-13.261-8.841l-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514\r\n\t\t\t\tc-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002C9.573,33.006,9,33.953,9,35.035\r\n\t\t\t\tC9,36.691,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.line_graph_square = line_graph_square;
\ No newline at end of file
diff --git a/dist/ikons/link.js b/dist/ikons/link.js
new file mode 100644
index 000000000..11094a4b7
--- /dev/null
+++ b/dist/ikons/link.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.link = void 0;
+var link = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LINK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LINK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LINK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26.461,45.766c-0.056,0.062-0.096,0.131-0.155,0.19l-8.349,8.37c-2.306,2.311-6.043,2.311-8.349,0\r\n\t\t\t\tc-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.029,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05L5.433,41.77c-4.611,4.623-4.611,12.119,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.369c3.091-3.101,4.1-7.49,3.044-11.44L26.461,45.766z M58.48,5.401c-4.61-4.623-12.086-4.623-16.696,0l-8.349,8.37\r\n\t\t\t\tc-3.083,3.09-4.094,7.462-3.055,11.403l7.221-7.221l0.006,0.006c0.002-0.001,0.002-0.002,0.002-0.002l8.35-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.35,0c2.305,2.311,2.305,6.059,0,8.37l-8.35,8.37c-0.098,0.098-0.211,0.167-0.312,0.256l-6.971,6.97\r\n\t\t\t\tc3.953,1.078,8.354,0.071,11.457-3.041l8.35-8.37C63.091,17.518,63.091,10.023,58.48,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.645,0.374-2.191,0.964L19.964,39.809C19.375,40.355,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.01l20-20l-0.01-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26.461,45.766c-0.056,0.062-0.096,0.131-0.155,0.19l-8.349,8.37c-2.306,2.311-6.043,2.311-8.349,0\r\n\t\t\t\tc-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.029,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05L5.433,41.77c-4.611,4.623-4.611,12.119,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.369c3.091-3.101,4.1-7.49,3.044-11.44L26.461,45.766z M58.48,5.401c-4.61-4.623-12.086-4.623-16.696,0l-8.349,8.37\r\n\t\t\t\tc-3.083,3.09-4.094,7.462-3.055,11.403l7.221-7.221l0.006,0.006c0.002-0.001,0.002-0.002,0.002-0.002l8.35-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.35,0c2.305,2.311,2.305,6.059,0,8.37l-8.35,8.37c-0.098,0.098-0.211,0.167-0.312,0.256l-6.971,6.97\r\n\t\t\t\tc3.953,1.078,8.354,0.071,11.457-3.041l8.35-8.37C63.091,17.518,63.091,10.023,58.48,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.645,0.374-2.191,0.964L19.964,39.809C19.375,40.355,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.01l20-20l-0.01-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.link = link;
\ No newline at end of file
diff --git a/dist/ikons/linkedin.js b/dist/ikons/linkedin.js
new file mode 100644
index 000000000..89a26ab09
--- /dev/null
+++ b/dist/ikons/linkedin.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.linkedin = void 0;
+var linkedin = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "linkedin_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "linkedin"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "linkedin"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.798,62.986h14.315V22.368H0.798V62.986z M48.434,21.087c-5.925,0-9.192,1.972-12.953,6.749v-5.469H21.189v40.619\r\n\t\t\t\tH35.48V40.914c0-4.658,2.24-9.214,7.596-9.214s6.673,4.555,6.673,9.103v22.184H64v-23.09C64,23.854,54.361,21.087,48.434,21.087z\r\n\t\t\t\t M7.982,2.013C3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.798,62.986h14.315V22.368H0.798V62.986z M48.434,21.087c-5.925,0-9.192,1.972-12.953,6.749v-5.469H21.189v40.619\r\n\t\t\t\tH35.48V40.914c0-4.658,2.24-9.214,7.596-9.214s6.673,4.555,6.673,9.103v22.184H64v-23.09C64,23.854,54.361,21.087,48.434,21.087z\r\n\t\t\t\t M7.982,2.013C3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.linkedin = linkedin;
\ No newline at end of file
diff --git a/dist/ikons/list.js b/dist/ikons/list.js
new file mode 100644
index 000000000..c955d59db
--- /dev/null
+++ b/dist/ikons/list.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.list = void 0;
+var list = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LIST_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LIST"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LIST"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,19h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,29,61,29z M61,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,45,61,45z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,19h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,29,61,29z M61,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,45,61,45z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.list = list;
\ No newline at end of file
diff --git a/dist/ikons/list_2.js b/dist/ikons/list_2.js
new file mode 100644
index 000000000..c3ba7daf4
--- /dev/null
+++ b/dist/ikons/list_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.list_2 = void 0;
+var list_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LIST_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LIST_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LIST_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3S10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3S62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3s-1.343-3-3-3H21.001H21c-1.657,0-3,1.343-3,3S19.343,19,21,19z M9,13L9,13H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h6c1.657,0,3-1.343,3-3S10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h40\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,45,61,45z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3S10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3S62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3s-1.343-3-3-3H21.001H21c-1.657,0-3,1.343-3,3S19.343,19,21,19z M9,13L9,13H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h6c1.657,0,3-1.343,3-3S10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h40\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,45,61,45z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.list_2 = list_2;
\ No newline at end of file
diff --git a/dist/ikons/loading.js b/dist/ikons/loading.js
new file mode 100644
index 000000000..1530780fa
--- /dev/null
+++ b/dist/ikons/loading.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loading = void 0;
+var loading = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOADING"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M17,44c-0.828,0-1.578,0.336-2.121,0.879l-6,6C8.336,51.422,8,52.172,8,53\r\n\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l6-6C19.664,48.578,20,47.828,20,47C20,45.343,18.657,44,17,44z M14,32\r\n\t\t\tc0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C12.657,35,14,33.657,14,32z M13.121,8.879\r\n\t\t\tC12.578,8.336,11.828,8,11,8c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l6,6C15.422,19.664,16.172,20,17,20\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L13.121,8.879z M47,20c0.828,0,1.578-0.336,2.121-0.879l6-6\r\n\t\t\tC55.664,12.578,56,11.828,56,11c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-6,6C44.336,15.422,44,16.172,44,17\r\n\t\t\tC44,18.657,45.343,20,47,20z M49.121,44.879C48.579,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\tl6,6C51.422,55.664,52.172,56,53,56c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M32,50\r\n\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C35,51.343,33.657,50,32,50z M61,29h-8c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z M32,0c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\ts3-1.343,3-3V3C35,1.343,33.657,0,32,0z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M17,44c-0.828,0-1.578,0.336-2.121,0.879l-6,6C8.336,51.422,8,52.172,8,53\r\n\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l6-6C19.664,48.578,20,47.828,20,47C20,45.343,18.657,44,17,44z M14,32\r\n\t\t\tc0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C12.657,35,14,33.657,14,32z M13.121,8.879\r\n\t\t\tC12.578,8.336,11.828,8,11,8c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l6,6C15.422,19.664,16.172,20,17,20\r\n\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L13.121,8.879z M47,20c0.828,0,1.578-0.336,2.121-0.879l6-6\r\n\t\t\tC55.664,12.578,56,11.828,56,11c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-6,6C44.336,15.422,44,16.172,44,17\r\n\t\t\tC44,18.657,45.343,20,47,20z M49.121,44.879C48.579,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\tl6,6C51.422,55.664,52.172,56,53,56c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M32,50\r\n\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C35,51.343,33.657,50,32,50z M61,29h-8c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z M32,0c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\ts3-1.343,3-3V3C35,1.343,33.657,0,32,0z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.loading = loading;
\ No newline at end of file
diff --git a/dist/ikons/location.js b/dist/ikons/location.js
new file mode 100644
index 000000000..c5f417c50
--- /dev/null
+++ b/dist/ikons/location.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.location = void 0;
+var location = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOCATION"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M64,3c0-1.657-1.343-3-3-3c-0.375,0-0.73,0.077-1.061,0.202l-0.003-0.007l-58,22\r\n\t\t\tl0.003,0.008C0.808,22.632,0,23.718,0,25c0,1.414,0.981,2.592,2.298,2.909l-0.002,0.007l27.218,6.57l6.57,27.218l0.007-0.002\r\n\t\t\tC36.409,63.019,37.586,64,39,64c1.282,0,2.368-0.808,2.797-1.939l0.008,0.003l22-58l-0.019-0.007C63.913,3.726,64,3.376,64,3z\r\n\t\t\t M39.638,50.859l-4.722-19.562l-0.007,0.002c-0.263-1.09-1.119-1.941-2.207-2.205l0.002-0.01l-19.562-4.722L55.831,8.169\r\n\t\t\tL39.638,50.859z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M64,3c0-1.657-1.343-3-3-3c-0.375,0-0.73,0.077-1.061,0.202l-0.003-0.007l-58,22\r\n\t\t\tl0.003,0.008C0.808,22.632,0,23.718,0,25c0,1.414,0.981,2.592,2.298,2.909l-0.002,0.007l27.218,6.57l6.57,27.218l0.007-0.002\r\n\t\t\tC36.409,63.019,37.586,64,39,64c1.282,0,2.368-0.808,2.797-1.939l0.008,0.003l22-58l-0.019-0.007C63.913,3.726,64,3.376,64,3z\r\n\t\t\t M39.638,50.859l-4.722-19.562l-0.007,0.002c-0.263-1.09-1.119-1.941-2.207-2.205l0.002-0.01l-19.562-4.722L55.831,8.169\r\n\t\t\tL39.638,50.859z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.location = location;
\ No newline at end of file
diff --git a/dist/ikons/lock.js b/dist/ikons/lock.js
new file mode 100644
index 000000000..ac6d6dd70
--- /dev/null
+++ b/dist/ikons/lock.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lock = void 0;
+var lock = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOCK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOCK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOCK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46\r\n\t\t\t\tc1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832\r\n\t\t\t\tc-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z M44,32H20V18\r\n\t\t\t\tc0-6.627,5.373-12,12-12s12,5.373,12,12V32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46\r\n\t\t\t\tc1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832\r\n\t\t\t\tc-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z M44,32H20V18\r\n\t\t\t\tc0-6.627,5.373-12,12-12s12,5.373,12,12V32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.lock = lock;
\ No newline at end of file
diff --git a/dist/ikons/login.js b/dist/ikons/login.js
new file mode 100644
index 000000000..df3d21bdb
--- /dev/null
+++ b/dist/ikons/login.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.login = void 0;
+var login = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOGIN_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOGIN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOGIN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M39.007,34.23C39.617,33.682,40,32.885,40,32s-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.189,3.77\r\n\t\t\t\tl0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z\r\n\t\t\t\t M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.342-3,3\r\n\t\t\t\tc0,1.656,1.343,3,3,3h15c1.657,0,3-1.344,3-3V31.937c0-0.001,0-0.002,0-0.003C56,31.934,56,31.933,56,31.932z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M39.007,34.23C39.617,33.682,40,32.885,40,32s-0.384-1.681-0.993-2.23l0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11c-1.657,0-3,1.343-3,3s1.343,3,3,3h18.182l-4.189,3.77\r\n\t\t\t\tl0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z\r\n\t\t\t\t M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.342-3,3\r\n\t\t\t\tc0,1.656,1.343,3,3,3h15c1.657,0,3-1.344,3-3V31.937c0-0.001,0-0.002,0-0.003C56,31.934,56,31.933,56,31.932z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.login = login;
\ No newline at end of file
diff --git a/dist/ikons/logout.js b/dist/ikons/logout.js
new file mode 100644
index 000000000..43b04e458
--- /dev/null
+++ b/dist/ikons/logout.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.logout = void 0;
+var logout = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOGOUT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOGOUT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "LOGOUT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C44.475,20.292,43.771,20,43,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h18.182l-4.188,3.77l0,0\r\n\t\t\t\tC40.384,39.32,40,40.115,40,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.682,56,32.885,56,32z\r\n\t\t\t\t M26,52H14V12h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tS27.657,52,26,52z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0C44.475,20.292,43.771,20,43,20c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h18.182l-4.188,3.77l0,0\r\n\t\t\t\tC40.384,39.32,40,40.115,40,41c0,1.657,1.343,3,3,3c0.771,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.682,56,32.885,56,32z\r\n\t\t\t\t M26,52H14V12h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tS27.657,52,26,52z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.logout = logout;
\ No newline at end of file
diff --git a/dist/ikons/macbook.js b/dist/ikons/macbook.js
new file mode 100644
index 000000000..12c3f5a99
--- /dev/null
+++ b/dist/ikons/macbook.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.macbook = void 0;
+var macbook = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MACBOOK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MACBOOK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MACBOOK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49\r\n\t\t\t\tH25v-2h14V49z M54,42H10V16h44V42z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49\r\n\t\t\t\tH25v-2h14V49z M54,42H10V16h44V42z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.macbook = macbook;
\ No newline at end of file
diff --git a/dist/ikons/magnifying_glass.js b/dist/ikons/magnifying_glass.js
new file mode 100644
index 000000000..9c7fc6ff0
--- /dev/null
+++ b/dist/ikons/magnifying_glass.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.magnifying_glass = void 0;
+var magnifying_glass = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAGNIFYING_GLASS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAGNIFYING_GLASS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAGNIFYING_GLASS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.584,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.584,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.magnifying_glass = magnifying_glass;
\ No newline at end of file
diff --git a/dist/ikons/magnifying_glass_add.js b/dist/ikons/magnifying_glass_add.js
new file mode 100644
index 000000000..cb347404f
--- /dev/null
+++ b/dist/ikons/magnifying_glass_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.magnifying_glass_add = void 0;
+var magnifying_glass_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAGNIFYING_GLASS__x2F__ADD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAGNIFYING_GLASS__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAGNIFYING_GLASS__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3s1.343,3,3,3h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3s-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3s1.343,3,3,3h7v7\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.magnifying_glass_add = magnifying_glass_add;
\ No newline at end of file
diff --git a/dist/ikons/magnifying_glass_remove.js b/dist/ikons/magnifying_glass_remove.js
new file mode 100644
index 000000000..f89a65bbc
--- /dev/null
+++ b/dist/ikons/magnifying_glass_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.magnifying_glass_remove = void 0;
+var magnifying_glass_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAGNIFYING_GLASS__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAGNIFYING_GLASS__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAGNIFYING_GLASS__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M62.243,53.758L44.658,36.173C46.768,32.602,48,28.449,48,24C48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24\r\n\t\t\t\tc4.449,0,8.602-1.232,12.173-3.342l17.585,17.584C54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6\r\n\t\t\t\tC64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.magnifying_glass_remove = magnifying_glass_remove;
\ No newline at end of file
diff --git a/dist/ikons/mail.js b/dist/ikons/mail.js
new file mode 100644
index 000000000..55dfafbcf
--- /dev/null
+++ b/dist/ikons/mail.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mail = void 0;
+var mail = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAIL_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAIL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAIL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.002,10.78C62.471,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78L32,35L63.002,10.78z M0.894,10.866\r\n\t\t\t\tC0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z M32,41l-8.136-7.881L0.943,53.175\r\n\t\t\t\tC1.481,53.684,2.202,54,3,54h58c0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,41z M63.105,10.866L43.622,29.741\r\n\t\t\t\tl19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.105,10.866z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.002,10.78C62.471,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78L32,35L63.002,10.78z M0.894,10.866\r\n\t\t\t\tC0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z M32,41l-8.136-7.881L0.943,53.175\r\n\t\t\t\tC1.481,53.684,2.202,54,3,54h58c0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,41z M63.105,10.866L43.622,29.741\r\n\t\t\t\tl19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.105,10.866z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.mail = mail;
\ No newline at end of file
diff --git a/dist/ikons/mail_incoming.js b/dist/ikons/mail_incoming.js
new file mode 100644
index 000000000..8274d1030
--- /dev/null
+++ b/dist/ikons/mail_incoming.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mail_incoming = void 0;
+var mail_incoming = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAIL__x2F__INCOMING_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAIL__x2F__INCOMING"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAIL__x2F__INCOMING"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879l7-7C41.664,21.579,42,20.829,42,20\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L29.879,29.122z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H44.168C44.684,17.886,45,18.902,45,20c0,1.657-0.672,3.157-1.757,4.243l-7,7\r\n\t\t\t\tC35.157,32.328,33.657,33,32,33s-3.157-0.672-4.243-1.757l-7-7C19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.105,17.866z M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58c0.798,0,1.52-0.316,2.057-0.825\r\n\t\t\t\tl-22.92-20.056L32,48z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879l7-7C41.664,21.579,42,20.829,42,20\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L29.879,29.122z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H44.168C44.684,17.886,45,18.902,45,20c0,1.657-0.672,3.157-1.757,4.243l-7,7\r\n\t\t\t\tC35.157,32.328,33.657,33,32,33s-3.157-0.672-4.243-1.757l-7-7C19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.105,17.866z M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58c0.798,0,1.52-0.316,2.057-0.825\r\n\t\t\t\tl-22.92-20.056L32,48z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.mail_incoming = mail_incoming;
\ No newline at end of file
diff --git a/dist/ikons/mail_outgoing.js b/dist/ikons/mail_outgoing.js
new file mode 100644
index 000000000..ce91e148d
--- /dev/null
+++ b/dist/ikons/mail_outgoing.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mail_outgoing = void 0;
+var mail_outgoing = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAIL__x2F__OUTGOING_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAIL__x2F__OUTGOING"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAIL__x2F__OUTGOING"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M25,16\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243l1.879,1.879\r\n\t\t\t\tC37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,3.336,32.828,3,32,3\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.674,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3c-0.773,0-1.47,0.3-2.002,0.78L32,42\r\n\t\t\t\tL63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20\r\n\t\t\t\tC64,19.165,63.657,18.41,63.105,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,48z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M25,16\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243l1.879,1.879\r\n\t\t\t\tC37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7C33.578,3.336,32.828,3,32,3\r\n\t\t\t\ts-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z M63.002,17.78\r\n\t\t\t\tC62.471,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.674,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3c-0.773,0-1.47,0.3-2.002,0.78L32,42\r\n\t\t\t\tL63.002,17.78z M63.105,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20\r\n\t\t\t\tC64,19.165,63.657,18.41,63.105,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.684,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.52-0.316,2.057-0.825l-22.92-20.056L32,48z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.mail_outgoing = mail_outgoing;
\ No newline at end of file
diff --git a/dist/ikons/map.js b/dist/ikons/map.js
new file mode 100644
index 000000000..5efeed100
--- /dev/null
+++ b/dist/ikons/map.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map = void 0;
+var map = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M60.866,15.668L60.866,15.668l-0.024-0.02c-0.072-0.058-0.145-0.117-0.224-0.168L44.867,3.667l-0.001,0.001\r\n\t\t\t\tC44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667L6.866,3.668\r\n\t\t\t\tC6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C19.692,60.762,20.315,61,21,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.389l0.003,0.007l20.272-11.058l14.543,10.905l0.012-0.016C57.766,60.795,58.357,61,59,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017l10,7.5V51.986z M40,44.212l-16,8.728\r\n\t\t\t\tV19.79l16-8.727V44.212z M56,52.018l-10-7.5v-32.5l10,7.5V52.018z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M60.866,15.668L60.866,15.668l-0.024-0.02c-0.072-0.058-0.145-0.117-0.224-0.168L44.867,3.667l-0.001,0.001\r\n\t\t\t\tC44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667L6.866,3.668\r\n\t\t\t\tC6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C19.692,60.762,20.315,61,21,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.389l0.003,0.007l20.272-11.058l14.543,10.905l0.012-0.016C57.766,60.795,58.357,61,59,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017l10,7.5V51.986z M40,44.212l-16,8.728\r\n\t\t\t\tV19.79l16-8.727V44.212z M56,52.018l-10-7.5v-32.5l10,7.5V52.018z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.map = map;
\ No newline at end of file
diff --git a/dist/ikons/map_add.js b/dist/ikons/map_add.js
new file mode 100644
index 000000000..09e8152e7
--- /dev/null
+++ b/dist/ikons/map_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map_add = void 0;
+var map_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__ADD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.072-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3\r\n\t\t\t\ts-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3c0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3\r\n\t\t\t\tS57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.072-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.map_add = map_add;
\ No newline at end of file
diff --git a/dist/ikons/map_delete.js b/dist/ikons/map_delete.js
new file mode 100644
index 000000000..1cfbc017f
--- /dev/null
+++ b/dist/ikons/map_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map_delete = void 0;
+var map_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.529,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z\r\n\t\t\t\t M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56.121,49.879C56.664,50.422,57,51.172,57,52\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879C47.578,54.664,46.828,55,46,55\r\n\t\t\t\tc-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879C43.336,45.578,43,44.829,43,44\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879C52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017l10,7.5v13.292\r\n\t\t\t\tc2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.529,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z\r\n\t\t\t\t M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56.121,49.879C56.664,50.422,57,51.172,57,52\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879C47.578,54.664,46.828,55,46,55\r\n\t\t\t\tc-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879C43.336,45.578,43,44.829,43,44\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879C52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.map_delete = map_delete;
\ No newline at end of file
diff --git a/dist/ikons/map_ok.js b/dist/ikons/map_ok.js
new file mode 100644
index 000000000..7b30147c2
--- /dev/null
+++ b/dist/ikons/map_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map_ok = void 0;
+var map_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M58.121,47.121l-8,8\r\n\t\t\t\tC49.578,55.664,48.828,56,48,56s-1.578-0.336-2.121-0.879l-4-4C41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3\r\n\t\t\t\tc0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879C54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.004,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M58.121,47.121l-8,8\r\n\t\t\t\tC49.578,55.664,48.828,56,48,56s-1.578-0.336-2.121-0.879l-4-4C41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3\r\n\t\t\t\tc0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879C54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.004,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.map_ok = map_ok;
\ No newline at end of file
diff --git a/dist/ikons/map_remove.js b/dist/ikons/map_remove.js
new file mode 100644
index 000000000..07c7b2b11
--- /dev/null
+++ b/dist/ikons/map_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map_remove = void 0;
+var map_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MAP__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3s1.343-3,3-3\r\n\t\t\t\th12c1.657,0,3,1.343,3,3S57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13s13-5.82,13-13S57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3s1.343-3,3-3\r\n\t\t\t\th12c1.657,0,3,1.343,3,3S57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727V36.4c1.693-1.605,3.732-2.846,6-3.592V12.017\r\n\t\t\t\tl10,7.5v13.292c2.268,0.746,4.307,1.986,6,3.592V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.057,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.389l0.003,0.007\r\n\t\t\t\tl13.457-7.341C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.map_remove = map_remove;
\ No newline at end of file
diff --git a/dist/ikons/microphone.js b/dist/ikons/microphone.js
new file mode 100644
index 000000000..5110850ff
--- /dev/null
+++ b/dist/ikons/microphone.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.microphone = void 0;
+var microphone = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MICROPHONE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MICROPHONE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MICROPHONE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12S20,5.373,20,12v16C20,34.628,25.373,40,32,40z M54,29.023\r\n\t\t\t\tc0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0\r\n\t\t\t\tc-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.295,19,21.752V58H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225C45.727,49.318,54,40.148,54,29.023z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12S20,5.373,20,12v16C20,34.628,25.373,40,32,40z M54,29.023\r\n\t\t\t\tc0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0\r\n\t\t\t\tc-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.295,19,21.752V58H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225C45.727,49.318,54,40.148,54,29.023z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.microphone = microphone;
\ No newline at end of file
diff --git a/dist/ikons/microphone_off.js b/dist/ikons/microphone_off.js
new file mode 100644
index 000000000..45fe97839
--- /dev/null
+++ b/dist/ikons/microphone_off.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.microphone_off = void 0;
+var microphone_off = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MICROPHONE__x2F__OFF_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MICROPHONE__x2F__OFF"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MICROPHONE__x2F__OFF"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.631,39.404l5.051-3.301C16.617,33.961,16.002,31.555,16,29l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023C10,32.785,10.964,36.312,12.631,39.404z M44,18.895V12\r\n\t\t\t\tc0-6.627-5.373-12-12-12S20,5.373,20,12v16c0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.246v-0.001l-0.018,0.011l0,0L5.079,47.945l0,0C4.67,48.214,4.4,48.675,4.4,49.2\r\n\t\t\t\tc0,0.829,0.672,1.5,1.5,1.5c0.303,0,0.585-0.091,0.821-0.246v0.001l0.017-0.012l0,0L58.82,16.355v-0.001\r\n\t\t\t\tC59.23,16.087,59.5,15.625,59.5,15.1z M43.859,29.739l-15.025,9.825C29.844,39.841,30.902,40,32,40\r\n\t\t\t\tC38.035,40,43.016,35.54,43.859,29.739z M51,26c-1.657,0-3,1.343-3,3l0,0c-0.004,8.092-6.018,14.759-13.816,15.829\r\n\t\t\t\tc-0.24,0.034-0.48,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078v0.002c-0.04,0-0.078,0.005-0.118,0.005\r\n\t\t\t\tc-2.959,0-5.72-0.816-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.44V58H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225c10.727-1.457,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015\r\n\t\t\t\tC53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.631,39.404l5.051-3.301C16.617,33.961,16.002,31.555,16,29l0,0c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tc0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023C10,32.785,10.964,36.312,12.631,39.404z M44,18.895V12\r\n\t\t\t\tc0-6.627-5.373-12-12-12S20,5.373,20,12v16c0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.246v-0.001l-0.018,0.011l0,0L5.079,47.945l0,0C4.67,48.214,4.4,48.675,4.4,49.2\r\n\t\t\t\tc0,0.829,0.672,1.5,1.5,1.5c0.303,0,0.585-0.091,0.821-0.246v0.001l0.017-0.012l0,0L58.82,16.355v-0.001\r\n\t\t\t\tC59.23,16.087,59.5,15.625,59.5,15.1z M43.859,29.739l-15.025,9.825C29.844,39.841,30.902,40,32,40\r\n\t\t\t\tC38.035,40,43.016,35.54,43.859,29.739z M51,26c-1.657,0-3,1.343-3,3l0,0c-0.004,8.092-6.018,14.759-13.816,15.829\r\n\t\t\t\tc-0.24,0.034-0.48,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078v0.002c-0.04,0-0.078,0.005-0.118,0.005\r\n\t\t\t\tc-2.959,0-5.72-0.816-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.44V58H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H35v-7.225c10.727-1.457,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015\r\n\t\t\t\tC53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.microphone_off = microphone_off;
\ No newline at end of file
diff --git a/dist/ikons/microsoft.js b/dist/ikons/microsoft.js
new file mode 100644
index 000000000..fdbca05aa
--- /dev/null
+++ b/dist/ikons/microsoft.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.microsoft = void 0;
+var microsoft = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "microsoft_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "microsoft"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "microsoft"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486c-0.383,0-0.764,0.014-1.149,0.049\r\n\t\t\t\tc-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814L0.002,54.346c4.476-1.945,8.093-2.721,11.133-2.721\r\n\t\t\t\tc5.01,0,8.484,2.084,11.763,4.436c1.217-4.441,5.348-19.635,6.133-22.527C28.143,32.939,27.25,32.344,26.307,31.796z\r\n\t\t\t\t M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382c1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548\r\n\t\t\t\tc-1.409-0.359-3.003-0.585-4.766-0.585h-0.069c-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86\r\n\t\t\t\tc4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.561,13.559c-6.488,0-10.767-2.974-12.658-4.559l-5.985,22.306\r\n\t\t\t\tc0.017,0.019,0.043,0.035,0.063,0.048c3.291,2.371,7.572,4.287,12.732,4.287c3.412,0,7.204-0.836,11.348-2.94v-0.03\r\n\t\t\t\tc0.01,0,0.021-0.008,0.037-0.014l5.901-21.899C59.641,12.807,55.824,13.559,52.561,13.559z M32.568,36.329l-5.904,22.085\r\n\t\t\t\tc-0.009-0.005,6.904,4.584,12.089,4.584c3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.291-11.185,2.291\r\n\t\t\t\tC38.529,40.812,34.367,37.874,32.568,36.329z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486c-0.383,0-0.764,0.014-1.149,0.049\r\n\t\t\t\tc-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814L0.002,54.346c4.476-1.945,8.093-2.721,11.133-2.721\r\n\t\t\t\tc5.01,0,8.484,2.084,11.763,4.436c1.217-4.441,5.348-19.635,6.133-22.527C28.143,32.939,27.25,32.344,26.307,31.796z\r\n\t\t\t\t M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382c1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548\r\n\t\t\t\tc-1.409-0.359-3.003-0.585-4.766-0.585h-0.069c-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86\r\n\t\t\t\tc4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.561,13.559c-6.488,0-10.767-2.974-12.658-4.559l-5.985,22.306\r\n\t\t\t\tc0.017,0.019,0.043,0.035,0.063,0.048c3.291,2.371,7.572,4.287,12.732,4.287c3.412,0,7.204-0.836,11.348-2.94v-0.03\r\n\t\t\t\tc0.01,0,0.021-0.008,0.037-0.014l5.901-21.899C59.641,12.807,55.824,13.559,52.561,13.559z M32.568,36.329l-5.904,22.085\r\n\t\t\t\tc-0.009-0.005,6.904,4.584,12.089,4.584c3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.291-11.185,2.291\r\n\t\t\t\tC38.529,40.812,34.367,37.874,32.568,36.329z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.microsoft = microsoft;
\ No newline at end of file
diff --git a/dist/ikons/minus.js b/dist/ikons/minus.js
new file mode 100644
index 000000000..d0fb3dee6
--- /dev/null
+++ b/dist/ikons/minus.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minus = void 0;
+var minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MINUS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MINUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MINUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,29,52,29z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S53.657,29,52,29z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.minus = minus;
\ No newline at end of file
diff --git a/dist/ikons/more.js b/dist/ikons/more.js
new file mode 100644
index 000000000..6323815c1
--- /dev/null
+++ b/dist/ikons/more.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.more = void 0;
+var more = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MORE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MORE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MORE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.001,26C9.687,26,7,28.687,7,32.002c0,3.314,2.687,6.001,6.001,6.001s6.001-2.687,6.001-6.001\r\n\t\t\t\tC19.001,28.687,16.315,26,13.001,26z M51.001,26C47.688,26,45,28.687,45,32.002c0,3.314,2.688,6.001,6.001,6.001\r\n\t\t\t\ts6.001-2.687,6.001-6.001C57.001,28.687,54.314,26,51.001,26z M32.001,26C28.687,26,26,28.687,26,32.002\r\n\t\t\t\tc0,3.314,2.686,6.001,6.001,6.001c3.315,0,6.001-2.687,6.001-6.001C38.001,28.687,35.314,26,32.001,26z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13.001,26C9.687,26,7,28.687,7,32.002c0,3.314,2.687,6.001,6.001,6.001s6.001-2.687,6.001-6.001\r\n\t\t\t\tC19.001,28.687,16.315,26,13.001,26z M51.001,26C47.688,26,45,28.687,45,32.002c0,3.314,2.688,6.001,6.001,6.001\r\n\t\t\t\ts6.001-2.687,6.001-6.001C57.001,28.687,54.314,26,51.001,26z M32.001,26C28.687,26,26,28.687,26,32.002\r\n\t\t\t\tc0,3.314,2.686,6.001,6.001,6.001c3.315,0,6.001-2.687,6.001-6.001C38.001,28.687,35.314,26,32.001,26z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.more = more;
\ No newline at end of file
diff --git a/dist/ikons/more_2.js b/dist/ikons/more_2.js
new file mode 100644
index 000000000..9f5a7a19a
--- /dev/null
+++ b/dist/ikons/more_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.more_2 = void 0;
+var more_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MORE_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MORE_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MORE_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.313,2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001\r\n\t\t\t\tC38,28.687,35.312,26,31.998,26z M31.998,19.001C35.312,19.001,38,16.314,38,13c0-3.313-2.688-6-6.002-6\r\n\t\t\t\tc-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45c-3.314,0-6.001,2.688-6.001,6.001\r\n\t\t\t\ts2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001S35.312,45,31.998,45z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.313,2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001\r\n\t\t\t\tC38,28.687,35.312,26,31.998,26z M31.998,19.001C35.312,19.001,38,16.314,38,13c0-3.313-2.688-6-6.002-6\r\n\t\t\t\tc-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45c-3.314,0-6.001,2.688-6.001,6.001\r\n\t\t\t\ts2.687,6.001,6.001,6.001c3.314,0,6.002-2.688,6.002-6.001S35.312,45,31.998,45z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.more_2 = more_2;
\ No newline at end of file
diff --git a/dist/ikons/moustache.js b/dist/ikons/moustache.js
new file mode 100644
index 000000000..ae05ad46d
--- /dev/null
+++ b/dist/ikons/moustache.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.moustache = void 0;
+var moustache = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MOUSTACHE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MOUSTACHE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MOUSTACHE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125c-5.254,0-7.725-8.839-15.935-8.839\r\n\t\t\t\tc-6.513,0-8.497,5.067-8.928,5.067s-2.415-5.067-8.927-5.067c-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125\r\n\t\t\t\tc-1.06,0.269,1.955,15.277,16.323,15.277c9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.183,7.238,15.504,7.238\r\n\t\t\t\tC61.872,41.996,64.887,26.988,63.827,26.719z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125c-5.254,0-7.725-8.839-15.935-8.839\r\n\t\t\t\tc-6.513,0-8.497,5.067-8.928,5.067s-2.415-5.067-8.927-5.067c-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125\r\n\t\t\t\tc-1.06,0.269,1.955,15.277,16.323,15.277c9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.183,7.238,15.504,7.238\r\n\t\t\t\tC61.872,41.996,64.887,26.988,63.827,26.719z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.moustache = moustache;
\ No newline at end of file
diff --git a/dist/ikons/music.js b/dist/ikons/music.js
new file mode 100644
index 000000000..d19440f14
--- /dev/null
+++ b/dist/ikons/music.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music = void 0;
+var music = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MUSIC_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MUSIC"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "MUSIC"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6\r\n\t\t\t\tV26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6V3\r\n\t\t\t\tC63,1.343,61.657,0,60,0z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6\r\n\t\t\t\tV26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43c-6.075,0-11,2.686-11,6s4.925,6,11,6s11-2.686,11-6V3\r\n\t\t\t\tC63,1.343,61.657,0,60,0z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.music = music;
\ No newline at end of file
diff --git a/dist/ikons/notepad.js b/dist/ikons/notepad.js
new file mode 100644
index 000000000..8cfc349a3
--- /dev/null
+++ b/dist/ikons/notepad.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.notepad = void 0;
+var notepad = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C29,10.657,30.343,12,32,12z M47,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5S51.881,54,50.5,54z M50,42H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,29,50,29z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C29,10.657,30.343,12,32,12z M47,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5S51.881,54,50.5,54z M50,42H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,29,50,29z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.notepad = notepad;
\ No newline at end of file
diff --git a/dist/ikons/notepad_add.js b/dist/ikons/notepad_add.js
new file mode 100644
index 000000000..ceece4107
--- /dev/null
+++ b/dist/ikons/notepad_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.notepad_add = void 0;
+var notepad_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__ADD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M60,52h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tS61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5\r\n\t\t\t\tC3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S11.343,23,13,23z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5s1.119-2.5,2.5-2.5h19\r\n\t\t\t\tc1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M39,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3\r\n\t\t\t\tS40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M60,52h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tS61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5\r\n\t\t\t\tC3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S11.343,23,13,23z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5s1.119-2.5,2.5-2.5h19\r\n\t\t\t\tc1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M39,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3\r\n\t\t\t\tS40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.notepad_add = notepad_add;
\ No newline at end of file
diff --git a/dist/ikons/notepad_delete.js b/dist/ikons/notepad_delete.js
new file mode 100644
index 000000000..29bd0f895
--- /dev/null
+++ b/dist/ikons/notepad_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.notepad_delete = void 0;
+var notepad_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879\r\n\t\t\t\tC62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879\r\n\t\t\t\tC49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879\r\n\t\t\t\tC45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879\r\n\t\t\t\tC58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3c0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M43.757,56.758L45.516,55l-1.758-1.757\r\n\t\t\t\tC42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L54,46.516l1.757-1.759l0.015,0.017\r\n\t\t\t\tC56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832\r\n\t\t\t\tC42.316,63.114,42,62.1,42,61c0-1.659,0.682-3.146,1.773-4.227L43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h24\r\n\t\t\t\tc1.657,0,3,1.343,3,3S38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879\r\n\t\t\t\tC62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879\r\n\t\t\t\tC49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879\r\n\t\t\t\tC45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879\r\n\t\t\t\tC58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3c0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M43.757,56.758L45.516,55l-1.758-1.757\r\n\t\t\t\tC42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L54,46.516l1.757-1.759l0.015,0.017\r\n\t\t\t\tC56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832\r\n\t\t\t\tC42.316,63.114,42,62.1,42,61c0-1.659,0.682-3.146,1.773-4.227L43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3s1.343-3,3-3h24\r\n\t\t\t\tc1.657,0,3,1.343,3,3S38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.notepad_delete = notepad_delete;
\ No newline at end of file
diff --git a/dist/ikons/notepad_ok.js b/dist/ikons/notepad_ok.js
new file mode 100644
index 000000000..89b161cf6
--- /dev/null
+++ b/dist/ikons/notepad_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.notepad_ok = void 0;
+var notepad_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M46,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50c-0.828,0-1.578,0.336-2.121,0.879L52,56.758\r\n\t\t\t\tl-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53C63,51.343,61.657,50,60,50z\r\n\t\t\t\t M43.775,61.225C42.684,60.146,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.555l3.797-3.798\r\n\t\t\t\tC56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h41.516\r\n\t\t\t\tl-2.758-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M46,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M16,12c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50c-0.828,0-1.578,0.336-2.121,0.879L52,56.758\r\n\t\t\t\tl-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4\r\n\t\t\t\tC50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53C63,51.343,61.657,50,60,50z\r\n\t\t\t\t M43.775,61.225C42.684,60.146,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.555l3.797-3.798\r\n\t\t\t\tC56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\tc-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h41.516\r\n\t\t\t\tl-2.758-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.notepad_ok = notepad_ok;
\ No newline at end of file
diff --git a/dist/ikons/notepad_remove.js b/dist/ikons/notepad_remove.js
new file mode 100644
index 000000000..be6606d95
--- /dev/null
+++ b/dist/ikons/notepad_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.notepad_remove = void 0;
+var notepad_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "NOTEPAD__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48\r\n\t\t\t\tC44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52\r\n\t\t\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z M31,12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48\r\n\t\t\t\tC44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,23,13,23z M13,36h36\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5\r\n\t\t\t\ts1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5S32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,52H48c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S61.657,52,60,52\r\n\t\t\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.notepad_remove = notepad_remove;
\ No newline at end of file
diff --git a/dist/ikons/pause.js b/dist/ikons/pause.js
new file mode 100644
index 000000000..1be504383
--- /dev/null
+++ b/dist/ikons/pause.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pause = void 0;
+var pause = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PAUSE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PAUSE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PAUSE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C29,20.343,27.657,19,26,19z M38,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C29,20.343,27.657,19,26,19z M38,19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pause = pause;
\ No newline at end of file
diff --git a/dist/ikons/paypal.js b/dist/ikons/paypal.js
new file mode 100644
index 000000000..31c3f6e6e
--- /dev/null
+++ b/dist/ikons/paypal.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paypal = void 0;
+var paypal = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "paypal_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "paypal"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "paypal"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018c1.145-1.061,2.006-2.423,2.369-3.916\r\n\t\t\t\tc0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65l-0.214,0.901L24.45,25.935h6.372\r\n\t\t\t\tC32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.087c0.159,0,0.254,0.026,0.301,0.043\r\n\t\t\t\tc0.011,0.067,0.019,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082c-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z\r\n\t\t\t\t M60.611,16.282c-1.295-1.592-2.928-2.913-4.782-3.928c-0.61-2.671-1.804-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0\r\n\t\t\t\tH12.265l-0.787,3.458L1.224,48.52L0,53.9v0.031h10.042l-1.058,4.661L7.752,64h22.802l0.774-3.477l2.55-11.44h6.089\r\n\t\t\t\tc11.803,0,21.03-7.176,23.508-18.278c0.367-1.649,0.521-3.163,0.525-4.557v-0.456C63.904,21.396,62.234,18.281,60.611,16.282z\r\n\t\t\t\t M5.606,49.491L15.861,4.43H39c4.283,0,9.005,1.916,11.316,5.974c0.795,1.398,1.306,3.051,1.412,4.969\r\n\t\t\t\tc0.076,1.334-0.043,2.801-0.399,4.398c-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.463,5.652-13.979,5.732\r\n\t\t\t\tc-0.117,0.004-0.229,0.014-0.344,0.014H22.51L19.186,49.49L5.606,49.491L5.606,49.491z M59.087,29.848\r\n\t\t\t\tc-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.639h8.147l0.777-3.484l2.547-11.441h6.09\r\n\t\t\t\tc11.802,0,21.026-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696C58.802,20.547,60.295,24.44,59.087,29.848z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018c1.145-1.061,2.006-2.423,2.369-3.916\r\n\t\t\t\tc0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65l-0.214,0.901L24.45,25.935h6.372\r\n\t\t\t\tC32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.087c0.159,0,0.254,0.026,0.301,0.043\r\n\t\t\t\tc0.011,0.067,0.019,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082c-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z\r\n\t\t\t\t M60.611,16.282c-1.295-1.592-2.928-2.913-4.782-3.928c-0.61-2.671-1.804-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0\r\n\t\t\t\tH12.265l-0.787,3.458L1.224,48.52L0,53.9v0.031h10.042l-1.058,4.661L7.752,64h22.802l0.774-3.477l2.55-11.44h6.089\r\n\t\t\t\tc11.803,0,21.03-7.176,23.508-18.278c0.367-1.649,0.521-3.163,0.525-4.557v-0.456C63.904,21.396,62.234,18.281,60.611,16.282z\r\n\t\t\t\t M5.606,49.491L15.861,4.43H39c4.283,0,9.005,1.916,11.316,5.974c0.795,1.398,1.306,3.051,1.412,4.969\r\n\t\t\t\tc0.076,1.334-0.043,2.801-0.399,4.398c-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.463,5.652-13.979,5.732\r\n\t\t\t\tc-0.117,0.004-0.229,0.014-0.344,0.014H22.51L19.186,49.49L5.606,49.491L5.606,49.491z M59.087,29.848\r\n\t\t\t\tc-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.639h8.147l0.777-3.484l2.547-11.441h6.09\r\n\t\t\t\tc11.802,0,21.026-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696C58.802,20.547,60.295,24.44,59.087,29.848z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.paypal = paypal;
\ No newline at end of file
diff --git a/dist/ikons/pen_1.js b/dist/ikons/pen_1.js
new file mode 100644
index 000000000..3e8294f57
--- /dev/null
+++ b/dist/ikons/pen_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pen_1 = void 0;
+var pen_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PEN_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PEN_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PEN_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.938,42.498l8.446,8.429l25.339-25.288l-8.447-8.429L12.938,42.498z M7.998,55.84l11.258-2.806l-8.447-8.431\r\n\t\t\t\tL7.998,55.84z M55.167,12.996l-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC56.333,16.046,56.333,14.159,55.167,12.996z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12.938,42.498l8.446,8.429l25.339-25.288l-8.447-8.429L12.938,42.498z M7.998,55.84l11.258-2.806l-8.447-8.431\r\n\t\t\t\tL7.998,55.84z M55.167,12.996l-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC56.333,16.046,56.333,14.159,55.167,12.996z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pen_1 = pen_1;
\ No newline at end of file
diff --git a/dist/ikons/pen_2.js b/dist/ikons/pen_2.js
new file mode 100644
index 000000000..f76ccdf39
--- /dev/null
+++ b/dist/ikons/pen_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pen_2 = void 0;
+var pen_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PEN_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PEN_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PEN_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46.721,19.639l-8.445-8.429L12.938,36.498l8.446,8.429L46.721,19.639z M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214\r\n\t\t\t\tl-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429L55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,56,61,56z M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46.721,19.639l-8.445-8.429L12.938,36.498l8.446,8.429L46.721,19.639z M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214\r\n\t\t\t\tl-4.224-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429L55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,56,61,56z M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pen_2 = pen_2;
\ No newline at end of file
diff --git a/dist/ikons/pen_3.js b/dist/ikons/pen_3.js
new file mode 100644
index 000000000..f59347c4a
--- /dev/null
+++ b/dist/ikons/pen_3.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pen_3 = void 0;
+var pen_3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PEN_3_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PEN_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PEN_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61.167,6.995L56.943,2.78c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52c0,1.657,1.343,3,3,3h52\r\n\t\t\t\tc1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.445-8.429L18.938,36.498l8.446,8.429L52.721,19.639z M13.998,49.84\r\n\t\t\t\tl11.258-2.806l-8.447-8.431L13.998,49.84z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61.167,6.995L56.943,2.78c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429l6.334-6.322\r\n\t\t\t\tC62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52c0,1.657,1.343,3,3,3h52\r\n\t\t\t\tc1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.445-8.429L18.938,36.498l8.446,8.429L52.721,19.639z M13.998,49.84\r\n\t\t\t\tl11.258-2.806l-8.447-8.431L13.998,49.84z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pen_3 = pen_3;
\ No newline at end of file
diff --git a/dist/ikons/picture.js b/dist/ikons/picture.js
new file mode 100644
index 000000000..5b8f4cc0d
--- /dev/null
+++ b/dist/ikons/picture.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.picture = void 0;
+var picture = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PICTURE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PICTURE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PICTURE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,28c3.314,0,6-2.686,6-6s-2.686-6-6-6s-6,2.686-6,6S18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816\r\n\t\t\t\tC61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2h-3.367C52.402,2.838,51.305,2,50,2\r\n\t\t\t\ts-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367C34.402,2.838,33.305,2,32,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\ts-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.838,38.598,2,39.695,2,41s0.837,2.402,2,2.816v3.367\r\n\t\t\t\tC2.838,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.838,56.598,2,57.695,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.815v-3.367\r\n\t\t\t\tc1.163-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.816V25.82\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,28c3.314,0,6-2.686,6-6s-2.686-6-6-6s-6,2.686-6,6S18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816\r\n\t\t\t\tC61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3c-1.305,0-2.402,0.838-2.816,2h-3.367C52.402,2.838,51.305,2,50,2\r\n\t\t\t\ts-2.402,0.838-2.816,2h-3.367C43.402,2.838,42.305,2,41,2s-2.402,0.838-2.816,2h-3.367C34.402,2.838,33.305,2,32,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\ts-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14s0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.305,0.837,2.402,2,2.816v3.367C2.838,38.598,2,39.695,2,41s0.837,2.402,2,2.816v3.367\r\n\t\t\t\tC2.838,47.598,2,48.695,2,50s0.837,2.402,2,2.816v3.367C2.838,56.598,2,57.695,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.402-0.837,2.816-2h3.367c0.412,1.162,1.512,2,2.815,2s2.403-0.837,2.815-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.656,0,3-1.343,3-3c0-1.305-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.815v-3.367\r\n\t\t\t\tc1.163-0.414,2-1.512,2-2.816c0-1.304-0.837-2.402-2-2.816v-3.367c1.163-0.412,2-1.512,2-2.815s-0.837-2.403-2-2.816V25.82\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.picture = picture;
\ No newline at end of file
diff --git a/dist/ikons/pie_chart.js b/dist/ikons/pie_chart.js
new file mode 100644
index 000000000..f78fd513d
--- /dev/null
+++ b/dist/ikons/pie_chart.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pie_chart = void 0;
+var pie_chart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIE_CHART_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIE_CHART"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIE_CHART"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35c0,16.018,12.984,29,29,29c16.016,0,29-12.984,29-29\r\n\t\t\t\tH29V6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35c0,16.018,12.984,29,29,29c16.016,0,29-12.984,29-29\r\n\t\t\t\tH29V6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pie_chart = pie_chart;
\ No newline at end of file
diff --git a/dist/ikons/pill.js b/dist/ikons/pill.js
new file mode 100644
index 000000000..31fba682e
--- /dev/null
+++ b/dist/ikons/pill.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pill = void 0;
+var pill = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PILL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M54.981,9.726l-0.707-0.707c-6.834-6.834-17.914-6.834-24.749,0L9.019,29.525\r\n\t\t\tc-6.834,6.834-6.834,17.914,0,24.748l0.707,0.707c6.834,6.834,17.914,6.834,24.749,0l20.506-20.506\r\n\t\t\tC61.815,27.641,61.815,16.56,54.981,9.726z M30.232,50.738c-4.491,4.491-11.772,4.491-16.263,0l-0.707-0.707\r\n\t\t\tc-4.491-4.491-4.491-11.772,0-16.263l10.253-10.253l16.971,16.97L30.232,50.738z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M54.981,9.726l-0.707-0.707c-6.834-6.834-17.914-6.834-24.749,0L9.019,29.525\r\n\t\t\tc-6.834,6.834-6.834,17.914,0,24.748l0.707,0.707c6.834,6.834,17.914,6.834,24.749,0l20.506-20.506\r\n\t\t\tC61.815,27.641,61.815,16.56,54.981,9.726z M30.232,50.738c-4.491,4.491-11.772,4.491-16.263,0l-0.707-0.707\r\n\t\t\tc-4.491-4.491-4.491-11.772,0-16.263l10.253-10.253l16.971,16.97L30.232,50.738z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pill = pill;
\ No newline at end of file
diff --git a/dist/ikons/pin_1.js b/dist/ikons/pin_1.js
new file mode 100644
index 000000000..9d11f0683
--- /dev/null
+++ b/dist/ikons/pin_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pin_1 = void 0;
+var pin_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40\r\n\t\t\t\tc-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40\r\n\t\t\t\tc-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pin_1 = pin_1;
\ No newline at end of file
diff --git a/dist/ikons/pin_2.js b/dist/ikons/pin_2.js
new file mode 100644
index 000000000..12967741e
--- /dev/null
+++ b/dist/ikons/pin_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pin_2 = void 0;
+var pin_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,16c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,16c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pin_2 = pin_2;
\ No newline at end of file
diff --git a/dist/ikons/pin_zoom_in.js b/dist/ikons/pin_zoom_in.js
new file mode 100644
index 000000000..ef255b0e2
--- /dev/null
+++ b/dist/ikons/pin_zoom_in.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pin_zoom_in = void 0;
+var pin_zoom_in = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN__x2F__ZOOM_IN_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN__x2F__ZOOM_IN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN__x2F__ZOOM_IN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3s1.343,3,3,3h5v5c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3s1.343,3,3,3h5v5c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16S40.836,40,32,40z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pin_zoom_in = pin_zoom_in;
\ No newline at end of file
diff --git a/dist/ikons/pin_zoom_out.js b/dist/ikons/pin_zoom_out.js
new file mode 100644
index 000000000..ca0b3e063
--- /dev/null
+++ b/dist/ikons/pin_zoom_out.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pin_zoom_out = void 0;
+var pin_zoom_out = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN__x2F__ZOOM_OUT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN__x2F__ZOOM_OUT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PIN__x2F__ZOOM_OUT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M40,21H24c-1.657,0-3,1.343-3,3s1.343,3,3,3h16c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M40,21H24c-1.657,0-3,1.343-3,3s1.343,3,3,3h16c1.657,0,3-1.343,3-3S41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24\r\n\t\t\t\tc0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16S23.164,8,32,8s16,7.164,16,16\r\n\t\t\t\tS40.836,40,32,40z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pin_zoom_out = pin_zoom_out;
\ No newline at end of file
diff --git a/dist/ikons/pinterest_1.js b/dist/ikons/pinterest_1.js
new file mode 100644
index 000000000..9bdce7fec
--- /dev/null
+++ b/dist/ikons/pinterest_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pinterest_1 = void 0;
+var pinterest_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "pinterest_2_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "pinterest_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "pinterest_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M55.988,15.676c-0.967-3.324-2.491-5.987-4.586-8.274c-2.033-2.223-4.437-4.016-7.449-5.364\r\n\t\t\t\tC41.1,0.762,37.307-0.183,33.139,0.014c-1.428,0.067-2.742,0.144-4.013,0.329c-3.83,0.557-6.978,1.715-9.768,3.364\r\n\t\t\t\tc-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452c-0.493,2.498-0.494,5.513,0,8.096\r\n\t\t\t\tc0.812,4.253,2.794,7.532,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.606c1.241-0.024,1.27-1.492,1.545-2.555\r\n\t\t\t\tc0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493c-1.046-1.586-1.695-3.622-1.695-6.249\r\n\t\t\t\tc0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831c3.188-0.546,6.777-0.264,9.371,0.582\r\n\t\t\t\tc2.613,0.853,4.763,2.371,6.279,4.276c1.594,2.002,2.598,4.583,2.816,7.793c0.117,1.739-0.006,3.502-0.174,5.035\r\n\t\t\t\tc-0.524,4.757-1.906,8.754-4.187,11.715c-1.426,1.852-3.56,3.813-6.629,3.922c-1.737,0.061-2.998-0.365-4.062-1.139\r\n\t\t\t\tc-1.027-0.748-1.779-1.744-2.12-3.188c-0.369-1.574,0.078-3.072,0.473-4.53c0.798-2.94,1.675-5.229,2.342-8.274\r\n\t\t\t\tc0.297-1.352,0.568-3.19,0.2-4.731c-0.347-1.445-1.087-2.467-2.168-3.112c-1.049-0.626-2.777-0.872-4.336-0.33\r\n\t\t\t\tc-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858c0.158,1.514,0.518,2.809,1.071,4.251\r\n\t\t\t\tc0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408c-0.636,2.708-1.321,5.419-1.47,8.679\r\n\t\t\t\tc-0.131,2.86-0.371,5.803-0.019,8.35c0.065,0.469,0.094,0.791,0.424,0.86c0.433,0.089,0.127,0.755,1.564-0.911\r\n\t\t\t\tc2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.934,1.256-4.068,1.794-6.173c0.546-2.134,1.072-4.318,1.595-6.401\r\n\t\t\t\tc0.804,1.414,1.939,2.35,3.29,3.112c1.362,0.769,2.979,1.306,4.959,1.442c2.037,0.142,3.94-0.223,5.606-0.709\r\n\t\t\t\tc1.682-0.49,3.162-1.226,4.387-2.024c5.046-3.29,8.408-9.072,9.594-16.142c0.316-1.889,0.77-3.777,0.77-5.921\r\n\t\t\t\tC56.982,19.258,56.492,17.406,55.988,15.676z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M55.988,15.676c-0.967-3.324-2.491-5.987-4.586-8.274c-2.033-2.223-4.437-4.016-7.449-5.364\r\n\t\t\t\tC41.1,0.762,37.307-0.183,33.139,0.014c-1.428,0.067-2.742,0.144-4.013,0.329c-3.83,0.557-6.978,1.715-9.768,3.364\r\n\t\t\t\tc-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452c-0.493,2.498-0.494,5.513,0,8.096\r\n\t\t\t\tc0.812,4.253,2.794,7.532,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.606c1.241-0.024,1.27-1.492,1.545-2.555\r\n\t\t\t\tc0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493c-1.046-1.586-1.695-3.622-1.695-6.249\r\n\t\t\t\tc0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831c3.188-0.546,6.777-0.264,9.371,0.582\r\n\t\t\t\tc2.613,0.853,4.763,2.371,6.279,4.276c1.594,2.002,2.598,4.583,2.816,7.793c0.117,1.739-0.006,3.502-0.174,5.035\r\n\t\t\t\tc-0.524,4.757-1.906,8.754-4.187,11.715c-1.426,1.852-3.56,3.813-6.629,3.922c-1.737,0.061-2.998-0.365-4.062-1.139\r\n\t\t\t\tc-1.027-0.748-1.779-1.744-2.12-3.188c-0.369-1.574,0.078-3.072,0.473-4.53c0.798-2.94,1.675-5.229,2.342-8.274\r\n\t\t\t\tc0.297-1.352,0.568-3.19,0.2-4.731c-0.347-1.445-1.087-2.467-2.168-3.112c-1.049-0.626-2.777-0.872-4.336-0.33\r\n\t\t\t\tc-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858c0.158,1.514,0.518,2.809,1.071,4.251\r\n\t\t\t\tc0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408c-0.636,2.708-1.321,5.419-1.47,8.679\r\n\t\t\t\tc-0.131,2.86-0.371,5.803-0.019,8.35c0.065,0.469,0.094,0.791,0.424,0.86c0.433,0.089,0.127,0.755,1.564-0.911\r\n\t\t\t\tc2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.934,1.256-4.068,1.794-6.173c0.546-2.134,1.072-4.318,1.595-6.401\r\n\t\t\t\tc0.804,1.414,1.939,2.35,3.29,3.112c1.362,0.769,2.979,1.306,4.959,1.442c2.037,0.142,3.94-0.223,5.606-0.709\r\n\t\t\t\tc1.682-0.49,3.162-1.226,4.387-2.024c5.046-3.29,8.408-9.072,9.594-16.142c0.316-1.889,0.77-3.777,0.77-5.921\r\n\t\t\t\tC56.982,19.258,56.492,17.406,55.988,15.676z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pinterest_1 = pinterest_1;
\ No newline at end of file
diff --git a/dist/ikons/pinterest_2.js b/dist/ikons/pinterest_2.js
new file mode 100644
index 000000000..3d92fa9fa
--- /dev/null
+++ b/dist/ikons/pinterest_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pinterest_2 = void 0;
+var pinterest_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "pinterest_3_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "pinterest"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "pinterest"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396c-0.082-2.23-0.002-4.892,0.562-7.303\r\n\t\t\t\tc0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084c0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826\r\n\t\t\t\tc0,2.936-1.873,7.326-2.84,11.393c-0.801,3.406,1.715,6.188,5.075,6.188c6.079,0,10.176-7.815,10.176-17.079\r\n\t\t\t\tc0-7.035-4.734-12.307-13.359-12.307c-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299\r\n\t\t\t\tc0.594,0.701,0.674,0.983,0.457,1.793c-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.812-0.875,1.098-1.609,0.799\r\n\t\t\t\tc-4.484-1.828-6.578-6.742-6.578-12.266c0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395\r\n\t\t\t\tc0,12.605-7.006,22.013-17.328,22.013c-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.393-2.262,8.826\r\n\t\t\t\tc-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.57,28.94,64,32,64c17.672,0,32-14.328,32-32S49.672,0,32,0z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396c-0.082-2.23-0.002-4.892,0.562-7.303\r\n\t\t\t\tc0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084c0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826\r\n\t\t\t\tc0,2.936-1.873,7.326-2.84,11.393c-0.801,3.406,1.715,6.188,5.075,6.188c6.079,0,10.176-7.815,10.176-17.079\r\n\t\t\t\tc0-7.035-4.734-12.307-13.359-12.307c-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299\r\n\t\t\t\tc0.594,0.701,0.674,0.983,0.457,1.793c-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.812-0.875,1.098-1.609,0.799\r\n\t\t\t\tc-4.484-1.828-6.578-6.742-6.578-12.266c0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395\r\n\t\t\t\tc0,12.605-7.006,22.013-17.328,22.013c-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.393-2.262,8.826\r\n\t\t\t\tc-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.57,28.94,64,32,64c17.672,0,32-14.328,32-32S49.672,0,32,0z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.pinterest_2 = pinterest_2;
\ No newline at end of file
diff --git a/dist/ikons/play.js b/dist/ikons/play.js
new file mode 100644
index 000000000..9451fdcc9
--- /dev/null
+++ b/dist/ikons/play.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.play = void 0;
+var play = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PLAY_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PLAY"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PLAY"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,32c0-1.099-0.592-2.06-1.475-2.583l0,0L22.561,16.438c-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0\r\n\t\t\t\tC22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3c0.557,0,1.079-0.152,1.526-0.417l0,0l0.011-0.007\r\n\t\t\t\tc0.008-0.006,0.016-0.01,0.024-0.014l21.964-12.979l0,0C45.408,34.061,46,33.1,46,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,32c0-1.099-0.592-2.06-1.475-2.583l0,0L22.561,16.438c-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0\r\n\t\t\t\tC22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3c0.557,0,1.079-0.152,1.526-0.417l0,0l0.011-0.007\r\n\t\t\t\tc0.008-0.006,0.016-0.01,0.024-0.014l21.964-12.979l0,0C45.408,34.061,46,33.1,46,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.play = play;
\ No newline at end of file
diff --git a/dist/ikons/plug.js b/dist/ikons/plug.js
new file mode 100644
index 000000000..f39ea6047
--- /dev/null
+++ b/dist/ikons/plug.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plug = void 0;
+var plug = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PLUG"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M54.836,21.812c-1.164-1.164-3.052-1.164-4.216,0l-7.026,7.026l-8.432-8.432\r\n\t\t\tl7.026-7.026c1.164-1.164,1.164-3.052,0-4.216C41.024,8,39.137,8,37.973,9.164l-7.026,7.026l-4.216-4.216l-5.972,5.972\r\n\t\t\tc-6.193,6.193-6.719,15.885-1.617,22.696L9.164,50.62C8,51.784,8,53.672,9.164,54.836c1.164,1.164,3.052,1.164,4.216,0\r\n\t\t\tl9.977-9.977c6.811,5.102,16.503,4.576,22.696-1.617l5.972-5.973l-4.216-4.216l7.026-7.026C56,24.863,56,22.976,54.836,21.812z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M54.836,21.812c-1.164-1.164-3.052-1.164-4.216,0l-7.026,7.026l-8.432-8.432\r\n\t\t\tl7.026-7.026c1.164-1.164,1.164-3.052,0-4.216C41.024,8,39.137,8,37.973,9.164l-7.026,7.026l-4.216-4.216l-5.972,5.972\r\n\t\t\tc-6.193,6.193-6.719,15.885-1.617,22.696L9.164,50.62C8,51.784,8,53.672,9.164,54.836c1.164,1.164,3.052,1.164,4.216,0\r\n\t\t\tl9.977-9.977c6.811,5.102,16.503,4.576,22.696-1.617l5.972-5.973l-4.216-4.216l7.026-7.026C56,24.863,56,22.976,54.836,21.812z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.plug = plug;
\ No newline at end of file
diff --git a/dist/ikons/plus.js b/dist/ikons/plus.js
new file mode 100644
index 000000000..6a0607048
--- /dev/null
+++ b/dist/ikons/plus.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plus = void 0;
+var plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PLUS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PLUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PLUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52,29H35V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v17H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52,29H35V12c0-1.657-1.343-3-3-3s-3,1.343-3,3v17H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.plus = plus;
\ No newline at end of file
diff --git a/dist/ikons/polaroid.js b/dist/ikons/polaroid.js
new file mode 100644
index 000000000..7eba91646
--- /dev/null
+++ b/dist/ikons/polaroid.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.polaroid = void 0;
+var polaroid = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "POLAROID_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "POLAROID"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "POLAROID"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9C56,7.343,54.657,6,53,6z M50,43H14V12h36\r\n\t\t\t\tV43z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9C56,7.343,54.657,6,53,6z M50,43H14V12h36\r\n\t\t\t\tV43z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.polaroid = polaroid;
\ No newline at end of file
diff --git a/dist/ikons/polaroids.js b/dist/ikons/polaroids.js
new file mode 100644
index 000000000..e1ee3c558
--- /dev/null
+++ b/dist/ikons/polaroids.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.polaroids = void 0;
+var polaroids = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "POLAROIDS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "POLAROIDS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "POLAROIDS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V15C48,13.343,46.657,12,45,12z M42,49H6\r\n\t\t\t\tV18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V15C48,13.343,46.657,12,45,12z M42,49H6\r\n\t\t\t\tV18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.polaroids = polaroids;
\ No newline at end of file
diff --git a/dist/ikons/power.js b/dist/ikons/power.js
new file mode 100644
index 000000000..9731bdcbf
--- /dev/null
+++ b/dist/ikons/power.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.power = void 0;
+var power = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "POWER_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "POWER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "POWER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186l0,0V30C28,31.657,29.343,33,31,33z M42,8.162\r\n\t\t\t\tv0.009C41.688,8.061,41.352,8,41,8c-1.657,0-3,1.343-3,3c0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35\r\n\t\t\t\tc0,12.703-10.297,23-23,23S8,47.703,8,35c0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162C9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29\r\n\t\t\t\tc16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186l0,0V30C28,31.657,29.343,33,31,33z M42,8.162\r\n\t\t\t\tv0.009C41.688,8.061,41.352,8,41,8c-1.657,0-3,1.343-3,3c0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35\r\n\t\t\t\tc0,12.703-10.297,23-23,23S8,47.703,8,35c0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162C9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29\r\n\t\t\t\tc16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.power = power;
\ No newline at end of file
diff --git a/dist/ikons/presentation.js b/dist/ikons/presentation.js
new file mode 100644
index 000000000..9f9089c56
--- /dev/null
+++ b/dist/ikons/presentation.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.presentation = void 0;
+var presentation = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PRESENTATION"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,6H35V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3H3C1.343,6,0,7.343,0,9\r\n\t\t\tc0,1.657,1.343,3,3,3h3v34c0,1.657,1.343,3,3,3h15.757l-9.879,9.879C14.336,59.422,14,60.172,14,61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.579-0.336,2.121-0.879L29,53.243V61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7.757l9.879,9.879\r\n\t\t\tC45.422,63.664,46.172,64,47,64c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L39.243,49H55c1.657,0,3-1.343,3-3V12h3\r\n\t\t\tc1.657,0,3-1.343,3-3C64,7.343,62.657,6,61,6z M52,43H12V12h40V43z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,6H35V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3H3C1.343,6,0,7.343,0,9\r\n\t\t\tc0,1.657,1.343,3,3,3h3v34c0,1.657,1.343,3,3,3h15.757l-9.879,9.879C14.336,59.422,14,60.172,14,61c0,1.657,1.343,3,3,3\r\n\t\t\tc0.828,0,1.579-0.336,2.121-0.879L29,53.243V61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7.757l9.879,9.879\r\n\t\t\tC45.422,63.664,46.172,64,47,64c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L39.243,49H55c1.657,0,3-1.343,3-3V12h3\r\n\t\t\tc1.657,0,3-1.343,3-3C64,7.343,62.657,6,61,6z M52,43H12V12h40V43z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.presentation = presentation;
\ No newline at end of file
diff --git a/dist/ikons/printer.js b/dist/ikons/printer.js
new file mode 100644
index 000000000..7eb4a21b1
--- /dev/null
+++ b/dist/ikons/printer.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.printer = void 0;
+var printer = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PRINTER_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PRINTER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PRINTER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10c1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15\r\n\t\t\t\tz M9,27c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC47.99,2.351,47.8,1.782,47.477,1.309c-0.004-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.351-0.419l0,0\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.008-0.006c-0.166-0.165-0.358-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004\r\n\t\t\t\tc0,0-0.001,0-0.001-0.001c-0.285-0.171-0.594-0.305-0.93-0.373l0,0c-0.139-0.028-0.283-0.034-0.427-0.043\r\n\t\t\t\tC45.117,0.014,45.061,0,45,0H19c-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3V37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10c1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15\r\n\t\t\t\tz M9,27c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC47.99,2.351,47.8,1.782,47.477,1.309c-0.004-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.351-0.419l0,0\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.008-0.006c-0.166-0.165-0.358-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004\r\n\t\t\t\tc0,0-0.001,0-0.001-0.001c-0.285-0.171-0.594-0.305-0.93-0.373l0,0c-0.139-0.028-0.283-0.034-0.427-0.043\r\n\t\t\t\tC45.117,0.014,45.061,0,45,0H19c-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3V37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.printer = printer;
\ No newline at end of file
diff --git a/dist/ikons/progress.js b/dist/ikons/progress.js
new file mode 100644
index 000000000..111e11f3e
--- /dev/null
+++ b/dist/ikons/progress.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.progress = void 0;
+var progress = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PROGRESS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PROGRESS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PROGRESS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32C29,30.343,27.657,29,26,29z M14,37\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z M50,13c-1.657,0-3,1.343-3,3v32\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V24C41,22.343,39.657,21,38,21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32C29,30.343,27.657,29,26,29z M14,37\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z M50,13c-1.657,0-3,1.343-3,3v32\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V24C41,22.343,39.657,21,38,21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.progress = progress;
\ No newline at end of file
diff --git a/dist/ikons/record.js b/dist/ikons/record.js
new file mode 100644
index 000000000..3106b06c1
--- /dev/null
+++ b/dist/ikons/record.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.record = void 0;
+var record = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RECORD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RECORD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RECORD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "32",
+ "cy": "32",
+ "r": "14"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "32",
+ "cy": "32",
+ "r": "14"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.record = record;
\ No newline at end of file
diff --git a/dist/ikons/repeat.js b/dist/ikons/repeat.js
new file mode 100644
index 000000000..8c364b33f
--- /dev/null
+++ b/dist/ikons/repeat.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.repeat = void 0;
+var repeat = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "REPEAT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,22c-1.657,0-3,1.343-3,3v7c0,6.627-5.373,12-12,12H26v0.003h-2.987v-0.005\r\n\t\t\tH21.24l1.878-1.879c0.543-0.543,0.878-1.293,0.878-2.122c0-1.657-1.343-3-2.999-3c-0.828,0-1.578,0.336-2.121,0.879l-6.998,7.001\r\n\t\t\tC11.336,45.42,11,46.17,11,46.999c0,0.829,0.336,1.578,0.878,2.122l6.998,7.001C19.42,56.664,20.169,57,20.998,57\r\n\t\t\tc1.657,0,2.999-1.343,2.999-3c0-0.829-0.336-1.578-0.878-2.122l-1.873-1.874H27V50h19c9.941,0,18-8.059,18-18v-7\r\n\t\t\tC64,23.343,62.657,22,61,22z M38,20v-0.004h2.987v0.005h1.773l-1.878,1.879c-0.543,0.543-0.879,1.293-0.879,2.122\r\n\t\t\tc0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C52.664,18.58,53,17.83,53,17.001\r\n\t\t\tc0-0.829-0.336-1.579-0.878-2.122l-6.998-7.001C44.581,7.336,43.831,7,43.003,7c-1.657,0-2.999,1.344-2.999,3.001\r\n\t\t\tc0,0.828,0.336,1.579,0.879,2.122l1.873,1.874H37V14H18C8.059,14,0,22.059,0,32v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7\r\n\t\t\tc0-6.627,5.373-12,12-12H38z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,22c-1.657,0-3,1.343-3,3v7c0,6.627-5.373,12-12,12H26v0.003h-2.987v-0.005\r\n\t\t\tH21.24l1.878-1.879c0.543-0.543,0.878-1.293,0.878-2.122c0-1.657-1.343-3-2.999-3c-0.828,0-1.578,0.336-2.121,0.879l-6.998,7.001\r\n\t\t\tC11.336,45.42,11,46.17,11,46.999c0,0.829,0.336,1.578,0.878,2.122l6.998,7.001C19.42,56.664,20.169,57,20.998,57\r\n\t\t\tc1.657,0,2.999-1.343,2.999-3c0-0.829-0.336-1.578-0.878-2.122l-1.873-1.874H27V50h19c9.941,0,18-8.059,18-18v-7\r\n\t\t\tC64,23.343,62.657,22,61,22z M38,20v-0.004h2.987v0.005h1.773l-1.878,1.879c-0.543,0.543-0.879,1.293-0.879,2.122\r\n\t\t\tc0,1.657,1.343,3,2.999,3c0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C52.664,18.58,53,17.83,53,17.001\r\n\t\t\tc0-0.829-0.336-1.579-0.878-2.122l-6.998-7.001C44.581,7.336,43.831,7,43.003,7c-1.657,0-2.999,1.344-2.999,3.001\r\n\t\t\tc0,0.828,0.336,1.579,0.879,2.122l1.873,1.874H37V14H18C8.059,14,0,22.059,0,32v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7\r\n\t\t\tc0-6.627,5.373-12,12-12H38z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.repeat = repeat;
\ No newline at end of file
diff --git a/dist/ikons/repeat_1.js b/dist/ikons/repeat_1.js
new file mode 100644
index 000000000..8517d4dc2
--- /dev/null
+++ b/dist/ikons/repeat_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.repeat_1 = void 0;
+var repeat_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "REPEAT_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "REPEAT_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "REPEAT_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c8.77,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32c0-1.657-1.343-3-3-3s-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tC17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6c8.77,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.repeat_1 = repeat_1;
\ No newline at end of file
diff --git a/dist/ikons/repeat_2.js b/dist/ikons/repeat_2.js
new file mode 100644
index 000000000..be97b9d93
--- /dev/null
+++ b/dist/ikons/repeat_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.repeat_2 = void 0;
+var repeat_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "REPEAT_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "REPEAT_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "REPEAT_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26c-8.768,0-16.506-4.348-21.207-11H16c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.454C11.789,58.68,21.254,64,32,64\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5c-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.732,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3s3-1.343,3-3C6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h13c1.657,0,3-1.343,3-3V8C64,6.343,62.657,5,61,5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26c-8.768,0-16.506-4.348-21.207-11H16c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.454C11.789,58.68,21.254,64,32,64\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5c-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.732,0,32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3s3-1.343,3-3C6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h13c1.657,0,3-1.343,3-3V8C64,6.343,62.657,5,61,5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.repeat_2 = repeat_2;
\ No newline at end of file
diff --git a/dist/ikons/resize_1.js b/dist/ikons/resize_1.js
new file mode 100644
index 000000000..110e5ce70
--- /dev/null
+++ b/dist/ikons/resize_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.resize_1 = void 0;
+var resize_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_1_3_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_1_2_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_1_2_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3s-1.343-3-3-3H6C4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tv-4.757l14.914,14.914l0.003-0.003C24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083\r\n\t\t\t\tL28.157,23.914z M26,35c-0.81,0-1.543,0.325-2.082,0.848l-0.003-0.004L9,50.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.811,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.811,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.811,0.324,1.543,0.848,2.083l-0.004,0.003L50.757,55H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.843,23.914l0.003,0.003\r\n\t\t\t\tC35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.811,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3s-1.343-3-3-3H6C4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tv-4.757l14.914,14.914l0.003-0.003C24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083\r\n\t\t\t\tL28.157,23.914z M26,35c-0.81,0-1.543,0.325-2.082,0.848l-0.003-0.004L9,50.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.811,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.811,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.811,0.324,1.543,0.848,2.083l-0.004,0.003L50.757,55H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.843,23.914l0.003,0.003\r\n\t\t\t\tC35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.811,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.resize_1 = resize_1;
\ No newline at end of file
diff --git a/dist/ikons/resize_2.js b/dist/ikons/resize_2.js
new file mode 100644
index 000000000..fe8bcb5f5
--- /dev/null
+++ b/dist/ikons/resize_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.resize_2 = void 0;
+var resize_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_2_3_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_2_2_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_2_2_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003C3.325,56.457,3,57.189,3,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.848l0.003,0.004L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.811,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tH38c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.189,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.811-0.325-1.543-0.848-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843\r\n\t\t\t\tL8.083,3.847C7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003C3.325,56.457,3,57.189,3,58\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.848l0.003,0.004L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.811,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3\r\n\t\t\t\tH38c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.189,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.811-0.325-1.543-0.848-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843\r\n\t\t\t\tL8.083,3.847C7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.resize_2 = resize_2;
\ No newline at end of file
diff --git a/dist/ikons/resize_3.js b/dist/ikons/resize_3.js
new file mode 100644
index 000000000..bc2e9a160
--- /dev/null
+++ b/dist/ikons/resize_3.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.resize_3 = void 0;
+var resize_3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_1_4_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_1_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_1_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.879-14.879C28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879C35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l14.879-14.879C28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879C35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.resize_3 = resize_3;
\ No newline at end of file
diff --git a/dist/ikons/resize_4.js b/dist/ikons/resize_4.js
new file mode 100644
index 000000000..8b394fdf1
--- /dev/null
+++ b/dist/ikons/resize_4.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.resize_4 = void 0;
+var resize_4 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_2_4_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_2_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_2_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.879,55.879C3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38C29,36.343,27.657,35,26,35z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.879,55.879C3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3s3-1.343,3-3V38C29,36.343,27.657,35,26,35z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.resize_4 = resize_4;
\ No newline at end of file
diff --git a/dist/ikons/resize_5.js b/dist/ikons/resize_5.js
new file mode 100644
index 000000000..08972d5e2
--- /dev/null
+++ b/dist/ikons/resize_5.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.resize_5 = void 0;
+var resize_5 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_1_5_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l9.879-9.879C20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757l9.879-9.879C20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.resize_5 = resize_5;
\ No newline at end of file
diff --git a/dist/ikons/resize_6.js b/dist/ikons/resize_6.js
new file mode 100644
index 000000000..e4ea1d9d2
--- /dev/null
+++ b/dist/ikons/resize_6.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.resize_6 = void 0;
+var resize_6 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_2_5_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RESIZE_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,43H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3s3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-4.757l9.879-9.879C63.664,4.578,64,3.829,64,3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,43H6c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879C0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3s3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23\r\n\t\t\t\tc-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9C41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3h-4.757l9.879-9.879C63.664,4.578,64,3.829,64,3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.resize_6 = resize_6;
\ No newline at end of file
diff --git a/dist/ikons/rewind.js b/dist/ikons/rewind.js
new file mode 100644
index 000000000..ff3a4eb29
--- /dev/null
+++ b/dist/ikons/rewind.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rewind = void 0;
+var rewind = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "REWIND_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "REWIND"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "REWIND"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3c-0.584,0-1.129,0.168-1.59,0.456l0,0\r\n\t\t\t\tl-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0C13.564,29.987,13,30.927,13,32s0.564,2.014,1.41,2.544l0,0\r\n\t\t\t\tl0.023,0.015c0.005,0.002,0.01,0.006,0.016,0.01l15.962,9.976l0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587\r\n\t\t\t\tl11.41,7.131l0,0C46.871,44.833,47.416,45,48,45c1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3c-0.584,0-1.129,0.168-1.59,0.456l0,0\r\n\t\t\t\tl-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0C13.564,29.987,13,30.927,13,32s0.564,2.014,1.41,2.544l0,0\r\n\t\t\t\tl0.023,0.015c0.005,0.002,0.01,0.006,0.016,0.01l15.962,9.976l0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587\r\n\t\t\t\tl11.41,7.131l0,0C46.871,44.833,47.416,45,48,45c1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.rewind = rewind;
\ No newline at end of file
diff --git a/dist/ikons/rss.js b/dist/ikons/rss.js
new file mode 100644
index 000000000..01a79444a
--- /dev/null
+++ b/dist/ikons/rss.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.rss = void 0;
+var rss = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RSS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RSS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "RSS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8,48c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S12.418,48,8,48z M0,23v11c16.569,0,30,13.432,30,30h11\r\n\t\t\t\tC41,41.355,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53h11C64,28.654,35.346,0,0,0z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M8,48c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S12.418,48,8,48z M0,23v11c16.569,0,30,13.432,30,30h11\r\n\t\t\t\tC41,41.355,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53h11C64,28.654,35.346,0,0,0z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.rss = rss;
\ No newline at end of file
diff --git a/dist/ikons/screen_expand_1.js b/dist/ikons/screen_expand_1.js
new file mode 100644
index 000000000..60ba1b440
--- /dev/null
+++ b/dist/ikons/screen_expand_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.screen_expand_1 = void 0;
+var screen_expand_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SCREEN_EXPAND_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SCREEN_EXPAND_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SCREEN_EXPAND_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M9,55h46\r\n\t\t\t\tV9H9V55z M15,15h34v34H15V15z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M9,55h46\r\n\t\t\t\tV9H9V55z M15,15h34v34H15V15z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.screen_expand_1 = screen_expand_1;
\ No newline at end of file
diff --git a/dist/ikons/screen_expand_2.js b/dist/ikons/screen_expand_2.js
new file mode 100644
index 000000000..b96b6a7ca
--- /dev/null
+++ b/dist/ikons/screen_expand_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.screen_expand_2 = void 0;
+var screen_expand_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SCREEN_EXPAND_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SCREEN_EXPAND_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SCREEN_EXPAND_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H3C1.343,0,0,1.343,0,3v12l0,0c0,1.657,1.343,3,3,3s3-1.343,3-3V6H15L15,6z\r\n\t\t\t\t M64,49c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V49L64,49z M55,9H9\r\n\t\t\t\tv46h46V9z M49,49H15V15h34V49z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3l0,0H3C1.343,0,0,1.343,0,3v12l0,0c0,1.657,1.343,3,3,3s3-1.343,3-3V6H15L15,6z\r\n\t\t\t\t M64,49c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3V49L64,49z M55,9H9\r\n\t\t\t\tv46h46V9z M49,49H15V15h34V49z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.screen_expand_2 = screen_expand_2;
\ No newline at end of file
diff --git a/dist/ikons/screen_expand_3.js b/dist/ikons/screen_expand_3.js
new file mode 100644
index 000000000..4e52fb701
--- /dev/null
+++ b/dist/ikons/screen_expand_3.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.screen_expand_3 = void 0;
+var screen_expand_3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SCREEN_EXPAND_3_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SCREEN_EXPAND_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SCREEN_EXPAND_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,18c1.657,0,3-1.343,3-3V6h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,0,0,1.343,0,3v12l0,0\r\n\t\t\t\tC0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9l0,0\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,18c1.657,0,3-1.343,3-3V6h9l0,0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,0,0,1.343,0,3v12l0,0\r\n\t\t\t\tC0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3l0,0v9h-9c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3S16.657,58,15,58z M61,0H49l0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3l0,0h9v9l0,0\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.screen_expand_3 = screen_expand_3;
\ No newline at end of file
diff --git a/dist/ikons/share.js b/dist/ikons/share.js
new file mode 100644
index 000000000..383b9f091
--- /dev/null
+++ b/dist/ikons/share.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.share = void 0;
+var share = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHARE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHARE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHARE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52,26.168V52H12V12h25.832C37.316,11.114,37,10.098,37,9c0-1.099,0.316-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168C57.113,26.683,56.1,27,55,27C53.902,27,52.887,26.683,52,26.168z M55,6H43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.811,0,1.543-0.325,2.082-0.847l0.003,0.003L52,16.243V21c0,1.657,1.343,3,2.999,3H55c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC58,7.343,56.657,6,55,6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52,26.168V52H12V12h25.832C37.316,11.114,37,10.098,37,9c0-1.099,0.316-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168C57.113,26.683,56.1,27,55,27C53.902,27,52.887,26.683,52,26.168z M55,6H43\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.811,0,1.543-0.325,2.082-0.847l0.003,0.003L52,16.243V21c0,1.657,1.343,3,2.999,3H55c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC58,7.343,56.657,6,55,6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.share = share;
\ No newline at end of file
diff --git a/dist/ikons/share_2.js b/dist/ikons/share_2.js
new file mode 100644
index 000000000..9b94d6a07
--- /dev/null
+++ b/dist/ikons/share_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.share_2 = void 0;
+var share_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHARE_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHARE_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHARE_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29c0,1.657,1.343,3,3,3s3-1.343,3-3V10.818l3.77,4.189\r\n\t\t\t\tL38.777,15c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.777-2l0.008-0.007l-9-10L34.223,1\r\n\t\t\t\tC33.673,0.391,32.885,0,32,0s-1.673,0.39-2.222,1L29.77,0.993l-9,10L20.778,11C20.3,11.532,20,12.228,20,13\r\n\t\t\t\tC20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29c0,1.657,1.343,3,3,3s3-1.343,3-3V10.818l3.77,4.189\r\n\t\t\t\tL38.777,15c0.55,0.61,1.338,1,2.223,1c1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.777-2l0.008-0.007l-9-10L34.223,1\r\n\t\t\t\tC33.673,0.391,32.885,0,32,0s-1.673,0.39-2.222,1L29.77,0.993l-9,10L20.778,11C20.3,11.532,20,12.228,20,13\r\n\t\t\t\tC20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3v38c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.share_2 = share_2;
\ No newline at end of file
diff --git a/dist/ikons/shop.js b/dist/ikons/shop.js
new file mode 100644
index 000000000..2f24f9e8d
--- /dev/null
+++ b/dist/ikons/shop.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shop = void 0;
+var shop = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOP_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,9h44c1.657,0,3-1.343,3-3s-1.343-3-3-3H10C8.343,3,7,4.343,7,6S8.343,9,10,9z M58.375,12H5.625L0,27\r\n\t\t\t\tc0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8\r\n\t\t\t\ts8-3.582,8-8L58.375,12z M55,37.952V37.95c-0.287-0.026-0.57-0.069-0.85-0.117c-0.061-0.01-0.123-0.015-0.183-0.026\r\n\t\t\t\tc-0.13-0.023-0.256-0.061-0.384-0.09C53.042,37.593,52.51,37.439,52,37.24V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478\r\n\t\t\t\tc-0.128,0.029-0.253,0.065-0.382,0.09c-0.06,0.012-0.122,0.017-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002\r\n\t\t\t\tC8.671,37.982,8.338,38,8,38c-0.684,0-1.351-0.07-2-0.189V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.811\r\n\t\t\t\tC57.352,37.93,56.684,38,56,38C55.663,38,55.329,37.982,55,37.952z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10,9h44c1.657,0,3-1.343,3-3s-1.343-3-3-3H10C8.343,3,7,4.343,7,6S8.343,9,10,9z M58.375,12H5.625L0,27\r\n\t\t\t\tc0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8s8-3.582,8-8c0,4.418,3.582,8,8,8\r\n\t\t\t\ts8-3.582,8-8L58.375,12z M55,37.952V37.95c-0.287-0.026-0.57-0.069-0.85-0.117c-0.061-0.01-0.123-0.015-0.183-0.026\r\n\t\t\t\tc-0.13-0.023-0.256-0.061-0.384-0.09C53.042,37.593,52.51,37.439,52,37.24V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478\r\n\t\t\t\tc-0.128,0.029-0.253,0.065-0.382,0.09c-0.06,0.012-0.122,0.017-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002\r\n\t\t\t\tC8.671,37.982,8.338,38,8,38c-0.684,0-1.351-0.07-2-0.189V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.811\r\n\t\t\t\tC57.352,37.93,56.684,38,56,38C55.663,38,55.329,37.982,55,37.952z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.shop = shop;
\ No newline at end of file
diff --git a/dist/ikons/shopping_bag.js b/dist/ikons/shopping_bag.js
new file mode 100644
index 000000000..04fbbfdf7
--- /dev/null
+++ b/dist/ikons/shopping_bag.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shopping_bag = void 0;
+var shopping_bag = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_BAG_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_BAG"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_BAG"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8c0-8.284-6.716-15-15-15S17,6.716,17,15H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15c0-4.971,4.029-9,9-9c4.971,0,9,4.03,9,9H23z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8c0-8.284-6.716-15-15-15S17,6.716,17,15H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15c0-4.971,4.029-9,9-9c4.971,0,9,4.03,9,9H23z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.shopping_bag = shopping_bag;
\ No newline at end of file
diff --git a/dist/ikons/shopping_cart.js b/dist/ikons/shopping_cart.js
new file mode 100644
index 000000000..8e2f7697a
--- /dev/null
+++ b/dist/ikons/shopping_cart.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shopping_cart = void 0;
+var shopping_cart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.763l0,0l9-20l-0.006-0.002C63.9,17.853,64,17.439,64,17\r\n\t\t\t\tc0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872\r\n\t\t\t\tl11.55,33H16c-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6s-2.686-6-6-6H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.846L18.679,20h37.68l-6.356,14.127L24.224,35.846z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.763l0,0l9-20l-0.006-0.002C63.9,17.853,64,17.439,64,17\r\n\t\t\t\tc0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872\r\n\t\t\t\tl11.55,33H16c-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6s-2.686-6-6-6H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.846L18.679,20h37.68l-6.356,14.127L24.224,35.846z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.shopping_cart = shopping_cart;
\ No newline at end of file
diff --git a/dist/ikons/shopping_cart_add.js b/dist/ikons/shopping_cart_add.js
new file mode 100644
index 000000000..5ff555669
--- /dev/null
+++ b/dist/ikons/shopping_cart_add.js
@@ -0,0 +1 @@
+"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.shopping_cart_add=void 0;var shopping_cart_add={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{"id":"Background_xA0_Image_1_","display":"none"},"children":[{"name":"image","attribs":{"display":"inline","overflow":"visible","width":"64","height":"64","id":"Background_xA0_Image"},"children":[{"name":"image","attribs":{"display":"inline","overflow":"visible","width":"64","height":"64","id":"Background_xA0_Image"},"children":[]}]}]},{"name":"g","attribs":{"id":"paypal_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"paypal","display":"inline"},"children":[{"name":"g","attribs":{"id":"paypal","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018\r\n\t\t\t\tc1.145-1.061,2.006-2.423,2.369-3.916c0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65\r\n\t\t\t\tl-0.214,0.901L24.45,25.935h6.372C32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.086\r\n\t\t\t\tc0.16,0,0.255,0.026,0.302,0.043c0.01,0.067,0.018,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082\r\n\t\t\t\tc-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z M60.612,16.282c-1.296-1.592-2.929-2.913-4.783-3.928\r\n\t\t\t\tc-0.61-2.671-1.803-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0H12.265l-0.787,3.458L1.224,48.519L0,53.901v0.031\r\n\t\t\t\th10.042l-1.058,4.661L7.752,64h22.802l0.774-3.476l2.55-11.441h6.089c11.803,0,21.03-7.176,23.507-18.278\r\n\t\t\t\tc0.368-1.649,0.522-3.163,0.526-4.557v-0.456C63.904,21.396,62.235,18.281,60.612,16.282z M5.606,49.491L15.861,4.43H39\r\n\t\t\t\tc4.283,0,9.005,1.916,11.316,5.974c0.796,1.398,1.306,3.051,1.413,4.969c0.075,1.334-0.044,2.801-0.4,4.398\r\n\t\t\t\tc-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.462,5.651-13.979,5.732c-0.116,0.003-0.228,0.013-0.343,0.013h-9.701\r\n\t\t\t\tl-3.324,14.926H5.606z M59.087,29.848c-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.638h8.147\r\n\t\t\t\tl0.777-3.485l2.547-11.441h6.09c11.801,0,21.027-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696\r\n\t\t\t\tC58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.878,24.706c0.474-0.299,0.925-0.635,1.335-1.018\r\n\t\t\t\tc1.145-1.061,2.006-2.423,2.369-3.916c0.633-2.24-0.102-4.184-1.617-5.26c-0.797-0.566-1.808-0.901-2.955-0.901h-6.65\r\n\t\t\t\tl-0.214,0.901L24.45,25.935h6.372C32.234,25.935,33.643,25.473,34.878,24.706z M30.925,18.05h3.086\r\n\t\t\t\tc0.16,0,0.255,0.026,0.302,0.043c0.01,0.067,0.018,0.22-0.057,0.48l-0.023,0.082l-0.018,0.082\r\n\t\t\t\tc-0.346,1.418-1.994,2.76-3.394,2.76h-0.712L30.925,18.05z M60.612,16.282c-1.296-1.592-2.929-2.913-4.783-3.928\r\n\t\t\t\tc-0.61-2.671-1.803-4.704-2.976-6.148C49.714,2.346,44.585,0.033,39.117,0H12.265l-0.787,3.458L1.224,48.519L0,53.901v0.031\r\n\t\t\t\th10.042l-1.058,4.661L7.752,64h22.802l0.774-3.476l2.55-11.441h6.089c11.803,0,21.03-7.176,23.507-18.278\r\n\t\t\t\tc0.368-1.649,0.522-3.163,0.526-4.557v-0.456C63.904,21.396,62.235,18.281,60.612,16.282z M5.606,49.491L15.861,4.43H39\r\n\t\t\t\tc4.283,0,9.005,1.916,11.316,5.974c0.796,1.398,1.306,3.051,1.413,4.969c0.075,1.334-0.044,2.801-0.4,4.398\r\n\t\t\t\tc-0.812,3.64-2.499,6.678-4.796,9.048c-3.51,3.625-8.462,5.651-13.979,5.732c-0.116,0.003-0.228,0.013-0.343,0.013h-9.701\r\n\t\t\t\tl-3.324,14.926H5.606z M59.087,29.848c-2.077,9.316-9.837,14.796-19.12,14.796h-9.699L26.943,59.57H13.366l1.283-5.638h8.147\r\n\t\t\t\tl0.777-3.485l2.547-11.441h6.09c11.801,0,21.027-7.176,23.505-18.275c0.209-0.941,0.348-1.837,0.434-2.696\r\n\t\t\t\tC58.802,20.547,60.295,24.44,59.087,29.848z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"linkedin_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"linkedin","display":"inline"},"children":[{"name":"g","attribs":{"id":"linkedin","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.798,62.987h14.315V22.368H0.798V62.987z M48.433,21.087\r\n\t\t\t\tc-5.924,0-9.192,1.972-12.952,6.749v-5.469H21.189v40.619h14.291V40.914c0-4.658,2.24-9.214,7.596-9.214\r\n\t\t\t\tc5.356,0,6.673,4.555,6.673,9.103v22.184H64V39.896C64,23.854,54.362,21.087,48.433,21.087z M7.982,2.013\r\n\t\t\t\tC3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.798,62.987h14.315V22.368H0.798V62.987z M48.433,21.087\r\n\t\t\t\tc-5.924,0-9.192,1.972-12.952,6.749v-5.469H21.189v40.619h14.291V40.914c0-4.658,2.24-9.214,7.596-9.214\r\n\t\t\t\tc5.356,0,6.673,4.555,6.673,9.103v22.184H64V39.896C64,23.854,54.362,21.087,48.433,21.087z M7.982,2.013\r\n\t\t\t\tC3.572,2.013,0,5.222,0,9.183c0,3.958,3.572,7.162,7.982,7.162c4.406,0,7.978-3.205,7.978-7.162\r\n\t\t\t\tC15.96,5.222,12.388,2.013,7.982,2.013z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"spotify_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"spotify","display":"inline"},"children":[{"name":"g","attribs":{"id":"spotify","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.671,55.675c-4.217,0-7.496,1.355-10.156,4.239\r\n\t\t\t\tc4.795,2.869,9.491,4.079,15.486,4.079c3.087,0,4.405-0.132,7.23-0.948C36.949,58.528,32.591,55.675,26.671,55.675z\r\n\t\t\t\t M32.001,0.008c-17.67,0-31.993,14.323-31.993,31.993c0,8.223,3.103,15.72,8.202,21.387c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.892,12.458c8.691-5.72,14.43-15.56,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.32,1.788-1.936c0.713-0.131,18.112-3.927,30.538,4.408\r\n\t\t\t\tc0.923,0.726,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.48,0-0.927-0.137-1.308-0.37\r\n\t\t\t\th-0.001c-13.9-8.339-29.991-4.409-32.002-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.196,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.041,4.852c0.934,0.507,1.566,1.497,1.566,2.635C56.581,24.7,55.237,26.042,53.583,26.042z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.671,55.675c-4.217,0-7.496,1.355-10.156,4.239\r\n\t\t\t\tc4.795,2.869,9.491,4.079,15.486,4.079c3.087,0,4.405-0.132,7.23-0.948C36.949,58.528,32.591,55.675,26.671,55.675z\r\n\t\t\t\t M32.001,0.008c-17.67,0-31.993,14.323-31.993,31.993c0,8.223,3.103,15.72,8.202,21.387c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.892,12.458c8.691-5.72,14.43-15.56,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.32,1.788-1.936c0.713-0.131,18.112-3.927,30.538,4.408\r\n\t\t\t\tc0.923,0.726,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.48,0-0.927-0.137-1.308-0.37\r\n\t\t\t\th-0.001c-13.9-8.339-29.991-4.409-32.002-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.196,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.041,4.852c0.934,0.507,1.566,1.497,1.566,2.635C56.581,24.7,55.237,26.042,53.583,26.042z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"youtube_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"youtube","display":"inline"},"children":[{"name":"g","attribs":{"id":"youtube","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944\r\n\t\t\t\tv26.474c0,5.316,6.101,8.559,11.534,8.559H54.15c5.432,0,9.835-3.242,9.835-8.559V18.976\r\n\t\t\t\tC63.985,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044l14.03,10.168L27.856,42.205z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944\r\n\t\t\t\tv26.474c0,5.316,6.101,8.559,11.534,8.559H54.15c5.432,0,9.835-3.242,9.835-8.559V18.976\r\n\t\t\t\tC63.985,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044l14.03,10.168L27.856,42.205z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"vimeo_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"vimeo","display":"inline"},"children":[{"name":"g","attribs":{"id":"vimeo","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.348,18.728c2.748-0.624,7.538-1.522,8.529,1.306\r\n\t\t\t\tc1.246,8.476-4.612,15.408-9.84,19.602C24.919,34.128,32.524,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255\r\n\t\t\t\tC4.788,13.151-0.013,16.758,0,19.531v0.073c0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306\r\n\t\t\t\tc8.471,6.948,5.793,37.749,18.37,39.856c4.882,0.818,11.08-3.648,14.433-6.534c4.625-3.981,9.924-10.722,13.777-16.335\r\n\t\t\t\tc0,0,9.677-12.741,8.529-23.521C61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.348,18.728c2.748-0.624,7.538-1.522,8.529,1.306\r\n\t\t\t\tc1.246,8.476-4.612,15.408-9.84,19.602C24.919,34.128,32.524,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255\r\n\t\t\t\tC4.788,13.151-0.013,16.758,0,19.531v0.073c0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306\r\n\t\t\t\tc8.471,6.948,5.793,37.749,18.37,39.856c4.882,0.818,11.08-3.648,14.433-6.534c4.625-3.981,9.924-10.722,13.777-16.335\r\n\t\t\t\tc0,0,9.677-12.741,8.529-23.521C61.789-4.107,36.207,5.801,36.348,18.728z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"google_plus_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"google_plus","display":"inline"},"children":[{"name":"g","attribs":{"id":"google_plus","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522\r\n\t\t\t\tc0,6.666,5.158,12.23,12.857,12.23c0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142\r\n\t\t\t\tc0,1.853,1.014,3.378,2.297,4.604c-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533\r\n\t\t\t\tc0,5.987,8.158,10.472,17.533,10.472c10.686,0,16.463-6.689,16.463-12.678c0-4.799-1.318-7.675-5.777-10.773\r\n\t\t\t\tc-1.525-1.059-4.443-3.641-4.443-5.156c0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407\r\n\t\t\t\tc0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z M29.574,46.295c0.133,0.556,0.207,1.128,0.207,1.711\r\n\t\t\t\tc0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.537-11.158-8.375c0-4.742,5.805-8.69,12.283-8.622\r\n\t\t\t\tc1.512,0.017,2.92,0.255,4.199,0.664C26.34,42.201,28.862,43.558,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.471,4.995c0,0-12.66,0-16.879,0C11.023,4.995,3.9,10.999,3.9,17.522\r\n\t\t\t\tc0,6.666,5.158,12.23,12.857,12.23c0.535,0,1.055,0.083,1.565,0.046c-0.498,0.94-0.855,2.045-0.855,3.142\r\n\t\t\t\tc0,1.853,1.014,3.378,2.297,4.604c-0.969,0-1.904,0.04-2.926,0.04C7.465,37.584,0,43.452,0,49.533\r\n\t\t\t\tc0,5.987,8.158,10.472,17.533,10.472c10.686,0,16.463-6.689,16.463-12.678c0-4.799-1.318-7.675-5.777-10.773\r\n\t\t\t\tc-1.525-1.059-4.443-3.641-4.443-5.156c0-1.776,0.518-2.653,3.24-4.742c2.791-2.143,4.955-4.903,4.955-8.407\r\n\t\t\t\tc0-4.17-2.08-7.36-5.629-9.325h5.352L35.471,4.995z M29.574,46.295c0.133,0.556,0.207,1.128,0.207,1.711\r\n\t\t\t\tc0,4.838-3.176,8.128-12.283,8.128c-6.478,0-11.158-3.537-11.158-8.375c0-4.742,5.805-8.69,12.283-8.622\r\n\t\t\t\tc1.512,0.017,2.92,0.255,4.199,0.664C26.34,42.201,28.862,43.558,29.574,46.295z M19.201,28.248\r\n\t\t\t\tc-4.349-0.126-8.482-4.778-9.232-10.387c-0.752-5.609,2.164-9.9,6.512-9.773c4.349,0.127,8.67,4.629,9.422,10.236\r\n\t\t\t\tC26.652,23.934,23.547,28.377,19.201,28.248z M54,14.817v-9.76h-4v9.76H40v3.99h10v9.76h4v-9.76h10v-3.99H54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"skype_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"skype","display":"inline"},"children":[{"name":"g","attribs":{"id":"skype","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.539,36.935C59.825,35.33,60,33.687,60,32C60,16.536,47.464,4,32,4\r\n\t\t\t\tc-1.687,0-3.33,0.175-4.934,0.461C24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066\r\n\t\t\t\tC4.175,28.67,4,30.313,4,32c0,15.464,12.536,28,28,28c1.687,0,3.33-0.175,4.935-0.461C39.809,62.297,43.702,64,48,64\r\n\t\t\t\tc8.837,0,16-7.163,16-16C64,43.703,62.297,39.809,59.539,36.935z M44.331,43.208c-1.105,1.506-2.74,2.7-4.857,3.548\r\n\t\t\t\tc-2.095,0.838-4.608,1.265-7.468,1.265c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.573,0.995-2.171c0.655-0.594,1.494-0.894,2.495-0.894\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.724,1.372,2.342\r\n\t\t\t\tc0.471,0.6,1.144,1.101,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.407,4.814-1.208\r\n\t\t\t\tc1.191-0.781,1.768-1.721,1.768-2.871c0-0.908-0.302-1.621-0.922-2.183c-0.652-0.586-1.509-1.039-2.55-1.355\r\n\t\t\t\tc-1.087-0.324-2.562-0.679-4.386-1.047c-2.48-0.509-4.587-1.118-6.264-1.802c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.904,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.833,1.635,2.324,2.515c0.494,0.886,0.747,1.77,0.747,2.624c0,0.823-0.33,1.571-0.981,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.885,0-1.578-0.209-2.059-0.616c-0.448-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.804-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.144,0.717,2.05,1.637,2.694,2.738c0.646,1.105,0.972,2.469,0.972,4.053\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.539,36.935C59.825,35.33,60,33.687,60,32C60,16.536,47.464,4,32,4\r\n\t\t\t\tc-1.687,0-3.33,0.175-4.934,0.461C24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066\r\n\t\t\t\tC4.175,28.67,4,30.313,4,32c0,15.464,12.536,28,28,28c1.687,0,3.33-0.175,4.935-0.461C39.809,62.297,43.702,64,48,64\r\n\t\t\t\tc8.837,0,16-7.163,16-16C64,43.703,62.297,39.809,59.539,36.935z M44.331,43.208c-1.105,1.506-2.74,2.7-4.857,3.548\r\n\t\t\t\tc-2.095,0.838-4.608,1.265-7.468,1.265c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.573,0.995-2.171c0.655-0.594,1.494-0.894,2.495-0.894\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.724,1.372,2.342\r\n\t\t\t\tc0.471,0.6,1.144,1.101,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.407,4.814-1.208\r\n\t\t\t\tc1.191-0.781,1.768-1.721,1.768-2.871c0-0.908-0.302-1.621-0.922-2.183c-0.652-0.586-1.509-1.039-2.55-1.355\r\n\t\t\t\tc-1.087-0.324-2.562-0.679-4.386-1.047c-2.48-0.509-4.587-1.118-6.264-1.802c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.904,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.833,1.635,2.324,2.515c0.494,0.886,0.747,1.77,0.747,2.624c0,0.823-0.33,1.571-0.981,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.885,0-1.578-0.209-2.059-0.616c-0.448-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.804-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.144,0.717,2.05,1.637,2.694,2.738c0.646,1.105,0.972,2.469,0.972,4.053\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"foursquare_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"foursquare","display":"inline"},"children":[{"name":"g","attribs":{"id":"foursquare","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.524,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245\r\n\t\t\t\tc-2.46-1.881-5.468-3.047-8.815-3.047c-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311\r\n\t\t\t\tc0.623,0,1.222-0.105,1.825-0.181l13.387,12.458l34.24-30.692V5.018L41.524,27.182z M14.725,43.102\r\n\t\t\t\tc-0.057,0-0.109,0.016-0.166,0.016c-5.998,0-10.877-4.805-10.877-10.71c0-5.907,4.879-10.712,10.877-10.712\r\n\t\t\t\tc2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722C25.434,38.257,20.642,43.013,14.725,43.102z M59.8,27.491\r\n\t\t\t\tL48.426,37.908L30.158,54.157l-9.723-8.753c2.691-1.21,4.978-3.209,6.487-5.69l3.794,3.924l13.511-13.91L59.8,13.77V27.491z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.524,27.182l-8.099-8.285c-2.222-2.189-5.667-2.189-7.89,0l-2.201,2.245\r\n\t\t\t\tc-2.46-1.881-5.468-3.047-8.815-3.047c-8.013,0-14.513,6.42-14.513,14.313c0,7.891,6.529,14.311,14.543,14.311\r\n\t\t\t\tc0.623,0,1.222-0.105,1.825-0.181l13.387,12.458l34.24-30.692V5.018L41.524,27.182z M14.725,43.102\r\n\t\t\t\tc-0.057,0-0.109,0.016-0.166,0.016c-5.998,0-10.877-4.805-10.877-10.71c0-5.907,4.879-10.712,10.877-10.712\r\n\t\t\t\tc2.338,0,4.494,0.748,6.27,1.991c2.776,1.942,4.604,5.119,4.604,8.722C25.434,38.257,20.642,43.013,14.725,43.102z M59.8,27.491\r\n\t\t\t\tL48.426,37.908L30.158,54.157l-9.723-8.753c2.691-1.21,4.978-3.209,6.487-5.69l3.794,3.924l13.511-13.91L59.8,13.77V27.491z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"dropbox_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dropbox","display":"inline"},"children":[{"name":"g","attribs":{"id":"dropbox","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.04,39.477L18.826,50.345l-5.654-3.662v4.106L32.04,62.003l18.865-11.215\r\n\t\t\t\tv-4.106l-5.653,3.662L32.04,39.477z M0.001,35.846L18.826,48.03L32,37.134L13.018,25.513L0.001,35.846z M32,37.134L45.174,48.03\r\n\t\t\t\tl18.826-12.184L50.982,25.513L32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176\r\n\t\t\t\tL45.174,2.997L32,13.893l18.982,11.619L63.999,15.176z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32.04,39.477L18.826,50.345l-5.654-3.662v4.106L32.04,62.003l18.865-11.215\r\n\t\t\t\tv-4.106l-5.653,3.662L32.04,39.477z M0.001,35.846L18.826,48.03L32,37.134L13.018,25.513L0.001,35.846z M32,37.134L45.174,48.03\r\n\t\t\t\tl18.826-12.184L50.982,25.513L32,37.134z M18.826,2.997L0.001,15.176l13.017,10.337L32,13.893L18.826,2.997z M63.999,15.176\r\n\t\t\t\tL45.174,2.997L32,13.893l18.982,11.619L63.999,15.176z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"tumblr_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"tumblr","display":"inline"},"children":[{"name":"g","attribs":{"id":"tumblr","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.41,53.584c-1.816,0-3.423-0.428-4.834-1.275\r\n\t\t\t\tc-1.063-0.629-2.039-1.718-2.428-2.767c-0.391-1.049-0.343-3.19-0.343-6.905V26.215h14.728V14.788H34.806V-0.028h-9.062\r\n\t\t\t\tc-0.405,3.308-1.15,6.026-2.231,8.16c-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654v22.455\r\n\t\t\t\tc0,2.933,0.305,5.167,0.915,6.708c0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.36,3.487,2.42,5.725,3.162\r\n\t\t\t\tc2.237,0.734,3.955,1.101,6.869,1.101c2.565,0,4.95-0.258,7.16-0.779c2.207-0.52,4.673-1.428,7.394-2.711v-10.1\r\n\t\t\t\tC48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.41,53.584c-1.816,0-3.423-0.428-4.834-1.275\r\n\t\t\t\tc-1.063-0.629-2.039-1.718-2.428-2.767c-0.391-1.049-0.343-3.19-0.343-6.905V26.215h14.728V14.788H34.806V-0.028h-9.062\r\n\t\t\t\tc-0.405,3.308-1.15,6.026-2.231,8.16c-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654v22.455\r\n\t\t\t\tc0,2.933,0.305,5.167,0.915,6.708c0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.36,3.487,2.42,5.725,3.162\r\n\t\t\t\tc2.237,0.734,3.955,1.101,6.869,1.101c2.565,0,4.95-0.258,7.16-0.779c2.207-0.52,4.673-1.428,7.394-2.711v-10.1\r\n\t\t\t\tC48.844,52.527,45.637,53.584,42.41,53.584z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"instagram_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"instagram","display":"inline"},"children":[{"name":"g","attribs":{"id":"instagram","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8\r\n\t\t\t\tC64,3.582,60.418,0,56,0z M19.673,30.673c0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92\r\n\t\t\t\tc0.029-0.136,0.069-0.267,0.103-0.401c0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389\r\n\t\t\t\tc0.1-0.272,0.204-0.541,0.322-0.804c0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2\r\n\t\t\t\tc4.989,0,9.278,2.953,11.246,7.2h0.011c0.021,0.045,0.035,0.092,0.055,0.137c0.118,0.263,0.222,0.532,0.322,0.804\r\n\t\t\t\tc0.048,0.13,0.099,0.257,0.142,0.389c0.091,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.103,0.401\r\n\t\t\t\tc0.065,0.302,0.11,0.61,0.153,0.92c0.017,0.125,0.043,0.247,0.057,0.374C44.373,31.109,44.4,31.551,44.4,32\r\n\t\t\t\tc0,6.849-5.552,12.4-12.4,12.4c-6.848,0-12.4-5.552-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2H10.4c-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32\r\n\t\t\t\tc0,10.825,8.775,19.6,19.6,19.6c10.825,0,19.6-8.775,19.6-19.6c0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2h-6.4c-1.767,0-3.2-1.433-3.2-3.2v-6.4c0-1.767,1.433-3.2,3.2-3.2h6.4c1.767,0,3.2,1.432,3.2,3.2V16.8\r\n\t\t\t\tz"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,0H8C3.582,0,0,3.582,0,8v48c0,4.418,3.582,8,8,8h48c4.418,0,8-3.582,8-8V8\r\n\t\t\t\tC64,3.582,60.418,0,56,0z M19.673,30.673c0.013-0.127,0.04-0.249,0.057-0.374c0.042-0.31,0.088-0.618,0.153-0.92\r\n\t\t\t\tc0.029-0.136,0.069-0.267,0.103-0.401c0.072-0.286,0.147-0.571,0.238-0.849c0.044-0.132,0.095-0.259,0.142-0.389\r\n\t\t\t\tc0.1-0.272,0.204-0.541,0.322-0.804c0.02-0.045,0.034-0.092,0.055-0.137h0.011c1.968-4.247,6.257-7.2,11.246-7.2\r\n\t\t\t\tc4.989,0,9.278,2.953,11.246,7.2h0.011c0.021,0.045,0.035,0.092,0.055,0.137c0.118,0.263,0.222,0.532,0.322,0.804\r\n\t\t\t\tc0.048,0.13,0.099,0.257,0.142,0.389c0.091,0.278,0.166,0.562,0.238,0.849c0.034,0.134,0.074,0.265,0.103,0.401\r\n\t\t\t\tc0.065,0.302,0.11,0.61,0.153,0.92c0.017,0.125,0.043,0.247,0.057,0.374C44.373,31.109,44.4,31.551,44.4,32\r\n\t\t\t\tc0,6.849-5.552,12.4-12.4,12.4c-6.848,0-12.4-5.552-12.4-12.4C19.6,31.551,19.627,31.109,19.673,30.673z M56.8,53.6\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2H10.4c-1.767,0-3.2-1.433-3.2-3.2V26.8h5.899C12.644,28.456,12.4,30.2,12.4,32\r\n\t\t\t\tc0,10.825,8.775,19.6,19.6,19.6c10.825,0,19.6-8.775,19.6-19.6c0-1.8-0.244-3.544-0.699-5.2H56.8V53.6z M56.8,16.8\r\n\t\t\t\tc0,1.767-1.433,3.2-3.2,3.2h-6.4c-1.767,0-3.2-1.433-3.2-3.2v-6.4c0-1.767,1.433-3.2,3.2-3.2h6.4c1.767,0,3.2,1.432,3.2,3.2V16.8\r\n\t\t\t\tz"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"twitter_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"twitter","display":"inline"},"children":[{"name":"g","attribs":{"id":"twitter","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.569,14.179v-0.032c0.557-0.218,0.997-0.68,1.441-1.022\r\n\t\t\t\tc2-1.541,3.301-3.57,4.26-6.164c-0.544,0.298-1.089,0.596-1.634,0.894c-1.68,0.853-4.532,2.079-6.727,2.267\r\n\t\t\t\tc-2.586-2.356-5.292-4.209-10.378-4.12c-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.024,0.508-2.915,0.894\r\n\t\t\t\tc-3.724,1.616-6.263,4.631-7.431,8.814c-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767\r\n\t\t\t\tC18.69,19.594,14.372,17.29,9.578,13.54C8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43\r\n\t\t\t\tC4.463,8.42,4.442,8.409,4.421,8.398c-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912\r\n\t\t\t\tc0.664,0.826,1.741,1.338,2.402,2.108h0.064c-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766\r\n\t\t\t\tc-0.448-0.213-0.897-0.426-1.345-0.639c-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.635,4.292,1.724\r\n\t\t\t\tc-0.867,0.732-4.575,0.396-5.862,0.255c1.609,4.142,4.081,6.9,8.328,8.399c1.096,0.387,2.433,0.729,3.908,0.703\r\n\t\t\t\tc-0.783,0.93-2.454,1.687-3.556,2.331c-2.272,1.329-4.91,2.191-7.88,2.842c-1.191,0.261-2.457,0.207-3.748,0.415\r\n\t\t\t\tc-1.427,0.23-2.92-0.122-4.196-0.16c0.384,0.234,0.769,0.469,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916\r\n\t\t\t\tc2.379,1.04,4.914,1.826,7.72,2.523c5.658,1.405,13.64,0.773,18.579-0.766c13.754-4.286,22.443-14.292,25.722-29.03\r\n\t\t\t\tc0.564-2.535,0.646-5.414,0.609-8.431c0.683-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032\r\n\t\t\t\tC61.768,12.864,59.418,14.149,56.569,14.179z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.569,14.179v-0.032c0.557-0.218,0.997-0.68,1.441-1.022\r\n\t\t\t\tc2-1.541,3.301-3.57,4.26-6.164c-0.544,0.298-1.089,0.596-1.634,0.894c-1.68,0.853-4.532,2.079-6.727,2.267\r\n\t\t\t\tc-2.586-2.356-5.292-4.209-10.378-4.12c-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.024,0.508-2.915,0.894\r\n\t\t\t\tc-3.724,1.616-6.263,4.631-7.431,8.814c-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767\r\n\t\t\t\tC18.69,19.594,14.372,17.29,9.578,13.54C8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43\r\n\t\t\t\tC4.463,8.42,4.442,8.409,4.421,8.398c-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912\r\n\t\t\t\tc0.664,0.826,1.741,1.338,2.402,2.108h0.064c-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766\r\n\t\t\t\tc-0.448-0.213-0.897-0.426-1.345-0.639c-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.635,4.292,1.724\r\n\t\t\t\tc-0.867,0.732-4.575,0.396-5.862,0.255c1.609,4.142,4.081,6.9,8.328,8.399c1.096,0.387,2.433,0.729,3.908,0.703\r\n\t\t\t\tc-0.783,0.93-2.454,1.687-3.556,2.331c-2.272,1.329-4.91,2.191-7.88,2.842c-1.191,0.261-2.457,0.207-3.748,0.415\r\n\t\t\t\tc-1.427,0.23-2.92-0.122-4.196-0.16c0.384,0.234,0.769,0.469,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916\r\n\t\t\t\tc2.379,1.04,4.914,1.826,7.72,2.523c5.658,1.405,13.64,0.773,18.579-0.766c13.754-4.286,22.443-14.292,25.722-29.03\r\n\t\t\t\tc0.564-2.535,0.646-5.414,0.609-8.431c0.683-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032\r\n\t\t\t\tC61.768,12.864,59.418,14.149,56.569,14.179z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"facebook_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook","display":"inline"},"children":[{"name":"g","attribs":{"id":"facebook","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.058-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932V59.28\r\n\t\t\t\tc0,2.724,2.207,4.727,4.929,4.727h54.116c2.722,0,4.929-2.002,4.929-4.727V4.926C63.987,2.202,61.781-0.006,59.058-0.006z\r\n\t\t\t\t M33.615,21.199c-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692\r\n\t\t\t\tv2.691h8.148l-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.338,0.994,8.208,1.803L33.615,21.199z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.058-0.006H4.942c-2.722,0-4.929,2.208-4.929,4.932V59.28\r\n\t\t\t\tc0,2.724,2.207,4.727,4.929,4.727h54.116c2.722,0,4.929-2.002,4.929-4.727V4.926C63.987,2.202,61.781-0.006,59.058-0.006z\r\n\t\t\t\t M33.615,21.199c-1.562-0.912-2.803-1.634-4.351-1.634c-1.523,0-2.836,0.383-3.497,1.024c-0.661,0.64-0.992,1.872-0.992,3.692\r\n\t\t\t\tv2.691h8.148l-1.768,7.494h-6.381v24.894H14.545V34.465H9.759v-7.494h4.787v-2.859c0-3.012,0.355-4.817,1.067-6.301\r\n\t\t\t\tc0.711-1.483,2.089-3.134,3.998-4.066c1.909-0.932,4.741-1.399,7.661-1.399c2.995,0,5.338,0.994,8.208,1.803L33.615,21.199z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"facebook_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"facebook_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"facebook_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.515-9.593\r\n\t\t\t\tc1.902-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303c-11.982,0-15.903-0.501-20.015,3.675\r\n\t\t\t\tc-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938c-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0\r\n\t\t\t\tv-32.01c0,0,5.173,0,8.042,0c0.626-3.385,1.236-6.036,2.088-9.947H36.963z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.963,22.048c0.092-3.345-0.525-8.003,0.515-9.593\r\n\t\t\t\tc1.902-2.911,9.496-2.154,9.496-2.154s0-6.612,0-10.303c-11.982,0-15.903-0.501-20.015,3.675\r\n\t\t\t\tc-3.658,3.715-3.771,11.011-4.072,18.375h-5.872V32.12h5.938c-0.002,10.504,0.003,22.016,0,31.884c4.462,0,13.954,0,13.954,0\r\n\t\t\t\tv-32.01c0,0,5.173,0,8.042,0c0.626-3.385,1.236-6.036,2.088-9.947H36.963z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"pinterest_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest","display":"inline"},"children":[{"name":"g","attribs":{"id":"pinterest","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396\r\n\t\t\t\tc-0.082-2.23-0.002-4.891,0.562-7.302c0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084\r\n\t\t\t\tc0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826c0,2.936-1.873,7.326-2.84,11.393\r\n\t\t\t\tc-0.801,3.406,1.715,6.188,5.074,6.188c6.08,0,10.176-7.815,10.176-17.078c0-7.035-4.734-12.307-13.359-12.307\r\n\t\t\t\tc-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299c0.594,0.701,0.674,0.984,0.457,1.793\r\n\t\t\t\tc-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.813-0.875,1.098-1.609,0.799c-4.484-1.828-6.578-6.742-6.578-12.266\r\n\t\t\t\tc0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395c0,12.605-7.006,22.014-17.328,22.014\r\n\t\t\t\tc-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.392-2.262,8.826c-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.571,28.94,64,32,64\r\n\t\t\t\tc17.672,0,32-14.328,32-32C64,14.328,49.672,0,32,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.328,0,0,14.328,0,32c0,13.172,7.961,24.484,19.33,29.396\r\n\t\t\t\tc-0.082-2.23-0.002-4.891,0.562-7.302c0.621-2.604,4.137-17.5,4.137-17.5s-1.027-2.053-1.027-5.084\r\n\t\t\t\tc0-4.754,2.762-8.312,6.193-8.312c2.922,0,4.334,2.199,4.334,4.826c0,2.936-1.873,7.326-2.84,11.393\r\n\t\t\t\tc-0.801,3.406,1.715,6.188,5.074,6.188c6.08,0,10.176-7.815,10.176-17.078c0-7.035-4.734-12.307-13.359-12.307\r\n\t\t\t\tc-9.738,0-15.815,7.265-15.815,15.383c0,2.797,0.828,4.773,2.123,6.299c0.594,0.701,0.674,0.984,0.457,1.793\r\n\t\t\t\tc-0.156,0.588-0.502,2.01-0.65,2.578c-0.213,0.813-0.875,1.098-1.609,0.799c-4.484-1.828-6.578-6.742-6.578-12.266\r\n\t\t\t\tc0-9.125,7.695-20.064,22.953-20.064c12.266,0,20.334,8.875,20.334,18.395c0,12.605-7.006,22.014-17.328,22.014\r\n\t\t\t\tc-3.469,0-6.732-1.875-7.844-4c0,0-1.871,7.392-2.262,8.826c-0.674,2.439-1.973,4.877-3.176,6.797C25.982,63.571,28.94,64,32,64\r\n\t\t\t\tc17.672,0,32-14.328,32-32C64,14.328,49.672,0,32,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"pinterest_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"pinterest_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"pinterest_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.989,15.676c-0.967-3.324-2.492-5.987-4.586-8.274\r\n\t\t\t\tc-2.034-2.223-4.437-4.016-7.45-5.364c-2.854-1.276-6.646-2.221-10.815-2.024c-1.427,0.067-2.741,0.144-4.012,0.329\r\n\t\t\t\tc-3.83,0.557-6.978,1.715-9.768,3.364c-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452\r\n\t\t\t\tc-0.493,2.498-0.494,5.513,0,8.096c0.812,4.253,2.794,7.533,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.607\r\n\t\t\t\tc1.241-0.025,1.27-1.492,1.545-2.555c0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493\r\n\t\t\t\tc-1.046-1.586-1.695-3.622-1.695-6.249c0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831\r\n\t\t\t\tc3.188-0.546,6.777-0.264,9.37,0.582c2.614,0.853,4.763,2.371,6.28,4.276c1.593,2.002,2.598,4.583,2.816,7.793\r\n\t\t\t\tc0.118,1.739-0.006,3.502-0.174,5.035c-0.524,4.757-1.906,8.754-4.186,11.715c-1.426,1.852-3.56,3.814-6.629,3.922\r\n\t\t\t\tc-1.738,0.061-2.998-0.365-4.062-1.139c-1.027-0.748-1.779-1.743-2.119-3.187c-0.369-1.574,0.078-3.072,0.473-4.53\r\n\t\t\t\tc0.798-2.94,1.675-5.229,2.342-8.274c0.297-1.352,0.568-3.19,0.2-4.731c-0.346-1.445-1.087-2.467-2.168-3.112\r\n\t\t\t\tc-1.049-0.626-2.777-0.872-4.336-0.33c-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858\r\n\t\t\t\tc0.158,1.514,0.518,2.809,1.071,4.251c0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408\r\n\t\t\t\tc-0.636,2.708-1.321,5.419-1.47,8.679c-0.131,2.86-0.371,5.802-0.019,8.349c0.065,0.469,0.094,0.792,0.424,0.861\r\n\t\t\t\tc0.433,0.089,0.127,0.755,1.564-0.911c2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.933,1.256-4.069,1.794-6.173\r\n\t\t\t\tc0.546-2.134,1.072-4.318,1.595-6.401c0.804,1.414,1.939,2.349,3.29,3.112c1.362,0.769,2.98,1.306,4.959,1.442\r\n\t\t\t\tc2.037,0.142,3.94-0.222,5.607-0.709c1.681-0.49,3.162-1.225,4.386-2.024c5.046-3.29,8.409-9.072,9.594-16.142\r\n\t\t\t\tc0.317-1.889,0.77-3.777,0.77-5.921C56.982,19.258,56.492,17.406,55.989,15.676z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55.989,15.676c-0.967-3.324-2.492-5.987-4.586-8.274\r\n\t\t\t\tc-2.034-2.223-4.437-4.016-7.45-5.364c-2.854-1.276-6.646-2.221-10.815-2.024c-1.427,0.067-2.741,0.144-4.012,0.329\r\n\t\t\t\tc-3.83,0.557-6.978,1.715-9.768,3.364c-3.63,2.146-6.612,5.15-8.647,8.906c-0.981,1.809-1.867,4.037-2.343,6.452\r\n\t\t\t\tc-0.493,2.498-0.494,5.513,0,8.096c0.812,4.253,2.794,7.533,6.055,9.336c0.436,0.241,1.082,0.617,1.595,0.607\r\n\t\t\t\tc1.241-0.025,1.27-1.492,1.545-2.555c0.228-0.882,0.761-2.096,0.299-2.91c-0.326-0.574-0.815-0.99-1.146-1.493\r\n\t\t\t\tc-1.046-1.586-1.695-3.622-1.695-6.249c0-3.408,0.833-6.145,2.093-8.526c2.406-4.545,6.493-7.838,12.285-8.831\r\n\t\t\t\tc3.188-0.546,6.777-0.264,9.37,0.582c2.614,0.853,4.763,2.371,6.28,4.276c1.593,2.002,2.598,4.583,2.816,7.793\r\n\t\t\t\tc0.118,1.739-0.006,3.502-0.174,5.035c-0.524,4.757-1.906,8.754-4.186,11.715c-1.426,1.852-3.56,3.814-6.629,3.922\r\n\t\t\t\tc-1.738,0.061-2.998-0.365-4.062-1.139c-1.027-0.748-1.779-1.743-2.119-3.187c-0.369-1.574,0.078-3.072,0.473-4.53\r\n\t\t\t\tc0.798-2.94,1.675-5.229,2.342-8.274c0.297-1.352,0.568-3.19,0.2-4.731c-0.346-1.445-1.087-2.467-2.168-3.112\r\n\t\t\t\tc-1.049-0.626-2.777-0.872-4.336-0.33c-2.453,0.855-4.045,3.201-4.735,5.845c-0.391,1.496-0.531,3.119-0.349,4.858\r\n\t\t\t\tc0.158,1.514,0.518,2.809,1.071,4.251c0.076,0.197-0.143,0.768-0.225,1.114c-1.222,5.192-2.377,10.25-3.588,15.408\r\n\t\t\t\tc-0.636,2.708-1.321,5.419-1.47,8.679c-0.131,2.86-0.371,5.802-0.019,8.349c0.065,0.469,0.094,0.792,0.424,0.861\r\n\t\t\t\tc0.433,0.089,0.127,0.755,1.564-0.911c2.163-2.506,3.811-5.6,5.109-8.805c0.783-1.933,1.256-4.069,1.794-6.173\r\n\t\t\t\tc0.546-2.134,1.072-4.318,1.595-6.401c0.804,1.414,1.939,2.349,3.29,3.112c1.362,0.769,2.98,1.306,4.959,1.442\r\n\t\t\t\tc2.037,0.142,3.94-0.222,5.607-0.709c1.681-0.49,3.162-1.225,4.386-2.024c5.046-3.29,8.409-9.072,9.594-16.142\r\n\t\t\t\tc0.317-1.889,0.77-3.777,0.77-5.921C56.982,19.258,56.492,17.406,55.989,15.676z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"forrst_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"forrst","display":"inline"},"children":[{"name":"g","attribs":{"id":"forrst","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.873,61.947L33.865,0.88c-0.228-0.538-0.747-0.883-1.321-0.883\r\n\t\t\t\ts-1.093,0.345-1.32,0.88L5.127,61.944c-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667\r\n\t\t\t\tL20.714,48c-1.085,0-1.964-0.895-1.964-2c0-1.105,0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929\r\n\t\t\t\tc1.085,0,1.964,0.896,1.964,2v3l5.893-3c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-5.893,3v7l9.821-6\r\n\t\t\t\tc1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663\r\n\t\t\t\tC60.022,62.928,60.066,62.401,59.873,61.947z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M59.873,61.947L33.865,0.88c-0.228-0.538-0.747-0.883-1.321-0.883\r\n\t\t\t\ts-1.093,0.345-1.32,0.88L5.127,61.944c-0.194,0.457-0.15,0.98,0.116,1.396c0.267,0.412,0.719,0.663,1.205,0.663h22.123V50.667\r\n\t\t\t\tL20.714,48c-1.085,0-1.964-0.895-1.964-2c0-1.105,0.879-2,1.964-2l7.857,2.667V34c0-1.104,0.879-2,1.964-2h3.929\r\n\t\t\t\tc1.085,0,1.964,0.896,1.964,2v3l5.893-3c1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-5.893,3v7l9.821-6\r\n\t\t\t\tc1.085,0,1.964,0.895,1.964,2c0,1.104-0.879,2-1.964,2l-9.821,6v12.003h22.123c0.487,0,0.938-0.248,1.205-0.663\r\n\t\t\t\tC60.022,62.928,60.066,62.401,59.873,61.947z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"dribbble_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"dribbble","display":"inline"},"children":[{"name":"g","attribs":{"id":"dribbble","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.866-6.015\r\n\t\t\t\tc-0.802-1.899-1.795-3.727-2.951-5.436c-1.144-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907\r\n\t\t\t\tc-1.709-1.158-3.54-2.149-5.436-2.953c-1.933-0.814-3.957-1.446-6.014-1.863c-2.107-0.433-4.276-0.652-6.442-0.652\r\n\t\t\t\tc-2.169,0-4.338,0.22-6.446,0.652c-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953\r\n\t\t\t\tC12.411,6.61,10.818,7.924,9.37,9.373c-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436\r\n\t\t\t\tc-0.818,1.934-1.446,3.96-1.867,6.015c-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448\r\n\t\t\t\tc0.421,2.056,1.049,4.081,1.867,6.013c0.802,1.896,1.795,3.73,2.951,5.439c1.144,1.694,2.458,3.284,3.904,4.733\r\n\t\t\t\tc1.447,1.446,3.04,2.759,4.734,3.904c1.711,1.155,3.541,2.149,5.437,2.951c1.933,0.819,3.957,1.444,6.013,1.866\r\n\t\t\t\tc2.109,0.435,4.277,0.652,6.446,0.652c2.167,0,4.335-0.217,6.442-0.652c2.057-0.422,4.081-1.047,6.014-1.866\r\n\t\t\t\tc1.896-0.802,3.727-1.795,5.436-2.951c1.694-1.146,3.287-2.458,4.735-3.904c1.446-1.449,2.761-3.039,3.905-4.733\r\n\t\t\t\tc1.155-1.709,2.149-3.542,2.951-5.439c0.817-1.932,1.446-3.957,1.866-6.013c0.432-2.106,0.651-4.275,0.651-6.448\r\n\t\t\t\tC64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67c6.919,0,13.234,2.579,18.049,6.819\r\n\t\t\t\tc-0.067,0.106-3.96,6.03-14.276,9.897C31.104,12.802,25.971,5.982,25.56,5.441C27.626,4.941,29.78,4.67,32.001,4.67z\r\n\t\t\t\t M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018C25.396,5.479,25.426,5.474,25.455,5.464z\r\n\t\t\t\t M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747c-13.123,3.487-24.511,3.35-25.233,3.337\r\n\t\t\t\tC7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.263c-4.352-4.842-7.001-11.244-7.001-18.266\r\n\t\t\t\tc0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894c0.784,1.532,1.532,3.09,2.218,4.645\r\n\t\t\t\tc-0.362,0.101-0.719,0.21-1.077,0.326C19.143,36.979,11.662,50.25,11.662,50.25S11.671,50.258,11.673,50.263z M32.001,59.33\r\n\t\t\t\tc-6.338,0-12.157-2.175-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01s-0.252-0.187-0.612-0.478\r\n\t\t\t\tc0.199,0.164,0.413,0.309,0.617,0.468c0.1-0.216,5.39-11.47,21.443-17.062c0.059-0.023,0.12-0.041,0.181-0.058\r\n\t\t\t\tc3.846,9.993,5.434,18.362,5.838,20.751C39.392,58.559,35.785,59.33,32.001,59.33z M47.272,54.668\r\n\t\t\t\tc-0.278-1.651-1.734-9.671-5.32-19.522c8.823-1.411,16.468,1.009,17.032,1.193C57.767,43.955,53.408,50.523,47.272,54.668z\r\n\t\t\t\t M40.286,30.832c-0.192-0.468-0.387-0.938-0.589-1.411c-0.569-1.337-1.181-2.662-1.817-3.964\r\n\t\t\t\tc10.793-4.405,15.174-10.741,15.226-10.817c3.833,4.655,6.152,10.602,6.215,17.087C58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.35,25.558c-0.42-2.056-1.049-4.081-1.866-6.015\r\n\t\t\t\tc-0.802-1.899-1.795-3.727-2.951-5.436c-1.144-1.694-2.459-3.287-3.905-4.733c-1.448-1.449-3.04-2.764-4.735-3.907\r\n\t\t\t\tc-1.709-1.158-3.54-2.149-5.436-2.953c-1.933-0.814-3.957-1.446-6.014-1.863c-2.107-0.433-4.276-0.652-6.442-0.652\r\n\t\t\t\tc-2.169,0-4.338,0.22-6.446,0.652c-2.056,0.417-4.08,1.049-6.013,1.863c-1.896,0.804-3.727,1.795-5.437,2.953\r\n\t\t\t\tC12.411,6.61,10.818,7.924,9.37,9.373c-1.446,1.446-2.76,3.039-3.904,4.733c-1.156,1.709-2.149,3.537-2.951,5.436\r\n\t\t\t\tc-0.818,1.934-1.446,3.96-1.867,6.015c-0.431,2.103-0.65,4.273-0.65,6.44c0,2.172,0.219,4.342,0.65,6.448\r\n\t\t\t\tc0.421,2.056,1.049,4.081,1.867,6.013c0.802,1.896,1.795,3.73,2.951,5.439c1.144,1.694,2.458,3.284,3.904,4.733\r\n\t\t\t\tc1.447,1.446,3.04,2.759,4.734,3.904c1.711,1.155,3.541,2.149,5.437,2.951c1.933,0.819,3.957,1.444,6.013,1.866\r\n\t\t\t\tc2.109,0.435,4.277,0.652,6.446,0.652c2.167,0,4.335-0.217,6.442-0.652c2.057-0.422,4.081-1.047,6.014-1.866\r\n\t\t\t\tc1.896-0.802,3.727-1.795,5.436-2.951c1.694-1.146,3.287-2.458,4.735-3.904c1.446-1.449,2.761-3.039,3.905-4.733\r\n\t\t\t\tc1.155-1.709,2.149-3.542,2.951-5.439c0.817-1.932,1.446-3.957,1.866-6.013c0.432-2.106,0.651-4.275,0.651-6.448\r\n\t\t\t\tC64.001,29.831,63.783,27.661,63.35,25.558z M32.001,4.67c6.919,0,13.234,2.579,18.049,6.819\r\n\t\t\t\tc-0.067,0.106-3.96,6.03-14.276,9.897C31.104,12.802,25.971,5.982,25.56,5.441C27.626,4.941,29.78,4.67,32.001,4.67z\r\n\t\t\t\t M25.455,5.464c-0.001,0.003-0.005,0.005-0.005,0.005s-0.032,0.008-0.082,0.018C25.396,5.479,25.426,5.474,25.455,5.464z\r\n\t\t\t\t M20.34,7.282c0.363,0.488,5.417,7.34,10.148,15.747c-13.123,3.487-24.511,3.35-25.233,3.337\r\n\t\t\t\tC7.032,17.901,12.718,10.883,20.34,7.282z M11.673,50.263c-4.352-4.842-7.001-11.244-7.001-18.266\r\n\t\t\t\tc0-0.291,0.013-0.576,0.023-0.862c0.481,0.01,13.986,0.316,28.057-3.894c0.784,1.532,1.532,3.09,2.218,4.645\r\n\t\t\t\tc-0.362,0.101-0.719,0.21-1.077,0.326C19.143,36.979,11.662,50.25,11.662,50.25S11.671,50.258,11.673,50.263z M32.001,59.33\r\n\t\t\t\tc-6.338,0-12.157-2.175-16.793-5.795c-0.001,0.002-0.005,0.01-0.005,0.01s-0.252-0.187-0.612-0.478\r\n\t\t\t\tc0.199,0.164,0.413,0.309,0.617,0.468c0.1-0.216,5.39-11.47,21.443-17.062c0.059-0.023,0.12-0.041,0.181-0.058\r\n\t\t\t\tc3.846,9.993,5.434,18.362,5.838,20.751C39.392,58.559,35.785,59.33,32.001,59.33z M47.272,54.668\r\n\t\t\t\tc-0.278-1.651-1.734-9.671-5.32-19.522c8.823-1.411,16.468,1.009,17.032,1.193C57.767,43.955,53.408,50.523,47.272,54.668z\r\n\t\t\t\t M40.286,30.832c-0.192-0.468-0.387-0.938-0.589-1.411c-0.569-1.337-1.181-2.662-1.817-3.964\r\n\t\t\t\tc10.793-4.405,15.174-10.741,15.226-10.817c3.833,4.655,6.152,10.602,6.215,17.087C58.925,31.641,49.676,29.651,40.286,30.832z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"behance_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"behance","display":"inline"},"children":[{"name":"g","attribs":{"id":"behance","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338\r\n\t\t\t\tc0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255c7.179,0,14.027-3.472,14.027-11.584\r\n\t\t\t\tC33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18c3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749\r\n\t\t\t\tH7.991V18.774z M17.338,45.063H7.991V34.098h9.513c3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.063,17.338,45.063z\r\n\t\t\t\t M57.972,15.993H42.028v4.072h15.943V15.993z M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273\r\n\t\t\t\tc0,8.947,5.621,15.212,14.692,15.212c6.514,0,10.62-1.965,12.842-8.79h-6.328c-0.501,1.793-3.064,2.806-6.238,2.806\r\n\t\t\t\tc-4.395,0-6.843-1.855-7.064-6.891h20.756C64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198\r\n\t\t\t\tc0.109-2.234,1.556-5.709,6.563-5.709c3.839,0,5.568,1.684,6.293,5.709H43.262z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25.989,30.502c3.455-1.68,5.402-4.417,5.402-8.338\r\n\t\t\t\tc0-7.438-5.12-10.15-12.686-10.15H0.001v40.192h19.255c7.179,0,14.027-3.472,14.027-11.584\r\n\t\t\t\tC33.284,35.646,30.836,31.901,25.989,30.502z M7.991,18.774h8.18c3.115,0,6.01,0.786,6.01,4.591c0,3.352-2.283,4.749-5.343,4.749\r\n\t\t\t\tH7.991V18.774z M17.338,45.063H7.991V34.098h9.513c3.73,0,6.288,1.625,6.288,5.707C23.792,43.947,20.789,45.063,17.338,45.063z\r\n\t\t\t\t M57.972,15.993H42.028v4.072h15.943V15.993z M50.05,22.502c-8.735,0-14.692,6.601-14.692,15.273\r\n\t\t\t\tc0,8.947,5.621,15.212,14.692,15.212c6.514,0,10.62-1.965,12.842-8.79h-6.328c-0.501,1.793-3.064,2.806-6.238,2.806\r\n\t\t\t\tc-4.395,0-6.843-1.855-7.064-6.891h20.756C64.574,31.219,59.843,22.502,50.05,22.502z M43.262,34.198\r\n\t\t\t\tc0.109-2.234,1.556-5.709,6.563-5.709c3.839,0,5.568,1.684,6.293,5.709H43.262z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"windows_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"windows","display":"inline"},"children":[{"name":"g","attribs":{"id":"windows","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.632\r\n\t\t\t\tV0.015L29.353,5.029z M0.015,54.721l25.809,3.738V33.765H0.015V54.721z M29.353,58.97l34.632,5.015v-30.22H29.353V58.97z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.632\r\n\t\t\t\tV0.015L29.353,5.029z M0.015,54.721l25.809,3.738V33.765H0.015V54.721z M29.353,58.97l34.632,5.015v-30.22H29.353V58.97z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"microsoft_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"microsoft","display":"inline"},"children":[{"name":"g","attribs":{"id":"microsoft","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486\r\n\t\t\t\tc-0.383,0-0.764,0.014-1.149,0.049c-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814l-5.924,22.12\r\n\t\t\t\tc4.476-1.944,8.093-2.72,11.133-2.72c5.01,0,8.484,2.084,11.763,4.435c1.217-4.441,5.348-19.634,6.133-22.527\r\n\t\t\t\tC28.143,32.94,27.25,32.344,26.307,31.796z M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382\r\n\t\t\t\tc1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548c-1.409-0.359-3.003-0.585-4.766-0.585h-0.069\r\n\t\t\t\tc-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86c4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.56,13.559\r\n\t\t\t\tc-6.488,0-10.766-2.974-12.658-4.559l-5.985,22.306c0.016,0.019,0.043,0.035,0.063,0.048c3.292,2.37,7.573,4.287,12.733,4.287\r\n\t\t\t\tc3.412,0,7.204-0.836,11.348-2.941v-0.03c0.009,0,0.021-0.008,0.036-0.014l5.902-21.899\r\n\t\t\t\tC59.641,12.807,55.824,13.559,52.56,13.559z M32.569,36.329l-5.905,22.085c-0.009-0.005,6.904,4.584,12.089,4.584\r\n\t\t\t\tc3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.292-11.184,2.292\r\n\t\t\t\tC38.529,40.813,34.367,37.874,32.569,36.329z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.307,31.796c-2.208-1.219-5.281-2.486-8.648-2.486\r\n\t\t\t\tc-0.383,0-0.764,0.014-1.149,0.049c-3.377,0.302-6.453,1.232-8.613,2.052c-0.638,0.248-1.297,0.518-1.971,0.814l-5.924,22.12\r\n\t\t\t\tc4.476-1.944,8.093-2.72,11.133-2.72c5.01,0,8.484,2.084,11.763,4.435c1.217-4.441,5.348-19.634,6.133-22.527\r\n\t\t\t\tC28.143,32.94,27.25,32.344,26.307,31.796z M18.765,23.98c4.802,0.054,8.205,2.119,11.372,4.382\r\n\t\t\t\tc1.213-4.427,4.814-17.723,6.03-22.209V6.136c0,0-4.244-2.737-7.197-3.548c-1.409-0.359-3.003-0.585-4.766-0.585h-0.069\r\n\t\t\t\tc-3.001,0.062-6.598,0.844-11.02,2.788L7.28,26.86c4.543-1.995,8.228-2.88,11.324-2.88H18.765z M52.56,13.559\r\n\t\t\t\tc-6.488,0-10.766-2.974-12.658-4.559l-5.985,22.306c0.016,0.019,0.043,0.035,0.063,0.048c3.292,2.37,7.573,4.287,12.733,4.287\r\n\t\t\t\tc3.412,0,7.204-0.836,11.348-2.941v-0.03c0.009,0,0.021-0.008,0.036-0.014l5.902-21.899\r\n\t\t\t\tC59.641,12.807,55.824,13.559,52.56,13.559z M32.569,36.329l-5.905,22.085c-0.009-0.005,6.904,4.584,12.089,4.584\r\n\t\t\t\tc3.281,0,7.205-0.865,12.114-3.047l5.691-21.43c-4.318,1.666-8.039,2.292-11.184,2.292\r\n\t\t\t\tC38.529,40.813,34.367,37.874,32.569,36.329z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"appstore_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"appstore","display":"inline"},"children":[{"name":"g","attribs":{"id":"appstore","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.03,28.052L24.522,39.43h17.661c-1.283-2.54-2.981-6.173-5.261-11.377H31.03\r\n\t\t\t\tz M31.735,21.424c0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328\r\n\t\t\t\tL12.899,39.43l-5.433,9.5c-0.409,0.708-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202\r\n\t\t\t\tl4.879-8.532L31.735,21.424z M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.736l-0.666,5.824\r\n\t\t\t\tc-0.093,0.81,0.382,1.101,1.054,0.642l4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35\r\n\t\t\t\tc-0.74,0-1.339,0.601-1.339,1.343v8.692c0,0.741,0.599,1.342,1.339,1.342h8.464L16.322,28.052z M62.65,28.052H49.643\r\n\t\t\t\tc1.53,2.879,2.948,5.589,3.948,7.505c0.692,1.325,1.239,2.372,1.433,2.723c0.202,0.372,0.346,0.756,0.444,1.149h7.183\r\n\t\t\t\tc0.739,0,1.339-0.601,1.339-1.342v-8.692C63.989,28.654,63.389,28.052,62.65,28.052z M52.677,39.575\r\n\t\t\t\tc-0.022-0.038-0.051-0.092-0.079-0.145c-0.358-0.665-1.255-2.394-2.433-4.639c-0.014-0.031-0.029-0.056-0.043-0.087\r\n\t\t\t\tc-0.09-0.173-0.181-0.346-0.275-0.525c-0.067-0.127-0.134-0.257-0.204-0.387c-0.057-0.112-0.117-0.224-0.175-0.339\r\n\t\t\t\tc-0.105-0.199-0.211-0.397-0.317-0.601c-0.034-0.064-0.066-0.127-0.1-0.191c-0.119-0.229-0.241-0.459-0.364-0.693\r\n\t\t\t\tc-0.035-0.066-0.07-0.132-0.106-0.201c-2.714-5.151-6.123-11.492-8.227-14.827c-3.683-5.844-8.599-15.583-9.971-14.89\r\n\t\t\t\tc-1.923,0.961,4.027,13.324,5.997,17.97c1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.774,2.14,0.344,3.169-0.084\r\n\t\t\t\tC51.774,42.729,53.619,41.3,52.677,39.575z M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107\r\n\t\t\t\tc1.657,2.349,5.362,2.454,5.85,4.013C62.065,61.986,63.229,50.061,56.504,53.867z M57.071,48.749l-1.835-3.536\r\n\t\t\t\tc-0.416-0.8-1.392-1.126-2.171-0.726l-2.213,1.144c-0.779,0.405-1.025,1.353-0.546,2.117l2.322,3.681\r\n\t\t\t\tc0.48,0.759,1.491,1.009,2.242,0.553l1.58-0.953C57.205,50.575,57.484,49.549,57.071,48.749z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.03,28.052L24.522,39.43h17.661c-1.283-2.54-2.981-6.173-5.261-11.377H31.03\r\n\t\t\t\tz M31.735,21.424c0.405-0.708,0.16-1.618-0.546-2.03l-3.854-2.214c-0.704-0.41-1.615-0.163-2.019,0.545l-5.908,10.328\r\n\t\t\t\tL12.899,39.43l-5.433,9.5c-0.409,0.708-0.16,1.618,0.546,2.023l3.853,2.224c0.705,0.408,1.615,0.161,2.023-0.545l7.55-13.202\r\n\t\t\t\tl4.879-8.532L31.735,21.424z M10.606,54.878l-3.853-2.219c-0.706-0.408-1.358-0.074-1.452,0.736l-0.666,5.824\r\n\t\t\t\tc-0.093,0.81,0.382,1.101,1.054,0.642l4.977-3.406C11.341,55.999,11.312,55.286,10.606,54.878z M16.322,28.052H1.35\r\n\t\t\t\tc-0.74,0-1.339,0.601-1.339,1.343v8.692c0,0.741,0.599,1.342,1.339,1.342h8.464L16.322,28.052z M62.65,28.052H49.643\r\n\t\t\t\tc1.53,2.879,2.948,5.589,3.948,7.505c0.692,1.325,1.239,2.372,1.433,2.723c0.202,0.372,0.346,0.756,0.444,1.149h7.183\r\n\t\t\t\tc0.739,0,1.339-0.601,1.339-1.342v-8.692C63.989,28.654,63.389,28.052,62.65,28.052z M52.677,39.575\r\n\t\t\t\tc-0.022-0.038-0.051-0.092-0.079-0.145c-0.358-0.665-1.255-2.394-2.433-4.639c-0.014-0.031-0.029-0.056-0.043-0.087\r\n\t\t\t\tc-0.09-0.173-0.181-0.346-0.275-0.525c-0.067-0.127-0.134-0.257-0.204-0.387c-0.057-0.112-0.117-0.224-0.175-0.339\r\n\t\t\t\tc-0.105-0.199-0.211-0.397-0.317-0.601c-0.034-0.064-0.066-0.127-0.1-0.191c-0.119-0.229-0.241-0.459-0.364-0.693\r\n\t\t\t\tc-0.035-0.066-0.07-0.132-0.106-0.201c-2.714-5.151-6.123-11.492-8.227-14.827c-3.683-5.844-8.599-15.583-9.971-14.89\r\n\t\t\t\tc-1.923,0.961,4.027,13.324,5.997,17.97c1.97,4.644,9.656,22.447,11.197,23.224c1.543,0.774,2.14,0.344,3.169-0.084\r\n\t\t\t\tC51.774,42.729,53.619,41.3,52.677,39.575z M56.504,53.867c-0.577,0.555-1.951,1.763-0.289,4.107\r\n\t\t\t\tc1.657,2.349,5.362,2.454,5.85,4.013C62.065,61.986,63.229,50.061,56.504,53.867z M57.071,48.749l-1.835-3.536\r\n\t\t\t\tc-0.416-0.8-1.392-1.126-2.171-0.726l-2.213,1.144c-0.779,0.405-1.025,1.353-0.546,2.117l2.322,3.681\r\n\t\t\t\tc0.48,0.759,1.491,1.009,2.242,0.553l1.58-0.953C57.205,50.575,57.484,49.549,57.071,48.749z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"apple_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"apple","display":"inline"},"children":[{"name":"g","attribs":{"id":"apple","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.112,10.214c2.399-2.709,4.021-6.473,3.579-10.221\r\n\t\t\t\tc-3.459,0.13-7.647,2.14-10.131,4.846c-2.224,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.112,10.214z\r\n\t\t\t\t M50.772,34.008c-0.087-8.109,7.104-11.997,7.426-12.193c-4.041-5.499-10.336-6.254-12.576-6.34\r\n\t\t\t\tc-5.355-0.506-10.451,2.935-13.169,2.935c-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028\r\n\t\t\t\tc-6.065,9.794-1.552,24.307,4.359,32.256c2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622\r\n\t\t\t\tc5.268,0,6.746,2.622,11.354,2.541c4.685-0.079,7.655-3.959,10.522-7.86c3.318-4.513,4.683-8.885,4.765-9.106\r\n\t\t\t\tC59.896,46.91,50.865,43.69,50.772,34.008z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42.112,10.214c2.399-2.709,4.021-6.473,3.579-10.221\r\n\t\t\t\tc-3.459,0.13-7.647,2.14-10.131,4.846c-2.224,2.401-4.17,6.226-3.65,9.906C35.77,15.025,39.708,12.918,42.112,10.214z\r\n\t\t\t\t M50.772,34.008c-0.087-8.109,7.104-11.997,7.426-12.193c-4.041-5.499-10.336-6.254-12.576-6.34\r\n\t\t\t\tc-5.355-0.506-10.451,2.935-13.169,2.935c-2.711,0-6.906-2.861-11.346-2.788c-5.84,0.081-11.222,3.161-14.228,8.028\r\n\t\t\t\tc-6.065,9.794-1.552,24.307,4.359,32.256c2.89,3.886,6.335,8.257,10.855,8.097c4.357-0.16,6.002-2.622,11.267-2.622\r\n\t\t\t\tc5.268,0,6.746,2.622,11.354,2.541c4.685-0.079,7.655-3.959,10.522-7.86c3.318-4.513,4.683-8.885,4.765-9.106\r\n\t\t\t\tC59.896,46.91,50.865,43.69,50.772,34.008z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"android_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"android","display":"inline"},"children":[{"name":"g","attribs":{"id":"android","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717c1.995,0,3.613-1.665,3.613-3.717V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.144-1.031h6.708c-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717\r\n\t\t\t\tc1.995,0,3.613-1.665,3.613-3.717V52.45c0-0.358-0.052-0.704-0.144-1.031h2.752c2.103,0,3.812-1.761,3.812-3.926v-27.26H15.647\r\n\t\t\t\tV47.493z M9.626,20.233c-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717\r\n\t\t\t\tc1.994,0,3.612-1.665,3.612-3.717V23.951C13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717c1.995,0,3.611-1.665,3.611-3.717V23.951\r\n\t\t\t\tC58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355l0.678-1.047l0.668-1.032l1.501-2.318\r\n\t\t\t\tc0.184-0.285,0.109-0.669-0.166-0.859c-0.278-0.191-0.651-0.114-0.836,0.172l-1.609,2.485l-0.677,1.045L39.662,4.86\r\n\t\t\t\tC37.487,3.992,35.06,3.505,32.5,3.505c-2.559,0-4.986,0.487-7.16,1.354l-0.685-1.059l-0.676-1.045l-1.612-2.485\r\n\t\t\t\tc-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859c0-1.026,0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857\r\n\t\t\t\tC27.084,11.966,26.275,12.799,25.278,12.799z M39.724,12.799c-0.997,0-1.805-0.833-1.805-1.859c0-1.026,0.808-1.857,1.805-1.857\r\n\t\t\t\tc0.998,0,1.806,0.831,1.806,1.857C41.529,11.966,40.722,12.799,39.724,12.799z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.647,47.493c0,2.164,1.709,3.926,3.812,3.926h2.752\r\n\t\t\t\tc-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717c1.995,0,3.613-1.665,3.613-3.717V52.45\r\n\t\t\t\tc0-0.358-0.053-0.704-0.144-1.031h6.708c-0.092,0.327-0.144,0.673-0.144,1.031v7.848c0,2.052,1.618,3.717,3.612,3.717\r\n\t\t\t\tc1.995,0,3.613-1.665,3.613-3.717V52.45c0-0.358-0.052-0.704-0.144-1.031h2.752c2.103,0,3.812-1.761,3.812-3.926v-27.26H15.647\r\n\t\t\t\tV47.493z M9.626,20.233c-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717\r\n\t\t\t\tc1.994,0,3.612-1.665,3.612-3.717V23.951C13.238,21.897,11.62,20.233,9.626,20.233z M55.375,20.233\r\n\t\t\t\tc-1.995,0-3.612,1.664-3.612,3.717v15.902c0,2.052,1.617,3.717,3.612,3.717c1.995,0,3.611-1.665,3.611-3.717V23.951\r\n\t\t\t\tC58.986,21.897,57.37,20.233,55.375,20.233z M40.789,5.355l0.678-1.047l0.668-1.032l1.501-2.318\r\n\t\t\t\tc0.184-0.285,0.109-0.669-0.166-0.859c-0.278-0.191-0.651-0.114-0.836,0.172l-1.609,2.485l-0.677,1.045L39.662,4.86\r\n\t\t\t\tC37.487,3.992,35.06,3.505,32.5,3.505c-2.559,0-4.986,0.487-7.16,1.354l-0.685-1.059l-0.676-1.045l-1.612-2.485\r\n\t\t\t\tc-0.184-0.285-0.558-0.362-0.836-0.172c-0.275,0.19-0.351,0.574-0.166,0.859l1.5,2.318l0.669,1.032l0.678,1.047\r\n\t\t\t\tc-5.109,2.449-8.566,7.089-8.566,12.4h33.708C49.355,12.444,45.898,7.804,40.789,5.355z M25.278,12.799\r\n\t\t\t\tc-0.998,0-1.806-0.833-1.806-1.859c0-1.026,0.808-1.857,1.806-1.857c0.997,0,1.806,0.831,1.806,1.857\r\n\t\t\t\tC27.084,11.966,26.275,12.799,25.278,12.799z M39.724,12.799c-0.997,0-1.805-0.833-1.805-1.859c0-1.026,0.808-1.857,1.805-1.857\r\n\t\t\t\tc0.998,0,1.806,0.831,1.806,1.857C41.529,11.966,40.722,12.799,39.724,12.799z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RSS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RSS","display":"inline"},"children":[{"name":"g","attribs":{"id":"RSS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M8,48c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC16,51.582,12.418,48,8,48z M0,23v11c16.569,0,30,13.431,30,30h11C41,41.356,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53\r\n\t\t\t\th11C64,28.654,35.346,0,0,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M8,48c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC16,51.582,12.418,48,8,48z M0,23v11c16.569,0,30,13.431,30,30h11C41,41.356,22.644,23,0,23z M0,0v11c29.271,0,53,23.729,53,53\r\n\t\t\t\th11C64,28.654,35.346,0,0,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HASHTAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HASHTAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"HASHTAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,18h-8.69l2.614-11.325h0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L43.152,18H27.31l2.614-11.325h0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L21.152,18H12c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7.767l-3.692,16H6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325h0C12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46H36.69l-2.614,11.325h0C34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7.767l3.692-16H58c1.657,0,3-1.343,3-3\r\n\t\t\t\tC61,19.343,59.657,18,58,18z M38.075,40H22.233l3.692-16h15.842L38.075,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,18h-8.69l2.614-11.325h0C51.973,6.458,52,6.232,52,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L43.152,18H27.31l2.614-11.325h0C29.973,6.458,30,6.232,30,6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.425,0-2.617,0.994-2.923,2.326l0,0L21.152,18H12c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7.767l-3.692,16H6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h8.69l-2.613,11.325h0C12.027,57.542,12,57.768,12,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L20.848,46H36.69l-2.614,11.325h0C34.027,57.542,34,57.768,34,58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.425,0,2.617-0.994,2.923-2.326l0,0L42.848,46H52c1.657,0,3-1.343,3-3s-1.343-3-3-3h-7.767l3.692-16H58c1.657,0,3-1.343,3-3\r\n\t\t\t\tC61,19.343,59.657,18,58,18z M38.075,40H22.233l3.692-16h15.842L38.075,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COLUMNS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COLUMNS","display":"inline"},"children":[{"name":"g","attribs":{"id":"COLUMNS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC64,7.343,62.657,6,61,6z M21,52H6V12h15V52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6H3C1.343,6,0,7.343,0,9v46c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC64,7.343,62.657,6,61,6z M21,52H6V12h15V52z M40,52H24V12h16V52z M58,52H43V12h15V52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.167,6.995l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322\r\n\t\t\t\tl8.446,8.429l6.334-6.322C62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.446-8.429L18.938,36.498l8.446,8.429\r\n\t\t\t\tL52.721,19.639z M13.998,49.84l11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61.167,6.995l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322\r\n\t\t\t\tl8.446,8.429l6.334-6.322C62.334,10.046,62.334,8.159,61.167,6.995z M53,57H7V11h33.357l6-6H4C2.343,5,1,6.343,1,8v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V17.813l-6,6V57z M52.721,19.639l-8.446-8.429L18.938,36.498l8.446,8.429\r\n\t\t\t\tL52.721,19.639z M13.998,49.84l11.258-2.806l-8.447-8.431L13.998,49.84z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.721,19.639l-8.446-8.429L12.938,36.498l8.446,8.429L46.721,19.639z\r\n\t\t\t\t M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429\r\n\t\t\t\tL55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,57.343,62.657,56,61,56z\r\n\t\t\t\t M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.721,19.639l-8.446-8.429L12.938,36.498l8.446,8.429L46.721,19.639z\r\n\t\t\t\t M55.167,11.21c1.166-1.164,1.166-3.051,0-4.214l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0l-6.334,6.322l8.446,8.429\r\n\t\t\t\tL55.167,11.21z M61,56H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,57.343,62.657,56,61,56z\r\n\t\t\t\t M10.809,38.604L7.998,49.84l11.258-2.806L10.809,38.604z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PEN_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PEN_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"PEN_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.938,42.498l8.446,8.429l25.338-25.288l-8.446-8.429L12.938,42.498z\r\n\t\t\t\t M7.998,55.84l11.258-2.806l-8.447-8.431L7.998,55.84z M55.167,12.996l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0\r\n\t\t\t\tl-6.334,6.322l8.446,8.429l6.334-6.322C56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.938,42.498l8.446,8.429l25.338-25.288l-8.446-8.429L12.938,42.498z\r\n\t\t\t\t M7.998,55.84l11.258-2.806l-8.447-8.431L7.998,55.84z M55.167,12.996l-4.223-4.215c-1.166-1.164-3.057-1.164-4.223,0\r\n\t\t\t\tl-6.334,6.322l8.446,8.429l6.334-6.322C56.333,16.046,56.333,14.159,55.167,12.996z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_5_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43H6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC63.664,4.578,64,3.829,64,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43H6c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC0.336,59.422,0,60.172,0,61c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L15,53.243V58c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C21,44.343,19.657,43,18,43z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z M64,3c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L49,10.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC63.664,4.578,64,3.829,64,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_5_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c-0.828,0-1.578,0.336-2.121,0.879L6,53.757V49c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l9.879-9.879\r\n\t\t\t\tC20.664,47.578,21,46.829,21,46C21,44.343,19.657,43,18,43z M61,0H49c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757l-9.879,9.879\r\n\t\t\t\tC43.336,16.422,43,17.172,43,18c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L58,10.243V15c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M32,23c-4.971,0-9,4.029-9,9c0,4.971,4.029,9,9,9c4.971,0,9-4.029,9-9\r\n\t\t\t\tC41,27.029,36.971,23,32,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_4_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757\r\n\t\t\t\tL60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L3.879,55.879\r\n\t\t\t\tC3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,6c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L41,18.757V14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757\r\n\t\t\t\tL60.121,8.121C60.664,7.579,61,6.828,61,6z M26,35H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L3.879,55.879\r\n\t\t\t\tC3.336,56.422,3,57.172,3,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_4_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.879-14.879\r\n\t\t\t\tC28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879\r\n\t\t\t\tC35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35c-0.828,0-1.579,0.336-2.121,0.879L9,50.758V46c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.879-14.879\r\n\t\t\t\tC28.664,39.579,29,38.828,29,38C29,36.343,27.657,35,26,35z M58,3H46c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L35.879,23.879\r\n\t\t\t\tC35.336,24.422,35,25.172,35,26c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,13.243V18c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COG","display":"inline"},"children":[{"name":"g","attribs":{"id":"COG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12\r\n\t\t\t\tC44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C38,35.314,35.314,38,32,38z\r\n\t\t\t\t M55.517,25.462c-0.54-1.957-1.326-3.811-2.31-5.536c1.121-1.507,4.981-7.143,2.199-9.926l-1.428-1.507\r\n\t\t\t\tc-2.379-2.378-8.455,1.336-9.93,2.298c-1.745-0.989-3.62-1.774-5.6-2.31c-0.317-1.887-1.704-8.487-5.619-8.487h-1.567\r\n\t\t\t\tc-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32C18.661,9.839,12.841,5.816,10,8.656L8.493,9.924\r\n\t\t\t\tc-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435c-1.641,0.262-8.649,1.614-8.649,5.646v1.566\r\n\t\t\t\tc0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.708,2.255,5.393c-0.791,1.24-4.745,7.74-2.292,10.194l1.427,1.188\r\n\t\t\t\tc3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334c1.789,1.058,3.726,1.895,5.773,2.47c0.335,1.378,2.275,8.676,5.755,8.676\r\n\t\t\t\th1.567c4.566,0,5.698-8.52,5.698-8.52l-0.419-0.013c2.07-0.529,4.032-1.325,5.851-2.345c1.426,0.95,7.401,4.689,9.786,2.304\r\n\t\t\t\tl1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877c0.985-1.722,1.774-3.571,2.317-5.525c1.78-0.452,8.483-2.374,8.483-5.707\r\n\t\t\t\tv-1.566C63.989,26.73,56.015,25.533,55.517,25.462z M32,50c-9.941,0-18-8.059-18-18s8.059-18,18-18s18,8.059,18,18\r\n\t\t\t\tS41.941,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,20c-6.627,0-12,5.372-12,12c0,6.627,5.372,12,12,12s12-5.373,12-12\r\n\t\t\t\tC44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C38,35.314,35.314,38,32,38z\r\n\t\t\t\t M55.517,25.462c-0.54-1.957-1.326-3.811-2.31-5.536c1.121-1.507,4.981-7.143,2.199-9.926l-1.428-1.507\r\n\t\t\t\tc-2.379-2.378-8.455,1.336-9.93,2.298c-1.745-0.989-3.62-1.774-5.6-2.31c-0.317-1.887-1.704-8.487-5.619-8.487h-1.567\r\n\t\t\t\tc-3.361,0-5.29,6.824-5.721,8.534c-1.952,0.545-3.801,1.334-5.522,2.32C18.661,9.839,12.841,5.816,10,8.656L8.493,9.924\r\n\t\t\t\tc-2.476,2.475,1.638,9.004,2.39,10.147c-0.952,1.698-1.715,3.517-2.241,5.435c-1.641,0.262-8.649,1.614-8.649,5.646v1.566\r\n\t\t\t\tc0,3.493,7.349,5.433,8.69,5.759c0.533,1.904,1.3,3.708,2.255,5.393c-0.791,1.24-4.745,7.74-2.292,10.194l1.427,1.188\r\n\t\t\t\tc3.229,3.229,9.974-2.075,9.974-2.075l-0.314-0.334c1.789,1.058,3.726,1.895,5.773,2.47c0.335,1.378,2.275,8.676,5.755,8.676\r\n\t\t\t\th1.567c4.566,0,5.698-8.52,5.698-8.52l-0.419-0.013c2.07-0.529,4.032-1.325,5.851-2.345c1.426,0.95,7.401,4.689,9.786,2.304\r\n\t\t\t\tl1.587-1.588c3.183-3.183-1.997-9.696-2.142-9.877c0.985-1.722,1.774-3.571,2.317-5.525c1.78-0.452,8.483-2.374,8.483-5.707\r\n\t\t\t\tv-1.566C63.989,26.73,56.015,25.533,55.517,25.462z M32,50c-9.941,0-18-8.059-18-18s8.059-18,18-18s18,8.059,18,18\r\n\t\t\t\tS41.941,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WARNING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WARNING","display":"inline"},"children":[{"name":"g","attribs":{"id":"WARNING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.563,53.463l0.017-0.011l-29-47l-0.017,0.01C34.039,5.59,33.092,5,32,5\r\n\t\t\t\tc-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01l-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03C62.671,57.982,64,56.648,64,55C64,54.435,63.835,53.914,63.563,53.463z M32,52\r\n\t\t\t\tc-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C36,50.209,34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22\r\n\t\t\t\tc0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.563,53.463l0.017-0.011l-29-47l-0.017,0.01C34.039,5.59,33.092,5,32,5\r\n\t\t\t\tc-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01l-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03C62.671,57.982,64,56.648,64,55C64,54.435,63.835,53.914,63.563,53.463z M32,52\r\n\t\t\t\tc-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C36,50.209,34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22\r\n\t\t\t\tc0-2.209,1.791-4,4-4s4,1.791,4,4V37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REPEAT_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"REPEAT_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tc-8.768,0-16.506-4.347-21.207-11H16c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-5.454C11.789,58.679,21.254,64,32,64c17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.733,0,32,0C14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8\r\n\t\t\t\tC64,6.343,62.657,5,61,5z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,29c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26\r\n\t\t\t\tc-8.768,0-16.506-4.347-21.207-11H16c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-5.454C11.789,58.679,21.254,64,32,64c17.673,0,32-14.327,32-32C64,30.343,62.657,29,61,29z M61,5\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.412C52.204,5.299,42.733,0,32,0C14.327,0,0,14.327,0,32c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.76,0,16.469,4.355,21.167,11H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8\r\n\t\t\t\tC64,6.343,62.657,5,61,5z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REPEAT_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REPEAT_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"REPEAT_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.769,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,20c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v5.39C52.199,5.288,42.725,0,32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,14.359-11.641,26-26,26C17.641,58,6,46.359,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6c8.769,0,16.512,4.348,21.218,11H48C46.343,17,45,18.343,45,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9v0H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121C64.016,19.177,63.68,18.427,63.137,17.884z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.137,17.884l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,17H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,49H9v0H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,23H52v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121C64.016,19.177,63.68,18.427,63.137,17.884z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-2.999,1.343-2.999,3c0,0.829,0.336,1.579,0.879,2.122l1.878,1.879h-1.773v0.005h-2.999v0h-2.757L15.118,10.879\r\n\t\t\t\tC14.575,10.336,13.825,10,12.997,10H2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126\r\n\t\t\t\tc0.543,0.543,1.293,0.879,2.121,0.879h8.766l-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.122,42.878l-6.998-7.001c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-2.999,1.343-2.999,3c0,0.829,0.336,1.579,0.879,2.122l1.878,1.879h-1.773v0.005h-2.999v0h-2.757L15.118,10.879\r\n\t\t\t\tC14.575,10.336,13.825,10,12.997,10H2.999C1.343,10,0,11.343,0,13.001c0,1.657,1.343,3,2.999,3h8.755l31.114,31.126\r\n\t\t\t\tc0.543,0.543,1.293,0.879,2.121,0.879h8.766l-1.873,1.874c-0.543,0.543-0.879,1.293-0.879,2.122c0,1.657,1.343,3,2.999,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l6.998-7.001C63.664,46.578,64,45.828,64,45C64,44.171,63.664,43.421,63.122,42.878z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHUFFLE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHUFFLE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHUFFLE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879\r\n\t\t\t\tC14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121c0-0.828-0.336-1.578-0.879-2.121l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19H52z M56.137,38.874\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52V45h-5.757\r\n\t\t\t\tL35.364,34.121l-4.243,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879\r\n\t\t\t\tC14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3S1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121c0-0.828-0.336-1.578-0.879-2.121l-7-7c-0.543-0.543-1.293-0.879-2.121-0.879\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45c-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19H52z M56.137,38.874\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.121-0.879c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52V45h-5.757\r\n\t\t\t\tL35.364,34.121l-4.243,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_2_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_2_2_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003\r\n\t\t\t\tC3.325,56.457,3,57.19,3,58c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V38C29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.81,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3H38\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.19,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.81-0.325-1.543-0.847-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843L8.083,3.847\r\n\t\t\t\tC7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H14c-1.657,0-3,1.343-3,3s1.343,3,3,3h4.757L3.843,55.914l0.003,0.003\r\n\t\t\t\tC3.325,56.457,3,57.19,3,58c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003L23,45.243V50c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V38C29,36.343,27.657,35,26,35z M38,29h12c1.657,0,3-1.343,3-3s-1.343-3-3-3h-4.757L60.157,8.086l-0.003-0.003\r\n\t\t\t\tC60.676,7.543,61,6.81,61,6c0-1.657-1.343-3-3-3c-0.81,0-1.543,0.325-2.083,0.847l-0.003-0.003L41,18.758V14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v12C35,27.657,36.343,29,38,29z M60.157,55.914L45.243,41H50c1.657,0,3-1.343,3-3s-1.343-3-3-3H38\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3s3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003C56.457,60.676,57.19,61,58,61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.81-0.325-1.543-0.847-2.083L60.157,55.914z M26,11c-1.657,0-3,1.343-3,3v4.757L8.086,3.843L8.083,3.847\r\n\t\t\t\tC7.543,3.325,6.81,3,6,3C4.343,3,3,4.343,3,6c0,0.81,0.325,1.543,0.847,2.082L3.843,8.086L18.757,23H14c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h12c1.657,0,3-1.343,3-3V14C29,12.343,27.657,11,26,11z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RESIZE_1_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_","display":"inline"},"children":[{"name":"g","attribs":{"id":"RESIZE_1_2_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003\r\n\t\t\t\tC24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083L28.157,23.914z M26,35\r\n\t\t\t\tc-0.81,0-1.543,0.325-2.082,0.847l-0.003-0.003L9,50.757V46c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.81,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.81,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.81,0.324,1.543,0.847,2.083l-0.003,0.003L50.757,55H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L35.843,23.914\r\n\t\t\t\tl0.003,0.003C35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.157,23.914L13.243,9H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H6\r\n\t\t\t\tC4.343,3,3,4.343,3,6v12c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.757l14.914,14.914l0.003-0.003\r\n\t\t\t\tC24.457,28.676,25.19,29,26,29c1.657,0,3-1.343,3-3c0-0.81-0.324-1.543-0.847-2.083L28.157,23.914z M26,35\r\n\t\t\t\tc-0.81,0-1.543,0.325-2.082,0.847l-0.003-0.003L9,50.757V46c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4.757l14.914-14.914l-0.003-0.003C28.676,39.543,29,38.81,29,38\r\n\t\t\t\tC29,36.343,27.657,35,26,35z M58,43c-1.657,0-3,1.343-3,3v4.757L40.086,35.843l-0.003,0.003C39.543,35.325,38.81,35,38,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.81,0.324,1.543,0.847,2.083l-0.003,0.003L50.757,55H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3V46C61,44.343,59.657,43,58,43z M58,3H46c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757L35.843,23.914\r\n\t\t\t\tl0.003,0.003C35.325,24.457,35,25.19,35,26c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.083-0.847l0.003,0.003L55,13.243V18\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V6C61,4.343,59.657,3,58,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32c0,0.885,0.384,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0L10.818,35H29v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.772,44,51c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L53.182,29H35V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0L29,10.818V29H10.818l4.189-3.77l0,0C15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32c0,0.885,0.384,1.68,0.993,2.23l0,0l10,9l0,0\r\n\t\t\t\tC11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.384-1.68-0.993-2.23l0,0L10.818,35H29v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3c0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0\r\n\t\t\t\tC30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0C43.708,52.475,44,51.772,44,51c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V35h18.182l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS_HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\tc0,0.885,0.383,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23\r\n\t\t\t\tl0,0L10.818,35h42.364l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0\r\n\t\t\t\tl10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,32c0-0.885-0.384-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC52.475,20.292,51.772,20,51,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L53.182,29H10.818l4.189-3.77l0,0\r\n\t\t\t\tC15.617,24.681,16,23.885,16,23c0-1.657-1.343-3-3-3c-0.772,0-1.475,0.292-2.007,0.77l0,0l-10,9l0,0C0.384,30.319,0,31.115,0,32\r\n\t\t\t\tc0,0.885,0.383,1.68,0.993,2.23l0,0l10,9l0,0C11.525,43.709,12.228,44,13,44c1.657,0,3-1.343,3-3c0-0.885-0.383-1.68-0.993-2.23\r\n\t\t\t\tl0,0L10.818,35h42.364l-4.189,3.77l0,0C48.384,39.32,48,40.115,48,41c0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0\r\n\t\t\t\tl10-9l0,0C63.617,33.681,64,32.885,64,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS_VERTICAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS_VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,48c-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.189l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0C30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,52.475,44,51.772,44,51C44,49.343,42.657,48,41,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,48c-0.885,0-1.681,0.384-2.23,0.993l0,0L35,53.182V10.818l3.77,4.189l0,0\r\n\t\t\t\tC39.319,15.616,40.115,16,41,16c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,0.384,32.885,0,32,0\r\n\t\t\t\tc-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,11.525,20,12.228,20,13c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.681-0.384,2.23-0.993l0,0L29,10.818v42.364l-3.77-4.189l0,0C24.681,48.384,23.885,48,23,48c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.292,1.475,0.77,2.007l0,0l9,10l0,0C30.319,63.617,31.115,64,32,64c0.885,0,1.681-0.383,2.23-0.993l0,0l9-10l0,0\r\n\t\t\t\tC43.708,52.475,44,51.772,44,51C44,49.343,42.657,48,41,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__VERTICAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007\r\n\t\t\t\tL48,53.182V29c0,0,0,0,0,0V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7.818l0,0V26h0v13h0v14.182l-3.77-4.189L38.222,49\r\n\t\t\t\tc-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L42.778,63\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c0.885,0,1.672-0.391,2.222-1l0.008,0.007l9-10L56.222,53C56.701,52.468,57,51.772,57,51z\r\n\t\t\t\t M30.23,10.993l-9-10l-0.008,0.007C20.673,0.391,19.885,0,19,0c-0.885,0-1.673,0.391-2.222,1.001L16.77,0.993l-9,10l0.008,0.007\r\n\t\t\t\tC7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818V25h0v13h0v15.182h0V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V29c0,0,0,0,0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M57,51c0-1.657-1.343-3-3-3c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007\r\n\t\t\t\tL48,53.182V29c0,0,0,0,0,0V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7.818l0,0V26h0v13h0v14.182l-3.77-4.189L38.222,49\r\n\t\t\t\tc-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3c0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L42.778,63\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c0.885,0,1.672-0.391,2.222-1l0.008,0.007l9-10L56.222,53C56.701,52.468,57,51.772,57,51z\r\n\t\t\t\t M30.23,10.993l-9-10l-0.008,0.007C20.673,0.391,19.885,0,19,0c-0.885,0-1.673,0.391-2.222,1.001L16.77,0.993l-9,10l0.008,0.007\r\n\t\t\t\tC7.3,11.532,7,12.228,7,13c0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L16,10.818V25h0v13h0v15.182h0V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V29c0,0,0,0,0,0V10.818l3.77,4.189L25.778,15c0.549,0.61,1.337,1,2.222,1\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.772-0.299-1.468-0.778-2L30.23,10.993z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROWS__x2F__HORIZONTAL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,22h32c0,0,0,0,0,0h18.182l-4.189,3.77L49,25.779\r\n\t\t\t\tc-0.61,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222\r\n\t\t\t\tc0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.673-1-2.222l0.007-0.008l-10-9L53,7.778C52.468,7.3,51.772,7,51,7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39v0H26v0H10.818l0,0H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,20.657,1.343,22,3,22z M61,42h-7.818l0,0H38v0H25v0H10.818l4.189-3.77L15,38.222c0.61-0.549,1-1.336,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L1,42.778C0.391,43.328,0,44.115,0,45\r\n\t\t\t\tc0,0.885,0.391,1.672,1,2.222L0.993,47.23l10,9L11,56.222C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L10.818,48H35c0,0,0,0,0,0h26c1.657,0,3-1.343,3-3C64,43.343,62.657,42,61,42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,22h32c0,0,0,0,0,0h18.182l-4.189,3.77L49,25.779\r\n\t\t\t\tc-0.61,0.549-1,1.336-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L63,21.222\r\n\t\t\t\tc0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.673-1-2.222l0.007-0.008l-10-9L53,7.778C52.468,7.3,51.772,7,51,7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L53.182,16H39v0H26v0H10.818l0,0H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,20.657,1.343,22,3,22z M61,42h-7.818l0,0H38v0H25v0H10.818l4.189-3.77L15,38.222c0.61-0.549,1-1.336,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L1,42.778C0.391,43.328,0,44.115,0,45\r\n\t\t\t\tc0,0.885,0.391,1.672,1,2.222L0.993,47.23l10,9L11,56.222C11.532,56.701,12.229,57,13,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L10.818,48H35c0,0,0,0,0,0h26c1.657,0,3-1.343,3-3C64,43.343,62.657,42,61,42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHARE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHARE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V10.818l3.77,4.189L38.778,15c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.299-1.468-0.778-2l0.008-0.007l-9-10L34.222,1C33.673,0.391,32.885,0,32,0c-0.885,0-1.673,0.39-2.222,1L29.77,0.993\r\n\t\t\t\tl-9,10L20.778,11C20.3,11.532,20,12.228,20,13C20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,16c0.885,0,1.673-0.39,2.222-1l0.008,0.007L29,10.818V29\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V10.818l3.77,4.189L38.778,15c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.299-1.468-0.778-2l0.008-0.007l-9-10L34.222,1C33.673,0.391,32.885,0,32,0c-0.885,0-1.673,0.39-2.222,1L29.77,0.993\r\n\t\t\t\tl-9,10L20.778,11C20.3,11.532,20,12.228,20,13C20,14.657,21.343,16,23,16z M51,20H38v6h10v32H16V26h9v-6H13c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv38c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V23C54,21.343,52.657,20,51,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHARE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHARE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHARE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,26.168V52H12V12h25.832C37.317,11.114,37,10.098,37,9\r\n\t\t\t\tc0-1.099,0.317-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168\r\n\t\t\t\tC57.114,26.683,56.099,27,55,27C53.902,27,52.886,26.683,52,26.168z M55,6H43c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757\r\n\t\t\t\tL32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003\r\n\t\t\t\tL52,16.243V21c0,1.657,1.343,3,2.999,3h0.001C56.657,24,58,22.657,58,21V9C58,7.343,56.657,6,55,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,26.168V52H12V12h25.832C37.317,11.114,37,10.098,37,9\r\n\t\t\t\tc0-1.099,0.317-2.114,0.832-3H9C7.343,6,6,7.343,6,9v46c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V26.168\r\n\t\t\t\tC57.114,26.683,56.099,27,55,27C53.902,27,52.886,26.683,52,26.168z M55,6H43c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h4.757\r\n\t\t\t\tL32.843,26.914l0.003,0.003C32.325,27.457,32,28.19,32,29c0,1.657,1.343,3,3,3c0.81,0,1.543-0.325,2.082-0.847l0.003,0.003\r\n\t\t\t\tL52,16.243V21c0,1.657,1.343,3,2.999,3h0.001C56.657,24,58,22.657,58,21V9C58,7.343,56.657,6,55,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M61,0H49\r\n\t\t\t\tc0,0,0,0,0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M15,58H6v-9\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M61,0H49\r\n\t\t\t\tc0,0,0,0,0,0c-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3c0,0,0,0,0,0H3C1.343,0,0,1.343,0,3v12\r\n\t\t\t\tc0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V6L15,6L15,6z M64,49c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3L64,49L64,49z M55,9H9v46h46V9z M49,49H15V15\r\n\t\t\t\th34V49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,6c1.657,0,3-1.343,3-3s-1.343-3-3-3c0,0,0,0,0,0H3C1.343,0,0,1.343,0,3v12\r\n\t\t\t\tc0,0,0,0,0,0c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V6L15,6L15,6z M64,49c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3L64,49L64,49z M55,9H9v46h46V9z M49,49H15V15\r\n\t\t\t\th34V49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SCREEN_EXPAND_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SCREEN_EXPAND_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,0H49c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M9,55h46V9H9V55z M15,15h34v34H15V15z M61,0H49c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3v0h9v9c0,1.657,1.343,3,3,3s3-1.343,3-3V3C64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IMAGE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAGE","display":"inline"},"children":[{"name":"g","attribs":{"id":"IMAGE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,15L40,15l9,0v9c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3c0,0,0,0,0,0V13h0\r\n\t\t\t\tV9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4h0V40c0,0,0,0,0,0c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h-9v0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C37,53.657,38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3v0h-9v-9h0c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c0,0,0,0,0,0v11h0v4H24C24,55,24,55,24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3h0v-9h9v0c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3c0,0,0,0,0,0H9v4h0L9,24C9,24,9,24,9,24z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,15L40,15l9,0v9c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3c0,0,0,0,0,0V13h0\r\n\t\t\t\tV9H40c-1.657,0-3,1.343-3,3S38.343,15,40,15z M40,55h15v-4h0V40c0,0,0,0,0,0c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h-9v0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C37,53.657,38.343,55,40,55z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M24,55c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3v0h-9v-9h0c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c0,0,0,0,0,0v11h0v4H24C24,55,24,55,24,55z M9,24c0,1.657,1.343,3,3,3s3-1.343,3-3h0v-9h9v0c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3c0,0,0,0,0,0H9v4h0L9,24C9,24,9,24,9,24z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243\r\n\t\t\t\tl8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243\r\n\t\t\t\tl8.879,8.879C41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M46,43.001C46,43.001,46,43,46,43.001C46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL28,35.757l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z\r\n\t\t\t\t M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z\r\n\t\t\t\t M46,43.001C46,43.001,46,43,46,43.001C46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL28,35.757l-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z\r\n\t\t\t\t M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M19,35h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M19,35h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M19,35h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M19,35h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC16,33.657,17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GRID_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"GRID_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C29,36.343,27.657,35,26,35z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC61,36.343,59.657,35,58,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C29,36.343,27.657,35,26,35z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC29,4.343,27.657,3,26,3z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC61,4.343,59.657,3,58,3z M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3V38\r\n\t\t\t\tC61,36.343,59.657,35,58,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GRID_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GRID_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"GRID_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C61,36.343,59.657,35,58,35z M55,55H41V41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55H9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\th20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41V9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14V23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,35H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tV38C61,36.343,59.657,35,58,35z M55,55H41V41h14V55z M26,35H6c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C29,36.343,27.657,35,26,35z M23,55H9V41h14V55z M58,3H38c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\th20c1.657,0,3-1.343,3-3V6C61,4.343,59.657,3,58,3z M55,23H41V9h14V23z M26,3H6C4.343,3,3,4.343,3,6v20c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C29,4.343,27.657,3,26,3z M23,23H9V9h14V23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"UNLOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UNLOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"UNLOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z M44,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,32h-5V18c0-9.941-8.059-18-18-18c-9.941,0-18,8.059-18,18v14H9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35C58,33.343,56.657,32,55,32z M35,49.168V55\r\n\t\t\t\tc0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,46.215,36.786,48.129,35,49.168z M44,32H20V18c0-6.627,5.373-12,12-12c6.627,0,12,5.373,12,12V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX__x2F__OUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__OUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V15.243l1.879,1.879C37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tl-7-7C33.578,5.336,32.829,5,32,5c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15\r\n\t\t\t\tC22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941C55.406,14.827,54.3,14,53,14h-8.101C44.954,14.327,45,14.658,45,15\r\n\t\t\t\tc0,2.09-1.071,3.926-2.691,5h8.623l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623\r\n\t\t\t\tC20.071,18.926,19,17.09,19,15c0-0.342,0.046-0.673,0.101-1H11c0,0,0,0,0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924\r\n\t\t\t\tC0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,18c0.828,0,1.578-0.336,2.121-0.879L29,15.243V34c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V15.243l1.879,1.879C37.422,17.664,38.172,18,39,18c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tl-7-7C33.578,5.336,32.829,5,32,5c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,13.422,22,14.172,22,15\r\n\t\t\t\tC22,16.657,23.343,18,25,18z M63.8,36.924l-7.978-20.941C55.406,14.827,54.3,14,53,14h-8.101C44.954,14.327,45,14.658,45,15\r\n\t\t\t\tc0,2.09-1.071,3.926-2.691,5h8.623l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353l5.714-15h8.623\r\n\t\t\t\tC20.071,18.926,19,17.09,19,15c0-0.342,0.046-0.673,0.101-1H11c0,0,0,0,0,0c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924\r\n\t\t\t\tC0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX__x2F__IN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX__x2F__IN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37\r\n\t\t\t\ts1.578-0.336,2.121-0.879l7-7C41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924\r\n\t\t\t\tl-7.978-20.941C55.406,14.827,54.3,14,53,14H38v6h12.932l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15H26v-6H11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,27c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,36.664,31.172,37,32,37\r\n\t\t\t\ts1.578-0.336,2.121-0.879l7-7C41.664,28.579,42,27.828,42,27c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,26.758V8\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v18.757l-1.879-1.879C26.578,24.336,25.829,24,25,24C23.343,24,22,25.343,22,27z M63.8,36.924\r\n\t\t\t\tl-7.978-20.941C55.406,14.827,54.3,14,53,14H38v6h12.932l5.714,15H47c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15H26v-6H11c-1.3,0-2.406,0.827-2.823,1.982L0.2,36.924C0.071,37.258,0,37.621,0,38v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V38C64,37.621,63.929,37.258,63.8,36.924z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"INBOX_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"INBOX","display":"inline"},"children":[{"name":"g","attribs":{"id":"INBOX","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.28,9,53,9H11\r\n\t\t\t\tc-1.28,0-2.365,0.806-2.796,1.935l-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V33C64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15h37.865l5.714,15H47z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.796,31.935l0.007-0.003l-8-21l-0.007,0.003C55.366,9.806,54.28,9,53,9H11\r\n\t\t\t\tc-1.28,0-2.365,0.806-2.796,1.935l-0.007-0.003l-8,21l0.007,0.003C0.077,32.267,0,32.624,0,33v19c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V33C64,32.624,63.923,32.267,63.796,31.935z M47,30c-1.657,0-3,1.343-3,3v3H20v-3c0-1.657-1.343-3-3-3H7.353\r\n\t\t\t\tl5.714-15h37.865l5.714,15H47z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SLIDESHOW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SLIDESHOW","display":"inline"},"children":[{"name":"g","attribs":{"id":"SLIDESHOW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC15,19.343,13.657,18,12,18z M3,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C6,13.343,4.657,12,3,12z\r\n\t\t\t\t M52,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC15,19.343,13.657,18,12,18z M3,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C6,13.343,4.657,12,3,12z\r\n\t\t\t\t M52,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOICEMAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOICEMAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOICEMAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.731,2.52,8H25.48\r\n\t\t\t\tc1.584-2.269,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14S0,24.268,0,32s6.268,14,14,14h36c7.732,0,14-6.268,14-14S57.732,18,50,18\r\n\t\t\t\tz M14,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8\r\n\t\t\t\tS54.418,40,50,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.731,2.52,8H25.48\r\n\t\t\t\tc1.584-2.269,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14S0,24.268,0,32s6.268,14,14,14h36c7.732,0,14-6.268,14-14S57.732,18,50,18\r\n\t\t\t\tz M14,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8\r\n\t\t\t\tS54.418,40,50,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CREDIT_CARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CREDIT_CARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z\r\n\t\t\t\t M6,45h12v3H6V45z M61,10H3c-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,51c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V28H0V51z M6,39h30v3H6V39z\r\n\t\t\t\t M6,45h12v3H6V45z M61,10H3c-1.657,0-3,1.343-3,3v9h64v-9C64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HOME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HOME","display":"inline"},"children":[{"name":"g","attribs":{"id":"HOME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39\r\n\t\t\t\tz M27,51H15V39h12V51z M63.189,31.96l0.007-0.007L52,20.757V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2.757L34.196,2.953\r\n\t\t\t\tl-0.002,0.002c-0.478-0.512-1.132-0.857-1.866-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2C32.001,2,32,2,32,2c-0.85,0-1.616,0.354-2.162,0.922\r\n\t\t\t\tL0.922,31.838C0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001\r\n\t\t\t\tl0.077,0.072l0,0.002l26.877,26.877l0.007-0.007C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,33.21,63.688,32.496,63.189,31.96z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,39v21c0,1.657,1.343,3,3,3h28V39h12v24h6c1.657,0,3-1.343,3-3V39L32,13L6,39\r\n\t\t\t\tz M27,51H15V39h12V51z M63.189,31.96l0.007-0.007L52,20.757V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2.757L34.196,2.953\r\n\t\t\t\tl-0.002,0.002c-0.478-0.512-1.132-0.857-1.866-0.937c-0.003,0-0.006-0.001-0.009-0.001c-0.045-0.005-0.09-0.008-0.135-0.011\r\n\t\t\t\tc-0.008,0-0.017-0.001-0.025-0.002C32.107,2.002,32.054,2,32.001,2C32.001,2,32,2,32,2c-0.85,0-1.616,0.354-2.162,0.922\r\n\t\t\t\tL0.922,31.838C0.354,32.384,0,33.15,0,34c0,1.657,1.343,3,3,3c0.821,0,1.565-0.33,2.106-0.864l0.001,0.001L32,9.245v0.001\r\n\t\t\t\tl0.077,0.072l0,0.002l26.877,26.877l0.007-0.007C59.496,36.688,60.21,37,61,37c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,33.21,63.688,32.496,63.189,31.96z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SUITCASE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SUITCASE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SUITCASE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3\r\n\t\t\t\tc-8.284,0-15,6.716-15,15h-6v43h42V18h-6C47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5\r\n\t\t\t\tv43h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3\r\n\t\t\t\tc-8.284,0-15,6.716-15,15h-6v43h42V18h-6C47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5\r\n\t\t\t\tv43h5c1.657,0,3-1.343,3-3V21C64,19.343,62.657,18,61,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TAGS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAGS","display":"inline"},"children":[{"name":"g","attribs":{"id":"TAGS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.113,26.872l-5.133-4.91c-0.005,0.009-0.011,0.019-0.016,0.028L34.126,5.884\r\n\t\t\t\tC33.582,5.338,32.831,5,32,5c-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9\r\n\t\t\t\tl0.002,0.001C56.731,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951\r\n\t\t\t\tc-0.001-0.087-0.004-0.174-0.013-0.259c-0.002-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253\r\n\t\t\t\tc0-0.002-0.001-0.003-0.001-0.004c-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001v-0.008H10V11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196\r\n\t\t\t\tl-0.011,0.012l25,23l0.005-0.005c0.395,0.347,0.88,0.593,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01\r\n\t\t\t\tc0.067,0.011,0.134,0.022,0.202,0.029C34.806,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20\r\n\t\t\t\tl-0.001-0.001C54.73,37.418,55,36.741,55,36C55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4\r\n\t\t\t\tc0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C19,21.209,17.209,23,15,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56.113,26.872l-5.133-4.91c-0.005,0.009-0.011,0.019-0.016,0.028L34.126,5.884\r\n\t\t\t\tC33.582,5.338,32.831,5,32,5c-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9\r\n\t\t\t\tl0.002,0.001C56.731,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951\r\n\t\t\t\tc-0.001-0.087-0.004-0.174-0.013-0.259c-0.002-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253\r\n\t\t\t\tc0-0.002-0.001-0.003-0.001-0.004c-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001v-0.008H10V11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196\r\n\t\t\t\tl-0.011,0.012l25,23l0.005-0.005c0.395,0.347,0.88,0.593,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01\r\n\t\t\t\tc0.067,0.011,0.134,0.022,0.202,0.029C34.806,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20\r\n\t\t\t\tl-0.001-0.001C54.73,37.418,55,36.741,55,36C55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4\r\n\t\t\t\tc0-2.209,1.791-4,4-4c2.209,0,4,1.791,4,4C19,21.209,17.209,23,15,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"TAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,33c0-0.017-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258\r\n\t\t\t\tc-0.001-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253c0-0.002-0.001-0.003-0.001-0.005\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884C31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8\r\n\t\t\t\tc-1.657,0-3,1.343-3,3H7.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.005-0.005\r\n\t\t\t\tc0.395,0.347,0.88,0.592,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01c0.067,0.011,0.134,0.022,0.202,0.029\r\n\t\t\t\tC35.806,55.995,35.902,56,36,56c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20l-0.001-0.001C55.73,34.418,56,33.741,56,33z\r\n\t\t\t\t M16,20c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C20,18.209,18.209,20,16,20z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,33c0-0.017-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258\r\n\t\t\t\tc-0.001-0.016-0.005-0.031-0.007-0.046c-0.01-0.085-0.022-0.17-0.039-0.253c0-0.002-0.001-0.003-0.001-0.005\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884C31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8\r\n\t\t\t\tc-1.657,0-3,1.343-3,3H7.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.005-0.005\r\n\t\t\t\tc0.395,0.347,0.88,0.592,1.418,0.694c0.022,0.004,0.046,0.007,0.068,0.01c0.067,0.011,0.134,0.022,0.202,0.029\r\n\t\t\t\tC35.806,55.995,35.902,56,36,56c0.916,0,1.734-0.411,2.284-1.058l0.001,0.001l17-20l-0.001-0.001C55.73,34.418,56,33.741,56,33z\r\n\t\t\t\t M16,20c-2.209,0-4-1.791-4-4c0-2.209,1.791-4,4-4s4,1.791,4,4C20,18.209,18.209,20,16,20z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z\r\n\t\t\t\t M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z\r\n\t\t\t\t M57.121,27.879C57.664,28.422,58,29.172,58,30c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,30.243l-1.879,1.879\r\n\t\t\t\tC48.578,32.664,47.828,33,47,33c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L46.757,26l-1.879-1.879\r\n\t\t\t\tC44.336,23.578,44,22.828,44,22c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,21.757l1.879-1.879\r\n\t\t\t\tC53.422,19.336,54.172,19,55,19c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,26L57.121,27.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M28.623,9.469\r\n\t\t\t\tL28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789\r\n\t\t\t\tL28.623,9.469z M47,41.476V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0\r\n\t\t\t\tc0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42\r\n\t\t\t\tC49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tc0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13C64,18.82,58.18,13,51,13z M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3C60,23.828,59.664,24.579,59.121,25.122z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35.383,9.469l3.329,6.289c1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23\r\n\t\t\t\tl-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M28.623,9.469\r\n\t\t\t\tL28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789\r\n\t\t\t\tL28.623,9.469z M47,41.476V50c0,1.657-1.343,3-3,3s-3-1.343-3-3V38.479C37.346,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0\r\n\t\t\t\tc0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42\r\n\t\t\t\tC49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M51,13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tc0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13C64,18.82,58.18,13,51,13z M59.121,25.122l-8,8C50.578,33.664,49.829,34,49,34\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879l-4-4C42.336,28.579,42,27.828,42,27c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,26.758l5.879-5.879C55.422,20.336,56.172,20,57,20c1.657,0,3,1.343,3,3C60,23.828,59.664,24.579,59.121,25.122z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.673,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z\r\n\t\t\t\t M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29H45c-1.657,0-3-1.343-3-3\r\n\t\t\t\ts1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.673,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M47,41.476V50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V38.479\r\n\t\t\t\tC37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.05-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453\r\n\t\t\t\tC54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z M23,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z\r\n\t\t\t\t M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13s13-5.82,13-13C64,18.82,58.18,13,51,13z M57,29H45c-1.657,0-3-1.343-3-3\r\n\t\t\t\ts1.343-3,3-3h12c1.657,0,3,1.343,3,3S58.657,29,57,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3S58.657,29,57,29z M47,41.476V50c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3V38.479C37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.175,0-2.181,0.682-2.674,1.665L23.32,6.662L15.2,22h6.789L28.623,9.469z M35.383,9.469l3.329,6.289\r\n\t\t\t\tc1.313-1.574,2.922-2.89,4.742-3.866l-2.769-5.23l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.534,0.151,1.028,0.396,1.462L35.383,9.469z M51,13c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC64,18.82,58.18,13,51,13z M57,29h-3v3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3s1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3S58.657,29,57,29z M47,41.476V50c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3V38.479C37.345,35.547,35,31.05,35,26c0-0.338,0.03-0.668,0.051-1H3c-1.657,0-3,1.343-3,3s1.343,3,3,3\r\n\t\t\t\th2.658l6.432,25.728l0.009-0.002C12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49\r\n\t\t\t\tc1.405,0,2.576-0.97,2.901-2.275l0.009,0.002l3.863-15.453C54.266,41.746,52.663,42,51,42C49.616,42,48.281,41.806,47,41.476z\r\n\t\t\t\t M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BASKET_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BASKET","display":"inline"},"children":[{"name":"g","attribs":{"id":"BASKET","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019\r\n\t\t\t\tc-0.001-0.074-0.005-0.148-0.011-0.221c-0.003-0.042-0.008-0.084-0.013-0.125c-0.005-0.04-0.011-0.08-0.017-0.12\r\n\t\t\t\tc-0.219-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002L58.342,31H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469\r\n\t\t\t\tL42.017,22h6.789l-8.12-15.338l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462\r\n\t\t\t\tL35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,27.987c0-0.006-0.001-0.012-0.001-0.019\r\n\t\t\t\tc-0.001-0.074-0.005-0.148-0.011-0.221c-0.003-0.042-0.008-0.084-0.013-0.125c-0.005-0.04-0.011-0.08-0.017-0.12\r\n\t\t\t\tc-0.219-1.342-1.327-2.386-2.703-2.502H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h2.658l6.432,25.728l0.009-0.002\r\n\t\t\t\tC12.424,58.03,13.595,59,15,59h0c0.005,0,0.01-0.001,0.016-0.001V59H49c1.405,0,2.576-0.97,2.901-2.275l0.009,0.002L58.342,31H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.002,0-0.003,0-0.005C64,27.992,64,27.99,64,27.987z M23,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35,50c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V34c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3V50z M47,50c0,1.657-1.343,3-3,3s-3-1.343-3-3V34c0-1.657,1.343-3,3-3s3,1.343,3,3V50z M35.383,9.469\r\n\t\t\t\tL42.017,22h6.789l-8.12-15.338l-0.011,0.006C40.183,5.683,39.176,5,38,5c-1.657,0-3,1.343-3,3c0,0.534,0.151,1.028,0.396,1.462\r\n\t\t\t\tL35.383,9.469z M28.623,9.469L28.606,9.46C28.849,9.026,29,8.533,29,8c0-1.657-1.343-3-3-3c-1.175,0-2.181,0.682-2.674,1.665\r\n\t\t\t\tL23.32,6.662L15.2,22h6.789L28.623,9.469z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_BAG_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_BAG","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8\r\n\t\t\t\tc0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H9c-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15\r\n\t\t\t\tc0-4.971,4.029-9,9-9s9,4.03,9,9H23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M6,61c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3v-3H6V61z M55,15h-8\r\n\t\t\t\tc0-8.284-6.716-15-15-15c-8.284,0-15,6.716-15,15H9c-1.657,0-3,1.343-3,3v37h52V18C58,16.343,56.657,15,55,15z M23,15\r\n\t\t\t\tc0-4.971,4.029-9,9-9s9,4.03,9,9H23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,9h44c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H10C8.343,3,7,4.343,7,6\r\n\t\t\t\tC7,7.657,8.343,9,10,9z M58.375,12H5.625L0,27c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tc0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8L58.375,12z M55,37.952V37.95\r\n\t\t\t\tc-0.287-0.026-0.57-0.069-0.85-0.117c-0.06-0.01-0.122-0.015-0.182-0.026c-0.13-0.024-0.256-0.061-0.384-0.09\r\n\t\t\t\tc-0.542-0.124-1.074-0.278-1.584-0.477V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478c-0.128,0.029-0.253,0.065-0.382,0.09\r\n\t\t\t\tc-0.06,0.011-0.122,0.016-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002C8.671,37.982,8.338,38,8,38\r\n\t\t\t\tc-0.684,0-1.351-0.071-2-0.19V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.81C57.351,37.929,56.684,38,56,38\r\n\t\t\t\tC55.663,38,55.329,37.982,55,37.952z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,9h44c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H10C8.343,3,7,4.343,7,6\r\n\t\t\t\tC7,7.657,8.343,9,10,9z M58.375,12H5.625L0,27c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tc0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8L58.375,12z M55,37.952V37.95\r\n\t\t\t\tc-0.287-0.026-0.57-0.069-0.85-0.117c-0.06-0.01-0.122-0.015-0.182-0.026c-0.13-0.024-0.256-0.061-0.384-0.09\r\n\t\t\t\tc-0.542-0.124-1.074-0.278-1.584-0.477V52H12V37.239c-0.51,0.2-1.042,0.354-1.586,0.478c-0.128,0.029-0.253,0.065-0.382,0.09\r\n\t\t\t\tc-0.06,0.011-0.122,0.016-0.183,0.027C9.569,37.88,9.287,37.924,9,37.95v0.002C8.671,37.982,8.338,38,8,38\r\n\t\t\t\tc-0.684,0-1.351-0.071-2-0.19V58c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V37.81C57.351,37.929,56.684,38,56,38\r\n\t\t\t\tC55.663,38,55.329,37.982,55,37.952z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\tc3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,17\r\n\t\t\t\tl1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879\r\n\t\t\t\tC48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3c0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\tc3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L55.243,17\r\n\t\t\t\tl1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879\r\n\t\t\t\tC48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3c0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879L49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8C50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\ts6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879L49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8C50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001\r\n\t\t\t\tc1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719L18.679,23\r\n\t\t\t\th17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6\r\n\t\t\t\ts6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13S38,9.82,38,17\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457\r\n\t\t\t\tl-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004\r\n\t\t\t\tC14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13S38,9.82,38,17\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778\r\n\t\t\t\tl-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457\r\n\t\t\t\tl-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004\r\n\t\t\t\tC14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD_1_","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART__x2F__ADD"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h3v-3c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3s-1.343,3-3,3h-3v3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.779l-1.498-4.279L52.2,42.993\r\n\t\t\t\tv-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719\r\n\t\t\t\tL18.678,23h17.496C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,30c7.18,0,13-5.82,13-13c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13\r\n\t\t\t\tC38,24.18,43.82,30,51,30z M45,14h3v-3c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v3h3c1.657,0,3,1.343,3,3s-1.343,3-3,3h-3v3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.779l-1.498-4.279L52.2,42.993\r\n\t\t\t\tv-0.001c1.132-0.074,2.092-0.776,2.536-1.762h0l4.83-10.733c-2.245,1.427-4.866,2.303-7.685,2.457l-1.877,4.171l-25.779,1.719\r\n\t\t\t\tL18.678,23h17.496C35.423,21.146,35,19.124,35,17H16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6C62,51.686,59.314,49,56,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SHOPPING_CART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART","display":"inline"},"children":[{"name":"g","attribs":{"id":"SHOPPING_CART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.762h0l9-20l-0.005-0.002\r\n\t\t\t\tC63.901,17.853,64,17.439,64,17c0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6c0-3.314-2.686-6-6-6H27.778l-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.845L18.679,20\r\n\t\t\t\tH56.36l-6.357,14.127L24.224,35.845z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.2,39.993c1.132-0.074,2.092-0.776,2.536-1.762h0l9-20l-0.005-0.002\r\n\t\t\t\tC63.901,17.853,64,17.439,64,17c0-1.657-1.343-3-3-3H16.578l-1.747-4.991L14.82,9.013C14.411,7.844,13.309,7,12,7H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6.872l11.55,33H16c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6h28\r\n\t\t\t\tc0,3.314,2.686,6,6,6s6-2.686,6-6c0-3.314-2.686-6-6-6H27.778l-1.497-4.279L52.2,39.993L52.2,39.993z M24.224,35.845L18.679,20\r\n\t\t\t\tH56.36l-6.357,14.127L24.224,35.845z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CAMERA_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CAMERA","display":"inline"},"children":[{"name":"g","attribs":{"id":"CAMERA","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12c6.627,0,12-5.373,12-12\r\n\t\t\t\tC44,27.373,38.627,22,32,22z M61,12H48.243l-5.094-5.094l-0.003,0.003C42.602,6.35,41.843,6,41,6H23\r\n\t\t\t\tc-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15\r\n\t\t\t\tC64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC50,43.941,41.941,52,32,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,22c-6.627,0-12,5.372-12,12c0,6.627,5.373,12,12,12c6.627,0,12-5.373,12-12\r\n\t\t\t\tC44,27.373,38.627,22,32,22z M61,12H48.243l-5.094-5.094l-0.003,0.003C42.602,6.35,41.843,6,41,6H23\r\n\t\t\t\tc-0.976,0-1.835,0.474-2.383,1.196L15.813,12H3c-1.657,0-3,1.343-3,3v40c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V15\r\n\t\t\t\tC64,13.343,62.657,12,61,12z M32,52c-9.941,0-18-8.059-18-18c0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18\r\n\t\t\t\tC50,43.941,41.941,52,32,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MUSIC_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MUSIC","display":"inline"},"children":[{"name":"g","attribs":{"id":"MUSIC","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V3C63,1.343,61.657,0,60,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,0L20,9c0,0-3,0.681-3,3v40.66C15.499,52.241,13.802,52,12,52\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V26.123l34-7.415V43.66C55.499,43.241,53.802,43,52,43\r\n\t\t\t\tc-6.075,0-11,2.686-11,6c0,3.314,4.925,6,11,6c6.075,0,11-2.686,11-6V3C63,1.343,61.657,0,60,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PROGRESS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PROGRESS","display":"inline"},"children":[{"name":"g","attribs":{"id":"PROGRESS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32\r\n\t\t\t\tC29,30.343,27.657,29,26,29z M14,37c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z\r\n\t\t\t\t M50,13c-1.657,0-3,1.343-3,3v32c0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,29c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3s3-1.343,3-3V32\r\n\t\t\t\tC29,30.343,27.657,29,26,29z M14,37c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3s3-1.343,3-3v-8C17,38.343,15.657,37,14,37z\r\n\t\t\t\t M50,13c-1.657,0-3,1.343-3,3v32c0,1.657,1.343,3,3,3s3-1.343,3-3V16C53,14.343,51.657,13,50,13z M38,21c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V24C41,22.343,39.657,21,38,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CODE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CODE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CODE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735\r\n\t\t\t\tC0.413,30.285,0,31.091,0,32c0,0.844,0.351,1.604,0.912,2.149L0.91,34.152l12,12l0.003-0.003C13.453,46.674,14.187,47,15,47\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003\r\n\t\t\t\tc0.561-0.545,0.913-1.305,0.913-2.149C18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265\r\n\t\t\t\tL51.153,17.91l-0.003,0.003C50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.351,1.604,0.913,2.149l-0.003,0.003\r\n\t\t\t\tl9.863,9.863l-9.894,9.895l0.003,0.003c-0.525,0.54-0.851,1.275-0.851,2.087c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.813,0,1.547-0.326,2.088-0.851l0.003,0.003l12-12l-0.003-0.003C63.68,33.604,64.031,32.844,64.031,32z M40,8\r\n\t\t\t\tc-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924C21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.983\r\n\t\t\t\tL42.8,12.076C42.929,11.742,43,11.38,43,11C43,9.343,41.657,8,40,8z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.031,17c-0.844,0-1.604,0.352-2.149,0.913l-0.003-0.003L1.053,29.735\r\n\t\t\t\tC0.413,30.285,0,31.091,0,32c0,0.844,0.351,1.604,0.912,2.149L0.91,34.152l12,12l0.003-0.003C13.453,46.674,14.187,47,15,47\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.812-0.326-1.547-0.851-2.087l0.003-0.003l-9.894-9.895l9.863-9.863l-0.003-0.003\r\n\t\t\t\tc0.561-0.545,0.913-1.305,0.913-2.149C18.031,18.343,16.688,17,15.031,17z M64.031,32c0-0.91-0.413-1.715-1.053-2.265\r\n\t\t\t\tL51.153,17.91l-0.003,0.003C50.604,17.352,49.844,17,49,17c-1.657,0-3,1.343-3,3c0,0.844,0.351,1.604,0.913,2.149l-0.003,0.003\r\n\t\t\t\tl9.863,9.863l-9.894,9.895l0.003,0.003c-0.525,0.54-0.851,1.275-0.851,2.087c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.813,0,1.547-0.326,2.088-0.851l0.003,0.003l12-12l-0.003-0.003C63.68,33.604,64.031,32.844,64.031,32z M40,8\r\n\t\t\t\tc-1.3,0-2.406,0.827-2.823,1.982L21.2,51.924C21.071,52.258,21,52.621,21,53c0,1.657,1.343,3,3,3c1.3,0,2.406-0.827,2.823-1.983\r\n\t\t\t\tL42.8,12.076C42.929,11.742,43,11.38,43,11C43,9.343,41.657,8,40,8z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINK","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.461,45.766c-0.056,0.061-0.096,0.131-0.155,0.19l-8.349,8.37\r\n\t\t\t\tc-2.306,2.311-6.043,2.311-8.349,0c-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.03,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05l-8.349,8.37c-4.611,4.623-4.611,12.118,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.37c3.092-3.1,4.1-7.489,3.045-11.44L26.461,45.766z M58.481,5.401c-4.611-4.623-12.086-4.623-16.697,0l-8.349,8.37\r\n\t\t\t\tc-3.082,3.09-4.093,7.462-3.054,11.403l7.221-7.221l0.006,0.006c0.001-0.001,0.001-0.002,0.002-0.002l8.349-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.349,0c2.305,2.311,2.305,6.059,0,8.37l-8.349,8.37c-0.097,0.098-0.211,0.167-0.313,0.256l-6.97,6.97\r\n\t\t\t\tc3.953,1.078,8.353,0.071,11.457-3.041l8.349-8.37C63.091,17.518,63.091,10.023,58.481,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.644,0.374-2.192,0.964L19.964,39.808C19.375,40.356,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.009l20-20l-0.009-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.461,45.766c-0.056,0.061-0.096,0.131-0.155,0.19l-8.349,8.37\r\n\t\t\t\tc-2.306,2.311-6.043,2.311-8.349,0c-2.305-2.311-2.305-6.059,0-8.37l8.349-8.37c0.018-0.018,0.041-0.03,0.059-0.049l7.187-7.187\r\n\t\t\t\tc-3.943-1.062-8.326-0.052-11.421,3.05l-8.349,8.37c-4.611,4.623-4.611,12.118,0,16.74c4.611,4.623,12.087,4.623,16.697,0\r\n\t\t\t\tl8.349-8.37c3.092-3.1,4.1-7.489,3.045-11.44L26.461,45.766z M58.481,5.401c-4.611-4.623-12.086-4.623-16.697,0l-8.349,8.37\r\n\t\t\t\tc-3.082,3.09-4.093,7.462-3.054,11.403l7.221-7.221l0.006,0.006c0.001-0.001,0.001-0.002,0.002-0.002l8.349-8.37\r\n\t\t\t\tc2.305-2.311,6.043-2.311,8.349,0c2.305,2.311,2.305,6.059,0,8.37l-8.349,8.37c-0.097,0.098-0.211,0.167-0.313,0.256l-6.97,6.97\r\n\t\t\t\tc3.953,1.078,8.353,0.071,11.457-3.041l8.349-8.37C63.091,17.518,63.091,10.023,58.481,5.401z M42,19\r\n\t\t\t\tc-0.868,0-1.644,0.374-2.192,0.964L19.964,39.808C19.375,40.356,19,41.132,19,42c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.836,0,1.591-0.344,2.135-0.896l0.009,0.009l20-20l-0.009-0.009C44.669,23.563,45,22.82,45,22C45,20.343,43.657,19,42,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BIN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BIN","display":"inline"},"children":[{"name":"g","attribs":{"id":"BIN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,9H38V6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v3H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h48v-3C56,10.343,54.657,9,53,9z M11,58c0,1.657,1.343,3,3,3h36c1.657,0,3-1.343,3-3V18H11V58z M41,27\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M29,27c0-1.657,1.343-3,3-3\r\n\t\t\t\tc1.657,0,3,1.343,3,3v25c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z M17,27c0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3v25\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3V27z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"EQUALIZER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EQUALIZER","display":"inline"},"children":[{"name":"g","attribs":{"id":"EQUALIZER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tV26C16,24.343,14.657,23,13,23z M13,3c0-1.657-1.343-3-3-3C8.343,0,7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv25h6V3z M57,3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V44H7V61z M57,15\r\n\t\t\t\th-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V36h-6V61z M29,61c0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34C38,32.343,36.657,31,35,31z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13,23H7c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tV26C16,24.343,14.657,23,13,23z M13,3c0-1.657-1.343-3-3-3C8.343,0,7,1.343,7,3v17h6V3z M35,3c0-1.657-1.343-3-3-3s-3,1.343-3,3\r\n\t\t\t\tv25h6V3z M57,3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v9h6V3z M7,61c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V44H7V61z M57,15\r\n\t\t\t\th-6c-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V18C60,16.343,58.657,15,57,15z M51,61\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V36h-6V61z M29,61c0,1.657,1.343,3,3,3s3-1.343,3-3v-9h-6V61z M35,31h-6\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3V34C38,32.343,36.657,31,35,31z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MORE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"MORE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.315,0,6.002-2.687,6.002-6.001C38,28.687,35.313,26,31.998,26z M31.998,19.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,9.687,35.313,7,31.998,7c-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45\r\n\t\t\t\tc-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,47.687,35.313,45,31.998,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.998,26c-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.315,0,6.002-2.687,6.002-6.001C38,28.687,35.313,26,31.998,26z M31.998,19.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,9.687,35.313,7,31.998,7c-3.314,0-6.001,2.686-6.001,6.001C25.997,16.315,28.684,19.001,31.998,19.001z M31.998,45\r\n\t\t\t\tc-3.314,0-6.001,2.687-6.001,6.001c0,3.314,2.687,6.001,6.001,6.001c3.315,0,6.002-2.687,6.002-6.001\r\n\t\t\t\tC38,47.687,35.313,45,31.998,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__CENTER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__CENTER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53\r\n\t\t\t\tH21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53\r\n\t\t\t\tH21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C0,25.657,1.343,27,3,27z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z\r\n\t\t\t\t M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C0,25.657,1.343,27,3,27z M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z\r\n\t\t\t\t M61,37H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z M43,53H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY","display":"inline"},"children":[{"name":"g","attribs":{"id":"TEXT__x2F__JUSTIFY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8\r\n\t\t\t\tS1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,22.343,62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,38.343,62.657,37,61,37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY_FULL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY_FULL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z M52,26H9v12h43V26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__2_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M37,26H9v12h28V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__1_x2F_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,26H9v12h13V26z M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24\r\n\t\t\t\tc0,1.657,1.343,3,3,3h55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY","display":"inline"},"children":[{"name":"g","attribs":{"id":"BATTERY__x2F__EMPTY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,26v-6c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3v24c0,1.657,1.343,3,3,3\r\n\t\t\t\th55c1.657,0,3-1.343,3-3v-6c1.657,0,3-1.343,3-3v-6C64,27.343,62.657,26,61,26z M55,41H6V23h49V41z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"STAR_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STAR","display":"inline"},"children":[{"name":"g","attribs":{"id":"STAR","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.351,2,32,2\r\n\t\t\t\tc-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3c-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0l16.118,11.66l-6.209,18.971\r\n\t\t\t\tC11.053,59.357,11,59.672,11,60c0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.571l0.001,0.001L32,50.681l16.242,11.749\r\n\t\t\t\tl0.001-0.001C48.737,62.788,49.343,63,50,63c1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.151-0.938L46.641,40.09l16.118-11.66l0,0\r\n\t\t\t\tC63.51,27.885,64,27,64,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.351,2,32,2\r\n\t\t\t\tc-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3c-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0l16.118,11.66l-6.209,18.971\r\n\t\t\t\tC11.053,59.357,11,59.672,11,60c0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.571l0.001,0.001L32,50.681l16.242,11.749\r\n\t\t\t\tl0.001-0.001C48.737,62.788,49.343,63,50,63c1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.151-0.938L46.641,40.09l16.118-11.66l0,0\r\n\t\t\t\tC63.51,27.885,64,27,64,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51.841,47.327L45.515,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv34c0,1.656,1.341,2.998,2.996,3H7.5v0H8v6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393\r\n\t\t\t\tc0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184\r\n\t\t\t\tc0.098,0.145,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.535,1.271,0.865,2.084,0.875\r\n\t\t\t\tC10.976,62.996,10.987,63,11,63c0.828,0,1.578-0.336,2.121-0.879L21.243,54H22v0h3v0h6.9v0H53v0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.614,0-3.072-0.645-4.151-1.681L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.013,0,0.025-0.004,0.037-0.004c0.813-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.235-0.259,0.333-0.404c0.039-0.057,0.065-0.123,0.1-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.046-0.129,0.094-0.257,0.122-0.393\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51.841,47.327L45.515,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv34c0,1.656,1.341,2.998,2.996,3H7.5v0H8v6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393\r\n\t\t\t\tc0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184\r\n\t\t\t\tc0.098,0.145,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.535,1.271,0.865,2.084,0.875\r\n\t\t\t\tC10.976,62.996,10.987,63,11,63c0.828,0,1.578-0.336,2.121-0.879L21.243,54H22v0h3v0h6.9v0H53v0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.614,0-3.072-0.645-4.151-1.681L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.013,0,0.025-0.004,0.037-0.004c0.813-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.235-0.259,0.333-0.404c0.039-0.057,0.065-0.123,0.1-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.046-0.129,0.094-0.257,0.122-0.393\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6C23,31.314,20.314,34,17,34z M32,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,31.314,35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C53,31.314,50.314,34,47,34z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6C23,31.314,20.314,34,17,34z M32,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tC38,31.314,35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C53,31.314,50.314,34,47,34z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.049,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.535,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9\r\n\t\t\t\th52V46z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6\r\n\t\t\t\tc0,0.207,0.021,0.409,0.061,0.604c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.056,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.145,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.028,0.033,0.04c0.534,0.534,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L20.243,52H61c1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9\r\n\t\t\t\th52V46z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLES_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLES","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.477\r\n\t\t\t\tc-12.036-0.75-19.873-8.212-20.379-17.122c-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.571\r\n\t\t\t\tc0,6.961,4.177,13.176,11.123,17.257c1.573,0.924,1.752,7.862-7.097,12.05c0,0,12.529,1.976,20.473-8.067\r\n\t\t\t\tc1.964,0.282,3.996,0.883,6.075,0.883c14.557,0,24.238-7.163,26.777-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z\r\n\t\t\t\t M56.72,27.814c4.55-2.673,7.286-6.744,7.286-11.304c0-8.052-8.85-14.579-20.028-14.579c-11.178,0-17.992,6.527-17.992,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.992,14.492c1.362,0,2.693-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.69,28.419,56.72,27.814z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.477\r\n\t\t\t\tc-12.036-0.75-19.873-8.212-20.379-17.122c-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.571\r\n\t\t\t\tc0,6.961,4.177,13.176,11.123,17.257c1.573,0.924,1.752,7.862-7.097,12.05c0,0,12.529,1.976,20.473-8.067\r\n\t\t\t\tc1.964,0.282,3.996,0.883,6.075,0.883c14.557,0,24.238-7.163,26.777-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z\r\n\t\t\t\t M56.72,27.814c4.55-2.673,7.286-6.744,7.286-11.304c0-8.052-8.85-14.579-20.028-14.579c-11.178,0-17.992,6.527-17.992,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.992,14.492c1.362,0,2.693-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.69,28.419,56.72,27.814z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C23,32.314,20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,32.314,35.314,35,32,35z M47,35c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6\r\n\t\t\t\tc3.314,0,6,2.686,6,6C53,32.314,50.314,35,47,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6s6,2.686,6,6C23,32.314,20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,32.314,35.314,35,32,35z M47,35c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6\r\n\t\t\t\tc3.314,0,6,2.686,6,6C53,32.314,50.314,35,47,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"SPEECH_BUBBLE_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56\r\n\t\t\t\tc0,7.681,4.609,14.539,12.274,19.043c1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902\r\n\t\t\t\tc2.167,0.311,4.409,0.975,6.704,0.975c18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,49c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\t\tC38,51.686,35.314,49,32,49z M32,34c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764\r\n\t\t\t\tC11.283,14.34,21.132,10,32,10c10.868,0,20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544\r\n\t\t\t\tl3.739,4.819C17.954,28.242,24.59,25,32,25c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19\r\n\t\t\t\tC23.209,19,15.279,22.666,9.637,28.544z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,49c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6\r\n\t\t\t\tC38,51.686,35.314,49,32,49z M32,34c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764\r\n\t\t\t\tC11.283,14.34,21.132,10,32,10c10.868,0,20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544\r\n\t\t\t\tl3.739,4.819C17.954,28.242,24.59,25,32,25c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19\r\n\t\t\t\tC23.209,19,15.279,22.666,9.637,28.544z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,41c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,43.686,35.314,41,32,41z M32,26c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544\r\n\t\t\t\tl3.739,4.819C17.954,20.242,24.59,17,32,17c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,41c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,43.686,35.314,41,32,41z M32,26c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32\r\n\t\t\t\tc3.971,0,7.482,1.937,9.666,4.91l3.302-4.256C42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544\r\n\t\t\t\tl3.739,4.819C17.954,20.242,24.59,17,32,17c7.41,0,14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"WIFI_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"WIFI_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"WIFI_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,34c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,36.686,35.314,34,32,34z M32,19c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25\r\n\t\t\t\ts7.482,1.937,9.666,4.91l3.302-4.256C42.062,21.629,37.343,19,32,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,34c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,36.686,35.314,34,32,34z M32,19c-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25\r\n\t\t\t\ts7.482,1.937,9.666,4.91l3.302-4.256C42.062,21.629,37.343,19,32,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VIEW__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"VIEW__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26\r\n\t\t\t\tC28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755C58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.245l0-0.001l-0.018,0.012L4.679,48.245l0,0C4.271,48.513,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51\r\n\t\t\t\tc0.303,0,0.585-0.091,0.82-0.245l0,0.001l0.018-0.012L58.32,16.755L58.32,16.755z M9.455,42.364L10,42l10.409-6.939\r\n\t\t\t\tC20.151,34.082,20,33.06,20,32c0-6.628,5.373-12,12-12c2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345\r\n\t\t\t\tc-2.648-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165c-3.549,0.649-6.969,2-10.17,3.674\r\n\t\t\t\tc-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45\r\n\t\t\t\tc2.042,2.476,4.47,4.679,6.94,6.692C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.004-0.041c-0.001-0.02-0.005-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009c-0.079-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.677-0.552-1.367-1.092-2.069-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.845-6.997-2.265L17,47l-0.09,0.09c2.8,1.44,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.01-2.621,9.586-6.232,13.574-10.28\r\n\t\t\t\tc0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347c0-0.003,0.001-0.006,0.001-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058c0.001-0.014,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.276l-7.01,4.612C31.223,37.96,31.607,38,32,38C34.876,38,37.276,35.976,37.861,33.276z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26\r\n\t\t\t\tC28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755C58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5\r\n\t\t\t\tc-0.303,0-0.585,0.091-0.82,0.245l0-0.001l-0.018,0.012L4.679,48.245l0,0C4.271,48.513,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51\r\n\t\t\t\tc0.303,0,0.585-0.091,0.82-0.245l0,0.001l0.018-0.012L58.32,16.755L58.32,16.755z M9.455,42.364L10,42l10.409-6.939\r\n\t\t\t\tC20.151,34.082,20,33.06,20,32c0-6.628,5.373-12,12-12c2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345\r\n\t\t\t\tc-2.648-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165c-3.549,0.649-6.969,2-10.17,3.674\r\n\t\t\t\tc-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45\r\n\t\t\t\tc2.042,2.476,4.47,4.679,6.94,6.692C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.004-0.041c-0.001-0.02-0.005-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009c-0.079-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.677-0.552-1.367-1.092-2.069-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.845-6.997-2.265L17,47l-0.09,0.09c2.8,1.44,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.01-2.621,9.586-6.232,13.574-10.28\r\n\t\t\t\tc0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347c0-0.003,0.001-0.006,0.001-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058c0.001-0.014,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.276l-7.01,4.612C31.223,37.96,31.607,38,32,38C34.876,38,37.276,35.976,37.861,33.276z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VIEW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VIEW","display":"inline"},"children":[{"name":"g","attribs":{"id":"VIEW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,28.686,35.314,26,32,26z M63.997,32.379c-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.002-0.028-0.004-0.041\r\n\t\t\t\tc-0.001-0.02-0.005-0.039-0.008-0.058c-0.003-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009\r\n\t\t\t\tc-0.079-0.506-0.312-0.981-0.669-1.346c-2.042-2.476-4.471-4.68-6.94-6.692c-5.319-4.337-11.403-7.964-18.117-9.425\r\n\t\t\t\tc-3.881-0.844-7.786-0.879-11.688-0.165c-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28\r\n\t\t\t\tc-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45c2.042,2.476,4.47,4.679,6.94,6.692\r\n\t\t\t\tc5.32,4.337,11.403,7.963,18.118,9.424c3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673\r\n\t\t\t\tc5.01-2.621,9.586-6.232,13.574-10.28c0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347\r\n\t\t\t\tc0-0.003,0.001-0.006,0.001-0.008c0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058\r\n\t\t\t\tc0.001-0.014,0.002-0.027,0.004-0.041c0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122\r\n\t\t\t\tC64.001,32.459,63.998,32.419,63.997,32.379z M32,44c-6.627,0-12-5.372-12-12c0-6.628,5.372-12,12-12s12,5.373,12,12\r\n\t\t\t\tC44,38.628,38.627,44,32,44z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6\r\n\t\t\t\tC38,28.686,35.314,26,32,26z M63.997,32.379c-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.002-0.028-0.004-0.041\r\n\t\t\t\tc-0.001-0.02-0.005-0.039-0.008-0.058c-0.003-0.023-0.005-0.046-0.009-0.068c-0.001-0.003-0.001-0.006-0.001-0.009\r\n\t\t\t\tc-0.079-0.506-0.312-0.981-0.669-1.346c-2.042-2.476-4.471-4.68-6.94-6.692c-5.319-4.337-11.403-7.964-18.117-9.425\r\n\t\t\t\tc-3.881-0.844-7.786-0.879-11.688-0.165c-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28\r\n\t\t\t\tc-0.738,0.749-1.472,1.514-2.143,2.328c-0.893,1.083-0.893,2.366,0,3.45c2.042,2.476,4.47,4.679,6.94,6.692\r\n\t\t\t\tc5.32,4.337,11.403,7.963,18.118,9.424c3.881,0.844,7.787,0.88,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673\r\n\t\t\t\tc5.01-2.621,9.586-6.232,13.574-10.28c0.738-0.75,1.471-1.514,2.143-2.329c0.357-0.366,0.59-0.84,0.669-1.347\r\n\t\t\t\tc0-0.003,0.001-0.006,0.001-0.008c0.004-0.023,0.006-0.045,0.009-0.068c0.003-0.019,0.006-0.039,0.008-0.058\r\n\t\t\t\tc0.001-0.014,0.002-0.027,0.004-0.041c0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122\r\n\t\t\t\tC64.001,32.459,63.998,32.419,63.997,32.379z M32,44c-6.627,0-12-5.372-12-12c0-6.628,5.372-12,12-12s12,5.373,12,12\r\n\t\t\t\tC44,38.628,38.627,44,32,44z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992\r\n\t\t\t\tv0.008C1.339,24.006,0,25.346,0,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C28,16.343,26.657,15,25,15z M36.903,17.926l-2.847,2.847C36.519,23.852,38,27.75,38,32\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.903,17.926z\r\n\t\t\t\t M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32c0,7.288-2.708,13.93-7.147,19.024l2.848,2.848\r\n\t\t\t\tC49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336l-2.831,2.831\r\n\t\t\t\tC56.086,12.263,60,21.674,60,32c0,10.326-3.914,19.737-10.338,26.833l2.831,2.831C59.639,53.842,64,43.431,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992\r\n\t\t\t\tv0.008C1.339,24.006,0,25.346,0,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C28,16.343,26.657,15,25,15z M36.903,17.926l-2.847,2.847C36.519,23.852,38,27.75,38,32\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.903,17.926z\r\n\t\t\t\t M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32c0,7.288-2.708,13.93-7.147,19.024l2.848,2.848\r\n\t\t\t\tC49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336l-2.831,2.831\r\n\t\t\t\tC56.086,12.263,60,21.674,60,32c0,10.326-3.914,19.737-10.338,26.833l2.831,2.831C59.639,53.842,64,43.431,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32\r\n\t\t\t\tc0,7.288-2.708,13.93-7.147,19.024l2.848,2.848C55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678l-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z\r\n\t\t\t\t M42.903,17.926l-2.847,2.847C42.519,23.852,44,27.75,44,32c0,4.25-1.481,8.148-3.944,11.227l2.847,2.847\r\n\t\t\t\tC46.083,42.26,48,37.355,48,32C48,26.645,46.083,21.74,42.903,17.926z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32\r\n\t\t\t\tc0,7.288-2.708,13.93-7.147,19.024l2.848,2.848C55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678l-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z\r\n\t\t\t\t M42.903,17.926l-2.847,2.847C42.519,23.852,44,27.75,44,32c0,4.25-1.481,8.148-3.944,11.227l2.847,2.847\r\n\t\t\t\tC46.083,42.26,48,37.355,48,32C48,26.645,46.083,21.74,42.903,17.926z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689L34.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C12.339,25.006,11,26.346,11,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C34.736,48.781,35.34,49,36,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C39,17.343,37.657,16,36,16z M47.903,18.926l-2.847,2.847C47.519,24.852,49,28.75,49,33\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.903,18.926z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36,16c-0.721,0-1.374,0.265-1.891,0.689L34.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C12.339,25.006,11,26.346,11,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C34.736,48.781,35.34,49,36,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C39,17.343,37.657,16,36,16z M47.903,18.926l-2.847,2.847C47.519,24.852,49,28.75,49,33\r\n\t\t\t\tc0,4.25-1.481,8.148-3.944,11.227l2.847,2.847C51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.903,18.926z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__MUTE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\tS56.657,30,55,30z M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28\r\n\t\t\t\tv10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\t\tS56.657,30,55,30z M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28\r\n\t\t\t\tv10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992\r\n\t\t\t\tv0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"VOLUME__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"VOLUME__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689L40.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C18.339,25.006,17,26.346,17,28v9.627l27.972-18.9C44.832,17.2,43.563,16,42,16z M30.024,41l10.211,7.426l0.005-0.007\r\n\t\t\t\tC40.736,48.781,41.34,49,42,49c1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.601,0.095-0.841,0.258\r\n\t\t\t\tL13.064,43.955c-0.4,0.269-0.664,0.727-0.664,1.245c0,0.828,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.258l37.095-25.097\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,16c-0.721,0-1.374,0.265-1.891,0.689L40.1,16.678l-10.162,8.315h-9.946\r\n\t\t\t\tv0.008C18.339,25.006,17,26.346,17,28v9.627l27.972-18.9C44.832,17.2,43.563,16,42,16z M30.024,41l10.211,7.426l0.005-0.007\r\n\t\t\t\tC40.736,48.781,41.34,49,42,49c1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.601,0.095-0.841,0.258\r\n\t\t\t\tL13.064,43.955c-0.4,0.269-0.664,0.727-0.664,1.245c0,0.828,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.258l37.095-25.097\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PRINTER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PRINTER","display":"inline"},"children":[{"name":"g","attribs":{"id":"PRINTER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15z M9,27c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3s3,1.343,3,3\r\n\t\t\t\tC12,25.657,10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003c-0.007-0.615-0.197-1.184-0.52-1.657\r\n\t\t\t\tc-0.005-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.35-0.419c0,0,0,0,0,0c-0.002-0.002-0.005-0.004-0.008-0.006\r\n\t\t\t\tc-0.167-0.165-0.359-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004c0,0-0.001,0-0.001-0.001\r\n\t\t\t\tc-0.285-0.171-0.594-0.305-0.93-0.373c0,0,0,0,0,0c-0.138-0.028-0.282-0.034-0.426-0.043C45.117,0.014,45.06,0,45,0H19\r\n\t\t\t\tc-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tV37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,15H3c-1.657,0-3,1.343-3,3v28c0,1.657,1.343,3,3,3h10V34h38v15h10\r\n\t\t\t\tc1.657,0,3-1.343,3-3V18C64,16.343,62.657,15,61,15z M9,27c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3s3,1.343,3,3\r\n\t\t\t\tC12,25.657,10.657,27,9,27z M48,2.969h-0.003c0-0.001,0-0.002,0-0.003c-0.007-0.615-0.197-1.184-0.52-1.657\r\n\t\t\t\tc-0.005-0.007-0.012-0.013-0.017-0.02c-0.104-0.15-0.22-0.291-0.35-0.419c0,0,0,0,0,0c-0.002-0.002-0.005-0.004-0.008-0.006\r\n\t\t\t\tc-0.167-0.165-0.359-0.302-0.561-0.425c-0.002-0.001-0.005-0.002-0.007-0.004c0,0-0.001,0-0.001-0.001\r\n\t\t\t\tc-0.285-0.171-0.594-0.305-0.93-0.373c0,0,0,0,0,0c-0.138-0.028-0.282-0.034-0.426-0.043C45.117,0.014,45.06,0,45,0H19\r\n\t\t\t\tc-1.243,0-2.309,0.756-2.764,1.832C16.084,2.191,16,2.586,16,3v9h32V2.969z M16,61c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tV37H16V61z M22,43h20v3H22V43z M22,49h20v3H22V49z M22,55h20v3H22V55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__OUTGOING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M25,16c0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243\r\n\t\t\t\tl1.879,1.879C37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,3.336,32.828,3,32,3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z\r\n\t\t\t\t M63.002,17.78C62.47,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.673,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.106,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.683,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0.894,17.866C0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037\r\n\t\t\t\tl19.569-23.296L0.894,17.866z M25,16c0.828,0,1.578-0.336,2.121-0.879L29,13.243V27c0,1.657,1.343,3,3,3s3-1.343,3-3V13.243\r\n\t\t\t\tl1.879,1.879C37.422,15.664,38.172,16,39,16c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,3.336,32.828,3,32,3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,11.422,22,12.172,22,13C22,14.657,23.343,16,25,16z\r\n\t\t\t\t M63.002,17.78C62.47,17.3,61.773,17,61,17H43.443c-1.098,1.219-2.673,2-4.443,2c-0.344,0-0.673-0.053-1-0.11V27\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6v-8.11C25.673,18.947,25.344,19,25,19c-1.77,0-3.345-0.781-4.443-2H3\r\n\t\t\t\tc-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866L43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58\r\n\t\t\t\tV20C64,19.165,63.657,18.41,63.106,17.866z M32,48l-8.136-7.881L0.943,60.175C1.481,60.683,2.202,61,3,61h58\r\n\t\t\t\tc0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL__x2F__INCOMING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl7-7C41.664,21.579,42,20.829,42,20c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v13.757l-1.879-1.879C26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL29.879,29.122z M63.002,17.78C62.47,17.3,61.773,17,61,17H44.168C44.683,17.886,45,18.902,45,20\r\n\t\t\t\tc0,1.657-0.672,3.157-1.757,4.243l-7,7C35.157,32.328,33.657,33,32,33c-1.657,0-3.157-0.672-4.243-1.757l-7-7\r\n\t\t\t\tC19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3c-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866\r\n\t\t\t\tL43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20C64,19.165,63.657,18.41,63.106,17.866z M0.894,17.866\r\n\t\t\t\tC0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175\r\n\t\t\t\tC1.481,60.683,2.202,61,3,61h58c0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M29.879,29.122C30.422,29.664,31.172,30,32,30c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl7-7C41.664,21.579,42,20.829,42,20c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L35,19.757V6c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v13.757l-1.879-1.879C26.578,17.336,25.828,17,25,17c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL29.879,29.122z M63.002,17.78C62.47,17.3,61.773,17,61,17H44.168C44.683,17.886,45,18.902,45,20\r\n\t\t\t\tc0,1.657-0.672,3.157-1.757,4.243l-7,7C35.157,32.328,33.657,33,32,33c-1.657,0-3.157-0.672-4.243-1.757l-7-7\r\n\t\t\t\tC19.672,23.157,19,21.657,19,20c0-1.098,0.317-2.114,0.832-3H3c-0.773,0-1.47,0.3-2.002,0.78L32,42L63.002,17.78z M63.106,17.866\r\n\t\t\t\tL43.622,36.741l19.569,23.296C63.689,59.502,64,58.789,64,58V20C64,19.165,63.657,18.41,63.106,17.866z M0.894,17.866\r\n\t\t\t\tC0.343,18.41,0,19.165,0,20v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,17.866z M32,48l-8.136-7.881L0.943,60.175\r\n\t\t\t\tC1.481,60.683,2.202,61,3,61h58c0.798,0,1.519-0.317,2.057-0.825L40.136,40.119L32,48z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.002,10.78C62.47,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78\r\n\t\t\t\tL32,35L63.002,10.78z M0.894,10.866C0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z\r\n\t\t\t\t M32,41l-8.136-7.881L0.943,53.175C1.481,53.683,2.202,54,3,54h58c0.798,0,1.519-0.317,2.057-0.825L40.136,33.119L32,41z\r\n\t\t\t\t M63.106,10.866L43.622,29.741l19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.106,10.866z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.002,10.78C62.47,10.3,61.773,10,61,10H3c-0.773,0-1.47,0.3-2.002,0.78\r\n\t\t\t\tL32,35L63.002,10.78z M0.894,10.866C0.343,11.41,0,12.165,0,13v38c0,0.789,0.311,1.501,0.809,2.037l19.569-23.296L0.894,10.866z\r\n\t\t\t\t M32,41l-8.136-7.881L0.943,53.175C1.481,53.683,2.202,54,3,54h58c0.798,0,1.519-0.317,2.057-0.825L40.136,33.119L32,41z\r\n\t\t\t\t M63.106,10.866L43.622,29.741l19.569,23.296C63.689,52.502,64,51.789,64,51V13C64,12.165,63.657,11.41,63.106,10.866z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S4.343,7,6,7z\r\n\t\t\t\t M61,57H3V16h58V57z M27.758,37l-4.95,4.95c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0l4.95-4.95\r\n\t\t\t\tl4.95,4.95c1.172,1.172,3.071,1.172,4.243,0c1.172-1.172,1.171-3.071,0-4.243L36.243,37l4.95-4.95\r\n\t\t\t\tc1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0L32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0\r\n\t\t\t\tc-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S4.343,7,6,7z\r\n\t\t\t\t M61,57H3V16h58V57z M27.758,37l-4.95,4.95c-1.172,1.172-1.172,3.071,0,4.243c1.172,1.172,3.071,1.172,4.243,0l4.95-4.95\r\n\t\t\t\tl4.95,4.95c1.172,1.172,3.071,1.172,4.243,0c1.172-1.172,1.171-3.071,0-4.243L36.243,37l4.95-4.95\r\n\t\t\t\tc1.172-1.172,1.172-3.071,0-4.243c-1.172-1.172-3.071-1.172-4.243,0L32,32.758l-4.95-4.95c-1.171-1.171-3.071-1.172-4.243,0\r\n\t\t\t\tc-1.171,1.172-1.171,3.071,0,4.243L27.758,37z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12\r\n\t\t\t\tC43.664,32.579,44,31.828,44,31c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878\r\n\t\t\t\tC24.579,34.336,23.828,34,23,34c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26.879,45.121C27.422,45.664,28.172,46,29,46s1.578-0.336,2.121-0.879l12-12\r\n\t\t\t\tC43.664,32.579,44,31.828,44,31c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L29,38.757l-3.879-3.878\r\n\t\t\t\tC24.579,34.336,23.828,34,23,34c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L26.879,45.121z M61,4H3\r\n\t\t\t\tC1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7C64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,40h4v0h16v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-7v0h-6v0h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,40h4v0h16v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-7v0h-6v0h-7\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS4.343,7,6,7z M61,57H3V16h58V57z M22,40h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-7v-7c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3C19,38.657,20.343,40,22,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_3","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M15,57H3V31h12V57z M46,57H18V31h28V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7\r\n\t\t\t\tz M15,57H3V31h12V57z M46,57H18V31h28V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3\r\n\t\t\t\tV31h43V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S22.343,7,24,7z M15,7c1.657,0,3,1.343,3,3\r\n\t\t\t\ts-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3s-3-1.343-3-3S4.343,7,6,7z M46,57H3\r\n\t\t\t\tV31h43V57z M61,57H49V31h12V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER_LAYOUT_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z M61,28H3V16h58V28z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3s-1.343,3-3,3c-1.657,0-3-1.343-3-3S13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3s-1.343,3-3,3\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S4.343,7,6,7z M15,57H3V31h12V57z M61,57H18V31h43V57z M61,28H3V16h58V28z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BROWSER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BROWSER","display":"inline"},"children":[{"name":"g","attribs":{"id":"BROWSER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3s-3-1.343-3-3C21,8.343,22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C12,8.343,13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C3,8.343,4.343,7,6,7z M61,57H3V16h58V57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,4H3C1.343,4,0,5.343,0,7v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V7\r\n\t\t\t\tC64,5.343,62.657,4,61,4z M24,7c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3s-3-1.343-3-3C21,8.343,22.343,7,24,7z M15,7\r\n\t\t\t\tc1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C12,8.343,13.343,7,15,7z M6,7c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,1.657-1.343,3-3,3c-1.657,0-3-1.343-3-3C3,8.343,4.343,7,6,7z M61,57H3V16h58V57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MOUSTACHE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MOUSTACHE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MOUSTACHE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125\r\n\t\t\t\tc-5.253,0-7.725-8.839-15.934-8.839c-6.513,0-8.497,5.067-8.928,5.067c-0.431,0-2.415-5.067-8.927-5.067\r\n\t\t\t\tc-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125c-1.06,0.269,1.955,15.277,16.323,15.277\r\n\t\t\t\tc9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.182,7.238,15.504,7.238C61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M63.827,26.719c-1.134-0.288-2.876,4.125-6.966,4.125\r\n\t\t\t\tc-5.253,0-7.725-8.839-15.934-8.839c-6.513,0-8.497,5.067-8.928,5.067c-0.431,0-2.415-5.067-8.927-5.067\r\n\t\t\t\tc-8.208,0-10.681,8.839-15.935,8.839c-4.09,0-5.83-4.413-6.964-4.125c-1.06,0.269,1.955,15.277,16.323,15.277\r\n\t\t\t\tc9.322,0,14.802-7.238,15.503-7.238c0.702,0,6.182,7.238,15.504,7.238C61.872,41.996,64.887,26.988,63.827,26.719z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LIST_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"LIST_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M9,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,46.343,10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3s1.343,3,3,3c0,0,0,0,0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c0,0,0,0,0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H21.001c0,0-0.001,0-0.001,0c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC18,17.657,19.343,19,21,19z M9,13C9,13,8.999,13,8.999,13H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,14.343,10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,46.343,62.657,45,61,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M9,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6l0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,46.343,10.657,45,9,45z M61,29H21c-1.657,0-3,1.343-3,3s1.343,3,3,3c0,0,0,0,0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M9,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c0,0,0,0,0,0c1.657,0,3-1.343,3-3\r\n\t\t\t\tS10.657,29,9,29z M21,19h40c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H21.001c0,0-0.001,0-0.001,0c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC18,17.657,19.343,19,21,19z M9,13C9,13,8.999,13,8.999,13H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h6c1.657,0,3-1.343,3-3\r\n\t\t\t\tC12,14.343,10.657,13,9,13z M61,45H21c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3l0,0h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,46.343,62.657,45,61,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LIST_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LIST","display":"inline"},"children":[{"name":"g","attribs":{"id":"LIST","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h58c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,17.657,1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z\r\n\t\t\t\t M61,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,46.343,62.657,45,61,45z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M3,19h58c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC0,17.657,1.343,19,3,19z M61,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,30.343,62.657,29,61,29z\r\n\t\t\t\t M61,45H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,46.343,62.657,45,61,45z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MORE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MORE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MORE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.315,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.314,0,6.001-2.687,6.001-6.001C19.001,28.687,16.315,26,13.001,26z M51.001,26C47.687,26,45,28.687,45,32.002\r\n\t\t\t\tc0,3.315,2.687,6.001,6.001,6.001c3.314,0,6.001-2.687,6.001-6.001C57.001,28.687,54.315,26,51.001,26z M32.001,26\r\n\t\t\t\tC28.687,26,26,28.687,26,32.002c0,3.315,2.686,6.001,6.001,6.001s6.001-2.687,6.001-6.001C38.001,28.687,35.315,26,32.001,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13.001,26C9.687,26,7,28.687,7,32.002c0,3.315,2.687,6.001,6.001,6.001\r\n\t\t\t\tc3.314,0,6.001-2.687,6.001-6.001C19.001,28.687,16.315,26,13.001,26z M51.001,26C47.687,26,45,28.687,45,32.002\r\n\t\t\t\tc0,3.315,2.687,6.001,6.001,6.001c3.314,0,6.001-2.687,6.001-6.001C57.001,28.687,54.315,26,51.001,26z M32.001,26\r\n\t\t\t\tC28.687,26,26,28.687,26,32.002c0,3.315,2.686,6.001,6.001,6.001s6.001-2.687,6.001-6.001C38.001,28.687,35.315,26,32.001,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159\r\n\t\t\t\tl0.001-0.001l-18-18l-0.008,0.008C24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275\r\n\t\t\t\tl15.718,15.718L20.84,47.917l0.001,0.001C20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.321,2.082-0.841\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31.994c0-0.002,0-0.005,0-0.007c0-0.848-0.352-1.613-0.918-2.159\r\n\t\t\t\tl0.001-0.001l-18-18l-0.008,0.008C24.536,11.318,23.806,11,23,11c-1.657,0-3,1.343-3,3c0,0.91,0.406,1.725,1.046,2.275\r\n\t\t\t\tl15.718,15.718L20.84,47.917l0.001,0.001C20.321,48.458,20,49.191,20,50c0,1.657,1.343,3,3,3c0.809,0,1.542-0.321,2.082-0.841\r\n\t\t\t\tl0.001,0.001l18-18l-0.001-0.001C43.648,33.613,44,32.848,44,32C44,31.998,44,31.996,44,31.994z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.806,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.002,0,0.004,0,0.007c0,0.848,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001\r\n\t\t\t\tC39.458,52.679,40.191,53,41,53c1.657,0,3-1.343,3-3C44,49.191,43.679,48.458,43.16,47.917L43.16,47.917z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.16,47.917L27.236,31.994l15.718-15.718C43.594,15.725,44,14.91,44,14\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.806,0-1.536,0.318-2.075,0.835l-0.008-0.008l-18,18l0.001,0.001C20.352,30.374,20,31.139,20,31.987\r\n\t\t\t\tc0,0.002,0,0.004,0,0.007c0,0.002,0,0.004,0,0.007c0,0.848,0.352,1.613,0.918,2.159l-0.001,0.001l18,18l0.001-0.001\r\n\t\t\t\tC39.458,52.679,40.191,53,41,53c1.657,0,3-1.343,3-3C44,49.191,43.679,48.458,43.16,47.917L43.16,47.917z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001\r\n\t\t\t\tC33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0s-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001\r\n\t\t\t\tl-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41c0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718\r\n\t\t\t\tL47.917,43.16l0.001-0.001C48.458,43.679,49.191,44,50,44c1.657,0,3-1.343,3-3C53,40.191,52.679,39.458,52.159,38.918z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52.159,38.918L52.159,38.918L34.16,20.917l-0.001,0.001\r\n\t\t\t\tC33.613,20.352,32.848,20,32,20c-0.002,0-0.004,0-0.007,0s-0.004,0-0.007,0c-0.848,0-1.613,0.352-2.159,0.918l-0.001-0.001\r\n\t\t\t\tl-18,18l0.008,0.008C11.318,39.464,11,40.195,11,41c0,1.657,1.343,3,3,3c0.91,0,1.725-0.406,2.275-1.046l15.718-15.718\r\n\t\t\t\tL47.917,43.16l0.001-0.001C48.458,43.679,49.191,44,50,44c1.657,0,3-1.343,3-3C53,40.191,52.679,39.458,52.159,38.918z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ARROW__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"ARROW__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001\r\n\t\t\t\tL31.993,36.764L16.275,21.046C15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008\r\n\t\t\t\tl18,18l0.001-0.001C30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0\r\n\t\t\t\tc0.848,0,1.613-0.352,2.159-0.918l0.001,0.001l18-18l-0.001-0.001C52.679,24.543,53,23.809,53,23z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,23c0-1.657-1.343-3-3-3c-0.809,0-1.542,0.321-2.082,0.841l-0.001-0.001\r\n\t\t\t\tL31.993,36.764L16.275,21.046C15.725,20.406,14.91,20,14,20c-1.657,0-3,1.343-3,3c0,0.805,0.318,1.536,0.835,2.075l-0.008,0.008\r\n\t\t\t\tl18,18l0.001-0.001C30.374,43.648,31.139,44,31.987,44c0.002,0,0.004,0,0.007,0c0.002,0,0.004,0,0.007,0\r\n\t\t\t\tc0.848,0,1.613-0.352,2.159-0.918l0.001,0.001l18-18l-0.001-0.001C52.679,24.543,53,23.809,53,23z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32L15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879C44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M36.243,32l11.879-11.879C48.664,19.579,49,18.828,49,18c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.757L20.121,15.879C19.578,15.336,18.828,15,18,15c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32L15.879,43.879C15.336,44.422,15,45.172,15,46c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,36.243l11.879,11.879C44.422,48.664,45.172,49,46,49c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TICK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TICK","display":"inline"},"children":[{"name":"g","attribs":{"id":"TICK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879\r\n\t\t\t\tC15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l23-23C52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879\r\n\t\t\t\tC15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l23-23C52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MINUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MINUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"MINUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS53.657,29,52,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H12c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tS53.657,29,52,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PLUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"PLUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H35V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v17H12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,29H35V12c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v17H12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h17v17c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h17c1.657,0,3-1.343,3-3S53.657,29,52,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOKMARK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOKMARK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOKMARK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,5H23c-1.657,0-3,1.343-3,3v51l12-12l12,12V8C44,6.343,42.657,5,41,5z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10.759,32.731L10.759,32.731l11,5l0,0C22.137,37.903,22.557,38,23,38\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.731z M10.759,43.731L10.759,43.731l11,5l0,0C22.137,48.903,22.557,49,23,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,38.097,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.731z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731h0l-11-5v0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64c0.422,0,0.823-0.087,1.187-0.245L62.129,51.78\r\n\t\t\t\tC63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10.759,32.731L10.759,32.731l11,5l0,0C22.137,37.903,22.557,38,23,38\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,27.097,12.443,27,12,27c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,31.214,9.721,32.259,10.759,32.731z M10.759,43.731L10.759,43.731l11,5l0,0C22.137,48.903,22.557,49,23,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731l0,0l-11-5v0C12.863,38.097,12.443,38,12,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,42.214,9.721,43.259,10.759,43.731z M10.759,21.731L10.759,21.731l11,5l0,0C22.137,26.903,22.557,27,23,27\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.214-0.721-2.259-1.759-2.731h0l-11-5v0C12.863,16.097,12.443,16,12,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC9,20.214,9.721,21.259,10.759,21.731z M41,49c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,43.259,55,42.214,55,41\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,43.741,38,44.786,38,46C38,47.657,39.343,49,41,49z\r\n\t\t\t\t M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23c-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241\r\n\t\t\t\tC4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228l0,0C3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46\r\n\t\t\t\tc0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64c0.422,0,0.823-0.087,1.187-0.245L62.129,51.78\r\n\t\t\t\tC63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995V7.488l23,9.517V56.512z M58,46.995l-23,9.517\r\n\t\t\t\tV17.005l23-9.517V46.995z M41,38c0.443,0,0.863-0.097,1.241-0.269l0,0l11-5C54.279,32.259,55,31.214,55,30c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5v0C38.721,32.741,38,33.786,38,35C38,36.657,39.343,38,41,38z M41,27\r\n\t\t\t\tc0.443,0,0.863-0.097,1.241-0.269l0,0l11-5v0C54.279,21.259,55,20.214,55,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.443,0-0.863,0.097-1.241,0.269l0,0l-11,5C38.721,21.741,38,22.786,38,24C38,25.657,39.343,27,41,27z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23\r\n\t\t\t\tc-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241C4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228v0\r\n\t\t\t\tC3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46c0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64\r\n\t\t\t\tc0.422,0,0.823-0.087,1.187-0.245L62.129,51.78C63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995\r\n\t\t\t\tV7.488l23,9.517V56.512z M58,46.995l-23,9.517V17.005l23-9.517V46.995z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0c-0.406,0-0.794,0.082-1.147,0.228l0,0L59.848,0.23\r\n\t\t\t\tc-0.009,0.004-0.018,0.007-0.027,0.011L32,11.753L4.179,0.241C4.17,0.237,4.161,0.234,4.152,0.23L4.147,0.228v0\r\n\t\t\t\tC3.794,0.082,3.406,0,3,0C1.343,0,0,1.343,0,3v46c0,1.257,0.774,2.333,1.871,2.78l28.942,11.976C31.177,63.913,31.578,64,32,64\r\n\t\t\t\tc0.422,0,0.823-0.087,1.187-0.245L62.129,51.78C63.226,51.333,64,50.257,64,49V3C64,1.343,62.657,0,61,0z M29,56.512L6,46.995\r\n\t\t\t\tV7.488l23,9.517V56.512z M58,46.995l-23,9.517V17.005l23-9.517V46.995z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BOOK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BOOK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BOOK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,18h8c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC7,16.657,8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6\r\n\t\t\t\tc0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C19.657,52,21,50.657,21,49z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M10,18h8c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC7,16.657,8.343,18,10,18z M10,35h8c1.657,0,3-1.343,3-3s-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3S8.343,35,10,35z M54,3h-3v58h3\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C57,4.343,55.657,3,54,3z M13,6v3h5c3.314,0,6,2.686,6,6c0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6\r\n\t\t\t\tc0,3.314-2.686,6-6,6h-5v5h5c3.314,0,6,2.686,6,6s-2.686,6-6,6h-5v3c0,1.657,1.343,3,3,3h32V3H16C14.343,3,13,4.343,13,6z M21,49\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8C19.657,52,21,50.657,21,49z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46\r\n\t\t\t\tc0-1.657,0.672-3.157,1.757-4.243l7-7C45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.101C42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z\r\n\t\t\t\t M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36c-0.828,0-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243V60c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V46.243l1.879,1.879\r\n\t\t\t\tC54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3C59,45.172,58.664,44.422,58.121,43.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,46\r\n\t\t\t\tc0-1.657,0.672-3.157,1.757-4.243l7-7C45.843,33.672,47.343,33,49,33v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h35v-7.101C42.673,51.954,42.343,52,42,52C38.686,52,36,49.314,36,46z\r\n\t\t\t\t M58.121,43.879l-7-7C50.578,36.336,49.828,36,49,36c-0.828,0-1.578,0.336-2.121,0.879l-7,7C39.336,44.422,39,45.172,39,46\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L46,46.243V60c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V46.243l1.879,1.879\r\n\t\t\t\tC54.422,48.664,55.172,49,56,49c1.657,0,3-1.343,3-3C59,45.172,58.664,44.422,58.121,43.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0.343,0,0.673,0.046,1,0.101V39c0-3.314,2.686-6,6-6c0,0,0,0,0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h31.515l-1.757-1.757C36.672,56.157,36,54.657,36,53z M56,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53C59,51.343,57.657,50,56,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,21.008h19L27.039,1H27v17.001C27,19.662,28.343,21.008,30,21.008z M36,53\r\n\t\t\t\tc0-3.314,2.686-6,6-6c0.343,0,0.673,0.046,1,0.101V39c0-3.314,2.686-6,6-6c0,0,0,0,0,0v-8.986H30c-3.314,0-6-2.692-6-6.013V1H8\r\n\t\t\t\tC6.343,1,5,2.343,5,4v52c0,1.657,1.343,3,3,3h31.515l-1.757-1.757C36.672,56.157,36,54.657,36,53z M56,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,52.757V39c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v13.757l-1.879-1.879\r\n\t\t\t\tC43.578,50.336,42.828,50,42,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l7,7C47.422,62.664,48.172,63,49,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C58.664,54.579,59,53.829,59,53C59,51.343,57.657,50,56,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.515,54\r\n\t\t\t\tl-1.757-1.757C38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.153,0.675,4.238,1.762l0.005-0.005L49,44.515v-19.5\r\n\t\t\t\tH30c-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28v0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.515,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,22.008h19L27,1.964v17.037C27,20.662,28.343,22.008,30,22.008z M41.515,54\r\n\t\t\t\tl-1.757-1.757C38.672,51.157,38,49.657,38,48c0-3.314,2.686-6,6-6c1.657,0,3.153,0.675,4.238,1.762l0.005-0.005L49,44.515v-19.5\r\n\t\t\t\tH30c-3.314,0-6-2.692-6-6.013V2H8C6.343,2,5,3.343,5,5v52c0,1.657,1.343,3,3,3h28v0h2c0-1.657,0.672-3.156,1.758-4.242\r\n\t\t\t\tl-0.001-0.001L41.515,54z M54.243,54l3.879-3.878C58.664,49.578,59,48.828,59,48c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L50,49.758l-3.879-3.879C45.578,45.336,44.829,45,44,45c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L45.757,54l-3.879,3.879C41.336,58.422,41,59.172,41,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L50,58.243l3.879,3.879C54.422,62.664,55.172,63,56,63c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L54.243,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L48,54.757l-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l4,4C46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51\r\n\t\t\t\tC59,49.343,57.657,48,56,48z M38,55c0-3.314,2.686-6,6-6c1.533,0,2.909,0.599,3.967,1.547L49,49.515v-23.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52c0,1.657,1.343,3,3,3h23v0h10.515l-1.757-1.757\r\n\t\t\t\tC38.672,58.157,38,56.657,38,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M30,23.008h19L27,2.964v17.037C27,21.662,28.343,23.008,30,23.008z M56,48\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L48,54.757l-1.879-1.879C45.578,52.336,44.828,52,44,52c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l4,4C46.422,61.664,47.172,62,48,62s1.578-0.336,2.121-0.879l8-8C58.664,52.579,59,51.828,59,51\r\n\t\t\t\tC59,49.343,57.657,48,56,48z M38,55c0-3.314,2.686-6,6-6c1.533,0,2.909,0.599,3.967,1.547L49,49.515v-23.5H30\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V3H8C6.343,3,5,4.343,5,6v52c0,1.657,1.343,3,3,3h23v0h10.515l-1.757-1.757\r\n\t\t\t\tC38.672,58.157,38,56.657,38,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h6V26.014H31c-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35\r\n\t\t\t\tc0,0,0,0,0,0C40.686,61,38,58.314,38,55z M56,52H44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,23.008h19L28,2.964v17.037C28,21.662,29.343,23.008,31,23.008z M38,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h6V26.014H31c-3.314,0-6-2.692-6-6.013V2.964h-9V3H9C7.343,3,6,4.343,6,6v52c0,1.657,1.343,3,3,3h35\r\n\t\t\t\tc0,0,0,0,0,0C40.686,61,38,58.314,38,55z M56,52H44c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S57.657,52,56,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3\r\n\t\t\t\tv-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52c0,1.657,1.343,3,3,3h35c0,0,0,0,0,0C40.686,60,38,57.314,38,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,22.008h19L28,1.964v17.037C28,20.662,29.343,22.008,31,22.008z M56,51h-3\r\n\t\t\t\tv-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S57.657,51,56,51z M38,54c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6V25.014H31\r\n\t\t\t\tc-3.314,0-6-2.692-6-6.013V1.964h-9V2H9C7.343,2,6,3.343,6,5v52c0,1.657,1.343,3,3,3h35c0,0,0,0,0,0C40.686,60,38,57.314,38,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENTS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENTS","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENTS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23.015H38C34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037\r\n\t\t\t\tC35,18.662,36.343,20.008,38,20.008z M10,55V6C8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16\r\n\t\t\t\tC12.686,61,10,58.314,10,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,17.001V0H16c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38\r\n\t\t\t\tc1.657,0,3-1.343,3-3V23.015H38C34.686,23.015,32,20.322,32,17.001z M38,20.008h19L35-0.036v17.037\r\n\t\t\t\tC35,18.662,36.343,20.008,38,20.008z M10,55V6C8.343,6,7,7.343,7,9v49c0,3.314,2.686,6,6,6h35c1.657,0,3-1.343,3-3H16\r\n\t\t\t\tC12.686,61,10,58.314,10,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOCUMENT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOCUMENT","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOCUMENT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001\r\n\t\t\t\tV3H13c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,23.008h19L32,2.964v17.037C32,21.662,33.343,23.008,35,23.008z M29,20.001\r\n\t\t\t\tV3H13c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h38c1.657,0,3-1.343,3-3V26.014H35C31.686,26.014,29,23.322,29,20.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757\r\n\t\t\t\tl-3.879-3.879C50.578,43.336,49.828,43,49,43c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879\r\n\t\t\t\tC46.336,56.422,46,57.172,46,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879\r\n\t\t\t\tC59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879\r\n\t\t\t\tC63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41v0h0.557c0.07-0.078,0.126-0.168,0.2-0.243L46.515,52l-1.757-1.758\r\n\t\t\t\tC43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L55,43.515l1.757-1.757\r\n\t\t\t\tC57.843,40.672,59.343,40,61,40c1.098,0,2.114,0.317,3,0.832V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,47.757\r\n\t\t\t\tl-3.879-3.879C50.578,43.336,49.828,43,49,43c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L50.757,52l-3.879,3.879\r\n\t\t\t\tC46.336,56.422,46,57.172,46,58c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,56.243l3.879,3.879\r\n\t\t\t\tC59.422,60.664,60.172,61,61,61c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,52l3.879-3.879\r\n\t\t\t\tC63.664,47.578,64,46.829,64,46z M0,51c0,1.657,1.343,3,3,3h41v0h0.557c0.07-0.078,0.126-0.168,0.2-0.243L46.515,52l-1.757-1.758\r\n\t\t\t\tC43.672,49.157,43,47.657,43,46c0-3.314,2.686-6,6-6c1.657,0,3.157,0.672,4.243,1.757L55,43.515l1.757-1.757\r\n\t\t\t\tC57.843,40.672,59.343,40,61,40c1.098,0,2.114,0.317,3,0.832V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__OK_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879\r\n\t\t\t\tC50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60\r\n\t\t\t\ts1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49C64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3\r\n\t\t\t\tC1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52c0,1.657,1.343,3,3,3h40.367c0,0,0,0,0,0\r\n\t\t\t\tC43.144,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781C57.843,43.672,59.343,43,61,43\r\n\t\t\t\tc1.099,0,2.114,0.317,3,0.832V20H0V52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,46c-0.828,0-1.578,0.336-2.121,0.879L53,52.758l-1.879-1.879\r\n\t\t\t\tC50.578,50.336,49.828,50,49,50c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l4,4C51.422,59.664,52.172,60,53,60\r\n\t\t\t\ts1.578-0.336,2.121-0.879l8-8C63.664,50.579,64,49.828,64,49C64,47.343,62.657,46,61,46z M61,11H23.982L18,5H3\r\n\t\t\t\tC1.343,5,0,6.343,0,8v9h64v-3C64,12.343,62.657,11,61,11z M0,52c0,1.657,1.343,3,3,3h40.367c0,0,0,0,0,0\r\n\t\t\t\tC43.144,54.372,43,53.705,43,53c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781C57.843,43.672,59.343,43,61,43\r\n\t\t\t\tc1.099,0,2.114,0.317,3,0.832V20H0V52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.144,56.372,42,55.705,42,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h12c1.544,0,2.937,0.599,4,1.557V22H0V54z M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h39.367C42.144,56.372,42,55.705,42,55\r\n\t\t\t\tc0-3.314,2.686-6,6-6h12c1.544,0,2.937,0.599,4,1.557V22H0V54z M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M61,13H23.982L18,7H3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER__x2F__OK_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER__x2F__OK_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,49h-3v-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC63,50.343,61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.144,53.372,42,52.705,42,52c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.937,0.599,4,1.557V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,49h-3v-3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3h-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tC63,50.343,61.657,49,60,49z M0,51c0,1.657,1.343,3,3,3h39.367C42.144,53.372,42,52.705,42,52c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6s6,2.686,6,6c1.544,0,2.937,0.599,4,1.557V19H0V51z M61,10H23.982L18,4H3C1.343,4,0,5.343,0,7v9h64v-3\r\n\t\t\t\tC64,11.343,62.657,10,61,10z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLDER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLDER","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLDER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M0,54c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V22H0V54z M61,13H23.982L18,7\r\n\t\t\t\tH3c-1.657,0-3,1.343-3,3v9h64v-3C64,14.343,62.657,13,61,13z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_NEXT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58\r\n\t\t\t\tC26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71\r\n\t\t\t\tV39c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-1.657,0-3,1.343-3,3v4.29l-9.235-6.717L26.76,22.58\r\n\t\t\t\tC26.264,22.219,25.66,22,25,22c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c0.66,0,1.264-0.219,1.76-0.58l0.005,0.007L36,34.71\r\n\t\t\t\tV39c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__SKIP_PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-0.66,0-1.265,0.219-1.76,0.58l-0.005-0.007L28,29.291V25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.29l9.235,6.717l0.005-0.007\r\n\t\t\t\tC37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39,22c-0.66,0-1.265,0.219-1.76,0.58l-0.005-0.007L28,29.291V25\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v14c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-4.29l9.235,6.717l0.005-0.007\r\n\t\t\t\tC37.736,41.781,38.34,42,39,42c1.657,0,3-1.343,3-3V25C42,23.343,40.657,22,39,22z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\t\tC6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z M45.559,29.437l-9.699-6.789C35.349,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394C21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005C17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.655l9.125-6.387\r\n\t\t\t\tv4.067h0.005C31.013,40.67,32.351,42,34,42c0.708,0,1.358-0.246,1.871-0.655l9.68-6.776C46.419,34.043,47,33.089,47,32\r\n\t\t\t\tC47,30.914,46.423,29.963,45.559,29.437z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z M45.559,29.437l-9.699-6.789C35.349,22.243,34.703,22,34,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v4.018l-9.135-6.394C21.349,22.243,20.703,22,20,22c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.008,0.001,0.016,0.001,0.024h-0.005v14h0.005C17.013,40.67,18.351,42,20,42c0.708,0,1.358-0.246,1.871-0.655l9.125-6.387\r\n\t\t\t\tv4.067h0.005C31.013,40.67,32.351,42,34,42c0.708,0,1.358-0.246,1.871-0.655l9.68-6.776C46.419,34.043,47,33.089,47,32\r\n\t\t\t\tC47,30.914,46.423,29.963,45.559,29.437z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__REWIND","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.135,6.394\r\n\t\t\t\tv-4.018h-0.006C32.999,25.016,33,25.008,33,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789\r\n\t\t\t\tC17.577,29.963,17,30.914,17,32c0,1.089,0.581,2.043,1.449,2.569l9.68,6.776C28.642,41.754,29.292,42,30,42\r\n\t\t\t\tc1.649,0,2.987-1.33,2.999-2.976h0.005v-4.067l9.125,6.387C42.642,41.754,43.292,42,44,42c1.649,0,2.987-1.33,2.999-2.976h0.005\r\n\t\t\t\tv-14h-0.005C46.999,25.016,47,25.008,47,25z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.135,6.394\r\n\t\t\t\tv-4.018h-0.006C32.999,25.016,33,25.008,33,25c0-1.657-1.343-3-3-3c-0.703,0-1.349,0.242-1.861,0.648l-9.699,6.789\r\n\t\t\t\tC17.577,29.963,17,30.914,17,32c0,1.089,0.581,2.043,1.449,2.569l9.68,6.776C28.642,41.754,29.292,42,30,42\r\n\t\t\t\tc1.649,0,2.987-1.33,2.999-2.976h0.005v-4.067l9.125,6.387C42.642,41.754,43.292,42,44,42c1.649,0,2.987-1.33,2.999-2.976h0.005\r\n\t\t\t\tv-14h-0.005C46.999,25.016,47,25.008,47,25z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PAUSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z\r\n\t\t\t\t M29,24c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35C35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6s26,11.64,26,26C58,46.36,46.359,58,32,58z\r\n\t\t\t\t M29,24c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H23C23.004,41.661,24.346,43,26,43\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.023-0.001-0.047-0.002-0.07V24.07C28.999,24.047,29,24.024,29,24z M41,24c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.002,0,0.005,0,0.007h-0.002v16H35C35.004,41.661,36.346,43,38,43c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.023-0.001-0.047-0.002-0.07V24.07C40.999,24.047,41,24.024,41,24z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__STOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tV24C43,22.343,41.657,21,40,21z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tV24C43,22.343,41.657,21,40,21z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLAY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3c0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004\r\n\t\t\t\tc0.055-0.005,0.109-0.01,0.163-0.018c0.01-0.001,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035\r\n\t\t\t\tc0.01-0.002,0.019-0.005,0.029-0.007c0.057-0.013,0.112-0.027,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008\r\n\t\t\t\tc0.128-0.038,0.252-0.084,0.372-0.138c0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.056,0.242-0.12,0.355-0.191l0.013,0.02\r\n\t\t\t\tl15.911-9.974C42.405,34.066,43,33.103,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41.492,29.398l-15.8-9.875C25.21,19.193,24.628,19,24,19c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv20c0,1.657,1.343,3,3,3c0.066,0,0.131-0.003,0.195-0.007c0.017-0.001,0.034-0.003,0.051-0.004\r\n\t\t\t\tc0.055-0.005,0.109-0.01,0.163-0.018c0.01-0.001,0.021-0.002,0.031-0.004c0.064-0.01,0.128-0.021,0.191-0.035\r\n\t\t\t\tc0.01-0.002,0.019-0.005,0.029-0.007c0.057-0.013,0.112-0.027,0.167-0.043c0.009-0.003,0.018-0.005,0.027-0.008\r\n\t\t\t\tc0.128-0.038,0.252-0.084,0.372-0.138c0.005-0.002,0.009-0.004,0.014-0.006c0.123-0.056,0.242-0.12,0.355-0.191l0.013,0.02\r\n\t\t\t\tl15.911-9.974C42.405,34.066,43,33.103,43,32C43,30.886,42.393,29.915,41.492,29.398z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SQUARE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SQUARE","display":"inline"},"children":[{"name":"g","attribs":{"id":"SQUARE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V12.243l1.879,1.879C37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,2.336,32.829,2,32,2c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z\r\n\t\t\t\t M60,6H41.485l4,4H59v34H5V10h13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M25,15c0.829,0,1.579-0.336,2.121-0.879L29,12.243V26c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V12.243l1.879,1.879C37.422,14.664,38.172,15,39,15c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121l-7-7\r\n\t\t\t\tC33.578,2.336,32.829,2,32,2c-0.828,0-1.578,0.336-2.121,0.879l-7,7C22.336,10.422,22,11.172,22,12C22,13.657,23.343,15,25,15z\r\n\t\t\t\t M60,6H41.485l4,4H59v34H5V10h13.515l4-4H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V9C63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL35,18.758V5c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z\r\n\t\t\t\t M60,6H38v4h21v34H5V10h21V6H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,19c0,0.828,0.336,1.578,0.879,2.121l7,7C30.422,28.664,31.172,29,32,29\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C41.664,20.579,42,19.828,42,19c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879\r\n\t\t\t\tL35,18.758V5c0-1.657-1.343-3-3-3s-3,1.343-3,3v13.757l-1.879-1.879C26.578,16.336,25.828,16,25,16C23.343,16,22,17.343,22,19z\r\n\t\t\t\t M60,6H38v4h21v34H5V10h21V6H4C2.343,6,1,7.343,1,9v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC63,7.343,61.657,6,60,6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879C36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879C40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879C27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879C23.336,29.422,23,30.172,23,31z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z M23,31c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L32,29.243l3.879,3.879C36.422,33.664,37.172,34,38,34c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L36.243,25l3.879-3.879C40.664,20.578,41,19.828,41,19c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,20.757l-3.879-3.879C27.578,16.336,26.828,16,26,16c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,25l-3.879,3.879C23.336,29.422,23,30.172,23,31z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl8-8C40.664,22.578,41,21.829,41,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879\r\n\t\t\t\tC27.578,22.336,26.828,22,26,22c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M27.879,31.121C28.422,31.664,29.172,32,30,32c0.829,0,1.578-0.336,2.121-0.879\r\n\t\t\t\tl8-8C40.664,22.578,41,21.829,41,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L30,24.757l-1.879-1.879\r\n\t\t\t\tC27.578,22.336,26.828,22,26,22c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.879,31.121z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H26c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC23,26.657,24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H26c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC23,26.657,24.343,28,26,28z M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19\r\n\t\t\t\tc1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPUTER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3C23,26.657,24.343,28,26,28z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,28h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3C23,26.657,24.343,28,26,28z M60,4H4\r\n\t\t\t\tC2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5h19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z\r\n\t\t\t\t M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IMAC_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IMAC","display":"inline"},"children":[{"name":"g","attribs":{"id":"IMAC","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60,4H4C2.343,4,1,5.343,1,7v40c0,1.657,1.343,3,3,3h19v5l-4,4v1h26v-1l-4-4v-5\r\n\t\t\t\th19c1.657,0,3-1.343,3-3V7C63,5.343,61.657,4,60,4z M59,42H5V8h54V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MACBOOK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MACBOOK","display":"inline"},"children":[{"name":"g","attribs":{"id":"MACBOOK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49H25v-2h14V49z M54,42H10V16h44V42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58,44V15c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3v29H0v5\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3v-5H58z M39,49H25v-2h14V49z M54,42H10V16h44V42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IPAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"IPAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC57,4.343,55.657,3,54,3z M32,59c-1.105,0-2-0.896-2-2s0.895-2,2-2s2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M54,3H10C8.343,3,7,4.343,7,6v52c0,1.657,1.343,3,3,3h44c1.657,0,3-1.343,3-3V6\r\n\t\t\t\tC57,4.343,55.657,3,54,3z M32,59c-1.105,0-2-0.896-2-2s0.895-2,2-2s2,0.896,2,2S33.105,59,32,59z M51,53H13V9h38V53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"IPHONE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"IPHONE","display":"inline"},"children":[{"name":"g","attribs":{"id":"IPHONE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3\r\n\t\t\t\tV6C49,4.343,47.657,3,46,3z M32,58c-1.105,0-2-0.895-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C34,57.105,33.105,58,32,58z M46,51H18\r\n\t\t\t\tV9h28V51z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,3H18c-1.657,0-3,1.343-3,3v52c0,1.657,1.343,3,3,3h28c1.657,0,3-1.343,3-3\r\n\t\t\t\tV6C49,4.343,47.657,3,46,3z M32,58c-1.105,0-2-0.895-2-2c0-1.105,0.895-2,2-2s2,0.895,2,2C34,57.105,33.105,58,32,58z M46,51H18\r\n\t\t\t\tV9h28V51z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOGOUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGOUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOGOUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC44.475,20.292,43.772,20,43,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c0,0,0,0,0,0h18.182l-4.189,3.77l0,0C40.384,39.32,40,40.115,40,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.681,56,32.885,56,32z M26,52H14V12h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tC29,53.343,27.657,52,26,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M56,32c0-0.885-0.383-1.681-0.993-2.23l0,0l-10-9l0,0\r\n\t\t\t\tC44.475,20.292,43.772,20,43,20c-1.657,0-3,1.343-3,3c0,0.885,0.384,1.681,0.993,2.23l0,0L45.182,29H27c0,0,0,0,0,0\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c0,0,0,0,0,0h18.182l-4.189,3.77l0,0C40.384,39.32,40,40.115,40,41\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.772,0,1.475-0.292,2.007-0.77l0,0l10-9l0,0C55.617,33.681,56,32.885,56,32z M26,52H14V12h12\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3\r\n\t\t\t\tC29,53.343,27.657,52,26,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LOGIN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LOGIN","display":"inline"},"children":[{"name":"g","attribs":{"id":"LOGIN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.007,34.23C39.617,33.681,40,32.885,40,32c0-0.885-0.384-1.681-0.993-2.23\r\n\t\t\t\tl0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182l-4.189,3.77l0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3V31.937c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC56,31.934,56,31.933,56,31.932z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M39.007,34.23C39.617,33.681,40,32.885,40,32c0-0.885-0.384-1.681-0.993-2.23\r\n\t\t\t\tl0,0l-10-9l0,0C28.475,20.292,27.772,20,27,20c-1.657,0-3,1.343-3,3c0,0.885,0.383,1.681,0.993,2.23l0,0L29.182,29H11\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182l-4.189,3.77l0,0C24.384,39.32,24,40.115,24,41c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.772,0,1.475-0.292,2.007-0.77l0,0L39.007,34.23L39.007,34.23z M56,31.932V8.935c0-1.657-1.343-3-3-3H38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h12v40H38c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h15c1.657,0,3-1.343,3-3V31.937c0-0.001,0-0.002,0-0.003\r\n\t\t\t\tC56,31.934,56,31.933,56,31.932z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3c0,0,0,0,0,0V18.818l3.77,4.189l0,0C39.319,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,8.384,32.885,8,32,8c-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3c0,0,0,0,0,0V18.818l3.77,4.189l0,0C39.319,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.681,8.384,32.885,8,32,8c-0.885,0-1.681,0.384-2.23,0.993l0,0l-9,10l0,0\r\n\t\t\t\tC20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0l9-10l0,0C43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007L20.77,29.007z M55,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M20.77,29.007l9,10l0,0C30.319,39.616,31.115,40,32,40\r\n\t\t\t\tc0.885,0,1.68-0.384,2.23-0.993l0,0l9-10l0,0C43.708,28.475,44,27.772,44,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.885,0-1.681,0.383-2.23,0.993l0,0L35,29.182V11c0-1.657-1.343-3-3-3s-3,1.343-3,3v18.182l-3.77-4.189l0,0\r\n\t\t\t\tC24.681,24.384,23.885,24,23,24c-1.657,0-3,1.343-3,3C20,27.772,20.292,28.475,20.77,29.007L20.77,29.007z M55,35\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h22.997c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0H55c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632\r\n\t\t\t\tc-0.373,0.347-0.785,0.663-1.235,0.949c-0.451,0.286-0.875,0.568-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586\r\n\t\t\t\tc-0.702,0.52-1.313,1.088-1.833,1.703c-0.52,0.615-0.932,1.313-1.235,2.093c-0.304,0.78-0.455,1.699-0.455,2.756H31.47v-3.172\r\n\t\t\t\th-8.606c0.451-0.624,0.97-1.17,1.56-1.638c0.589-0.468,1.196-0.905,1.82-1.313c0.624-0.407,1.244-0.819,1.859-1.235\r\n\t\t\t\tc0.615-0.416,1.166-0.88,1.651-1.391c0.485-0.511,0.875-1.096,1.17-1.755c0.294-0.659,0.442-1.447,0.442-2.366\r\n\t\t\t\tc0-0.884-0.169-1.681-0.507-2.392c-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118\r\n\t\t\t\tC26.751,31.13,25.958,31,25.126,31c-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56\r\n\t\t\t\tc-0.555,0.667-0.971,1.447-1.248,2.34c-0.277,0.893-0.399,1.859-0.364,2.899h3.536c0-0.485,0.048-0.975,0.143-1.469\r\n\t\t\t\tc0.095-0.494,0.255-0.945,0.481-1.352c0.225-0.407,0.524-0.737,0.897-0.988c0.373-0.251,0.828-0.377,1.365-0.377\r\n\t\t\t\tc0.797,0,1.452,0.247,1.963,0.741c0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.482\r\n\t\t\t\tC27.045,38.895,26.733,39.285,26.361,39.632z M41.467,45.807c-0.269,0.321-0.598,0.581-0.988,0.78\r\n\t\t\t\tc-0.39,0.199-0.828,0.299-1.313,0.299c-0.832,0-1.517-0.247-2.054-0.741c-0.537-0.494-0.85-1.157-0.936-1.989h-3.692\r\n\t\t\t\tc0.017,0.953,0.212,1.79,0.585,2.509c0.373,0.719,0.871,1.322,1.495,1.807c0.624,0.485,1.339,0.845,2.145,1.079\r\n\t\t\t\tc0.806,0.234,1.651,0.351,2.535,0.351c0.919,0.017,1.785-0.134,2.6-0.455c0.815-0.321,1.529-0.776,2.145-1.365\r\n\t\t\t\tc0.615-0.589,1.105-1.287,1.469-2.093c0.364-0.806,0.546-1.677,0.546-2.613c0-0.849-0.126-1.651-0.377-2.405\r\n\t\t\t\tc-0.252-0.754-0.616-1.408-1.092-1.963c-0.477-0.555-1.062-0.997-1.755-1.326c-0.693-0.329-1.491-0.494-2.392-0.494\r\n\t\t\t\tc-0.728,0-1.378,0.109-1.95,0.325c-0.572,0.217-1.109,0.576-1.612,1.079l-0.052-0.052l0.728-4.134h7.514v-3.042H34.85\r\n\t\t\t\tl-1.794,10.062h3.328c0.364-0.503,0.754-0.871,1.17-1.105c0.416-0.234,0.953-0.351,1.612-0.351c0.503,0,0.945,0.087,1.326,0.26\r\n\t\t\t\tc0.381,0.173,0.711,0.416,0.988,0.728c0.277,0.312,0.485,0.676,0.624,1.092c0.139,0.416,0.208,0.858,0.208,1.326\r\n\t\t\t\tc0,0.451-0.074,0.889-0.221,1.313C41.943,45.114,41.735,45.486,41.467,45.807z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.361,39.632\r\n\t\t\t\tc-0.373,0.347-0.785,0.663-1.235,0.949c-0.451,0.286-0.875,0.568-1.274,0.845c-0.78,0.538-1.521,1.066-2.223,1.586\r\n\t\t\t\tc-0.702,0.52-1.313,1.088-1.833,1.703c-0.52,0.615-0.932,1.313-1.235,2.093c-0.304,0.78-0.455,1.699-0.455,2.756H31.47v-3.172\r\n\t\t\t\th-8.606c0.451-0.624,0.97-1.17,1.56-1.638c0.589-0.468,1.196-0.905,1.82-1.313c0.624-0.407,1.244-0.819,1.859-1.235\r\n\t\t\t\tc0.615-0.416,1.166-0.88,1.651-1.391c0.485-0.511,0.875-1.096,1.17-1.755c0.294-0.659,0.442-1.447,0.442-2.366\r\n\t\t\t\tc0-0.884-0.169-1.681-0.507-2.392c-0.338-0.71-0.793-1.308-1.365-1.794c-0.572-0.485-1.235-0.858-1.989-1.118\r\n\t\t\t\tC26.751,31.13,25.958,31,25.126,31c-1.092,0-2.058,0.187-2.899,0.559c-0.841,0.373-1.539,0.893-2.093,1.56\r\n\t\t\t\tc-0.555,0.667-0.971,1.447-1.248,2.34c-0.277,0.893-0.399,1.859-0.364,2.899h3.536c0-0.485,0.048-0.975,0.143-1.469\r\n\t\t\t\tc0.095-0.494,0.255-0.945,0.481-1.352c0.225-0.407,0.524-0.737,0.897-0.988c0.373-0.251,0.828-0.377,1.365-0.377\r\n\t\t\t\tc0.797,0,1.452,0.247,1.963,0.741c0.511,0.494,0.767,1.183,0.767,2.067c0,0.555-0.126,1.049-0.377,1.482\r\n\t\t\t\tC27.045,38.895,26.733,39.285,26.361,39.632z M41.467,45.807c-0.269,0.321-0.598,0.581-0.988,0.78\r\n\t\t\t\tc-0.39,0.199-0.828,0.299-1.313,0.299c-0.832,0-1.517-0.247-2.054-0.741c-0.537-0.494-0.85-1.157-0.936-1.989h-3.692\r\n\t\t\t\tc0.017,0.953,0.212,1.79,0.585,2.509c0.373,0.719,0.871,1.322,1.495,1.807c0.624,0.485,1.339,0.845,2.145,1.079\r\n\t\t\t\tc0.806,0.234,1.651,0.351,2.535,0.351c0.919,0.017,1.785-0.134,2.6-0.455c0.815-0.321,1.529-0.776,2.145-1.365\r\n\t\t\t\tc0.615-0.589,1.105-1.287,1.469-2.093c0.364-0.806,0.546-1.677,0.546-2.613c0-0.849-0.126-1.651-0.377-2.405\r\n\t\t\t\tc-0.252-0.754-0.616-1.408-1.092-1.963c-0.477-0.555-1.062-0.997-1.755-1.326c-0.693-0.329-1.491-0.494-2.392-0.494\r\n\t\t\t\tc-0.728,0-1.378,0.109-1.95,0.325c-0.572,0.217-1.109,0.576-1.612,1.079l-0.052-0.052l0.728-4.134h7.514v-3.042H34.85\r\n\t\t\t\tl-1.794,10.062h3.328c0.364-0.503,0.754-0.871,1.17-1.105c0.416-0.234,0.953-0.351,1.612-0.351c0.503,0,0.945,0.087,1.326,0.26\r\n\t\t\t\tc0.381,0.173,0.711,0.416,0.988,0.728c0.277,0.312,0.485,0.676,0.624,1.092c0.139,0.416,0.208,0.858,0.208,1.326\r\n\t\t\t\tc0,0.451-0.074,0.889-0.221,1.313C41.943,45.114,41.735,45.486,41.467,45.807z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC13,12.657,14.343,14,16,14z M25.126,31c-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4v-4c0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC22,42.657,23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC13,12.657,14.343,14,16,14z M25.126,31c-0.001,0-0.002,0-0.003,0h0.007C25.128,31,25.127,31,25.126,31z M48,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8C45,12.657,46.343,14,48,14z M25,44h4v4c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-4h4c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-4v-4c0-1.657-1.343-3-3-3s-3,1.343-3,3v4h-4c-1.657,0-3,1.343-3,3\r\n\t\t\t\tC22,42.657,23.343,44,25,44z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CALENDAR__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CALENDAR__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121\r\n\t\t\t\tC27.422,50.664,28.172,51,29,51c0.828,0,1.578-0.336,2.121-0.879l14-14C45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879C23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8\r\n\t\t\t\tC45,12.657,46.343,14,48,14z M61,8h-6v3c0,3.866-3.134,7-7,7s-7-3.134-7-7V8H23v3c0,3.866-3.134,7-7,7c-3.866,0-7-3.134-7-7V8H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v50c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V11C64,9.343,62.657,8,61,8z M58,58H6V24h52V58z M16,14\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v8C13,12.657,14.343,14,16,14z M26.879,50.121\r\n\t\t\t\tC27.422,50.664,28.172,51,29,51c0.828,0,1.578-0.336,2.121-0.879l14-14C45.664,35.579,46,34.828,46,34c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L29,43.757l-4.879-4.879C23.578,38.336,22.828,38,22,38c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L26.879,50.121z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3\r\n\t\t\t\tH13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z\r\n\t\t\t\t M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M42,55c0-3.314,2.686-6,6-6h12V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52\r\n\t\t\t\tc0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3H48C44.686,61,42,58.314,42,55z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3\r\n\t\t\t\tH13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tS11.343,36,13,36z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C13,10.657,14.343,12,16,12z\r\n\t\t\t\t M60,52H48c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z\r\n\t\t\t\t M60,52h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tV9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z\r\n\t\t\t\t M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z M39,42H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3S40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C28,10.657,29.343,12,31,12z\r\n\t\t\t\t M60,52h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3C63,53.343,61.657,52,60,52z M42,55c0-3.314,2.686-6,6-6c0-3.314,2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tV9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h43v-3C44.686,61,42,58.314,42,55z\r\n\t\t\t\t M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3C10,24.343,11.343,23,13,23z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z M39,42H13\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h26c1.657,0,3,1.343,3,3S40.657,42,39,42z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v6C13,10.657,14.343,12,16,12z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879C62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879C49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879C45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879C58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC13,10.657,14.343,12,16,12z M43.757,56.758L45.515,55l-1.757-1.757C42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L54,46.515l1.757-1.758l0.015,0.016C56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6\r\n\t\t\t\tH5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832C42.317,63.114,42,62.099,42,61c0-1.659,0.682-3.146,1.773-4.227\r\n\t\t\t\tL43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h24c1.657,0,3,1.343,3,3\r\n\t\t\t\tC40,40.657,38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6\r\n\t\t\t\tC43,10.657,44.343,12,46,12z M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M58.243,55l3.879-3.879C62.664,50.579,63,49.828,63,49c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L54,50.757l-3.879-3.879C49.578,46.336,48.828,46,48,46c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L49.757,55l-3.879,3.879C45.336,59.422,45,60.172,45,61c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L54,59.243l3.879,3.879C58.422,63.664,59.172,64,60,64c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.829-0.336-1.578-0.879-2.121L58.243,55z M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC13,10.657,14.343,12,16,12z M43.757,56.758L45.515,55l-1.757-1.757C42.672,52.157,42,50.657,42,49c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.657,0,3.157,0.672,4.243,1.757L54,46.515l1.757-1.758l0.015,0.016C56.854,43.682,58.341,43,60,43V9c0-1.657-1.343-3-3-3h-5v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6\r\n\t\t\t\tH5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3h37.832C42.317,63.114,42,62.099,42,61c0-1.659,0.682-3.146,1.773-4.227\r\n\t\t\t\tL43.757,56.758z M31.5,54h-19c-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5\r\n\t\t\t\tC34,52.881,32.881,54,31.5,54z M37,42H13c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h24c1.657,0,3,1.343,3,3\r\n\t\t\t\tC40,40.657,38.657,42,37,42z M13,29c-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z\r\n\t\t\t\t M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,56.758l-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53\r\n\t\t\t\tC63,51.343,61.657,50,60,50z M43.775,61.225C42.683,60.147,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.554\r\n\t\t\t\tl3.797-3.797C56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3\r\n\t\t\t\th41.515l-2.757-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tC10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC28,10.657,29.343,12,31,12z M46,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C43,10.657,44.343,12,46,12z\r\n\t\t\t\t M16,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6C13,10.657,14.343,12,16,12z M60,50\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L52,56.758l-1.879-1.879C49.578,54.336,48.829,54,48,54c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l4,4C50.422,63.664,51.172,64,52,64s1.578-0.336,2.121-0.879l8-8C62.664,54.578,63,53.828,63,53\r\n\t\t\t\tC63,51.343,61.657,50,60,50z M43.775,61.225C42.683,60.147,42,58.659,42,57c0-3.314,2.686-6,6-6c1.535,0,2.908,0.602,3.961,1.554\r\n\t\t\t\tl3.797-3.797C56.843,47.672,58.343,47,60,47V9c0-1.657-1.343-3-3-3h-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3\r\n\t\t\t\tc0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6H5C3.343,6,2,7.343,2,9v52c0,1.657,1.343,3,3,3\r\n\t\t\t\th41.515l-2.757-2.757L43.775,61.225z M13,23h36c1.657,0,3,1.343,3,3c0,1.657-1.343,3-3,3H13c-1.657,0-3-1.343-3-3\r\n\t\t\t\tC10,24.343,11.343,23,13,23z M13,36h36c1.657,0,3,1.343,3,3s-1.343,3-3,3H13c-1.657,0-3-1.343-3-3S11.343,36,13,36z M31.5,54h-19\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h19c1.381,0,2.5,1.119,2.5,2.5C34,52.881,32.881,54,31.5,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"NOTEPAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"NOTEPAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"NOTEPAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC29,10.657,30.343,12,32,12z M47,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6\r\n\t\t\t\th-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5C53,52.881,51.881,54,50.5,54z M50,42H14\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3\r\n\t\t\t\th36c1.657,0,3,1.343,3,3C53,27.657,51.657,29,50,29z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC29,10.657,30.343,12,32,12z M47,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC44,10.657,45.343,12,47,12z M17,12c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v6C14,10.657,15.343,12,17,12z M58,6\r\n\t\t\t\th-5v3c0,3.314-2.686,6-6,6c-3.314,0-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6s-6-2.686-6-6V6h-3v3c0,3.314-2.686,6-6,6\r\n\t\t\t\ts-6-2.686-6-6V6H6C4.343,6,3,7.343,3,9v52c0,1.657,1.343,3,3,3h52c1.657,0,3-1.343,3-3V9C61,7.343,59.657,6,58,6z M50.5,54h-37\r\n\t\t\t\tc-1.381,0-2.5-1.119-2.5-2.5c0-1.381,1.119-2.5,2.5-2.5h37c1.381,0,2.5,1.119,2.5,2.5C53,52.881,51.881,54,50.5,54z M50,42H14\r\n\t\t\t\tc-1.657,0-3-1.343-3-3s1.343-3,3-3h36c1.657,0,3,1.343,3,3S51.657,42,50,42z M50,29H14c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3\r\n\t\t\t\th36c1.657,0,3,1.343,3,3C53,27.657,51.657,29,50,29z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MICROPHONE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MICROPHONE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12\r\n\t\t\t\tc-6.627,0-12,5.373-12,12v16C20,34.628,25.373,40,32,40z M54,29.023c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3h0c-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16h0c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.296,19,21.752V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tC45.726,49.319,54,40.148,54,29.023z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,40c6.627,0,12-5.373,12-12V12c0-6.627-5.373-12-12-12\r\n\t\t\t\tc-6.627,0-12,5.373-12,12v16C20,34.628,25.373,40,32,40z M54,29.023c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3h0c-0.004,8.835-7.165,15.996-16,16c-8.835-0.004-15.996-7.165-16-16h0c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023c0,11.125,8.274,20.296,19,21.752V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tC45.726,49.319,54,40.148,54,29.023z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{"id":"MICROPHONE__x2F__OFF","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.631,39.405l5.051-3.302C16.617,33.961,16.002,31.555,16,29h0\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023\r\n\t\t\t\tC10,32.785,10.964,36.313,12.631,39.405z M44,18.895V12c0-6.627-5.373-12-12-12c-6.627,0-12,5.373-12,12v16\r\n\t\t\t\tc0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.821,0.246l0-0.001\r\n\t\t\t\tl-0.017,0.011c0,0,0,0,0,0L5.079,47.945l0,0.001C4.67,48.214,4.4,48.675,4.4,49.2c0,0.829,0.672,1.5,1.5,1.5\r\n\t\t\t\tc0.303,0,0.585-0.091,0.821-0.246l0,0.001l0.017-0.011c0,0,0,0,0,0l52.083-34.089l0-0.001C59.23,16.087,59.5,15.625,59.5,15.1z\r\n\t\t\t\t M43.86,29.739l-15.026,9.825C29.844,39.841,30.902,40,32,40C38.035,40,43.015,35.54,43.86,29.739z M51,26c-1.657,0-3,1.343-3,3\r\n\t\t\t\th0c-0.004,8.092-6.017,14.759-13.816,15.829c-0.24,0.034-0.481,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078l0,0.002\r\n\t\t\t\tc-0.04,0-0.078,0.005-0.118,0.005c-2.959,0-5.72-0.817-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.441V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tc10.726-1.456,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.631,39.405l5.051-3.302C16.617,33.961,16.002,31.555,16,29h0\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3c0,0.003,0.001,0.005,0.001,0.008C10,29.013,10,29.018,10,29.023\r\n\t\t\t\tC10,32.785,10.964,36.313,12.631,39.405z M44,18.895V12c0-6.627-5.373-12-12-12c-6.627,0-12,5.373-12,12v16\r\n\t\t\t\tc0,2.047,0.515,3.973,1.419,5.659L44,18.895z M59.5,15.1c0-0.829-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.821,0.246l0-0.001\r\n\t\t\t\tl-0.017,0.011c0,0,0,0,0,0L5.079,47.945l0,0.001C4.67,48.214,4.4,48.675,4.4,49.2c0,0.829,0.672,1.5,1.5,1.5\r\n\t\t\t\tc0.303,0,0.585-0.091,0.821-0.246l0,0.001l0.017-0.011c0,0,0,0,0,0l52.083-34.089l0-0.001C59.23,16.087,59.5,15.625,59.5,15.1z\r\n\t\t\t\t M43.86,29.739l-15.026,9.825C29.844,39.841,30.902,40,32,40C38.035,40,43.015,35.54,43.86,29.739z M51,26c-1.657,0-3,1.343-3,3\r\n\t\t\t\th0c-0.004,8.092-6.017,14.759-13.816,15.829c-0.24,0.034-0.481,0.062-0.723,0.086c-0.441,0.04-0.885,0.074-1.336,0.078l0,0.002\r\n\t\t\t\tc-0.04,0-0.078,0.005-0.118,0.005c-2.959,0-5.72-0.817-8.098-2.216l-5.431,3.551c2.987,2.326,6.586,3.906,10.521,4.441V58H19\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h26c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H35v-7.225\r\n\t\t\t\tc10.726-1.456,19-10.627,19-21.752c0-0.005,0-0.01-0.001-0.015C53.999,29.005,54,29.003,54,29C54,27.343,52.657,26,51,26z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BELL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BELL","display":"inline"},"children":[{"name":"g","attribs":{"id":"BELL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c-7.732,0-14,6.268-14,14v20c0,1.657-1.343,3-3,3s-3,1.343-3,3c0,1.657,1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC55,46.343,53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26C26,57.314,28.686,60,32,60z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M52,45c-1.657,0-3-1.343-3-3V22c0-7.732-6.268-14-14-14c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3c-7.732,0-14,6.268-14,14v20c0,1.657-1.343,3-3,3s-3,1.343-3,3c0,1.657,1.343,3,3,3h40c1.657,0,3-1.343,3-3\r\n\t\t\t\tC55,46.343,53.657,45,52,45z M32,60c3.314,0,6-2.686,6-6H26C26,57.314,28.686,60,32,60z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"EJECT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"EJECT","display":"inline"},"children":[{"name":"g","attribs":{"id":"EJECT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tS43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3c0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962\r\n\t\t\t\tc-0.003-0.005-0.006-0.01-0.01-0.016l-0.014-0.022l0,0C34.013,17.563,33.073,17,32,17c-1.073,0-2.013,0.563-2.544,1.41l0,0\r\n\t\t\t\tl-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0C19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M42,42H22c-1.657,0-3,1.343-3,3s1.343,3,3,3h20c1.657,0,3-1.343,3-3\r\n\t\t\t\tS43.657,42,42,42z M22,39h20c1.657,0,3-1.343,3-3c0-0.584-0.167-1.129-0.456-1.59l0,0l-9.976-15.962\r\n\t\t\t\tc-0.003-0.005-0.006-0.01-0.01-0.016l-0.014-0.022l0,0C34.013,17.563,33.073,17,32,17c-1.073,0-2.013,0.563-2.544,1.41l0,0\r\n\t\t\t\tl-0.014,0.022c-0.003,0.005-0.007,0.01-0.01,0.016L19.456,34.41l0,0C19.168,34.871,19,35.416,19,36C19,37.657,20.343,39,22,39z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SKIP__x2F__NEXT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT","display":"inline"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__NEXT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0\r\n\t\t\t\tC24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0\r\n\t\t\t\tC24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"SKIP__x2F__PREVIOUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FAST_FORWARD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{"id":"FAST_FORWARD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,32c0-1.073-0.563-2.013-1.41-2.544l0,0l-0.022-0.014\r\n\t\t\t\tc-0.005-0.003-0.01-0.007-0.016-0.01L33.59,19.456l0,0C33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131\r\n\t\t\t\tl0,0C17.129,19.168,16.584,19,16,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413\r\n\t\t\t\tV42c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.003,0.01-0.007,0.016-0.01l0.022-0.014l0,0\r\n\t\t\t\tC50.437,34.013,51,33.073,51,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M51,32c0-1.073-0.563-2.013-1.41-2.544l0,0l-0.022-0.014\r\n\t\t\t\tc-0.005-0.003-0.01-0.007-0.016-0.01L33.59,19.456l0,0C33.129,19.168,32.584,19,32,19c-1.657,0-3,1.343-3,3v4.587l-11.41-7.131\r\n\t\t\t\tl0,0C17.129,19.168,16.584,19,16,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L29,37.413\r\n\t\t\t\tV42c0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0l15.962-9.976c0.005-0.003,0.01-0.007,0.016-0.01l0.022-0.014l0,0\r\n\t\t\t\tC50.437,34.013,51,33.073,51,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"REWIND_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"REWIND","display":"inline"},"children":[{"name":"g","attribs":{"id":"REWIND","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.584,0-1.129,0.168-1.59,0.456l0,0l-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0\r\n\t\t\t\tC13.564,29.987,13,30.927,13,32c0,1.073,0.564,2.013,1.41,2.544l0,0l0.023,0.014c0.005,0.003,0.01,0.007,0.016,0.01l15.962,9.976\r\n\t\t\t\tl0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587l11.41,7.131l0,0C46.871,44.833,47.416,45,48,45\r\n\t\t\t\tc1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L35,26.587V22c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.584,0-1.129,0.168-1.59,0.456l0,0l-15.962,9.976c-0.005,0.003-0.011,0.007-0.016,0.01l-0.023,0.014l0,0\r\n\t\t\t\tC13.564,29.987,13,30.927,13,32c0,1.073,0.564,2.013,1.41,2.544l0,0l0.023,0.014c0.005,0.003,0.01,0.007,0.016,0.01l15.962,9.976\r\n\t\t\t\tl0,0C30.871,44.833,31.416,45,32,45c1.657,0,3-1.343,3-3v-4.587l11.41,7.131l0,0C46.871,44.833,47.416,45,48,45\r\n\t\t\t\tc1.657,0,3-1.343,3-3V22C51,20.343,49.657,19,48,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PAUSE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PAUSE","display":"inline"},"children":[{"name":"g","attribs":{"id":"PAUSE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC29,20.343,27.657,19,26,19z M38,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M26,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V22\r\n\t\t\t\tC29,20.343,27.657,19,26,19z M38,19c-1.657,0-3,1.343-3,3v20c0,1.657,1.343,3,3,3s3-1.343,3-3V22C41,20.343,39.657,19,38,19z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"STOP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"STOP","display":"inline"},"children":[{"name":"g","attribs":{"id":"STOP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tV21C46,19.343,44.657,18,43,18z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tV21C46,19.343,44.657,18,43,18z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"RECORD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"RECORD","display":"inline"},"children":[{"name":"g","attribs":{"id":"RECORD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","cx":"32","cy":"32","r":"14"},"children":[{"name":"circle","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","cx":"32","cy":"32","r":"14"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PLAY_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PLAY","display":"inline"},"children":[{"name":"g","attribs":{"id":"PLAY","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,32c0-1.099-0.592-2.06-1.474-2.583l0,0L22.561,16.438\r\n\t\t\t\tc-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0C22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.557,0,1.079-0.153,1.526-0.417l0,0l0.011-0.007c0.008-0.005,0.016-0.009,0.024-0.014l21.965-12.979l0,0\r\n\t\t\t\tC45.408,34.06,46,33.1,46,32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,32c0-1.099-0.592-2.06-1.474-2.583l0,0L22.561,16.438\r\n\t\t\t\tc-0.008-0.005-0.016-0.009-0.024-0.014l-0.011-0.007l0,0C22.079,16.153,21.557,16,21,16c-1.657,0-3,1.343-3,3v26\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.557,0,1.079-0.153,1.526-0.417l0,0l0.011-0.007c0.008-0.005,0.016-0.009,0.024-0.014l21.965-12.979l0,0\r\n\t\t\t\tC45.408,34.06,46,33.1,46,32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21\r\n\t\t\t\tC43,53.657,44.343,55,46,55z M29,55h6c1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC26,53.657,27.343,55,29,55z M12,55h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC9,53.657,10.343,55,12,55z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z M58,58H6V6h52V58z M46,55h6c1.657,0,3-1.343,3-3V31c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v21\r\n\t\t\t\tC43,53.657,44.343,55,46,55z M29,55h6c1.657,0,3-1.343,3-3V19c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC26,53.657,27.343,55,29,55z M12,55h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v6\r\n\t\t\t\tC9,53.657,10.343,55,12,55z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINE_GRAPH_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.313,8.875\r\n\t\t\t\tc0.488,0.343,1.081,0.545,1.723,0.545c0.656,0,1.263-0.211,1.757-0.569l0.001,0.001l17-12l-0.001-0.001\r\n\t\t\t\tC54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3c-0.662,0-1.274,0.215-1.77,0.578L34.953,36.373l-13.261-8.841\r\n\t\t\t\tl-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514c-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002\r\n\t\t\t\tC9.573,33.006,9,33.953,9,35.035C9,36.692,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12,38.035c0.628,0,1.212-0.194,1.694-0.524l6.271-3.919l13.313,8.875\r\n\t\t\t\tc0.488,0.343,1.081,0.545,1.723,0.545c0.656,0,1.263-0.211,1.757-0.569l0.001,0.001l17-12l-0.001-0.001\r\n\t\t\t\tC54.51,29.897,55,29.012,55,28.011c0-1.657-1.343-3-3-3c-0.662,0-1.274,0.215-1.77,0.578L34.953,36.373l-13.261-8.841\r\n\t\t\t\tl-0.012,0.017c-0.479-0.325-1.058-0.514-1.68-0.514c-0.575,0-1.113,0.162-1.569,0.443l-0.002-0.002l-8,5l0.001,0.002\r\n\t\t\t\tC9.573,33.006,9,33.953,9,35.035C9,36.692,10.343,38.035,12,38.035z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BAR_GRAPH_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{"id":"BAR_GRAPH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv21C45,48.657,46.343,50,48,50z M31,50h6c1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC28,48.657,29.343,50,31,50z M61,53H6v-7h0V8c0-1.657-1.343-3-3-3C1.343,5,0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv6C11,48.657,12.343,50,14,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M48,50h6c1.657,0,3-1.343,3-3V26c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv21C45,48.657,46.343,50,48,50z M31,50h6c1.657,0,3-1.343,3-3V14c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3v33\r\n\t\t\t\tC28,48.657,29.343,50,31,50z M61,53H6v-7h0V8c0-1.657-1.343-3-3-3C1.343,5,0,6.343,0,8v48c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3C64,54.344,62.657,53,61,53z M14,50h6c1.657,0,3-1.343,3-3v-6c0-1.657-1.343-3-3-3h-6c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv6C11,48.657,12.343,50,14,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"LINE_GRAPH_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"LINE_GRAPH_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0.001,0.003,0.002,0.005,0.003\r\n\t\t\t\tl0.011,0.007l0.001-0.001C33.813,41.813,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979\r\n\t\t\t\tc0,0,0.001,0,0.001-0.001l0.03-0.021l-0.002-0.003C63.487,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84l-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007\r\n\t\t\t\tl-0.001,0.001C21.187,26.187,20.616,26,20,26c-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tS0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.343,62.657,53,61,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M61,53H6V40.716l13.9-8.177l13.42,8.947c0.002,0.001,0.003,0.002,0.005,0.003\r\n\t\t\t\tl0.011,0.007l0.001-0.001C33.813,41.813,34.384,42,35,42c0.635,0,1.221-0.2,1.706-0.536l0.002,0.002l25.969-17.979\r\n\t\t\t\tc0,0,0.001,0,0.001-0.001l0.03-0.021l-0.002-0.003C63.487,22.923,64,22.022,64,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.635,0-1.221,0.2-1.706,0.536l-0.002-0.003l-24.324,16.84l-13.289-8.859c-0.001-0.001-0.003-0.002-0.005-0.003l-0.011-0.007\r\n\t\t\t\tl-0.001,0.001C21.187,26.187,20.616,26,20,26c-0.555,0-1.069,0.161-1.515,0.424l-0.006-0.01L6,33.755V8c0-1.657-1.343-3-3-3\r\n\t\t\t\tS0,6.343,0,8v48c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3C64,54.343,62.657,53,61,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__7_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32L13.615,13.615C18.32,8.91,24.82,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32L13.615,13.615C18.32,8.91,24.82,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,32H6C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__5_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,32L13.615,50.385C8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,32L13.615,50.385C8.91,45.68,6,39.18,6,32C6,17.641,17.641,6,32,6V32z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6V58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6V58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__3_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385,18.385\r\n\t\t\t\tC45.68,55.09,39.18,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385,18.385\r\n\t\t\t\tC45.68,55.09,39.18,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{"id":"CHART__x2F__1_x2F_4","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26h26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26h26\r\n\t\t\t\tC58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{"id":"CART__x2F__1_x2F_8","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385-18.385\r\n\t\t\t\tC55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6v26l18.385-18.385\r\n\t\t\t\tC55.09,18.32,58,24.82,58,32C58,46.359,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIE_CHART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIE_CHART","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIE_CHART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35\r\n\t\t\t\tc0,16.017,12.984,29,29,29c16.016,0,29-12.984,29-29H29V6z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M35,0v29h29C64,12.984,51.016,0,35,0z M29,6C12.984,6,0,18.984,0,35\r\n\t\t\t\tc0,16.017,12.984,29,29,29c16.016,0,29-12.984,29-29H29V6z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POWER_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POWER","display":"inline"},"children":[{"name":"g","attribs":{"id":"POWER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3.186\r\n\t\t\t\tc0,0,0,0,0,0V30C28,31.657,29.343,33,31,33z M42,8.162v0.009C41.687,8.061,41.351,8,41,8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35c0,12.703-10.297,23-23,23S8,47.703,8,35\r\n\t\t\t\tc0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829c0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162\r\n\t\t\t\tC9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29c16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31,33c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v3.186\r\n\t\t\t\tc0,0,0,0,0,0V30C28,31.657,29.343,33,31,33z M42,8.162v0.009C41.687,8.061,41.351,8,41,8c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.306,0.835,2.417,2,2.829v0.003C48.229,17.335,54,25.492,54,35c0,12.703-10.297,23-23,23S8,47.703,8,35\r\n\t\t\t\tc0-9.508,5.771-17.666,14-21.168v-0.003c1.165-0.412,2-1.523,2-2.829c0-1.657-1.343-3-3-3c-0.351,0-0.687,0.061-1,0.171V8.162\r\n\t\t\t\tC9.439,12.495,2,22.878,2,35c0,16.016,12.984,29,29,29c16.016,0,29-12.984,29-29C60,22.878,52.561,12.495,42,8.162z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"ALARM_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"ALARM","display":"inline"},"children":[{"name":"g","attribs":{"id":"ALARM","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31h-9V18c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C47,32.343,45.657,31,44,31z M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14\r\n\t\t\t\tc0,2.8,0.967,5.37,2.575,7.412C5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521\r\n\t\t\t\tc7.392,3.167,13.318,9.093,16.485,16.485C63.053,19.006,64,16.49,64,13.749C64,7.26,58.74,2,52.251,2z M32,5\r\n\t\t\t\tC15.984,5,3,17.984,3,34c0,7.692,3.015,14.664,7.902,19.855l-4.023,4.024C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l4.327-4.327C20.144,61.067,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.226l4.357,4.357\r\n\t\t\t\tC53.473,62.668,54.215,63,55.034,63C56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.561-0.869-2.098l-4.056-4.056\r\n\t\t\t\tC57.976,48.687,61,41.704,61,34C61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23\r\n\t\t\t\tc12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44,31h-9V18c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v16c0,1.657,1.343,3,3,3\r\n\t\t\t\th12c1.657,0,3-1.343,3-3C47,32.343,45.657,31,44,31z M19.412,4.575C17.37,2.967,14.8,2,12,2C5.373,2,0,7.373,0,14\r\n\t\t\t\tc0,2.8,0.967,5.37,2.575,7.412C5.809,13.862,11.862,7.809,19.412,4.575z M52.251,2c-2.742,0-5.258,0.947-7.257,2.521\r\n\t\t\t\tc7.392,3.167,13.318,9.093,16.485,16.485C63.053,19.006,64,16.49,64,13.749C64,7.26,58.74,2,52.251,2z M32,5\r\n\t\t\t\tC15.984,5,3,17.984,3,34c0,7.692,3.015,14.664,7.902,19.855l-4.023,4.024C6.336,58.422,6,59.172,6,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l4.327-4.327C20.144,61.067,25.842,63,32,63c6.17,0,11.878-1.941,16.579-5.226l4.357,4.357\r\n\t\t\t\tC53.473,62.668,54.215,63,55.034,63C56.672,63,58,61.672,58,60.034c0-0.819-0.332-1.561-0.869-2.098l-4.056-4.056\r\n\t\t\t\tC57.976,48.687,61,41.704,61,34C61,17.984,48.016,5,32,5z M32,57C19.297,57,9,46.703,9,34s10.297-23,23-23\r\n\t\t\t\tc12.702,0,23,10.297,23,23S44.703,57,32,57z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TIME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TIME","display":"inline"},"children":[{"name":"g","attribs":{"id":"TIME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V14c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18c0,1.657,1.343,3,3,3\r\n\t\t\t\th13c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V14c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18c0,1.657,1.343,3,3,3\r\n\t\t\t\th13c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tC58,46.36,46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER_3_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M51.253,49.43c-3.766-1.826-2.382-0.399-7.309-2.427\r\n\t\t\t\tc-5.042-2.073-6.236-2.749-6.236-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917c1.178,0.338,1.578-1.372,1.641-2.464\r\n\t\t\t\tc0.07-1.055,0.697-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235c-0.36-3.691-2.931-7.544-9.42-7.826\r\n\t\t\t\tc-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236c-1.441-0.297-0.821,2.999-0.758,4.054\r\n\t\t\t\tc0.07,1.092,0.46,2.808,1.641,2.469c0.587,4.495,2.475,5.929,2.475,5.929L26.293,44.3c0,0-1.195,0.723-6.236,2.795\r\n\t\t\t\tc-4.927,2.028-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.716,55.432,44.816,51.253,49.43z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M51.253,49.43c-3.766-1.826-2.382-0.399-7.309-2.427\r\n\t\t\t\tc-5.042-2.073-6.236-2.749-6.236-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917c1.178,0.338,1.578-1.372,1.641-2.464\r\n\t\t\t\tc0.07-1.055,0.697-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235c-0.36-3.691-2.931-7.544-9.42-7.826\r\n\t\t\t\tc-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236c-1.441-0.297-0.821,2.999-0.758,4.054\r\n\t\t\t\tc0.07,1.092,0.46,2.808,1.641,2.469c0.587,4.495,2.475,5.929,2.475,5.929L26.293,44.3c0,0-1.195,0.723-6.236,2.795\r\n\t\t\t\tc-4.927,2.028-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.716,55.432,44.816,51.253,49.43z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USERS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USERS","display":"inline"},"children":[{"name":"g","attribs":{"id":"USERS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40.837,41.984c-3.685-1.828-2.266-0.429-6.79-2.299\r\n\t\t\t\tc-4.524-1.867-5.595-2.477-5.595-2.477l-0.04-4.282c0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22\r\n\t\t\t\tc0.063-0.951,0.626-3.916-0.669-3.651c0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051\r\n\t\t\t\tc-4.95,0.254-8.164,3.728-8.488,7.054c-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652\r\n\t\t\t\tc0.062,0.984,0.412,2.53,1.473,2.225c0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.652-5.596,2.519\r\n\t\t\t\tc-4.524,1.87-3.105,0.387-6.79,2.214c-5.824,2.889-5.824,10.832-5.824,10.832h0.002C0.001,52.817,0,52.818,0,52.82\r\n\t\t\t\tC0,54.024,0.979,55,2.187,55h42.285c1.208,0,2.187-0.976,2.187-2.18c0-0.002,0-0.003,0-0.005h0.001\r\n\t\t\t\tC46.66,52.815,46.66,44.872,40.837,41.984z M63.901,53.012c0,0,0-7.226-5.298-9.854c-3.353-1.663-2.062-0.391-6.178-2.092\r\n\t\t\t\tc-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896c0,0,1.541-1.166,2.022-4.85c0.962,0.277,1.288-1.124,1.34-2.02\r\n\t\t\t\tc0.057-0.865,0.569-3.562-0.608-3.322c0.241-1.801,0.43-3.429,0.344-4.291c-0.294-3.025-2.393-6.184-7.69-6.415\r\n\t\t\t\tc-4.504,0.231-7.427,3.392-7.722,6.417c-0.085,0.862,0.088,2.489,0.329,4.293c-1.177-0.244-0.67,2.458-0.618,3.323\r\n\t\t\t\tc0.057,0.896,0.375,2.302,1.34,2.024c0.479,3.685,2.02,4.86,2.02,4.86l-0.039,3.902c1.401,0.331,1.588,0.064,4.411,1.464\r\n\t\t\t\tc6.603,3.275,6.603,12.282,6.603,12.282h-0.002c0,0.002,0.001,0.004,0.001,0.006c0,1.181-0.832,2.165-1.943,2.41H61.91\r\n\t\t\t\tc1.099,0,1.99-0.888,1.99-1.983c0-0.002,0-0.003,0-0.005H63.901z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40.837,41.984c-3.685-1.828-2.266-0.429-6.79-2.299\r\n\t\t\t\tc-4.524-1.867-5.595-2.477-5.595-2.477l-0.04-4.282c0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22\r\n\t\t\t\tc0.063-0.951,0.626-3.916-0.669-3.651c0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051\r\n\t\t\t\tc-4.95,0.254-8.164,3.728-8.488,7.054c-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652\r\n\t\t\t\tc0.062,0.984,0.412,2.53,1.473,2.225c0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.652-5.596,2.519\r\n\t\t\t\tc-4.524,1.87-3.105,0.387-6.79,2.214c-5.824,2.889-5.824,10.832-5.824,10.832h0.002C0.001,52.817,0,52.818,0,52.82\r\n\t\t\t\tC0,54.024,0.979,55,2.187,55h42.285c1.208,0,2.187-0.976,2.187-2.18c0-0.002,0-0.003,0-0.005h0.001\r\n\t\t\t\tC46.66,52.815,46.66,44.872,40.837,41.984z M63.901,53.012c0,0,0-7.226-5.298-9.854c-3.353-1.663-2.062-0.391-6.178-2.092\r\n\t\t\t\tc-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896c0,0,1.541-1.166,2.022-4.85c0.962,0.277,1.288-1.124,1.34-2.02\r\n\t\t\t\tc0.057-0.865,0.569-3.562-0.608-3.322c0.241-1.801,0.43-3.429,0.344-4.291c-0.294-3.025-2.393-6.184-7.69-6.415\r\n\t\t\t\tc-4.504,0.231-7.427,3.392-7.722,6.417c-0.085,0.862,0.088,2.489,0.329,4.293c-1.177-0.244-0.67,2.458-0.618,3.323\r\n\t\t\t\tc0.057,0.896,0.375,2.302,1.34,2.024c0.479,3.685,2.02,4.86,2.02,4.86l-0.039,3.902c1.401,0.331,1.588,0.064,4.411,1.464\r\n\t\t\t\tc6.603,3.275,6.603,12.282,6.603,12.282h-0.002c0,0.002,0.001,0.004,0.001,0.006c0,1.181-0.832,2.165-1.943,2.41H61.91\r\n\t\t\t\tc1.099,0,1.99-0.888,1.99-1.983c0-0.002,0-0.003,0-0.005H63.901z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLLOWING_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWING","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLLOWING","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.485,63H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M48.101,59H40c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h8.101\r\n\t\t\t\tC48.046,46.673,48,46.343,48,46c0-1.185,0.355-2.282,0.947-3.212c-0.609-0.213-1.332-0.486-2.247-0.865\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.317,62.115,48,61.099,48,60C48,59.657,48.046,59.327,48.101,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.007-0.552-0.092-1.417L59.485,63H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M48.101,59H40c-3.314,0-6-2.686-6-6c0-3.314,2.686-6,6-6h8.101\r\n\t\t\t\tC48.046,46.673,48,46.343,48,46c0-1.185,0.355-2.282,0.947-3.212c-0.609-0.213-1.332-0.486-2.247-0.865\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.317,62.115,48,61.099,48,60C48,59.657,48.046,59.327,48.101,59z M64,53\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121l-7-7C55.578,43.336,54.828,43,54,43c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121\r\n\t\t\t\tL53.757,50H40c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h13.757l-1.879,1.879C51.336,58.422,51,59.172,51,60c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l7-7C63.664,54.578,64,53.829,64,53z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FOLLOWERS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FOLLOWERS","display":"inline"},"children":[{"name":"g","attribs":{"id":"FOLLOWERS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.017\r\n\t\t\t\tc0.379-0.375,0.805-0.702,1.272-0.968c-3.979-1.701-5.021-2.294-5.021-2.294l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.515l-5.757-5.758C34.672,56.157,34,54.657,34,53z M52.899,47h5.827\r\n\t\t\t\tc-0.788-0.724-1.662-1.391-2.712-1.913c-1.855-0.923-2.765-1.246-3.483-1.415C52.833,44.387,53,45.174,53,46\r\n\t\t\t\tC53,46.343,52.954,46.673,52.899,47z M47.243,56H61c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H47.243l1.879-1.879\r\n\t\t\t\tC49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l7,7C45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tL47.243,56z M64.001,59.993c0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.103C52.953,59.326,53,59.657,53,60\r\n\t\t\t\tc0,1.099-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34,53c0-1.657,0.672-3.157,1.757-4.242l7-7l0.017,0.017\r\n\t\t\t\tc0.379-0.375,0.805-0.702,1.272-0.968c-3.979-1.701-5.021-2.294-5.021-2.294l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.708c-0.128,1.304,0.133,3.764,0.496,6.493\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h38.515l-5.757-5.758C34.672,56.157,34,54.657,34,53z M52.899,47h5.827\r\n\t\t\t\tc-0.788-0.724-1.662-1.391-2.712-1.913c-1.855-0.923-2.765-1.246-3.483-1.415C52.833,44.387,53,45.174,53,46\r\n\t\t\t\tC53,46.343,52.954,46.673,52.899,47z M47.243,56H61c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H47.243l1.879-1.879\r\n\t\t\t\tC49.664,47.579,50,46.828,50,46c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-7,7C37.336,51.422,37,52.172,37,53\r\n\t\t\t\tc0,0.829,0.336,1.578,0.879,2.121l7,7C45.422,62.664,46.172,63,47,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121\r\n\t\t\t\tL47.243,56z M64.001,59.993c0,0,0-0.679-0.124-1.759C63.02,58.707,62.049,59,61,59h-8.103C52.953,59.326,53,59.657,53,60\r\n\t\t\t\tc0,1.099-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.515,54l-1.757-1.757l0.015-0.016C43.682,51.147,43,49.659,43,48\r\n\t\t\t\tc0-2.776,1.894-5.088,4.454-5.774c-0.243-0.096-0.481-0.191-0.754-0.304c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832\r\n\t\t\t\tC43.317,62.115,43,61.099,43,60c0-1.657,0.672-3.157,1.757-4.243L46.515,54z M59.243,54l3.879-3.878\r\n\t\t\t\tC63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758l-3.879-3.879\r\n\t\t\t\tC50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46.515,54l-1.757-1.757l0.015-0.016C43.682,51.147,43,49.659,43,48\r\n\t\t\t\tc0-2.776,1.894-5.088,4.454-5.774c-0.243-0.096-0.481-0.191-0.754-0.304c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832\r\n\t\t\t\tC43.317,62.115,43,61.099,43,60c0-1.657,0.672-3.157,1.757-4.243L46.515,54z M59.243,54l3.879-3.878\r\n\t\t\t\tC63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758l-3.879-3.879\r\n\t\t\t\tC50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.533,0,2.916,0.592,3.977,1.538l3.781-3.781c0.046-0.046,0.103-0.08,0.15-0.124c-0.298-0.183-0.57-0.386-0.894-0.547\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h46.691c-0.335-0.222-0.65-0.474-0.933-0.757L44.757,58.243z M64.001,59.993\r\n\t\t\t\tc0,0-0.008-1.709-0.498-4.011l-6.261,6.261c-0.284,0.283-0.598,0.535-0.933,0.757H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879\r\n\t\t\t\tC50.578,51.336,49.828,51,49,51c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l8-8C63.664,51.579,64,50.828,64,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc1.533,0,2.916,0.592,3.977,1.538l3.781-3.781c0.046-0.046,0.103-0.08,0.15-0.124c-0.298-0.183-0.57-0.386-0.894-0.547\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.055-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h46.691c-0.335-0.222-0.65-0.474-0.933-0.757L44.757,58.243z M64.001,59.993\r\n\t\t\t\tc0,0-0.008-1.709-0.498-4.011l-6.261,6.261c-0.284,0.283-0.598,0.535-0.933,0.757H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879\r\n\t\t\t\tC50.578,51.336,49.828,51,49,51c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879l8-8C63.664,51.579,64,50.828,64,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H48\r\n\t\t\t\tC46.343,51,45,52.343,45,54z M64.001,59.993c0,0-0.005-0.571-0.096-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6h11.763c-0.998-1.141-2.225-2.155-3.749-2.913c-5.055-2.515-3.108-0.591-9.314-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H48\r\n\t\t\t\tC46.343,51,45,52.343,45,54z M64.001,59.993c0,0-0.005-0.571-0.096-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6h11.763c-0.998-1.141-2.225-2.155-3.749-2.913c-5.055-2.515-3.108-0.591-9.314-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491c-0.443-4.576-3.608-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466\r\n\t\t\t\tc-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.005-0.567-0.098-1.47C62.852,59.431,61.499,60,60,60\r\n\t\t\t\tc0,1.098-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-1.952,0.946-3.668,2.389-4.764c-0.797-0.208-1.898-0.571-3.689-1.314c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h45.832\r\n\t\t\t\tC48.317,62.115,48,61.099,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0-0.005-0.567-0.098-1.47C62.852,59.431,61.499,60,60,60\r\n\t\t\t\tc0,1.098-0.317,2.114-0.832,3H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6\r\n\t\t\t\tc0-1.952,0.946-3.668,2.389-4.764c-0.797-0.208-1.898-0.571-3.689-1.314c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.519-6.491c-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tc-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h45.832\r\n\t\t\t\tC48.317,62.115,48,61.099,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3v3c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"USER_2_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"USER_1_","display":"inline"},"children":[{"name":"g","attribs":{"id":"USER_1_","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0,0-10.932-7.987-14.906\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M64.001,59.993c0,0,0-10.932-7.987-14.906\r\n\t\t\t\tc-5.055-2.515-3.108-0.591-9.314-3.164c-6.205-2.57-7.675-3.409-7.675-3.409l-0.054-5.893c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.45,0.42,1.942-1.701,2.02-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.519-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"HEART_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"HEART","display":"inline"},"children":[{"name":"g","attribs":{"id":"HEART","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58.728,9.272C55.328,5.873,50.808,4,46,4c-4.808,0-8.662,1.727-12.061,5.126\r\n\t\t\t\tc-0.002,0.002-0.004,0.003-0.006,0.005c0,0-0.001,0.001-0.001,0.001L32,11.565l-1.932-2.286\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4C13.192,4,8.672,5.873,5.272,9.272\r\n\t\t\t\tC1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.817C29.911,59.574,30.933,60,32,60\r\n\t\t\t\tc1.066,0,2.089-0.426,2.84-1.183l23.892-24.093C62.129,31.325,64,26.806,64,22C64,17.192,62.128,12.672,58.728,9.272z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M58.728,9.272C55.328,5.873,50.808,4,46,4c-4.808,0-8.662,1.727-12.061,5.126\r\n\t\t\t\tc-0.002,0.002-0.004,0.003-0.006,0.005c0,0-0.001,0.001-0.001,0.001L32,11.565l-1.932-2.286\r\n\t\t\t\tc-0.002-0.002-0.004-0.004-0.006-0.006c0,0-0.001,0-0.001-0.001C26.661,5.873,22.808,4,18,4C13.192,4,8.672,5.873,5.272,9.272\r\n\t\t\t\tC1.872,12.672,0,17.192,0,22c0,4.806,1.87,9.323,5.266,12.723L29.16,58.817C29.911,59.574,30.933,60,32,60\r\n\t\t\t\tc1.066,0,2.089-0.426,2.84-1.183l23.892-24.093C62.129,31.325,64,26.806,64,22C64,17.192,62.128,12.672,58.728,9.272z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.055,46.909L23,52.939V19.79l16-8.727v25.338\r\n\t\t\t\tc1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332\r\n\t\t\t\tl0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3\r\n\t\t\t\tc-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3\r\n\t\t\t\tC2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.529,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13c7.18,0,13-5.82,13-13S57.18,35,50,35z\r\n\t\t\t\t M56.121,49.879C56.664,50.422,57,51.172,57,52c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879\r\n\t\t\t\tC47.578,54.664,46.828,55,46,55c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879\r\n\t\t\t\tC43.336,45.578,43,44.829,43,44c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879\r\n\t\t\t\tC52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M34.055,46.909L23,52.939V19.79l16-8.727v25.338\r\n\t\t\t\tc1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332\r\n\t\t\t\tl0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3\r\n\t\t\t\tc-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3\r\n\t\t\t\tC2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.529,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z M50,35c-7.18,0-13,5.82-13,13s5.82,13,13,13c7.18,0,13-5.82,13-13S57.18,35,50,35z\r\n\t\t\t\t M56.121,49.879C56.664,50.422,57,51.172,57,52c0,1.657-1.343,3-3,3c-0.828,0-1.578-0.336-2.121-0.879L50,52.243l-1.879,1.879\r\n\t\t\t\tC47.578,54.664,46.828,55,46,55c-1.657,0-3-1.343-3-3c0-0.829,0.336-1.578,0.879-2.121L45.757,48l-1.879-1.879\r\n\t\t\t\tC43.336,45.578,43,44.829,43,44c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L50,43.757l1.879-1.879\r\n\t\t\t\tC52.422,41.336,53.172,41,54,41c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121L54.243,48L56.121,49.879z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M58.121,47.121l-8,8C49.578,55.664,48.828,56,48,56c-0.828,0-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879\r\n\t\t\t\tC54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3C59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79\r\n\t\t\t\tl16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.004,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M58.121,47.121l-8,8C49.578,55.664,48.828,56,48,56c-0.828,0-1.578-0.336-2.121-0.879l-4-4\r\n\t\t\t\tC41.336,50.578,41,49.828,41,49c0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L48,48.757l5.879-5.879\r\n\t\t\t\tC54.422,42.336,55.172,42,56,42c1.657,0,3,1.343,3,3C59,45.829,58.664,46.578,58.121,47.121z M34.055,46.909L23,52.939V19.79\r\n\t\t\t\tl16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.955,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.004,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h12c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5\r\n\t\t\t\tv13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006\r\n\t\t\t\tl13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51H44c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h12c1.657,0,3,1.343,3,3\r\n\t\t\t\tC59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727v25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5\r\n\t\t\t\tv13.291c2.268,0.746,4.307,1.987,6,3.593V18c0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019\r\n\t\t\t\tc-0.074-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001C43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344\r\n\t\t\t\tL40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668C5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40\r\n\t\t\t\tc0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006\r\n\t\t\t\tl13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909z M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3s-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3C59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727\r\n\t\t\t\tv25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M50,35c-7.18,0-13,5.82-13,13c0,7.18,5.82,13,13,13c7.18,0,13-5.82,13-13\r\n\t\t\t\tC63,40.82,57.18,35,50,35z M56,51h-3v3c0,1.657-1.343,3-3,3s-3-1.343-3-3v-3h-3c-1.657,0-3-1.343-3-3c0-1.657,1.343-3,3-3h3v-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3s3,1.343,3,3v3h3c1.657,0,3,1.343,3,3C59,49.657,57.657,51,56,51z M34.055,46.909L23,52.939V19.79l16-8.727\r\n\t\t\t\tv25.338c1.693-1.606,3.732-2.847,6-3.593V12.017l10,7.5v13.291c2.268,0.746,4.307,1.987,6,3.593V18\r\n\t\t\t\tc0-0.948-0.448-1.782-1.134-2.332l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168L43.867,3.667l-0.001,0.001\r\n\t\t\t\tC43.352,3.256,42.709,3,42,3c-0.495,0-0.956,0.131-1.367,0.344L40.63,3.339L20.251,14.455L5.867,3.667L5.866,3.668\r\n\t\t\t\tC5.352,3.256,4.709,3,4,3C2.343,3,1,4.343,1,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861C18.692,60.762,19.315,61,20,61\r\n\t\t\t\tc0.528,0,1.018-0.148,1.449-0.388l0.003,0.006l13.457-7.34C34.331,51.623,34,49.852,34,48C34,47.632,34.031,47.271,34.055,46.909\r\n\t\t\t\tz M17,51.986l-10-7.5V12.017l10,7.5V51.986z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAP","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60.866,15.668l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168\r\n\t\t\t\tL44.867,3.667l-0.001,0.001C44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667\r\n\t\t\t\tL6.866,3.668C6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861\r\n\t\t\t\tC19.692,60.762,20.315,61,21,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006L42.725,49.56l14.542,10.906l0.012-0.016\r\n\t\t\t\tC57.766,60.795,58.358,61,59,61c1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017\r\n\t\t\t\tl10,7.5V51.986z M40,44.212l-16,8.727V19.79l16-8.727V44.212z M56,52.017l-10-7.5v-32.5l10,7.5V52.017z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M60.866,15.668l0.001-0.001l-0.025-0.019c-0.073-0.058-0.145-0.117-0.224-0.168\r\n\t\t\t\tL44.867,3.667l-0.001,0.001C44.352,3.256,43.709,3,43,3c-0.495,0-0.956,0.131-1.367,0.344L41.63,3.339L21.251,14.455L6.867,3.667\r\n\t\t\t\tL6.866,3.668C6.352,3.256,5.709,3,5,3C3.343,3,2,4.343,2,6v40c0,1.056,0.548,1.98,1.372,2.514l15.815,11.861\r\n\t\t\t\tC19.692,60.762,20.315,61,21,61c0.528,0,1.018-0.148,1.449-0.388l0.003,0.006L42.725,49.56l14.542,10.906l0.012-0.016\r\n\t\t\t\tC57.766,60.795,58.358,61,59,61c1.657,0,3-1.343,3-3V18C62,17.052,61.552,16.218,60.866,15.668z M18,51.986l-10-7.5V12.017\r\n\t\t\t\tl10,7.5V51.986z M40,44.212l-16,8.727V19.79l16-8.727V44.212z M56,52.017l-10-7.5v-32.5l10,7.5V52.017z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH","display":"inline"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__HIGH","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.83-0.341-1.573-0.887-2.113l0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444\r\n\t\t\t\tC56.664,11.578,57,10.828,57,10c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.444,5.445l-1.556,1.556l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8\r\n\t\t\t\tC12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556C48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l1.556,1.556l5.444,5.444C52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M14.879,19.121l0.009-0.009C15.427,19.659,16.17,20,17,20c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.83-0.341-1.573-0.887-2.113l0.009-0.009l-1.556-1.556l-5.445-5.445C11.578,7.336,10.828,7,10,7c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L14.879,19.121z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l1.555-1.556l5.444-5.444\r\n\t\t\t\tC56.664,11.578,57,10.828,57,10c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879l-5.444,5.445l-1.556,1.556l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M32,14c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v8\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M14,32c0-1.657-1.343-3-3-3H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8\r\n\t\t\t\tC12.657,35,14,33.657,14,32z M50.677,46.434l-1.555-1.556C48.578,44.336,47.828,44,47,44c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l1.556,1.556l5.444,5.444C52.422,56.664,53.172,57,54,57c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L50.677,46.434z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-7,7C7.336,52.422,7,53.172,7,54\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879l5.445-5.444l1.556-1.556C19.664,48.579,20,47.828,20,47\r\n\t\t\t\tC20,45.343,18.657,44,17,44z M61,29h-8c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h8c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M32,50c-1.657,0-3,1.343-3,3v8c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-8C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW","display":"inline"},"children":[{"name":"g","attribs":{"id":"BRIGHTNESS__x2F__LOW","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113l0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112L12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2\r\n\t\t\t\tl-0.009-0.009C51.659,16.573,52,15.83,52,15c0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h2C12.657,35,14,33.657,14,32z M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879C48.578,44.336,47.828,44,47,44\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2C12.336,47.422,12,48.172,12,49\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M55,29h-2\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h2c1.657,0,3-1.343,3-3C58,30.343,56.657,29,55,29z M32,50c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M12.879,17.122l2,2l0.009-0.009C15.427,19.659,16.17,20,17,20\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.83-0.341-1.573-0.888-2.113l0.009-0.009l-2-2l-0.009,0.009C16.573,12.341,15.83,12,15,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.83,0.341,1.573,0.888,2.112L12.879,17.122z M47,20c0.83,0,1.573-0.342,2.113-0.888l0.009,0.009l2-2\r\n\t\t\t\tl-0.009-0.009C51.659,16.573,52,15.83,52,15c0-1.657-1.343-3-3-3c-0.83,0-1.573,0.341-2.113,0.888l-0.009-0.009l-2,2l0.009,0.009\r\n\t\t\t\tC44.342,15.427,44,16.17,44,17C44,18.657,45.343,20,47,20z M14,32c0-1.657-1.343-3-3-3H9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h2C12.657,35,14,33.657,14,32z M32,14c1.657,0,3-1.343,3-3V9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tC29,12.657,30.343,14,32,14z M32,20c-6.627,0-12,5.373-12,12c0,1.021,0.141,2.007,0.381,2.953l1.183,2.958\r\n\t\t\t\tC23.627,41.544,27.524,44,32,44c6.627,0,12-5.372,12-12C44,25.373,38.627,20,32,20z M32,38c-3.314,0-6-2.686-6-6\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,35.314,35.314,38,32,38z M49.121,44.879C48.578,44.336,47.828,44,47,44\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l2,2C47.422,51.664,48.172,52,49,52c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L49.121,44.879z M17,44c-0.828,0-1.578,0.336-2.121,0.879l-2,2C12.336,47.422,12,48.172,12,49\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879l2-2C19.664,48.579,20,47.828,20,47C20,45.343,18.657,44,17,44z M55,29h-2\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h2c1.657,0,3-1.343,3-3C58,30.343,56.657,29,55,29z M32,50c-1.657,0-3,1.343-3,3v2\r\n\t\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-2C35,51.343,33.657,50,32,50z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POLAROIDS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROIDS","display":"inline"},"children":[{"name":"g","attribs":{"id":"POLAROIDS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3\r\n\t\t\t\tV15C48,13.343,46.657,12,45,12z M42,49H6V18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,12H3c-1.657,0-3,1.343-3,3v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3\r\n\t\t\t\tV15C48,13.343,46.657,12,45,12z M42,49H6V18h36V49z M61,0H19c-1.657,0-3,1.343-3,3v6h6V6h36v31h-7v15h10c1.657,0,3-1.343,3-3V3\r\n\t\t\t\tC64,1.343,62.657,0,61,0z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"POLAROID_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"POLAROID","display":"inline"},"children":[{"name":"g","attribs":{"id":"POLAROID","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC56,7.343,54.657,6,53,6z M50,43H14V12h36V43z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53,6H11C9.343,6,8,7.343,8,9v46c0,1.657,1.343,3,3,3h42c1.657,0,3-1.343,3-3V9\r\n\t\t\t\tC56,7.343,54.657,6,53,6z M50,43H14V12h36V43z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PICTURE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PICTURE","display":"inline"},"children":[{"name":"g","attribs":{"id":"PICTURE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,28c3.314,0,6-2.686,6-6c0-3.314-2.686-6-6-6s-6,2.686-6,6\r\n\t\t\t\tC16,25.314,18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2c-1.304,0-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14c0,1.304,0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.304,0.837,2.403,2,2.816v3.367C2.838,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,47.597,2,48.696,2,50c0,1.304,0.837,2.403,2,2.816v3.367C2.838,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.304-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M22,28c3.314,0,6-2.686,6-6c0-3.314-2.686-6-6-6s-6,2.686-6,6\r\n\t\t\t\tC16,25.314,18.686,28,22,28z M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2c-1.304,0-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2\r\n\t\t\t\tc-1.304,0-2.403,0.838-2.816,2H7.816C7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,11.597,2,12.696,2,14c0,1.304,0.837,2.403,2,2.816v3.367C2.838,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,29.597,2,30.696,2,32c0,1.304,0.837,2.403,2,2.816v3.367C2.838,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367\r\n\t\t\t\tC2.838,47.597,2,48.696,2,50c0,1.304,0.837,2.403,2,2.816v3.367C2.838,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.304-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.163-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z M51,39\r\n\t\t\t\tl-9-14L28,42l-3-3L13,51h38V39z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"FRAME_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"FRAME","display":"inline"},"children":[{"name":"g","attribs":{"id":"FRAME","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816\r\n\t\t\t\tC7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367C2.837,47.597,2,48.696,2,50\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.304-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62,14c0-1.304-0.837-2.403-2-2.816V7.816C61.163,7.403,62,6.305,62,5\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.304,0-2.403,0.838-2.816,2h-3.367C52.403,2.838,51.304,2,50,2c-1.304,0-2.403,0.838-2.816,2h-3.367\r\n\t\t\t\tC43.403,2.838,42.304,2,41,2c-1.304,0-2.403,0.838-2.816,2h-3.367C34.403,2.838,33.304,2,32,2c-1.304,0-2.403,0.838-2.816,2\r\n\t\t\t\th-3.367C25.403,2.838,24.304,2,23,2s-2.403,0.838-2.816,2h-3.367C16.403,2.838,15.304,2,14,2s-2.403,0.838-2.816,2H7.816\r\n\t\t\t\tC7.403,2.838,6.304,2,5,2C3.343,2,2,3.343,2,5c0,1.304,0.837,2.403,2,2.816v3.367C2.837,11.597,2,12.696,2,14\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,20.597,2,21.696,2,23c0,1.304,0.837,2.403,2,2.816v3.367C2.837,29.597,2,30.696,2,32\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,38.597,2,39.696,2,41s0.837,2.403,2,2.816v3.367C2.837,47.597,2,48.696,2,50\r\n\t\t\t\tc0,1.304,0.837,2.403,2,2.816v3.367C2.837,56.597,2,57.696,2,59c0,1.657,1.343,3,3,3c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2s2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367\r\n\t\t\t\tc0.413,1.162,1.512,2,2.816,2c1.304,0,2.403-0.837,2.816-2h3.367c0.413,1.162,1.512,2,2.816,2c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.304-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816s-0.837-2.403-2-2.816v-3.367c1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367\r\n\t\t\t\tc1.162-0.413,2-1.512,2-2.816c0-1.304-0.837-2.403-2-2.816v-3.367C61.163,16.403,62,15.304,62,14z M54,54H10V10h44V54z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__REMOVE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0S0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21H14c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h20\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS__x2F__ADD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.585,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18c9.941,0,18,8.059,18,18C42,33.941,33.941,42,24,42z M34,21h-7v-7c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v7h-7c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h7v7c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3v-7h7\r\n\t\t\t\tc1.657,0,3-1.343,3-3C37,22.344,35.657,21,34,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"MAGNIFYING_GLASS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS","display":"inline"},"children":[{"name":"g","attribs":{"id":"MAGNIFYING_GLASS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.584,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M62.243,53.758L44.658,36.173C46.768,32.601,48,28.449,48,24\r\n\t\t\t\tC48,10.745,37.255,0,24,0C10.745,0,0,10.745,0,24s10.745,24,24,24c4.449,0,8.601-1.232,12.173-3.342l17.584,17.584\r\n\t\t\t\tC54.843,63.329,56.343,64,58,64c3.314,0,6-2.686,6-6C64,56.343,63.328,54.843,62.243,53.758z M24,42c-9.941,0-18-8.059-18-18\r\n\t\t\t\tc0-9.941,8.059-18,18-18s18,8.059,18,18C42,33.941,33.941,42,24,42z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__RIGHT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.772,20,35,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182\r\n\t\t\t\tl-4.189,3.77L33,38.778c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9\r\n\t\t\t\tL47,34.222c0.61-0.549,1-1.336,1-2.222S47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M47,29.778l0.007-0.008l-10-9L37,20.778C36.468,20.3,35.772,20,35,20\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182\r\n\t\t\t\tl-4.189,3.77L33,38.778c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3c0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9\r\n\t\t\t\tL47,34.222c0.61-0.549,1-1.336,1-2.222S47.609,30.328,47,29.778z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__LEFT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008l10,9L27,43.222C27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.222l0.007-0.008\r\n\t\t\t\tL26.818,35H45c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.778c-0.61,0.549-1,1.336-1,2.222s0.391,1.673,1,2.222\r\n\t\t\t\tl-0.007,0.008l10,9L27,43.222C27.532,43.701,28.228,44,29,44c1.657,0,3-1.343,3-3c0-0.885-0.391-1.673-1-2.222l0.007-0.008\r\n\t\t\t\tL26.818,35H45c1.657,0,3-1.343,3-3C48,30.343,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__UP_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__UP","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.23,26.993l-9-10l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818l3.77,4.189L38.778,31\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.993z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.36,0,26,11.64,26,26S46.36,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.23,26.993l-9-10l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818l3.77,4.189L38.778,31\r\n\t\t\t\tc0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.993z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\tc0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.36,0,26,11.64,26,26S46.36,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DOWN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1c0.885,0,1.673-0.391,2.222-1l0.008,0.007\r\n\t\t\t\tl9-10L43.222,37C43.7,36.468,44,35.772,44,35C44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6s26,11.64,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.772,0.299,1.468,0.778,2l-0.008,0.008l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1c0.885,0,1.673-0.391,2.222-1l0.008,0.007\r\n\t\t\t\tl9-10L43.222,37C43.7,36.468,44,35.772,44,35C44,33.343,42.657,32,41,32z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\ts32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6s26,11.64,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"BLOCK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"BLOCK","display":"inline"},"children":[{"name":"g","attribs":{"id":"BLOCK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32c0-6.098,2.115-11.694,5.63-16.128\r\n\t\t\t\tL48.128,52.37C43.694,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63C20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.098,55.886,43.694,52.37,48.128z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32c0-6.098,2.115-11.694,5.63-16.128\r\n\t\t\t\tL48.128,52.37C43.694,55.886,38.098,58,32,58z M52.37,48.128L15.873,11.63C20.307,8.115,25.902,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tC58,38.098,55.886,43.694,52.37,48.128z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__DELETE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879\r\n\t\t\t\tC41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.578,46,21.829,46,21z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26\r\n\t\t\t\tS46.359,58,32,58z M46,21c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879\r\n\t\t\t\tC22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879\r\n\t\t\t\tC18.336,41.422,18,42.172,18,43c0,1.657,1.343,3,3,3c0.828,0,1.579-0.336,2.121-0.879L32,36.243l8.879,8.879\r\n\t\t\t\tC41.422,45.664,42.172,46,43,46c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878\r\n\t\t\t\tC45.664,22.578,46,21.829,46,21z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,43.001C46,43.001,46,43.001,46,43.001C46,43,46,43,46,42.999V43.001z\r\n\t\t\t\t M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758\r\n\t\t\t\tl-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l9,9\r\n\t\t\t\tC26.422,42.664,27.172,43,28,43c0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21\r\n\t\t\t\tz M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M46,43.001C46,43.001,46,43.001,46,43.001C46,43,46,43,46,42.999V43.001z\r\n\t\t\t\t M46,20.999v0.002C46,21.001,46,21,46,20.999C46,21,46,21,46,20.999z M44,21c-0.828,0-1.578,0.336-2.121,0.879L28,35.758\r\n\t\t\t\tl-6.879-6.879C20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l9,9\r\n\t\t\t\tC26.422,42.664,27.172,43,28,43c0.828,0,1.578-0.336,2.121-0.879l16-16C46.664,25.579,47,24.828,47,24C47,22.343,45.657,21,44,21\r\n\t\t\t\tz M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32s32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.64,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__MINUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H19c-1.657,0-3,1.343-3,3s1.343,3,3,3h26c1.657,0,3-1.343,3-3\r\n\t\t\t\tS46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58\r\n\t\t\t\tC17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS","display":"inline"},"children":[{"name":"g","attribs":{"id":"CIRCLE__x2F__PLUS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M45,29H35V19c0-1.657-1.343-3-3-3s-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32\r\n\t\t\t\ts14.327,32,32,32c17.673,0,32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26S46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"GLOBE_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"GLOBE","display":"inline"},"children":[{"name":"g","attribs":{"id":"GLOBE","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089\r\n\t\t\t\tc0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013c-0.023-0.013-0.047-0.026-0.07-0.038\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235c-0.03-0.002-0.059-0.004-0.089-0.006\r\n\t\t\t\tc-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114c-0.004-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z M43.382,11.985\r\n\t\t\t\tc0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.165,0.009,0.28,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.309,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.066-0.023-0.131-0.047-0.197-0.07c-0.172-0.022-0.357,0.059-0.477,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.019,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.276,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.288,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.102,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.093-0.021,0.187-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.048-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.114-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.064-0.045h-0.172c-0.066-0.021-0.112-0.079-0.21-0.089c-0.036,0.042-0.072,0.085-0.108,0.127\r\n\t\t\t\tc-0.04,0.109,0.108,0.294,0.127,0.4c-0.019,0.017-0.038,0.034-0.057,0.051c-0.108-0.025-0.306-0.287-0.35-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.101,0.233-0.28,0.267v0.114c0.275,0.013,0.551,0.025,0.826,0.038c0.059-0.04,0.119-0.081,0.178-0.121\r\n\t\t\t\tc0.078-0.033,0.162-0.016,0.254-0.045c0.078-0.04,0.157-0.08,0.235-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.023-0.038-0.047-0.076-0.07-0.114c-0.061-0.017-0.123-0.034-0.184-0.051\r\n\t\t\t\tc-0.119-0.023-0.251,0.029-0.375,0.026c-0.025-0.051-0.051-0.102-0.076-0.153c-0.03-0.011-0.059-0.021-0.089-0.032\r\n\t\t\t\tc-0.132,0.016-0.223,0.14-0.286,0.229h-0.108c-0.028-0.1-0.003-0.248,0.025-0.343c-0.136,0.061-0.143,0.232-0.267,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c-0.167-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.081,0.106-0.161,0.212-0.241,0.318c-0.087,0.062-0.151,0.069-0.197,0.172c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061c-0.074-0.021-0.104-0.081-0.222-0.057C21.066,9.601,20.983,9.637,20.993,9.697z\r\n\t\t\t\t M21.388,8.988c-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24c0,0,0.001,0,0.001,0\r\n\t\t\t\tc0.002-0.004-0.006-0.009-0.002-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.051-0.021-0.102-0.042-0.153-0.064c-0.12,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.145-0.016-0.191-0.025\r\n\t\t\t\tc-0.086-0.017-0.139,0.054-0.197,0.07c-0.059-0.006-0.119-0.013-0.178-0.019h-0.013c-0.072,0.047-0.144,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.059-0.242-0.038c-0.091,0.04-0.182,0.08-0.273,0.121h-0.178c-0.091-0.099-0.215-0.211-0.273-0.337\r\n\t\t\t\tc-0.054-0.014-0.128-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.013c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.169-0.233-0.211-0.33-0.305c-0.017-0.016-0.033-0.139-0.089-0.191c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.089-0.098-0.178-0.195-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.054-0.074-0.138-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.108c-0.004,0.002-0.008,0.004-0.013,0.007c-0.182-0.153-0.224-0.622-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.106-0.144-0.038-0.516-0.089-0.724c-0.033-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.153-0.152c-0.139-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.165-0.432\r\n\t\t\t\tc-0.095-0.171-0.257-0.287-0.299-0.521c0.033-0.045,0.038-0.066,0.095-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.076,0.013c0.08-0.159,0.057-0.398,0.184-0.508c-0.074-0.191-0.148-0.381-0.222-0.572\r\n\t\t\t\tc-0.122,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.158,0.011-0.28,0.032c-0.042-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.04,0.032-0.081,0.063-0.121,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.013-0.017-0.025-0.034-0.038-0.051c-0.148-0.032-0.297-0.064-0.445-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.07-0.038-0.033-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.167,0.358-0.146,0.527c-0.038,0.02-0.088,0.07-0.146,0.064\r\n\t\t\t\tc-0.153-0.018-0.266-0.184-0.4-0.235c-0.132-0.05-0.433-0.054-0.54-0.114c-0.119-0.068-0.137-0.311-0.241-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.068-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.076,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.02,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.177-0.032,0.261\r\n\t\t\t\tc0.08,0.135,0.04,0.036,0.14,0.102c0.004,0.015,0.008,0.03,0.013,0.044c0.042,0.025,0.085,0.051,0.127,0.076\r\n\t\t\t\tc0.063-0.012,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.017,0.08,0.022,0.102,0.044\r\n\t\t\t\tc0.015,0.02,0.01,0.028,0.006,0.057c0.034,0.023,0.057,0.034,0.121,0.032c0.011,0.033,0.011,0.06,0,0.095\r\n\t\t\t\tc0.065,0.069,0.166,0.135,0.267,0.165c0.006,0.032,0.013,0.063,0.019,0.095c0.033,0.061,0.118,0.081,0.14,0.159v0.095\r\n\t\t\t\tc0.014,0.018,0.035,0.022,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.025c-0.023,0.019-0.047,0.038-0.07,0.057h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.034,0.013,0.047,0.006,0.095c0.142,0.043,0.215,0.149,0.324,0.222\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.362c0.062,0.032,0.311,0.192,0.388,0.172\r\n\t\t\t\tc0.102-0.053,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.01,0.145,0.061,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.28c0.087-0.008,0.174-0.017,0.261-0.025c0.052-0.039,0.054-0.108,0.127-0.133\r\n\t\t\t\tc0.214-0.019,0.428-0.038,0.642-0.057c0.032-0.012,0.039-0.042,0.083-0.057c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.025,0.03,0.051,0.044,0.076c0.023,0.002,0.047,0.004,0.07,0.006c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.095c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.006\r\n\t\t\t\tc0.002-0.027-0.002-0.037-0.013-0.063c0.025-0.016,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.026,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.015-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.064,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.261c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.165c0.049,0.042,0.097,0.085,0.146,0.127v0.006c-0.038-0.004-0.076-0.009-0.114-0.013\r\n\t\t\t\tc-0.031,0.138-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.015,0.114,0.07\r\n\t\t\t\tc-0.021,0.015-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.013c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.015-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.204,0.133,0.248c0.029,0.068-0.018,0.161,0.038,0.261\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.01-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.032-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.222-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.216,0.216,0.432,0.324,0.648c0.075,0.146,0.371,0.404,0.203,0.572c0.03,0.14,0.059,0.28,0.089,0.419\r\n\t\t\t\tc0.023,0.055,0.047,0.11,0.07,0.165c0.02,0.082-0.031,0.143-0.025,0.203c0.008,0.08,0.071,0.147,0.089,0.21\r\n\t\t\t\tc0.014,0.047-0.021,0.073-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.117,0.131,0.233,0.263,0.349,0.394\r\n\t\t\t\tc0.12,0.189,0.16,0.433,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.077,0-0.095,0.025\r\n\t\t\t\tc-0.025,0.032,0.123,0.23,0.159,0.286c-0.017,0.049-0.034,0.098-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.032\r\n\t\t\t\tc0.006,0.002,0.013,0.004,0.019,0.006c0.006-0.015,0.013-0.03,0.019-0.045c0.017-0.008,0.022-0.011,0.051-0.013\r\n\t\t\t\tc0.013,0.023,0.025,0.047,0.038,0.07c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.029,0.022,0.055,0.038,0.095\r\n\t\t\t\tc0.024,0.042,0.115,0.075,0.165,0.089c0.06-0.046,0.096-0.122,0.178-0.146c0.115-0.035,0.251,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.089c0.15-0.071,0.214,0,0.331,0c0.034-0.019,0.068-0.038,0.102-0.057\r\n\t\t\t\tc0.122-0.035,0.234,0.073,0.318,0.102c0.04-0.031,0.07-0.055,0.095-0.102c0.057,0.013,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.017-0.018,0.02-0.053,0.032-0.076c0.05-0.048,0.322-0.017,0.4-0.07c0.083-0.072,0.165-0.144,0.248-0.216\r\n\t\t\t\tc0.416-0.327,0.721-0.688,1.017-1.138c0.074-0.113,0.264-0.191,0.305-0.299c0.02-0.052-0.028-0.122-0.019-0.146\r\n\t\t\t\tc0.016-0.044,0.065-0.032,0.089-0.064c0.071-0.091,0.109-0.35,0.089-0.496c-0.038-0.015-0.078-0.04-0.095-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.078-0.091,0.132-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.009-0.061-0.052-0.036-0.064-0.07c0.002-0.006,0.004-0.013,0.006-0.019c0.013-0.032,0.025-0.064,0.038-0.095\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.019-0.388c-0.028,0.01-0.035,0.018-0.076,0.019c-0.039-0.124-0.087-0.274-0.044-0.375\r\n\t\t\t\tc-0.006-0.075-0.062-0.112-0.114-0.14v-0.203c0.119-0.087,0.237-0.174,0.356-0.261c0.145-0.122,0.233-0.305,0.4-0.407\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.642-0.292c0.137-0.094,0.224-0.268,0.331-0.394c0-0.028-0.009-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.011-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.163,0.012-0.337-0.07-0.432c0.003-0.034,0.034-0.063,0.044-0.108c0.026-0.113-0.041-0.294-0.057-0.394\r\n\t\t\t\tc0.03-0.055,0.059-0.11,0.089-0.165c-0.065-0.14-0.183-0.157-0.267-0.267c-0.083-0.108-0.127-0.393-0.07-0.553\r\n\t\t\t\tc-0.018-0.028-0.043-0.033-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.126-0.197-0.216\r\n\t\t\t\tc-0.037-0.095,0.061-0.407,0.102-0.451c0.024-0.026,0.068-0.021,0.089-0.051c0.047-0.068,0.006-0.104,0.025-0.165\r\n\t\t\t\tc0.042-0.137,0.172-0.143,0.184-0.368c0.096-0.053,0.187-0.052,0.191-0.203c0.085,0.016,0.124-0.022,0.191-0.051\r\n\t\t\t\tc0.024-0.036,0.026-0.054,0.006-0.095c0.208-0.235,0.415-0.47,0.623-0.705c0.229-0.185,0.515-0.325,0.744-0.508\r\n\t\t\t\tc0.085-0.104,0.169-0.208,0.254-0.311c0.168-0.215,0.419-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.074-0.119,0.148-0.237,0.222-0.356c-0.002-0.028-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.11-0.195,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.014-0.04,0.079-0.07,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.155c-0.032-0.185-0.128-0.278-0.28-0.375c0.018,0.077-0.003,0.113-0.025,0.191c-0.034,0.026-0.04,0.042-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.044c0.015,0.017,0.03,0.034,0.044,0.051c-0.029,0.063-0.008,0.077,0.006,0.14v0.318\r\n\t\t\t\tc0.023,0.101,0.073,0.267,0.146,0.324c0.208,0.044,0.476-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.226,51.767,35.185,51.688,35.155z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.317,0.022-0.352-0.084\r\n\t\t\t\tC50.47,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.038,0.017,0.076,0.034,0.114,0.051\r\n\t\t\t\tc0.07-0.025,0.14-0.051,0.21-0.076c-0.013-0.036-0.025-0.072-0.038-0.108c0.033-0.077,0.142-0.097,0.203-0.146\r\n\t\t\t\tc0.083-0.066,0.227-0.183,0.267-0.286c0.015-0.059,0.03-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.064-0.146\r\n\t\t\t\tc-0.099-0.13-0.202-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.025-0.222\r\n\t\t\t\tc0.032-0.042,0.064-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.099,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.102-0.002,0.239,0.039,0.311,0.025\r\n\t\t\t\tc0.034-0.012,0.069-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.232,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.056,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.068,0.042-0.102,0.064\r\n\t\t\t\tc-0.044,0.061-0.038,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.085,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.308,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.063-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.013-0.03,0.025-0.044,0.038c-0.012-0.052-0.021-0.069-0.07-0.083\r\n\t\t\t\tc-0.033-0.007-0.066,0.023-0.095,0.038c-0.203,0.107-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.015\r\n\t\t\t\tc-0.076-0.302-0.168-0.598-0.232-0.904c0.011,0.001,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.028,0.009-0.055,0.013-0.083h0.006c0.023,0.048,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.013,0.019,0.019\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.058,0.138-0.099,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.089c0.198-0.063,0.318-0.017,0.375,0.14c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.049,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.009,0.006,0.013c-0.061-0.008-0.097-0.021-0.121,0.032\r\n\t\t\t\tC7.564,37.5,7.647,37.606,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.435c0.051-0.052,0.122-0.09,0.155-0.153\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.022,0.108,0.044,0.172,0.019h0.006c0.013,0.192-0.204,0.292-0.248,0.483\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.349c0.051-0.121,0.102-0.242,0.153-0.362c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.077-0.036-0.114-0.057-0.172c0.045-0.054,0.132-0.205,0.019-0.254v-0.038c0.146,0.013,0.159-0.073,0.235-0.14\r\n\t\t\t\tc0.08-0.07,0.491-0.363,0.585-0.381c0.051-0.01,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.025\r\n\t\t\t\tc-0.005-0.182,0.137-0.241,0.292-0.254c-0.009-0.051-0.017-0.102-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.07,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.169,0.065-0.288,0.184-0.331c0-0.048-0.035-0.138-0.019-0.222c0.021-0.107,0.097-0.243,0.076-0.369\r\n\t\t\t\tc-0.017-0.165-0.034-0.331-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.464c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.102h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.064c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.756\r\n\t\t\t\tc-0.161-0.05-0.338,0.008-0.458-0.07c-0.256-0.166-0.436-0.435-0.731-0.566c-0.171-0.076-0.287,0.017-0.451-0.013\r\n\t\t\t\tc-0.1-0.015-0.199-0.03-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.242c0.013-0.077-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.034-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.216c-0.065-0.023-0.106-0.068-0.159-0.102c-0.052,0.007-0.15,0.015-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.191c-0.069,0.101-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.07,0.012-0.1,0.032-0.146c-0.111,0.023-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.292\r\n\t\t\t\tc0.065-0.105,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.578c-0.021-0.068-0.016-0.143-0.076-0.172c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.036-0.22-0.072-0.331-0.108c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.027-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.015-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.12-0.214-0.314-0.388-0.292c-0.011,0.021-0.021,0.042-0.032,0.063v0.013c-0.013-0.091-0.026-0.182-0.038-0.273\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.019c-0.066-0.004-0.131-0.008-0.197-0.013v-0.006\r\n\t\t\t\tc0.187-0.058,0.138-0.167,0.273-0.222c0.002-0.004,0.004-0.008,0.006-0.013c-0.051-0.035-0.122-0.045-0.178-0.083\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.019-0.038,0.036-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191V37.97c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.009,0.008-0.017,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.126-0.21,0.146c-0.261,0.058-0.335-0.149-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.057-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.016-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.032c-0.016,0.063-0.425,0.178-0.515,0.21\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.008,0.036-0.018,0.036-0.038,0.057c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.044-0.094,0.072-0.152,0.083c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.1,0.07-0.186,0.121-0.254\r\n\t\t\t\tc-0.012-0.102-0.056-0.167-0.089-0.254c0.041-0.061,0.144-0.086,0.241-0.089c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.184c-0.04,0.013-0.081,0.025-0.121,0.038\r\n\t\t\t\tc0.019-0.036,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.023-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.038\r\n\t\t\t\tc-0.047,0.032-0.093,0.064-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.128-0.331,0.095\r\n\t\t\t\tc-0.05-0.063-0.09-0.028-0.135-0.022c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.032v0.006c-0.047,0.013-0.093,0.025-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.083c0.114,0.034,0.208,0.114,0.337,0.146c0.067,0.017,0.202-0.02,0.261,0.019\r\n\t\t\t\tc0.043,0.025,0.066,0.123,0.07,0.184c0.099,0.06,0.295,0.06,0.388,0.127c-0.006,0.065-0.053,0.106-0.102,0.127\r\n\t\t\t\tc-0.019,0.021-0.038,0.042-0.057,0.063v0.006c0.141,0.006,0.266-0.057,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.032\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.07c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.013-0.028,0.025-0.055,0.038-0.083c-0.079-0.081-0.36-0.089-0.483-0.14\r\n\t\t\t\tc-0.04-0.044-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.106-0.191-0.159H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.017-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21H6.52c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tC8.338,28.6,8.338,28.606,8.325,28.59c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.02,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006h0.006c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299h-0.095c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0c0.001,0,0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tc-0.008-0.018-0.024-0.007-0.038-0.018c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.022-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005c-0.054,0.001-0.109,0.001-0.163,0.001c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.819,0,9.317,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.048-0.001-0.132-0.022-0.153-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.013,0.013-0.025,0.025-0.038,0.038\r\n\t\t\t\tc0.039,0.028,0.075,0.062,0.102,0.102c-0.098,0.069-0.24,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc0.032,0.03,0.064,0.059,0.095,0.089c-0.004,0.027-0.008,0.055-0.013,0.083c-0.383-0.001-0.322,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.208,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.226,0.096,0.343,0.121c0.109-0.061,0.161-0.161,0.248-0.241\r\n\t\t\t\tc-0.002-0.025-0.004-0.051-0.006-0.076c-0.034-0.021-0.068-0.042-0.102-0.064c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.023-0.023,0.047-0.047,0.07-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.042-0.034-0.064-0.051c-0.013-0.017-0.002-0.045,0.006-0.076c0.015-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.27,0.047,0.356,0.006c0.036-0.028,0.072-0.055,0.108-0.083c0.021-0.023,0.042-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.055-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.099-0.106c0.83,0.518,1.632,1.072,2.395,1.677\r\n\t\t\t\tc-0.005,0.025-0.011,0.05-0.016,0.075c-0.049,0.083-0.097,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.464,0.489\r\n\t\t\t\tc0.053,0.004,0.106,0.008,0.159,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.03,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.135,0.168,0.286,0.146c-0.018,0.094-0.114,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.635-0.089\r\n\t\t\t\tc-0.081,0.019-0.116,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.12,0.179-0.292,0.203c-0.021,0.033-0.037,0.114-0.051,0.146c-0.095,0.048-0.191-0.018-0.216-0.089\r\n\t\t\t\tc0.03-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.451,0.032c-0.042,0.034-0.085,0.068-0.127,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.105-0.03-0.28-0.002-0.362,0.032c-0.091,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.044-0.057c-0.182,0.003-0.224,0.07-0.375,0.019c0-0.05,0.007-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.167,0.2-0.419,0.248\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.4,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.341,0.069-0.427-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.097,0.009-0.195,0.017-0.292,0.025c-0.082-0.018-0.133-0.053-0.216-0.032\r\n\t\t\t\tc-0.017,0.148,0.159,0.164,0.121,0.337c-0.051,0.081-0.102,0.161-0.152,0.241c-0.004,0.004-0.009,0.009-0.013,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.029,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.019,0.108v0.013\r\n\t\t\t\tc-0.166-0.008-0.335-0.211-0.566-0.184c-0.124,0.261-0.492,0.237-0.661,0.445c0.005,0.173,0.26,0.294,0.14,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.102-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.103,0-0.1,0.078-0.153,0.127c0.003,0.063,0.126,0.201,0.191,0.229c0.057,0.024,0.137-0.001,0.191,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.261,0.21c-0.072-0.016-0.157,0.001-0.21-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.076-0.038-0.207-0.014-0.292-0.057c-0.043-0.022-0.208-0.444-0.216-0.527c0.122-0.036,0.163-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.136-0.088-0.245-0.222-0.362-0.33c0.221-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.14,0.021,0.21,0.032c0.5,0.15,1.305,0.524,1.831,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.362-0.305c-0.068-0.021-0.136-0.042-0.203-0.063c-0.108-0.038-0.216-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.059,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.013-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.046,0.019-0.103,0.021-0.14,0.044\r\n\t\t\t\tc-0.114-0.074-0.219-0.036-0.369-0.025c-0.066-0.103-0.205-0.127-0.28-0.222c0.237,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.028-0.017-0.055-0.034-0.083-0.051c-0.065-0.023-0.14,0.003-0.191-0.019\r\n\t\t\t\tc-0.106-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.04-0.008-0.081-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.058-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.117,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.013-0.28c-0.139,0.095-0.322,0.263-0.388,0.426c-0.017-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.281-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.144,0.185-0.172,0.273c-0.187-0.096-0.28-0.273-0.381,0.083c-0.042-0.036-0.085-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.153,0.229\r\n\t\t\t\tc0.014-0.069,0.027-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.013-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.148,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.025-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.038,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.106,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.032,0.14\r\n\t\t\t\tc-0.019,0.028-0.038,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.064-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.009,0.027,0.014,0.055,0.044,0.076v0.038c-0.054,0.016-0.077,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.254-0.025\r\n\t\t\t\tc0.021,0.015,0.042,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.013,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.03-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.176,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.019-0.002,0.038-0.004,0.057-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.013-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.28,0.045c-0.111-0.019-0.163-0.137-0.299-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.037-0.04,0.304,0.049,0.369,0.083c0.082,0.043,0.287-0.119,0.311-0.153h0.057c-0.002-0.095-0.048-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.052-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.019-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.064-0.083\r\n\t\t\t\tc0.016-0.027-0.004-0.073-0.013-0.115h0.127c0.08-0.112,0.117-0.111,0.222-0.191c0.05-0.038,0.05-0.096,0.114-0.127\r\n\t\t\t\tc0.023,0.015,0.047,0.03,0.07,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.184-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.128-0.081,0.152-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.091-0.069,0.094-0.193,0.21-0.248c0.051,0.034,0.102,0.068,0.153,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.261,0.115c0.011,0.019,0.021,0.038,0.032,0.057c0.014,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.051,0.057c0.013,0.018,0.009,0.038,0.006,0.076c-0.04-0.002-0.081-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.038-0.057v-0.013c-0.09,0.094-0.016,0.207-0.159,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.159-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.089,0.064c0,0.094-0.02,0.143-0.032,0.216c0.034,0.053,0.068,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.025,0.121c-0.035,0.188-0.011,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.053-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.02,0.042,0.039,0.071,0.083,0.089\r\n\t\t\t\tc0.067,0.051,0.193-0.016,0.235-0.038v0.026c0.065-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.055,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.017-0.083,0.1-0.04,0.152-0.083c0.028-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.108,0.038\r\n\t\t\t\tc0.026-0.027,0.034-0.043,0.083-0.051c0.021,0.013,0.042,0.025,0.064,0.038c0.059-0.057,0.198-0.098,0.299-0.108\r\n\t\t\t\tc0.008-0.015,0.017-0.03,0.025-0.045c0.029-0.003-0.01,0.079-0.019,0.114c0.148,0.215,0.345-0.041,0.489,0.229\r\n\t\t\t\tc-0.015,0.011-0.03,0.021-0.045,0.032c-0.094-0.003-0.14-0.044-0.222-0.07c-0.076,0.006-0.1,0.066-0.14,0.108\r\n\t\t\t\tc-0.053-0.012-0.053-0.037-0.102-0.025c-0.016,0.027-0.014,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.025,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.064,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.058,0.067-0.108,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.034,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.045c-0.044-0.007-0.062,0.006-0.102-0.006c-0.085,0.046-0.145,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.013,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.044,0.165c0.022,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.025,0.017,0.038,0.025c-0.021,0.16-0.09,0.268-0.038,0.451c-0.041,0.106-0.222,0.17-0.324,0.076\r\n\t\t\t\tc-0.015-0.04-0.03-0.081-0.044-0.121c-0.047-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.267,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.032,0.025-0.064,0.051-0.095,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.009,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.011,0.035,0.018,0.047,0.013,0.089c-0.081,0.046-0.249,0.013-0.362,0.007c-0.016,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.009-0.053-0.026-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025v-0.044\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025h0.006c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.023,0.012,0.039-0.004,0.07-0.019c0.034,0.01,0.181,0.419,0.172,0.451v0.013c-0.023-0.002-0.047-0.004-0.07-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.013,0.009,0.025,0.017,0.038,0.025h0.083\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.063-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.061-0.034-0.123-0.068-0.184-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.006,0.095,0.142,0.064,0.203,0.108c0.03,0.023,0.006,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.436-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.095-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.327,0.011-0.413-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.185,0.165,0.267,0.267c0.025,0.026,0.059-0.025,0.108-0.013\r\n\t\t\t\tc0.006,0.001,0.153,0.061,0.165,0.07c0.049,0.035,0.089,0.097,0.14,0.133c0.133,0.095,0.272,0.155,0.407,0.248\r\n\t\t\t\tc0.03,0.036,0.059,0.072,0.089,0.108c0.042,0.021,0.085,0.042,0.127,0.064c0.003,0.051,0.002,0.06-0.038,0.07\r\n\t\t\t\tc-0.006,0.043,0.016,0.226,0.013,0.235c-0.017,0.032-0.034,0.064-0.051,0.095c0.022,0.032,0.038,0.045,0.038,0.102\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c0.027,0.077,0.144,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.025,0.025v0.013c-0.027,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.036,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.227-0.061,0.349-0.025c0.077,0.022,0.119,0.081,0.223,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.042,0.076-0.064,0.114\r\n\t\t\t\tc0.038,0.047,0.076,0.093,0.114,0.14c0.014,0.044-0.016,0.099-0.013,0.146c0.019,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.019-0.015,0.038-0.03,0.057-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.055-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.034,0.011,0.068,0.021,0.102,0.032h0.013c-0.006,0.013-0.013,0.025-0.019,0.038c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.019-0.035,0.029-0.044,0.083-0.045c-0.023-0.029-0.028-0.02-0.025-0.064c-0.021,0.004-0.042,0.009-0.064,0.013\r\n\t\t\t\tc-0.022-0.048-0.026-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.107,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.013-0.011,0.025-0.021,0.038-0.032c-0.013-0.04-0.025-0.081-0.038-0.121\r\n\t\t\t\tc0.008-0.002,0.017-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.102-0.044\r\n\t\t\t\tc-0.013-0.03-0.026-0.059-0.038-0.089v-0.007c0.03-0.019,0.042-0.017,0.083-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.017-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.222-0.311\r\n\t\t\t\tc0.002-0.047,0.015-0.064,0.038-0.089c-0.011-0.013-0.021-0.025-0.032-0.038c0.035-0.015,0.06-0.023,0.076-0.057\r\n\t\t\t\tc0.008,0.002,0.017,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.032,0.019\r\n\t\t\t\tc0.04,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.064,0.008,0.095,0.013h0.013c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.015-0.002,0.03-0.004,0.044-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.024-0.041-0.06-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.067,0.015,0.083,0.045\r\n\t\t\t\tc0.017,0.015,0.034,0.03,0.051,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.191-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.034,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.272-0.012,0.286,0.121c0.008-0.009,0.017-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.095,0.057c-0.008,0.032-0.017,0.064-0.025,0.095\r\n\t\t\t\tc0.066-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.015-0.03,0.03-0.059,0.044-0.089\r\n\t\t\t\tc0.038-0.022,0.1,0.002,0.153-0.019c0.136-0.054,0.112,0.009,0.273,0.013c0.026-0.03,0.045-0.056,0.063-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.21-0.089c-0.087-0.049-0.178-0.313-0.267-0.299v-0.051c0.036-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.013-0.121\r\n\t\t\t\tc0.036-0.199,0.06-0.377,0.286-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.034-0.038-0.051-0.064\r\n\t\t\t\tc-0.032-0.104,0.093-0.097,0.153-0.133c0.199-0.119,0.104-0.321,0.509-0.311c0.008-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.064,0.076v0.013c-0.023,0.021-0.047,0.042-0.07,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.026,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267v0.019c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.102-0.009,0.153-0.013c0.034-0.028,0.068-0.055,0.102-0.083c0.06-0.018,0.089,0.017,0.133,0.025\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0.023-0.032,0.052-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.235,0.038c-0.024-0.123-0.199-0.258-0.337-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.103-0.029,0.197-0.016,0.305-0.019c0.037-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.022,0.013,0.019,0.008,0.045,0c0.05-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.047-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.222-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.186-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.032,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.413,0.152c-0.008,0.011-0.017,0.021-0.026,0.032c0.074,0.053,0.148,0.098,0.197,0.178\r\n\t\t\t\tc-0.034,0.026-0.077,0.034-0.14,0.032c-0.028,0.081-0.083,0.13-0.089,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.044,0.013,0.089,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.28,0.21c0.047,0.038,0.116,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.015,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.079,0.289-0.089,0.388-0.324,0.445c-0.131,0.031-0.222-0.051-0.337-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.098,0.022-0.277-0.021-0.381-0.038c-0.126-0.021-0.151-0.13-0.292-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.102,0.03-0.172,0.013c-0.083-0.021-0.076-0.089-0.121-0.146c-0.173,0.111-0.323-0.021-0.54,0.032\r\n\t\t\t\tc-0.196,0.047-0.34,0.172-0.515,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.138,0.074-0.202,0.007-0.318-0.013\r\n\t\t\t\tc-0.019,0.006-0.038,0.013-0.057,0.019c-0.093-0.008-0.186-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.069,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.013,0.009,0.019,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.025c-0.114-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.089-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.013,0.006,0.026,0.013,0.038,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.142,0.01-0.159-0.044c-0.091,0.011-0.203,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.07,0.064\r\n\t\t\t\tc-0.01,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.261-0.038v0.006c-0.015,0.024-0.03,0.039-0.057,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.064,0.045c0.014,0.023-0.007,0.02-0.013,0.064h0.057\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.007,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.032-0.003-0.055-0.025-0.089-0.044c-0.011,0.023-0.021,0.047-0.032,0.07v0.045\r\n\t\t\t\tc0.105,0.013,0.133,0.046,0.222,0.07c0.003,0.06-0.021,0.124,0.006,0.165c0.034,0.021,0.068,0.042,0.102,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.055,0.021-0.083,0.032c0.006,0.013,0.013,0.025,0.019,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.017,0.019-0.024,0.019-0.032,0.051\r\n\t\t\t\tc0.006,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.009,0.004,0.013,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.085-0.003,0.086,0.023,0.146,0.051c0.029,0.014,0.049-0.015,0.076-0.038c0.025,0.059,0.051,0.119,0.076,0.178\r\n\t\t\t\tc0.099,0.031,0.23-0.025,0.299,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.03-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.108,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.013,0.017,0.025,0.034,0.038,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.017,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.038,0.107-0.064,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.305,0.578c-0.008,0.042-0.017,0.085-0.025,0.127c-0.041,0.134-0.077,0.258-0.172,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.222,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.072,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.066,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.07,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.068,0.051,0.102,0.076c0.086,0.071,0.195,0.232,0.235,0.343\r\n\t\t\t\tc0.011,0.068,0.021,0.136,0.032,0.203c-0.008,0.039-0.042,0.068-0.032,0.127c0.03,0.172,0.113,0.353,0.165,0.496v0.216\r\n\t\t\t\tc0.095,0.205,0.383,0.166,0.553,0.057c0.057-0.047,0.114-0.093,0.172-0.14c0.094-0.028,0.217,0.012,0.299-0.013\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.026,0.163,0.016,0.229-0.019c0.069-0.036,0.087-0.124,0.152-0.159\r\n\t\t\t\tc0.238-0.13,0.547-0.129,0.769-0.267c0.062-0.038,0.046-0.087,0.076-0.159c0.029-0.07,0.139-0.142,0.21-0.172\r\n\t\t\t\tc0.121-0.04,0.241-0.081,0.362-0.121c0.07,0.008,0.14,0.017,0.21,0.025c0.025-0.015,0.051-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.016-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.273-0.051c0.032-0.027,0.027-0.071,0.044-0.114\r\n\t\t\t\tc0.048-0.12,0.19-0.153,0.349-0.159c0.009-0.116-0.012-0.304,0.026-0.419c0.056-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.042-0.04,0.085-0.08,0.127-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.127-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.182-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.013-0.203\r\n\t\t\t\tc-0.015-0.018-0.024-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.042,0.011-0.063,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.477-0.019\r\n\t\t\t\tc-0.019,0.017-0.023,0.015-0.032,0.044c-0.073,0.007-0.13-0.005-0.203-0.006c0.013-0.058-0.015-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.017-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.03-0.004-0.044-0.006c-0.083,0.059-0.119,0.288-0.07,0.407c0.007,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.045-0.059-0.108-0.211-0.114-0.311c-0.034-0.027-0.036-0.039-0.076-0.032c-0.033-0.107-0.058-0.116-0.013-0.229\r\n\t\t\t\tc-0.013-0.021-0.026-0.042-0.038-0.064c0.02-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.036-0.028-0.026-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.114-0.013c-0.07-0.185-0.159-0.356-0.21-0.553\r\n\t\t\t\tc-0.036,0.009-0.072,0.017-0.108,0.026c-0.013-0.006-0.026-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.008-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.019\r\n\t\t\t\tc-0.001,0.041,0.001,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.242,0.032c0.043,0.069,0.143,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.136,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.311,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.106,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.186-0.121,0.197-0.172\r\n\t\t\t\tc0.098-0.035,0.203-0.075,0.324-0.044c0.05,0.012,0.038,0.034,0.089,0.038c0.015,0.043,0.01,0.1,0.032,0.159\r\n\t\t\t\tc0.026,0.069,0.095,0.113,0.095,0.21c0.068,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.142,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.216,0.083c0.131,0.021,0.254-0.027,0.356-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.191-0.07c0.08,0.167,0.549-0.018,0.686-0.025c0.074,0.053,0.075,0.102,0.07,0.223\r\n\t\t\t\tc0.047,0.011,0.093,0.021,0.14,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.114,0.032,0.191,0.076\r\n\t\t\t\tc0.03,0.042,0.059,0.085,0.089,0.127c0.103,0.123,0.38,0.229,0.597,0.153c0.003,0.052-0.02,0.064-0.051,0.095\r\n\t\t\t\tc-0.142,0.145-0.214,0.023-0.369,0.076h-0.013c0.049,0.113,0.433,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.017-0.059,0.025-0.089c0.032-0.019,0.083-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.014,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.015,0.062-0.095,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.102,0.616c0.07,0.251,0.21,0.444,0.305,0.655\r\n\t\t\t\tc0.065,0.143,0.116,0.299,0.165,0.457c0.021,0.079,0.042,0.157,0.064,0.235c0.038,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.032,0.112,0.064,0.225,0.095,0.337c0.059,0.064,0.119,0.127,0.178,0.191\r\n\t\t\t\tc0.09-0.003,0.218-0.064,0.248-0.127c0.026-0.054,0.004-0.106,0.038-0.146c0.083-0.028,0.165-0.055,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.057-0.057c0.025-0.072,0.051-0.144,0.076-0.216c0.037-0.022,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.025-0.213,0.286-0.458,0.108-0.655c0.057-0.141-0.035-0.296,0-0.451\r\n\t\t\t\tc0.021-0.047,0.042-0.093,0.064-0.14c0.06-0.048,0.118-0.061,0.191-0.019c0.048-0.031,0.078-0.105,0.095-0.165\r\n\t\t\t\tc0.058-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.048-0.168,0.108-0.216c0.063-0.032,0.127-0.064,0.191-0.095\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.178-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.195-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.148-0.181,0.229-0.273c-0.013-0.045-0.025-0.089-0.038-0.134\r\n\t\t\t\tc0.071-0.072,0.179-0.083,0.267-0.14c0.032-0.034,0.064-0.068,0.095-0.102c0.029,0.022,0.05,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.017-0.03,0.034-0.059,0.051-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.019,0.01,0.038,0.021,0.057,0.032\r\n\t\t\t\tc0.013-0.021,0.025-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.009,0.021,0.017,0.043,0.026,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.008-0.004,0.013-0.006c0.021,0.038,0.042,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.016-0.069,0.027-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.032-0.184c-0.002-0.034-0.003-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.095,0.127c0.07-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.022,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.068,0.037,0.107,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.102,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.004-0.002,0.009-0.004,0.013-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.017,0.129-0.098,0.22-0.102,0.362c0.015,0.011,0.03,0.021,0.044,0.032c0.047-0.038,0.073-0.066,0.153-0.076\r\n\t\t\t\tc-0.006,0.025-0.013,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.032h0.025c0.029-0.023,0.031-0.041,0.083-0.044v0.057\r\n\t\t\t\tc0.08,0.073,0.094-0.079,0.153-0.121c0.184-0.132,0.273-0.031,0.305-0.343h0.025c0.085,0.062,0.089,0.235,0.197,0.267\r\n\t\t\t\tc0.026,0.18,0.051,0.36,0.076,0.54c0.047,0.164,0.151,0.309,0.203,0.451c0.053,0.144,0.03,0.29,0.025,0.432\r\n\t\t\t\tc0.019,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.051,0.038\r\n\t\t\t\tc-0.064,0.162-0.161,0.391-0.102,0.566c0.025-0.011,0.051-0.021,0.076-0.032c0.085,0.091,0.166,0.136,0.21,0.273\r\n\t\t\t\tc0.02,0.008,0.034,0.009,0.064,0c0.043,0.057,0.051,0.099,0.051,0.197c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc0.034,0.043,0.078,0.03,0.121,0.006c0.004,0.004,0.008,0.008,0.013,0.013c-0.018,0.139-0.008,0.3,0.044,0.445\r\n\t\t\t\tc0.025,0.047,0.051,0.093,0.076,0.14c0.009,0.069-0.024,0.13,0.013,0.191c0.04,0.034,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.022,0.022,0.056,0.031,0.088C55.358,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.07-0.013c-0.034,0.011-0.068,0.021-0.102,0.032c-0.004-0.002-0.008-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.013-0.004-0.026-0.008-0.038-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.034-0.068-0.051-0.102c-0.067,0.075-0.078,0.271-0.044,0.369\r\n\t\t\t\tc0.039,0.021,0.133,0.008,0.216,0.006c-0.015,0.019-0.03,0.038-0.044,0.057c0.004,0.013,0.008,0.025,0.013,0.038\r\n\t\t\t\tc0.014,0.023,0.042,0.036,0.07,0.045v0.019c-0.045-0.004-0.089-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.032,0.045v0.044\r\n\t\t\t\tc0.042-0.029,0.066-0.018,0.127-0.006c0.024,0.067,0.085,0.076,0.114,0.133c0.014,0.054-0.038,0.118-0.038,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.019,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.061,0.047-0.192,0.025-0.28,0.045\r\n\t\t\t\tc-0.314,0.07-0.748,0.1-0.858-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.052-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.017,0.015,0.019,0.017,0.025,0.044c0.006,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.006-0.03,0.013-0.059,0.019-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.056-0.128-0.19-0.036-0.242-0.108c-0.03-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.106-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.057-0.019\r\n\t\t\t\tc-0.05-0.07-0.077-0.16-0.14-0.216c-0.015-0.004-0.03-0.009-0.044-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.032,0.114h-0.006\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.032-0.019-0.075-0.01-0.089-0.045v-0.032c0.004-0.075,0.083-0.081,0.114-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.015,0.008,0.03,0.017,0.044,0.025c0.016-0.02,0.02-0.029,0.019-0.07c0.102-0.023,0.134-0.121,0.216-0.153\r\n\t\t\t\tc0.04-0.002,0.081-0.004,0.121-0.006c0.13-0.041,0.242-0.21,0.413-0.197c0.096,0.007,0.137,0.073,0.21,0.089\r\n\t\t\t\tc0.077,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.114,0.025,0.172,0.038c0.015,0.025,0.03,0.051,0.045,0.076\r\n\t\t\t\tc-0.017,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.083,0.33c0.004,0.058,0.07,0.083,0.114,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.138-0.013-0.275-0.025-0.413-0.038c-0.038,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102c-0.029,0.036-0.057,0.02-0.076,0.076c0.027,0.039,0.064,0.068,0.114,0.083\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.026c-0.061,0.044-0.214-0.025-0.337-0.019c-0.006,0.006-0.013,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.133,0.043,0.184,0.051c0.028,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.235,0.064c-0.034,0.064-0.07,0.143-0.095,0.203c0.023,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.027-0.072,0.011-0.226,0.032-0.305c0.087-0.015,0.173-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.015,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.042-0.024-0.083-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.025-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.051,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.368,0.016-0.324-0.225-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.025,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.063,0.004-0.119,0.023-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.124-0.633,0.191-0.826c-0.004-0.053-0.009-0.106-0.013-0.159c0.02-0.082,0.062-0.114,0.025-0.216\r\n\t\t\t\tc0.092-0.071,0.145-0.061,0.292-0.051c-0.006,0.076-0.013,0.152-0.019,0.229c0.058,0.001,0.08,0.024,0.121,0.032\r\n\t\t\t\tc0.078,0.014,0.107-0.054,0.191-0.006c0.038,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.111,1.104-0.189,1.65C57.688,35.667,57.663,35.644,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.058-0.107-0.06-0.14-0.133\r\n\t\t\t\tc-0.068-0.054-0.061-0.042-0.127,0.013c0.009,0.1,0.008,0.236-0.07,0.299c-0.044,0.036-0.08,0.04-0.102,0.102\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.038-0.004-0.057-0.006c-0.003,0.068,0.015,0.109,0.038,0.165\r\n\t\t\t\tc-0.004,0.011-0.008,0.021-0.013,0.032c-0.024,0.016-0.04,0.025-0.083,0.025c-0.002,0.004-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.003,0.044,0.026,0.059,0.045,0.102c-0.023,0.025-0.047,0.051-0.07,0.076c-0.039-0.004-0.04-0.009-0.051-0.038H41.85\r\n\t\t\t\tc-0.032,0.028-0.063,0.055-0.095,0.083c0.008,0.034,0.022,0.045,0.038,0.07c-0.013,0.009-0.025,0.017-0.038,0.026\r\n\t\t\t\tc-0.024,0.01-0.027-0.009-0.064-0.019c-0.047,0.029-0.093,0.059-0.14,0.089c0.004,0.025,0.009,0.051,0.013,0.076\r\n\t\t\t\tc-0.071,0.017-0.121-0.054-0.21-0.013c-0.017,0.019-0.034,0.038-0.051,0.057c-0.04,0.02-0.074-0.013-0.108-0.013\r\n\t\t\t\tc-0.025,0.019-0.051,0.038-0.076,0.057c-0.044,0.002-0.089,0.004-0.133,0.006c0,0.213-0.083,0.245-0.14,0.381\r\n\t\t\t\tc-0.025,0.1,0.069,0.325,0.121,0.388c-0.015,0.032-0.03,0.064-0.044,0.096c0.032,0.038,0.064,0.076,0.095,0.114\r\n\t\t\t\tc0.03,0.115-0.166,0.512-0.216,0.559c-0.025,0.009-0.051,0.017-0.076,0.025c-0.045,0.032-0.102,0.233-0.089,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.025,0.097-0.038,0.146c-0.031,0.144,0.06,0.157,0.083,0.229\r\n\t\t\t\tc0.016,0.051-0.006,0.092,0.019,0.127c0.083,0.119,0.262,0.084,0.343,0.21c0.137-0.008,0.17-0.09,0.286-0.121\r\n\t\t\t\tc0.07-0.009,0.14-0.017,0.21-0.026c0.132-0.081,0.205-0.497,0.261-0.674c0.15-0.485,0.301-0.97,0.451-1.455\r\n\t\t\t\tc0.028-0.095-0.011-0.189,0.019-0.299c0.026-0.093,0.124-0.146,0.146-0.254c-0.047-0.072-0.09-0.157-0.089-0.273\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.004,0.008-0.009,0.013-0.013c0.029,0.053,0.07,0.133,0.121,0.165\r\n\t\t\t\tc0.035-0.029,0.114-0.123,0.102-0.191c-0.027-0.053-0.055-0.106-0.083-0.159C42.622,41.831,42.634,41.517,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.142-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.017-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.017-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.009-0.034,0.013-0.051c-0.002-0.002-0.004-0.004-0.006-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.02-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.056-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.019,0.095c0.087,0.039,0.26,0.031,0.356,0.07V27.014z\r\n\t\t\t\t M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095c-0.036-0.095,0.072-0.224,0.102-0.292\r\n\t\t\t\tv-0.006c-0.058-0.014-0.12,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044c-0.091,0.081-0.209,0.007-0.254,0.152\r\n\t\t\t\tc0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z M21.217,10.482\r\n\t\t\t\tc0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.057\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089v-0.089h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006V20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.023-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.145-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.03-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.1,0.036-0.199,0.072-0.299,0.108c-0.059-0.006-0.119-0.013-0.178-0.019c0.011,0.023,0.012,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.108c0.048-0.056,0.064-0.206,0.095-0.267c-0.057-0.054-0.445-0.06-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.038,0.009,0.091,0.013,0.134\r\n\t\t\t\tc0.086,0.022,0.114-0.016,0.203-0.019c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.061-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.019c0.044,0.003,0.042,0.01,0.063,0.032c-0.012,0.031-0.012,0.05,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.013-0.013,0.019v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.081-0.008-0.157,0.032-0.216v-0.006h-0.038C11.059,37.905,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.083c-0.045,0.004-0.062,0.023-0.089,0.032c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.017-0.194-0.056-0.324-0.057c-0.027,0.004-0.055,0.008-0.083,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.025c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.145,0.095,0.21\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.128,0.082-0.41,0.037-0.572-0.013c-0.013,0.015-0.025,0.03-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.012,0.053-0.047,0.102-0.057\r\n\t\t\t\tc0.076,0.011,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.151,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.06,0.178-0.076\r\n\t\t\t\tc0.044-0.011,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.045,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.114\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.169,0.311,0.153\r\n\t\t\t\tc0.044-0.012,0.058-0.078,0.14-0.057c0.051,0.013,0.064,0.04,0.127,0.038c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc-0.073-0.11-0.33-0.158-0.515-0.153C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M31.446,19.655c0.015,0.03,0.03,0.059,0.044,0.089\r\n\t\t\t\tc0.057-0.013,0.103-0.074,0.133-0.115c0.012-0.009,0.004,0,0.013-0.013c-0.023-0.013-0.047-0.026-0.07-0.038\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.069-0.055,0.095-0.122,0.076-0.235c-0.03-0.002-0.059-0.004-0.089-0.006\r\n\t\t\t\tc-0.026,0.029-0.04,0.127-0.051,0.165c-0.058-0.027-0.089-0.049-0.108-0.114c-0.004-0.002-0.009-0.004-0.013-0.006\r\n\t\t\t\tc-0.078,0.099-0.18,0.095-0.076,0.267C31.324,19.671,31.398,19.659,31.446,19.655z M43.382,11.985\r\n\t\t\t\tc0.203,0.031,0.324,0.15,0.496,0.203c-0.004,0.021-0.009,0.042-0.013,0.064c-0.084,0.038-0.182,0.051-0.172,0.172\r\n\t\t\t\tc0.094,0.018,0.165,0.009,0.28,0.006c0.026,0.034,0.051,0.068,0.076,0.102c0.094,0.039,0.143-0.06,0.21-0.083\r\n\t\t\t\tc0.155,0.002,0.309,0.004,0.464,0.007c-0.006-0.127-0.177-0.162-0.254-0.223c-0.136-0.107-0.215-0.333-0.254-0.534\r\n\t\t\t\tc-0.085-0.43,0.254-0.283,0.292-0.597c-0.066-0.023-0.131-0.047-0.197-0.07c-0.172-0.022-0.357,0.059-0.477,0.089\r\n\t\t\t\tc-0.072,0.004-0.144,0.008-0.216,0.013c-0.088,0.044-0.135,0.159-0.235,0.203c-0.004,0.007-0.009,0.013-0.013,0.019\r\n\t\t\t\tc0.051,0.026,0.093,0.062,0.165,0.064c-0.037,0.109-0.134,0.278-0.241,0.311c-0.072,0.022-0.115-0.021-0.172-0.019\r\n\t\t\t\tc-0.049,0.061-0.104,0.114-0.07,0.229c0.019,0.025,0.038,0.051,0.057,0.076C43.251,12.115,43.276,11.969,43.382,11.985z\r\n\t\t\t\t M20.926,10.303c-0.046,0.008-0.091,0.016-0.137,0.024c-0.018,0.026-0.036,0.077-0.072,0.095\r\n\t\t\t\tc0.061,0.013,0.304-0.051,0.354-0.078C21.07,10.309,20.97,10.301,20.926,10.303z M31.37,7.524\r\n\t\t\t\tc0.061-0.032,0.123-0.064,0.184-0.095c0.036,0.055,0.072,0.11,0.108,0.165c-0.076,0.036-0.153,0.072-0.229,0.108\r\n\t\t\t\tc0.055,0.135,0.434,0.457,0.623,0.388c0.163-0.06,0.211-0.226,0.35-0.312c0.086,0.097,0.288,0.173,0.438,0.197v0.006\r\n\t\t\t\tc-0.178,0.189-0.512,0.185-0.769,0.299h-0.013c0.023,0.049,0.047,0.097,0.07,0.146c0.248-0.018,0.442-0.069,0.661-0.089\r\n\t\t\t\tc0.027,0.025,0.055,0.051,0.083,0.076c-0.102,0.131-0.323,0.152-0.559,0.146c-0.023,0.034-0.047,0.068-0.07,0.102\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.102,0.062,0.562,0.443,0.718,0.4c0.032-0.019,0.063-0.038,0.095-0.057\r\n\t\t\t\tc-0.001-0.177,0.066-0.321,0.159-0.407c0.028-0.029,0.124-0.04,0.172-0.044c0.038-0.081,0.076-0.161,0.114-0.242\r\n\t\t\t\tc0.058-0.144,0.054-0.343,0.178-0.419c0.093-0.021,0.187-0.043,0.28-0.064c0.053-0.026,0.106-0.051,0.159-0.076\r\n\t\t\t\tc-0.048-0.083-0.189-0.174-0.28-0.21c-0.082-0.032-0.163-0.021-0.229-0.063c-0.057-0.074-0.114-0.148-0.172-0.222\r\n\t\t\t\tc-0.078,0-0.117,0.083-0.172,0.127C33.238,7.389,33.219,7.38,33.2,7.372c-0.034-0.072,0.005-0.174,0.006-0.28\r\n\t\t\t\tc-0.021-0.015-0.042-0.03-0.064-0.045h-0.172c-0.066-0.021-0.112-0.079-0.21-0.089c-0.036,0.042-0.072,0.085-0.108,0.127\r\n\t\t\t\tc-0.04,0.109,0.108,0.294,0.127,0.4c-0.019,0.017-0.038,0.034-0.057,0.051c-0.108-0.025-0.306-0.287-0.35-0.381\r\n\t\t\t\tc-0.075-0.059-0.101-0.039-0.191,0c-0.015,0.076-0.03,0.153-0.044,0.229v0.013c-0.074-0.015-0.148-0.03-0.222-0.045\r\n\t\t\t\tc-0.036-0.055-0.041-0.146-0.038-0.242c-0.077-0.016-0.176,0.02-0.235,0.032c-0.047-0.004-0.093-0.008-0.14-0.013\r\n\t\t\t\tc-0.146,0.013-0.218,0.074-0.305,0.14C31.219,7.367,31.286,7.485,31.37,7.524z M34.414,7.117v0.006\r\n\t\t\t\tc-0.066,0.146-0.101,0.233-0.28,0.267v0.114c0.275,0.013,0.551,0.025,0.826,0.038c0.059-0.04,0.119-0.081,0.178-0.121\r\n\t\t\t\tc0.078-0.033,0.162-0.016,0.254-0.045c0.078-0.04,0.157-0.08,0.235-0.121c0.104-0.078,0.208-0.157,0.311-0.235\r\n\t\t\t\tc0.002-0.004,0.004-0.008,0.006-0.013c-0.023-0.038-0.047-0.076-0.07-0.114c-0.061-0.017-0.123-0.034-0.184-0.051\r\n\t\t\t\tc-0.119-0.023-0.251,0.029-0.375,0.026c-0.025-0.051-0.051-0.102-0.076-0.153c-0.03-0.011-0.059-0.021-0.089-0.032\r\n\t\t\t\tc-0.132,0.016-0.223,0.14-0.286,0.229h-0.108c-0.028-0.1-0.003-0.248,0.025-0.343c-0.136,0.061-0.143,0.232-0.267,0.292\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c-0.167-0.256-0.328-0.017-0.496-0.134c-0.059-0.07-0.119-0.14-0.178-0.21\r\n\t\t\t\tc-0.081,0.106-0.161,0.212-0.241,0.318c-0.087,0.062-0.151,0.069-0.197,0.172c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tC33.594,7.203,34.035,7.121,34.414,7.117z M20.993,9.697c0.035,0.033,0.134,0.07,0.225,0.035c0.034-0.013,0.049-0.034,0.076-0.05\r\n\t\t\t\tc0.019-0.02,0.038-0.04,0.057-0.061c-0.074-0.021-0.104-0.081-0.222-0.057C21.066,9.601,20.983,9.637,20.993,9.697z\r\n\t\t\t\t M21.388,8.988c-0.081,0.009-0.125-0.079-0.169-0.114c-0.024,0.041-0.114,0.079-0.126,0.107c0,0,0.086,0.119,0.094,0.127\r\n\t\t\t\tc0.011,0.01,0.028,0.019,0.044,0.023c0.039-0.003,0.22-0.108,0.242-0.129c0.013-0.013,0.03-0.035,0.009-0.052\r\n\t\t\t\tC21.451,8.925,21.406,8.976,21.388,8.988z M20.989,9.241c-0.031,0.049,0.059,0.128,0.12,0.118\r\n\t\t\t\tc0.061-0.054,0.045-0.074-0.037-0.096C21.044,9.256,21.017,9.248,20.989,9.241z M20.988,9.24c0,0,0.001,0,0.001,0\r\n\t\t\t\tc0.002-0.004-0.006-0.009-0.002-0.012C20.987,9.233,20.988,9.237,20.988,9.24z M30.588,18.905\r\n\t\t\t\tc0.119-0.015,0.252,0.008,0.413-0.006c0.016-0.051,0.02-0.072,0.064-0.095c-0.01-0.113-0.024-0.131,0.025-0.21\r\n\t\t\t\tc-0.011-0.004-0.021-0.008-0.032-0.013c-0.006,0.01-0.013,0.021-0.019,0.032c-0.055,0.015-0.11,0.03-0.165,0.044\r\n\t\t\t\tc-0.059,0.043-0.078,0.143-0.153,0.172c-0.076,0.008-0.153,0.017-0.229,0.025c-0.051,0.023-0.079,0.083-0.102,0.133\r\n\t\t\t\tc0.028,0.028,0.055,0.055,0.083,0.083C30.523,19.013,30.565,18.998,30.588,18.905z M10.002,26.709v0.006\r\n\t\t\t\tc0.013,0.019,0.025,0.038,0.038,0.057h0.027c-0.006-0.014-0.006-0.034-0.015-0.051C10.036,26.717,10.019,26.713,10.002,26.709z\r\n\t\t\t\t M42.956,34.189c-0.051-0.021-0.102-0.042-0.153-0.064c-0.12,0.085-0.214,0.171-0.388,0.21c-0.076,0.017-0.145-0.016-0.191-0.025\r\n\t\t\t\tc-0.086-0.017-0.139,0.054-0.197,0.07c-0.059-0.006-0.119-0.013-0.178-0.019h-0.013c-0.072,0.047-0.144,0.093-0.216,0.14\r\n\t\t\t\tc-0.099,0.036-0.13-0.059-0.242-0.038c-0.091,0.04-0.182,0.08-0.273,0.121h-0.178c-0.091-0.099-0.215-0.211-0.273-0.337\r\n\t\t\t\tc-0.054-0.014-0.128-0.003-0.191-0.013c-0.004-0.002-0.009-0.004-0.013-0.006v-0.013c0.069-0.033,0.208-0.09,0.261-0.146\r\n\t\t\t\tc-0.006-0.169-0.233-0.211-0.33-0.305c-0.017-0.016-0.033-0.139-0.089-0.191c-0.026-0.024-0.075-0.007-0.108-0.025\r\n\t\t\t\tc-0.089-0.098-0.178-0.195-0.267-0.292c-0.035-0.016-0.076-0.009-0.127-0.006c-0.039-0.054-0.074-0.138-0.133-0.172\r\n\t\t\t\tc-0.019,0.025-0.013,0.083-0.019,0.108c-0.004,0.002-0.008,0.004-0.013,0.007c-0.182-0.153-0.224-0.622-0.331-0.864\r\n\t\t\t\tc-0.049-0.112-0.295-0.163-0.362-0.254c-0.106-0.144-0.038-0.516-0.089-0.724c-0.033-0.135-0.153-0.35-0.254-0.426\r\n\t\t\t\tc-0.05-0.038-0.123-0.051-0.159-0.102c-0.045-0.062-0.051-0.162-0.076-0.242c0.023-0.021,0.047-0.042,0.07-0.064\r\n\t\t\t\tc-0.051-0.051-0.102-0.102-0.153-0.152c-0.139-0.209-0.24-0.462-0.369-0.667c-0.055-0.144-0.11-0.288-0.165-0.432\r\n\t\t\t\tc-0.095-0.171-0.257-0.287-0.299-0.521c0.033-0.045,0.038-0.066,0.095-0.089c0.08,0.245,0.223,0.49,0.4,0.642\r\n\t\t\t\tc0.019,0.021,0.047,0.019,0.076,0.013c0.08-0.159,0.057-0.398,0.184-0.508c-0.074-0.191-0.148-0.381-0.222-0.572\r\n\t\t\t\tc-0.122,0.015-0.164,0.113-0.337,0.019c-0.112,0.08-0.158,0.011-0.28,0.032c-0.042-0.043-0.076-0.051-0.095-0.121\r\n\t\t\t\tc-0.215-0.044-0.454,0.008-0.604,0.108c-0.04,0.032-0.081,0.063-0.121,0.095c-0.079,0.017-0.155-0.048-0.21-0.064\r\n\t\t\t\tc-0.061-0.006-0.123-0.013-0.184-0.019c-0.013-0.017-0.025-0.034-0.038-0.051c-0.148-0.032-0.297-0.064-0.445-0.095h-0.318\r\n\t\t\t\tc-0.058-0.026-0.045-0.125-0.108-0.146h-0.146c-0.077-0.012-0.25-0.041-0.324-0.07c-0.07-0.038-0.033-0.128-0.133-0.172\r\n\t\t\t\tc-0.258-0.113-0.681,0.039-0.782,0.21c-0.137,0.231,0.167,0.358-0.146,0.527c-0.038,0.02-0.088,0.07-0.146,0.064\r\n\t\t\t\tc-0.153-0.018-0.266-0.184-0.4-0.235c-0.132-0.05-0.433-0.054-0.54-0.114c-0.119-0.068-0.137-0.311-0.241-0.35\r\n\t\t\t\tc-0.058-0.021-0.105-0.003-0.152-0.025c-0.028-0.025-0.055-0.051-0.083-0.076c-0.066-0.013-0.131-0.025-0.197-0.038\r\n\t\t\t\tc-0.095,0.006-0.191,0.013-0.286,0.019c-0.129-0.055-0.258-0.11-0.388-0.165c-0.009-0.034-0.017-0.068-0.025-0.102\r\n\t\t\t\tc-0.061-0.005-0.069,0.013-0.121,0.025c-0.082-0.04-0.182-0.111-0.203-0.21c0.059-0.065,0.326-0.286,0.324-0.369\r\n\t\t\t\tc-0.011-0.042-0.021-0.085-0.032-0.127c-0.337-0.192,0.008-0.272,0.006-0.483c-0.064,0.038-0.127,0.076-0.191,0.115\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c-0.018-0.04-0.036-0.072-0.038-0.127c-0.047-0.021-0.093-0.042-0.14-0.064\r\n\t\t\t\tc-0.03,0.004-0.059,0.009-0.089,0.013c-0.095,0.036-0.266,0.212-0.432,0.165c-0.024-0.007-0.062-0.069-0.14-0.096\r\n\t\t\t\tc-0.063,0.009-0.084,0.051-0.133,0.076c-0.076-0.012-0.113-0.06-0.178-0.083c-0.078,0.055-0.155,0.115-0.267,0.14\r\n\t\t\t\tc-0.173,0.039-0.303-0.115-0.502-0.063c-0.038,0.021-0.076,0.042-0.114,0.063c-0.073,0.026-0.104-0.027-0.159-0.019\r\n\t\t\t\tc-0.047,0.021-0.093,0.042-0.14,0.064c-0.145,0.03-0.312-0.005-0.432,0.044c-0.114,0.047-0.181,0.142-0.267,0.216\r\n\t\t\t\tc-0.046-0.004-0.065-0.015-0.089-0.038c-0.039,0.007-0.209,0.066-0.242,0.089c-0.08,0.057-0.073,0.137-0.191,0.172\r\n\t\t\t\tc-0.13,0.038-0.283-0.002-0.318-0.089c-0.007-0.002-0.345,0.103-0.477,0.064c-0.138-0.041-0.19-0.153-0.28-0.242\r\n\t\t\t\tc-0.032,0.015-0.064,0.03-0.095,0.045c-0.071,0.054-0.17,0.43-0.248,0.534c-0.114,0.152-0.324,0.164-0.483,0.273\r\n\t\t\t\tc-0.054,0.037-0.227,0.186-0.248,0.241c-0.022,0.058,0.009,0.132-0.019,0.191c-0.035,0.073-0.121,0.127-0.153,0.21\r\n\t\t\t\tc-0.075,0.199,0.155,0.303-0.006,0.54c-0.101,0.149-0.406,0.41-0.578,0.483c-0.089,0.038-0.211,0.03-0.305,0.076\r\n\t\t\t\tc-0.108,0.053-0.13,0.288-0.203,0.381c-0.059,0.074-0.188,0.088-0.242,0.165c-0.056,0.081-0.105,0.204-0.127,0.311\r\n\t\t\t\tc-0.002,0.044-0.004,0.089-0.006,0.134c-0.04,0.101-0.18,0.151-0.242,0.235c-0.063,0.146-0.127,0.292-0.191,0.438\r\n\t\t\t\tc-0.047,0.051-0.093,0.102-0.14,0.153c-0.056,0.084-0.082,0.256-0.064,0.388c0.015-0.017,0.03-0.034,0.044-0.051\r\n\t\t\t\tc0.199,0.016,0.209,0.339,0.114,0.477c0.233,0.184,0.095,0.554,0.025,0.788c-0.008,0.068-0.017,0.136-0.025,0.203\r\n\t\t\t\tc-0.037,0.135-0.145,0.317-0.273,0.362c-0.002,0.004-0.004,0.008-0.006,0.013c0.181,0.076,0.181,0.271,0.267,0.311\r\n\t\t\t\tc0.01,0.02,0.013,0.041,0.013,0.076c-0.019,0.004-0.038,0.008-0.057,0.013c-0.049,0.069-0.01,0.177-0.032,0.261\r\n\t\t\t\tc0.08,0.135,0.04,0.036,0.14,0.102c0.004,0.015,0.008,0.03,0.013,0.044c0.042,0.025,0.085,0.051,0.127,0.076\r\n\t\t\t\tc0.063-0.012,0.153-0.052,0.203,0.006c-0.039,0.048-0.093,0.079-0.076,0.165c0.026,0.017,0.08,0.022,0.102,0.044\r\n\t\t\t\tc0.015,0.02,0.01,0.028,0.006,0.057c0.034,0.023,0.057,0.034,0.121,0.032c0.011,0.033,0.011,0.06,0,0.095\r\n\t\t\t\tc0.065,0.069,0.166,0.135,0.267,0.165c0.006,0.032,0.013,0.063,0.019,0.095c0.033,0.061,0.118,0.081,0.14,0.159v0.095\r\n\t\t\t\tc0.014,0.018,0.035,0.022,0.063,0.025c0.002,0.008,0.004,0.017,0.006,0.025c-0.023,0.019-0.047,0.038-0.07,0.057h-0.013\r\n\t\t\t\tc0.028,0.094,0.156,0.186,0.261,0.203c0.018,0.034,0.013,0.047,0.006,0.095c0.142,0.043,0.215,0.149,0.324,0.222\r\n\t\t\t\tc0.08,0.042,0.161,0.085,0.242,0.127c0.17,0.12,0.278,0.261,0.477,0.362c0.062,0.032,0.311,0.192,0.388,0.172\r\n\t\t\t\tc0.102-0.053,0.203-0.106,0.305-0.159c0.106-0.029,0.212-0.059,0.318-0.089c0.092-0.027,0.292-0.048,0.407-0.025\r\n\t\t\t\tc0.05,0.01,0.145,0.061,0.21,0.038c0.011-0.013,0.021-0.025,0.032-0.038c0.041,0.005,0.246,0.134,0.286,0.165\r\n\t\t\t\tc0.206-0.093,0.411-0.186,0.616-0.28c0.087-0.008,0.174-0.017,0.261-0.025c0.052-0.039,0.054-0.108,0.127-0.133\r\n\t\t\t\tc0.214-0.019,0.428-0.038,0.642-0.057c0.032-0.012,0.039-0.042,0.083-0.057c0.077,0.015,0.286,0.147,0.331,0.203\r\n\t\t\t\tc0.015,0.025,0.03,0.051,0.044,0.076c0.023,0.002,0.047,0.004,0.07,0.006c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.013,0.032-0.025,0.064-0.038,0.095c0.025,0.209,0.348,0.363,0.534,0.197c0.101,0.017,0.232,0.039,0.343-0.006\r\n\t\t\t\tc0.002-0.027-0.002-0.037-0.013-0.063c0.025-0.016,0.147,0.013,0.178,0.051c0.069,0.124-0.004,0.172,0.222,0.165\r\n\t\t\t\tc0.008,0.013,0.017,0.026,0.025,0.038c0.004,0.004,0.008,0.008,0.013,0.013c-0.019,0.015-0.038,0.03-0.057,0.044\r\n\t\t\t\tc0.021,0.08,0.085,0.147,0.102,0.242c-0.011,0.042-0.021,0.085-0.032,0.127c0.009,0.032,0.017,0.064,0.025,0.095\r\n\t\t\t\tc-0.024,0.1-0.086,0.2-0.153,0.261c-0.002,0.006-0.004,0.013-0.006,0.019c0.025,0.004,0.051,0.008,0.076,0.013\r\n\t\t\t\tc0.003,0.084-0.012,0.146-0.076,0.165c0.049,0.042,0.097,0.085,0.146,0.127v0.006c-0.038-0.004-0.076-0.009-0.114-0.013\r\n\t\t\t\tc-0.031,0.138-0.072,0.242-0.191,0.292c0.013,0.028,0.052,0.116,0.076,0.14c0.036,0.035,0.074,0.015,0.114,0.07\r\n\t\t\t\tc-0.021,0.015-0.042,0.03-0.063,0.045c-0.002,0.004-0.004,0.008-0.006,0.013c0.042,0.062,0.085,0.123,0.127,0.184\r\n\t\t\t\tc0.053,0.027,0.074,0.003,0.108,0.045c-0.011,0.015-0.021,0.03-0.032,0.044c0.089,0.058,0.143,0.122,0.203,0.21\r\n\t\t\t\tc0.112,0.104,0.224,0.208,0.337,0.311c0.032,0.039,0.115,0.204,0.133,0.248c0.029,0.068-0.018,0.161,0.038,0.261\r\n\t\t\t\tc0.045,0.064,0.089,0.127,0.133,0.191c0.013,0.061,0.025,0.123,0.038,0.184c0.057,0.134,0.17,0.186,0.14,0.388\r\n\t\t\t\tc-0.243,0.109,0.046,0.36,0.089,0.489c0.008,0.1,0.017,0.199,0.025,0.299c-0.019,0.11-0.066,0.285-0.146,0.337\r\n\t\t\t\tc-0.03,0.01-0.059,0.021-0.089,0.032c-0.017,0.04-0.034,0.081-0.051,0.121c-0.03,0.032-0.059,0.064-0.089,0.096\r\n\t\t\t\tc-0.094,0.222-0.042,0.57-0.222,0.705c0,0.202-0.037,0.471,0.013,0.648c0.038,0.135,0.15,0.217,0.216,0.324\r\n\t\t\t\tc0.108,0.216,0.216,0.432,0.324,0.648c0.075,0.146,0.371,0.404,0.203,0.572c0.03,0.14,0.059,0.28,0.089,0.419\r\n\t\t\t\tc0.023,0.055,0.047,0.11,0.07,0.165c0.02,0.082-0.031,0.143-0.025,0.203c0.008,0.08,0.071,0.147,0.089,0.21\r\n\t\t\t\tc0.014,0.047-0.021,0.073-0.019,0.102c0.034,0.104,0.068,0.208,0.102,0.311c0.117,0.131,0.233,0.263,0.349,0.394\r\n\t\t\t\tc0.12,0.189,0.16,0.433,0.273,0.635c0.1,0.178,0.271,0.36,0.203,0.654c-0.033,0.008-0.077,0-0.095,0.025\r\n\t\t\t\tc-0.025,0.032,0.123,0.23,0.159,0.286c-0.017,0.049-0.034,0.098-0.051,0.146c0.011,0.011,0.021,0.021,0.032,0.032\r\n\t\t\t\tc0.006,0.002,0.013,0.004,0.019,0.006c0.006-0.015,0.013-0.03,0.019-0.045c0.017-0.008,0.022-0.011,0.051-0.013\r\n\t\t\t\tc0.013,0.023,0.025,0.047,0.038,0.07c0.027-0.001,0.052-0.007,0.102-0.006c0.021,0.029,0.022,0.055,0.038,0.095\r\n\t\t\t\tc0.024,0.042,0.115,0.075,0.165,0.089c0.06-0.046,0.096-0.122,0.178-0.146c0.115-0.035,0.251,0.044,0.356-0.006\r\n\t\t\t\tc0.032-0.03,0.063-0.059,0.095-0.089c0.15-0.071,0.214,0,0.331,0c0.034-0.019,0.068-0.038,0.102-0.057\r\n\t\t\t\tc0.122-0.035,0.234,0.073,0.318,0.102c0.04-0.031,0.07-0.055,0.095-0.102c0.057,0.013,0.114,0.025,0.172,0.038\r\n\t\t\t\tc0.017-0.018,0.02-0.053,0.032-0.076c0.05-0.048,0.322-0.017,0.4-0.07c0.083-0.072,0.165-0.144,0.248-0.216\r\n\t\t\t\tc0.416-0.327,0.721-0.688,1.017-1.138c0.074-0.113,0.264-0.191,0.305-0.299c0.02-0.052-0.028-0.122-0.019-0.146\r\n\t\t\t\tc0.016-0.044,0.065-0.032,0.089-0.064c0.071-0.091,0.109-0.35,0.089-0.496c-0.038-0.015-0.078-0.04-0.095-0.076\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.078-0.091,0.132-0.175,0.242-0.235c0.244-0.134,0.525-0.121,0.635-0.388\r\n\t\t\t\tc-0.009-0.061-0.052-0.036-0.064-0.07c0.002-0.006,0.004-0.013,0.006-0.019c0.013-0.032,0.025-0.064,0.038-0.095\r\n\t\t\t\tc0.03-0.123,0.023-0.264,0.019-0.388c-0.028,0.01-0.035,0.018-0.076,0.019c-0.039-0.124-0.087-0.274-0.044-0.375\r\n\t\t\t\tc-0.006-0.075-0.062-0.112-0.114-0.14v-0.203c0.119-0.087,0.237-0.174,0.356-0.261c0.145-0.122,0.233-0.305,0.4-0.407\r\n\t\t\t\tc0.203-0.123,0.451-0.162,0.642-0.292c0.137-0.094,0.224-0.268,0.331-0.394c0-0.028-0.009-0.039-0.019-0.07\r\n\t\t\t\tc0.036-0.047,0.068-0.081,0.095-0.14c-0.002-0.011-0.004-0.021-0.006-0.032c-0.023-0.011-0.047-0.021-0.07-0.032\r\n\t\t\t\tc-0.02-0.163,0.012-0.337-0.07-0.432c0.003-0.034,0.034-0.063,0.044-0.108c0.026-0.113-0.041-0.294-0.057-0.394\r\n\t\t\t\tc0.03-0.055,0.059-0.11,0.089-0.165c-0.065-0.14-0.183-0.157-0.267-0.267c-0.083-0.108-0.127-0.393-0.07-0.553\r\n\t\t\t\tc-0.018-0.028-0.043-0.033-0.064-0.057c0.029-0.062,0.083-0.148,0.089-0.216c-0.057-0.071-0.161-0.126-0.197-0.216\r\n\t\t\t\tc-0.037-0.095,0.061-0.407,0.102-0.451c0.024-0.026,0.068-0.021,0.089-0.051c0.047-0.068,0.006-0.104,0.025-0.165\r\n\t\t\t\tc0.042-0.137,0.172-0.143,0.184-0.368c0.096-0.053,0.187-0.052,0.191-0.203c0.085,0.016,0.124-0.022,0.191-0.051\r\n\t\t\t\tc0.024-0.036,0.026-0.054,0.006-0.095c0.208-0.235,0.415-0.47,0.623-0.705c0.229-0.185,0.515-0.325,0.744-0.508\r\n\t\t\t\tc0.085-0.104,0.169-0.208,0.254-0.311c0.168-0.215,0.419-0.422,0.527-0.686c0.011-0.049,0.021-0.098,0.032-0.146\r\n\t\t\t\tc0.074-0.119,0.148-0.237,0.222-0.356c-0.002-0.028-0.004-0.055-0.006-0.083c0.042-0.04,0.085-0.081,0.127-0.121\r\n\t\t\t\tc0.055-0.098,0.11-0.195,0.165-0.292c0.006-0.087,0.013-0.174,0.019-0.261c0.014-0.04,0.079-0.07,0.076-0.127\r\n\t\t\t\tc-0.002-0.045-0.037-0.108-0.019-0.172c0.017-0.04,0.034-0.081,0.051-0.121C42.96,34.201,42.958,34.195,42.956,34.189z\r\n\t\t\t\t M51.688,35.155c-0.032-0.185-0.128-0.278-0.28-0.375c0.018,0.077-0.003,0.113-0.025,0.191c-0.034,0.026-0.04,0.042-0.095,0.025\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.044c0.015,0.017,0.03,0.034,0.044,0.051c-0.029,0.063-0.008,0.077,0.006,0.14v0.318\r\n\t\t\t\tc0.023,0.101,0.073,0.267,0.146,0.324c0.208,0.044,0.476-0.139,0.451-0.337c-0.011-0.089-0.093-0.163-0.127-0.235\r\n\t\t\t\tC51.76,35.226,51.767,35.185,51.688,35.155z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c17.673,0,32-14.327,32-32\r\n\t\t\t\tC64,14.327,49.673,0,32,0z M50.505,13.747c0.043,0.044,0.081,0.093,0.124,0.137c-0.003,0.02-0.006,0.039-0.008,0.059v0.006\r\n\t\t\t\tc0.027,0.007,0.053,0.01,0.08,0.013c0.048,0.049,0.092,0.103,0.139,0.153c-0.13,0.026-0.317,0.022-0.352-0.084\r\n\t\t\t\tC50.47,14.004,50.497,13.865,50.505,13.747z M48.568,14.508c0.038,0.017,0.076,0.034,0.114,0.051\r\n\t\t\t\tc0.07-0.025,0.14-0.051,0.21-0.076c-0.013-0.036-0.025-0.072-0.038-0.108c0.033-0.077,0.142-0.097,0.203-0.146\r\n\t\t\t\tc0.083-0.066,0.227-0.183,0.267-0.286c0.015-0.059,0.03-0.119,0.044-0.178c0.022-0.052,0.06-0.069,0.064-0.146\r\n\t\t\t\tc-0.099-0.13-0.202-0.041-0.254-0.292c0.002-0.127,0.004-0.254,0.006-0.381c-0.008-0.074-0.017-0.148-0.025-0.222\r\n\t\t\t\tc0.032-0.042,0.064-0.085,0.095-0.127c0.001-0.002-0.001-0.005,0-0.008c0.099,0.088,0.195,0.177,0.293,0.266\r\n\t\t\t\tc-0.012,0.031-0.036,0.06-0.038,0.092c-0.006,0.103,0.07,0.19,0.07,0.324c0.102-0.002,0.239,0.039,0.311,0.025\r\n\t\t\t\tc0.034-0.012,0.069-0.024,0.103-0.036c0.075,0.072,0.157,0.137,0.232,0.211c-0.214-0.04-0.47,0.008-0.5,0.206\r\n\t\t\t\tc0.056,0.099,0.113,0.168,0.108,0.318c-0.042,0.053-0.085,0.106-0.127,0.159c-0.034,0.021-0.068,0.042-0.102,0.064\r\n\t\t\t\tc-0.044,0.061-0.038,0.157-0.095,0.203c-0.14,0.113-0.327,0.134-0.407,0.311c-0.085,0.039-0.185,0.002-0.261-0.013\r\n\t\t\t\tc-0.053,0.002-0.106,0.004-0.159,0.006c-0.219-0.032-0.424-0.055-0.502-0.229C48.308,14.462,48.449,14.461,48.568,14.508z\r\n\t\t\t\t M14.404,12.899c-0.002,0.011-0.006,0.023,0.013,0.034c0.011,0.006,0.027,0.004,0.044,0.005c0.046,0.003,0.104,0.019,0.122,0.05\r\n\t\t\t\tc-0.03,0.071-0.177,0-0.221-0.006c0,0.003,0,0.006,0,0.008c-0.005,0-0.011,0-0.016,0c-0.003,0.077,0.276,0.05,0.304,0.123\r\n\t\t\t\tc-0.032,0.036-0.081,0.019-0.141,0.035c-0.004,0.062,0.16,0.026,0.146,0.083c0,0.002-0.001,0.003-0.001,0.005\r\n\t\t\t\tc-0.043,0.013-0.078-0.002-0.117,0.012c-0.004,0.003-0.007,0.006-0.01,0.009c0,0.003,0,0.006,0,0.008\r\n\t\t\t\tc0.031,0.019,0.072,0.042,0.132,0.023c0.017-0.006,0.036-0.014,0.054-0.012c0.006,0.002,0.012,0.003,0.017,0.005\r\n\t\t\t\tc0.003,0.02-0.019,0.063-0.05,0.071c-0.034,0.009-0.199-0.014-0.228-0.021c-0.059-0.015-0.101-0.05-0.147-0.078\r\n\t\t\t\tc-0.04-0.024-0.124-0.06-0.197-0.085C14.204,13.077,14.305,12.99,14.404,12.899z M13.524,13.715\r\n\t\t\t\tc0.019,0.012,0.039,0.022,0.052,0.039c-0.03-0.002-0.064,0.005-0.097,0.01C13.495,13.749,13.509,13.731,13.524,13.715z\r\n\t\t\t\t M7.943,27.904c0.017-0.004,0.034-0.008,0.051-0.013c-0.017,0.015-0.034,0.03-0.051,0.045\r\n\t\t\t\tC7.945,27.925,7.941,27.918,7.943,27.904z M7.499,23.367c-0.001,0.007,0,0.011-0.001,0.018c-0.002-0.002-0.002-0.004-0.004-0.006\r\n\t\t\t\tC7.496,23.376,7.497,23.372,7.499,23.367z M7.676,37.665c-0.049,0.065-0.234,0.104-0.337,0.051\r\n\t\t\t\tc-0.044,0.033-0.061,0.065-0.057,0.146c-0.015,0.013-0.03,0.025-0.044,0.038c-0.012-0.052-0.021-0.069-0.07-0.083\r\n\t\t\t\tc-0.033-0.007-0.066,0.023-0.095,0.038c-0.203,0.107-0.124,0.25-0.191,0.438c-0.026,0.005-0.052,0.01-0.079,0.015\r\n\t\t\t\tc-0.076-0.302-0.168-0.598-0.232-0.904c0.011,0.001,0.019,0.005,0.032,0.006c0.029,0.082,0.054,0.128,0.146,0.146\r\n\t\t\t\tc0.004-0.028,0.009-0.055,0.013-0.083h0.006c0.023,0.048,0.076,0.109,0.064,0.172c0.006,0.006,0.013,0.013,0.019,0.019\r\n\t\t\t\tc0.114,0.02,0.144-0.047,0.248-0.057c-0.01-0.111-0.095-0.121-0.133-0.203c0.039-0.058,0.138-0.099,0.21-0.121\r\n\t\t\t\tc-0.003-0.04-0.005-0.057,0.006-0.089c0.198-0.063,0.318-0.017,0.375,0.14c0.045,0.008,0.076-0.016,0.108-0.038\r\n\t\t\t\tc-0.001,0.049,0.005,0.067,0.038,0.083c0.002,0.004,0.004,0.009,0.006,0.013c-0.061-0.008-0.097-0.021-0.121,0.032\r\n\t\t\t\tC7.564,37.5,7.647,37.606,7.676,37.665z M32,58c-7.083,0-13.497-2.841-18.187-7.435c0.051-0.052,0.122-0.09,0.155-0.153\r\n\t\t\t\tc0.019-0.078,0.038-0.157,0.057-0.235v-0.013c0.049,0.022,0.108,0.044,0.172,0.019h0.006c0.013,0.192-0.204,0.292-0.248,0.483\r\n\t\t\t\tc0.103-0.092,0.237-0.221,0.299-0.349c0.051-0.121,0.102-0.242,0.153-0.362c0.174-0.277,0.481-0.299,0.394-0.852\r\n\t\t\t\tc-0.012-0.077-0.036-0.114-0.057-0.172c0.045-0.054,0.132-0.205,0.019-0.254v-0.038c0.146,0.013,0.159-0.073,0.235-0.14\r\n\t\t\t\tc0.08-0.07,0.491-0.363,0.585-0.381c0.051-0.01,0.091,0.021,0.127,0.032c0.03-0.036,0.059-0.072,0.089-0.108\r\n\t\t\t\tc0.086-0.051,0.144-0.034,0.165-0.153c0.094-0.012,0.207-0.008,0.28,0.006c0.161,0.031,0.334-0.013,0.483-0.025\r\n\t\t\t\tc-0.005-0.182,0.137-0.241,0.292-0.254c-0.009-0.051-0.017-0.102-0.025-0.153c0.017-0.123,0.117-0.202,0.172-0.292\r\n\t\t\t\tc0.034-0.07,0.068-0.14,0.102-0.21c0.032-0.046,0.105-0.072,0.121-0.133c-0.006-0.062-0.013-0.123-0.019-0.184\r\n\t\t\t\tc-0.03-0.169,0.065-0.288,0.184-0.331c0-0.048-0.035-0.138-0.019-0.222c0.021-0.107,0.097-0.243,0.076-0.369\r\n\t\t\t\tc-0.017-0.165-0.034-0.331-0.051-0.496c0.028-0.172,0.093-0.289,0.095-0.464c0.015,0.002,0.03,0.004,0.044,0.006\r\n\t\t\t\tc0.017,0.034,0.034,0.068,0.051,0.102h0.019c0.113-0.084,0.241-0.308,0.292-0.445c0.031-0.081,0.007-0.126,0.057-0.178\r\n\t\t\t\tc0.047-0.021,0.093-0.042,0.14-0.064c0.273-0.213,0.461-0.44,0.534-0.858c0.027-0.157-0.139-0.732-0.216-0.756\r\n\t\t\t\tc-0.161-0.05-0.338,0.008-0.458-0.07c-0.256-0.166-0.436-0.435-0.731-0.566c-0.171-0.076-0.287,0.017-0.451-0.013\r\n\t\t\t\tc-0.1-0.015-0.199-0.03-0.299-0.045c-0.086-0.023-0.18-0.133-0.286-0.121c-0.154,0.018-0.289,0.139-0.394,0.21\r\n\t\t\t\tc-0.049-0.2,0.024-0.122,0.044-0.242c0.013-0.077-0.114-0.195-0.184-0.203c-0.017,0.017-0.034,0.034-0.051,0.051h-0.025\r\n\t\t\t\tc-0.054-0.172-0.227-0.156-0.394-0.216c-0.065-0.023-0.106-0.068-0.159-0.102c-0.052,0.007-0.15,0.015-0.216,0.032\r\n\t\t\t\tc-0.072,0.028-0.08,0.13-0.121,0.191c-0.069,0.101-0.227,0.129-0.28,0.248c-0.004,0.002-0.008,0.004-0.013,0.006\r\n\t\t\t\tc0-0.07,0.012-0.1,0.032-0.146c-0.111,0.023-0.259,0.048-0.394,0.026c-0.032-0.076-0.064-0.153-0.095-0.229\r\n\t\t\t\tc-0.088,0.024-0.202,0.166-0.318,0.121c-0.006-0.004-0.013-0.008-0.019-0.013c0.085-0.065,0.102-0.2,0.159-0.292\r\n\t\t\t\tc0.065-0.105,0.205-0.137,0.28-0.229c0.067-0.082,0.092-0.211,0.197-0.254c0.034-0.054,0.016-0.107-0.006-0.165\r\n\t\t\t\tc-0.262-0.036-0.276-0.356-0.343-0.578c-0.021-0.068-0.016-0.143-0.076-0.172c-0.031-0.005-0.044,0.032-0.076,0.025\r\n\t\t\t\tc-0.015-0.003-0.319-0.315-0.4-0.356c-0.11-0.036-0.22-0.072-0.331-0.108c-0.09-0.035-0.342-0.112-0.489-0.051\r\n\t\t\t\tc-0.016,0.014-0.018,0.027-0.019,0.057c-0.095-0.021-0.191-0.042-0.286-0.064h-0.006c-0.015,0.015-0.03,0.03-0.044,0.045\r\n\t\t\t\tc-0.061-0.12-0.214-0.314-0.388-0.292c-0.011,0.021-0.021,0.042-0.032,0.063v0.013c-0.013-0.091-0.026-0.182-0.038-0.273\r\n\t\t\t\tc-0.074-0.125-0.313-0.283-0.47-0.318c-0.084-0.018-0.176,0.005-0.241,0.019c-0.066-0.004-0.131-0.008-0.197-0.013v-0.006\r\n\t\t\t\tc0.187-0.058,0.138-0.167,0.273-0.222c0.002-0.004,0.004-0.008,0.006-0.013c-0.051-0.035-0.122-0.045-0.178-0.083\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c-0.045-0.029-0.132-0.021-0.172-0.045c-0.027,0.019-0.038,0.036-0.045,0.076\r\n\t\t\t\tc-0.004,0.002-0.008,0.004-0.013,0.006c-0.012-0.113-0.097-0.154-0.184-0.191V37.97c0.059,0.002,0.119,0.004,0.178,0.006\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.009,0.008-0.017,0.013-0.025c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.129-0.028-0.42-0.039-0.54,0.019c-0.075,0.037-0.117,0.126-0.21,0.146c-0.261,0.058-0.335-0.149-0.496-0.159\r\n\t\t\t\tc-0.136-0.008-0.364,0.083-0.483,0.025c-0.058-0.029-0.044-0.057-0.07-0.121c-0.05-0.125-0.201-0.158-0.375-0.159\r\n\t\t\t\tc-0.033-0.051-0.073-0.137-0.089-0.197c-0.053-0.012-0.097,0.016-0.114,0.064c0.015,0.025,0.03,0.051,0.044,0.076\r\n\t\t\t\tc0.028-0.002,0.055-0.004,0.083-0.006c0.013,0.011,0.025,0.021,0.038,0.032c-0.016,0.063-0.425,0.178-0.515,0.21\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.008,0.036-0.018,0.036-0.038,0.057c0.053,0.026,0.197,0.299,0.152,0.394\r\n\t\t\t\tc-0.025,0.044-0.094,0.072-0.152,0.083c-0.065-0.049-0.097-0.164-0.146-0.229c0.015-0.1,0.07-0.186,0.121-0.254\r\n\t\t\t\tc-0.012-0.102-0.056-0.167-0.089-0.254c0.041-0.061,0.144-0.086,0.241-0.089c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.013-0.064-0.059-0.101-0.114-0.121c-0.156-0.06-0.195,0.139-0.273,0.184c-0.04,0.013-0.081,0.025-0.121,0.038\r\n\t\t\t\tc0.019-0.036,0.046-0.051,0.032-0.102c0.027,0.011,0.029,0.016,0.038,0.045h0.006c0.052-0.033,0.079-0.079,0.121-0.121\r\n\t\t\t\tc-0.08-0.166-0.161-0.342-0.337-0.413c-0.058-0.023-0.134,0.003-0.203-0.026c-0.026-0.01-0.121-0.049-0.159-0.038\r\n\t\t\t\tc-0.047,0.032-0.093,0.064-0.14,0.095c-0.03,0.018-0.063,0.012-0.102,0.026c-0.12,0.043-0.172,0.128-0.331,0.095\r\n\t\t\t\tc-0.05-0.063-0.09-0.028-0.135-0.022c-0.26-1.288-0.395-2.619-0.457-3.968c0.016-0.002,0.033-0.001,0.046-0.007\r\n\t\t\t\tc0.167-0.078,0.167-0.194,0.47-0.121c0.006,0.011,0.013,0.021,0.019,0.032v0.006c-0.047,0.013-0.093,0.025-0.14,0.038\r\n\t\t\t\tc0.108,0.084,0.261,0.035,0.419,0.083c0.114,0.034,0.208,0.114,0.337,0.146c0.067,0.017,0.202-0.02,0.261,0.019\r\n\t\t\t\tc0.043,0.025,0.066,0.123,0.07,0.184c0.099,0.06,0.295,0.06,0.388,0.127c-0.006,0.065-0.053,0.106-0.102,0.127\r\n\t\t\t\tc-0.019,0.021-0.038,0.042-0.057,0.063v0.006c0.141,0.006,0.266-0.057,0.394-0.038c0.097,0.011,0.195,0.021,0.292,0.032\r\n\t\t\t\tc0.105-0.019,0.2-0.058,0.324-0.07c0.002-0.004,0.004-0.008,0.006-0.013c-0.124-0.092-0.202-0.151-0.432-0.146\r\n\t\t\t\tc-0.006-0.006-0.013-0.013-0.019-0.019c0.013-0.028,0.025-0.055,0.038-0.083c-0.079-0.081-0.36-0.089-0.483-0.14\r\n\t\t\t\tc-0.04-0.044-0.08-0.089-0.121-0.133c-0.131-0.09-0.318-0.074-0.477-0.146c-0.064-0.053-0.127-0.106-0.191-0.159H7.022\r\n\t\t\t\tc-0.163-0.037-0.338-0.074-0.559-0.07c-0.083,0.008-0.165,0.017-0.248,0.025c-0.059,0.014-0.109,0.043-0.163,0.068\r\n\t\t\t\tC6.038,32.677,6,32.344,6,32c0-0.404,0.042-0.798,0.06-1.198c0.069,0.073,0.127,0.176,0.179,0.209\r\n\t\t\t\tc0.057,0.035,0.12,0.025,0.133,0.102c-0.021,0.115-0.042,0.229-0.064,0.343c0.008,0.002,0.017,0.004,0.025,0.006\r\n\t\t\t\tc0.036,0.022,0.05-0.017,0.089-0.032c0.002,0.019,0.004,0.038,0.006,0.057c-0.025,0.035-0.04,0.043-0.083,0.063\r\n\t\t\t\tc0.038,0.07,0.076,0.14,0.115,0.21H6.52c0.006,0.032,0.013,0.064,0.019,0.095c0.019,0.013,0.038,0.025,0.057,0.038\r\n\t\t\t\tc0.051,0.105-0.017,0.164,0.133,0.172c0.035,0.058,0.068,0.193,0.108,0.242c0.047-0.022,0.112-0.023,0.178-0.032\r\n\t\t\t\tc-0.004,0.021-0.008,0.042-0.013,0.064h0.013c0.048-0.142,0.166-0.403,0.108-0.61c-0.023-0.081-0.082-0.166-0.108-0.261\r\n\t\t\t\tc-0.013-0.083-0.025-0.165-0.038-0.248c-0.062-0.179-0.316-0.446-0.267-0.699c0.032-0.1,0.064-0.199,0.095-0.299\r\n\t\t\t\tc0.053-0.085,0.131-0.155,0.165-0.26c0.15-0.028,0.305-0.087,0.369-0.197c0.047-0.082,0.048-0.15,0.127-0.197\r\n\t\t\t\tc0.074-0.044,0.216-0.039,0.28-0.076c0.064-0.08,0.127-0.161,0.191-0.242c0.07-0.011,0.14-0.021,0.21-0.032\r\n\t\t\t\tc0.025-0.021,0.051-0.042,0.076-0.063c0.002-0.004,0.004-0.009,0.006-0.013c-0.027-0.012-0.033-0.01-0.044-0.038\r\n\t\t\t\tc-0.025,0.019-0.067,0.035-0.095,0.051c-0.015-0.009-0.03-0.017-0.044-0.026c-0.019-0.013-0.023-0.028-0.032-0.051\r\n\t\t\t\tc0.025,0.019,0.035,0.04,0.07,0.051c0.054-0.032,0.047-0.06,0.089-0.083v-0.013c-0.03-0.031-0.081-0.057-0.14-0.057\r\n\t\t\t\tc-0.006-0.011-0.013-0.021-0.019-0.032c0.044,0.015,0.089,0.03,0.133,0.045c-0.006-0.011-0.013-0.021-0.019-0.032v-0.006\r\n\t\t\t\tc0.051,0.021,0.064,0.054,0.14,0.064c0.025-0.03,0.051-0.059,0.076-0.089c0.009-0.016,0.008-0.002,0.038,0\r\n\t\t\t\tc0.006-0.011,0.013-0.021,0.019-0.032c-0.001-0.047-0.012-0.063-0.038-0.083c-0.011-0.006-0.002-0.006-0.013,0\r\n\t\t\t\tc-0.028,0.017-0.029,0.052-0.044,0.081c0.002,0.005-0.004,0.01-0.001,0.014v-0.013c0-0.001,0-0.001,0.001-0.002\r\n\t\t\t\tc-0.01-0.027-0.001-0.054,0.005-0.087c-0.004-0.004-0.009-0.008-0.013-0.013c-0.06,0.01-0.113,0.02-0.191,0.019\r\n\t\t\t\tc0.008-0.038-0.02-0.071,0-0.108v-0.013c0.011,0.017-0.003,0.036,0.006,0.064c0.009,0.011,0.017,0.021,0.026,0.032\r\n\t\t\t\tc0.021-0.006,0.042-0.013,0.064-0.019c0-0.018-0.002-0.019-0.013-0.038c0.021,0.011,0.042,0.021,0.064,0.032\r\n\t\t\t\tc0.008-0.004,0.017-0.009,0.025-0.013c0.002-0.004,0.004-0.008,0.006-0.013c-0.011-0.015-0.021-0.029-0.032-0.044\r\n\t\t\t\tc0.034,0.019,0.057,0.04,0.089,0.025c0.004,0.015,0.008,0.03,0.013,0.045h0.019c-0.012-0.067-0.042-0.087-0.07-0.134h0.038\r\n\t\t\t\tC8.338,28.6,8.338,28.606,8.325,28.59c0.004-0.008,0.008-0.015,0.011-0.023c-0.024-0.086-0.083-0.085-0.17-0.066\r\n\t\t\t\tc-0.004-0.07-0.06-0.101-0.121-0.114c-0.002-0.004-0.004-0.008-0.006-0.013c0.011-0.006,0.021-0.013,0.032-0.019\r\n\t\t\t\tc0.043,0.021,0.076,0.045,0.095,0.089c0.03,0.02,0.023,0.021,0.07,0.019c-0.002-0.021-0.004-0.042-0.006-0.064\r\n\t\t\t\tc-0.02-0.013-0.034-0.028-0.052-0.038H8.172c-0.021-0.017-0.042-0.034-0.064-0.051c0.018,0.026,0.045,0.037,0.069,0.051h0.02\r\n\t\t\t\tc-0.002-0.013-0.004-0.025-0.006-0.038c0.017,0.006,0.034,0.013,0.051,0.019h0.006c-0.002-0.043-0.004-0.052-0.038-0.064\r\n\t\t\t\tc0.009-0.004,0.017-0.009,0.026-0.013c-0.082-0.042-0.117-0.054-0.159-0.133c0.034,0.03,0.068,0.059,0.102,0.089\r\n\t\t\t\tc0.006,0.006,0.013,0.013,0.019,0.019c0.036-0.023,0.042-0.039,0.057-0.083c-0.034-0.047-0.238-0.13-0.311-0.159\r\n\t\t\t\tc-0.002-0.007,0.001-0.013,0-0.019c0.068-0.003,0.075,0.022,0.127,0.045c-0.002-0.013-0.004-0.025-0.006-0.038\r\n\t\t\t\tc0.042,0.042,0.099,0.078,0.153,0.108c-0.016-0.09-0.078-0.09-0.095-0.165h0.006c0.012,0.032,0.027,0.045,0.057,0.057\r\n\t\t\t\tc0.004,0.004,0.008,0.008,0.013,0.013h0.006c-0.015-0.036-0.03-0.072-0.044-0.108c-0.02-0.107,0.072-0.052-0.006-0.197\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.002-0.019,0.004-0.038,0.006-0.057c0.019,0.012,0.011,0.001,0.019,0.026h0.006\r\n\t\t\t\tc0.011-0.014,0.011-0.017,0.013-0.045c0.002,0.011,0.004,0.021,0.006,0.032c0.029-0.02,0.034-0.024,0.032-0.045\r\n\t\t\t\tc0.015-0.011,0.03-0.021,0.044-0.032c-0.006,0.017-0.013,0.034-0.019,0.051c0.013,0.006,0.025,0.013,0.038,0.019\r\n\t\t\t\tc-0.025,0.006-0.051,0.013-0.076,0.019c-0.011,0.017-0.021,0.034-0.032,0.051v0.006h0.051c-0.013,0.035-0.02,0.044-0.07,0.044\r\n\t\t\t\tc-0.004,0.006-0.009,0.013-0.013,0.019c0.016,0.017,0.027,0.021,0.057,0.025c0.002,0.004,0.004,0.008,0.006,0.013v0.026\r\n\t\t\t\tc-0.013-0.007-0.025-0.013-0.038-0.019c-0.004,0.002-0.009,0.004-0.013,0.006c-0.004,0.013-0.009,0.025-0.013,0.038v0.006\r\n\t\t\t\tc0.047-0.025,0.036-0.01,0.089,0.013c0.004,0.006,0.009,0.013,0.013,0.019c-0.03,0.011-0.059,0.021-0.089,0.032\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.011,0.015,0.021,0.03,0.032,0.044c0.017,0.011,0.034,0.021,0.051,0.032\r\n\t\t\t\tc0.021-0.013,0.042-0.025,0.064-0.038c-0.001,0.055-0.005,0.033-0.025,0.07c0.015,0.008,0.03,0.017,0.044,0.025\r\n\t\t\t\tc-0.006,0.013-0.013,0.026-0.019,0.038v0.006h0.006c0.026-0.01,0.031-0.014,0.051,0c-0.039,0.071-0.09,0.135-0.114,0.229\r\n\t\t\t\tc0.004,0.013,0.008,0.025,0.013,0.038c0.008-0.002,0.017-0.004,0.025-0.006c0.017-0.038,0.034-0.076,0.051-0.114\r\n\t\t\t\tc0.02,0,0.017,0.006,0.032-0.006c0.023-0.055,0.047-0.11,0.07-0.165c0.033-0.056,0.086-0.075,0.102-0.14\r\n\t\t\t\tc-0.004-0.04-0.008-0.081-0.013-0.121c-0.078-0.033-0.136-0.206-0.152-0.292c0.024-0.023,0.034-0.046,0.064-0.064\r\n\t\t\t\tc0.002,0.002,0.004,0.004,0.006,0.006c-0.017,0.031-0.037,0.044-0.057,0.07c0.054,0.073,0.068,0.144,0.184,0.14\r\n\t\t\t\tc0.005,0.037-0.005,0.046-0.013,0.083v0.006c0.004,0.002,0.008,0.004,0.013,0.006c0.055-0.041,0.152-0.125,0.152-0.216\r\n\t\t\t\tc0.013,0.004,0.026,0.008,0.038,0.013c0.032-0.093,0.078-0.196,0.095-0.305c-0.053-0.007-0.063-0.019-0.089-0.051\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019c0.029-0.023,0.034-0.034,0.064-0.026c0.019-0.053,0.038-0.106,0.057-0.159\r\n\t\t\t\tc-0.015,0.047-0.03,0.093-0.045,0.14c0.19-0.133,0.413-0.223,0.744-0.222c0.008-0.043,0.017-0.085,0.025-0.127\r\n\t\t\t\tc0.002-0.002,0.036,0,0.064-0.013c0.003,0.022-0.008,0.053-0.006,0.095c0.004,0.002,0.008,0.004,0.013,0.007\r\n\t\t\t\tc0.058-0.002,0.108-0.049,0.121-0.089h0.006c0.013,0.016,0.014,0.037,0.013,0.07c0.072-0.017,0.144-0.034,0.216-0.051\r\n\t\t\t\tc0-0.035-0.012-0.048-0.019-0.067v0.016c-0.03,0.013-0.059,0.025-0.089,0.038c-0.017-0.006-0.034-0.013-0.051-0.019\r\n\t\t\t\tc-0.017-0.095-0.061-0.182-0.165-0.191c0.011-0.069,0.067-0.083,0.127-0.102c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.052-0.015-0.053-0.008-0.083-0.057c0.045-0.073,0.096-0.241,0.184-0.267v-0.07c0.028-0.011,0.055-0.021,0.083-0.032\r\n\t\t\t\tc-0.002,0.011-0.004,0.021-0.006,0.032c0.013,0.006,0.025,0.013,0.038,0.019h0.006c0.028-0.036,0.033-0.028,0.025-0.076\r\n\t\t\t\tc0.011-0.009,0.021-0.017,0.032-0.025c-0.004,0.015-0.008,0.03-0.013,0.044c0.017,0.004,0.034,0.008,0.051,0.013\r\n\t\t\t\tc0.008-0.021,0.017-0.042,0.025-0.064c0.013,0.008,0.025,0.017,0.038,0.025c0.059-0.044,0.113-0.149,0.14-0.222h0.006\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c-0.008,0.021-0.017,0.042-0.025,0.064c0.002,0.004,0.004,0.008,0.006,0.013\r\n\t\t\t\tc0.027,0.008,0.055,0.017,0.083,0.025c-0.004-0.019-0.008-0.038-0.013-0.057c0.046,0.008,0.075-0.021,0.121-0.032\r\n\t\t\t\tc0.006,0.019,0.013,0.038,0.019,0.057c0.038-0.028,0.057-0.071,0.095-0.095c0.015,0.011,0.03,0.021,0.044,0.032\r\n\t\t\t\tc0.018-0.015,0.017-0.011,0.019-0.045c0.069,0.012,0.096-0.012,0.153-0.038c0.011-0.019,0.01-0.016,0.013-0.032h-0.051\r\n\t\t\t\tc0.011-0.015,0.021-0.03,0.032-0.045c-0.011-0.023-0.021-0.047-0.032-0.07c0.011,0.008,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.041-0.039,0.135-0.02,0.178,0.013c0.034-0.019,0.068-0.038,0.102-0.057c-0.006-0.013-0.013-0.026-0.019-0.038\r\n\t\t\t\tc0.023,0.013,0.047,0.025,0.07,0.038c0.139-0.017,0.194-0.143,0.343-0.146c0.013-0.023,0.025-0.047,0.038-0.07\r\n\t\t\t\tc-0.006-0.019-0.013-0.038-0.019-0.057c0.024,0.019,0.04,0.035,0.044,0.076c0.019-0.011,0.038-0.021,0.057-0.032h0.006\r\n\t\t\t\tc-0.025,0.065-0.104,0.124-0.172,0.146c-0.008,0.017-0.011,0.022-0.013,0.051c0.108-0.056,0.302-0.039,0.432-0.025\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.092-0.002-0.148,0.034-0.229,0.051v0.044c-0.023-0.018-0.019-0.021-0.044-0.025\r\n\t\t\t\tc0.002-0.023,0.004-0.047,0.006-0.07c-0.083-0.003-0.358,0.164-0.413,0.222h-0.013c0.011,0.006,0.021,0.013,0.032,0.019v0.006\r\n\t\t\t\tc-0.027,0.003-0.018,0.002-0.038-0.013c-0.04,0.023-0.08,0.047-0.121,0.07c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.03-0.019,0.059-0.038,0.089-0.057c-0.014,0.038-0.023,0.015-0.044,0.038\r\n\t\t\t\tc-0.076,0.082-0.026,0.172-0.006,0.26c0.015-0.005,0.009-0.003,0.025-0.019c0.019,0.032,0.038,0.064,0.057,0.095\r\n\t\t\t\tc0.048-0.01,0.046-0.012,0.076,0.019c0.009-0.023,0.017-0.047,0.026-0.07c0.035-0.016,0.053-0.017,0.108-0.013v-0.045\r\n\t\t\t\tc0.006,0.004,0.013,0.009,0.019,0.013c0.062-0.036,0.089-0.171,0.203-0.172c0.014-0.051-0.01-0.053-0.013-0.108h0.038\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032h0.006c0.023-0.015,0.034-0.023,0.045-0.051c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc-0.002,0.015-0.004,0.03-0.006,0.045c0.036,0.004,0.072,0.008,0.108,0.013c0.016-0.034,0.031-0.025,0.038-0.07\r\n\t\t\t\tc0.011,0.006,0.021,0.013,0.032,0.019c0.004-0.015,0.008-0.03,0.013-0.044c0.006-0.002,0.013-0.004,0.019-0.006\r\n\t\t\t\tc0.032,0.009,0.026,0.014,0.045,0.032c0.124-0.045,0.262-0.143,0.407-0.146c-0.002-0.009-0.004-0.017-0.006-0.025\r\n\t\t\t\tc0.032,0.002,0.064,0.004,0.095,0.006c-0.004-0.006-0.008-0.013-0.013-0.019c0.006-0.004,0.013-0.009,0.019-0.013\r\n\t\t\t\tc0.024-0.013,0.02-0.005,0.044,0.013c0.021-0.009,0.042-0.017,0.063-0.025c-0.027-0.034-0.068-0.036-0.133-0.032\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c0.013-0.007,0.025-0.013,0.038-0.019c0.006-0.008,0.013-0.017,0.019-0.025\r\n\t\t\t\tc-0.021-0.021-0.042-0.042-0.063-0.064c-0.075-0.027-0.112,0.044-0.133-0.064c-0.066,0.01-0.086,0.052-0.133,0.07\r\n\t\t\t\tc-0.032,0.012-0.073,0.004-0.095,0.013c0.006-0.013,0.013-0.025,0.019-0.038h-0.013c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc-0.067-0.031-0.119,0.027-0.165,0.006c-0.019-0.013-0.038-0.025-0.057-0.038c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.028-0.013-0.04-0.048-0.083-0.057h-0.013v-0.006c0.025-0.009,0.051-0.017,0.076-0.025c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc-0.103-0.049-0.301-0.028-0.267-0.191c-0.021-0.028-0.018-0.025-0.044-0.019c-0.013-0.053-0.009-0.079,0.013-0.121\r\n\t\t\t\tc-0.03-0.032-0.094-0.029-0.159-0.025c0.088-0.089,0.103-0.048,0.133-0.178c0.021-0.021,0.042-0.042,0.064-0.064\r\n\t\t\t\tc-0.015-0.011-0.03-0.021-0.044-0.032c-0.019,0.008-0.038,0.017-0.057,0.025v-0.032c-0.055,0.025-0.11,0.051-0.165,0.076\r\n\t\t\t\tc-0.065-0.089-0.112-0.14-0.254-0.152v-0.007c0.049-0.015,0.115-0.056,0.191-0.038c0.034,0.015,0.068,0.03,0.102,0.045\r\n\t\t\t\tc0.079-0.006,0.346-0.155,0.375-0.216c-0.094-0.249-0.411-0.255-0.674-0.152c-0.282,0.11-0.595,0.189-0.82,0.356\r\n\t\t\t\tc-0.184,0.136-0.321,0.345-0.502,0.489c0.154-0.325,0.477-0.718,0.775-0.896c0.079-0.047,0.223-0.03,0.299-0.083\r\n\t\t\t\tc0.108-0.076,0.07-0.268,0.267-0.337c0.117-0.041,0.317-0.025,0.439-0.006c0.178,0.027,0.354-0.025,0.515-0.006\r\n\t\t\t\tc0.163,0.008,0.326,0.017,0.489,0.025c0.219-0.035,0.465-0.038,0.61-0.146c0.083-0.091,0.165-0.182,0.248-0.273\r\n\t\t\t\tc0.155-0.015,0.309-0.03,0.464-0.044c0.1-0.032,0.288-0.2,0.375-0.267v-0.013c-0.042-0.055-0.085-0.11-0.127-0.165\r\n\t\t\t\tc0.034-0.061,0.064-0.142,0.095-0.21c-0.007-0.1-0.158-0.181-0.248-0.197c-0.041-0.008-0.112,0.043-0.153,0.064\r\n\t\t\t\tc-0.013-0.019-0.025-0.038-0.038-0.057c0.008-0.044,0.031-0.064,0.051-0.095c-0.257-0.247-0.418,0.027-0.61,0.133\r\n\t\t\t\tc-0.089,0.05-0.218,0.06-0.305,0.095c0.012-0.069,0.034-0.173,0.083-0.21c0.053-0.004,0.106-0.008,0.159-0.013\r\n\t\t\t\tc0.109-0.031,0.157-0.136,0.28-0.165c0.122-0.029,0.24-0.033,0.292-0.127c-0.11-0.028-0.22-0.055-0.33-0.083\r\n\t\t\t\tc-0.106-0.044-0.191-0.133-0.324-0.153c-0.101-0.015-0.161,0.043-0.261,0.038c0.021-0.051,0.042-0.102,0.064-0.152\r\n\t\t\t\tc-0.007-0.092-0.237-0.273-0.311-0.299h-0.095c-0.062-0.024-0.129-0.187-0.165-0.241c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.055-0.031,0.185,0.022,0.261,0c0.012-0.024,0.014-0.061,0.013-0.102c-0.084-0.062-0.178-0.095-0.242-0.178\r\n\t\t\t\tc0.027-0.025,0.057-0.044,0.102-0.051c-0.036-0.207-0.226-0.07-0.261-0.356c-0.028,0.002-0.055,0.004-0.083,0.006\r\n\t\t\t\tc-0.009-0.07,0.017-0.079,0.032-0.134c-0.122-0.141-0.365-0.561-0.508-0.629c-0.004-0.004-0.008-0.008-0.013-0.013\r\n\t\t\t\tc-0.021,0.042-0.042,0.085-0.064,0.127c-0.144,0.096-0.271,0.026-0.114,0.235c-0.096,0.122-0.182,0.158-0.184,0.388h-0.006\r\n\t\t\t\tc-0.051-0.051-0.057-0.152-0.153-0.159c-0.034,0.059-0.068,0.119-0.102,0.178c-0.077,0.058-0.266,0.055-0.349,0.095\r\n\t\t\t\tc-0.013-0.019-0.026-0.038-0.038-0.057c0.014-0.022,0.019-0.03,0.019-0.07c-0.149-0.221-0.275-0.116-0.483-0.044h-0.006\r\n\t\t\t\tc-0.044-0.056-0.038-0.084-0.026-0.178c0.036,0.002,0.072,0.004,0.108,0.006c0.112-0.165-0.211-0.619,0.013-0.724\r\n\t\t\t\tc0.011-0.023,0.014-0.056,0.013-0.095c-0.011-0.017-0.021-0.034-0.032-0.051c-0.039-0.011-0.088,0.06-0.178,0.038\r\n\t\t\t\tc-0.162-0.039-0.31-0.129-0.458-0.159c-0.052-0.065-0.056-0.061-0.013-0.14c-0.022-0.016-0.052-0.042-0.077-0.062\r\n\t\t\t\tc0.109-0.188,0.225-0.372,0.338-0.557c0.01,0.006,0.021,0.007,0.031,0.015c0.006,0.003,0.064-0.003,0.102,0.013\r\n\t\t\t\tc0.028,0.017,0.055,0.034,0.083,0.051c0.049,0.006,0.097,0.013,0.146,0.019c0.04,0.047,0.081,0.093,0.121,0.14\r\n\t\t\t\tc0.094,0.057,0.203,0.032,0.331,0.064c0.203,0.072,0.407,0.144,0.61,0.216c-0.067-0.217-0.212-0.375-0.381-0.489\r\n\t\t\t\tc-0.155-0.104-0.443-0.179-0.47-0.4c0.186,0,0.218,0.082,0.343,0.127c-0.009-0.049-0.017-0.097-0.026-0.146\r\n\t\t\t\tc0.188,0.145,0.277,0.375,0.604,0.349c0.069,0.109,0.145,0.196,0.273,0.248c-0.038-0.078-0.076-0.157-0.114-0.235\r\n\t\t\t\tc0.04,0.008,0.08,0.017,0.121,0.025h0.006c-0.006-0.184-0.176-0.25-0.153-0.432c0.084,0.057,0.177,0.169,0.216,0.267\r\n\t\t\t\tc0.008,0.006,0.017,0.013,0.025,0.019c0.037-0.334-0.178-0.289-0.292-0.477c0.006-0.013,0.013-0.026,0.019-0.038\r\n\t\t\t\tc0.025-0.006,0.051-0.013,0.076-0.019h0.013c-0.061-0.03-0.123-0.059-0.184-0.089c-0.069-0.041-0.11-0.13-0.191-0.153\r\n\t\t\t\tc-0.019,0.015-0.038,0.03-0.057,0.044c-0.008,0.008-0.017,0.017-0.025,0.026c-0.071-0.122-0.147-0.253-0.21-0.388\r\n\t\t\t\tc-0.053-0.009-0.106-0.017-0.159-0.025c-0.006-0.014-0.012-0.027-0.019-0.04c0.024-0.035,0.051-0.067,0.076-0.101\r\n\t\t\t\tc0.001,0.003,0.005,0.005,0.006,0.008c0.04-0.004,0.081-0.009,0.121-0.013c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.022-0.025-0.045-0.05-0.067-0.075c0.044-0.062,0.092-0.121,0.137-0.183c0.134,0.06,0.208,0.164,0.343,0.226\r\n\t\t\t\tc0.072,0.033,0.155,0.015,0.21,0.051c-0.013,0.036-0.025,0.072-0.038,0.108c0.005,0.082,0.057,0.11,0.089,0.165\r\n\t\t\t\tc0.042-0.019,0.085-0.038,0.127-0.057c0.033,0.038,0.022,0.078,0.051,0.127c0.022,0.036,0.201,0.12,0.248,0.102h0.013\r\n\t\t\t\tc-0.015-0.064-0.03-0.127-0.045-0.191c0.011-0.076,0.021-0.153,0.032-0.229c0.004-0.002,0.008-0.004,0.013-0.006\r\n\t\t\t\tc0.036,0.05,0.089,0.124,0.159,0.14c0.035-0.09,0.113-0.136,0.222-0.152c-0.011-0.088-0.097-0.155-0.165-0.184\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.15-0.095,0.182,0.061,0.324,0c0.025-0.019,0.058-0.097,0.089-0.127\r\n\t\t\t\tc0.002-0.006,0.004-0.013,0.006-0.019c-0.087-0.061-0.174-0.123-0.261-0.184c-0.092,0.084-0.164,0.079-0.299,0.051\r\n\t\t\t\tc0.013-0.043,0.025-0.085,0.038-0.127c-0.147-0.013-0.29,0.025-0.47,0.026v-0.095c0.061-0.015,0.123-0.03,0.184-0.044h0.013\r\n\t\t\t\tc-0.051-0.098-0.165-0.231-0.267-0.273c-0.037-0.015-0.062-0.003-0.087,0.008c0.618-0.794,1.268-1.56,1.972-2.276\r\n\t\t\t\tc0.027,0.005,0.054,0.009,0.08,0.014c0.042,0.011,0.084,0.021,0.127,0.032c0.022-0.003,0.044-0.006,0.065-0.009\r\n\t\t\t\tc0.003,0,0.005,0,0.008,0c0.003,0.007,0.006,0.014,0.01,0.022c0.02,0.004,0.051,0.001,0.079-0.002\r\n\t\t\t\tc0.003,0.003,0.005,0.006,0.008,0.008c-0.045,0.019-0.061,0.016-0.102,0.01c-0.025,0.007-0.079,0.031-0.085,0.046\r\n\t\t\t\tc-0.01,0.04,0.124,0.116,0.183,0.098c0.044-0.017,0.087-0.034,0.131-0.051c0.058-0.019,0.1-0.003,0.157-0.022\r\n\t\t\t\tc0.096-0.031,0.196-0.098,0.229-0.154c0.053-0.088-0.124-0.137-0.191-0.155c-0.063-0.017-0.099-0.061-0.143-0.099\r\n\t\t\t\tc-0.051-0.044-0.123-0.071-0.209-0.083c0.015-0.015,0.032-0.028,0.047-0.043c0.017,0.003,0.035,0.009,0.05,0.01\r\n\t\t\t\tc0.011-0.005,0.009-0.006,0.015-0.011c0.018-0.001,0.036-0.001,0.055-0.002c0.098,0.013,0.166,0.087,0.242,0.125\r\n\t\t\t\tc0.058,0.029,0.126,0.035,0.206,0.042c0.022,0.002,0.033,0.013,0.057,0.012c0.021-0.022,0.037-0.048,0.097-0.049\r\n\t\t\t\tc0.002,0.002,0.005,0.004,0.007,0.005c0.001,0.001,0.003,0.003,0.004,0.004c-0.009,0.006-0.019,0.012-0.028,0.019\r\n\t\t\t\tc0.003,0.004,0.006,0.009,0.01,0.013c0.082-0.002,0.101-0.036,0.149-0.053c0.04-0.014,0.063,0.003,0.095-0.008\r\n\t\t\t\tc-0.012,0.025-0.046,0.04-0.061,0.063c-0.015,0.023-0.012,0.045-0.025,0.07c-0.007,0.014-0.031,0.02-0.038,0.036\r\n\t\t\t\tc0.01,0.019,0.049,0.027,0.043,0.05c-0.003,0.006-0.051,0.024-0.06,0.026c0,0.019-0.02,0.038-0.005,0.057\r\n\t\t\t\tc0.01,0.008,0.024,0.008,0.042,0.007c0.003,0.002,0.006,0.003,0.009,0.005c-0.017,0.009-0.038,0.017-0.052,0.026\r\n\t\t\t\tc-0.001,0.018,0.024,0.052,0.013,0.071c-0.012,0.019-0.048,0.03-0.06,0.051c0,0.001,0,0.001,0,0.002\r\n\t\t\t\tc0.084-0.011,0.07-0.036,0.138-0.055c0.04,0.003,0.027,0.022,0.052,0.038c0.012,0.003,0.025,0.006,0.037,0.01\r\n\t\t\t\tc0.001,0.001,0.002,0.002,0.004,0.003c0,0.002,0,0.005,0,0.007c-0.016,0.04-0.137,0.028-0.188,0.046\r\n\t\t\t\tc-0.007,0.004-0.065,0.071-0.067,0.078c0.003,0.008,0.005,0.016,0.008,0.024c-0.011,0.012-0.022,0.025-0.032,0.038\r\n\t\t\t\tc-0.019,0.031-0.038,0.062-0.057,0.092c0.074-0.015,0.084-0.049,0.159-0.064c0.061,0.021,0.023,0.086-0.02,0.107\r\n\t\t\t\tc-0.029,0.014-0.071,0.006-0.102,0.011c-0.063,0.01-0.105,0.042-0.185,0.049c-0.054,0.004-0.117-0.01-0.169,0.006\r\n\t\t\t\tc-0.118,0.035-0.158,0.131-0.289,0.172c0.034,0.002,0.095,0.005,0.125,0.003c0.039-0.009,0.078-0.018,0.118-0.027\r\n\t\t\t\tc0.023,0.004,0.047,0.008,0.07,0.012c0.05,0.008,0.104,0.007,0.161,0.008c0.03-0.031,0.065-0.027,0.119-0.048\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.006c0-0.015-0.011-0.025-0.03-0.026c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.021-0.031,0.098-0.036,0.127-0.016c0.007,0.042-0.069,0.055-0.07,0.092c-0.002,0.059,0.172,0.07,0.202,0.108\r\n\t\t\t\tc-0.014,0.005-0.016,0.007-0.013,0.017c-0.062-0.014-0.133-0.027-0.211-0.024c-0.053,0.005-0.106,0.01-0.159,0.015\r\n\t\t\t\tc-0.058,0-0.109-0.014-0.16-0.022c-0.067-0.011-0.133-0.021-0.2-0.032c-0.003,0.001-0.007,0.001-0.01,0.002\r\n\t\t\t\tc-0.003,0.006-0.007,0.012-0.01,0.018c0,0.026,0.154,0.053,0.194,0.053c0.012,0.005,0.034,0.016,0.012,0.028\r\n\t\t\t\tc-0.041,0.017-0.145-0.037-0.22-0.018c-0.111,0.028-0.099,0.092-0.137,0.146c-0.027,0.036-0.054,0.071-0.081,0.107\r\n\t\t\t\tc-0.003,0.008,0.004,0.014,0.009,0.02c0.107,0.021,0.169-0.081,0.21-0.108c0.029-0.009,0.058-0.018,0.086-0.026\r\n\t\t\t\tc0.066-0.032,0.111-0.067,0.214-0.086c-0.003,0.016-0.019,0.023-0.018,0.04c0.034,0.031,0.073,0.012,0.142,0.008\r\n\t\t\t\tc0.019,0,0.038-0.001,0.058-0.001c0.029-0.02,0.092-0.051,0.055-0.082c0,0,0-0.001-0.001-0.002\r\n\t\t\t\tc0.073-0.008,0.116-0.013,0.164,0.002c0.001,0.002,0.001,0.004,0.002,0.006c-0.029,0.03-0.094,0.055-0.093,0.094\r\n\t\t\t\tc0.024,0.013,0.055,0.015,0.064,0.043c-0.107,0.003-0.221,0.01-0.318,0.003c-0.048-0.004-0.097-0.025-0.149-0.02\r\n\t\t\t\tc-0.05,0.005-0.095,0.041-0.126,0.057c-0.053,0.028-0.107,0.056-0.16,0.084c-0.031,0.011-0.061,0.023-0.092,0.034\r\n\t\t\t\tc-0.026,0.023-0.052,0.046-0.077,0.07c0.097,0.037,0.343-0.041,0.494-0.055c0.031-0.005,0.062-0.01,0.093-0.014\r\n\t\t\t\tc0.025,0.006,0.05,0.012,0.074,0.017c0.027-0.002,0.053-0.004,0.08-0.005c0.071,0.006,0.103,0.061,0.143,0.099\r\n\t\t\t\tc-0.048-0.007-0.096-0.013-0.143-0.019c-0.175-0.014-0.382-0.023-0.599,0.048c-0.044,0.013-0.088,0.026-0.132,0.039\r\n\t\t\t\tc0.033,0.026,0.093,0.01,0.126,0.031c0.015,0.022,0.03,0.043,0.045,0.065c0.009,0.006,0.187,0.026,0.212,0.028\r\n\t\t\t\tc0.027-0.007,0.031-0.019,0.051-0.03c0.071-0.01,0.102,0.049,0.058,0.079c-0.07,0.047-0.247,0.037-0.329,0.081\r\n\t\t\t\tc-0.002,0-0.003,0.001-0.005,0.001c0.03,0.018,0.163,0.033,0.21,0.036c-0.003,0.003-0.155,0.049-0.161,0.049\r\n\t\t\t\tc-0.041,0.003-0.061-0.021-0.109,0.004c-0.042,0.022-0.094,0.081-0.039,0.115c0.01,0.006,0.061,0.009,0.061,0.018\r\n\t\t\t\tc0.001,0.014-0.046,0.027-0.052,0.042c-0.006,0.028,0.035,0.04,0.072,0.026c0.049-0.018,0.116-0.057,0.149-0.083\r\n\t\t\t\tc0.068-0.052,0.139-0.105,0.219-0.153c0.026-0.012,0.052-0.023,0.078-0.035c0.04-0.037,0.08-0.074,0.119-0.111\r\n\t\t\t\tc0.043-0.03,0.109-0.051,0.168-0.075c0.037-0.015,0.07-0.028,0.113-0.042c0.041-0.009,0.082-0.018,0.123-0.027\r\n\t\t\t\tc0.021-0.007,0.051-0.021,0.08-0.02c0.023,0.007,0.047,0.013,0.07,0.02c-0.022,0.019-0.042,0.053-0.07,0.067\r\n\t\t\t\tc-0.075,0.036-0.22,0.019-0.315,0.037c-0.025,0.043-0.11,0.069-0.158,0.098c-0.009,0.008-0.002,0.019-0.007,0.028\r\n\t\t\t\tc-0.013,0.026-0.056,0.051-0.112,0.061c0.003,0.009,0.006,0.018,0.009,0.026c-0.158,0.057-0.262,0.142-0.375,0.215\r\n\t\t\t\tc-0.03,0.019-0.109,0.042-0.12,0.068c-0.012,0.015,0.009,0.03,0.021,0.039c0.065,0.049,0.103,0.014,0.195-0.009\r\n\t\t\t\tc-0.019,0.04-0.065,0.091-0.144,0.109c-0.001,0.005-0.002,0.009-0.003,0.014c0.052,0.027,0.141,0.031,0.175-0.022\r\n\t\t\t\tc0.113-0.018,0.086,0.118,0.06,0.151c0.003,0.005,0.006,0.006,0.012,0.013c0.055-0.019,0.148-0.049,0.186-0.075\r\n\t\t\t\tc0.004-0.001,0.008-0.002,0.012-0.002c0.002,0.001,0.004,0.001,0.006,0.002c0.001,0.002,0.001,0.004,0.002,0.006\r\n\t\t\t\tc-0.05,0.055-0.176,0.082-0.215,0.141c0.012,0.026,0.047,0.037,0.078,0.043c0.037-0.003,0.063-0.022,0.086-0.035\r\n\t\t\t\tc0.013,0.011,0.023,0.019,0.028,0.038l-0.049,0.069c-0.008,0.002-0.017,0.003-0.025,0.005c0.026,0.048,0.092,0.004,0.15,0.016\r\n\t\t\t\tc0.032,0.007,0.037,0.052,0.057,0.069c-0.179,0.032-0.096,0.172-0.138,0.254c-0.009,0.019-0.043,0.094-0.017,0.116\r\n\t\t\t\tc0.006,0.006,0.01,0.008,0.021,0.009c0.036,0,0.069-0.044,0.086-0.058c0.047-0.038,0.105-0.089,0.124-0.137\r\n\t\t\t\tc-0.001-0.015-0.003-0.029-0.004-0.044c0.001-0.019,0.025-0.055,0.047-0.067c0.006-0.002,0.011-0.003,0.017-0.005\r\n\t\t\t\tc0.034,0.014,0.057,0.047,0.075,0.077c0.002,0,0.004,0,0.006,0.001c0.011-0.016,0.023-0.032,0.034-0.048\r\n\t\t\t\tc-0.003-0.046-0.006-0.093-0.009-0.14c0.001-0.041,0.018-0.075,0.027-0.11c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.023,0.013,0.046,0.027,0.069,0.04c0.012,0.015-0.004,0.03-0.005,0.042c-0.002,0.033,0.023,0.085,0.059,0.092\r\n\t\t\t\tc0.037,0.007,0.092-0.018,0.131-0.027c0.005,0.037,0.052,0.138,0.083,0.157c0.029,0.009,0.057,0.019,0.086,0.029\r\n\t\t\t\tc0.033,0.016,0.053,0.039,0.077,0.065c0.001,0.003,0.002,0.005,0.003,0.008c-0.08,0.005-0.209-0.043-0.25-0.08\r\n\t\t\t\tc-0.027-0.024-0.028-0.082-0.07-0.091c-0.061-0.014-0.142,0.044-0.163,0.066c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc0.02,0.01,0.078,0.031,0.064,0.059c-0.007,0.019-0.053,0.031-0.075,0.044c-0.062,0.036-0.11,0.071-0.19,0.104\r\n\t\t\t\tc-0.027,0.011-0.089,0.021-0.104,0.038c0.022,0.035,0.111,0.043,0.185,0.018c0.087-0.037,0.175-0.073,0.262-0.11\r\n\t\t\t\tc0.013-0.012,0.026-0.024,0.038-0.036c0.017,0.036,0.059,0.046,0.081,0.071c-0.024,0.009-0.063,0.011-0.098,0.022\r\n\t\t\t\tc-0.09,0.027-0.188,0.048-0.269,0.081c-0.035,0.015-0.092,0.041-0.134,0.034c0.005,0.043,0.049,0.052,0.057,0.092\r\n\t\t\t\tc0.009-0.001,0.019-0.001,0.028-0.002c0,0.002,0.001,0.003,0.001,0.005c-0.015,0.021-0.059,0.025-0.1,0.034\r\n\t\t\t\tc-0.001,0.003-0.002,0.006-0.002,0.009c0.071,0.035,0.051,0.061,0.071,0.126c0.078,0.018,0.126-0.035,0.181-0.058\r\n\t\t\t\tc0.036-0.015,0.083-0.023,0.132-0.032c-0.069,0.057-0.138,0.115-0.207,0.173c0.001,0.002,0.002,0.005,0.003,0.008\r\n\t\t\t\tc0.058,0.008,0.109-0.033,0.173-0.036c0.069-0.004,0.128,0.034,0.115,0.093c-0.012,0.053-0.138,0.066-0.08,0.133\r\n\t\t\t\tc0.048,0.01,0.079-0.016,0.127-0.014c0.002,0,0.003-0.001,0.005-0.001c-0.008,0.023-0.056,0.064-0.035,0.086\r\n\t\t\t\tc0,0.001,0.001,0.002,0.001,0.003c0.108-0.031,0.124-0.099,0.202-0.141c0.009,0.002,0.017,0.004,0.026,0.007\r\n\t\t\t\tc0.001,0.027-0.032,0.057-0.047,0.081c-0.042,0.065-0.084,0.13-0.126,0.195c-0.029,0.051,0.007,0.108,0.077,0.123\r\n\t\t\t\tc0.05,0,0.1,0,0.15,0c0.05,0.005,0.1,0.01,0.15,0.014c0.012,0.017,0.027,0.044,0.031,0.062c-0.019,0.015-0.049,0.031-0.085,0.039\r\n\t\t\t\tc0.002,0.01,0.001,0.012-0.009,0.02c0.009,0.017,0.026,0.022,0.046,0.028c0.037-0.01,0.093-0.026,0.121-0.041\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.007,0.012c-0.008,0.012-0.025,0.015-0.043,0.023c-0.061,0.029-0.098,0.044-0.103,0.095\r\n\t\t\t\tc0.112-0.018,0.147-0.073,0.235-0.096c0.023,0.072-0.093,0.095-0.116,0.152c0.011,0.023,0.039,0.022,0.053,0.041\r\n\t\t\t\tc-0.039,0.015-0.064,0.034-0.097,0.049c0.041,0.037,0.102,0.063,0.19,0.023c0.008-0.005,0.016-0.011,0.024-0.016\r\n\t\t\t\tc0.023-0.009,0.031,0.008,0.05,0c0.045-0.018,0.029-0.058,0.122-0.037c0,0.002,0.001,0.003,0.002,0.005\r\n\t\t\t\tc-0.013,0.033-0.073,0.046-0.136,0.061c0.058,0.029,0.233,0.015,0.271,0.055c0.036,0.037-0.063,0.081-0.014,0.117\r\n\t\t\t\tc0.006,0.002,0.012,0.001,0.023-0.001c0.028-0.024,0.047-0.046,0.101-0.061c0.008,0.002,0.015,0.004,0.023,0.006\r\n\t\t\t\tc0.006,0.033,0.035,0.061,0.034,0.088c-0.001,0.032-0.072,0.06-0.133,0.07c0.072,0.019,0.181,0.032,0.277,0\r\n\t\t\t\tc-0.001-0.01-0.006-0.026,0.007-0.035c0.001,0,0.002,0,0.003,0c0.025-0.008,0.049-0.015,0.074-0.023\r\n\t\t\t\tc0.018-0.009,0.018-0.024,0.048-0.029c0.001,0,0.002,0,0.003,0c0.001,0,0.002,0,0.002,0c0.001,0,0.002,0,0.003-0.001\r\n\t\t\t\tc0.001,0,0.002,0,0.003,0c0.032-0.001,0.061,0.018,0.104,0.004c0.031-0.018,0.062-0.035,0.094-0.053\r\n\t\t\t\tc0.044-0.016,0.092,0.019,0.092-0.034c0.064,0.001,0.128-0.025,0.114-0.063c-0.096-0.034-0.03-0.068,0.043-0.095\r\n\t\t\t\tc0.035,0.012,0.033,0.039,0.06,0.062c0.009,0.008,0.023,0.008,0.03,0.019c-0.036,0.036-0.115,0.1-0.125,0.14\r\n\t\t\t\tc0.023-0.018,0.04-0.047,0.076-0.059c0.023-0.008,0.049-0.002,0.073-0.012c0.024-0.019,0.048-0.037,0.072-0.055\r\n\t\t\t\tc0.008,0.022,0.018,0.041,0.034,0.055c0.013,0.012,0.052,0.019,0.053,0.04c0.001,0.034-0.057,0.046-0.088,0.07\r\n\t\t\t\tc-0.018,0.014-0.016,0.041-0.034,0.057c-0.035,0.025-0.07,0.05-0.105,0.075c0,0,0,0.001,0.001,0.002\r\n\t\t\t\tc0.032-0.001,0.055-0.016,0.087-0.017c0.02,0.011,0.033,0.028,0.047,0.046c0.002,0.001,0.004,0.002,0.006,0.002\r\n\t\t\t\tc0.075-0.019,0.046-0.092,0.085-0.126c0.041-0.013,0.102-0.007,0.101,0.026c-0.001,0.043-0.072,0.076-0.03,0.132\r\n\t\t\t\tc0.056,0.007,0.091-0.071,0.108-0.096c0.011-0.016,0.04-0.031,0.063-0.042c-0.021,0.042-0.041,0.083-0.062,0.125\r\n\t\t\t\tc0.006-0.001,0.012-0.002,0.017-0.003c0.053,0.045-0.139,0.11-0.08,0.183c0.052,0.007,0.11-0.041,0.178-0.037\r\n\t\t\t\tc0.043,0.002,0.057,0.042,0.094,0.052c0.006-0.001,0.012-0.002,0.017-0.003c0.057-0.029,0.042-0.124,0.109-0.141\r\n\t\t\t\tc0.08-0.02,0.159,0.014,0.22,0.018c0.039-0.001,0.078-0.003,0.117-0.004c0.03,0.001,0.076,0.02,0.11-0.001\r\n\t\t\t\tc0.013-0.009,0.015-0.023,0.02-0.035c0.036-0.085-0.093-0.067-0.067-0.122c-0.041,0.011-0.059,0.029-0.089,0.042\r\n\t\t\t\tc-0.065,0.028-0.129-0.005-0.144-0.044c0.136-0.026,0.396-0.115,0.395-0.18c-0.021,0.001-0.042,0.001-0.063,0.002\r\n\t\t\t\tc-0.034,0.009-0.058,0.035-0.104,0.036c-0.051,0.002-0.124-0.029-0.138-0.067c0.064-0.012,0.128-0.025,0.185-0.032\r\n\t\t\t\tc-0.019-0.013-0.058-0.022-0.087-0.023c-0.003-0.002-0.006-0.003-0.01-0.005c0.031-0.01,0.075-0.019,0.101-0.029\r\n\t\t\t\tc0.034-0.059-0.048-0.07,0.054-0.117c0-0.003,0-0.005,0-0.008c-0.048-0.03-0.174,0.004-0.201-0.043\r\n\t\t\t\tc-0.008-0.014,0.003-0.029,0.009-0.038c0.034-0.053,0.14-0.038,0.185-0.014c0.017-0.003,0.026-0.005,0.033-0.011\r\n\t\t\t\tc0.019-0.014,0.036-0.1,0.012-0.124c0.044-0.024,0.037-0.052,0.056-0.086c0.01-0.01,0.02-0.02,0.03-0.031\r\n\t\t\t\tc-0.041,0.006-0.092,0.025-0.124,0.016l-0.008-0.015c0.097-0.014,0.14-0.081,0.167-0.127c-0.03-0.052-0.1-0.085-0.104-0.156\r\n\t\t\t\tc-0.112-0.018-0.212-0.043-0.286-0.1c0.086-0.011,0.213,0.059,0.274,0.031c0.002-0.001,0.005-0.002,0.007-0.003\r\n\t\t\t\tc-0.001-0.003-0.002-0.005-0.003-0.008c-0.042-0.016-0.114-0.015-0.143-0.042c-0.025-0.024-0.027-0.071-0.049-0.092\r\n\t\t\t\tc0.047-0.029,0.093-0.059,0.14-0.088c0.046-0.019,0.099-0.029,0.134-0.05c-0.008-0.009-0.016-0.018-0.025-0.027\r\n\t\t\t\tc-0.005-0.014-0.011-0.028-0.016-0.042c-0.03-0.035-0.107-0.073-0.064-0.124c0-0.001-0.001-0.002-0.001-0.003\r\n\t\t\t\tc0.036,0.017,0.147,0.055,0.204,0.044c-0.001-0.003-0.002-0.005-0.003-0.008c0.006-0.008,0.012-0.008,0.012-0.019\r\n\t\t\t\tc-0.034-0.018-0.117-0.048-0.111-0.082c0.001-0.001,0.003-0.002,0.004-0.003c0.046,0.004,0.07,0.02,0.12,0.02\r\n\t\t\t\tc0.021-0.009,0.035-0.019,0.033-0.036c-0.026-0.023-0.065-0.029-0.091-0.051c0.001-0.002,0.002-0.005,0.003-0.007\r\n\t\t\t\tc0.035-0.01,0.079,0.009,0.106-0.015c0.019-0.013,0.014-0.041,0.035-0.055c0.018-0.012,0.068-0.012,0.091-0.021\r\n\t\t\t\tc0.015-0.022,0.003-0.047-0.001-0.075c-0.068,0.036-0.136,0.006-0.192,0.002c-0.019,0-0.038,0.001-0.058,0.001\r\n\t\t\t\tc-0.021-0.005-0.042-0.024-0.057-0.036c0,0,0-0.001,0-0.002c0.047,0,0.084,0.013,0.126,0.016\r\n\t\t\t\tc0.044-0.001,0.088-0.001,0.131-0.002c0.028-0.001,0.09-0.009,0.1-0.024c0.026-0.037-0.037-0.077-0.065-0.092\r\n\t\t\t\tc-0.023-0.013-0.046-0.027-0.069-0.04c-0.012-0.013-0.024-0.025-0.036-0.038c-0.018-0.01-0.063-0.003-0.087-0.007\r\n\t\t\t\tc-0.051-0.015-0.102-0.031-0.152-0.046c0.035-0.013,0.071-0.026,0.106-0.039c0.054-0.022,0.094-0.056,0.147-0.073\r\n\t\t\t\tc0.065-0.021,0.098,0.007,0.147-0.018c-0.003-0.033-0.056-0.036-0.075-0.06c0.04-0.014,0.032-0.041,0.033-0.07\r\n\t\t\t\tc-0.008-0.018-0.024-0.007-0.038-0.018c-0.01-0.017-0.02-0.034-0.03-0.051c-0.015-0.01-0.031-0.019-0.047-0.029\r\n\t\t\t\tc-0.088-0.043-0.195,0.005-0.197-0.102c-0.016-0.007-0.033-0.014-0.049-0.021c0.207-0.079,0.173-0.008,0.319,0\r\n\t\t\t\tc0.03-0.008,0.081-0.026,0.102-0.043c0.038-0.03,0.094-0.146,0.023-0.187c-0.046-0.027-0.126-0.019-0.183-0.035l-0.005,0.001\r\n\t\t\t\tc0,0,0-0.001-0.001-0.002c0.156-0.015,0.143-0.03,0.163-0.114c0.004-0.003,0.009-0.005,0.013-0.007c0.003,0,0.005,0,0.008,0\r\n\t\t\t\tc0.029,0.023,0.044,0.049,0.091,0.053c0.011,0.002,0.008-0.002,0.02-0.004c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.017-0.036-0.034-0.072-0.051-0.108c0.001-0.001,0.003-0.002,0.005-0.003c0.035,0.01,0.044,0.023,0.074,0.039\r\n\t\t\t\tc0.01,0.002,0.021,0.004,0.031,0.006c0.009,0.009,0.018,0.019,0.028,0.028c0.03,0.017,0.13,0.009,0.165-0.018\r\n\t\t\t\tc0.031-0.024,0.019-0.064,0.056-0.086c0.014-0.008,0.03-0.006,0.037,0.001c0.13-0.104-0.137-0.115-0.131-0.166\r\n\t\t\t\tc0.002-0.017,0.048-0.033,0.064-0.046c0.043-0.032,0.089-0.076,0.116-0.114c-0.009,0-0.018-0.001-0.027-0.001\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.004c0.05-0.023,0.021-0.065,0.001-0.1c0.055,0.009,0.141,0.024,0.224-0.01\r\n\t\t\t\tc-0.032,0.049-0.038,0.104-0.065,0.156c-0.017,0.033-0.065,0.069-0.066,0.104c0.008,0.011,0.016,0.021,0.024,0.032\r\n\t\t\t\tc0.015,0.03-0.047,0.071-0.007,0.098c0.021,0.016,0.068,0.009,0.106,0.008c0.001,0,0.002,0,0.002,0\r\n\t\t\t\tc-0.004-0.037,0.007-0.078-0.028-0.11c0.083-0.005,0.124-0.07,0.134-0.107c0.002-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.022,0.02,0.027,0.067,0.068,0.07c0.003,0,0.007,0,0.01,0c0.055-0.028,0.102-0.093,0.119-0.136\r\n\t\t\t\tc-0.006-0.004-0.012-0.009-0.018-0.013c0.001,0,0.002,0,0.003,0c0.045,0.009,0.167,0.05,0.2-0.008\r\n\t\t\t\tc0.002-0.031,0.004-0.063,0.006-0.094c0.012-0.023,0.053-0.042,0.051-0.069c0.004-0.047-0.125-0.031-0.121-0.087\r\n\t\t\t\tc0.012-0.034,0.201-0.025,0.247-0.027c0.022,0.013,0.039,0.036,0.067,0.044c0.065-0.002,0.086-0.04,0.101-0.069\r\n\t\t\t\tc0.032-0.059,0.046-0.123,0.077-0.184c0.014-0.028,0.029-0.056,0.043-0.085c0.008-0.022-0.001-0.073-0.025-0.093\r\n\t\t\t\tc-0.006-0.002-0.003-0.002-0.013-0.001c0.018-0.037,0.066-0.059,0.078-0.1c-0.014-0.01-0.028-0.02-0.042-0.03\r\n\t\t\t\tc-0.026-0.028-0.037-0.094-0.024-0.122c0.013-0.028,0.059-0.047,0.07-0.077c0.014-0.038-0.033-0.077-0.004-0.117\r\n\t\t\t\tc0.02-0.027,0.112-0.04,0.135-0.086c0.002-0.016,0.004-0.032,0.005-0.048c0.016-0.031,0.132-0.113,0.06-0.153\r\n\t\t\t\tc-0.023-0.013-0.064-0.006-0.096-0.01c-0.002,0-0.003,0.001-0.005,0.001c0.016-0.009,0.034-0.011,0.039-0.024\r\n\t\t\t\tc0.017-0.065-0.146-0.086-0.173-0.118c0.009-0.012,0.018-0.025,0.027-0.037c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.031,0.059,0.15,0.093,0.239,0.092c0.045,0,0.091-0.01,0.128-0.003c0.046,0.009,0.076,0.04,0.128,0.044\r\n\t\t\t\tc0.046,0.004,0.173-0.02,0.191-0.045c-0.003-0.044-0.086-0.053-0.114-0.083c0.091,0.005,0.077-0.035,0.134,0.031\r\n\t\t\t\tc0.041,0.007,0.101-0.012,0.116-0.034c0.001-0.052-0.066-0.084-0.058-0.137c0.005-0.005,0.011-0.01,0.016-0.015\r\n\t\t\t\tc0.03,0.025,0.076,0.076,0.147,0.053c0.075-0.023,0.014-0.08,0.073-0.109c0.046-0.014,0.093-0.029,0.139-0.043\r\n\t\t\t\tc0.048-0.025,0.083-0.063,0.134-0.089c0.033-0.013,0.065-0.027,0.098-0.04c0.023-0.014,0.024-0.037,0.052-0.051\r\n\t\t\t\tc0.052-0.027,0.165-0.104,0.16-0.147c0.013,0,0.026-0.001,0.039-0.001c0.009-0.007,0.007-0.015,0.014-0.021\r\n\t\t\t\tc0.024-0.02,0.098-0.01,0.069-0.046c-0.007-0.009-0.015-0.014-0.02-0.028c0.02-0.022,0.045-0.041,0.1-0.051\r\n\t\t\t\tc-0.003-0.01-0.007-0.02-0.01-0.03c0.004-0.01,0.018-0.015,0.036-0.02c0.005-0.043-0.016-0.072-0.045-0.098\r\n\t\t\t\tc0.008-0.035,0.079-0.049,0.107-0.077c0-0.029-0.031-0.052-0.063-0.055c0.037-0.037,0.131-0.031,0.146-0.078\r\n\t\t\t\tc-0.024-0.02-0.058-0.024-0.069-0.057c0.023-0.025,0.075-0.06,0.135-0.054c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc-0.033-0.02-0.066-0.041-0.099-0.061c-0.089-0.081,0.158-0.142,0.204-0.197c-0.022,0.004-0.029,0-0.037-0.01\r\n\t\t\t\tc-0.002-0.001-0.004-0.002-0.006-0.002c0,0,0-0.001-0.001-0.002c0.032-0.002,0.069,0.005,0.1-0.008\r\n\t\t\t\tc0.004-0.004,0.008-0.007,0.012-0.011c-0.001-0.024-0.034-0.036-0.057-0.044c-0.007-0.043,0.064-0.091,0.107-0.117\r\n\t\t\t\tc0.015,0.003,0.03,0.006,0.045,0.009c-0.008-0.04-0.016-0.08-0.024-0.12c-0.038,0.015-0.036,0.038-0.061,0.057\r\n\t\t\t\tc-0.04,0.031-0.1,0.067-0.155,0.09c-0.046,0.018-0.166,0.053-0.22,0.054c-0.055,0.001-0.099-0.006-0.169,0.007\r\n\t\t\t\tc-0.086,0.017-0.192,0.071-0.27,0.055c-0.009-0.018-0.019-0.035-0.028-0.053c-0.001,0-0.002,0-0.003,0.001\r\n\t\t\t\tc-0.072,0.055-0.152,0.123-0.2,0.186c-0.031,0.04-0.06,0.078-0.102,0.114c-0.038,0.032-0.043,0.082-0.099,0.107\r\n\t\t\t\tc-0.053,0.023-0.122,0.012-0.178,0.027c-0.003,0-0.006-0.001-0.008-0.002c-0.047-0.023-0.103,0.025-0.159,0.03\r\n\t\t\t\tc-0.014-0.012-0.007-0.021,0.003-0.032c0.022-0.023,0.056-0.047,0.12-0.051c0.022-0.001,0.054-0.002,0.075-0.013\r\n\t\t\t\tc0.068-0.034,0.046-0.111,0.096-0.141c0.031-0.019,0.151-0.057,0.162-0.078c0.014-0.025-0.022-0.049-0.044-0.053\r\n\t\t\t\tc-0.04,0.008-0.037,0.022-0.06,0.033l-0.116,0.034c-0.082,0.034-0.185,0.115-0.294,0.118c-0.015-0.011-0.018-0.03-0.038-0.036\r\n\t\t\t\tc-0.051,0.004-0.131,0.08-0.148,0.105c-0.006,0.001-0.012,0.001-0.018,0.002c-0.003,0-0.005,0-0.008,0\r\n\t\t\t\tc-0.046-0.074,0.259-0.214,0.154-0.309c-0.031-0.028-0.086-0.028-0.126-0.046c0.103-0.026,0.206-0.053,0.309-0.079\r\n\t\t\t\tc0.011-0.005,0.016-0.012,0.017-0.022c0.05-0.019,0.101-0.031,0.138-0.055c0.04-0.026,0.15-0.164,0.158-0.201\r\n\t\t\t\tc0.003-0.016-0.028-0.058-0.042-0.07c-0.016-0.014-0.044-0.019-0.068-0.024c-0.11-0.022-0.111,0.021-0.198,0.048\r\n\t\t\t\tc-0.092,0.028-0.168-0.001-0.196,0.069c-0.047,0.001-0.074-0.025-0.115-0.028c-0.045-0.003-0.093,0.034-0.122,0.047\r\n\t\t\t\tc-0.001,0-0.002,0-0.003,0c0,0,0-0.001-0.001-0.002c0.016-0.039,0.101-0.058,0.108-0.097c0.007-0.042-0.147-0.072-0.199-0.067\r\n\t\t\t\tc-0.027,0.007-0.053,0.015-0.08,0.022c-0.065,0.001-0.133-0.039-0.158-0.08c0.031-0.004,0.053,0.006,0.077,0.01\r\n\t\t\t\tc0.032,0.005,0.153,0.002,0.167-0.005c0.121,0.041,0.265,0.068,0.372,0.122c0.097-0.022,0.152-0.08,0.272-0.089\r\n\t\t\t\tc0.1-0.007,0.172,0.031,0.261,0.04c0.04-0.01,0.035-0.031,0.071-0.042c0.056,0.011,0.104,0.041,0.15,0.063\r\n\t\t\t\tc0.024,0.008,0.048,0.017,0.071,0.025c0.016,0.019,0.031,0.037,0.047,0.056c0.021,0.005,0.032-0.001,0.046,0.011\r\n\t\t\t\tc0.015,0.022,0.03,0.044,0.045,0.066c0.042,0.038,0.131,0.059,0.2,0.07c0.101,0.016,0.192,0.009,0.27-0.045\r\n\t\t\t\tc0.017-0.012,0.034-0.02,0.038-0.036c0.013-0.051-0.114-0.086-0.107-0.166c0.001-0.001,0.003-0.002,0.004-0.003\r\n\t\t\t\tc0.014,0.037,0.178,0.137,0.22,0.148c0.022,0.005,0.059,0.007,0.087-0.007c0.02-0.01,0.031-0.026,0.039-0.041\r\n\t\t\t\tc0.037-0.061-0.073-0.08-0.109-0.114c0.003-0.006,0.006-0.013,0.01-0.019c-0.026,0-0.033-0.018-0.043-0.033\r\n\t\t\t\tc-0.013-0.002-0.028,0-0.049,0.004c-0.004-0.04,0.038-0.112-0.07-0.076c0.009-0.016,0.01-0.032,0.012-0.052\r\n\t\t\t\tc-0.015,0.002-0.03,0.005-0.045,0.007c-0.002,0-0.004,0-0.005-0.001c-0.033-0.116-0.015-0.165-0.164-0.203\r\n\t\t\t\tc-0.003,0-0.005,0-0.008,0c-0.019,0.045-0.027,0.105-0.038,0.15c-0.001,0.001-0.003,0.002-0.004,0.003\r\n\t\t\t\tc-0.006-0.003-0.013-0.007-0.019-0.01c-0.004-0.025,0.002-0.056-0.014-0.084c-0.022-0.037-0.043-0.094-0.038-0.131\r\n\t\t\t\tc-0.051,0.012-0.061,0.058-0.095,0.08c-0.009-0.002-0.019-0.003-0.028-0.005c0-0.058-0.017-0.052-0.091-0.052\r\n\t\t\t\tc-0.013-0.02-0.001-0.032-0.007-0.054c-0.005-0.001-0.01-0.003-0.014-0.004c-0.012,0.001-0.02,0.003-0.029,0.007\r\n\t\t\t\tc-0.007-0.003-0.006-0.001-0.01-0.008c-0.053,0.01-0.081,0.001-0.126,0.003c-0.151,0.005-0.169,0.037-0.238-0.051\r\n\t\t\t\tc-0.041-0.009-0.201-0.016-0.26-0.004c-0.013,0.035-0.019,0.069-0.038,0.102c-0.018,0.027-0.037,0.054-0.055,0.08\r\n\t\t\t\tc-0.003,0.002-0.006,0.005-0.008,0.007c-0.027-0.016-0.116-0.06-0.103-0.103c0.009-0.015,0.038-0.018,0.056-0.029\r\n\t\t\t\tc0.021-0.013,0.084-0.093,0.073-0.115c-0.015-0.03-0.082-0.03-0.118-0.039c-0.039-0.01-0.067-0.043-0.116-0.041\r\n\t\t\t\tc-0.046,0.002-0.061,0.033-0.074,0.049c-0.018,0.016-0.035,0.032-0.053,0.048c-0.021,0.029-0.031,0.063-0.043,0.095\r\n\t\t\t\tc-0.007,0.002-0.013,0.004-0.019,0.005c-0.015-0.051-0.072-0.083-0.151-0.068c0,0,0-0.001-0.001-0.001\r\n\t\t\t\tc0.024-0.031,0.103-0.012,0.139-0.034c0.06-0.036,0.077-0.119,0.142-0.155c0.004-0.005,0.009-0.01,0.013-0.016\r\n\t\t\t\tc-0.078-0.016-0.155-0.032-0.243-0.04c-0.032,0.023-0.05,0.013-0.09,0.032c-0.021,0.015-0.043,0.03-0.064,0.045\r\n\t\t\t\tc-0.072,0.047-0.113,0.067-0.106,0.143c-0.023-0.003-0.035-0.007-0.05-0.017c-0.124-0.083,0.099-0.103,0.101-0.159\r\n\t\t\t\tc0.001-0.031-0.064-0.029-0.086-0.038c-0.002,0-0.004,0-0.005-0.001c0,0,0-0.001-0.001-0.002c0.065-0.02,0.17-0.047,0.208-0.018\r\n\t\t\t\tc0.055-0.015,0.091-0.086,0.101-0.119c0.002-0.012,0.004-0.024,0.007-0.036c0.019-0.029,0.096-0.064,0.136-0.084\r\n\t\t\t\tc0.001-0.002,0.002-0.004,0.003-0.005c-0.051-0.005-0.107-0.018-0.136-0.046c0.06,0.007,0.119,0.006,0.189,0.005\r\n\t\t\t\tc-0.007-0.017-0.02-0.023-0.032-0.034c-0.018-0.066,0.148-0.105,0.248-0.112c0.019-0.003,0.038-0.006,0.058-0.01\r\n\t\t\t\tc0.014,0.001,0.034,0.006,0.062-0.003c0.018-0.006,0.028-0.016,0.039-0.024c0.005,0.031-0.025,0.045-0.053,0.063\r\n\t\t\t\tc-0.039,0.004-0.2-0.007-0.232,0.033c0,0.003,0,0.005,0,0.008c0.038,0.019,0.086,0.056,0.135,0.064\r\n\t\t\t\tc0.063,0.01,0.146-0.01,0.22-0.012c0.032,0,0.063,0,0.095,0c0.05-0.056,0.09-0.128,0.108-0.194\r\n\t\t\t\tc0.015-0.005,0.03-0.001,0.047-0.002c0.036-0.002,0.135-0.04,0.152-0.052c0.047-0.035-0.09-0.189-0.128-0.197\r\n\t\t\t\tc-0.032-0.007-0.07-0.002-0.107-0.004c-0.059-0.004-0.24-0.04-0.269,0.031c0.007,0.018,0.019,0.023,0.032,0.034\r\n\t\t\t\tc0.001,0.002,0.001,0.003,0.002,0.005c-0.054,0.001-0.109,0.001-0.163,0.001c-0.002,0-0.003,0.001-0.005,0.001\r\n\t\t\t\tc-0.006-0.034,0.037-0.085,0.002-0.115c-0.013-0.007-0.061,0.002-0.077,0c-0.003-0.017,0.025-0.026,0.044-0.033\r\n\t\t\t\tc0.024-0.05-0.082-0.091-0.112-0.123c0,0,0-0.001-0.001-0.002c0.049,0.003,0.087,0.023,0.143,0.019\r\n\t\t\t\tc0.08-0.005,0.117-0.075,0.219-0.082c0.053-0.003,0.078,0.028,0.129,0.024c0.015-0.006,0.029-0.012,0.044-0.018\r\n\t\t\t\tc0.076-0.037,0.128-0.084,0.117-0.15c-0.006-0.035-0.112-0.077-0.174-0.057c-0.075,0.034-0.15,0.068-0.225,0.101\r\n\t\t\t\tc-0.023,0.015-0.039,0.033-0.066,0.048c0.001-0.026,0.017-0.077,0-0.103c-0.026-0.042-0.069-0.068-0.087-0.113\r\n\t\t\t\tc-0.144,0.026-0.093,0.074-0.143,0.127c-0.101,0.032-0.174-0.025-0.264-0.018c0.036-0.037,0.154-0.006,0.199-0.003\r\n\t\t\t\tc0.004-0.001,0.008-0.001,0.012-0.002c0.006-0.013,0.012-0.027,0.018-0.04c0.021-0.034,0.052-0.065,0.088-0.093\r\n\t\t\t\tc-0.001-0.001-0.003-0.003-0.004-0.004c-0.015-0.008-0.041-0.006-0.061-0.008c-0.037-0.005-0.076-0.012-0.118-0.013\r\n\t\t\t\tc-0.078,0-0.163,0.02-0.217-0.003c0.044-0.008,0.061-0.02,0.074-0.039c-0.012-0.023-0.076-0.028-0.104-0.037\r\n\t\t\t\tc-0.001-0.002-0.001-0.004-0.002-0.006c0.057-0.01,0.172,0.001,0.217,0.01c0.051,0.011,0.098,0.041,0.167,0.033\r\n\t\t\t\tc0.034-0.018,0.074-0.065,0.132-0.048c0.029,0.008,0.042,0.034,0.072,0.043c0.067-0.007,0.093-0.07,0.062-0.117\r\n\t\t\t\tc-0.04-0.061-0.125-0.079-0.182-0.12c-0.022-0.016-0.009-0.05-0.031-0.062c-0.042-0.024-0.124,0-0.196,0.004\r\n\t\t\t\tc-0.024-0.002-0.048-0.003-0.073-0.005c-0.041,0.002-0.072,0.028-0.098,0.039c-0.039,0.016-0.082,0.03-0.131,0.042\r\n\t\t\t\tc0-0.001-0.001-0.002-0.001-0.003c0.069-0.022,0.084-0.061,0.131-0.091c0.041-0.027,0.109-0.044,0.145-0.073\r\n\t\t\t\tc0.016-0.013,0.031-0.04,0.007-0.058c-0.01-0.007-0.041-0.008-0.068-0.013c0.057-0.028,0.115-0.055,0.172-0.083\r\n\t\t\t\tc0.024,0.008,0.048,0.016,0.072,0.024c0.029,0.02,0.058,0.041,0.086,0.062c0.003,0.001,0.006,0.001,0.008,0.002\r\n\t\t\t\tc0.003-0.003,0.005-0.005,0.008-0.008c-0.002-0.029-0.048-0.05-0.072-0.066c-0.018-0.012-0.036-0.025-0.053-0.037\r\n\t\t\t\tC24.16,6.946,27.965,6,32,6c4.819,0,9.317,1.335,13.186,3.62c-0.129,0.065-0.246,0.164-0.324,0.268\r\n\t\t\t\tc-0.048-0.001-0.132-0.022-0.153-0.019c-0.081,0.013-0.199,0.161-0.229,0.229c-0.013,0.013-0.025,0.025-0.038,0.038\r\n\t\t\t\tc0.039,0.028,0.075,0.062,0.102,0.102c-0.098,0.069-0.24,0.035-0.292,0.153c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc0.032,0.03,0.064,0.059,0.095,0.089c-0.004,0.027-0.008,0.055-0.013,0.083c-0.383-0.001-0.322,0.111-0.547,0.216v0.006\r\n\t\t\t\tc0.208,0.251,0.238,0.04,0.521,0.089c0.13,0.023,0.226,0.096,0.343,0.121c0.109-0.061,0.161-0.161,0.248-0.241\r\n\t\t\t\tc-0.002-0.025-0.004-0.051-0.006-0.076c-0.034-0.021-0.068-0.042-0.102-0.064c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.023-0.023,0.047-0.047,0.07-0.07c0.074,0.003,0.112,0.025,0.159,0.051c0.055-0.058,0.136-0.114,0.197-0.165v-0.013\r\n\t\t\t\tc-0.021-0.017-0.042-0.034-0.064-0.051c-0.013-0.017-0.002-0.045,0.006-0.076c0.015-0.013,0.03-0.026,0.044-0.038\r\n\t\t\t\tc0.107,0.001,0.27,0.047,0.356,0.006c0.036-0.028,0.072-0.055,0.108-0.083c0.021-0.023,0.042-0.047,0.063-0.07\r\n\t\t\t\tc-0.028-0.015-0.055-0.03-0.083-0.045c0.009-0.043,0.048-0.077,0.099-0.106c0.83,0.518,1.632,1.072,2.395,1.677\r\n\t\t\t\tc-0.005,0.025-0.011,0.05-0.016,0.075c-0.049,0.083-0.097,0.165-0.146,0.248c-0.135,0.174-0.528,0.182-0.464,0.489\r\n\t\t\t\tc0.053,0.004,0.106,0.008,0.159,0.013c0.135,0.378-0.104,0.29-0.146,0.515c0.07,0.108,0.28,0.064,0.369,0.153\r\n\t\t\t\tc0.03,0.036-0.002,0.112,0.013,0.165c0.035,0.124,0.135,0.168,0.286,0.146c-0.018,0.094-0.114,0.264-0.184,0.311\r\n\t\t\t\tc-0.016,0.013-0.038,0.014-0.07,0.013c-0.378-0.351-0.896-0.546-1.468-0.705c-0.123-0.034-0.46-0.13-0.635-0.089\r\n\t\t\t\tc-0.081,0.019-0.116,0.1-0.184,0.134c-0.002,0.004-0.004,0.008-0.006,0.013c0.061,0.078,0.123,0.157,0.184,0.235\r\n\t\t\t\tc-0.01,0.223-0.12,0.179-0.292,0.203c-0.021,0.033-0.037,0.114-0.051,0.146c-0.095,0.048-0.191-0.018-0.216-0.089\r\n\t\t\t\tc0.03-0.038,0.059-0.076,0.089-0.115c-0.178-0.082-0.286-0.093-0.451,0.032c-0.042,0.034-0.085,0.068-0.127,0.102\r\n\t\t\t\tc-0.1,0.03-0.176-0.034-0.235-0.051c-0.105-0.03-0.28-0.002-0.362,0.032c-0.091,0.037-0.088,0.172-0.172,0.222\r\n\t\t\t\tc-0.028-0.015-0.037-0.02-0.044-0.057c-0.182,0.003-0.224,0.07-0.375,0.019c0-0.05,0.007-0.062,0.025-0.089\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0-0.097,0.017-0.161,0.026-0.235c-0.381-0.002-0.167,0.2-0.419,0.248\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.011-0.034-0.021-0.068-0.032-0.102c-0.133,0.055-0.267,0.11-0.4,0.165\r\n\t\t\t\tc-0.226,0.09-0.453,0.187-0.661,0.273c-0.051,0.015-0.102,0.03-0.153,0.045c-0.087,0.07-0.049,0.285-0.14,0.349\r\n\t\t\t\tc-0.057,0.011-0.115,0.021-0.172,0.032c-0.341,0.069-0.427-0.091-0.629-0.248c0.041-0.201,0.281-0.195,0.508-0.203\r\n\t\t\t\tc-0.055-0.114-0.169-0.349-0.305-0.375c-0.097,0.009-0.195,0.017-0.292,0.025c-0.082-0.018-0.133-0.053-0.216-0.032\r\n\t\t\t\tc-0.017,0.148,0.159,0.164,0.121,0.337c-0.051,0.081-0.102,0.161-0.152,0.241c-0.004,0.004-0.009,0.009-0.013,0.013\r\n\t\t\t\tc0.034,0.051,0.079,0.078,0.153,0.089c0.079,0.238,0.029,0.214-0.032,0.407c-0.006,0.036-0.013,0.072-0.019,0.108v0.013\r\n\t\t\t\tc-0.166-0.008-0.335-0.211-0.566-0.184c-0.124,0.261-0.492,0.237-0.661,0.445c0.005,0.173,0.26,0.294,0.14,0.47\r\n\t\t\t\tc-0.034-0.011-0.068-0.021-0.102-0.032c-0.071,0.008-0.14,0.046-0.235,0.019c-0.217-0.062-0.433-0.161-0.604-0.267\r\n\t\t\t\tc-0.103,0-0.1,0.078-0.153,0.127c0.003,0.063,0.126,0.201,0.191,0.229c0.057,0.024,0.137-0.001,0.191,0.006\r\n\t\t\t\tc0.15,0.265-0.1,0.247-0.261,0.21c-0.072-0.016-0.157,0.001-0.21-0.032c-0.029-0.021-0.053-0.077-0.064-0.114\r\n\t\t\t\tc-0.076-0.038-0.207-0.014-0.292-0.057c-0.043-0.022-0.208-0.444-0.216-0.527c0.122-0.036,0.163-0.19,0.07-0.292\r\n\t\t\t\tc-0.066-0.072-0.223-0.087-0.305-0.14c-0.136-0.088-0.245-0.222-0.362-0.33c0.221-0.112,0.253,0.089,0.343,0.14\r\n\t\t\t\tc0.07,0.011,0.14,0.021,0.21,0.032c0.5,0.15,1.305,0.524,1.831,0.127c0.111-0.084,0.24-0.161,0.235-0.343\r\n\t\t\t\tc-0.069-0.069-0.081-0.106-0.076-0.242c-0.091-0.072-0.211-0.158-0.331-0.197c-0.127-0.038-0.254-0.076-0.381-0.115\r\n\t\t\t\tc-0.121-0.102-0.242-0.203-0.362-0.305c-0.068-0.021-0.136-0.042-0.203-0.063c-0.108-0.038-0.216-0.076-0.324-0.114\r\n\t\t\t\tc-0.18-0.013-0.36-0.025-0.54-0.038c-0.03,0.023-0.059,0.047-0.089,0.07c-0.004-0.046-0.008-0.093-0.013-0.14\r\n\t\t\t\tc-0.183-0.035-0.345-0.068-0.35-0.28c-0.061,0.036-0.123,0.072-0.184,0.108c-0.046,0.019-0.103,0.021-0.14,0.044\r\n\t\t\t\tc-0.114-0.074-0.219-0.036-0.369-0.025c-0.066-0.103-0.205-0.127-0.28-0.222c0.237,0.002,0.468,0.029,0.591-0.095\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.028-0.017-0.055-0.034-0.083-0.051c-0.065-0.023-0.14,0.003-0.191-0.019\r\n\t\t\t\tc-0.106-0.045-0.177-0.123-0.299-0.159c-0.07,0.062-0.137,0.151-0.152,0.267c-0.04-0.008-0.081-0.017-0.121-0.025\r\n\t\t\t\tc0.041-0.129,0.058-0.18,0.127-0.279c-0.05-0.066-0.162-0.027-0.242-0.013c-0.045,0.144-0.117,0.243-0.248,0.305\r\n\t\t\t\tc-0.004-0.093-0.008-0.187-0.013-0.28c-0.139,0.095-0.322,0.263-0.388,0.426c-0.017-0.002-0.034-0.004-0.051-0.006\r\n\t\t\t\tc-0.001-0.246,0.115-0.269,0.216-0.4c-0.281-0.021-0.326,0.061-0.47,0.203c-0.031,0.023-0.079-0.012-0.121,0.013\r\n\t\t\t\tc-0.073,0.044-0.144,0.185-0.172,0.273c-0.187-0.096-0.28-0.273-0.381,0.083c-0.042-0.036-0.085-0.072-0.127-0.108\r\n\t\t\t\tc-0.006-0.002-0.013-0.004-0.019-0.006c-0.048,0.076-0.089,0.121-0.203,0.134c-0.027,0.103-0.078,0.174-0.153,0.229\r\n\t\t\t\tc0.014-0.069,0.027-0.136,0.051-0.191c-0.004-0.011-0.008-0.021-0.013-0.032c-0.006-0.004-0.013-0.008-0.019-0.013\r\n\t\t\t\tc-0.084,0.046-0.148,0.229-0.197,0.311c-0.135-0.012-0.165-0.08-0.299-0.032c-0.025-0.021-0.051-0.042-0.076-0.063\r\n\t\t\t\tc-0.061,0.246-0.091,0.112-0.216,0.203c-0.066,0.048-0.033,0.116-0.146,0.153c-0.019,0.021-0.038,0.042-0.057,0.063\r\n\t\t\t\tc0.026,0.021,0.051,0.042,0.076,0.064v0.006c-0.036,0.051-0.106,0.052-0.172,0.038c0.011,0.047,0.021,0.093,0.032,0.14\r\n\t\t\t\tc-0.019,0.028-0.038,0.055-0.057,0.083c-0.006,0.004-0.013,0.009-0.019,0.013c-0.046-0.028-0.064-0.041-0.089-0.089h-0.006\r\n\t\t\t\tc-0.065,0.006-0.07,0.078-0.133,0.102c-0.009,0.027,0.014,0.055,0.044,0.076v0.038c-0.054,0.016-0.077,0.025-0.102,0.07\r\n\t\t\t\tc-0.041-0.01-0.074-0.026-0.127-0.032c-0.044,0.035-0.058,0.078-0.121,0.095c0.011,0.038,0.019,0.052,0.057,0.064\r\n\t\t\t\tc-0.034,0.075-0.199,0.095-0.273,0.134c-0.006,0.004-0.013,0.008-0.019,0.013c0.021,0.036,0.042,0.072,0.064,0.108v0.006\r\n\t\t\t\tc-0.065,0.004-0.112,0.01-0.178,0.006c-0.021,0.034-0.042,0.068-0.063,0.102c0.042,0.051,0.093,0.07,0.127,0.134v0.006\r\n\t\t\t\tc-0.042,0.006-0.085,0.013-0.127,0.019c-0.006,0.042-0.013,0.085-0.019,0.127c-0.163-0.038-0.167,0.098-0.229,0.21\r\n\t\t\t\tc0.021,0.006,0.042,0.013,0.064,0.019c0.002,0.044,0.004,0.089,0.006,0.133c-0.05,0.003-0.081,0.005-0.121-0.006\r\n\t\t\t\tc-0.075,0.075-0.123,0.164-0.203,0.235c0.006,0.019,0.013,0.038,0.019,0.057v0.006c-0.063,0.046-0.087,0.015-0.159,0\r\n\t\t\t\tc-0.094,0.045-0.266,0.185-0.311,0.28c-0.006,0.034-0.013,0.068-0.019,0.102c-0.039,0.065-0.125,0.084-0.159,0.165\r\n\t\t\t\tc-0.006,0.004-0.013,0.009-0.019,0.013c-0.019-0.013-0.038-0.026-0.057-0.038c-0.08-0.054-0.225,0.137-0.222,0.242\r\n\t\t\t\tc-0.085-0.036-0.205-0.032-0.337-0.032l-0.032,0.032c0.017,0.072,0.086,0.103,0.159,0.114c-0.063,0.075-0.159,0.014-0.267,0.006\r\n\t\t\t\tc-0.021,0.084-0.011,0.111-0.089,0.14c-0.1-0.04-0.144,0.042-0.248,0.076c-0.002,0.017-0.004,0.034-0.006,0.051\r\n\t\t\t\tc0.025,0.034,0.072,0.048,0.108,0.07v0.025c-0.066,0.004-0.131,0.008-0.197,0.013c-0.025,0.075-0.001,0.151-0.038,0.21\r\n\t\t\t\tc0.034,0.046,0.043,0.085,0.102,0.108c0.002,0.004,0.004,0.008,0.006,0.013c-0.056,0.046-0.091,0.058-0.114,0.14\r\n\t\t\t\tc0.004,0.011,0.008,0.021,0.013,0.032c0.041,0.028,0.07,0.034,0.121,0.013c0.011,0.013,0.021,0.025,0.032,0.038\r\n\t\t\t\tc-0.041,0.034-0.089,0.076-0.127,0.114c0.053,0.078,0.112,0.033,0.222,0.045c-0.007,0.055-0.021,0.092-0.07,0.108\r\n\t\t\t\tc-0.008,0.011-0.017,0.021-0.025,0.032c0.015,0.013,0.03,0.025,0.044,0.038c0.06-0.001,0.086-0.014,0.127-0.032\r\n\t\t\t\tc-0.027,0.037-0.064,0.055-0.127,0.057c0.001,0.016-0.001,0.007,0.006,0.025c-0.032,0.014-0.05,0.004-0.083-0.013v0.038h-0.006\r\n\t\t\t\tc-0.004-0.017-0.008-0.034-0.013-0.051c-0.002-0.004-0.004-0.008-0.006-0.013c-0.025,0.03-0.051,0.059-0.076,0.089\r\n\t\t\t\tc0.008,0.03,0.017,0.059,0.025,0.089c0.011,0.006,0.021,0.013,0.032,0.019c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc0.006,0.011,0.013,0.021,0.019,0.032c0.051-0.002,0.06-0.014,0.095-0.026c-0.002-0.025-0.004-0.051-0.006-0.076\r\n\t\t\t\tc0.025,0.019,0.035,0.027,0.038,0.07h0.006c0.028-0.025,0.055-0.051,0.083-0.076c-0.018,0.039-0.04,0.052-0.064,0.083\r\n\t\t\t\tc0.032,0.02,0.042,0.024,0.089,0.019v0.007c-0.038,0.021-0.076,0.042-0.114,0.063c-0.009,0.028-0.004,0.013,0.006,0.045\r\n\t\t\t\tc0.046,0.033,0.031,0.018,0.102,0.013v0.006c-0.036,0.006-0.042,0.012-0.057,0.038c0.006,0.008,0.013,0.017,0.019,0.025\r\n\t\t\t\tc-0.036-0.022-0.065-0.056-0.089-0.019c-0.006,0.004-0.013,0.008-0.019,0.013c-0.002-0.019-0.004-0.038-0.006-0.057\r\n\t\t\t\tc-0.017-0.002-0.034-0.004-0.051-0.006c0.015,0.05-0.003,0.072-0.025,0.114c0.019,0.038,0.038,0.076,0.057,0.114\r\n\t\t\t\tc0.123,0.036,0.19,0.086,0.305,0.115c-0.013,0.013-0.026,0.025-0.038,0.038c0.013,0.008,0.025,0.017,0.038,0.025\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.03,0.015,0.042,0.019,0.051,0.057c0.07,0.017,0.282-0.01,0.349-0.044\r\n\t\t\t\tc0.108-0.107,0.244-0.176,0.356-0.28c0.039-0.036,0.039-0.072,0.095-0.095c0.038-0.02,0.087,0.023,0.14-0.013\r\n\t\t\t\tc0.062-0.046,0.08-0.127,0.083-0.222c0.015-0.011,0.03-0.021,0.044-0.032c0.012,0.047,0.011,0.056-0.013,0.089\r\n\t\t\t\tc0.053,0.074,0.056,0.142,0.165,0.095c0.004,0.002,0.008,0.004,0.013,0.006c0.006,0.051-0.02,0.065-0.032,0.114\r\n\t\t\t\tc0.052,0.027,0.057,0.174,0.057,0.248c0.019-0.002,0.038-0.004,0.057-0.007c0.002,0.017,0.004,0.034,0.006,0.051\r\n\t\t\t\tc0.048-0.012,0.047-0.013,0.089,0c0.008,0.048-0.026,0.118-0.044,0.165c0.047,0.06,0.08,0.086,0.076,0.203\r\n\t\t\t\tc0.017,0.002,0.034,0.004,0.051,0.006c0.049,0.164,0.149,0.23,0.242,0.324c-0.004,0.017-0.009,0.034-0.013,0.051\r\n\t\t\t\tc-0.019-0.002-0.038-0.004-0.057-0.006c0.002,0.017,0.004,0.034,0.006,0.051c-0.021,0.011-0.042,0.021-0.064,0.032\r\n\t\t\t\tc0.042,0.083,0.088,0.169,0.159,0.222c-0.016,0.061-0.039,0.075-0.051,0.134c0.151,0.032,0.257-0.029,0.381,0\r\n\t\t\t\tc0.011-0.013,0.021-0.025,0.032-0.038c0.037-0.032,0.005-0.05-0.019-0.089c0.023-0.06,0.036-0.108,0.095-0.133\r\n\t\t\t\tc0.019-0.011,0.012-0.005,0.038,0.006c0.004-0.017,0.009-0.034,0.013-0.051c0.11,0.001,0.175-0.008,0.254-0.025\r\n\t\t\t\tc0.021,0.015,0.042,0.03,0.064,0.045c0.004,0.004,0.008,0.008,0.013,0.013c0.059-0.108,0.119-0.216,0.178-0.324\r\n\t\t\t\tc0.002-0.04,0.004-0.08,0.006-0.121c0.011-0.057,0.039-0.09,0.057-0.133c0.016-0.027-0.011-0.058,0.006-0.102\r\n\t\t\t\tc-0.015-0.006-0.03-0.013-0.045-0.019V18.53h0.064c0.095-0.071-0.057-0.253-0.07-0.318c0.059-0.002,0.119-0.004,0.178-0.006\r\n\t\t\t\tc0.002-0.013,0.004-0.025,0.006-0.038c0.176,0.031,0.106-0.133,0.191-0.165v0.095c0.002,0.002,0.004,0.004,0.006,0.006\r\n\t\t\t\tc0.019-0.002,0.038-0.004,0.057-0.006c0.014-0.068,0.052-0.091,0.114-0.108c-0.004-0.021-0.008-0.042-0.013-0.064\r\n\t\t\t\tc0.027-0.002,0.055-0.004,0.083-0.006c-0.002-0.011-0.004-0.021-0.006-0.032c-0.002-0.004-0.004-0.008-0.006-0.013h-0.032v0.032\r\n\t\t\t\tc-0.102-0.041-0.174,0.062-0.28,0.045c-0.111-0.019-0.163-0.137-0.299-0.095H32.8c0.009-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.037-0.04,0.304,0.049,0.369,0.083c0.082,0.043,0.287-0.119,0.311-0.153h0.057c-0.002-0.095-0.048-0.099-0.07-0.178\r\n\t\t\t\tc-0.126-0.018-0.206-0.104-0.248-0.203c-0.025,0.002-0.051,0.004-0.076,0.006c-0.038-0.015-0.062-0.043-0.133-0.045\r\n\t\t\t\tc-0.002-0.004-0.004-0.008-0.006-0.013c0.046-0.039-0.052-0.296-0.025-0.4c0.023-0.006,0.047-0.013,0.07-0.019\r\n\t\t\t\tc0.055-0.173,0-0.204-0.019-0.356c0.038,0.013,0.076,0.025,0.114,0.038c0.021-0.028,0.042-0.055,0.064-0.083\r\n\t\t\t\tc0.016-0.027-0.004-0.073-0.013-0.115h0.127c0.08-0.112,0.117-0.111,0.222-0.191c0.05-0.038,0.05-0.096,0.114-0.127\r\n\t\t\t\tc0.023,0.015,0.047,0.03,0.07,0.044c0.099-0.068,0.199-0.136,0.299-0.203c0.071-0.087,0.077-0.196,0.184-0.248\r\n\t\t\t\tc0.004-0.006,0.008-0.013,0.013-0.019c-0.034-0.052-0.095-0.08-0.121-0.133c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.053-0.023,0.128-0.081,0.152-0.133c0.023-0.036-0.022-0.072-0.044-0.102c0.077-0.104,0.108-0.037,0.184-0.095\r\n\t\t\t\tc0.091-0.069,0.094-0.193,0.21-0.248c0.051,0.034,0.102,0.068,0.153,0.102c0.022,0.014,0.223-0.034,0.305-0.032\r\n\t\t\t\tc0.078,0.06,0.117,0.113,0.261,0.115c0.011,0.019,0.021,0.038,0.032,0.057c0.014,0.037-0.006,0.12-0.019,0.159\r\n\t\t\t\tc0.017,0.019,0.034,0.038,0.051,0.057c0.013,0.018,0.009,0.038,0.006,0.076c-0.04-0.002-0.081-0.004-0.121-0.006\r\n\t\t\t\tc-0.098,0.028-0.543,0.488-0.61,0.585h-0.032c-0.013-0.019-0.025-0.038-0.038-0.057v-0.013c-0.09,0.094-0.016,0.207-0.159,0.28\r\n\t\t\t\tc-0.059-0.024-0.1-0.032-0.159-0.013c0.004,0.027,0.008,0.055,0.013,0.083c-0.073,0.067-0.121,0.102-0.153,0.216\r\n\t\t\t\tc0.026,0.023,0.063,0.043,0.089,0.064c0,0.094-0.02,0.143-0.032,0.216c0.034,0.053,0.068,0.106,0.102,0.159\r\n\t\t\t\tc-0.008,0.04-0.017,0.08-0.025,0.121c-0.035,0.188-0.011,0.31,0.127,0.381c0.058,0.03,0.07,0.065,0.146,0.038l-0.006,0.076\r\n\t\t\t\tc0.053-0.018,0.094-0.039,0.172-0.038c-0.011,0.023-0.021,0.047-0.032,0.07c0.02,0.042,0.039,0.071,0.083,0.089\r\n\t\t\t\tc0.067,0.051,0.193-0.016,0.235-0.038v0.026c0.065-0.014,0.081-0.027,0.133,0c0.043-0.058,0.077-0.069,0.153-0.095\r\n\t\t\t\tc0.004,0.008,0.008,0.017,0.013,0.025c0.051-0.028,0.141-0.037,0.165-0.095c0.027,0.019,0.055,0.038,0.083,0.057h0.006\r\n\t\t\t\tc0.017-0.083,0.1-0.04,0.152-0.083c0.028-0.017,0.04-0.057,0.045-0.095v0.057c0.036,0.013,0.072,0.025,0.108,0.038\r\n\t\t\t\tc0.026-0.027,0.034-0.043,0.083-0.051c0.021,0.013,0.042,0.025,0.064,0.038c0.059-0.057,0.198-0.098,0.299-0.108\r\n\t\t\t\tc0.008-0.015,0.017-0.03,0.025-0.045c0.029-0.003-0.01,0.079-0.019,0.114c0.148,0.215,0.345-0.041,0.489,0.229\r\n\t\t\t\tc-0.015,0.011-0.03,0.021-0.045,0.032c-0.094-0.003-0.14-0.044-0.222-0.07c-0.076,0.006-0.1,0.066-0.14,0.108\r\n\t\t\t\tc-0.053-0.012-0.053-0.037-0.102-0.025c-0.016,0.027-0.014,0.015-0.006,0.045c-0.031,0.029-0.052,0.003-0.076-0.025\r\n\t\t\t\tc-0.013,0.002-0.025,0.004-0.038,0.006c-0.004,0.015-0.008,0.03-0.013,0.045c0.032,0.038,0.067,0.051,0.064,0.108\r\n\t\t\t\tc-0.008-0.008-0.017-0.017-0.025-0.025c-0.018-0.007-0.058,0.067-0.108,0.064c-0.163-0.011-0.296-0.042-0.451-0.07\r\n\t\t\t\tc-0.078-0.014-0.166,0.024-0.203-0.006c-0.017,0.015-0.034,0.03-0.051,0.044c-0.049-0.011-0.098-0.021-0.146-0.032\r\n\t\t\t\tc-0.004,0.015-0.008,0.03-0.013,0.045c-0.044-0.007-0.062,0.006-0.102-0.006c-0.085,0.046-0.145,0.095-0.28,0.102\r\n\t\t\t\tc0.006,0.043,0.013,0.056-0.025,0.07c0.023,0.062,0.023,0.099,0.044,0.165c0.022,0,0.035-0.011,0.057-0.026\r\n\t\t\t\tc-0.002,0.057-0.004,0.115-0.006,0.172c0.057,0.016,0.08,0.031,0.121,0.051c0.025-0.023,0.051-0.047,0.076-0.07\r\n\t\t\t\tc0.013,0.009,0.025,0.017,0.038,0.025c-0.021,0.16-0.09,0.268-0.038,0.451c-0.041,0.106-0.222,0.17-0.324,0.076\r\n\t\t\t\tc-0.015-0.04-0.03-0.081-0.044-0.121c-0.047-0.034-0.093-0.068-0.14-0.102v-0.044c-0.113,0.004-0.154,0.056-0.267,0.057\r\n\t\t\t\tc-0.034,0.043-0.068,0.085-0.102,0.127c-0.002,0.044-0.004,0.089-0.006,0.133c-0.032,0.025-0.064,0.051-0.095,0.076\r\n\t\t\t\tc-0.068,0.143,0.034,0.501,0.064,0.578c-0.009,0.025,0,0,0.013,0.025c-0.011,0.002-0.021,0.004-0.032,0.006\r\n\t\t\t\tc0.011,0.035,0.018,0.047,0.013,0.089c-0.081,0.046-0.249,0.013-0.362,0.007c-0.016,0.05-0.021,0.111-0.025,0.165\r\n\t\t\t\tc-0.125,0.066-0.209,0.161-0.388,0.095c-0.009-0.053-0.026-0.086-0.051-0.121c0.005-0.087-0.213-0.034-0.28-0.013\r\n\t\t\t\tc-0.291,0.091-0.499,0.261-0.852,0.286c0.004,0.069,0.012,0.088,0.013,0.146c-0.08-0.028-0.139-0.055-0.21-0.083\r\n\t\t\t\tc-0.004-0.036-0.008-0.072-0.013-0.108c-0.081-0.042-0.175,0.016-0.222-0.121c-0.058-0.004-0.427,0.12-0.458,0.197h-0.07\r\n\t\t\t\tc-0.004-0.013-0.009-0.025-0.013-0.038h-0.006c-0.033,0.022-0.061,0.024-0.095,0.013c-0.004-0.006-0.008-0.013-0.013-0.019\r\n\t\t\t\tc0.045-0.038,0.069-0.048,0.102-0.102c-0.006-0.013-0.013-0.025-0.019-0.038c-0.049,0.004-0.097,0.009-0.146,0.013\r\n\t\t\t\tc-0.057-0.013-0.065-0.053-0.121-0.025c-0.014-0.043-0.014-0.04-0.064-0.038c0.059-0.095-0.063-0.185-0.133-0.21\r\n\t\t\t\tc0.013-0.092,0.038-0.176,0.089-0.229c-0.006-0.011-0.013-0.021-0.019-0.032c0.028-0.002,0.055-0.004,0.083-0.006\r\n\t\t\t\tc0.023-0.081,0.102-0.094,0.064-0.191c0.021-0.011,0.042-0.021,0.064-0.032c0.013,0.017,0.025,0.034,0.038,0.051\r\n\t\t\t\tc0.019-0.007,0.038-0.013,0.057-0.019c0.011-0.02,0.068-0.131,0.038-0.159c-0.051-0.002-0.102-0.004-0.153-0.006\r\n\t\t\t\tc-0.032-0.019-0.031-0.102-0.032-0.153c-0.068-0.033-0.163-0.022-0.254-0.019c-0.006,0.053-0.013,0.106-0.019,0.159\r\n\t\t\t\tc-0.013,0.014-0.02,0.015-0.044,0.019c-0.013-0.03-0.025-0.059-0.038-0.089c-0.049,0.026-0.056,0.1-0.095,0.121\r\n\t\t\t\tc-0.035,0.019-0.1-0.034-0.133-0.032c-0.071,0.107,0.012,0.181,0.019,0.286c-0.031,0.04-0.055,0.066-0.076,0.121\r\n\t\t\t\tc0.017,0.008,0.034,0.017,0.051,0.025c0.008-0.011,0.017-0.021,0.025-0.032c0.03,0.025,0.028,0.047,0.083,0.051\r\n\t\t\t\tc0.009,0.061-0.008,0.193,0.006,0.242c0.015,0.052,0.078,0.085,0.095,0.146c-0.028,0.028-0.059,0.044-0.108,0.051\r\n\t\t\t\tc0.012,0.043,0.042,0.03,0.095,0.025c-0.011,0.017-0.017,0.019-0.032,0.032c0.015,0.015,0.03,0.03,0.045,0.044\r\n\t\t\t\tc-0.011,0.008-0.021,0.017-0.032,0.025c0.002,0.011,0.004,0.021,0.006,0.032c0.023,0.011,0.047,0.021,0.07,0.032\r\n\t\t\t\tc-0.046,0.024-0.104,0.005-0.159,0c-0.019,0.061-0.035,0.076-0.006,0.133c-0.032-0.011-0.063-0.021-0.095-0.032\r\n\t\t\t\tc0.008,0.019,0.017,0.038,0.025,0.057c-0.006,0.008-0.013,0.017-0.019,0.025c-0.006,0.002-0.013,0.004-0.019,0.006\r\n\t\t\t\tc-0.006-0.004-0.013-0.008-0.019-0.013c-0.005-0.039-0.011-0.061-0.025-0.108c-0.107-0.001-0.208,0.008-0.28,0.038\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.008,0.049,0.031,0.043,0.057,0.07c-0.002,0.006-0.004,0.013-0.006,0.019h-0.025\r\n\t\t\t\tc-0.023-0.022-0.063-0.046-0.076-0.076c-0.123-0.051-0.317,0.05-0.413,0.083c-0.013,0.055-0.013,0.076-0.013,0.146\r\n\t\t\t\tc0.027,0.002,0.055,0.004,0.083,0.006c-0.015,0.024-0.023,0.03-0.025,0.07c0.024,0.016,0.034,0.024,0.076,0.026\r\n\t\t\t\tc-0.013,0.071-0.047,0.063-0.076,0.108c-0.051,0.033-0.092-0.002-0.165-0.013c0.015-0.036,0.015-0.051,0.013-0.108\r\n\t\t\t\tc0.026,0.002,0.019,0.001,0.044-0.006c0.006-0.013,0.013-0.025,0.019-0.038c-0.018-0.035-0.039-0.055-0.07-0.076\r\n\t\t\t\tc-0.032,0.008-0.064,0.017-0.095,0.026c-0.038,0.095-0.076,0.191-0.114,0.286c-0.074,0.064-0.148,0.127-0.222,0.191\r\n\t\t\t\tc0.032,0.014,0.055,0.038,0.07,0.07c-0.053,0.064-0.14-0.005-0.216,0.025c-0.055,0.036-0.11,0.072-0.165,0.108\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.007c-0.047,0.023-0.093,0.047-0.14,0.07c-0.038,0.119,0.011,0.258-0.089,0.324\r\n\t\t\t\tc-0.114,0.075-0.266,0.05-0.349,0.153c-0.002,0.013-0.004,0.025-0.006,0.038c0.021,0.006,0.042,0.013,0.064,0.019\r\n\t\t\t\tc-0.12,0.118-0.282-0.026-0.426,0.044c-0.023-0.044-0.033-0.075-0.025-0.14c-0.075,0.012-0.121,0.009-0.203,0\r\n\t\t\t\tc0.011,0.077,0.049,0.161,0.108,0.191c-0.002,0.083-0.013,0.145,0.025,0.197c-0.024,0.019-0.065,0.026-0.108,0.025v-0.044\r\n\t\t\t\tc-0.055,0.027-0.204,0.061-0.273,0.057c-0.028-0.036-0.055-0.072-0.083-0.108c-0.045,0.004-0.089,0.008-0.133,0.013\r\n\t\t\t\tc-0.006,0.015-0.013,0.03-0.019,0.044c-0.024,0.015-0.108,0.007-0.108,0.007c-0.004-0.004-0.009-0.009-0.013-0.013\r\n\t\t\t\tc-0.076,0.006-0.132,0.063-0.222,0.063c-0.002,0.028-0.004,0.055-0.006,0.083c0.038-0.014,0.077-0.021,0.133-0.019\r\n\t\t\t\tc-0.015,0.03-0.018,0.038-0.057,0.045c-0.01,0.017,0.037,0.021,0.057,0.025c0.002,0.009,0.004,0.017,0.006,0.025v0.006\r\n\t\t\t\tc-0.038,0.006-0.076,0.013-0.114,0.019c0.018,0.035,0.065,0.028,0.089,0.057c0.002,0.011,0.004,0.021,0.006,0.032\r\n\t\t\t\tc0.154-0.013,0.334,0.029,0.445,0.127c0.028-0.009,0.055-0.017,0.083-0.025c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc-0.011,0.021-0.021,0.043-0.032,0.064c0.036,0.046,0.118,0.075,0.165,0.108c-0.011,0.023-0.021,0.046-0.032,0.07\r\n\t\t\t\tc0.04,0.049,0.08,0.097,0.121,0.146c0.135,0.068,0.112,0,0.184,0.153c-0.021,0.04-0.045,0.073-0.051,0.127\r\n\t\t\t\tc0.051,0.067,0.112,0.106,0.133,0.203c-0.034-0.042-0.068-0.085-0.102-0.127h-0.006c-0.04,0.073-0.053,0.198-0.051,0.305\r\n\t\t\t\tc0.011-0.008,0.021-0.017,0.032-0.025c0.008,0.01,0.017,0.021,0.025,0.032c-0.017,0.008-0.034,0.017-0.051,0.025\r\n\t\t\t\tc-0.034,0.153-0.066,0.309-0.121,0.426c-0.162,0.027-0.245-0.039-0.375-0.076c-0.077,0.095-0.35,0.058-0.515,0.032\r\n\t\t\t\tc-0.075-0.012-0.339-0.086-0.356-0.083c-0.076,0.017-0.158,0.089-0.267,0.07c-0.137-0.023-0.23-0.099-0.369-0.044\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102h-0.083c-0.104,0.004-0.159,0.031-0.197,0.102c0.002,0.023,0.004,0.047,0.006,0.07\r\n\t\t\t\tc0.094,0.019,0.139,0.07,0.165,0.153c0.008,0.014-0.059,0.211-0.076,0.241c0.095,0.198,0.023,0.738-0.14,0.826\r\n\t\t\t\tc0.005,0.08-0.01,0.143-0.038,0.203c0.015,0.029,0.018,0.027,0.051,0.038c0.039-0.018,0.066-0.029,0.083-0.07\r\n\t\t\t\tc0.006-0.004,0.013-0.009,0.019-0.013c0.009,0.017,0.017,0.034,0.025,0.051c-0.024,0.033-0.05,0.045-0.108,0.045v0.006\r\n\t\t\t\tc0.004,0.017,0.009,0.034,0.013,0.051c0.035,0.008,0.086-0.006,0.121-0.019c0.004,0.004,0.008,0.008,0.013,0.013\r\n\t\t\t\tc-0.011,0.052-0.024,0.115-0.032,0.165c-0.002,0.004-0.004,0.008-0.006,0.013c0.016,0.028,0.041,0.09,0.025,0.152\r\n\t\t\t\tc-0.012,0.047-0.061,0.108-0.044,0.159v0.013c0.057-0.028,0.12-0.061,0.216-0.038c0.03,0.007,0.054,0.035,0.102,0.026\r\n\t\t\t\tc0.044-0.021,0.089-0.042,0.133-0.064c0.148-0.039,0.293,0.081,0.286,0.191c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.017,0.104,0.101,0.213,0.229,0.178c0.011-0.013,0.01-0.013,0.013-0.038h0.006c0.002,0.011,0.004,0.021,0.006,0.032h0.006\r\n\t\t\t\tc0.028-0.117,0.068-0.096,0.178-0.133c0.032-0.028,0.064-0.055,0.095-0.083c0.167,0.002,0.335,0.004,0.502,0.006\r\n\t\t\t\tc0.033-0.011,0.061-0.035,0.114-0.044c0.013,0.011,0.025,0.021,0.038,0.032c0.076-0.056,0.065-0.091,0.114-0.178\r\n\t\t\t\tc0.05-0.088,0.175-0.085,0.292-0.108c0.01-0.028-0.012-0.031-0.006-0.064c0.026-0.154,0.176-0.261,0.299-0.324v-0.019\r\n\t\t\t\tc-0.032-0.017-0.064-0.034-0.095-0.051c-0.023-0.053-0.047-0.106-0.07-0.159c0.031-0.147,0.225-0.389,0.356-0.438\r\n\t\t\t\tc0.002-0.004,0.004-0.009,0.006-0.013c-0.016-0.018-0.023-0.016-0.032-0.044c0.086-0.149,0.264-0.073,0.394-0.159\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.074-0.067,0.212-0.068,0.273-0.146c0.075-0.198-0.151-0.33,0.102-0.508\r\n\t\t\t\tc0.16-0.113,0.187,0.005,0.33,0.006c0.036,0,0.081-0.033,0.133-0.013c0.074,0.029,0.117,0.137,0.242,0.115\r\n\t\t\t\tc0.24-0.044,0.308-0.187,0.47-0.292c0.047-0.013,0.093-0.026,0.14-0.038c0.025-0.028,0.051-0.055,0.076-0.083\r\n\t\t\t\tc0.129-0.101,0.256-0.104,0.426-0.019c0.221,0.111,0.209,0.479,0.419,0.61c0.184,0.115,0.33,0.293,0.502,0.381\r\n\t\t\t\tc0.155,0.08,0.306,0.025,0.343,0.229c0.03-0.008,0.059-0.017,0.089-0.025h0.006c0.013,0.015,0.025,0.03,0.038,0.044\r\n\t\t\t\tc-0.011,0.004-0.021,0.009-0.032,0.013c-0.004,0.008-0.009,0.017-0.013,0.025c0.038-0.011,0.076-0.021,0.114-0.032\r\n\t\t\t\tc0.021,0.019,0.042,0.038,0.064,0.057c0.009,0.041,0.003,0.066-0.013,0.095c0.045,0.027,0.089,0.055,0.133,0.083\r\n\t\t\t\tc0.023,0.012,0.039-0.004,0.07-0.019c0.034,0.01,0.181,0.419,0.172,0.451v0.013c-0.023-0.002-0.047-0.004-0.07-0.006\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.02,0.067,0.004,0.11-0.064,0.14v0.076c0.013,0.009,0.025,0.017,0.038,0.025h0.083\r\n\t\t\t\tc0.039-0.064,0.067-0.14,0.146-0.165c0.016-0.034,0.005-0.062,0-0.108c0.045-0.043,0.063-0.067,0.159-0.064\r\n\t\t\t\tc0.011-0.013,0.021-0.026,0.032-0.038c-0.026-0.042-0.026-0.089-0.006-0.134c-0.061-0.034-0.123-0.068-0.184-0.102\r\n\t\t\t\tc0.002-0.111,0.086-0.282,0.197-0.267c-0.006,0.095,0.142,0.064,0.203,0.108c0.03,0.023,0.006,0.04,0.025,0.076\r\n\t\t\t\tc0.036,0.023,0.072,0.047,0.108,0.07c0.015-0.044,0.03-0.089,0.045-0.133c-0.196-0.193-0.436-0.359-0.744-0.438\r\n\t\t\t\tc-0.011-0.013-0.021-0.025-0.032-0.038c0.032-0.027,0.049-0.054,0.095-0.07c-0.002-0.011-0.004-0.021-0.006-0.032\r\n\t\t\t\tc-0.047-0.073-0.327,0.011-0.413-0.076c-0.08-0.081-0.209-0.198-0.254-0.305c-0.028-0.067-0.023-0.157-0.064-0.21\r\n\t\t\t\tc-0.031-0.04-0.088-0.05-0.133-0.076c-0.15-0.087-0.231-0.143-0.273-0.343c0.027-0.031,0.056-0.043,0.076-0.083\r\n\t\t\t\tc-0.031-0.037-0.057-0.035-0.057-0.108c-0.015-0.002-0.03-0.004-0.044-0.006c0.008-0.021,0.017-0.042,0.025-0.064\r\n\t\t\t\tc0.044-0.029,0.154-0.064,0.248-0.07c0.002-0.017,0.004-0.034,0.006-0.051c0.08,0.003,0.086,0.005,0.159,0\r\n\t\t\t\tc0.011,0.017,0.021,0.034,0.032,0.051c-0.019,0.025-0.035,0.035-0.076,0.038c0.021,0.098,0.071,0.175,0.102,0.254\r\n\t\t\t\tc0.033-0.017,0.055-0.041,0.083-0.064c0.017-0.047,0.034-0.093,0.051-0.14c0.256,0.103,0.086,0.31,0.343,0.388\r\n\t\t\t\tc-0.036,0.002-0.072,0.004-0.108,0.006v0.006c0.075,0.108,0.185,0.165,0.267,0.267c0.025,0.026,0.059-0.025,0.108-0.013\r\n\t\t\t\tc0.006,0.001,0.153,0.061,0.165,0.07c0.049,0.035,0.089,0.097,0.14,0.133c0.133,0.095,0.272,0.155,0.407,0.248\r\n\t\t\t\tc0.03,0.036,0.059,0.072,0.089,0.108c0.042,0.021,0.085,0.042,0.127,0.064c0.003,0.051,0.002,0.06-0.038,0.07\r\n\t\t\t\tc-0.006,0.043,0.016,0.226,0.013,0.235c-0.017,0.032-0.034,0.064-0.051,0.095c0.022,0.032,0.038,0.045,0.038,0.102\r\n\t\t\t\tc-0.011-0.002-0.021-0.004-0.032-0.006c0.027,0.077,0.144,0.098,0.191,0.159c0.006,0.03,0.013,0.059,0.019,0.089\r\n\t\t\t\tc0.04,0.101,0.153,0.191,0.28,0.172c0.008,0.008,0.017,0.017,0.025,0.025v0.013c-0.027,0.034-0.065,0.029-0.108,0.038v0.006\r\n\t\t\t\tc0.036,0.055,0.072,0.11,0.108,0.165c0.103-0.009,0.227-0.061,0.349-0.025c0.077,0.022,0.119,0.081,0.223,0.089v0.006\r\n\t\t\t\tc-0.101,0.134-0.204-0.021-0.324-0.038c-0.039-0.005-0.082,0.035-0.159,0.032c-0.021,0.038-0.042,0.076-0.064,0.114\r\n\t\t\t\tc0.038,0.047,0.076,0.093,0.114,0.14c0.014,0.044-0.016,0.099-0.013,0.146c0.019,0.017,0.038,0.034,0.057,0.051\r\n\t\t\t\tc0.019-0.015,0.038-0.03,0.057-0.044c0.045-0.022,0.097,0.086,0.108,0.14c0.004,0.002,0.009,0.004,0.013,0.007\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.056-0.027,0.09-0.001,0.14,0.025c-0.005-0.136-0.055-0.195-0.095-0.292v-0.032\r\n\t\t\t\tc0.034,0.011,0.068,0.021,0.102,0.032h0.013c-0.006,0.013-0.013,0.025-0.019,0.038c0.017,0.006,0.034,0.013,0.051,0.019\r\n\t\t\t\tc0.019-0.035,0.029-0.044,0.083-0.045c-0.023-0.029-0.028-0.02-0.025-0.064c-0.021,0.004-0.042,0.009-0.064,0.013\r\n\t\t\t\tc-0.022-0.048-0.026-0.074-0.057-0.108c0.047-0.015,0.093-0.03,0.14-0.044c0.05,0.006,0.107,0.078,0.121,0.121\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c0.013-0.011,0.025-0.021,0.038-0.032c-0.013-0.04-0.025-0.081-0.038-0.121\r\n\t\t\t\tc0.008-0.002,0.017-0.004,0.025-0.006c-0.005-0.06-0.342-0.233-0.419-0.248v-0.006c0.044-0.01,0.071-0.023,0.102-0.044\r\n\t\t\t\tc-0.013-0.03-0.026-0.059-0.038-0.089v-0.007c0.03-0.019,0.042-0.017,0.083-0.006c0.014,0.026,0.015,0.037,0.013,0.07h0.006\r\n\t\t\t\tc0.006-0.002,0.013-0.004,0.019-0.006c0.008-0.011,0.017-0.021,0.025-0.032c-0.079-0.096-0.169-0.193-0.222-0.311\r\n\t\t\t\tc0.002-0.047,0.015-0.064,0.038-0.089c-0.011-0.013-0.021-0.025-0.032-0.038c0.035-0.015,0.06-0.023,0.076-0.057\r\n\t\t\t\tc0.008,0.002,0.017,0.004,0.025,0.006c0.002,0.009,0.004,0.017,0.006,0.025c-0.011,0.007-0.021,0.013-0.032,0.019\r\n\t\t\t\tc0.04,0.08,0.139,0.069,0.146,0.184c0.032,0.004,0.064,0.008,0.095,0.013h0.013c-0.035-0.042-0.079-0.056-0.108-0.108v-0.006\r\n\t\t\t\tc0.076,0.003,0.119,0.051,0.146,0.102c0.015-0.002,0.03-0.004,0.044-0.006c0.002-0.006,0.004-0.013,0.006-0.019\r\n\t\t\t\tc-0.024-0.041-0.06-0.046-0.083-0.089c0.011-0.008,0.021-0.017,0.032-0.026c0.037,0.007,0.067,0.015,0.083,0.045\r\n\t\t\t\tc0.017,0.015,0.034,0.03,0.051,0.045c0.006-0.004,0.013-0.009,0.019-0.013v-0.006c-0.062-0.077-0.15-0.094-0.191-0.197v-0.006\r\n\t\t\t\tc0.134-0.026,0.108,0.02,0.21-0.07c0.039,0.003,0.034,0.001,0.044,0.032c0.079,0,0.103-0.025,0.153-0.051\r\n\t\t\t\tc0.043,0.102,0.272-0.012,0.286,0.121c0.008-0.009,0.017-0.017,0.025-0.025c0.034,0.021,0.105,0.031,0.146,0.044\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.032,0.019-0.064,0.038-0.095,0.057c-0.008,0.032-0.017,0.064-0.025,0.095\r\n\t\t\t\tc0.066-0.021,0.091-0.085,0.14-0.121c0.061-0.028,0.123-0.055,0.184-0.083c0.015-0.03,0.03-0.059,0.044-0.089\r\n\t\t\t\tc0.038-0.022,0.1,0.002,0.153-0.019c0.136-0.054,0.112,0.009,0.273,0.013c0.026-0.03,0.045-0.056,0.063-0.095\r\n\t\t\t\tc-0.045-0.06-0.142-0.051-0.21-0.089c-0.087-0.049-0.178-0.313-0.267-0.299v-0.051c0.036-0.035,0.047-0.056,0.102-0.076\r\n\t\t\t\tc0.016-0.084,0.038-0.153,0.051-0.222c0.025-0.013,0.108-0.018,0.121-0.038c0.004-0.04,0.008-0.08,0.013-0.121\r\n\t\t\t\tc0.036-0.199,0.06-0.377,0.286-0.388c0.023-0.049,0.047-0.097,0.07-0.146c-0.015-0.031-0.034-0.038-0.051-0.064\r\n\t\t\t\tc-0.032-0.104,0.093-0.097,0.153-0.133c0.199-0.119,0.104-0.321,0.509-0.311c0.008-0.015,0.017-0.03,0.025-0.045\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.021,0.025,0.042,0.051,0.064,0.076v0.013c-0.023,0.021-0.047,0.042-0.07,0.064v0.013\r\n\t\t\t\tc0.097,0.133,0.265,0.085,0.458,0.089c0.013,0.025,0.026,0.051,0.038,0.076c-0.067,0.074-0.25,0.106-0.331,0.184\r\n\t\t\t\tc0.004,0.008,0.009,0.017,0.013,0.025c0.2,0.038,0.367,0.002,0.254,0.267v0.019c0.285,0.052,0.158-0.026,0.337-0.089\r\n\t\t\t\tc0.051-0.004,0.102-0.009,0.153-0.013c0.034-0.028,0.068-0.055,0.102-0.083c0.06-0.018,0.089,0.017,0.133,0.025\r\n\t\t\t\tc0.038-0.006,0.076-0.013,0.114-0.019c0.023-0.032,0.052-0.072,0.064-0.114c-0.064-0.008-0.127-0.017-0.191-0.025\r\n\t\t\t\tc-0.072,0.007-0.141,0.064-0.235,0.038c-0.024-0.123-0.199-0.258-0.337-0.299c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.103-0.029,0.197-0.016,0.305-0.019c0.037-0.039,0.065-0.066,0.083-0.127c0.004-0.002,0.009-0.004,0.013-0.006\r\n\t\t\t\tc0.015,0.013,0.03,0.025,0.044,0.038c0.022,0.013,0.019,0.008,0.045,0c0.05-0.015,0.061-0.049,0.102-0.063\r\n\t\t\t\tc0.125-0.023,0.25-0.047,0.375-0.07c0.023-0.025,0.047-0.051,0.07-0.076c0.074-0.008,0.148-0.017,0.222-0.025\r\n\t\t\t\tc0.013-0.013,0.007-0.002,0.013-0.025c0.093-0.017,0.186-0.034,0.28-0.051c0.011,0.021,0.021,0.042,0.032,0.064\r\n\t\t\t\tc-0.099,0.079-0.25,0.146-0.413,0.152c-0.008,0.011-0.017,0.021-0.026,0.032c0.074,0.053,0.148,0.098,0.197,0.178\r\n\t\t\t\tc-0.034,0.026-0.077,0.034-0.14,0.032c-0.028,0.081-0.083,0.13-0.089,0.229c-0.049,0.026-0.154,0.037-0.21,0.051\r\n\t\t\t\tc0.044,0.059,0.104,0.147,0.159,0.197c0.043,0.008,0.057-0.002,0.089-0.019c0.041,0.027,0.058,0.069,0.095,0.095\r\n\t\t\t\tc0.044,0.013,0.089,0.025,0.133,0.038c0.105,0.049,0.192,0.14,0.28,0.21c0.047,0.038,0.116,0.138,0.178,0.133\r\n\t\t\t\tc-0.004,0.019-0.008,0.038-0.013,0.057c0.102,0.075,0.311,0.102,0.381,0.21c0.015,0.053,0.03,0.106,0.045,0.159\r\n\t\t\t\tc0.079,0.289-0.089,0.388-0.324,0.445c-0.131,0.031-0.222-0.051-0.337-0.032c-0.053,0.017-0.106,0.034-0.159,0.051\r\n\t\t\t\tc-0.098,0.022-0.277-0.021-0.381-0.038c-0.126-0.021-0.151-0.13-0.292-0.076c-0.078-0.037-0.078-0.076-0.121-0.146\r\n\t\t\t\tc-0.029-0.021-0.102,0.03-0.172,0.013c-0.083-0.021-0.076-0.089-0.121-0.146c-0.173,0.111-0.323-0.021-0.54,0.032\r\n\t\t\t\tc-0.196,0.047-0.34,0.172-0.515,0.229c0.002,0.017,0.004,0.034,0.006,0.051c-0.138,0.074-0.202,0.007-0.318-0.013\r\n\t\t\t\tc-0.019,0.006-0.038,0.013-0.057,0.019c-0.093-0.008-0.186-0.017-0.28-0.025c-0.013,0.025-0.025,0.051-0.038,0.076\r\n\t\t\t\tc0.029,0.031,0.069,0.042,0.083,0.089c0.053-0.002,0.106-0.004,0.159-0.006v0.006c-0.072,0.023-0.189,0.032-0.28,0.032\r\n\t\t\t\tc-0.017,0.023-0.026,0.025-0.026,0.051c0.026,0.006,0.051,0.013,0.076,0.019c0.006,0.004,0.013,0.009,0.019,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.025c-0.114-0.018-0.214-0.013-0.337-0.006c0.011-0.013,0.021-0.025,0.032-0.038\r\n\t\t\t\tc-0.036-0.015-0.055-0.014-0.089-0.007c-0.002,0.004-0.004,0.009-0.006,0.013c0.013,0.006,0.026,0.013,0.038,0.019v0.019\r\n\t\t\t\tc-0.067,0.022-0.142,0.01-0.159-0.044c-0.091,0.011-0.203,0.041-0.254,0.095c-0.035,0.037,0.004,0.057-0.07,0.064\r\n\t\t\t\tc-0.01,0.071-0.028,0.13-0.032,0.191c0.087-0.013,0.174-0.025,0.261-0.038v0.006c-0.015,0.024-0.03,0.039-0.057,0.051\r\n\t\t\t\tc-0.015,0.017-0.03,0.034-0.045,0.051c0.035,0.006,0.049,0.02,0.064,0.045c0.014,0.023-0.007,0.02-0.013,0.064h0.057\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.025c-0.021,0.025-0.052,0.036-0.089,0.045c-0.007,0.025,0.01,0.054,0.038,0.076\r\n\t\t\t\tc0.034,0.045,0.026,0.031-0.019,0.063c-0.032-0.003-0.055-0.025-0.089-0.044c-0.011,0.023-0.021,0.047-0.032,0.07v0.045\r\n\t\t\t\tc0.105,0.013,0.133,0.046,0.222,0.07c0.003,0.06-0.021,0.124,0.006,0.165c0.034,0.021,0.068,0.042,0.102,0.064\r\n\t\t\t\tc0.002,0.008,0.004,0.017,0.006,0.025c-0.028,0.011-0.055,0.021-0.083,0.032c0.006,0.013,0.013,0.025,0.019,0.038\r\n\t\t\t\tc0.068,0.006,0.136,0.013,0.203,0.019c0.002,0.004,0.004,0.008,0.006,0.013c-0.017,0.019-0.024,0.019-0.032,0.051\r\n\t\t\t\tc0.006,0.015,0.013,0.03,0.019,0.045c0.004,0.002,0.009,0.004,0.013,0.006c0.021-0.021,0.042-0.042,0.064-0.063\r\n\t\t\t\tc0.085-0.003,0.086,0.023,0.146,0.051c0.029,0.014,0.049-0.015,0.076-0.038c0.025,0.059,0.051,0.119,0.076,0.178\r\n\t\t\t\tc0.099,0.031,0.23-0.025,0.299,0.019c0.013-0.002,0.026-0.004,0.038-0.006c0.015-0.072,0.03-0.144,0.044-0.216\r\n\t\t\t\tc0.142-0.018,0.288,0.018,0.388,0.083c0.073,0.048,0.108,0.143,0.203,0.172c0.136,0.041,0.301-0.026,0.381-0.045\r\n\t\t\t\tc0.042-0.082,0.104-0.102,0.159-0.165c0.138,0.001,0.177,0.055,0.286,0.07c0.037-0.038,0.085-0.067,0.121-0.114h0.025\r\n\t\t\t\tc0.013,0.017,0.025,0.034,0.038,0.051c0.002,0.013,0.004,0.025,0.006,0.038c-0.039,0.043-0.09,0.068-0.127,0.114\r\n\t\t\t\tc0.017,0.03,0.034,0.059,0.051,0.089c-0.011,0.057-0.038,0.107-0.064,0.153c0.087,0.115,0.021,0.195,0.076,0.33\r\n\t\t\t\tc-0.146,0.144-0.206,0.407-0.305,0.578c-0.008,0.042-0.017,0.085-0.025,0.127c-0.041,0.134-0.077,0.258-0.172,0.337\r\n\t\t\t\tc0.074,0.186,0.148,0.373,0.222,0.559c0.012,0.018,0.023,0.014,0.051,0.032c-0.023,0.137-0.084,0.285-0.095,0.407\r\n\t\t\t\tc0.036,0.002,0.072,0.004,0.108,0.006c0.047,0.059,0.093,0.119,0.14,0.178c0.104,0.17,0.188,0.32,0.299,0.477\r\n\t\t\t\tc0.084,0.118,0.206,0.226,0.165,0.413c0.085,0.117,0.223,0.149,0.324,0.248c0.066,0.119,0.131,0.237,0.197,0.356\r\n\t\t\t\tc0.066,0.127-0.002,0.313,0.051,0.457c0.051,0.072,0.102,0.144,0.152,0.216c0.07,0.096,0.225,0.114,0.299,0.203\r\n\t\t\t\tc0.089,0.182,0.178,0.364,0.267,0.546c0.034,0.026,0.068,0.051,0.102,0.076c0.086,0.071,0.195,0.232,0.235,0.343\r\n\t\t\t\tc0.011,0.068,0.021,0.136,0.032,0.203c-0.008,0.039-0.042,0.068-0.032,0.127c0.03,0.172,0.113,0.353,0.165,0.496v0.216\r\n\t\t\t\tc0.095,0.205,0.383,0.166,0.553,0.057c0.057-0.047,0.114-0.093,0.172-0.14c0.094-0.028,0.217,0.012,0.299-0.013\r\n\t\t\t\tc0.128-0.039,0.228-0.133,0.343-0.172c0.078-0.026,0.163,0.016,0.229-0.019c0.069-0.036,0.087-0.124,0.152-0.159\r\n\t\t\t\tc0.238-0.13,0.547-0.129,0.769-0.267c0.062-0.038,0.046-0.087,0.076-0.159c0.029-0.07,0.139-0.142,0.21-0.172\r\n\t\t\t\tc0.121-0.04,0.241-0.081,0.362-0.121c0.07,0.008,0.14,0.017,0.21,0.025c0.025-0.015,0.051-0.03,0.076-0.045\r\n\t\t\t\tc0.045-0.091,0.016-0.205,0.108-0.248c0.096-0.045,0.186,0.021,0.273-0.051c0.032-0.027,0.027-0.071,0.044-0.114\r\n\t\t\t\tc0.048-0.12,0.19-0.153,0.349-0.159c0.009-0.116-0.012-0.304,0.026-0.419c0.056-0.024,0.123,0.021,0.172-0.006\r\n\t\t\t\tc0.057-0.042,0.064-0.147,0.102-0.21c0.042-0.04,0.085-0.08,0.127-0.121c0.059-0.074,0.114-0.154,0.159-0.242\r\n\t\t\t\tc-0.012-0.066-0.116-0.088-0.159-0.127c-0.064-0.08-0.127-0.161-0.191-0.241c-0.048-0.033-0.104,0.008-0.165-0.006\r\n\t\t\t\tc-0.089-0.049-0.178-0.098-0.267-0.146c-0.071-0.049-0.182-0.161-0.21-0.248c-0.021-0.066,0.011-0.151-0.013-0.203\r\n\t\t\t\tc-0.015-0.018-0.024-0.019-0.057-0.019c0.044-0.068,0.068-0.116,0.057-0.229h-0.006c-0.045,0.057-0.089,0.115-0.133,0.172\r\n\t\t\t\tc-0.113,0.09-0.215,0.143-0.311,0.267c-0.023,0.045-0.047,0.089-0.07,0.134c-0.035,0.031-0.051,0.02-0.07,0.07\r\n\t\t\t\tc-0.042,0.011-0.063,0.014-0.095-0.006c-0.002,0.011-0.004,0.021-0.006,0.032c-0.074,0.026-0.394,0.021-0.477-0.019\r\n\t\t\t\tc-0.019,0.017-0.023,0.015-0.032,0.044c-0.073,0.007-0.13-0.005-0.203-0.006c0.013-0.058-0.015-0.063-0.064-0.076\r\n\t\t\t\tc-0.037-0.089,0.072-0.127,0.076-0.216c0.001-0.028-0.017-0.268-0.025-0.28c-0.018-0.025-0.035-0.018-0.051-0.057\r\n\t\t\t\tc-0.015-0.002-0.03-0.004-0.044-0.006c-0.083,0.059-0.119,0.288-0.07,0.407c0.007,0.07,0.01,0.094-0.051,0.089\r\n\t\t\t\tc-0.045-0.059-0.108-0.211-0.114-0.311c-0.034-0.027-0.036-0.039-0.076-0.032c-0.033-0.107-0.058-0.116-0.013-0.229\r\n\t\t\t\tc-0.013-0.021-0.026-0.042-0.038-0.064c0.02-0.031,0.039-0.029,0.045-0.076c-0.062-0.082-0.205-0.072-0.248-0.172\r\n\t\t\t\tc-0.036-0.028-0.026-0.027-0.006-0.064c-0.037-0.017-0.058-0.015-0.114-0.013c-0.07-0.185-0.159-0.356-0.21-0.553\r\n\t\t\t\tc-0.036,0.009-0.072,0.017-0.108,0.026c-0.013-0.006-0.026-0.013-0.038-0.019c0.021-0.026,0.042-0.051,0.063-0.076h0.044\r\n\t\t\t\tc-0.008-0.04-0.017-0.08-0.025-0.121c0.026-0.034,0.169-0.04,0.235-0.038c0.055-0.054,0.047-0.118,0.127-0.152h0.019\r\n\t\t\t\tc-0.001,0.041,0.001,0.074,0.019,0.095c0.038,0.072,0.165,0.061,0.242,0.032c0.043,0.069,0.143,0.143,0.172,0.21v0.102\r\n\t\t\t\tc0.031,0.082,0.136,0.259,0.191,0.337c0.064,0.091,0.221,0.082,0.311,0.146c0.047,0.057,0.093,0.115,0.14,0.172\r\n\t\t\t\tc0.106,0.063,0.211,0.06,0.337,0.102c0.07,0.023,0.11,0.086,0.197,0.095c0.042-0.036,0.186-0.121,0.197-0.172\r\n\t\t\t\tc0.098-0.035,0.203-0.075,0.324-0.044c0.05,0.012,0.038,0.034,0.089,0.038c0.015,0.043,0.01,0.1,0.032,0.159\r\n\t\t\t\tc0.026,0.069,0.095,0.113,0.095,0.21c0.068,0.011,0.135,0.056,0.184,0.076h0.254c0.025,0.023,0.051,0.047,0.076,0.07\r\n\t\t\t\tc0.142,0.002,0.284,0.004,0.426,0.007c0.075,0.02,0.118,0.067,0.216,0.083c0.131,0.021,0.254-0.027,0.356-0.044h0.286\r\n\t\t\t\tc0.057-0.021,0.1-0.057,0.191-0.07c0.08,0.167,0.549-0.018,0.686-0.025c0.074,0.053,0.075,0.102,0.07,0.223\r\n\t\t\t\tc0.047,0.011,0.093,0.021,0.14,0.032c0.023,0.068,0.047,0.136,0.07,0.203c0.05,0.067,0.114,0.032,0.191,0.076\r\n\t\t\t\tc0.03,0.042,0.059,0.085,0.089,0.127c0.103,0.123,0.38,0.229,0.597,0.153c0.003,0.052-0.02,0.064-0.051,0.095\r\n\t\t\t\tc-0.142,0.145-0.214,0.023-0.369,0.076h-0.013c0.049,0.113,0.433,0.501,0.572,0.508c0.04-0.015,0.081-0.03,0.121-0.044\r\n\t\t\t\tc0.145-0.047,0.383-0.127,0.254-0.299c0.008-0.03,0.017-0.059,0.025-0.089c0.032-0.019,0.083-0.021,0.14-0.019\r\n\t\t\t\tc-0.019,0.072-0.014,0.207,0.013,0.286c0.016,0.046,0.116,0.085,0.102,0.146c-0.015,0.062-0.095,0.113-0.102,0.191\r\n\t\t\t\tc0.027,0.146,0.055,0.292,0.083,0.438c0.034,0.205,0.068,0.411,0.102,0.616c0.07,0.251,0.21,0.444,0.305,0.655\r\n\t\t\t\tc0.065,0.143,0.116,0.299,0.165,0.457c0.021,0.079,0.042,0.157,0.064,0.235c0.038,0.055,0.076,0.11,0.114,0.165\r\n\t\t\t\tc0.074,0.163,0.148,0.326,0.222,0.489c0.032,0.112,0.064,0.225,0.095,0.337c0.059,0.064,0.119,0.127,0.178,0.191\r\n\t\t\t\tc0.09-0.003,0.218-0.064,0.248-0.127c0.026-0.054,0.004-0.106,0.038-0.146c0.083-0.028,0.165-0.055,0.248-0.083\r\n\t\t\t\tc-0.013-0.027-0.034-0.042-0.057-0.057c0.025-0.072,0.051-0.144,0.076-0.216c0.037-0.022,0.108-0.021,0.172-0.019\r\n\t\t\t\tc0.023-0.118-0.033-0.248-0.019-0.362c0.025-0.213,0.286-0.458,0.108-0.655c0.057-0.141-0.035-0.296,0-0.451\r\n\t\t\t\tc0.021-0.047,0.042-0.093,0.064-0.14c0.06-0.048,0.118-0.061,0.191-0.019c0.048-0.031,0.078-0.105,0.095-0.165\r\n\t\t\t\tc0.058-0.032,0.17-0.01,0.229-0.051c0.065-0.045,0.048-0.168,0.108-0.216c0.063-0.032,0.127-0.064,0.191-0.095\r\n\t\t\t\tc0.072-0.046,0.111-0.143,0.178-0.184c0.046-0.028,0.088-0.032,0.127-0.064c0.097-0.119,0.195-0.237,0.292-0.356\r\n\t\t\t\tc0.078-0.054,0.207-0.041,0.292-0.095c0.106-0.067,0.148-0.181,0.229-0.273c-0.013-0.045-0.025-0.089-0.038-0.134\r\n\t\t\t\tc0.071-0.072,0.179-0.083,0.267-0.14c0.032-0.034,0.064-0.068,0.095-0.102c0.029,0.022,0.05,0.059,0.057,0.102\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.017-0.03,0.034-0.059,0.051-0.089c0.002-0.004,0.004-0.008,0.006-0.013\r\n\t\t\t\tc0.034,0.02,0.042,0.065,0.051,0.108h0.089c-0.005-0.031-0.002-0.042,0.006-0.07c0.019,0.01,0.038,0.021,0.057,0.032\r\n\t\t\t\tc0.013-0.021,0.025-0.042,0.038-0.063c0.008-0.006,0.017-0.013,0.025-0.019c0.009,0.021,0.017,0.043,0.026,0.064h0.038\r\n\t\t\t\tc0.026-0.034,0.046-0.064,0.051-0.121c0.004-0.002,0.008-0.004,0.013-0.006c0.021,0.038,0.042,0.076,0.063,0.115h0.045\r\n\t\t\t\tc0.016-0.069,0.027-0.078,0.095-0.095c0.022-0.07-0.005-0.129-0.032-0.184c-0.002-0.034-0.003-0.067,0.013-0.083\r\n\t\t\t\tc0.004-0.004,0.009-0.009,0.013-0.013c0.032,0.042,0.064,0.085,0.095,0.127c0.07-0.001,0.1-0.022,0.146-0.044\r\n\t\t\t\tc0.175,0.137,0.122,0.639,0.362,0.705c0.022,0.006,0.054-0.002,0.076,0.006v0.083c0.053,0.035,0.082,0.001,0.127,0.025\r\n\t\t\t\tc0.068,0.037,0.107,0.146,0.133,0.229v0.006c-0.034,0.006-0.068,0.013-0.102,0.019c0.028,0.031,0.065,0.053,0.108,0.07\r\n\t\t\t\tc0.011-0.019,0.021-0.038,0.032-0.057c0.004-0.002,0.009-0.004,0.013-0.006c0.079,0.128,0.174,0.362,0.146,0.578\r\n\t\t\t\tc-0.017,0.129-0.098,0.22-0.102,0.362c0.015,0.011,0.03,0.021,0.044,0.032c0.047-0.038,0.073-0.066,0.153-0.076\r\n\t\t\t\tc-0.006,0.025-0.013,0.051-0.019,0.076c0.011,0.011,0.021,0.021,0.032,0.032h0.025c0.029-0.023,0.031-0.041,0.083-0.044v0.057\r\n\t\t\t\tc0.08,0.073,0.094-0.079,0.153-0.121c0.184-0.132,0.273-0.031,0.305-0.343h0.025c0.085,0.062,0.089,0.235,0.197,0.267\r\n\t\t\t\tc0.026,0.18,0.051,0.36,0.076,0.54c0.047,0.164,0.151,0.309,0.203,0.451c0.053,0.144,0.03,0.29,0.025,0.432\r\n\t\t\t\tc0.019,0.01,0.036,0.013,0.07,0.013c-0.033,0.078-0.145,0.34-0.114,0.413c0.017,0.013,0.034,0.025,0.051,0.038\r\n\t\t\t\tc-0.064,0.162-0.161,0.391-0.102,0.566c0.025-0.011,0.051-0.021,0.076-0.032c0.085,0.091,0.166,0.136,0.21,0.273\r\n\t\t\t\tc0.02,0.008,0.034,0.009,0.064,0c0.043,0.057,0.051,0.099,0.051,0.197c0.011,0.006,0.021,0.013,0.032,0.019\r\n\t\t\t\tc0.034,0.043,0.078,0.03,0.121,0.006c0.004,0.004,0.008,0.008,0.013,0.013c-0.018,0.139-0.008,0.3,0.044,0.445\r\n\t\t\t\tc0.025,0.047,0.051,0.093,0.076,0.14c0.009,0.069-0.024,0.13,0.013,0.191c0.04,0.034,0.08,0.068,0.121,0.102\r\n\t\t\t\tc0.016,0.022,0.022,0.056,0.031,0.088C55.358,48.795,44.764,58,32,58z M20.929,9.847c0.001,0,0.002,0,0.003,0\r\n\t\t\t\tc0.002,0.003,0.004,0.006,0.006,0.009c-0.001,0-0.002,0-0.003,0C20.933,9.853,20.931,9.85,20.929,9.847z M43.915,25.038\r\n\t\t\t\tc-0.028,0.012-0.031-0.019-0.07-0.013c-0.034,0.011-0.068,0.021-0.102,0.032c-0.004-0.002-0.008-0.004-0.013-0.006\r\n\t\t\t\tc-0.002-0.023-0.004-0.047-0.006-0.07c-0.013-0.004-0.026-0.008-0.038-0.013c-0.004,0.017-0.008,0.034-0.013,0.051\r\n\t\t\t\tc-0.048-0.011-0.054-0.013-0.108-0.006c-0.017-0.034-0.034-0.068-0.051-0.102c-0.067,0.075-0.078,0.271-0.044,0.369\r\n\t\t\t\tc0.039,0.021,0.133,0.008,0.216,0.006c-0.015,0.019-0.03,0.038-0.044,0.057c0.004,0.013,0.008,0.025,0.013,0.038\r\n\t\t\t\tc0.014,0.023,0.042,0.036,0.07,0.045v0.019c-0.045-0.004-0.089-0.008-0.133-0.013c-0.011,0.015-0.021,0.03-0.032,0.045v0.044\r\n\t\t\t\tc0.042-0.029,0.066-0.018,0.127-0.006c0.024,0.067,0.085,0.076,0.114,0.133c0.014,0.054-0.038,0.118-0.038,0.203\r\n\t\t\t\tc0,0.04-0.022,0.09-0.019,0.108c0.018,0.102,0.109,0.354,0.025,0.419c-0.061,0.047-0.192,0.025-0.28,0.045\r\n\t\t\t\tc-0.314,0.07-0.748,0.1-0.858-0.197c-0.119-0.032-0.251-0.062-0.35-0.095c-0.052-0.198,0.057-0.392,0.057-0.559\r\n\t\t\t\tc0.006-0.004,0.013-0.008,0.019-0.013c0.017,0.015,0.019,0.017,0.025,0.044c0.006,0.004,0.013,0.008,0.019,0.013\r\n\t\t\t\tc0.006-0.03,0.013-0.059,0.019-0.089c0.02-0.009,0.021-0.011,0.044-0.006c-0.012-0.168,0.011-0.45,0.28-0.337h0.006\r\n\t\t\t\tc-0.002-0.011-0.004-0.021-0.006-0.032c-0.056-0.128-0.19-0.036-0.242-0.108c-0.03-0.042-0.076-0.085-0.095-0.127\r\n\t\t\t\tc-0.023-0.049-0.009-0.096-0.038-0.133c-0.041-0.053-0.106-0.142-0.159-0.184c-0.019-0.006-0.038-0.013-0.057-0.019\r\n\t\t\t\tc-0.05-0.07-0.077-0.16-0.14-0.216c-0.015-0.004-0.03-0.009-0.044-0.013c-0.031-0.047,0.006-0.079-0.044-0.108\r\n\t\t\t\tc-0.057-0.081-0.018-0.217,0.019-0.311v-0.019H41.92c-0.011,0.038-0.021,0.076-0.032,0.114h-0.006\r\n\t\t\t\tc-0.001-0.113-0.014-0.227-0.114-0.286c-0.032-0.019-0.075-0.01-0.089-0.045v-0.032c0.004-0.075,0.083-0.081,0.114-0.127\r\n\t\t\t\tc0.062-0.092,0.092-0.195,0.121-0.286c0.004-0.006,0.008-0.013,0.013-0.019c0.105,0.051,0.2-0.03,0.28-0.076\r\n\t\t\t\tc0.015,0.008,0.03,0.017,0.044,0.025c0.016-0.02,0.02-0.029,0.019-0.07c0.102-0.023,0.134-0.121,0.216-0.153\r\n\t\t\t\tc0.04-0.002,0.081-0.004,0.121-0.006c0.13-0.041,0.242-0.21,0.413-0.197c0.096,0.007,0.137,0.073,0.21,0.089\r\n\t\t\t\tc0.077,0.017,0.097-0.038,0.133-0.051c0.057,0.013,0.114,0.025,0.172,0.038c0.015,0.025,0.03,0.051,0.045,0.076\r\n\t\t\t\tc-0.017,0.017-0.034,0.034-0.051,0.051c0.047,0.164,0.01,0.207-0.083,0.33c0.004,0.058,0.07,0.083,0.114,0.095\r\n\t\t\t\tc0.002,0.004,0.004,0.008,0.006,0.013c-0.138-0.013-0.275-0.025-0.413-0.038c-0.038,0.007-0.047,0.027-0.102,0.026\r\n\t\t\t\tc-0.013,0.034-0.025,0.068-0.038,0.102c-0.029,0.036-0.057,0.02-0.076,0.076c0.027,0.039,0.064,0.068,0.114,0.083\r\n\t\t\t\tc0.006,0.008,0.013,0.017,0.019,0.026c-0.061,0.044-0.214-0.025-0.337-0.019c-0.006,0.006-0.013,0.013-0.019,0.019v0.083\r\n\t\t\t\tc0.039,0.026,0.133,0.043,0.184,0.051c0.028,0.155,0.139,0.203,0.133,0.368h0.089c0.037,0.027,0.071,0.069,0.089,0.114\r\n\t\t\t\tc0.089,0.012,0.165-0.009,0.235,0.064c-0.034,0.064-0.07,0.143-0.095,0.203c0.023,0.038-0.002,0.077,0.019,0.121\r\n\t\t\t\tc0.013,0.006,0.026,0.013,0.038,0.019c-0.002,0.019-0.004,0.038-0.006,0.057c0.013,0.029,0.055,0.079,0.076,0.114v0.013\r\n\t\t\t\tc0.027-0.072,0.011-0.226,0.032-0.305c0.087-0.015,0.173-0.031,0.273-0.025c0.015,0.056,0.023,0.174,0.051,0.216\r\n\t\t\t\tc0.046,0.071,0.146,0.075,0.197,0.178c-0.015,0.031-0.026,0.037-0.057,0.051c-0.041-0.008-0.042-0.024-0.083-0.032\r\n\t\t\t\tC43.898,24.987,43.907,25.012,43.915,25.038z M35.799,24.777c-0.004,0.004-0.008,0.008-0.013,0.013\r\n\t\t\t\tc-0.025-0.022-0.041-0.037-0.083-0.045c0.004-0.011,0.009-0.021,0.013-0.032c0.017,0.008,0.034,0.017,0.051,0.025\r\n\t\t\t\tC35.788,24.751,35.789,24.757,35.799,24.777z M57.643,35.618c-0.368,0.016-0.324-0.225-0.388-0.502\r\n\t\t\t\tc-0.013,0.004-0.025,0.008-0.038,0.013c-0.056-0.044-0.033-0.145-0.051-0.222c-0.063,0.004-0.119,0.023-0.178,0.013\r\n\t\t\t\tc-0.153-0.249,0.124-0.633,0.191-0.826c-0.004-0.053-0.009-0.106-0.013-0.159c0.02-0.082,0.062-0.114,0.025-0.216\r\n\t\t\t\tc0.092-0.071,0.145-0.061,0.292-0.051c-0.006,0.076-0.013,0.152-0.019,0.229c0.058,0.001,0.08,0.024,0.121,0.032\r\n\t\t\t\tc0.078,0.014,0.107-0.054,0.191-0.006c0.038,0.04,0.076,0.08,0.115,0.121c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc-0.043,0.556-0.111,1.104-0.189,1.65C57.688,35.667,57.663,35.644,57.643,35.618z M8.363,28.628\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.363z M8.35,28.59c-0.001-0.011-0.009-0.009-0.011-0.018\r\n\t\t\t\tc0.001,0.006,0.003,0.012,0.004,0.018H8.35z M42.555,41.414c-0.037-0.058-0.107-0.06-0.14-0.133\r\n\t\t\t\tc-0.068-0.054-0.061-0.042-0.127,0.013c0.009,0.1,0.008,0.236-0.07,0.299c-0.044,0.036-0.08,0.04-0.102,0.102\r\n\t\t\t\tc-0.039-0.014-0.048-0.034-0.063-0.07c-0.019-0.002-0.038-0.004-0.057-0.006c-0.003,0.068,0.015,0.109,0.038,0.165\r\n\t\t\t\tc-0.004,0.011-0.008,0.021-0.013,0.032c-0.024,0.016-0.04,0.025-0.083,0.025c-0.002,0.004-0.004,0.009-0.006,0.013\r\n\t\t\t\tc0.003,0.044,0.026,0.059,0.045,0.102c-0.023,0.025-0.047,0.051-0.07,0.076c-0.039-0.004-0.04-0.009-0.051-0.038H41.85\r\n\t\t\t\tc-0.032,0.028-0.063,0.055-0.095,0.083c0.008,0.034,0.022,0.045,0.038,0.07c-0.013,0.009-0.025,0.017-0.038,0.026\r\n\t\t\t\tc-0.024,0.01-0.027-0.009-0.064-0.019c-0.047,0.029-0.093,0.059-0.14,0.089c0.004,0.025,0.009,0.051,0.013,0.076\r\n\t\t\t\tc-0.071,0.017-0.121-0.054-0.21-0.013c-0.017,0.019-0.034,0.038-0.051,0.057c-0.04,0.02-0.074-0.013-0.108-0.013\r\n\t\t\t\tc-0.025,0.019-0.051,0.038-0.076,0.057c-0.044,0.002-0.089,0.004-0.133,0.006c0,0.213-0.083,0.245-0.14,0.381\r\n\t\t\t\tc-0.025,0.1,0.069,0.325,0.121,0.388c-0.015,0.032-0.03,0.064-0.044,0.096c0.032,0.038,0.064,0.076,0.095,0.114\r\n\t\t\t\tc0.03,0.115-0.166,0.512-0.216,0.559c-0.025,0.009-0.051,0.017-0.076,0.025c-0.045,0.032-0.102,0.233-0.089,0.311\r\n\t\t\t\tc0.053,0.097,0.106,0.195,0.159,0.292c-0.013,0.049-0.025,0.097-0.038,0.146c-0.031,0.144,0.06,0.157,0.083,0.229\r\n\t\t\t\tc0.016,0.051-0.006,0.092,0.019,0.127c0.083,0.119,0.262,0.084,0.343,0.21c0.137-0.008,0.17-0.09,0.286-0.121\r\n\t\t\t\tc0.07-0.009,0.14-0.017,0.21-0.026c0.132-0.081,0.205-0.497,0.261-0.674c0.15-0.485,0.301-0.97,0.451-1.455\r\n\t\t\t\tc0.028-0.095-0.011-0.189,0.019-0.299c0.026-0.093,0.124-0.146,0.146-0.254c-0.047-0.072-0.09-0.157-0.089-0.273\r\n\t\t\t\tc0.011-0.006,0.021-0.013,0.032-0.019c0.004-0.004,0.008-0.009,0.013-0.013c0.029,0.053,0.07,0.133,0.121,0.165\r\n\t\t\t\tc0.035-0.029,0.114-0.123,0.102-0.191c-0.027-0.053-0.055-0.106-0.083-0.159C42.622,41.831,42.634,41.517,42.555,41.414z\r\n\t\t\t\t M10.068,26.772c0.002,0.004,0.003,0.011,0.005,0.016v-0.016H10.068z M8.337,28.565c0,0.001-0.001,0.002-0.001,0.002\r\n\t\t\t\tc0.001,0.003,0.003,0.003,0.003,0.005C8.339,28.57,8.338,28.567,8.337,28.565z M8.356,28.609\r\n\t\t\t\tc-0.002-0.006-0.004-0.013-0.006-0.019v0.019H8.356z M14.998,24.644c-0.002-0.004-0.004-0.009-0.006-0.013\r\n\t\t\t\tc-0.021-0.006-0.042-0.013-0.064-0.019c-0.026,0.019-0.046,0.037-0.057,0.07c-0.004,0.002-0.009,0.004-0.013,0.006\r\n\t\t\t\tc-0.032-0.041-0.059-0.112-0.076-0.165v-0.007c0.122-0.058,0.118-0.025,0.216-0.114V24.37c-0.015-0.006-0.03-0.013-0.045-0.019\r\n\t\t\t\tc-0.042,0.02-0.082,0.042-0.14,0.045c-0.035-0.024-0.077-0.055-0.095-0.095c-0.006-0.006-0.013-0.013-0.019-0.019\r\n\t\t\t\tc0.049-0.04,0.097-0.081,0.146-0.121c0.013-0.015,0.026-0.03,0.038-0.045c-0.085-0.053-0.196-0.098-0.331-0.083\r\n\t\t\t\tc-0.013,0.023-0.025,0.047-0.038,0.07c-0.139,0.028-0.257-0.06-0.343-0.127v-0.019c0.036-0.036,0.072-0.072,0.108-0.108\r\n\t\t\t\tc-0.044-0.017-0.089-0.034-0.133-0.051c-0.111,0.022-0.1,0.134-0.21,0.159c-0.006-0.249,0.344-0.399,0.241-0.604\r\n\t\t\t\tc0.046-0.013,0.102-0.029,0.14-0.045c0.002-0.008,0.004-0.017,0.006-0.025c-0.004-0.011-0.009-0.021-0.013-0.032\r\n\t\t\t\tc-0.013-0.004-0.025-0.008-0.038-0.013c-0.078,0.021-0.157,0.042-0.235,0.064c-0.19,0.122-0.428,0.489-0.508,0.724\r\n\t\t\t\tc0.032,0.038,0.063,0.076,0.095,0.114c-0.085,0.09-0.178,0.003-0.235,0.165c-0.004,0.008-0.008,0.017-0.013,0.025\r\n\t\t\t\tc0.049,0.013,0.098,0.025,0.146,0.038c-0.09,0.09-0.264,0.111-0.324,0.229c-0.016,0.029,0.012,0.075,0.026,0.114\r\n\t\t\t\tc0.097-0.011,0.195-0.021,0.292-0.032c0.121,0.017,0.242,0.034,0.362,0.051c0.11,0.02,0.23-0.003,0.248-0.083\r\n\t\t\t\tc0.034-0.004,0.068-0.008,0.102-0.013v0.096c0.004,0.006,0.008,0.013,0.013,0.019c0.013-0.002,0.025-0.004,0.038-0.006\r\n\t\t\t\tc0.033-0.011,0.042-0.037,0.051-0.07c0.057,0.006,0.114,0.013,0.172,0.019v0.013c-0.121,0.055-0.153,0.168-0.305,0.21\r\n\t\t\t\tc-0.012,0.026-0.007,0.015,0,0.045c0.033,0.016,0.082,0.021,0.133,0.019c0.096-0.105,0.276-0.194,0.343-0.311\r\n\t\t\t\tc0.011,0.004,0.021,0.008,0.032,0.013c0.021,0.028,0.042,0.055,0.064,0.083c-0.002,0.068-0.031,0.109-0.064,0.146\r\n\t\t\t\tc0.002,0.017,0.004,0.034,0.006,0.051c0.017,0.002,0.034,0.004,0.051,0.006c0.025-0.021,0.051-0.042,0.076-0.063\r\n\t\t\t\tc0.004,0.036,0.008,0.072,0.013,0.108c0.053,0.015,0.106,0.03,0.159,0.045c0.031-0.093,0.108-0.194,0.095-0.299\r\n\t\t\t\tC14.985,24.767,14.974,24.733,14.998,24.644z M30.531,24.606c-0.011,0.008-0.021,0.017-0.032,0.025\r\n\t\t\t\tc0.014,0.032,0.014,0.022,0.057,0.019v0.006c-0.011,0.011-0.021,0.021-0.032,0.032c-0.002,0.004-0.004,0.008-0.006,0.013\r\n\t\t\t\tc0.021,0.009,0.042,0.017,0.063,0.026c-0.011,0.015-0.021,0.03-0.032,0.044c0.011,0.009,0.021,0.017,0.032,0.025\r\n\t\t\t\tc0.019,0.002,0.038,0.004,0.057,0.006v0.032c0.013,0.002,0.025,0.004,0.038,0.006c0.109-0.111,0.08-0.372,0.076-0.559\r\n\t\t\t\tc-0.008-0.006-0.017-0.013-0.025-0.019c-0.004,0.002-0.008,0.004-0.013,0.006c-0.004,0.03-0.008,0.059-0.013,0.089\r\n\t\t\t\tc-0.002,0.003-0.171,0.074-0.21,0.114c0.001,0.025,0.001,0.024,0.019,0.044c-0.009,0.007-0.017,0.013-0.026,0.019\r\n\t\t\t\tC30.493,24.58,30.509,24.579,30.531,24.606z M35.215,27.014c0.142-0.008,0.284-0.017,0.426-0.025\r\n\t\t\t\tc0.017-0.028,0.025-0.06,0.032-0.102c-0.045,0.028-0.097,0.035-0.146,0.064c-0.008-0.004-0.017-0.009-0.025-0.013\r\n\t\t\t\tc0.004-0.017,0.009-0.034,0.013-0.051c-0.002-0.002-0.004-0.004-0.006-0.006c-0.098,0.011-0.135,0.002-0.21-0.032\r\n\t\t\t\tc-0.07,0.006-0.14,0.013-0.21,0.019c-0.02-0.019-0.014-0.025-0.051-0.032c0.006-0.009,0.013-0.017,0.019-0.026\r\n\t\t\t\tc-0.004-0.006-0.008-0.013-0.013-0.019c-0.015,0.008-0.03,0.017-0.044,0.026c-0.034-0.012-0.056-0.014-0.076-0.038v-0.013\r\n\t\t\t\tc-0.011,0.013-0.01,0.012-0.013,0.038h-0.032c-0.006,0.032-0.013,0.063-0.019,0.095c0.087,0.039,0.26,0.031,0.356,0.07V27.014z\r\n\t\t\t\t M32.367,26.423c0.035-0.028,0.056-0.073,0.095-0.095c0.013-0.037-0.026-0.055-0.045-0.095c-0.036-0.095,0.072-0.224,0.102-0.292\r\n\t\t\t\tv-0.006c-0.058-0.014-0.12,0.013-0.172,0.025c-0.214,0.053-0.3,0.057-0.458-0.044c-0.091,0.081-0.209,0.007-0.254,0.152\r\n\t\t\t\tc0.043,0.085,0.104,0.06,0.191,0.102C32.004,26.254,32.172,26.367,32.367,26.423z M21.217,10.482\r\n\t\t\t\tc0.035-0.019,0.07-0.038,0.105-0.057c0.055-0.019,0.109-0.037,0.164-0.056c0.003-0.008,0.007-0.017,0.01-0.025\r\n\t\t\t\tc-0.104,0.008-0.218,0.043-0.302,0.036c-0.066,0.038-0.132,0.076-0.197,0.114c-0.025,0.014-0.069,0.026-0.071,0.048\r\n\t\t\t\tc0.004,0.002,0.008,0.004,0.013,0.006c0.045-0.002,0.096-0.023,0.138-0.036C21.123,10.502,21.17,10.492,21.217,10.482z\r\n\t\t\t\t M16.682,18.341c-0.01,0.031-0.094,0.043-0.109,0.087c0.001,0.002,0.001,0.003,0.002,0.005c0.076-0.011,0.12-0.032,0.157-0.06\r\n\t\t\t\tc0.001-0.015-0.005-0.022-0.016-0.032C16.705,18.339,16.7,18.338,16.682,18.341z M30.575,25.66\r\n\t\t\t\tc0.019-0.025,0.038-0.051,0.057-0.076c0.054-0.026,0.099,0,0.146,0.013c0.02-0.058,0.068-0.112,0.057-0.197\r\n\t\t\t\tc-0.006-0.047-0.013-0.093-0.019-0.14c0.006-0.036,0.036-0.069,0.044-0.095c0.031-0.095-0.097-0.241-0.153-0.26\r\n\t\t\t\tc-0.085,0.08-0.164,0.087-0.311,0.114c-0.004,0.004-0.008,0.008-0.013,0.013c0.017,0.081,0.077,0.106,0.095,0.197\r\n\t\t\t\tC30.517,25.416,30.356,25.615,30.575,25.66z M30.512,36.559c-0.028,0.032-0.044,0.092-0.089,0.108v0.057\r\n\t\t\t\tc0.013,0.004,0.025,0.008,0.038,0.013c0.082-0.01,0.066-0.094,0.127-0.127C30.57,36.578,30.553,36.568,30.512,36.559z\r\n\t\t\t\t M26.304,19.147c0.035-0.024,0.05-0.049,0.076-0.083c0.002-0.004,0.004-0.009,0.006-0.013c0.025,0.017,0.051,0.034,0.076,0.051\r\n\t\t\t\tc-0.033,0.09-0.136,0.211-0.089,0.305v0.013c0.082-0.047,0.165-0.094,0.235-0.152h0.025c0.006,0.028,0.013,0.055,0.019,0.083\r\n\t\t\t\tc-0.02,0.027-0.04,0.046-0.076,0.057c-0.009,0.057,0.008,0.105,0.051,0.127c0.034,0.062-0.106,0.181-0.121,0.28\r\n\t\t\t\tc0.051,0.013,0.102,0.025,0.153,0.038c0.024-0.018,0.033-0.026,0.038-0.064c0.038,0.011,0.076,0.021,0.114,0.032\r\n\t\t\t\tc0.138-0.008,0.086-0.079,0.267-0.032c-0.045,0.057-0.103,0.092-0.121,0.178c0.025,0.053,0.055,0.069,0.089,0.108\r\n\t\t\t\tc0.036-0.007,0.072-0.013,0.108-0.019h0.006c-0.005,0.156-0.076,0.23-0.013,0.356v0.006c-0.215,0.003-0.415,0.024-0.489,0.172\r\n\t\t\t\tv0.006h0.133v0.013c0.023,0.036,0.008,0.103,0.006,0.159c-0.078,0.113-0.267,0.119-0.299,0.178\r\n\t\t\t\tc-0.011,0.011-0.021,0.021-0.032,0.032c0.025,0.021,0.051,0.042,0.076,0.064c0.085,0.002,0.169,0.004,0.254,0.006\r\n\t\t\t\tc0.061,0.03,0.123,0.059,0.184,0.089h0.013c0.09-0.005,0.137-0.049,0.203-0.076c-0.029,0.06-0.086,0.099-0.089,0.172\r\n\t\t\t\tc-0.131,0.033-0.232-0.046-0.343,0.006c-0.036,0.041-0.02,0.083-0.095,0.07c-0.013,0.136-0.232,0.282-0.35,0.318\r\n\t\t\t\tc-0.002,0.004-0.004,0.009-0.006,0.013c0.032,0.009,0.064,0.017,0.095,0.026c0.015,0.015,0.03,0.03,0.045,0.045\r\n\t\t\t\tc0.052-0.069,0.127-0.122,0.216-0.153c0.045,0.021,0.07,0.005,0.095-0.013c0.108,0.059,0.203,0.111,0.21-0.089\r\n\t\t\t\tc0.2-0.024,0.253-0.004,0.439,0.013c-0.004-0.015-0.009-0.03-0.013-0.044c0.085-0.013,0.17-0.025,0.254-0.038\r\n\t\t\t\tc0.048-0.007,0.063,0.026,0.095,0.032c0.042-0.011,0.085-0.021,0.127-0.032c0.061,0.009,0.123,0.017,0.184,0.025\r\n\t\t\t\tc0.074-0.014,0.1-0.073,0.203-0.064c0.004-0.059,0.085-0.077,0.133-0.089v-0.089h-0.013c-0.014-0.009-0.237-0.029-0.299-0.032\r\n\t\t\t\tV21.13c0.107-0.031,0.369-0.204,0.4-0.299c-0.006-0.055-0.013-0.11-0.019-0.165c-0.087-0.068-0.271-0.169-0.369-0.032\r\n\t\t\t\tc-0.034-0.007-0.068-0.013-0.102-0.019c0.135-0.201,0.055-0.175-0.076-0.318c-0.002-0.002,0.009-0.153-0.025-0.203\r\n\t\t\t\tc-0.049-0.064-0.097-0.127-0.146-0.191c-0.055-0.03-0.115-0.006-0.153-0.051c-0.069-0.084-0.056-0.196-0.095-0.299\r\n\t\t\t\tc-0.031-0.053-0.237-0.227-0.318-0.222c-0.131,0.007-0.14,0.075-0.305,0.006c-0.002-0.004-0.004-0.008-0.006-0.013\r\n\t\t\t\tc0.123,0.003,0.258-0.01,0.311-0.076c0.004-0.002,0.008-0.004,0.013-0.006c-0.034-0.019-0.068-0.038-0.102-0.057\r\n\t\t\t\tc-0.002-0.004-0.004-0.009-0.006-0.013c0.198-0.003,0.277-0.285,0.331-0.426c0.013-0.025,0.001-0.021-0.013-0.051\r\n\t\t\t\tc-0.1-0.073-0.46-0.024-0.623-0.025c-0.006-0.009-0.013-0.017-0.019-0.025c0.017-0.197,0.253-0.175,0.324-0.311\r\n\t\t\t\tc0.035-0.032,0.013-0.032-0.006-0.07c-0.129-0.052-0.288,0.077-0.407,0.045c-0.038-0.023-0.076-0.047-0.114-0.07\r\n\t\t\t\tc-0.019,0.025-0.038,0.051-0.057,0.076c0.019,0.03,0.038,0.059,0.057,0.089c-0.04,0.013-0.08,0.025-0.121,0.038\r\n\t\t\t\tc0.025,0.051,0.051,0.102,0.076,0.152c-0.05,0.002-0.083-0.003-0.127-0.019c-0.039,0.01-0.054,0.039-0.07,0.07\r\n\t\t\t\tc0.027,0.032,0.055,0.064,0.083,0.095c-0.019,0.03-0.061,0.028-0.076,0.051c0.009,0.04,0.017,0.08,0.026,0.121\r\n\t\t\t\tc0,0-0.102,0.182-0.114,0.203C26.262,19.126,26.283,19.136,26.304,19.147z M23.552,15.69c0.122,0.059,0.229,0.003,0.261-0.114\r\n\t\t\t\tc0.002-0.025,0.004-0.051,0.006-0.076c0.061-0.015,0.123-0.03,0.184-0.045c0.041-0.073,0.083-0.252,0.019-0.337\r\n\t\t\t\tc-0.041-0.048-0.155-0.016-0.222-0.038c-0.027-0.017-0.055-0.034-0.083-0.051c-0.016-0.036-0.003-0.092,0.013-0.134\r\n\t\t\t\tc-0.008-0.015-0.017-0.03-0.025-0.045c-0.139-0.061-0.251-0.035-0.311-0.172c-0.039-0.024-0.106-0.033-0.172-0.032v0.159\r\n\t\t\t\tc-0.129,0.091-0.311,0.046-0.483,0.025c0.022,0.049,0.05,0.087,0.044,0.146c-0.091-0.002-0.162-0.057-0.191-0.121\r\n\t\t\t\tc-0.062-0.048-0.149-0.012-0.216,0.038c0.011,0.034,0.021,0.068,0.032,0.102v0.007c-0.017,0.006-0.034,0.013-0.051,0.019\r\n\t\t\t\tc-0.074-0.049-0.145-0.122-0.178-0.21h-0.006c-0.017,0.011-0.034,0.021-0.051,0.032c-0.031,0.052-0.008,0.145-0.006,0.229\r\n\t\t\t\tc-0.045,0.048-0.112,0.04-0.172,0.076c-0.032,0.029-0.064,0.059-0.095,0.089c-0.034-0.049-0.068-0.097-0.102-0.146\r\n\t\t\t\tc-0.02-0.043,0.074-0.098,0.057-0.178c-0.035-0.162-0.262-0.199-0.413-0.241c-0.015,0.017-0.03,0.034-0.044,0.051\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.042,0.031,0.085,0.071,0.102,0.127v0.006c-0.138,0.096-0.242-0.171-0.324,0.006\r\n\t\t\t\tc0.025,0.034,0.051,0.068,0.076,0.102c0.006,0.006,0.013,0.013,0.019,0.019c-0.08,0.017-0.198,0.021-0.261,0.051\r\n\t\t\t\tc-0.006,0.028-0.008,0.049,0.006,0.07c0.103,0.167,0.277-0.021,0.451,0.007c0.098,0.015,0.167,0.047,0.241,0.076\r\n\t\t\t\tc0.004,0.021,0.009,0.043,0.013,0.064c-0.006,0.019-0.013,0.038-0.019,0.057c-0.108,0.081-0.481,0.067-0.534,0.165\r\n\t\t\t\tc-0.002,0.006-0.004,0.013-0.006,0.019c0.008,0.013,0.017,0.025,0.025,0.038c0.081,0.034,0.262-0.022,0.349-0.038\r\n\t\t\t\tc0.073,0.086,0.103,0.124,0.254,0.14c-0.088,0.128-0.197,0.136-0.292,0.235c0.102,0.124,0.465,0.012,0.616,0.07\r\n\t\t\t\tc0.049,0.034,0.097,0.068,0.146,0.102c0.079,0.046,0.211,0.06,0.311,0.076c0.267,0.044,0.261-0.127,0.369-0.172\r\n\t\t\t\tc0.102-0.013,0.203-0.025,0.305-0.038C23.322,15.873,23.442,15.767,23.552,15.69z M25.078,20.894\r\n\t\t\t\tc-0.023,0.009-0.047,0.017-0.07,0.026c-0.007,0.033,0.006,0.053,0.013,0.089c0.036-0.004,0.072-0.008,0.108-0.013\r\n\t\t\t\tc0.017,0.048,0.015,0.085,0.013,0.146c0.12-0.007,0.193-0.047,0.273-0.07c0.034-0.002,0.068-0.004,0.102-0.006\r\n\t\t\t\tc0.076-0.055,0.153-0.11,0.229-0.165c0.074-0.007,0.148-0.013,0.222-0.019c0.008-0.013,0.017-0.025,0.025-0.038\r\n\t\t\t\tc0.049-0.002,0.097-0.004,0.146-0.006c0.016-0.107,0.079-0.154,0.102-0.229c0.037-0.123-0.067-0.364-0.121-0.439\r\n\t\t\t\tc0.126-0.037,0.169-0.056,0.229-0.159c-0.018-0.123-0.068-0.218-0.102-0.324c-0.094-0.067-0.283-0.037-0.4,0.013\r\n\t\t\t\tc-0.064-0.001-0.088-0.026-0.102-0.076c-0.149,0.013-0.194,0.075-0.229,0.203c-0.025,0.006-0.051,0.013-0.076,0.019\r\n\t\t\t\tc-0.006,0.009-0.013,0.017-0.019,0.025h0.184c-0.025,0.064-0.066,0.089-0.133,0.108c-0.001,0.021,0.008,0.04,0.019,0.063\r\n\t\t\t\tc-0.128-0.01-0.273-0.013-0.375-0.051c-0.045,0.036-0.065,0.068-0.083,0.134v0.038c0.057-0.015,0.088-0.022,0.127,0.013h0.013\r\n\t\t\t\tc-0.037,0.042-0.05,0.035-0.038,0.102c-0.03,0.006-0.059,0.013-0.089,0.019c0.008,0.009,0.017,0.017,0.025,0.025\r\n\t\t\t\tc-0.013,0.017-0.025,0.034-0.038,0.051c0.051,0.024,0.293,0.068,0.343,0.038c0.006,0.017,0.013,0.034,0.019,0.051\r\n\t\t\t\tc-0.083,0.035-0.129,0.014-0.165,0.095c-0.008,0.022-0.004,0.012,0.013,0.038c-0.013,0.019-0.025,0.038-0.038,0.057\r\n\t\t\t\tc-0.004,0.004-0.008,0.008-0.013,0.013c0.047-0.006,0.093-0.013,0.14-0.019c-0.018,0.068-0.092,0.065-0.159,0.076\r\n\t\t\t\tc-0.021,0.026-0.02,0.078-0.044,0.102c-0.032,0.024-0.13,0.015-0.184,0.013c-0.002,0.015-0.004,0.03-0.006,0.044\r\n\t\t\t\tc0.047,0.002,0.093,0.004,0.14,0.006V20.894z M26.336,19.465c-0.008,0.048-0.009,0.074,0,0.121\r\n\t\t\t\tc0.011,0.002,0.021,0.004,0.032,0.006c0.011-0.013,0.021-0.025,0.032-0.038c-0.004-0.034-0.009-0.068-0.013-0.102\r\n\t\t\t\tC26.37,19.456,26.353,19.46,26.336,19.465z M37.611,27.116c0.023-0.013,0.016-0.005,0.019-0.038\r\n\t\t\t\tc0.145-0.004,0.169-0.092,0.292-0.102c-0.015-0.019-0.03-0.038-0.045-0.057c0.053-0.068,0.135-0.101,0.191-0.165\r\n\t\t\t\tc-0.1,0.036-0.199,0.072-0.299,0.108c-0.059-0.006-0.119-0.013-0.178-0.019c0.011,0.023,0.012,0.039,0,0.064\r\n\t\t\t\tc-0.006,0.006-0.171,0.045-0.184,0.045c0.012,0.053,0.028,0.071,0.045,0.114C37.497,27.08,37.576,27.089,37.611,27.116z\r\n\t\t\t\t M8.363,28.654h0.006c-0.002-0.006-0.004-0.013-0.006-0.019V28.654z M14.54,13.788c0.035-0.025,0.102-0.125,0.045-0.175\r\n\t\t\t\tc-0.059,0.063-0.171,0.08-0.068,0.171C14.525,13.786,14.532,13.787,14.54,13.788z M8.375,28.698h0.006\r\n\t\t\t\tc-0.004-0.015-0.008-0.029-0.013-0.044C8.371,28.668,8.373,28.683,8.375,28.698z M8.433,28.838\r\n\t\t\t\tc0.006,0.004,0.013,0.008,0.019,0.013c-0.023-0.051-0.047-0.102-0.07-0.153C8.389,28.761,8.414,28.792,8.433,28.838z\r\n\t\t\t\t M21.4,11.563c-0.005,0-0.01,0.001-0.015,0.001c-0.058,0.053-0.117,0.105-0.175,0.158c-0.053,0.024-0.106,0.048-0.158,0.072\r\n\t\t\t\tc-0.038,0.029-0.035,0.1-0.05,0.136c-0.008,0.019-0.056,0.102-0.048,0.112c0.02,0.01,0.135-0.027,0.152-0.034\r\n\t\t\t\tc0.041-0.017,0.077-0.038,0.104-0.06c0.011-0.01,0.021-0.021,0.032-0.031c0.029-0.01,0.059-0.019,0.088-0.029\r\n\t\t\t\tc0.028-0.025,0.056-0.049,0.084-0.074c0.003-0.003,0.007-0.007,0.01-0.01c0.014,0.009,0.038,0.018,0.063,0.008\r\n\t\t\t\tc0.047-0.026,0.042-0.069,0.098-0.095C21.602,11.666,21.437,11.588,21.4,11.563z M21.72,10.584c0.002,0,0.003-0.001,0.005-0.001\r\n\t\t\t\tc-0.005-0.006-0.009-0.013-0.014-0.019c-0.016,0.002-0.032,0.005-0.048,0.007c-0.148-0.003-0.224-0.095-0.411-0.061\r\n\t\t\t\tc-0.054,0.025-0.235,0.062-0.254,0.094c-0.029,0.048,0.077,0.08,0.116,0.089c0.134,0.033,0.307,0.006,0.465,0.018\r\n\t\t\t\tc0.029,0.002,0.079,0.007,0.099,0.019c0.015,0.009,0.022,0.026,0.042,0.03c0.032,0.001,0.089-0.042,0.103-0.056\r\n\t\t\t\tc0.001-0.001,0.003-0.002,0.004-0.003c-0.082-0.021-0.2-0.02-0.258-0.064C21.619,10.62,21.669,10.602,21.72,10.584z\r\n\t\t\t\t M14.242,41.547c0.147,0.036,0.426-0.012,0.508-0.108c0.048-0.056,0.064-0.206,0.095-0.267c-0.057-0.054-0.445-0.06-0.591-0.057\r\n\t\t\t\tC14.175,41.239,14.197,41.443,14.242,41.547z M10.822,34.354c0.015,0.038,0.009,0.091,0.013,0.134\r\n\t\t\t\tc0.086,0.022,0.114-0.016,0.203-0.019c0.117-0.003,0.196,0.036,0.216-0.095c-0.077-0.061-0.285-0.049-0.4-0.051\r\n\t\t\t\tC10.843,34.333,10.833,34.343,10.822,34.354z M12.735,25.375c-0.017-0.011-0.034-0.021-0.051-0.032\r\n\t\t\t\tc-0.011-0.1,0.084-0.092,0.133-0.146c0.043-0.048,0.06-0.154,0.095-0.203c-0.04-0.027-0.081-0.055-0.121-0.083\r\n\t\t\t\tc-0.045,0.101-0.251,0.268-0.216,0.413c0.05,0.208,0.421,0.141,0.47-0.025C12.9,25.097,12.854,25.337,12.735,25.375z\r\n\t\t\t\t M10.93,37.912c-0.004,0.006-0.008,0.013-0.013,0.019c0.044,0.003,0.042,0.01,0.063,0.032c-0.012,0.031-0.012,0.05,0,0.083\r\n\t\t\t\tc-0.034,0.015-0.068,0.03-0.102,0.044c-0.004,0.006-0.009,0.013-0.013,0.019v0.007c0.085,0,0.174-0.005,0.242-0.013\r\n\t\t\t\tc0.02-0.081-0.008-0.157,0.032-0.216v-0.006h-0.038C11.059,37.905,10.99,37.913,10.93,37.912z M10.015,33.979\r\n\t\t\t\tc-0.092-0.017-0.212,0.006-0.261-0.083c-0.045,0.004-0.062,0.023-0.089,0.032c-0.04-0.004-0.081-0.008-0.121-0.013\r\n\t\t\t\tc-0.04,0.009-0.059,0.049-0.127,0.038c-0.109-0.017-0.194-0.056-0.324-0.057c-0.027,0.004-0.055,0.008-0.083,0.013\r\n\t\t\t\tc-0.006,0.008-0.013,0.017-0.019,0.026v0.025c0.064,0.033,0.195,0.03,0.229,0.095c0.046,0.078-0.076,0.145,0.095,0.21\r\n\t\t\t\tc0.004,0.006,0.008,0.013,0.013,0.019c-0.128,0.082-0.41,0.037-0.572-0.013c-0.013,0.015-0.025,0.03-0.038,0.045\r\n\t\t\t\tc-0.002,0.004-0.004,0.008-0.006,0.013c0.034,0.065,0.099,0.077,0.152,0.121c0.05-0.012,0.053-0.047,0.102-0.057\r\n\t\t\t\tc0.076,0.011,0.153,0.021,0.229,0.032c0.078-0.006,0.157-0.013,0.235-0.019c0.048,0.048,0.109,0.151,0.178,0.172\r\n\t\t\t\tc0.044-0.114,0.093-0.196,0.203-0.248c0.021,0.023,0.042,0.047,0.064,0.07c0.075,0.033,0.112-0.06,0.178-0.076\r\n\t\t\t\tc0.044-0.011,0.074,0.012,0.095,0.019c0.129-0.06,0.183,0.045,0.248,0.083c0.039-0.029,0.062-0.074,0.089-0.114\r\n\t\t\t\tC10.38,34.159,10.076,34.16,10.015,33.979z M7.581,34.385c0.019,0.027,0.251,0.169,0.311,0.153\r\n\t\t\t\tc0.044-0.012,0.058-0.078,0.14-0.057c0.051,0.013,0.064,0.04,0.127,0.038c0.002-0.011,0.004-0.021,0.006-0.032\r\n\t\t\t\tc-0.073-0.11-0.33-0.158-0.515-0.153C7.628,34.352,7.604,34.368,7.581,34.385z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"COMPASS_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"COMPASS","display":"inline"},"children":[{"name":"g","attribs":{"id":"COMPASS","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3C35,33.657,33.657,35,32,35z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M16,16l9,22l23,10l-9-23L16,16z M32,35c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-1.657,1.343-3,3-3c1.657,0,3,1.343,3,3C35,33.657,33.657,35,32,35z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32\r\n\t\t\t\tc17.673,0,32-14.327,32-32C64,14.327,49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32S17.641,6,32,6c14.359,0,26,11.641,26,26\r\n\t\t\t\tS46.359,58,32,58z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"TARGET_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"TARGET","display":"inline"},"children":[{"name":"g","attribs":{"id":"TARGET","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,29c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tC35,30.343,33.657,29,32,29z M61,29h-3.186C56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186\r\n\t\t\t\tC17.042,7.562,7.568,17.044,6.191,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191C46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M46,35h5.751C50.448,43.638,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756\r\n\t\t\t\tC20.366,50.453,13.552,43.638,12.249,35H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-5.756\r\n\t\t\t\tC13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756C43.634,13.547,50.448,20.362,51.751,29H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C43,33.657,44.343,35,46,35z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,29c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3s3-1.343,3-3\r\n\t\t\t\tC35,30.343,33.657,29,32,29z M61,29h-3.186C56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186\r\n\t\t\t\tC17.042,7.562,7.568,17.044,6.191,29H3c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191C46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3\r\n\t\t\t\tC64,30.343,62.657,29,61,29z M46,35h5.751C50.448,43.638,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756\r\n\t\t\t\tC20.366,50.453,13.552,43.638,12.249,35H18c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3h-5.756\r\n\t\t\t\tC13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756C43.634,13.547,50.448,20.362,51.751,29H46\r\n\t\t\t\tc-1.657,0-3,1.343-3,3C43,33.657,44.343,35,46,35z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_OUT","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tC43,22.343,41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21H24c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h16c1.657,0,3-1.343,3-3\r\n\t\t\t\tC43,22.343,41.657,21,40,21z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN__x2F__ZOOM_IN","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h5v5c0,1.657,1.343,3,3,3s3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16\r\n\t\t\t\tc0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M40,21h-5v-5c0-1.657-1.343-3-3-3s-3,1.343-3,3v5h-5c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3h5v5c0,1.657,1.343,3,3,3s3-1.343,3-3v-5h5c1.657,0,3-1.343,3-3C43,22.343,41.657,21,40,21z M32,0\r\n\t\t\t\tC18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16\r\n\t\t\t\tc0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN_2_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_2","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN_2","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,16c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC40,19.582,36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,16c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8\r\n\t\t\t\tC40,19.582,36.418,16,32,16z M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40C56,10.747,45.254,0,32,0z\r\n\t\t\t\t M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16C48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"PIN_1_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"PIN_1","display":"inline"},"children":[{"name":"g","attribs":{"id":"PIN_1","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\t\t\tC48,32.836,40.836,40,32,40z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M32,0C18.746,0,8,10.747,8,24c0,13.254,24,40,24,40s24-26.746,24-40\r\n\t\t\t\tC56,10.747,45.254,0,32,0z M32,40c-8.836,0-16-7.164-16-16c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\t\t\tC48,32.836,40.836,40,32,40z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__UPLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719\r\n\t\t\t\tl0,0l-0.008-0.009c-0.001-0.001-0.002-0.002-0.003-0.003l-8.99-9.989l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.673,0.391-2.222,1l-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.005-0.006,0.007l-0.006,0.006l0,0\r\n\t\t\t\tC20.292,42.525,20,43.228,20,44c0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.005,0.098-0.008\r\n\t\t\t\tc0.012-0.001,0.024-0.003,0.036-0.005c0.044-0.005,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.113,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.189l0,0\r\n\t\t\t\tc0.446,0.495,1.055,0.841,1.742,0.953c0.001,0,0.001,0,0.002,0c0.044,0.007,0.088,0.013,0.132,0.018\r\n\t\t\t\tc0.011,0.001,0.023,0.003,0.034,0.004c0.033,0.003,0.067,0.006,0.1,0.008c0.021,0.002,0.042,0.004,0.063,0.005\r\n\t\t\t\tc0.02,0.001,0.04,0.001,0.06,0.002C40.935,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002\r\n\t\t\t\tC44,43.904,43.995,43.811,43.986,43.719z M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.192,0,11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.53,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43.986,43.719c0-0.002,0-0.004,0-0.006c-0.063-0.658-0.338-1.255-0.756-1.719\r\n\t\t\t\tl0,0l-0.008-0.009c-0.001-0.001-0.002-0.002-0.003-0.003l-8.99-9.989l-0.008,0.007c-0.549-0.61-1.336-1-2.222-1\r\n\t\t\t\tc-0.885,0-1.673,0.391-2.222,1l-0.008-0.007l-8.988,9.987c-0.002,0.002-0.004,0.005-0.006,0.007l-0.006,0.006l0,0\r\n\t\t\t\tC20.292,42.525,20,43.228,20,44c0,0.518,0.131,1.005,0.362,1.43C20.87,46.365,21.861,47,23,47c0.033,0,0.066-0.002,0.099-0.003\r\n\t\t\t\tc0.019-0.001,0.038-0.001,0.057-0.002c0.022-0.001,0.043-0.003,0.065-0.005c0.033-0.002,0.066-0.005,0.098-0.008\r\n\t\t\t\tc0.012-0.001,0.024-0.003,0.036-0.005c0.044-0.005,0.087-0.011,0.13-0.018c0.001,0,0.003,0,0.004-0.001\r\n\t\t\t\tc0.686-0.113,1.294-0.458,1.74-0.953l0,0L29,41.818V57c0,1.657,1.343,3,3,3s3-1.343,3-3V41.818l3.77,4.189l0,0\r\n\t\t\t\tc0.446,0.495,1.055,0.841,1.742,0.953c0.001,0,0.001,0,0.002,0c0.044,0.007,0.088,0.013,0.132,0.018\r\n\t\t\t\tc0.011,0.001,0.023,0.003,0.034,0.004c0.033,0.003,0.067,0.006,0.1,0.008c0.021,0.002,0.042,0.004,0.063,0.005\r\n\t\t\t\tc0.02,0.001,0.04,0.001,0.06,0.002C40.935,46.999,40.967,47,41,47c1.657,0,3-1.343,3-3c0-0.001,0-0.001,0-0.002\r\n\t\t\t\tC44,43.904,43.995,43.811,43.986,43.719z M53.387,19.656C50.048,11.086,41.753,5,32,5c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,25.017,14.702,25,15,25\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,14.318,25.808,11,32,11\r\n\t\t\t\tc6.192,0,11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.598,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,25.011,48.906,25,49,25\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.405,0.315,0.597,0.485C56.822,28.921,58,31.32,58,34c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,27.243,59.53,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__DOWNLOAD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,44c-0.885,0-1.681,0.384-2.23,0.993h0L35,49.182V34c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v15.182l-3.77-4.189l0,0C24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.192,0.014,0.286\r\n\t\t\t\tc0,0,0,0,0,0c0.062,0.659,0.337,1.256,0.756,1.721l0,0l9,10L29.778,59C30.327,59.609,31.115,60,32,60s1.673-0.391,2.222-1.001\r\n\t\t\t\tl0.008,0.007l9-10l0,0c0.419-0.465,0.694-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.015-0.307C43.831,45.181,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097\r\n\t\t\t\tC20.406,14.318,25.808,11,32,11s11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512\r\n\t\t\t\tC48.815,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.397,0.21,0.589,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485\r\n\t\t\t\tC56.822,28.921,58,31.32,58,34c0,4.971-4.03,9-9,9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,27.243,59.53,21.532,53.387,19.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M41,44c-0.885,0-1.681,0.384-2.23,0.993h0L35,49.182V34c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v15.182l-3.77-4.189l0,0C24.681,44.384,23.885,44,23,44c-1.657,0-3,1.343-3,3c0,0.096,0.005,0.192,0.014,0.286\r\n\t\t\t\tc0,0,0,0,0,0c0.062,0.659,0.337,1.256,0.756,1.721l0,0l9,10L29.778,59C30.327,59.609,31.115,60,32,60s1.673-0.391,2.222-1.001\r\n\t\t\t\tl0.008,0.007l9-10l0,0c0.419-0.465,0.694-1.061,0.756-1.719c0-0.002,0-0.004,0-0.006C43.995,47.189,44,47.096,44,47.001V47\r\n\t\t\t\tc0-0.104-0.005-0.206-0.015-0.307C43.831,45.181,42.553,44,41,44z M53.387,19.656C50.048,11.086,41.753,5,32,5\r\n\t\t\t\tc-9.752,0-18.048,6.086-21.387,14.655C4.47,21.532,0,27.243,0,34c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485\r\n\t\t\t\tc0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058\r\n\t\t\t\tc0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248\r\n\t\t\t\tc0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091\r\n\t\t\t\tc0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05\r\n\t\t\t\tC14.408,25.017,14.702,25,15,25c0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512\r\n\t\t\t\tc0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324\r\n\t\t\t\tc0.148-0.37,0.3-0.737,0.473-1.093c0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097\r\n\t\t\t\tC20.406,14.318,25.808,11,32,11s11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097\r\n\t\t\t\tc0.043,0.085,0.091,0.167,0.133,0.253c0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324\r\n\t\t\t\tc0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512\r\n\t\t\t\tC48.815,25.011,48.906,25,49,25c0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05\r\n\t\t\t\tc0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091\r\n\t\t\t\tc0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248\r\n\t\t\t\tc0.056,0.026,0.112,0.053,0.167,0.08c0.201,0.101,0.397,0.21,0.589,0.326c0.032,0.019,0.064,0.039,0.096,0.058\r\n\t\t\t\tc0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485\r\n\t\t\t\tC56.822,28.921,58,31.32,58,34c0,4.971-4.03,9-9,9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15\r\n\t\t\t\tC64,27.243,59.53,21.532,53.387,19.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__FAIL","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758\r\n\t\t\t\tl-5.879-5.879C25.578,36.336,24.829,36,24,36c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879\r\n\t\t\t\tC21.336,53.422,21,54.172,21,55c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879\r\n\t\t\t\tC38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3c0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879\r\n\t\t\t\tC42.664,40.579,43,39.829,43,39z M53.387,20.656C50.048,12.086,41.752,6,32,6c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.589-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.192,0,11.594,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,39c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L32,42.758\r\n\t\t\t\tl-5.879-5.879C25.578,36.336,24.829,36,24,36c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121L27.757,47l-5.879,5.879\r\n\t\t\t\tC21.336,53.422,21,54.172,21,55c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.878L32,51.243l5.879,5.879\r\n\t\t\t\tC38.422,57.664,39.172,58,40,58c1.657,0,3-1.343,3-3c0-0.829-0.336-1.579-0.879-2.121L36.243,47l5.879-5.879\r\n\t\t\t\tC42.664,40.579,43,39.829,43,39z M53.387,20.656C50.048,12.086,41.752,6,32,6c-9.752,0-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9\r\n\t\t\t\tc0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.6-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.589-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.599-1.097C20.406,15.318,25.808,12,32,12\r\n\t\t\t\tc6.192,0,11.594,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD__x2F__OK_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD__x2F__OK","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,36c-1.039,0-1.954,0.528-2.493,1.33l-8.936,12.998l-5.45-5.45\r\n\t\t\t\tC25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58\r\n\t\t\t\tc1.039,0,1.954-0.528,2.493-1.33l10.969-15.954C45.801,40.23,46,39.638,46,39C46,37.343,44.657,36,43,36z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6c-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.041-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12c6.192,0,11.594,3.318,14.562,8.266\r\n\t\t\t\tc0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.172,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357\r\n\t\t\t\tc0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109\r\n\t\t\t\tc0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.2,0.101,0.397,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M43,36c-1.039,0-1.954,0.528-2.493,1.33l-8.936,12.998l-5.45-5.45\r\n\t\t\t\tC25.578,44.336,24.828,44,24,44c-1.657,0-3,1.343-3,3c0,0.829,0.336,1.579,0.879,2.121l8,8C30.422,57.664,31.172,58,32,58\r\n\t\t\t\tc1.039,0,1.954-0.528,2.493-1.33l10.969-15.954C45.801,40.23,46,39.638,46,39C46,37.343,44.657,36,43,36z M53.387,20.656\r\n\t\t\t\tC50.048,12.086,41.752,6,32,6c-9.753,0-18.048,6.086-21.387,14.655C4.47,22.532,0,28.243,0,35c0,8.284,6.716,15,15,15\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3c-4.971,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728\r\n\t\t\t\tc0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03c0.194-0.144,0.395-0.278,0.601-0.406\r\n\t\t\t\tc0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326c0.055-0.028,0.111-0.054,0.167-0.08\r\n\t\t\t\tc0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092c0.171-0.062,0.343-0.123,0.519-0.175\r\n\t\t\t\tc0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109c0.162-0.032,0.328-0.053,0.493-0.075\r\n\t\t\t\tc0.119-0.016,0.236-0.039,0.356-0.05C14.408,26.017,14.702,26,15,26c0.094,0,0.185,0.011,0.278,0.014\r\n\t\t\t\tc0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357c0.112-0.375,0.227-0.749,0.364-1.112\r\n\t\t\t\tc0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093c0.041-0.086,0.09-0.168,0.133-0.253\r\n\t\t\t\tc0.188-0.372,0.384-0.741,0.598-1.097C20.406,15.318,25.808,12,32,12c6.192,0,11.594,3.318,14.562,8.266\r\n\t\t\t\tc0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253c0.172,0.356,0.325,0.724,0.473,1.093\r\n\t\t\t\tc0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112c0.036,0.12,0.081,0.236,0.114,0.357\r\n\t\t\t\tc0.136,0.495,0.251,0.999,0.342,1.512C48.815,26.011,48.906,26,49,26c0.298,0,0.592,0.016,0.882,0.045\r\n\t\t\t\tc0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075c0.155,0.03,0.306,0.07,0.457,0.109\r\n\t\t\t\tc0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175c0.084,0.031,0.169,0.059,0.252,0.092\r\n\t\t\t\tc0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08c0.2,0.101,0.397,0.21,0.588,0.326\r\n\t\t\t\tc0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406c0.013,0.01,0.027,0.02,0.04,0.03\r\n\t\t\t\tc0.206,0.154,0.405,0.315,0.597,0.485C56.822,29.921,58,32.32,58,35c0,4.971-4.029,9-9,9c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,1.657,1.343,3,3,3c8.284,0,15-6.716,15-15C64,28.243,59.53,22.532,53.387,20.656z"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{"id":"CLOUD_1_","display":"none","enable-background":"new "},"children":[{"name":"g","attribs":{"id":"CLOUD","display":"inline"},"children":[{"name":"g","attribs":{"id":"CLOUD","display":"inline"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,26.532,0,32.243,0,39c0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.53,26.532,53.387,24.656z M49,48H15\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\ts11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M53.387,24.656C50.048,16.086,41.753,10,32,10s-18.048,6.086-21.387,14.655\r\n\t\t\t\tC4.47,26.532,0,32.243,0,39c0,8.284,6.716,15,15,15h34c8.284,0,15-6.716,15-15C64,32.243,59.53,26.532,53.387,24.656z M49,48H15\r\n\t\t\t\tc-4.97,0-9-4.029-9-9c0-2.68,1.178-5.08,3.037-6.728c0.192-0.17,0.392-0.331,0.597-0.485c0.013-0.01,0.027-0.02,0.04-0.03\r\n\t\t\t\tc0.194-0.144,0.395-0.278,0.601-0.406c0.032-0.02,0.064-0.039,0.096-0.058c0.192-0.116,0.388-0.225,0.588-0.326\r\n\t\t\t\tc0.055-0.028,0.111-0.054,0.167-0.08c0.184-0.089,0.371-0.172,0.561-0.248c0.083-0.033,0.168-0.062,0.252-0.092\r\n\t\t\t\tc0.171-0.062,0.343-0.123,0.519-0.175c0.116-0.034,0.236-0.062,0.354-0.091c0.152-0.038,0.303-0.079,0.457-0.109\r\n\t\t\t\tc0.162-0.032,0.328-0.053,0.493-0.075c0.119-0.016,0.236-0.039,0.356-0.05C14.408,30.017,14.702,30,15,30\r\n\t\t\t\tc0.094,0,0.185,0.011,0.278,0.014c0.091-0.513,0.206-1.017,0.342-1.512c0.033-0.121,0.078-0.237,0.114-0.357\r\n\t\t\t\tc0.112-0.375,0.227-0.749,0.364-1.112c0.041-0.11,0.092-0.215,0.135-0.324c0.148-0.37,0.3-0.737,0.473-1.093\r\n\t\t\t\tc0.042-0.086,0.09-0.168,0.133-0.253c0.188-0.372,0.384-0.741,0.598-1.097C20.406,19.318,25.808,16,32,16\r\n\t\t\t\ts11.595,3.318,14.562,8.266c0.214,0.357,0.41,0.725,0.599,1.097c0.043,0.085,0.091,0.167,0.133,0.253\r\n\t\t\t\tc0.173,0.356,0.325,0.724,0.473,1.093c0.043,0.109,0.094,0.214,0.135,0.324c0.137,0.363,0.252,0.737,0.364,1.112\r\n\t\t\t\tc0.036,0.12,0.081,0.236,0.114,0.357c0.136,0.495,0.251,0.999,0.342,1.512C48.815,30.011,48.906,30,49,30\r\n\t\t\t\tc0.298,0,0.592,0.016,0.882,0.045c0.12,0.012,0.237,0.034,0.356,0.05c0.165,0.023,0.331,0.043,0.493,0.075\r\n\t\t\t\tc0.155,0.03,0.306,0.07,0.457,0.109c0.118,0.029,0.238,0.057,0.354,0.091c0.176,0.052,0.348,0.113,0.519,0.175\r\n\t\t\t\tc0.084,0.031,0.169,0.059,0.252,0.092c0.191,0.076,0.377,0.16,0.561,0.248c0.056,0.026,0.112,0.053,0.167,0.08\r\n\t\t\t\tc0.201,0.101,0.397,0.21,0.588,0.326c0.032,0.019,0.064,0.039,0.096,0.058c0.206,0.128,0.406,0.263,0.601,0.406\r\n\t\t\t\tc0.013,0.01,0.027,0.02,0.04,0.03c0.206,0.154,0.406,0.315,0.597,0.485C56.822,33.921,58,36.32,58,39C58,43.971,53.971,48,49,48z\r\n\t\t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.shopping_cart_add=shopping_cart_add;
\ No newline at end of file
diff --git a/dist/ikons/shopping_cart_delete.js b/dist/ikons/shopping_cart_delete.js
new file mode 100644
index 000000000..9957b1fce
--- /dev/null
+++ b/dist/ikons/shopping_cart_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shopping_cart_delete = void 0;
+var shopping_cart_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z M51,30\r\n\t\t\t\tc7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L55.243,17l1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879C48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,49H27.779l-1.498-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z M51,30\r\n\t\t\t\tc7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M44.879,15.121C44.336,14.578,44,13.828,44,13\r\n\t\t\t\tc0-1.657,1.343-3,3-3c0.828,0,1.578,0.336,2.121,0.879L51,12.757l1.879-1.879C53.422,10.336,54.172,10,55,10c1.657,0,3,1.343,3,3\r\n\t\t\t\tc0,0.828-0.336,1.578-0.879,2.121L55.243,17l1.879,1.879C57.664,19.422,58,20.172,58,21c0,1.657-1.343,3-3,3\r\n\t\t\t\tc-0.828,0-1.578-0.336-2.121-0.879L51,21.243l-1.879,1.879C48.579,23.664,47.828,24,47,24c-1.657,0-3-1.343-3-3\r\n\t\t\t\tc0-0.828,0.336-1.578,0.879-2.121L46.757,17L44.879,15.121z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.shopping_cart_delete = shopping_cart_delete;
\ No newline at end of file
diff --git a/dist/ikons/shopping_cart_ok.js b/dist/ikons/shopping_cart_ok.js
new file mode 100644
index 000000000..2a7fe2f0f
--- /dev/null
+++ b/dist/ikons/shopping_cart_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shopping_cart_ok = void 0;
+var shopping_cart_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8\r\n\t\t\t\tC50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4C42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49\r\n\t\t\t\tH27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,15c0.828,0,1.578,0.336,2.121,0.879\r\n\t\t\t\tL49,17.757l5.879-5.879C55.422,11.336,56.172,11,57,11c1.657,0,3,1.343,3,3c0,0.828-0.336,1.578-0.879,2.121l-8,8\r\n\t\t\t\tC50.578,24.664,49.828,25,49,25s-1.578-0.336-2.121-0.879l-4-4C42.336,19.578,42,18.828,42,18C42,16.343,43.343,15,45,15z M56,49\r\n\t\t\t\tH27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0l4.83-10.733\r\n\t\t\t\tc-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.679,23h17.495C35.423,21.146,35,19.124,35,17H16.578\r\n\t\t\t\tl-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.shopping_cart_ok = shopping_cart_ok;
\ No newline at end of file
diff --git a/dist/ikons/shopping_cart_remove.js b/dist/ikons/shopping_cart_remove.js
new file mode 100644
index 000000000..6aaedbf15
--- /dev/null
+++ b/dist/ikons/shopping_cart_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shopping_cart_remove = void 0;
+var shopping_cart_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHOPPING_CART__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0\r\n\t\t\t\tl4.83-10.733c-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17\r\n\t\t\t\tH16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M51,30c7.18,0,13-5.82,13-13S58.18,4,51,4S38,9.82,38,17S43.82,30,51,30z M45,14h12c1.657,0,3,1.343,3,3s-1.343,3-3,3H45\r\n\t\t\t\tc-1.657,0-3-1.343-3-3S43.343,14,45,14z M56,49H27.778l-1.497-4.279L52.2,42.993v-0.001c1.132-0.074,2.092-0.776,2.536-1.762l0,0\r\n\t\t\t\tl4.83-10.733c-2.246,1.427-4.866,2.303-7.686,2.457l-1.877,4.171l-25.779,1.719L18.678,23h17.495C35.423,21.146,35,19.124,35,17\r\n\t\t\t\tH16.578l-1.747-4.991l-0.011,0.004C14.411,10.844,13.309,10,12,10H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h6.872l11.55,33H16\r\n\t\t\t\tc-3.314,0-6,2.686-6,6s2.686,6,6,6s6-2.686,6-6h28c0,3.314,2.686,6,6,6s6-2.686,6-6S59.314,49,56,49z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.shopping_cart_remove = shopping_cart_remove;
\ No newline at end of file
diff --git a/dist/ikons/shuffle.js b/dist/ikons/shuffle.js
new file mode 100644
index 000000000..fecfe8aa6
--- /dev/null
+++ b/dist/ikons/shuffle.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shuffle = void 0;
+var shuffle = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHUFFLE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHUFFLE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SHUFFLE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879C14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tS1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.342,3,3,3\r\n\t\t\t\tc0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121s-0.336-1.578-0.88-2.121l-7-7\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.12-0.879c-1.658,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19\r\n\t\t\t\tH52z M56.137,38.874c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52\r\n\t\t\t\tV45h-5.757l-10.88-10.879l-4.242,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.344,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,19h8.757l10.879,10.879l4.243-4.243L15.121,13.879C14.578,13.336,13.828,13,13,13H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\tS1.343,19,3,19z M52,19v0.005h1.773l-1.879,1.879c-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.342,3,3,3\r\n\t\t\t\tc0.827,0,1.577-0.336,2.12-0.879l7-7c0.544-0.543,0.88-1.293,0.88-2.121s-0.336-1.578-0.88-2.121l-7-7\r\n\t\t\t\tc-0.543-0.543-1.293-0.879-2.12-0.879c-1.658,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L53.768,13H45\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L11.757,45H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h10c0.828,0,1.578-0.336,2.121-0.879L46.243,19\r\n\t\t\t\tH52z M56.137,38.874c-0.543-0.543-1.293-0.879-2.121-0.879c-1.656,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121l1.879,1.879H52\r\n\t\t\t\tV45h-5.757l-10.88-10.879l-4.242,4.242l11.757,11.758C43.422,50.664,44.172,51,45,51h8.768l-1.873,1.874\r\n\t\t\t\tc-0.543,0.543-0.879,1.293-0.879,2.121c0,1.657,1.344,3,3,3c0.828,0,1.578-0.336,2.121-0.879l7-7\r\n\t\t\t\tc0.543-0.543,0.879-1.293,0.879-2.121s-0.336-1.578-0.879-2.121L56.137,38.874z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.shuffle = shuffle;
\ No newline at end of file
diff --git a/dist/ikons/skip_next.js b/dist/ikons/skip_next.js
new file mode 100644
index 000000000..808b6b909
--- /dev/null
+++ b/dist/ikons/skip_next.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skip_next = void 0;
+var skip_next = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SKIP__x2F__NEXT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SKIP__x2F__NEXT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SKIP__x2F__NEXT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0C24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42c0,1.657,1.343,3,3,3s3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,19c-1.657,0-3,1.343-3,3v5.837l-13.41-8.381l0,0C24.129,19.168,23.584,19,23,19c-1.657,0-3,1.343-3,3v20\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.584,0,1.129-0.167,1.59-0.456l0,0L38,36.163V42c0,1.657,1.343,3,3,3s3-1.343,3-3V22\r\n\t\t\t\tC44,20.343,42.657,19,41,19z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.skip_next = skip_next;
\ No newline at end of file
diff --git a/dist/ikons/skip_previous.js b/dist/ikons/skip_previous.js
new file mode 100644
index 000000000..6afdd4eec
--- /dev/null
+++ b/dist/ikons/skip_previous.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skip_previous = void 0;
+var skip_previous = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SKIP__x2F__PREVIOUS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SKIP__x2F__PREVIOUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SKIP__x2F__PREVIOUS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3s-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M41,19c-0.584,0-1.129,0.168-1.59,0.456l0,0L26,27.837V22c0-1.657-1.343-3-3-3s-3,1.343-3,3v20c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3v-5.837l13.41,8.381l0,0C39.871,44.833,40.416,45,41,45c1.657,0,3-1.343,3-3V22C44,20.343,42.657,19,41,19z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.skip_previous = skip_previous;
\ No newline at end of file
diff --git a/dist/ikons/skype.js b/dist/ikons/skype.js
new file mode 100644
index 000000000..a3c49b192
--- /dev/null
+++ b/dist/ikons/skype.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skype = void 0;
+var skype = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "skype_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "skype"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "skype"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M59.539,36.936C59.825,35.33,60,33.688,60,32C60,16.536,47.464,4,32,4c-1.687,0-3.33,0.175-4.934,0.461\r\n\t\t\t\tC24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066C4.175,28.67,4,30.313,4,32\r\n\t\t\t\tc0,15.464,12.536,28,28,28c1.688,0,3.33-0.175,4.936-0.461C39.809,62.297,43.702,64,48,64c8.837,0,16-7.163,16-16\r\n\t\t\t\tC64,43.703,62.297,39.809,59.539,36.936z M44.331,43.208c-1.104,1.506-2.74,2.7-4.856,3.548\r\n\t\t\t\tc-2.096,0.838-4.608,1.266-7.469,1.266c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.572,0.995-2.17c0.655-0.595,1.494-0.895,2.495-0.895\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.725,1.372,2.342\r\n\t\t\t\tc0.471,0.601,1.144,1.102,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.406,4.814-1.207\r\n\t\t\t\tc1.19-0.781,1.768-1.722,1.768-2.871c0-0.908-0.303-1.621-0.922-2.184c-0.652-0.586-1.51-1.039-2.551-1.355\r\n\t\t\t\tc-1.086-0.323-2.562-0.678-4.385-1.047c-2.48-0.508-4.587-1.117-6.264-1.801c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.903,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.832,1.635,2.324,2.515c0.493,0.886,0.746,1.77,0.746,2.624c0,0.823-0.33,1.571-0.98,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.886,0-1.578-0.209-2.06-0.616c-0.447-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.805-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.145,0.717,2.051,1.637,2.694,2.737c0.646,1.105,0.972,2.47,0.972,4.054\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M59.539,36.936C59.825,35.33,60,33.688,60,32C60,16.536,47.464,4,32,4c-1.687,0-3.33,0.175-4.934,0.461\r\n\t\t\t\tC24.191,1.704,20.298,0,16,0C7.164,0,0,7.164,0,16c0,4.298,1.703,8.191,4.461,11.066C4.175,28.67,4,30.313,4,32\r\n\t\t\t\tc0,15.464,12.536,28,28,28c1.688,0,3.33-0.175,4.936-0.461C39.809,62.297,43.702,64,48,64c8.837,0,16-7.163,16-16\r\n\t\t\t\tC64,43.703,62.297,39.809,59.539,36.936z M44.331,43.208c-1.104,1.506-2.74,2.7-4.856,3.548\r\n\t\t\t\tc-2.096,0.838-4.608,1.266-7.469,1.266c-3.433,0-6.312-0.582-8.558-1.73c-1.606-0.834-2.93-1.963-3.936-3.363\r\n\t\t\t\tc-1.014-1.408-1.529-2.807-1.529-4.158c0-0.842,0.335-1.572,0.995-2.17c0.655-0.595,1.494-0.895,2.495-0.895\r\n\t\t\t\tc0.822,0,1.531,0.236,2.106,0.703c0.55,0.451,1.022,1.115,1.401,1.973c0.425,0.936,0.885,1.725,1.372,2.342\r\n\t\t\t\tc0.471,0.601,1.144,1.102,2.006,1.494c0.866,0.395,2.035,0.596,3.472,0.596c1.975,0,3.596-0.406,4.814-1.207\r\n\t\t\t\tc1.19-0.781,1.768-1.722,1.768-2.871c0-0.908-0.303-1.621-0.922-2.184c-0.652-0.586-1.51-1.039-2.551-1.355\r\n\t\t\t\tc-1.086-0.323-2.562-0.678-4.385-1.047c-2.48-0.508-4.587-1.117-6.264-1.801c-1.715-0.703-3.096-1.677-4.106-2.894\r\n\t\t\t\tc-1.026-1.238-1.546-2.787-1.546-4.613c0-1.738,0.546-3.306,1.623-4.656c1.069-1.343,2.63-2.388,4.64-3.101\r\n\t\t\t\tc1.984-0.707,4.343-1.065,7.013-1.065c2.134,0,4.01,0.24,5.577,0.707c1.577,0.471,2.903,1.109,3.948,1.895\r\n\t\t\t\tc1.051,0.791,1.832,1.635,2.324,2.515c0.493,0.886,0.746,1.77,0.746,2.624c0,0.823-0.33,1.571-0.98,2.223\r\n\t\t\t\tc-0.655,0.655-1.481,0.987-2.454,0.987c-0.886,0-1.578-0.209-2.06-0.616c-0.447-0.383-0.912-0.977-1.426-1.83\r\n\t\t\t\tc-0.596-1.09-1.318-1.949-2.145-2.556c-0.805-0.59-2.147-0.886-3.991-0.886c-1.713,0-3.107,0.33-4.141,0.985\r\n\t\t\t\tc-0.998,0.628-1.483,1.349-1.483,2.205c0,0.525,0.157,0.963,0.479,1.339c0.339,0.403,0.819,0.749,1.424,1.043\r\n\t\t\t\tc0.627,0.304,1.276,0.546,1.923,0.717c0.664,0.179,1.779,0.441,3.308,0.781c1.935,0.401,3.712,0.848,5.284,1.333\r\n\t\t\t\tc1.593,0.491,2.967,1.093,4.09,1.798c1.145,0.717,2.051,1.637,2.694,2.737c0.646,1.105,0.972,2.47,0.972,4.054\r\n\t\t\t\tC46.003,39.968,45.439,41.698,44.331,43.208z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.skype = skype;
\ No newline at end of file
diff --git a/dist/ikons/slideshow.js b/dist/ikons/slideshow.js
new file mode 100644
index 000000000..035e0766a
--- /dev/null
+++ b/dist/ikons/slideshow.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.slideshow = void 0;
+var slideshow = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SLIDESHOW_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SLIDESHOW"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SLIDESHOW"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3s3-1.343,3-3V21C15,19.343,13.657,18,12,18z M3,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3s3-1.343,3-3V15C6,13.343,4.657,12,3,12z M52,18c-1.657,0-3,1.343-3,3v22\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12,18c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3s3-1.343,3-3V21C15,19.343,13.657,18,12,18z M3,12\r\n\t\t\t\tc-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3s3-1.343,3-3V15C6,13.343,4.657,12,3,12z M52,18c-1.657,0-3,1.343-3,3v22\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3V21C55,19.343,53.657,18,52,18z M61,12c-1.657,0-3,1.343-3,3v34c0,1.657,1.343,3,3,3\r\n\t\t\t\ts3-1.343,3-3V15C64,13.343,62.657,12,61,12z M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC46,19.343,44.657,18,43,18z M40,40H24V24h16V40z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.slideshow = slideshow;
\ No newline at end of file
diff --git a/dist/ikons/speech_1.js b/dist/ikons/speech_1.js
new file mode 100644
index 000000000..38da53003
--- /dev/null
+++ b/dist/ikons/speech_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.speech_1 = void 0;
+var speech_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.534,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9h52V46z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,3,3h4v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.048,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.534,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M58,46H17.757L13,50.757V46H6V9h52V46z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.speech_1 = speech_1;
\ No newline at end of file
diff --git a/dist/ikons/speech_2.js b/dist/ikons/speech_2.js
new file mode 100644
index 000000000..e6d59bc90
--- /dev/null
+++ b/dist/ikons/speech_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.speech_2 = void 0;
+var speech_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,3,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.speech_2 = speech_2;
\ No newline at end of file
diff --git a/dist/ikons/speech_3.js b/dist/ikons/speech_3.js
new file mode 100644
index 000000000..1fbc9f205
--- /dev/null
+++ b/dist/ikons/speech_3.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.speech_3 = void 0;
+var speech_3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_3_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S20.314,34,17,34z M32,34\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tS50.314,34,47,34z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,3H3C1.343,3,0,4.343,0,6v43c0,1.657,1.343,2.999,2.999,3H7v6c0,0.207,0.021,0.409,0.061,0.604\r\n\t\t\t\tc0.028,0.137,0.076,0.265,0.122,0.394c0.02,0.056,0.03,0.116,0.053,0.17c0.049,0.115,0.115,0.219,0.177,0.326\r\n\t\t\t\tc0.035,0.06,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404c0.012,0.012,0.021,0.028,0.033,0.04\r\n\t\t\t\tc0.535,0.533,1.271,0.865,2.084,0.875C9.976,60.997,9.987,61,10,61c0.828,0,1.578-0.336,2.121-0.879L20.243,52H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3V6C64,4.343,62.657,3,61,3z M17,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S20.314,34,17,34z M32,34\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,34,32,34z M47,34c-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6\r\n\t\t\t\tS50.314,34,47,34z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.speech_3 = speech_3;
\ No newline at end of file
diff --git a/dist/ikons/speech_4.js b/dist/ikons/speech_4.js
new file mode 100644
index 000000000..f3d700c9d
--- /dev/null
+++ b/dist/ikons/speech_4.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.speech_4 = void 0;
+var speech_4 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_4_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_4"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_4"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M51.841,47.327L45.516,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3v34c0,1.656,1.341,2.998,2.996,3H7.5l0,0H8\r\n\t\t\t\tv6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.057,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.061,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.027,0.033,0.04c0.534,0.535,1.271,0.864,2.084,0.875C10.976,62.996,10.987,63,11,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L21.243,54H22l0,0h3l0,0h6.9l0,0H53l0,0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.613,0-3.072-0.645-4.15-1.682L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.014,0,0.025-0.004,0.037-0.004c0.812-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.234-0.259,0.332-0.404c0.039-0.057,0.065-0.122,0.101-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.047-0.129,0.095-0.257,0.123-0.394\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M51.841,47.327L45.516,41H19c-3.314,0-6-2.686-6-6V14H4c-1.657,0-3,1.343-3,3v34c0,1.656,1.341,2.998,2.996,3H7.5l0,0H8\r\n\t\t\t\tv6c0,0.207,0.021,0.409,0.061,0.605c0.028,0.136,0.076,0.264,0.122,0.393c0.02,0.057,0.03,0.116,0.053,0.17\r\n\t\t\t\tc0.048,0.115,0.115,0.219,0.177,0.326c0.035,0.061,0.061,0.126,0.1,0.184c0.098,0.146,0.212,0.278,0.333,0.404\r\n\t\t\t\tc0.012,0.012,0.021,0.027,0.033,0.04c0.534,0.535,1.271,0.864,2.084,0.875C10.976,62.996,10.987,63,11,63\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L21.243,54H22l0,0h3l0,0h6.9l0,0H53l0,0c1.657,0,3-1.343,3-3v-2\r\n\t\t\t\tc-1.613,0-3.072-0.645-4.15-1.682L51.841,47.327z M61,2H19c-1.657,0-3,1.343-3,3v30c0,1.657,1.343,3,3,3h27.757l7.121,7.121\r\n\t\t\t\tC54.422,45.664,55.172,46,56,46c0.014,0,0.025-0.004,0.037-0.004c0.812-0.01,1.55-0.34,2.084-0.875\r\n\t\t\t\tc0.012-0.012,0.021-0.028,0.033-0.04c0.121-0.126,0.234-0.259,0.332-0.404c0.039-0.057,0.065-0.122,0.101-0.184\r\n\t\t\t\tc0.062-0.107,0.128-0.211,0.177-0.326c0.023-0.054,0.033-0.114,0.053-0.17c0.047-0.129,0.095-0.257,0.123-0.394\r\n\t\t\t\tC58.979,43.409,59,43.207,59,43v-5h2c1.657,0,3-1.343,3-3V5C64,3.343,62.657,2,61,2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.speech_4 = speech_4;
\ No newline at end of file
diff --git a/dist/ikons/speech_bubble_1.js b/dist/ikons/speech_bubble_1.js
new file mode 100644
index 000000000..bf0ff702e
--- /dev/null
+++ b/dist/ikons/speech_bubble_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.speech_bubble_1 = void 0;
+var speech_bubble_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_BUBBLE_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_BUBBLE_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_BUBBLE_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.speech_bubble_1 = speech_bubble_1;
\ No newline at end of file
diff --git a/dist/ikons/speech_bubble_2.js b/dist/ikons/speech_bubble_2.js
new file mode 100644
index 000000000..0890ee147
--- /dev/null
+++ b/dist/ikons/speech_bubble_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.speech_bubble_2 = void 0;
+var speech_bubble_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_BUBBLE_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_BUBBLE_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_BUBBLE_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35c-3.314,0-6-2.686-6-6s2.686-6,6-6\r\n\t\t\t\ts6,2.686,6,6S20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,35,32,35z M47,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S50.314,35,47,35z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M33.697,3.963c-18.83,0-33.738,10.996-33.738,24.56c0,7.681,4.609,14.54,12.274,19.043\r\n\t\t\t\tc1.736,1.02,1.934,8.675-7.831,13.297c0,0,13.825,2.18,22.591-8.902c2.167,0.311,4.409,0.975,6.704,0.975\r\n\t\t\t\tc18.83,0,30.307-10.848,30.307-24.412C64.004,14.959,52.527,3.963,33.697,3.963z M17,35c-3.314,0-6-2.686-6-6s2.686-6,6-6\r\n\t\t\t\ts6,2.686,6,6S20.314,35,17,35z M32,35c-3.314,0-6-2.686-6-6s2.686-6,6-6c3.314,0,6,2.686,6,6S35.314,35,32,35z M47,35\r\n\t\t\t\tc-3.314,0-6-2.686-6-6s2.686-6,6-6s6,2.686,6,6S50.314,35,47,35z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.speech_bubble_2 = speech_bubble_2;
\ No newline at end of file
diff --git a/dist/ikons/speech_bubbles.js b/dist/ikons/speech_bubbles.js
new file mode 100644
index 000000000..6624405fd
--- /dev/null
+++ b/dist/ikons/speech_bubbles.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.speech_bubbles = void 0;
+var speech_bubbles = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_BUBBLES_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_BUBBLES"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SPEECH_BUBBLES"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.478c-12.036-0.75-19.873-8.212-20.379-17.122\r\n\t\t\t\tc-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.57c0,6.962,4.177,13.177,11.123,17.258\r\n\t\t\t\tc1.573,0.924,1.752,7.861-7.097,12.05c0,0,12.529,1.976,20.473-8.067c1.964,0.282,3.996,0.883,6.075,0.883\r\n\t\t\t\tc14.557,0,24.237-7.162,26.776-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z M56.721,27.814\r\n\t\t\t\tc4.549-2.673,7.285-6.744,7.285-11.304c0-8.052-8.85-14.579-20.027-14.579c-11.179,0-17.993,6.527-17.993,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.993,14.492c1.361,0,2.692-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.689,28.419,56.721,27.814z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46.568,34.581c0,0.005,0,0.01,0,0.015c-1.301,0.2-2.629,0.53-3.984,0.478c-12.036-0.75-19.873-8.212-20.379-17.122\r\n\t\t\t\tc-0.068-2.09,0.307-4.107,1.045-5.986C9.787,14.332-0.04,23.094-0.04,33.57c0,6.962,4.177,13.177,11.123,17.258\r\n\t\t\t\tc1.573,0.924,1.752,7.861-7.097,12.05c0,0,12.529,1.976,20.473-8.067c1.964,0.282,3.996,0.883,6.075,0.883\r\n\t\t\t\tc14.557,0,24.237-7.162,26.776-16.896c-2.531-0.059-6.918-0.737-10.39-4.308L46.568,34.581z M56.721,27.814\r\n\t\t\t\tc4.549-2.673,7.285-6.744,7.285-11.304c0-8.052-8.85-14.579-20.027-14.579c-11.179,0-17.993,6.527-17.993,14.579\r\n\t\t\t\tc0,8.052,6.813,14.492,17.993,14.492c1.361,0,2.692-0.394,3.979-0.579c5.204,6.578,13.411,5.284,13.411,5.284\r\n\t\t\t\tC55.573,32.964,55.689,28.419,56.721,27.814z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.speech_bubbles = speech_bubbles;
\ No newline at end of file
diff --git a/dist/ikons/spotify.js b/dist/ikons/spotify.js
new file mode 100644
index 000000000..06e6bb044
--- /dev/null
+++ b/dist/ikons/spotify.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spotify = void 0;
+var spotify = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "spotify_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "spotify"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "spotify"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26.671,55.675c-4.217,0-7.496,1.354-10.156,4.239c4.795,2.869,9.491,4.079,15.486,4.079\r\n\t\t\t\tc3.087,0,4.405-0.132,7.229-0.948C36.949,58.527,32.591,55.675,26.671,55.675z M32.001,0.008\r\n\t\t\t\tc-17.67,0-31.993,14.323-31.993,31.993c0,8.224,3.103,15.72,8.202,21.388c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.893,12.458c8.69-5.721,14.43-15.561,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.319,1.788-1.937c0.713-0.131,18.112-3.926,30.539,4.408\r\n\t\t\t\tc0.922,0.727,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.479,0-0.927-0.138-1.308-0.37\r\n\t\t\t\th-0.002c-13.899-8.339-29.991-4.409-32.001-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.195,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.042,4.852c0.934,0.507,1.565,1.497,1.565,2.635C56.581,24.7,55.236,26.042,53.583,26.042z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26.671,55.675c-4.217,0-7.496,1.354-10.156,4.239c4.795,2.869,9.491,4.079,15.486,4.079\r\n\t\t\t\tc3.087,0,4.405-0.132,7.229-0.948C36.949,58.527,32.591,55.675,26.671,55.675z M32.001,0.008\r\n\t\t\t\tc-17.67,0-31.993,14.323-31.993,31.993c0,8.224,3.103,15.72,8.202,21.388c4.778-4.399,11.291-7.104,18.462-7.104\r\n\t\t\t\tc9.749,0,18.284,4.995,22.893,12.458c8.69-5.721,14.43-15.561,14.43-26.742C63.992,14.331,49.669,0.008,32.001,0.008z\r\n\t\t\t\t M46.704,44.438c-1.112,0.906-2.201,0.064-2.201,0.064c-10.883-8.335-27.994-3.798-27.994-3.754l-0.256,0.072\r\n\t\t\t\tc-1.149,0-1.937-1.215-1.937-2.362c0,0-0.069-1.319,1.788-1.937c0.713-0.131,18.112-3.926,30.539,4.408\r\n\t\t\t\tc0.922,0.727,0.953,1.59,0.953,1.59C47.594,43.668,47.336,43.923,46.704,44.438z M49.37,35.657c-0.479,0-0.927-0.138-1.308-0.37\r\n\t\t\t\th-0.002c-13.899-8.339-29.991-4.409-32.001-3.857l-1.028,0.202c-1.388,0-2.403-1.126-2.403-2.515c0-1.163,0.824-2.138,1.91-2.426\r\n\t\t\t\tc1.087-0.24,19.256-6.003,35.915,3.523h0.008c0.912,0.428,1.419,1.6,1.419,2.593C51.88,34.195,50.758,35.657,49.37,35.657z\r\n\t\t\t\t M53.583,26.042c0,0-0.853-0.014-1.71-0.531c-15.635-9.777-37.295-4.184-37.513-4.126l-0.008-0.005\r\n\t\t\t\tc-0.244,0.064-0.511,0.101-0.774,0.101c-1.655,0-2.962-1.341-2.962-2.996c0-1.434,0.727-2.631,2.358-2.926\r\n\t\t\t\tc1.087-0.259,24.236-6.181,42.042,4.852c0.934,0.507,1.565,1.497,1.565,2.635C56.581,24.7,55.236,26.042,53.583,26.042z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.spotify = spotify;
\ No newline at end of file
diff --git a/dist/ikons/square.js b/dist/ikons/square.js
new file mode 100644
index 000000000..866403f97
--- /dev/null
+++ b/dist/ikons/square.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square = void 0;
+var square = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.square = square;
\ No newline at end of file
diff --git a/dist/ikons/square_add.js b/dist/ikons/square_add.js
new file mode 100644
index 000000000..61dd88200
--- /dev/null
+++ b/dist/ikons/square_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square_add = void 0;
+var square_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__ADD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,35h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3s-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,35h10v10c0,1.657,1.343,3,3,3s3-1.343,3-3V35h10c1.657,0,3-1.343,3-3s-1.343-3-3-3H35V19c0-1.657-1.343-3-3-3\r\n\t\t\t\ts-3,1.343-3,3v10H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.square_add = square_add;
\ No newline at end of file
diff --git a/dist/ikons/square_dashed.js b/dist/ikons/square_dashed.js
new file mode 100644
index 000000000..e3e4a59b3
--- /dev/null
+++ b/dist/ikons/square_dashed.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square_dashed = void 0;
+var square_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__DASHED"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0\r\n\t\t\tv12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M37,0H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,1.344,38.657,0,37,0z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0\r\n\t\t\tv12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M37,0H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,1.344,38.657,0,37,0z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.square_dashed = square_dashed;
\ No newline at end of file
diff --git a/dist/ikons/square_delete.js b/dist/ikons/square_delete.js
new file mode 100644
index 000000000..94e5fb77f
--- /dev/null
+++ b/dist/ikons/square_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square_delete = void 0;
+var square_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,43c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L32,36.243l8.879,8.879C41.422,45.664,42.172,46,43,46\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L36.243,32l8.879-8.878C45.664,22.579,46,21.829,46,21c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L32,27.758l-8.879-8.879C22.579,18.336,21.828,18,21,18c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L27.757,32l-8.879,8.879C18.336,41.422,18,42.172,18,43z M61,0H3C1.343,0,0,1.343,0,3v58\r\n\t\t\t\tc0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.square_delete = square_delete;
\ No newline at end of file
diff --git a/dist/ikons/square_down.js b/dist/ikons/square_down.js
new file mode 100644
index 000000000..93abb9914
--- /dev/null
+++ b/dist/ikons/square_down.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square_down = void 0;
+var square_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__DOWN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\tl0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3\r\n\t\t\tc0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10\r\n\t\t\tc1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1s1.673-0.391,2.222-1l0.008,0.007l9-10\r\n\t\t\tL43.222,37C43.701,36.468,44,35.772,44,35C44,33.344,42.657,32,41,32z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M61,40\r\n\t\t\tc1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10C58,38.657,59.343,40,61,40z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3\r\n\t\t\tl0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3\r\n\t\t\tc0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10\r\n\t\t\tc1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M41,32c-0.885,0-1.673,0.391-2.222,1l-0.008-0.007L35,37.182V19c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v18.182l-3.77-4.189l-0.008,0.007c-0.549-0.61-1.337-1-2.222-1c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.772,0.3,1.468,0.778,2l-0.008,0.007l9,10L29.778,47c0.549,0.61,1.336,1,2.222,1s1.673-0.391,2.222-1l0.008,0.007l9-10\r\n\t\t\tL43.222,37C43.701,36.468,44,35.772,44,35C44,33.344,42.657,32,41,32z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M61,40\r\n\t\t\tc1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10C58,38.657,59.343,40,61,40z M61,46c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.square_down = square_down;
\ No newline at end of file
diff --git a/dist/ikons/square_left.js b/dist/ikons/square_left.js
new file mode 100644
index 000000000..ffe3c312d
--- /dev/null
+++ b/dist/ikons/square_left.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square_left = void 0;
+var square_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__LEFT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z\r\n\t\t\t M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0\r\n\t\t\tC0,16.657,1.343,18,3,18z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tC18,59.343,16.657,58,15,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M64,37V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3S64,38.657,64,37z M48,32c0-1.657-1.343-3-3-3H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.779c-0.61,0.549-1,1.337-1,2.222\r\n\t\t\tc0,0.885,0.391,1.673,1,2.222l-0.007,0.008l10,9L27,43.222C27.532,43.701,28.229,44,29,44c1.657,0,3-1.343,3-3\r\n\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L26.818,35H45C46.657,35,48,33.657,48,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27c-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z\r\n\t\t\t M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0\r\n\t\t\tC0,16.657,1.343,18,3,18z M15,58H6v-9c0-1.657-1.343-3-3-3s-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3\r\n\t\t\tC18,59.343,16.657,58,15,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M64,37V27c0-1.657-1.343-3-3-3s-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3S64,38.657,64,37z M48,32c0-1.657-1.343-3-3-3H26.818l4.189-3.77L31,25.222c0.61-0.549,1-1.337,1-2.222\r\n\t\t\tc0-1.657-1.343-3-3-3c-0.772,0-1.468,0.3-2,0.778l-0.007-0.008l-10,9L17,29.779c-0.61,0.549-1,1.337-1,2.222\r\n\t\t\tc0,0.885,0.391,1.673,1,2.222l-0.007,0.008l10,9L27,43.222C27.532,43.701,28.229,44,29,44c1.657,0,3-1.343,3-3\r\n\t\t\tc0-0.885-0.391-1.673-1-2.222l0.007-0.008L26.818,35H45C46.657,35,48,33.657,48,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.square_left = square_left;
\ No newline at end of file
diff --git a/dist/ikons/square_ok.js b/dist/ikons/square_ok.js
new file mode 100644
index 000000000..77dd6010b
--- /dev/null
+++ b/dist/ikons/square_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square_ok = void 0;
+var square_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z M46,43.001C46,43.001,46,43,46,43.001\r\n\t\t\t\tC46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L28,35.757l-6.879-6.879\r\n\t\t\t\tC20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z M61,0H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46,20.999v0.002C46,21.001,46,21.001,46,20.999C46,21,46,21,46,20.999z M46,43.001C46,43.001,46,43,46,43.001\r\n\t\t\t\tC46,43,46,43,46,42.999V43.001z M25.879,42.121C26.422,42.664,27.172,43,28,43s1.578-0.336,2.121-0.879l16-16\r\n\t\t\t\tC46.664,25.579,47,24.828,47,24c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L28,35.757l-6.879-6.879\r\n\t\t\t\tC20.578,28.336,19.828,28,19,28c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L25.879,42.121z M61,0H3\r\n\t\t\t\tC1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.square_ok = square_ok;
\ No newline at end of file
diff --git a/dist/ikons/square_remove.js b/dist/ikons/square_remove.js
new file mode 100644
index 000000000..328d4662e
--- /dev/null
+++ b/dist/ikons/square_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square_remove = void 0;
+var square_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M19,35h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3C64,1.343,62.657,0,61,0z M58,58H6V6h52V58\r\n\t\t\t\tz M19,35h26c1.657,0,3-1.343,3-3s-1.343-3-3-3H19c-1.657,0-3,1.343-3,3S17.343,35,19,35z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.square_remove = square_remove;
\ No newline at end of file
diff --git a/dist/ikons/square_right.js b/dist/ikons/square_right.js
new file mode 100644
index 000000000..e2cfe8439
--- /dev/null
+++ b/dist/ikons/square_right.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square_right = void 0;
+var square_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__RIGHT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3\r\n\t\t\tC1.343,0,0,1.344,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M32.993,38.771l0.007,0.008c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\tc0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L47,34.222c0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.672-1-2.222l0.007-0.008\r\n\t\t\tl-10-9L37,20.779C36.468,20.3,35.772,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182L32.993,38.771z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tC0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12c0,1.657,1.343,3,3,3h12\r\n\t\t\tc1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M3,18c1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H3\r\n\t\t\tC1.343,0,0,1.344,0,3v12c0,0,0,0,0,0C0,16.657,1.343,18,3,18z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M32.993,38.771l0.007,0.008c-0.61,0.549-1,1.337-1,2.222c0,1.657,1.343,3,3,3\r\n\t\t\tc0.772,0,1.468-0.299,2-0.778l0.007,0.008l10-9L47,34.222c0.61-0.549,1-1.337,1-2.222c0-0.885-0.391-1.672-1-2.222l0.007-0.008\r\n\t\t\tl-10-9L37,20.779C36.468,20.3,35.772,20,35,20c-1.657,0-3,1.343-3,3c0,0.885,0.391,1.673,1,2.222l-0.007,0.008L37.182,29H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h18.182L32.993,38.771z M64,37V27c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10\r\n\t\t\tc0,1.657,1.343,3,3,3C62.657,40,64,38.657,64,37z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15\r\n\t\t\tc0,0,0,0,0,0.001c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M37,58H27c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3C40,59.343,38.657,58,37,58z M61,46c-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49C64,47.343,62.657,46,61,46z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.square_right = square_right;
\ No newline at end of file
diff --git a/dist/ikons/square_up.js b/dist/ikons/square_up.js
new file mode 100644
index 000000000..d62f8dff0
--- /dev/null
+++ b/dist/ikons/square_up.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.square_up = void 0;
+var square_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SQUARE__x2F__UP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12\r\n\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,24c-1.657,0-3,1.343-3,3v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V27\r\n\t\t\tC64,25.343,62.657,24,61,24z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M43.23,26.994l-9-10l-0.008,0.007\r\n\t\t\tc-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29\r\n\t\t\tc0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818\r\n\t\t\tl3.77,4.189L38.778,31c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.994z M61,46\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49\r\n\t\t\tC64,47.343,62.657,46,61,46z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M15,0H3C1.343,0,0,1.344,0,3v12c0,0,0,0,0,0c0,1.657,1.343,3,3,3\r\n\t\t\tc1.657,0,3-1.343,3-3V6h9v0c1.657,0,3-1.343,3-3C18,1.344,16.657,0,15,0z M3,40c1.657,0,3-1.343,3-3V27c0-1.657-1.343-3-3-3\r\n\t\t\tc-1.657,0-3,1.343-3,3v10C0,38.657,1.343,40,3,40z M15,58H6v-9c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3l0,0v12\r\n\t\t\tc0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3C18,59.343,16.657,58,15,58z M27,6h10c1.657,0,3-1.343,3-3c0-1.657-1.343-3-3-3H27\r\n\t\t\tc-1.657,0-3,1.343-3,3C24,4.657,25.343,6,27,6z M37,58H27c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10c1.657,0,3-1.343,3-3\r\n\t\t\tC40,59.343,38.657,58,37,58z M61,24c-1.657,0-3,1.343-3,3v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V27\r\n\t\t\tC64,25.343,62.657,24,61,24z M61,0H49c0,0,0,0,0,0c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3v0h9V15c0,0,0,0,0,0.001\r\n\t\t\tc0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V3C64,1.344,62.657,0,61,0z M43.23,26.994l-9-10l-0.008,0.007\r\n\t\t\tc-0.549-0.61-1.336-1-2.222-1c-0.885,0-1.672,0.391-2.222,1l-0.008-0.007l-9,10l0.008,0.007C20.3,27.532,20,28.229,20,29\r\n\t\t\tc0,1.657,1.343,3,3,3c0.885,0,1.673-0.391,2.222-1l0.008,0.007L29,26.818V45c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V26.818\r\n\t\t\tl3.77,4.189L38.778,31c0.549,0.61,1.337,1,2.222,1c1.657,0,3-1.343,3-3c0-0.772-0.3-1.468-0.778-2L43.23,26.994z M61,46\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,0,0,0,0,0v9h-9c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3V49\r\n\t\t\tC64,47.343,62.657,46,61,46z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.square_up = square_up;
\ No newline at end of file
diff --git a/dist/ikons/star.js b/dist/ikons/star.js
new file mode 100644
index 000000000..4d278c1b9
--- /dev/null
+++ b/dist/ikons/star.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.star = void 0;
+var star = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "STAR_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "STAR"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "STAR"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.352,2,32,2c-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0L17.36,40.09l-6.209,18.971C11.053,59.357,11,59.672,11,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.57h0.001L32,50.682L48.242,62.43h0.001C48.736,62.788,49.343,63,50,63\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.15-0.938L46.641,40.09l16.118-11.66l0,0C63.51,27.885,64,27,64,26z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,26c0-1.657-1.343-3-3-3H41.047L34.869,4.12C34.492,2.893,33.352,2,32,2c-1.35,0-2.492,0.892-2.868,2.12L22.953,23H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,1,0.49,1.885,1.242,2.43l0,0L17.36,40.09l-6.209,18.971C11.053,59.357,11,59.672,11,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3c0.657,0,1.263-0.213,1.758-0.57h0.001L32,50.682L48.242,62.43h0.001C48.736,62.788,49.343,63,50,63\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.328-0.053-0.643-0.15-0.938L46.641,40.09l16.118-11.66l0,0C63.51,27.885,64,27,64,26z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.star = star;
\ No newline at end of file
diff --git a/dist/ikons/stop.js b/dist/ikons/stop.js
new file mode 100644
index 000000000..76ba37e2e
--- /dev/null
+++ b/dist/ikons/stop.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stop = void 0;
+var stop = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "STOP_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "STOP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "STOP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M43,18H21c-1.657,0-3,1.343-3,3v22c0,1.657,1.343,3,3,3h22c1.657,0,3-1.343,3-3V21C46,19.343,44.657,18,43,18z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.stop = stop;
\ No newline at end of file
diff --git a/dist/ikons/suitcase.js b/dist/ikons/suitcase.js
new file mode 100644
index 000000000..950e8d283
--- /dev/null
+++ b/dist/ikons/suitcase.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.suitcase = void 0;
+var suitcase = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SUITCASE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SUITCASE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "SUITCASE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3c-8.284,0-15,6.716-15,15h-6v43h42V18h-6\r\n\t\t\t\tC47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5v43h5c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC64,19.343,62.657,18,61,18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,21v37c0,1.657,1.343,3,3,3h5V18H3C1.343,18,0,19.343,0,21z M32,3c-8.284,0-15,6.716-15,15h-6v43h42V18h-6\r\n\t\t\t\tC47,9.716,40.284,3,32,3z M23,18c0-4.971,4.029-9,9-9c4.971,0,9,4.029,9,9H23z M61,18h-5v43h5c1.657,0,3-1.343,3-3V21\r\n\t\t\t\tC64,19.343,62.657,18,61,18z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.suitcase = suitcase;
\ No newline at end of file
diff --git a/dist/ikons/tag.js b/dist/ikons/tag.js
new file mode 100644
index 000000000..01ba75ca1
--- /dev/null
+++ b/dist/ikons/tag.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tag = void 0;
+var tag = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TAG_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TAG"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TAG"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,33c0-0.018-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258c-0.002-0.017-0.006-0.031-0.008-0.047\r\n\t\t\t\tc-0.01-0.084-0.021-0.169-0.039-0.252c0-0.002,0-0.003,0-0.005c-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884\r\n\t\t\t\tC31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8c-1.657,0-3,1.343-3,3H7.993v19.049h0.013\r\n\t\t\t\tc0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005c0.395,0.348,0.879,0.592,1.418,0.693\r\n\t\t\t\tc0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028C35.807,55.995,35.902,56,36,56\r\n\t\t\t\tc0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C55.73,34.418,56,33.741,56,33z M16,20c-2.209,0-4-1.791-4-4\r\n\t\t\t\ts1.791-4,4-4s4,1.791,4,4S18.209,20,16,20z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,33c0-0.018-0.002-0.033-0.003-0.049c-0.001-0.087-0.004-0.174-0.013-0.258c-0.002-0.017-0.006-0.031-0.008-0.047\r\n\t\t\t\tc-0.01-0.084-0.021-0.169-0.039-0.252c0-0.002,0-0.003,0-0.005c-0.123-0.594-0.422-1.123-0.84-1.531L32.126,8.884\r\n\t\t\t\tC31.582,8.338,30.831,8,30,8c-0.003,0-0.005,0.001-0.008,0.001V7.993H11V8c-1.657,0-3,1.343-3,3H7.993v19.049h0.013\r\n\t\t\t\tc0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005c0.395,0.348,0.879,0.592,1.418,0.693\r\n\t\t\t\tc0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028C35.807,55.995,35.902,56,36,56\r\n\t\t\t\tc0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C55.73,34.418,56,33.741,56,33z M16,20c-2.209,0-4-1.791-4-4\r\n\t\t\t\ts1.791-4,4-4s4,1.791,4,4S18.209,20,16,20z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.tag = tag;
\ No newline at end of file
diff --git a/dist/ikons/tags.js b/dist/ikons/tags.js
new file mode 100644
index 000000000..c85d794d7
--- /dev/null
+++ b/dist/ikons/tags.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tags = void 0;
+var tags = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TAGS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TAGS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TAGS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56.113,26.872l-5.133-4.91c-0.006,0.009-0.012,0.019-0.017,0.028L34.126,5.884C33.582,5.338,32.831,5,32,5\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9l0.002,0.001\r\n\t\t\t\tC56.73,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951c-0.001-0.087-0.004-0.174-0.013-0.26\r\n\t\t\t\tc-0.002-0.016-0.006-0.03-0.008-0.045c-0.01-0.086-0.021-0.17-0.039-0.254c0-0.002,0-0.002,0-0.004\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11c-0.003,0-0.005,0.001-0.008,0.001v-0.008H10\r\n\t\t\t\tV11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005\r\n\t\t\t\tc0.395,0.348,0.879,0.594,1.418,0.693c0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028\r\n\t\t\t\tC34.807,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C54.73,37.418,55,36.741,55,36\r\n\t\t\t\tC55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4S17.209,23,15,23z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56.113,26.872l-5.133-4.91c-0.006,0.009-0.012,0.019-0.017,0.028L34.126,5.884C33.582,5.338,32.831,5,32,5\r\n\t\t\t\tc-0.003,0-0.005,0.001-0.008,0.001V4.993H13V5c-1.657,0-3,1.343-3,3h22l24.081,23.155L56.3,30.9l0.002,0.001\r\n\t\t\t\tC56.73,30.383,57,29.726,57,29C57,28.168,56.66,27.415,56.113,26.872z M54.997,35.951c-0.001-0.087-0.004-0.174-0.013-0.26\r\n\t\t\t\tc-0.002-0.016-0.006-0.03-0.008-0.045c-0.01-0.086-0.021-0.17-0.039-0.254c0-0.002,0-0.002,0-0.004\r\n\t\t\t\tc-0.123-0.594-0.422-1.123-0.84-1.531L31.126,11.884C30.582,11.338,29.831,11,29,11c-0.003,0-0.005,0.001-0.008,0.001v-0.008H10\r\n\t\t\t\tV11c-1.657,0-3,1.343-3,3H6.993v19.049h0.013c0.015,0.878,0.409,1.657,1.023,2.196l-0.011,0.012l25,23l0.006-0.005\r\n\t\t\t\tc0.395,0.348,0.879,0.594,1.418,0.693c0.021,0.005,0.045,0.008,0.067,0.011c0.067,0.011,0.134,0.022,0.202,0.028\r\n\t\t\t\tC34.807,58.995,34.902,59,35,59c0.916,0,1.734-0.411,2.284-1.059l0.001,0.002l17-20l-0.001-0.002C54.73,37.418,55,36.741,55,36\r\n\t\t\t\tC55,35.984,54.998,35.968,54.997,35.951z M15,23c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4S17.209,23,15,23z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.tags = tags;
\ No newline at end of file
diff --git a/dist/ikons/target.js b/dist/ikons/target.js
new file mode 100644
index 000000000..a8d9122fb
--- /dev/null
+++ b/dist/ikons/target.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.target = void 0;
+var target = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TARGET_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TARGET"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TARGET"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,29c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3S33.657,29,32,29z M61,29h-3.186\r\n\t\t\t\tC56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186C17.042,7.562,7.568,17.044,6.191,29H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61c0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191\r\n\t\t\t\tC46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3S62.657,29,61,29z M46,35h5.751\r\n\t\t\t\tC50.448,43.639,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756C20.366,50.453,13.552,43.639,12.249,35H18\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-5.756C13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756\r\n\t\t\t\tC43.634,13.547,50.448,20.362,51.751,29H46c-1.657,0-3,1.343-3,3S44.343,35,46,35z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,29c-1.657,0-3,1.343-3,3s1.343,3,3,3s3-1.343,3-3S33.657,29,32,29z M61,29h-3.186\r\n\t\t\t\tC56.438,17.042,46.956,7.569,35,6.191V3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3.186C17.042,7.562,7.568,17.044,6.191,29H3\r\n\t\t\t\tc-1.657,0-3,1.343-3,3s1.343,3,3,3h3.186C7.562,46.958,17.044,56.432,29,57.809V61c0,1.657,1.343,3,3,3s3-1.343,3-3v-3.191\r\n\t\t\t\tC46.956,56.432,56.438,46.958,57.814,35H61c1.657,0,3-1.343,3-3S62.657,29,61,29z M46,35h5.751\r\n\t\t\t\tC50.448,43.639,43.634,50.453,35,51.757V46c0-1.657-1.343-3-3-3s-3,1.343-3,3v5.756C20.366,50.453,13.552,43.639,12.249,35H18\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3h-5.756C13.547,20.366,20.362,13.552,29,12.249V18c0,1.657,1.343,3,3,3s3-1.343,3-3v-5.756\r\n\t\t\t\tC43.634,13.547,50.448,20.362,51.751,29H46c-1.657,0-3,1.343-3,3S44.343,35,46,35z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.target = target;
\ No newline at end of file
diff --git a/dist/ikons/terminal.js b/dist/ikons/terminal.js
new file mode 100644
index 000000000..c8b0ac2d4
--- /dev/null
+++ b/dist/ikons/terminal.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.terminal = void 0;
+var terminal = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TERMINAL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M30,32c0-0.002,0-0.005,0-0.007c0-0.002,0-0.005,0-0.007\r\n\t\t\tc0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008C10.536,11.318,9.806,11,9,11c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L6.84,47.917l0.001,0.001C6.321,48.458,6,49.191,6,50c0,1.657,1.343,3,3,3\r\n\t\t\tc0.809,0,1.543-0.321,2.082-0.841l0.001,0.001l18-18l-0.001-0.001C29.648,33.613,30,32.848,30,32z M55.5,47h-23\r\n\t\t\tc-1.381,0-2.5,1.119-2.5,2.5v1c0,1.381,1.119,2.5,2.5,2.5h23c1.381,0,2.5-1.119,2.5-2.5v-1C58,48.119,56.881,47,55.5,47z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M30,32c0-0.002,0-0.005,0-0.007c0-0.002,0-0.005,0-0.007\r\n\t\t\tc0-0.848-0.352-1.613-0.918-2.159l0.001-0.001l-18-18l-0.008,0.008C10.536,11.318,9.806,11,9,11c-1.657,0-3,1.343-3,3\r\n\t\t\tc0,0.91,0.406,1.725,1.046,2.275l15.718,15.718L6.84,47.917l0.001,0.001C6.321,48.458,6,49.191,6,50c0,1.657,1.343,3,3,3\r\n\t\t\tc0.809,0,1.543-0.321,2.082-0.841l0.001,0.001l18-18l-0.001-0.001C29.648,33.613,30,32.848,30,32z M55.5,47h-23\r\n\t\t\tc-1.381,0-2.5,1.119-2.5,2.5v1c0,1.381,1.119,2.5,2.5,2.5h23c1.381,0,2.5-1.119,2.5-2.5v-1C58,48.119,56.881,47,55.5,47z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.terminal = terminal;
\ No newline at end of file
diff --git a/dist/ikons/text_center.js b/dist/ikons/text_center.js
new file mode 100644
index 000000000..04e7242ad
--- /dev/null
+++ b/dist/ikons/text_center.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.text_center = void 0;
+var text_center = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__CENTER_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__CENTER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__CENTER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tS44.657,53,43,53z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M15,21c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h5.999c0,0,0,0,0.001,0h22c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H15z M61,37H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h22c1.657,0,3-1.343,3-3\r\n\t\t\t\tS44.657,53,43,53z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.text_center = text_center;
\ No newline at end of file
diff --git a/dist/ikons/text_justify.js b/dist/ikons/text_justify.js
new file mode 100644
index 000000000..db0013370
--- /dev/null
+++ b/dist/ikons/text_justify.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.text_justify = void 0;
+var text_justify = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__JUSTIFY_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__JUSTIFY"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__JUSTIFY"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,11h58c1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,53H3c-1.657,0-3,1.343-3,3\r\n\t\t\t\ts1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,53,61,53z M61,21H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,21,61,21z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3S62.657,37,61,37z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.text_justify = text_justify;
\ No newline at end of file
diff --git a/dist/ikons/text_left.js b/dist/ikons/text_left.js
new file mode 100644
index 000000000..abad0b276
--- /dev/null
+++ b/dist/ikons/text_left.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.text_left = void 0;
+var text_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__LEFT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__LEFT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__LEFT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,27,3,27z M3,11h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,27h40c0,0,0,0,0.001,0H49c1.657,0,3-1.343,3-3s-1.343-3-3-3H3c-1.657,0-3,1.343-3,3S1.343,27,3,27z M3,11h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3s-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58\r\n\t\t\t\tc1.657,0,3-1.343,3-3S62.657,37,61,37z M43,53H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S44.657,53,43,53z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.text_left = text_left;
\ No newline at end of file
diff --git a/dist/ikons/text_right.js b/dist/ikons/text_right.js
new file mode 100644
index 000000000..154985bf7
--- /dev/null
+++ b/dist/ikons/text_right.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.text_right = void 0;
+var text_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__RIGHT_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__RIGHT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TEXT__x2F__RIGHT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3S62.657,21,61,21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M61,53H21c-1.657,0-3,1.343-3,3s1.343,3,3,3h40c1.657,0,3-1.343,3-3S62.657,53,61,53z M3,11h58c1.657,0,3-1.343,3-3\r\n\t\t\t\ts-1.343-3-3-3H3C1.343,5,0,6.343,0,8S1.343,11,3,11z M61,37H3c-1.657,0-3,1.343-3,3s1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tS62.657,37,61,37z M61,21H15c-1.657,0-3,1.343-3,3s1.343,3,3,3h5.999c0,0,0,0,0.001,0h40c1.657,0,3-1.343,3-3S62.657,21,61,21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.text_right = text_right;
\ No newline at end of file
diff --git a/dist/ikons/tick.js b/dist/ikons/tick.js
new file mode 100644
index 000000000..b07f94746
--- /dev/null
+++ b/dist/ikons/tick.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tick = void 0;
+var tick = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TICK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TICK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TICK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879C15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47s1.578-0.336,2.121-0.879l23-23\r\n\t\t\t\tC52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50,18c-0.828,0-1.578,0.336-2.121,0.879L27,39.757L16.121,28.879C15.578,28.336,14.828,28,14,28c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121l13,13C25.422,46.664,26.172,47,27,47s1.578-0.336,2.121-0.879l23-23\r\n\t\t\t\tC52.664,22.579,53,21.828,53,21C53,19.343,51.657,18,50,18z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.tick = tick;
\ No newline at end of file
diff --git a/dist/ikons/time.js b/dist/ikons/time.js
new file mode 100644
index 000000000..ba6f7e655
--- /dev/null
+++ b/dist/ikons/time.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.time = void 0;
+var time = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TIME_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TIME"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TIME"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,29H35V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v18c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,29H35V14c0-1.657-1.343-3-3-3s-3,1.343-3,3v18c0,1.657,1.343,3,3,3h13c1.657,0,3-1.343,3-3S46.657,29,45,29z M32,0\r\n\t\t\t\tC14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.359,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.64,26,26C58,46.359,46.359,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.time = time;
\ No newline at end of file
diff --git a/dist/ikons/timer.js b/dist/ikons/timer.js
new file mode 100644
index 000000000..85c5dc194
--- /dev/null
+++ b/dist/ikons/timer.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.timer = void 0;
+var timer = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "TIMER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M32.129,16l-5.534,21.23c0,0-2.594,8.77,5.391,8.77c0,0,8.015-0.125,5.479-8.685\r\n\t\t\tL32.129,16z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M32.129,16l-5.534,21.23c0,0-2.594,8.77,5.391,8.77c0,0,8.015-0.125,5.479-8.685\r\n\t\t\tL32.129,16z M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M32,58C17.641,58,6,46.36,6,32\r\n\t\t\tC6,17.641,17.641,6,32,6c14.359,0,26,11.64,26,26C58,46.36,46.36,58,32,58z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.timer = timer;
\ No newline at end of file
diff --git a/dist/ikons/tumblr.js b/dist/ikons/tumblr.js
new file mode 100644
index 000000000..9e47aaa80
--- /dev/null
+++ b/dist/ikons/tumblr.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tumblr = void 0;
+var tumblr = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "tumblr_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "tumblr"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "tumblr"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M42.41,53.584c-1.816,0-3.424-0.428-4.834-1.275c-1.062-0.629-2.039-1.718-2.428-2.767\r\n\t\t\t\tc-0.392-1.049-0.344-3.19-0.344-6.905V26.215h14.729V14.788H34.807V-0.028h-9.062c-0.405,3.308-1.15,6.026-2.231,8.16\r\n\t\t\t\tc-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654V48.67c0,2.934,0.305,5.167,0.915,6.708\r\n\t\t\t\tc0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.359,3.487,2.42,5.725,3.162c2.238,0.734,3.955,1.101,6.869,1.101\r\n\t\t\t\tc2.565,0,4.951-0.258,7.16-0.778c2.207-0.521,4.674-1.429,7.395-2.711V50.419C48.844,52.527,45.637,53.584,42.41,53.584z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M42.41,53.584c-1.816,0-3.424-0.428-4.834-1.275c-1.062-0.629-2.039-1.718-2.428-2.767\r\n\t\t\t\tc-0.392-1.049-0.344-3.19-0.344-6.905V26.215h14.729V14.788H34.807V-0.028h-9.062c-0.405,3.308-1.15,6.026-2.231,8.16\r\n\t\t\t\tc-1.08,2.142-2.508,3.973-4.3,5.502c-1.78,1.525-4.681,2.699-7.184,3.513v9.068h8.654V48.67c0,2.934,0.305,5.167,0.915,6.708\r\n\t\t\t\tc0.614,1.537,1.706,2.997,3.291,4.368c1.577,1.359,3.487,2.42,5.725,3.162c2.238,0.734,3.955,1.101,6.869,1.101\r\n\t\t\t\tc2.565,0,4.951-0.258,7.16-0.778c2.207-0.521,4.674-1.429,7.395-2.711V50.419C48.844,52.527,45.637,53.584,42.41,53.584z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.tumblr = tumblr;
\ No newline at end of file
diff --git a/dist/ikons/twitter.js b/dist/ikons/twitter.js
new file mode 100644
index 000000000..0fd0af4d1
--- /dev/null
+++ b/dist/ikons/twitter.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.twitter = void 0;
+var twitter = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "twitter_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "twitter"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "twitter"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56.568,14.179v-0.032c0.558-0.218,0.998-0.68,1.441-1.022c2-1.541,3.301-3.57,4.26-6.164\r\n\t\t\t\tc-0.543,0.298-1.088,0.596-1.633,0.894c-1.681,0.853-4.533,2.079-6.728,2.267c-2.586-2.356-5.292-4.209-10.378-4.12\r\n\t\t\t\tc-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.025,0.508-2.916,0.894c-3.724,1.616-6.263,4.631-7.431,8.814\r\n\t\t\t\tc-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767C18.69,19.594,14.372,17.29,9.578,13.54\r\n\t\t\t\tC8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43C4.463,8.42,4.442,8.409,4.421,8.398\r\n\t\t\t\tc-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912c0.664,0.826,1.741,1.338,2.402,2.108h0.064\r\n\t\t\t\tc-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766c-0.448-0.213-0.897-0.426-1.345-0.639\r\n\t\t\t\tc-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.636,4.292,1.724c-0.867,0.732-4.575,0.396-5.862,0.256\r\n\t\t\t\tc1.609,4.142,4.081,6.9,8.328,8.398c1.096,0.387,2.433,0.729,3.908,0.703c-0.783,0.93-2.454,1.688-3.556,2.331\r\n\t\t\t\tc-2.272,1.329-4.91,2.191-7.88,2.843c-1.191,0.26-2.457,0.207-3.748,0.414c-1.427,0.23-2.92-0.121-4.196-0.16\r\n\t\t\t\tc0.384,0.234,0.769,0.47,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916c2.379,1.041,4.914,1.826,7.72,2.523\r\n\t\t\t\tc5.658,1.404,13.64,0.773,18.579-0.766c13.754-4.287,22.442-14.293,25.722-29.03c0.564-2.535,0.646-5.414,0.609-8.431\r\n\t\t\t\tc0.684-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032C61.768,12.864,59.418,14.149,56.568,14.179z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56.568,14.179v-0.032c0.558-0.218,0.998-0.68,1.441-1.022c2-1.541,3.301-3.57,4.26-6.164\r\n\t\t\t\tc-0.543,0.298-1.088,0.596-1.633,0.894c-1.681,0.853-4.533,2.079-6.728,2.267c-2.586-2.356-5.292-4.209-10.378-4.12\r\n\t\t\t\tc-0.534,0.064-1.068,0.128-1.602,0.192c-1.037,0.227-2.025,0.508-2.916,0.894c-3.724,1.616-6.263,4.631-7.431,8.814\r\n\t\t\t\tc-0.465,1.664-0.654,4.445-0.064,6.164c-2.101-0.003-4.135-0.334-5.894-0.767C18.69,19.594,14.372,17.29,9.578,13.54\r\n\t\t\t\tC8.17,12.439,6.789,11.191,5.67,9.804C5.309,9.357,4.74,8.965,4.485,8.43C4.463,8.42,4.442,8.409,4.421,8.398\r\n\t\t\t\tc-0.557,1.032-1.08,2.15-1.409,3.417c-1.3,4.994,0.755,9.188,2.947,11.912c0.664,0.826,1.741,1.338,2.402,2.108h0.064\r\n\t\t\t\tc-0.497,0.184-1.361-0.071-1.794-0.16c-1.024-0.211-1.897-0.405-2.755-0.766c-0.448-0.213-0.897-0.426-1.345-0.639\r\n\t\t\t\tc-0.021,5.517,2.766,9.103,6.182,11.241c1.114,0.697,2.672,1.636,4.292,1.724c-0.867,0.732-4.575,0.396-5.862,0.256\r\n\t\t\t\tc1.609,4.142,4.081,6.9,8.328,8.398c1.096,0.387,2.433,0.729,3.908,0.703c-0.783,0.93-2.454,1.688-3.556,2.331\r\n\t\t\t\tc-2.272,1.329-4.91,2.191-7.88,2.843c-1.191,0.26-2.457,0.207-3.748,0.414c-1.427,0.23-2.92-0.121-4.196-0.16\r\n\t\t\t\tc0.384,0.234,0.769,0.47,1.153,0.703c1.171,0.713,2.394,1.338,3.716,1.916c2.379,1.041,4.914,1.826,7.72,2.523\r\n\t\t\t\tc5.658,1.404,13.64,0.773,18.579-0.766c13.754-4.287,22.442-14.293,25.722-29.03c0.564-2.535,0.646-5.414,0.609-8.431\r\n\t\t\t\tc0.684-0.543,1.367-1.086,2.05-1.629c1.693-1.356,3.28-3.246,4.452-5.11v-0.032C61.768,12.864,59.418,14.149,56.568,14.179z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.twitter = twitter;
\ No newline at end of file
diff --git a/dist/ikons/unlock.js b/dist/ikons/unlock.js
new file mode 100644
index 000000000..a58fb8e95
--- /dev/null
+++ b/dist/ikons/unlock.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.unlock = void 0;
+var unlock = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "UNLOCK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "UNLOCK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "UNLOCK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M55,32H20V18c0-6.627,5.373-12,12-12s12,5.373,12,12c0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18\r\n\t\t\t\tc-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35\r\n\t\t\t\tC58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M55,32H20V18c0-6.627,5.373-12,12-12s12,5.373,12,12c0,1.657,1.343,3,3,3s3-1.343,3-3c0-9.941-8.059-18-18-18\r\n\t\t\t\tc-9.941,0-18,8.059-18,18v14H9c-1.657,0-3,1.343-3,3v26c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V35\r\n\t\t\t\tC58,33.343,56.657,32,55,32z M35,49.168V55c0,1.657-1.343,3-3,3s-3-1.343-3-3v-5.832c-1.786-1.039-3-2.953-3-5.168\r\n\t\t\t\tc0-3.314,2.686-6,6-6c3.314,0,6,2.686,6,6C38,46.215,36.786,48.129,35,49.168z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.unlock = unlock;
\ No newline at end of file
diff --git a/dist/ikons/upload.js b/dist/ikons/upload.js
new file mode 100644
index 000000000..3c6530494
--- /dev/null
+++ b/dist/ikons/upload.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.upload = void 0;
+var upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "UPLOAD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "UPLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "UPLOAD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V18.818l3.77,4.189l0,0\r\n\t\t\t\tC39.318,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,8.384,32.885,8,32,8\r\n\t\t\t\ts-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M23,24c0.885,0,1.681-0.384,2.23-0.993l0,0L29,18.818V37c0,1.657,1.343,3,3,3s3-1.343,3-3l0,0V18.818l3.77,4.189l0,0\r\n\t\t\t\tC39.318,23.617,40.115,24,41,24c1.657,0,3-1.343,3-3c0-0.772-0.292-1.475-0.77-2.007l0,0l-9-10l0,0C33.682,8.384,32.885,8,32,8\r\n\t\t\t\ts-1.681,0.384-2.23,0.993l0,0l-9,10l0,0C20.292,19.525,20,20.228,20,21C20,22.657,21.343,24,23,24z M55,35c-1.657,0-3,1.343-3,3\r\n\t\t\t\tv12H12V38c0-1.657-1.343-3-3-3s-3,1.343-3,3v15c0,1.657,1.343,3,3,3h46c1.657,0,3-1.343,3-3V38C58,36.343,56.657,35,55,35z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.upload = upload;
\ No newline at end of file
diff --git a/dist/ikons/user.js b/dist/ikons/user.js
new file mode 100644
index 000000000..468a6b013
--- /dev/null
+++ b/dist/ikons/user.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user = void 0;
+var user = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER_2_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64.001,59.993c0,0,0-10.933-7.987-14.906c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409\r\n\t\t\t\tl-0.055-5.893c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64.001,59.993c0,0,0-10.933-7.987-14.906c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409\r\n\t\t\t\tl-0.055-5.893c0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.user = user;
\ No newline at end of file
diff --git a/dist/ikons/user_add.js b/dist/ikons/user_add.js
new file mode 100644
index 000000000..d87117037
--- /dev/null
+++ b/dist/ikons/user_add.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user_add = void 0;
+var user_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__ADD_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__ADD"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64.001,59.993c0,0-0.005-0.567-0.099-1.47C62.852,59.432,61.499,60,60,60c0,1.098-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6c0-1.952,0.945-3.668,2.389-4.764\r\n\t\t\t\tc-0.797-0.209-1.897-0.571-3.688-1.314c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047C0,49.061,0,59.992,0,59.992h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64.001,59.993c0,0-0.005-0.567-0.099-1.47C62.852,59.432,61.499,60,60,60c0,1.098-0.316,2.114-0.832,3H61\r\n\t\t\t\tc1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M42,54c0-3.314,2.686-6,6-6c0-1.952,0.945-3.668,2.389-4.764\r\n\t\t\t\tc-0.797-0.209-1.897-0.571-3.688-1.314c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.324-1.764,3.049-7.337\r\n\t\t\t\tc1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025c0.363-2.724,0.648-5.187,0.52-6.491\r\n\t\t\t\tc-0.444-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047C0,49.061,0,59.992,0,59.992h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h45.832C48.316,62.115,48,61.1,48,60C44.686,60,42,57.314,42,54z M63,54c0-1.657-1.343-3-3-3h-3v-3\r\n\t\t\t\tc0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3c0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3\r\n\t\t\t\tC61.657,57,63,55.657,63,54z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.user_add = user_add;
\ No newline at end of file
diff --git a/dist/ikons/user_circle.js b/dist/ikons/user_circle.js
new file mode 100644
index 000000000..980a912bc
--- /dev/null
+++ b/dist/ikons/user_circle.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user_circle = void 0;
+var user_circle = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER_3_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M51.253,49.43\r\n\t\t\t\tc-3.767-1.826-2.382-0.398-7.31-2.427c-5.041-2.073-6.235-2.749-6.235-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917\r\n\t\t\t\tc1.178,0.338,1.578-1.372,1.642-2.464c0.069-1.055,0.696-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235\r\n\t\t\t\tc-0.36-3.691-2.931-7.544-9.42-7.826c-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236\r\n\t\t\t\tc-1.441-0.297-0.821,2.999-0.758,4.054c0.07,1.092,0.46,2.809,1.641,2.469c0.587,4.495,2.475,5.93,2.475,5.93L26.293,44.3\r\n\t\t\t\tc0,0-1.195,0.724-6.236,2.796c-4.927,2.027-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,38.716,55.432,44.816,51.253,49.43z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M51.253,49.43\r\n\t\t\t\tc-3.767-1.826-2.382-0.398-7.31-2.427c-5.041-2.073-6.235-2.749-6.235-2.749L37.664,39.5c0,0,1.888-1.422,2.477-5.917\r\n\t\t\t\tc1.178,0.338,1.578-1.372,1.642-2.464c0.069-1.055,0.696-4.346-0.745-4.052c0.295-2.197,0.527-4.183,0.421-5.235\r\n\t\t\t\tc-0.36-3.691-2.931-7.544-9.42-7.826c-5.517,0.282-9.098,4.138-9.46,7.829c-0.104,1.052,0.108,3.036,0.403,5.236\r\n\t\t\t\tc-1.441-0.297-0.821,2.999-0.758,4.054c0.07,1.092,0.46,2.809,1.641,2.469c0.587,4.495,2.475,5.93,2.475,5.93L26.293,44.3\r\n\t\t\t\tc0,0-1.195,0.724-6.236,2.796c-4.927,2.027-3.544,0.512-7.31,2.334C8.568,44.816,6,38.715,6,32C6,17.641,17.641,6,32,6\r\n\t\t\t\tc14.359,0,26,11.641,26,26C58,38.716,55.432,44.816,51.253,49.43z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.user_circle = user_circle;
\ No newline at end of file
diff --git a/dist/ikons/user_delete.js b/dist/ikons/user_delete.js
new file mode 100644
index 000000000..0c67e5d50
--- /dev/null
+++ b/dist/ikons/user_delete.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user_delete = void 0;
+var user_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__DELETE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__DELETE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46.516,54l-1.758-1.757l0.016-0.017C43.682,51.146,43,49.659,43,48c0-2.775,1.895-5.088,4.454-5.773\r\n\t\t\t\tc-0.243-0.097-0.481-0.191-0.754-0.305c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337\r\n\t\t\t\tc1.449,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832C43.316,62.115,43,61.1,43,60c0-1.657,0.672-3.157,1.757-4.243L46.516,54\r\n\t\t\t\tz M59.243,54l3.879-3.878C63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758\r\n\t\t\t\tl-3.879-3.879C50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M46.516,54l-1.758-1.757l0.016-0.017C43.682,51.146,43,49.659,43,48c0-2.775,1.895-5.088,4.454-5.773\r\n\t\t\t\tc-0.243-0.097-0.481-0.191-0.754-0.305c-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337\r\n\t\t\t\tc1.449,0.42,1.941-1.701,2.02-3.056c0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491\r\n\t\t\t\tc-0.443-4.576-3.607-9.355-11.594-9.704c-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494\r\n\t\t\t\tc-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924\r\n\t\t\t\tc0,0-1.47,0.896-7.675,3.466c-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002\r\n\t\t\t\tC0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h40.832C43.316,62.115,43,61.1,43,60c0-1.657,0.672-3.157,1.757-4.243L46.516,54\r\n\t\t\t\tz M59.243,54l3.879-3.878C63.664,49.578,64,48.828,64,48c0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L55,49.758\r\n\t\t\t\tl-3.879-3.879C50.578,45.336,49.828,45,49,45c-1.657,0-3,1.343-3,3c0,0.828,0.336,1.578,0.879,2.121L50.757,54l-3.879,3.879\r\n\t\t\t\tC46.336,58.422,46,59.172,46,60c0,1.657,1.343,3,3,3c0.828,0,1.578-0.336,2.121-0.879L55,58.243l3.879,3.879\r\n\t\t\t\tC59.422,62.664,60.172,63,61,63c1.657,0,3-1.343,3-3c0-0.828-0.336-1.578-0.879-2.121L59.243,54z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.user_delete = user_delete;
\ No newline at end of file
diff --git a/dist/ikons/user_ok.js b/dist/ikons/user_ok.js
new file mode 100644
index 000000000..c3ea54f2e
--- /dev/null
+++ b/dist/ikons/user_ok.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user_ok = void 0;
+var user_ok = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__OK_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__OK"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781\r\n\t\t\t\tc0.047-0.046,0.104-0.08,0.15-0.124c-0.299-0.183-0.57-0.386-0.895-0.547c-5.055-2.516-3.107-0.591-9.313-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337c1.449,0.42,1.94-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491c-0.442-4.576-3.606-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.896-7.675,3.466\r\n\t\t\t\tc-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46.691c-0.336-0.223-0.65-0.475-0.934-0.757L44.757,58.243z M64.001,59.993c0,0-0.008-1.709-0.498-4.011\r\n\t\t\t\tl-6.261,6.261c-0.284,0.282-0.598,0.534-0.934,0.757H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879C50.578,51.336,49.828,51,49,51\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61s1.578-0.336,2.121-0.879l8-8\r\n\t\t\t\tC63.664,51.579,64,50.828,64,50z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M44.757,58.243C43.672,57.157,43,55.657,43,54c0-3.314,2.686-6,6-6c1.533,0,2.916,0.592,3.977,1.538l3.781-3.781\r\n\t\t\t\tc0.047-0.046,0.104-0.08,0.15-0.124c-0.299-0.183-0.57-0.386-0.895-0.547c-5.055-2.516-3.107-0.591-9.313-3.164\r\n\t\t\t\tc-6.205-2.57-7.675-3.408-7.675-3.408l-0.055-5.894c0,0,2.323-1.764,3.049-7.337c1.449,0.42,1.94-1.701,2.02-3.056\r\n\t\t\t\tc0.086-1.309,0.857-5.389-0.917-5.025c0.362-2.724,0.647-5.187,0.519-6.491c-0.442-4.576-3.606-9.355-11.594-9.704\r\n\t\t\t\tc-6.79,0.349-11.198,5.131-11.643,9.707c-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027\r\n\t\t\t\tc0.086,1.355,0.566,3.482,2.02,3.062c0.722,5.574,3.046,7.352,3.046,7.352l-0.058,5.924c0,0-1.47,0.896-7.675,3.466\r\n\t\t\t\tc-6.205,2.573-4.259,0.532-9.314,3.047c-7.988,3.976-7.988,14.907-7.988,14.907h0.002C0.001,59.995,0,59.998,0,60\r\n\t\t\t\tc0,1.657,1.343,3,3,3h46.691c-0.336-0.223-0.65-0.475-0.934-0.757L44.757,58.243z M64.001,59.993c0,0-0.008-1.709-0.498-4.011\r\n\t\t\t\tl-6.261,6.261c-0.284,0.282-0.598,0.534-0.934,0.757H61c1.657,0,3-1.343,3-3c0-0.003-0.001-0.005-0.001-0.007H64.001z M64,50\r\n\t\t\t\tc0-1.657-1.343-3-3-3c-0.828,0-1.578,0.336-2.121,0.879L53,53.757l-1.879-1.879C50.578,51.336,49.828,51,49,51\r\n\t\t\t\tc-1.657,0-3,1.343-3,3c0,0.829,0.336,1.578,0.879,2.121l4,4C51.422,60.664,52.172,61,53,61s1.578-0.336,2.121-0.879l8-8\r\n\t\t\t\tC63.664,51.579,64,50.828,64,50z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.user_ok = user_ok;
\ No newline at end of file
diff --git a/dist/ikons/user_remove.js b/dist/ikons/user_remove.js
new file mode 100644
index 000000000..bf1c242bf
--- /dev/null
+++ b/dist/ikons/user_remove.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user_remove = void 0;
+var user_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__REMOVE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER__x2F__REMOVE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H48C46.343,51,45,52.343,45,54z M64.001,59.993\r\n\t\t\t\tc0,0-0.005-0.571-0.097-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6s2.686-6,6-6h11.764\r\n\t\t\t\tc-0.998-1.141-2.226-2.154-3.75-2.913c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M45,54c0,1.657,1.343,3,3,3h12c1.657,0,3-1.343,3-3s-1.343-3-3-3H48C46.343,51,45,52.343,45,54z M64.001,59.993\r\n\t\t\t\tc0,0-0.005-0.571-0.097-1.472C62.854,59.43,61.5,60,60,60H48c-3.314,0-6-2.686-6-6s2.686-6,6-6h11.764\r\n\t\t\t\tc-0.998-1.141-2.226-2.154-3.75-2.913c-5.055-2.515-3.107-0.591-9.313-3.164c-6.205-2.569-7.675-3.409-7.675-3.409l-0.055-5.893\r\n\t\t\t\tc0,0,2.324-1.764,3.049-7.337c1.451,0.42,1.942-1.701,2.021-3.056c0.086-1.309,0.858-5.389-0.917-5.025\r\n\t\t\t\tc0.363-2.724,0.648-5.187,0.52-6.491c-0.443-4.576-3.608-9.355-11.595-9.704c-6.79,0.349-11.198,5.131-11.643,9.707\r\n\t\t\t\tc-0.128,1.304,0.133,3.765,0.496,6.494c-1.774-0.369-1.01,3.719-0.932,5.027c0.086,1.355,0.566,3.482,2.02,3.062\r\n\t\t\t\tc0.722,5.574,3.046,7.351,3.046,7.351l-0.058,5.925c0,0-1.47,0.897-7.675,3.466c-6.205,2.574-4.259,0.533-9.314,3.047\r\n\t\t\t\tC0,49.062,0,59.993,0,59.993h0.002C0.001,59.995,0,59.998,0,60c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.003-0.001-0.005-0.001-0.007H64.001z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.user_remove = user_remove;
\ No newline at end of file
diff --git a/dist/ikons/user_square.js b/dist/ikons/user_square.js
new file mode 100644
index 000000000..e2b4325c6
--- /dev/null
+++ b/dist/ikons/user_square.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.user_square = void 0;
+var user_square = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USER"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,56.843c-0.888-2.64-2.564-5.557-5.739-7.157c-4.265-2.15-2.623-0.505-7.858-2.705\r\n\t\t\tc-5.235-2.197-6.475-2.915-6.475-2.915l-0.046-5.039c0,0,1.961-1.508,2.573-6.273c1.224,0.359,1.638-1.454,1.704-2.612\r\n\t\t\tc0.073-1.119,0.724-4.607-0.774-4.296c0.306-2.329,0.547-4.434,0.438-5.549c-0.374-3.912-3.044-7.998-9.782-8.296\r\n\t\t\tc-5.729,0.299-9.448,4.386-9.823,8.299c-0.108,1.115,0.112,3.218,0.418,5.551c-1.497-0.315-0.852,3.179-0.787,4.297\r\n\t\t\tc0.072,1.158,0.477,2.977,1.705,2.618c0.609,4.765,2.57,6.285,2.57,6.285l-0.049,5.065c0,0-1.24,0.767-6.476,2.963\r\n\t\t\tc-5.235,2.201-3.594,0.455-7.858,2.605C8.565,51.285,6.888,54.203,6,56.843V6h52V56.843z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M61,0H3C1.343,0,0,1.343,0,3v58c0,1.657,1.343,3,3,3h58c1.657,0,3-1.343,3-3V3\r\n\t\t\tC64,1.343,62.657,0,61,0z M58,56.843c-0.888-2.64-2.564-5.557-5.739-7.157c-4.265-2.15-2.623-0.505-7.858-2.705\r\n\t\t\tc-5.235-2.197-6.475-2.915-6.475-2.915l-0.046-5.039c0,0,1.961-1.508,2.573-6.273c1.224,0.359,1.638-1.454,1.704-2.612\r\n\t\t\tc0.073-1.119,0.724-4.607-0.774-4.296c0.306-2.329,0.547-4.434,0.438-5.549c-0.374-3.912-3.044-7.998-9.782-8.296\r\n\t\t\tc-5.729,0.299-9.448,4.386-9.823,8.299c-0.108,1.115,0.112,3.218,0.418,5.551c-1.497-0.315-0.852,3.179-0.787,4.297\r\n\t\t\tc0.072,1.158,0.477,2.977,1.705,2.618c0.609,4.765,2.57,6.285,2.57,6.285l-0.049,5.065c0,0-1.24,0.767-6.476,2.963\r\n\t\t\tc-5.235,2.201-3.594,0.455-7.858,2.605C8.565,51.285,6.888,54.203,6,56.843V6h52V56.843z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.user_square = user_square;
\ No newline at end of file
diff --git a/dist/ikons/users.js b/dist/ikons/users.js
new file mode 100644
index 000000000..c0b582d5a
--- /dev/null
+++ b/dist/ikons/users.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.users = void 0;
+var users = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USERS_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USERS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "USERS"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M40.837,41.984c-3.685-1.828-2.267-0.43-6.79-2.299c-4.524-1.867-5.595-2.478-5.595-2.478l-0.04-4.282\r\n\t\t\t\tc0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22c0.063-0.951,0.626-3.916-0.669-3.651\r\n\t\t\t\tc0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051c-4.95,0.254-8.164,3.728-8.488,7.054\r\n\t\t\t\tc-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652c0.062,0.984,0.412,2.53,1.473,2.225\r\n\t\t\t\tc0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.651-5.596,2.519c-4.524,1.871-3.105,0.388-6.79,2.215\r\n\t\t\t\tc-5.824,2.889-5.824,10.832-5.824,10.832h0.002c0,0-0.001,0.002-0.001,0.004C0,54.023,0.979,55,2.187,55h42.286\r\n\t\t\t\tc1.207,0,2.187-0.977,2.187-2.18c0-0.002,0-0.004,0-0.006h0.001C46.66,52.814,46.66,44.872,40.837,41.984z M63.9,53.012\r\n\t\t\t\tc0,0,0-7.226-5.297-9.854c-3.354-1.663-2.062-0.391-6.179-2.092c-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896\r\n\t\t\t\tc0,0,1.541-1.166,2.021-4.85c0.963,0.277,1.289-1.124,1.341-2.02c0.057-0.865,0.569-3.562-0.608-3.322\r\n\t\t\t\tc0.241-1.801,0.43-3.429,0.344-4.291c-0.293-3.025-2.393-6.184-7.689-6.415c-4.504,0.231-7.428,3.392-7.723,6.417\r\n\t\t\t\tc-0.084,0.862,0.089,2.489,0.33,4.293c-1.178-0.244-0.67,2.458-0.619,3.323c0.058,0.896,0.375,2.302,1.341,2.024\r\n\t\t\t\tc0.479,3.685,2.021,4.86,2.021,4.86l-0.039,3.901c1.4,0.331,1.588,0.063,4.41,1.464c6.604,3.275,6.604,12.282,6.604,12.282\r\n\t\t\t\th-0.002c0,0.002,0,0.004,0,0.006c0,1.181-0.831,2.165-1.942,2.41H61.91c1.099,0,1.99-0.888,1.99-1.983\r\n\t\t\t\tC63.9,53.014,63.9,53.014,63.9,53.012L63.9,53.012L63.9,53.012z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M40.837,41.984c-3.685-1.828-2.267-0.43-6.79-2.299c-4.524-1.867-5.595-2.478-5.595-2.478l-0.04-4.282\r\n\t\t\t\tc0,0,1.694-1.282,2.223-5.332c1.057,0.305,1.416-1.236,1.473-2.22c0.063-0.951,0.626-3.916-0.669-3.651\r\n\t\t\t\tc0.265-1.979,0.472-3.769,0.378-4.716c-0.323-3.325-2.63-6.798-8.453-7.051c-4.95,0.254-8.164,3.728-8.488,7.054\r\n\t\t\t\tc-0.093,0.947,0.097,2.735,0.361,4.718c-1.293-0.268-0.737,2.702-0.68,3.652c0.062,0.984,0.412,2.53,1.473,2.225\r\n\t\t\t\tc0.526,4.05,2.221,5.342,2.221,5.342l-0.042,4.304c0,0-1.072,0.651-5.596,2.519c-4.524,1.871-3.105,0.388-6.79,2.215\r\n\t\t\t\tc-5.824,2.889-5.824,10.832-5.824,10.832h0.002c0,0-0.001,0.002-0.001,0.004C0,54.023,0.979,55,2.187,55h42.286\r\n\t\t\t\tc1.207,0,2.187-0.977,2.187-2.18c0-0.002,0-0.004,0-0.006h0.001C46.66,52.814,46.66,44.872,40.837,41.984z M63.9,53.012\r\n\t\t\t\tc0,0,0-7.226-5.297-9.854c-3.354-1.663-2.062-0.391-6.179-2.092c-4.116-1.699-5.09-2.254-5.09-2.254l-0.036-3.896\r\n\t\t\t\tc0,0,1.541-1.166,2.021-4.85c0.963,0.277,1.289-1.124,1.341-2.02c0.057-0.865,0.569-3.562-0.608-3.322\r\n\t\t\t\tc0.241-1.801,0.43-3.429,0.344-4.291c-0.293-3.025-2.393-6.184-7.689-6.415c-4.504,0.231-7.428,3.392-7.723,6.417\r\n\t\t\t\tc-0.084,0.862,0.089,2.489,0.33,4.293c-1.178-0.244-0.67,2.458-0.619,3.323c0.058,0.896,0.375,2.302,1.341,2.024\r\n\t\t\t\tc0.479,3.685,2.021,4.86,2.021,4.86l-0.039,3.901c1.4,0.331,1.588,0.063,4.41,1.464c6.604,3.275,6.604,12.282,6.604,12.282\r\n\t\t\t\th-0.002c0,0.002,0,0.004,0,0.006c0,1.181-0.831,2.165-1.942,2.41H61.91c1.099,0,1.99-0.888,1.99-1.983\r\n\t\t\t\tC63.9,53.014,63.9,53.014,63.9,53.012L63.9,53.012L63.9,53.012z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.users = users;
\ No newline at end of file
diff --git a/dist/ikons/view.js b/dist/ikons/view.js
new file mode 100644
index 000000000..0d5c52f73
--- /dev/null
+++ b/dist/ikons/view.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.view = void 0;
+var view = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VIEW_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VIEW"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VIEW"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C38,28.686,35.314,26,32,26z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-5.318-4.337-11.402-7.964-18.116-9.425c-3.882-0.844-7.786-0.879-11.688-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691c5.32,4.337,11.403,7.963,18.118,9.424\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.143-2.328c0.357-0.367,0.591-0.84,0.669-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.008-0.058c0.002-0.015,0.003-0.027,0.005-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z M32,44\r\n\t\t\t\tc-6.627,0-12-5.372-12-12s5.372-12,12-12s12,5.373,12,12C44,38.628,38.627,44,32,44z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,26c-3.314,0-6,2.686-6,6c0,3.314,2.686,6,6,6c3.314,0,6-2.686,6-6C38,28.686,35.314,26,32,26z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-5.318-4.337-11.402-7.964-18.116-9.425c-3.882-0.844-7.786-0.879-11.688-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.587,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691c5.32,4.337,11.403,7.963,18.118,9.424\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.143-2.328c0.357-0.367,0.591-0.84,0.669-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.008-0.058c0.002-0.015,0.003-0.027,0.005-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z M32,44\r\n\t\t\t\tc-6.627,0-12-5.372-12-12s5.372-12,12-12s12,5.373,12,12C44,38.628,38.627,44,32,44z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.view = view;
\ No newline at end of file
diff --git a/dist/ikons/view_off.js b/dist/ikons/view_off.js
new file mode 100644
index 000000000..007bcfdde
--- /dev/null
+++ b/dist/ikons/view_off.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.view_off = void 0;
+var view_off = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VIEW__x2F__OFF_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VIEW__x2F__OFF"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VIEW__x2F__OFF"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26C28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755\r\n\t\t\t\tC58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.82,0.245v-0.001l-0.018,0.012L4.679,48.245\r\n\t\t\t\tl0,0C4.271,48.514,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51c0.303,0,0.585-0.091,0.82-0.245v0.001l0.018-0.012L58.32,16.755\r\n\t\t\t\tL58.32,16.755z M9.455,42.364L10,42l10.409-6.939C20.151,34.082,20,33.061,20,32c0-6.628,5.373-12,12-12\r\n\t\t\t\tc2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345c-2.647-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.676-0.552-1.366-1.092-2.068-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.846-6.997-2.266L17,47l-0.09,0.09c2.8,1.439,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.144-2.328c0.356-0.367,0.59-0.841,0.668-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.009-0.058c0.001-0.015,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.275l-7.01,4.613C31.223,37.96,31.607,38,32,38C34.876,38,37.275,35.977,37.861,33.275z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M26.044,31.304l7.604-5.069C33.124,26.085,32.572,26,32,26C28.922,26,26.389,28.319,26.044,31.304z M58.32,16.755\r\n\t\t\t\tC58.729,16.487,59,16.025,59,15.5c0-0.828-0.672-1.5-1.5-1.5c-0.303,0-0.585,0.091-0.82,0.245v-0.001l-0.018,0.012L4.679,48.245\r\n\t\t\t\tl0,0C4.271,48.514,4,48.975,4,49.5C4,50.328,4.672,51,5.5,51c0.303,0,0.585-0.091,0.82-0.245v0.001l0.018-0.012L58.32,16.755\r\n\t\t\t\tL58.32,16.755z M9.455,42.364L10,42l10.409-6.939C20.151,34.082,20,33.061,20,32c0-6.628,5.373-12,12-12\r\n\t\t\t\tc2.742,0,5.262,0.93,7.283,2.478L46,18l0.552-0.345c-2.647-1.317-5.415-2.367-8.308-2.996c-3.881-0.844-7.786-0.879-11.687-0.165\r\n\t\t\t\tc-3.549,0.649-6.969,2-10.17,3.674c-5.011,2.62-9.586,6.231-13.574,10.28c-0.738,0.749-1.472,1.514-2.143,2.328\r\n\t\t\t\tc-0.893,1.083-0.893,2.367,0,3.451c2.042,2.476,4.47,4.678,6.94,6.691C8.214,41.41,8.831,41.891,9.455,42.364z M63.997,32.379\r\n\t\t\t\tc-0.001-0.028-0.004-0.054-0.006-0.081c-0.001-0.014-0.003-0.028-0.005-0.041c0-0.02-0.004-0.039-0.008-0.058\r\n\t\t\t\tc-0.002-0.023-0.004-0.046-0.008-0.068c-0.002-0.003-0.002-0.006-0.002-0.009c-0.078-0.506-0.312-0.981-0.669-1.346\r\n\t\t\t\tc-2.042-2.476-4.471-4.68-6.94-6.692c-0.676-0.552-1.366-1.092-2.068-1.618l-10.576,6.958C43.898,30.255,44,31.115,44,32\r\n\t\t\t\tc0,6.627-5.373,12-12,12c-2.615,0-5.026-0.846-6.997-2.266L17,47l-0.09,0.09c2.8,1.439,5.739,2.581,8.818,3.25\r\n\t\t\t\tc3.881,0.844,7.788,0.881,11.688,0.166c3.548-0.65,6.968-2,10.171-3.673c5.011-2.621,9.586-6.231,13.574-10.28\r\n\t\t\t\tc0.737-0.75,1.471-1.514,2.144-2.328c0.356-0.367,0.59-0.841,0.668-1.348c0-0.003,0.002-0.006,0.002-0.008\r\n\t\t\t\tc0.004-0.023,0.006-0.045,0.008-0.068c0.004-0.019,0.006-0.039,0.009-0.058c0.001-0.015,0.003-0.027,0.004-0.041\r\n\t\t\t\tc0.002-0.026,0.004-0.052,0.006-0.08c0.002-0.041,0.003-0.081,0.003-0.122C64.001,32.459,63.998,32.419,63.997,32.379z\r\n\t\t\t\t M37.861,33.275l-7.01,4.613C31.223,37.96,31.607,38,32,38C34.876,38,37.275,35.977,37.861,33.275z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.view_off = view_off;
\ No newline at end of file
diff --git a/dist/ikons/vimeo.js b/dist/ikons/vimeo.js
new file mode 100644
index 000000000..52457df99
--- /dev/null
+++ b/dist/ikons/vimeo.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.vimeo = void 0;
+var vimeo = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "vimeo_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "vimeo"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "vimeo"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M36.348,18.728c2.748-0.624,7.539-1.522,8.529,1.306c1.246,8.476-4.611,15.407-9.84,19.602\r\n\t\t\t\tC24.919,34.128,32.523,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255C4.788,13.151-0.013,16.758,0,19.531v0.073\r\n\t\t\t\tc0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306c8.471,6.948,5.793,37.749,18.37,39.856\r\n\t\t\t\tc4.882,0.817,11.08-3.648,14.433-6.535c4.625-3.98,9.924-10.722,13.777-16.334c0,0,9.677-12.741,8.529-23.521\r\n\t\t\t\tC61.789-4.107,36.207,5.801,36.348,18.728z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M36.348,18.728c2.748-0.624,7.539-1.522,8.529,1.306c1.246,8.476-4.611,15.407-9.84,19.602\r\n\t\t\t\tC24.919,34.128,32.523,8.81,21.915,4.633c-5.448-2.145-10.31,2.79-14.434,6.255C4.788,13.151-0.013,16.758,0,19.531v0.073\r\n\t\t\t\tc0.023,0.633,0.301,1.221,0.921,1.738c2.13,3.51,3.998-2.43,7.872-1.306c8.471,6.948,5.793,37.749,18.37,39.856\r\n\t\t\t\tc4.882,0.817,11.08-3.648,14.433-6.535c4.625-3.98,9.924-10.722,13.777-16.334c0,0,9.677-12.741,8.529-23.521\r\n\t\t\t\tC61.789-4.107,36.207,5.801,36.348,18.728z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.vimeo = vimeo;
\ No newline at end of file
diff --git a/dist/ikons/voicemail.js b/dist/ikons/voicemail.js
new file mode 100644
index 000000000..702fe36d6
--- /dev/null
+++ b/dist/ikons/voicemail.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.voicemail = void 0;
+var voicemail = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOICEMAIL_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOICEMAIL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOICEMAIL"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.73,2.52,8H25.48c1.584-2.27,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14\r\n\t\t\t\tS0,24.268,0,32c0,7.732,6.268,14,14,14h36c7.732,0,14-6.268,14-14C64,24.268,57.732,18,50,18z M14,40c-4.418,0-8-3.582-8-8\r\n\t\t\t\ts3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S54.418,40,50,40z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50,18c-7.732,0-14,6.268-14,14c0,2.977,0.936,5.73,2.52,8H25.48c1.584-2.27,2.52-5.023,2.52-8c0-7.732-6.268-14-14-14\r\n\t\t\t\tS0,24.268,0,32c0,7.732,6.268,14,14,14h36c7.732,0,14-6.268,14-14C64,24.268,57.732,18,50,18z M14,40c-4.418,0-8-3.582-8-8\r\n\t\t\t\ts3.582-8,8-8s8,3.582,8,8S18.418,40,14,40z M50,40c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S54.418,40,50,40z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.voicemail = voicemail;
\ No newline at end of file
diff --git a/dist/ikons/volume_1.js b/dist/ikons/volume_1.js
new file mode 100644
index 000000000..2f0710c57
--- /dev/null
+++ b/dist/ikons/volume_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume_1 = void 0;
+var volume_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M36,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C12.339,25.006,11,26.346,11,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.21,7.426l0.006-0.007C34.736,48.781,35.34,49,36,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC39,17.343,37.657,16,36,16z M47.902,18.926l-2.846,2.847C47.52,24.852,49,28.75,49,33s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.902,18.926z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M36,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C12.339,25.006,11,26.346,11,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.21,7.426l0.006-0.007C34.736,48.781,35.34,49,36,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC39,17.343,37.657,16,36,16z M47.902,18.926l-2.846,2.847C47.52,24.852,49,28.75,49,33s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC51.083,43.26,53,38.355,53,33C53,27.645,51.083,22.74,47.902,18.926z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.volume_1 = volume_1;
\ No newline at end of file
diff --git a/dist/ikons/volume_2.js b/dist/ikons/volume_2.js
new file mode 100644
index 000000000..af2748008
--- /dev/null
+++ b/dist/ikons/volume_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume_2 = void 0;
+var volume_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32s-2.708,13.93-7.146,19.023l2.848,2.849\r\n\t\t\t\tC55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15c-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678\r\n\t\t\t\tl-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007\r\n\t\t\t\tC29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z M42.902,17.926l-2.846,2.847\r\n\t\t\t\tC42.52,23.852,44,27.75,44,32s-1.48,8.148-3.943,11.227l2.846,2.848C46.083,42.26,48,37.355,48,32\r\n\t\t\t\tC48,26.645,46.083,21.74,42.902,17.926z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M50.701,10.128l-2.848,2.848C52.292,18.07,55,24.712,55,32s-2.708,13.93-7.146,19.023l2.848,2.849\r\n\t\t\t\tC55.861,48.049,59,40.393,59,32C59,23.607,55.861,15.951,50.701,10.128z M31,15c-0.721,0-1.374,0.265-1.891,0.689L29.1,15.678\r\n\t\t\t\tl-10.162,8.315H8.992v0.008C7.339,24.006,6,25.346,6,27v10c0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007\r\n\t\t\t\tC29.736,47.781,30.34,48,31,48c1.657,0,3-1.343,3-3V18C34,16.343,32.657,15,31,15z M42.902,17.926l-2.846,2.847\r\n\t\t\t\tC42.52,23.852,44,27.75,44,32s-1.48,8.148-3.943,11.227l2.846,2.848C46.083,42.26,48,37.355,48,32\r\n\t\t\t\tC48,26.645,46.083,21.74,42.902,17.926z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.volume_2 = volume_2;
\ No newline at end of file
diff --git a/dist/ikons/volume_3.js b/dist/ikons/volume_3.js
new file mode 100644
index 000000000..c55907dd4
--- /dev/null
+++ b/dist/ikons/volume_3.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume_3 = void 0;
+var volume_3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME_3_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992v0.008C1.339,24.006,0,25.346,0,27v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48c1.657,0,3-1.343,3-3V18\r\n\t\t\t\tC28,16.343,26.657,15,25,15z M36.902,17.926l-2.846,2.847C36.52,23.852,38,27.75,38,32s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.902,17.926z M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32\r\n\t\t\t\ts-2.708,13.93-7.146,19.023l2.848,2.849C49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336\r\n\t\t\t\tl-2.831,2.831C56.086,12.263,60,21.674,60,32s-3.914,19.736-10.338,26.833l2.831,2.831C59.639,53.842,64,43.432,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M25,15c-0.721,0-1.374,0.265-1.891,0.689L23.1,15.678l-10.162,8.315H2.992v0.008C1.339,24.006,0,25.346,0,27v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C23.736,47.781,24.34,48,25,48c1.657,0,3-1.343,3-3V18\r\n\t\t\t\tC28,16.343,26.657,15,25,15z M36.902,17.926l-2.846,2.847C36.52,23.852,38,27.75,38,32s-1.48,8.148-3.943,11.227l2.846,2.848\r\n\t\t\t\tC40.083,42.26,42,37.355,42,32C42,26.645,40.083,21.74,36.902,17.926z M44.701,10.128l-2.848,2.848C46.292,18.07,49,24.712,49,32\r\n\t\t\t\ts-2.708,13.93-7.146,19.023l2.848,2.849C49.861,48.049,53,40.393,53,32C53,23.607,49.861,15.951,44.701,10.128z M52.493,2.336\r\n\t\t\t\tl-2.831,2.831C56.086,12.263,60,21.674,60,32s-3.914,19.736-10.338,26.833l2.831,2.831C59.639,53.842,64,43.432,64,32\r\n\t\t\t\tC64,20.569,59.639,10.159,52.493,2.336z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.volume_3 = volume_3;
\ No newline at end of file
diff --git a/dist/ikons/volume_down.js b/dist/ikons/volume_down.js
new file mode 100644
index 000000000..3db05b7ac
--- /dev/null
+++ b/dist/ikons/volume_down.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume_down = void 0;
+var volume_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__DOWN_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__DOWN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__DOWN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S56.657,30,55,30z M31,16\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M55,30H43c-1.657,0-3,1.343-3,3s1.343,3,3,3h12c1.657,0,3-1.343,3-3S56.657,30,55,30z M31,16\r\n\t\t\t\tc-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10c0,1.657,1.343,3,3,3\r\n\t\t\t\th10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19C34,17.343,32.657,16,31,16z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.volume_down = volume_down;
\ No newline at end of file
diff --git a/dist/ikons/volume_mute.js b/dist/ikons/volume_mute.js
new file mode 100644
index 000000000..e218b494c
--- /dev/null
+++ b/dist/ikons/volume_mute.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume_mute = void 0;
+var volume_mute = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__MUTE_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__MUTE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__MUTE"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M53.243,33l3.879-3.879C57.664,28.579,58,27.829,58,27c0-1.657-1.343-3-3-3\r\n\t\t\t\tc-0.828,0-1.578,0.336-2.121,0.879L49,28.758l-3.879-3.879C44.578,24.336,43.828,24,43,24c-1.657,0-3,1.343-3,3\r\n\t\t\t\tc0,0.828,0.336,1.578,0.879,2.121L44.757,33l-3.879,3.879C40.336,37.422,40,38.172,40,39c0,1.657,1.343,3,3,3\r\n\t\t\t\tc0.828,0,1.578-0.336,2.121-0.879L49,37.243l3.879,3.879C53.422,41.664,54.172,42,55,42c1.657,0,3-1.343,3-3\r\n\t\t\t\tc0-0.828-0.336-1.578-0.879-2.121L53.243,33z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.volume_mute = volume_mute;
\ No newline at end of file
diff --git a/dist/ikons/volume_off.js b/dist/ikons/volume_off.js
new file mode 100644
index 000000000..6aa6822a5
--- /dev/null
+++ b/dist/ikons/volume_off.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume_off = void 0;
+var volume_off = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__OFF_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__OFF"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__OFF"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M42,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C18.339,25.006,17,26.346,17,28v9.627\r\n\t\t\t\tl27.973-18.9C44.832,17.2,43.562,16,42,16z M30.024,41l10.21,7.426l0.006-0.007C40.736,48.781,41.34,49,42,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.602,0.095-0.841,0.258L13.064,43.955\r\n\t\t\t\tc-0.4,0.27-0.664,0.727-0.664,1.245c0,0.827,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.259l37.095-25.096\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M42,16c-0.721,0-1.374,0.265-1.891,0.689l-0.01-0.011l-10.162,8.315h-9.946v0.008C18.339,25.006,17,26.346,17,28v9.627\r\n\t\t\t\tl27.973-18.9C44.832,17.2,43.562,16,42,16z M30.024,41l10.21,7.426l0.006-0.007C40.736,48.781,41.34,49,42,49\r\n\t\t\t\tc1.657,0,3-1.343,3-3V29.57L28.083,41H30.024z M51,18.6c-0.312,0-0.602,0.095-0.841,0.258L13.064,43.955\r\n\t\t\t\tc-0.4,0.27-0.664,0.727-0.664,1.245c0,0.827,0.672,1.5,1.5,1.5c0.312,0,0.601-0.095,0.841-0.259l37.095-25.096\r\n\t\t\t\tc0.4-0.269,0.664-0.727,0.664-1.245C52.5,19.272,51.828,18.6,51,18.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.volume_off = volume_off;
\ No newline at end of file
diff --git a/dist/ikons/volume_up.js b/dist/ikons/volume_up.js
new file mode 100644
index 000000000..a2bd35554
--- /dev/null
+++ b/dist/ikons/volume_up.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volume_up = void 0;
+var volume_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__UP_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__UP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "VOLUME__x2F__UP"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M31,16c-0.721,0-1.374,0.265-1.891,0.689L29.1,16.678l-10.162,8.315H8.992v0.008C7.339,25.006,6,26.346,6,28v10\r\n\t\t\t\tc0,1.657,1.343,3,3,3h10.024l10.211,7.426l0.005-0.007C29.736,48.781,30.34,49,31,49c1.657,0,3-1.343,3-3V19\r\n\t\t\t\tC34,17.343,32.657,16,31,16z M55,30h-3v-3c0-1.657-1.343-3-3-3s-3,1.343-3,3v3h-3c-1.657,0-3,1.343-3,3s1.343,3,3,3h3v3\r\n\t\t\t\tc0,1.657,1.343,3,3,3s3-1.343,3-3v-3h3c1.657,0,3-1.343,3-3S56.657,30,55,30z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.volume_up = volume_up;
\ No newline at end of file
diff --git a/dist/ikons/warning.js b/dist/ikons/warning.js
new file mode 100644
index 000000000..084029e46
--- /dev/null
+++ b/dist/ikons/warning.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.warning = void 0;
+var warning = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WARNING_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WARNING"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WARNING"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.562,53.463l0.018-0.011l-29-47l-0.018,0.01C34.039,5.59,33.092,5,32,5c-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01\r\n\t\t\t\tl-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3c0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03\r\n\t\t\t\tC62.671,57.982,64,56.648,64,55C64,54.436,63.835,53.914,63.562,53.463z M32,52c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4\r\n\t\t\t\tS34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22c0-2.209,1.791-4,4-4s4,1.791,4,4V37z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M63.562,53.463l0.018-0.011l-29-47l-0.018,0.01C34.039,5.59,33.092,5,32,5c-1.052,0-1.973,0.543-2.509,1.362l-0.017-0.01\r\n\t\t\t\tl-29,47l0.017,0.01C0.183,53.834,0,54.395,0,55c0,1.657,1.343,3,3,3c0.009,0,0.018-0.003,0.027-0.003v0.03h58v-0.03\r\n\t\t\t\tC62.671,57.982,64,56.648,64,55C64,54.436,63.835,53.914,63.562,53.463z M32,52c-2.209,0-4-1.791-4-4s1.791-4,4-4s4,1.791,4,4\r\n\t\t\t\tS34.209,52,32,52z M36,37c0,2.209-1.791,4-4,4s-4-1.791-4-4V22c0-2.209,1.791-4,4-4s4,1.791,4,4V37z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.warning = warning;
\ No newline at end of file
diff --git a/dist/ikons/wifi_1.js b/dist/ikons/wifi_1.js
new file mode 100644
index 000000000..cec880309
--- /dev/null
+++ b/dist/ikons/wifi_1.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wifi_1 = void 0;
+var wifi_1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WIFI_1_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WIFI_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WIFI_1"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,34c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,34,32,34z M32,19\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25c3.971,0,7.482,1.937,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,21.629,37.343,19,32,19z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,34c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,34,32,34z M32,19\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,26.938,28.029,25,32,25c3.971,0,7.482,1.937,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,21.629,37.343,19,32,19z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.wifi_1 = wifi_1;
\ No newline at end of file
diff --git a/dist/ikons/wifi_2.js b/dist/ikons/wifi_2.js
new file mode 100644
index 000000000..283838f01
--- /dev/null
+++ b/dist/ikons/wifi_2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wifi_2 = void 0;
+var wifi_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WIFI_2_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WIFI_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WIFI_2"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,41c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,41,32,41z M32,26\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544l3.739,4.819C17.954,20.242,24.59,17,32,17\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,41c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,41,32,41z M32,26\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,33.938,28.029,32,32,32c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,28.629,37.343,26,32,26z M32,11c-8.791,0-16.721,3.665-22.363,9.544l3.739,4.819C17.954,20.242,24.59,17,32,17\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,14.666,40.791,11,32,11z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.wifi_2 = wifi_2;
\ No newline at end of file
diff --git a/dist/ikons/wifi_3.js b/dist/ikons/wifi_3.js
new file mode 100644
index 000000000..d6473b1a2
--- /dev/null
+++ b/dist/ikons/wifi_3.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wifi_3 = void 0;
+var wifi_3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WIFI_3_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WIFI_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "WIFI_3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,49c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,49,32,49z M32,34\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764C11.283,14.34,21.132,10,32,10\r\n\t\t\t\ts20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544l3.739,4.819C17.954,28.242,24.59,25,32,25\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19S15.279,22.666,9.637,28.544z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,49c-3.314,0-6,2.686-6,6s2.686,6,6,6c3.314,0,6-2.686,6-6S35.314,49,32,49z M32,34\r\n\t\t\t\tc-5.343,0-10.062,2.629-12.968,6.654l3.302,4.256C24.519,41.938,28.029,40,32,40c3.971,0,7.482,1.938,9.666,4.91l3.302-4.256\r\n\t\t\t\tC42.062,36.629,37.343,34,32,34z M32,4C19.747,4,8.622,8.8,0.378,16.61l3.696,4.764C11.283,14.34,21.132,10,32,10\r\n\t\t\t\ts20.717,4.34,27.926,11.374l3.696-4.764C55.378,8.8,44.253,4,32,4z M9.637,28.544l3.739,4.819C17.954,28.242,24.59,25,32,25\r\n\t\t\t\ts14.046,3.242,18.624,8.364l3.739-4.819C48.721,22.666,40.791,19,32,19S15.279,22.666,9.637,28.544z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.wifi_3 = wifi_3;
\ No newline at end of file
diff --git a/dist/ikons/windows.js b/dist/ikons/windows.js
new file mode 100644
index 000000000..1fcad00d8
--- /dev/null
+++ b/dist/ikons/windows.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.windows = void 0;
+var windows = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "windows_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "windows"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "windows"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.631V0.015L29.353,5.029z M0.015,54.721\r\n\t\t\t\tl25.809,3.738V33.766H0.015V54.721z M29.353,58.971l34.631,5.014V33.766H29.353V58.971z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0.015,30.236h25.809V5.541L0.015,9.28V30.236z M29.353,5.029v25.207h34.631V0.015L29.353,5.029z M0.015,54.721\r\n\t\t\t\tl25.809,3.738V33.766H0.015V54.721z M29.353,58.971l34.631,5.014V33.766H29.353V58.971z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.windows = windows;
\ No newline at end of file
diff --git a/dist/ikons/youtube.js b/dist/ikons/youtube.js
new file mode 100644
index 000000000..72eb4821a
--- /dev/null
+++ b/dist/ikons/youtube.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.youtube = void 0;
+var youtube = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "youtube_1_",
+ "enable-background": "new "
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "youtube"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "youtube"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944v26.474c0,5.316,6.101,8.559,11.534,8.559\r\n\t\t\t\tH54.15c5.432,0,9.834-3.242,9.834-8.559V18.976C63.984,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044\r\n\t\t\t\tl14.03,10.168L27.856,42.205z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M54.15,10.031l-20.9-0.019l-21.718,0.019c-5.433,0-11.534,3.626-11.534,8.944v26.474c0,5.316,6.101,8.559,11.534,8.559\r\n\t\t\t\tH54.15c5.432,0,9.834-3.242,9.834-8.559V18.976C63.984,13.657,59.582,10.031,54.15,10.031z M27.856,42.205L27.73,22.044\r\n\t\t\t\tl14.03,10.168L27.856,42.205z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.youtube = youtube;
\ No newline at end of file
diff --git a/dist/ikons/zoom_in.js b/dist/ikons/zoom_in.js
new file mode 100644
index 000000000..b7ab2c41e
--- /dev/null
+++ b/dist/ikons/zoom_in.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.zoom_in = void 0;
+var zoom_in = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ZOOM_IN"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M45,29H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10c1.657,0,3-1.343,3-3\r\n\t\t\tC48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.008,0H61\r\n\t\t\tc1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58H32\r\n\t\t\tv0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6S58,17.641,58,32.001L58,32.001z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M45,29H35V19c0-1.657-1.343-3-3-3c-1.657,0-3,1.343-3,3v10H19\r\n\t\t\tc-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h10v10c0,1.657,1.343,3,3,3c1.657,0,3-1.343,3-3V35h10c1.657,0,3-1.343,3-3\r\n\t\t\tC48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.008,0H61\r\n\t\t\tc1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58H32\r\n\t\t\tv0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6S58,17.641,58,32.001L58,32.001z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.zoom_in = zoom_in;
\ No newline at end of file
diff --git a/dist/ikons/zoom_out.js b/dist/ikons/zoom_out.js
new file mode 100644
index 000000000..012cc6b74
--- /dev/null
+++ b/dist/ikons/zoom_out.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.zoom_out = void 0;
+var zoom_out = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "ZOOM_OUT"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M45,29H35v0h-6v0H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h5v0h19v0h2\r\n\t\t\tc1.657,0,3-1.343,3-3C48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.007,0\r\n\t\t\tH61c1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58\r\n\t\t\tH32v0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6C46.36,6,58,17.641,58,32.001L58,32.001z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M45,29H35v0h-6v0H19c-1.657,0-3,1.343-3,3c0,1.657,1.343,3,3,3h5v0h19v0h2\r\n\t\t\tc1.657,0,3-1.343,3-3C48,30.344,46.657,29,45,29z M32,0C14.327,0,0,14.327,0,32c0,17.673,14.327,32,32,32c0.003,0,0.005,0,0.007,0\r\n\t\t\tH61c1.657,0,3-1.343,3-3V32.002c0-0.001,0-0.001,0-0.002C64,14.327,49.673,0,32,0z M58,32.001C58,46.359,46.361,57.998,32.004,58\r\n\t\t\tH32v0C17.641,58,6,46.36,6,32C6,17.641,17.641,6,32,6C46.36,6,58,17.641,58,32.001L58,32.001z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.zoom_out = zoom_out;
\ No newline at end of file
diff --git a/dist/index.d.ts b/dist/index.d.ts
new file mode 100644
index 000000000..3093434cc
--- /dev/null
+++ b/dist/index.d.ts
@@ -0,0 +1,70 @@
+
+
+declare module "react-icons-kit" {
+ import * as React from 'react'
+
+ export interface IconProp extends React.HTMLAttributes {
+ icon: any
+ size?: number | string
+ tag?: string
+ style?: React.CSSProperties
+ className?: string
+ onClick?: React.MouseEventHandler
+ }
+ export const Icon: React.ComponentType
+ export const withBaseIcon: (props: Pick>) => React.SFC
+ export default Icon
+}
+
+declare module "react-icons-kit/icomoon"
+
+declare module "react-icons-kit/md"
+
+declare module "react-icons-kit/fa"
+
+declare module "react-icons-kit/iconic"
+
+declare module "react-icons-kit/entypo"
+
+declare module "react-icons-kit/metrize"
+
+declare module "react-icons-kit/ikons"
+
+declare module "react-icons-kit/linea"
+
+declare module "react-icons-kit/ionicons"
+
+declare module "react-icons-kit/oct"
+
+declare module "react-icons-kit/typicons"
+
+declare module "react-icons-kit/noto_emoji_regular"
+
+declare module "react-icons-kit/feather"
+
+
+declare module "react-icons-kit/icomoon/*"
+
+declare module "react-icons-kit/md/*"
+
+declare module "react-icons-kit/fa/*"
+
+declare module "react-icons-kit/iconic/*"
+
+declare module "react-icons-kit/entypo/*"
+
+declare module "react-icons-kit/metrize/*"
+
+declare module "react-icons-kit/ikons/*"
+
+declare module "react-icons-kit/linea/*"
+
+declare module "react-icons-kit/ionicons/*"
+
+declare module "react-icons-kit/oct/*"
+
+declare module "react-icons-kit/typicons/*"
+
+declare module "react-icons-kit/noto_emoji_regular/*"
+
+declare module "react-icons-kit/feather/*"
diff --git a/dist/index.js b/dist/index.js
new file mode 100644
index 000000000..a2c1af904
--- /dev/null
+++ b/dist/index.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+Object.defineProperty(exports, "Icon", {
+ enumerable: true,
+ get: function get() {
+ return _Icon.Icon;
+ }
+});
+exports["default"] = void 0;
+Object.defineProperty(exports, "horizontalCenter", {
+ enumerable: true,
+ get: function get() {
+ return _horizontalCenter.horizontalCenter;
+ }
+});
+Object.defineProperty(exports, "withBaseIcon", {
+ enumerable: true,
+ get: function get() {
+ return _Icon.withBaseIcon;
+ }
+});
+
+var _Icon = require("./Icon");
+
+var _horizontalCenter = require("./horizontalCenter");
+
+var _default = _Icon.Icon;
+exports["default"] = _default;
\ No newline at end of file
diff --git a/dist/ionicons/alert.js b/dist/ionicons/alert.js
new file mode 100644
index 000000000..7a8295e1c
--- /dev/null
+++ b/dist/ionicons/alert.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alert = void 0;
+var alert = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320,480H192v-96h128V480z M304,320h-96L192,32h128L304,320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320,480H192v-96h128V480z M304,320h-96L192,32h128L304,320z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.alert = alert;
\ No newline at end of file
diff --git a/dist/ionicons/alertCircled.js b/dist/ionicons/alertCircled.js
new file mode 100644
index 000000000..7b0693801
--- /dev/null
+++ b/dist/ionicons/alertCircled.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.alertCircled = void 0;
+var alertCircled = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M476.7,422.2L270.1,72.7c-2.9-5-8.3-8.7-14.1-8.7c-5.9,0-11.3,3.7-14.1,8.7L35.3,422.2c-2.8,5-4.8,13-1.9,17.9\r\n\t\tc2.9,4.9,8.2,7.9,14,7.9h417.1c5.8,0,11.1-3,14-7.9C481.5,435.2,479.5,427.1,476.7,422.2z M288,400h-64v-48h64V400z M288,320h-64\r\n\t\tV176h64V320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M476.7,422.2L270.1,72.7c-2.9-5-8.3-8.7-14.1-8.7c-5.9,0-11.3,3.7-14.1,8.7L35.3,422.2c-2.8,5-4.8,13-1.9,17.9\r\n\t\tc2.9,4.9,8.2,7.9,14,7.9h417.1c5.8,0,11.1-3,14-7.9C481.5,435.2,479.5,427.1,476.7,422.2z M288,400h-64v-48h64V400z M288,320h-64\r\n\t\tV176h64V320z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.alertCircled = alertCircled;
\ No newline at end of file
diff --git a/dist/ionicons/androidAdd.js b/dist/ionicons/androidAdd.js
new file mode 100644
index 000000000..6e408ab5c
--- /dev/null
+++ b/dist/ionicons/androidAdd.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidAdd = void 0;
+var androidAdd = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_7_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,277.333H277.333V416h-42.666V277.333H96v-42.666h138.667V96h42.666v138.667H416V277.333z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,277.333H277.333V416h-42.666V277.333H96v-42.666h138.667V96h42.666v138.667H416V277.333z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidAdd = androidAdd;
\ No newline at end of file
diff --git a/dist/ionicons/androidAddCircle.js b/dist/ionicons/androidAddCircle.js
new file mode 100644
index 000000000..958c344c4
--- /dev/null
+++ b/dist/ionicons/androidAddCircle.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidAddCircle = void 0;
+var androidAddCircle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277h-86v86h-42v-86\r\n\t\t\th-86v-42h86v-86h42v86h86V277z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277h-86v86h-42v-86\r\n\t\t\th-86v-42h86v-86h42v86h86V277z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidAddCircle = androidAddCircle;
\ No newline at end of file
diff --git a/dist/ionicons/androidAlarmClock.js b/dist/ionicons/androidAlarmClock.js
new file mode 100644
index 000000000..a9e918bf2
--- /dev/null
+++ b/dist/ionicons/androidAlarmClock.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidAlarmClock = void 0;
+var androidAlarmClock = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_2_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M470,124.837l-98.443-81.78l-27.814,32.931l98.442,81.769L470,124.837z M167.192,74.919L139.366,42L42,124.837\r\n\t\t\tl27.814,32.919L167.192,74.919z M266.701,172.628h-32.101v127.446l101.649,60.539l16.051-26.553l-85.6-49.917V172.628z\r\n\t\t\t M256,87.665c-107,0-192.601,86.021-192.601,191.166C63.399,383.98,149,470,256,470c105.936,0,192.601-86.02,192.601-191.169\r\n\t\t\tC448.601,173.687,361.936,87.665,256,87.665z M256,427.52c-82.393,0-149.8-66.906-149.8-148.688\r\n\t\t\tc0-81.777,67.407-148.684,149.8-148.684c82.394,0,149.8,66.906,149.8,148.684C405.8,361.671,338.394,427.52,256,427.52z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M470,124.837l-98.443-81.78l-27.814,32.931l98.442,81.769L470,124.837z M167.192,74.919L139.366,42L42,124.837\r\n\t\t\tl27.814,32.919L167.192,74.919z M266.701,172.628h-32.101v127.446l101.649,60.539l16.051-26.553l-85.6-49.917V172.628z\r\n\t\t\t M256,87.665c-107,0-192.601,86.021-192.601,191.166C63.399,383.98,149,470,256,470c105.936,0,192.601-86.02,192.601-191.169\r\n\t\t\tC448.601,173.687,361.936,87.665,256,87.665z M256,427.52c-82.393,0-149.8-66.906-149.8-148.688\r\n\t\t\tc0-81.777,67.407-148.684,149.8-148.684c82.394,0,149.8,66.906,149.8,148.684C405.8,361.671,338.394,427.52,256,427.52z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidAlarmClock = androidAlarmClock;
\ No newline at end of file
diff --git a/dist/ionicons/androidAlert.js b/dist/ionicons/androidAlert.js
new file mode 100644
index 000000000..58714abbe
--- /dev/null
+++ b/dist/ionicons/androidAlert.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidAlert = void 0;
+var androidAlert = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_30_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.6,48,48,141.601,48,256s93.6,208,208,208c114.4,0,208-93.601,208-208S370.4,48,256,48z M280,360h-48v-40h48\r\n\t\t\tV360z M280,272h-48V144h48V272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.6,48,48,141.601,48,256s93.6,208,208,208c114.4,0,208-93.601,208-208S370.4,48,256,48z M280,360h-48v-40h48\r\n\t\t\tV360z M280,272h-48V144h48V272z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidAlert = androidAlert;
\ No newline at end of file
diff --git a/dist/ionicons/androidApps.js b/dist/ionicons/androidApps.js
new file mode 100644
index 000000000..15d8a519e
--- /dev/null
+++ b/dist/ionicons/androidApps.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidApps = void 0;
+var androidApps = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,176h80V96H96V176z M216,416h80v-80h-80V416z M96,416h80v-80H96V416z M96,296h80v-80H96V296z M216,296h80v-80h-80V296z\r\n\t\t\t M336,96v80h80V96H336z M216,176h80V96h-80V176z M336,296h80v-80h-80V296z M336,416h80v-80h-80V416z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,176h80V96H96V176z M216,416h80v-80h-80V416z M96,416h80v-80H96V416z M96,296h80v-80H96V296z M216,296h80v-80h-80V296z\r\n\t\t\t M336,96v80h80V96H336z M216,176h80V96h-80V176z M336,296h80v-80h-80V296z M336,416h80v-80h-80V416z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidApps = androidApps;
\ No newline at end of file
diff --git a/dist/ionicons/androidArchive.js b/dist/ionicons/androidArchive.js
new file mode 100644
index 000000000..d7ea7fb17
--- /dev/null
+++ b/dist/ionicons/androidArchive.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArchive = void 0;
+var androidArchive = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M453.594,100.001l-32.353-39.299C415.469,52.627,405.083,48,394.664,48H117.335c-10.416,0-20.801,4.627-26.576,12.702\r\n\t\tl-32.351,39.299C51.468,106.923,48,117.335,48,128.886v288.89C48,443.2,68.8,464,94.225,464h323.553\r\n\t\tC443.202,464,464,443.2,464,417.775v-288.89C464,117.335,460.537,106.923,453.594,100.001z M256,383.109L128.89,256h80.89v-46.224\r\n\t\th92.443V256h80.89L256,383.109z M96.534,94.221l18.486-23.111h277.331l21.965,23.111H96.534z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M453.594,100.001l-32.353-39.299C415.469,52.627,405.083,48,394.664,48H117.335c-10.416,0-20.801,4.627-26.576,12.702\r\n\t\tl-32.351,39.299C51.468,106.923,48,117.335,48,128.886v288.89C48,443.2,68.8,464,94.225,464h323.553\r\n\t\tC443.202,464,464,443.2,464,417.775v-288.89C464,117.335,460.537,106.923,453.594,100.001z M256,383.109L128.89,256h80.89v-46.224\r\n\t\th92.443V256h80.89L256,383.109z M96.534,94.221l18.486-23.111h277.331l21.965,23.111H96.534z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidArchive = androidArchive;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowBack.js b/dist/ionicons/androidArrowBack.js
new file mode 100644
index 000000000..c4b6200a4
--- /dev/null
+++ b/dist/ionicons/androidArrowBack.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowBack = void 0;
+var androidArrowBack = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_8_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M427,234.625H167.296l119.702-119.702L256,85L85,256l171,171l29.922-29.924L167.296,277.375H427V234.625z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M427,234.625H167.296l119.702-119.702L256,85L85,256l171,171l29.922-29.924L167.296,277.375H427V234.625z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidArrowBack = androidArrowBack;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowDown.js b/dist/ionicons/androidArrowDown.js
new file mode 100644
index 000000000..6991b9d08
--- /dev/null
+++ b/dist/ionicons/androidArrowDown.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowDown = void 0;
+var androidArrowDown = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_8_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M277.375,85v259.704l119.702-119.702L427,256L256,427L85,256l29.924-29.922l119.701,118.626V85H277.375z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M277.375,85v259.704l119.702-119.702L427,256L256,427L85,256l29.924-29.922l119.701,118.626V85H277.375z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidArrowDown = androidArrowDown;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowDropdown.js b/dist/ionicons/androidArrowDropdown.js
new file mode 100644
index 000000000..2c803ad35
--- /dev/null
+++ b/dist/ionicons/androidArrowDropdown.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowDropdown = void 0;
+var androidArrowDropdown = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "128,192 256,320 384,192 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "128,192 256,320 384,192 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidArrowDropdown = androidArrowDropdown;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowDropdownCircle.js b/dist/ionicons/androidArrowDropdownCircle.js
new file mode 100644
index 000000000..b5b9184eb
--- /dev/null
+++ b/dist/ionicons/androidArrowDropdownCircle.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowDropdownCircle = void 0;
+var androidArrowDropdownCircle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M256,320l-96-96h192\r\n\t\tL256,320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M256,320l-96-96h192\r\n\t\tL256,320z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidArrowDropdownCircle = androidArrowDropdownCircle;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowDropleft.js b/dist/ionicons/androidArrowDropleft.js
new file mode 100644
index 000000000..e4e2f7fb8
--- /dev/null
+++ b/dist/ionicons/androidArrowDropleft.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowDropleft = void 0;
+var androidArrowDropleft = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "320,128 192,256 320,384 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "320,128 192,256 320,384 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidArrowDropleft = androidArrowDropleft;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowDropleftCircle.js b/dist/ionicons/androidArrowDropleftCircle.js
new file mode 100644
index 000000000..1fd4e0e65
--- /dev/null
+++ b/dist/ionicons/androidArrowDropleftCircle.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowDropleftCircle = void 0;
+var androidArrowDropleftCircle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M192,256l96-96v192\r\n\t\tL192,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M192,256l96-96v192\r\n\t\tL192,256z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidArrowDropleftCircle = androidArrowDropleftCircle;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowDropright.js b/dist/ionicons/androidArrowDropright.js
new file mode 100644
index 000000000..92aef6ee8
--- /dev/null
+++ b/dist/ionicons/androidArrowDropright.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowDropright = void 0;
+var androidArrowDropright = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "192,128 320,256 192,384 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "192,128 320,256 192,384 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidArrowDropright = androidArrowDropright;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowDroprightCircle.js b/dist/ionicons/androidArrowDroprightCircle.js
new file mode 100644
index 000000000..51113004b
--- /dev/null
+++ b/dist/ionicons/androidArrowDroprightCircle.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowDroprightCircle = void 0;
+var androidArrowDroprightCircle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,464c114.875,0,208-93.125,208-208S370.875,48,256,48S48,141.125,48,256S141.125,464,256,464z M224,352V160l96,96\r\n\t\tL224,352z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,464c114.875,0,208-93.125,208-208S370.875,48,256,48S48,141.125,48,256S141.125,464,256,464z M224,352V160l96,96\r\n\t\tL224,352z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidArrowDroprightCircle = androidArrowDroprightCircle;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowDropup.js b/dist/ionicons/androidArrowDropup.js
new file mode 100644
index 000000000..d9ff96cc3
--- /dev/null
+++ b/dist/ionicons/androidArrowDropup.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowDropup = void 0;
+var androidArrowDropup = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "128,320 256,192 384,320 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "128,320 256,192 384,320 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidArrowDropup = androidArrowDropup;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowDropupCircle.js b/dist/ionicons/androidArrowDropupCircle.js
new file mode 100644
index 000000000..d5ac250c8
--- /dev/null
+++ b/dist/ionicons/androidArrowDropupCircle.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowDropupCircle = void 0;
+var androidArrowDropupCircle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M352,288H160l96-96\r\n\t\tL352,288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M352,288H160l96-96\r\n\t\tL352,288z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidArrowDropupCircle = androidArrowDropupCircle;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowForward.js b/dist/ionicons/androidArrowForward.js
new file mode 100644
index 000000000..d419307e8
--- /dev/null
+++ b/dist/ionicons/androidArrowForward.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowForward = void 0;
+var androidArrowForward = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_8_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M85,277.375h259.704L225.002,397.077L256,427l171-171L256,85l-29.922,29.924l118.626,119.701H85V277.375z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M85,277.375h259.704L225.002,397.077L256,427l171-171L256,85l-29.922,29.924l118.626,119.701H85V277.375z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidArrowForward = androidArrowForward;
\ No newline at end of file
diff --git a/dist/ionicons/androidArrowUp.js b/dist/ionicons/androidArrowUp.js
new file mode 100644
index 000000000..0c289960e
--- /dev/null
+++ b/dist/ionicons/androidArrowUp.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidArrowUp = void 0;
+var androidArrowUp = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_8_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M277.375,427V167.296l119.702,119.702L427,256L256,85L85,256l29.924,29.922l119.701-118.626V427H277.375z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M277.375,427V167.296l119.702,119.702L427,256L256,85L85,256l29.924,29.922l119.701-118.626V427H277.375z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidArrowUp = androidArrowUp;
\ No newline at end of file
diff --git a/dist/ionicons/androidAttach.js b/dist/ionicons/androidAttach.js
new file mode 100644
index 000000000..82fd19f82
--- /dev/null
+++ b/dist/ionicons/androidAttach.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidAttach = void 0;
+var androidAttach = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_3_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M341.334,128v234.666C341.334,409.604,302.938,448,256,448c-46.937,0-85.333-38.396-85.333-85.334V117.334\r\n\t\t\tC170.667,87.469,194.135,64,224,64c29.864,0,53.333,23.469,53.333,53.334v245.333c0,11.729-9.605,21.333-21.334,21.333\r\n\t\t\tc-11.729,0-21.333-9.604-21.333-21.333V160h-32v202.667C202.667,392.531,226.135,416,256,416\r\n\t\t\tc29.865,0,53.334-23.469,53.334-53.333V117.334C309.334,70.401,270.938,32,224,32c-46.938,0-85.334,38.401-85.334,85.334v245.332\r\n\t\t\tC138.667,427.729,190.938,480,256,480c65.062,0,117.334-52.271,117.334-117.334V128H341.334z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M341.334,128v234.666C341.334,409.604,302.938,448,256,448c-46.937,0-85.333-38.396-85.333-85.334V117.334\r\n\t\t\tC170.667,87.469,194.135,64,224,64c29.864,0,53.333,23.469,53.333,53.334v245.333c0,11.729-9.605,21.333-21.334,21.333\r\n\t\t\tc-11.729,0-21.333-9.604-21.333-21.333V160h-32v202.667C202.667,392.531,226.135,416,256,416\r\n\t\t\tc29.865,0,53.334-23.469,53.334-53.333V117.334C309.334,70.401,270.938,32,224,32c-46.938,0-85.334,38.401-85.334,85.334v245.332\r\n\t\t\tC138.667,427.729,190.938,480,256,480c65.062,0,117.334-52.271,117.334-117.334V128H341.334z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidAttach = androidAttach;
\ No newline at end of file
diff --git a/dist/ionicons/androidBar.js b/dist/ionicons/androidBar.js
new file mode 100644
index 000000000..234e2ea02
--- /dev/null
+++ b/dist/ionicons/androidBar.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidBar = void 0;
+var androidBar = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_37_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M234.667,277.333V408H128v40h256v-40H277.333V277.333L448,106.667V64H64v42.667L234.667,277.333z M160,149.333\r\n\t\t\tl-42.667-42.666h277.334L352,149.333H160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M234.667,277.333V408H128v40h256v-40H277.333V277.333L448,106.667V64H64v42.667L234.667,277.333z M160,149.333\r\n\t\t\tl-42.667-42.666h277.334L352,149.333H160z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidBar = androidBar;
\ No newline at end of file
diff --git a/dist/ionicons/androidBicycle.js b/dist/ionicons/androidBicycle.js
new file mode 100644
index 000000000..a447a590a
--- /dev/null
+++ b/dist/ionicons/androidBicycle.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidBicycle = void 0;
+var androidBicycle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_13_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M330.666,131.202c18.668,0,33.598-14.935,33.598-33.601S349.334,64,330.666,64C312,64,297.07,78.935,297.07,97.601\r\n\t\t\tS312,131.202,330.666,131.202z M386.666,261.334c-51.332,0-93.332,42-93.332,93.333s42,93.333,93.332,93.333\r\n\t\t\tC438,448,480,406,480,354.667S438,261.334,386.666,261.334z M386.666,420c-36.402,0-65.332-28.93-65.332-65.333\r\n\t\t\ts28.93-65.333,65.332-65.333c36.404,0,65.334,28.93,65.334,65.333S423.07,420,386.666,420z M305.597,224H384v-32h-58.845\r\n\t\t\tl-34.62-60.134c-5.605-9.333-15.869-15.864-27.07-15.864c-8.399,0-16.798,3.732-22.399,9.333l-71.732,69.065\r\n\t\t\tc-5.601,5.601-9.333,14-9.333,22.399c0,12.131,9.202,21.465,18.535,27.065L240,282.134V368h32V256l-39.333-32l42.929-44.533\r\n\t\t\tL305.597,224z M125.333,261.334C74,261.334,32,303.334,32,354.667S74,448,125.333,448c51.333,0,93.333-42,93.333-93.333\r\n\t\t\tS176.667,261.334,125.333,261.334z M125.333,420C88.934,420,60,391.07,60,354.667s28.934-65.333,65.333-65.333\r\n\t\t\tc36.399,0,65.333,28.93,65.333,65.333S161.732,420,125.333,420z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M330.666,131.202c18.668,0,33.598-14.935,33.598-33.601S349.334,64,330.666,64C312,64,297.07,78.935,297.07,97.601\r\n\t\t\tS312,131.202,330.666,131.202z M386.666,261.334c-51.332,0-93.332,42-93.332,93.333s42,93.333,93.332,93.333\r\n\t\t\tC438,448,480,406,480,354.667S438,261.334,386.666,261.334z M386.666,420c-36.402,0-65.332-28.93-65.332-65.333\r\n\t\t\ts28.93-65.333,65.332-65.333c36.404,0,65.334,28.93,65.334,65.333S423.07,420,386.666,420z M305.597,224H384v-32h-58.845\r\n\t\t\tl-34.62-60.134c-5.605-9.333-15.869-15.864-27.07-15.864c-8.399,0-16.798,3.732-22.399,9.333l-71.732,69.065\r\n\t\t\tc-5.601,5.601-9.333,14-9.333,22.399c0,12.131,9.202,21.465,18.535,27.065L240,282.134V368h32V256l-39.333-32l42.929-44.533\r\n\t\t\tL305.597,224z M125.333,261.334C74,261.334,32,303.334,32,354.667S74,448,125.333,448c51.333,0,93.333-42,93.333-93.333\r\n\t\t\tS176.667,261.334,125.333,261.334z M125.333,420C88.934,420,60,391.07,60,354.667s28.934-65.333,65.333-65.333\r\n\t\t\tc36.399,0,65.333,28.93,65.333,65.333S161.732,420,125.333,420z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidBicycle = androidBicycle;
\ No newline at end of file
diff --git a/dist/ionicons/androidBoat.js b/dist/ionicons/androidBoat.js
new file mode 100644
index 000000000..28df0bd58
--- /dev/null
+++ b/dist/ionicons/androidBoat.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidBoat = void 0;
+var androidBoat = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M84.255,413h1.063c34.123,0,63.977-19.021,85.305-42.494c21.325,23.473,51.18,42.762,85.304,42.762\r\n\t\ts63.979-19.334,85.305-42.806C362.559,393.934,392.412,413,426.535,413h1.062l51.253-138.78c2.126-5.329,1.063-11.641-1.07-16.976\r\n\t\tc-2.136-5.333-7.237-8.487-12.567-10.623L427,234.133v-98.15C427,112.51,407.344,93,383.884,93h-63.979l-15.993-53h-95.969\r\n\t\tl-15.995,53h-63.979C104.511,93,85,112.51,85,135.982v98.15l-38.074,12.533c-5.33,2.136-10.582,5.334-12.718,10.667\r\n\t\tc-2.135,5.335-3.158,10.49-1.031,16.887L84.255,413z M128,136h256v84.261l-128-41.605l-128,41.605V136z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M84.255,413h1.063c34.123,0,63.977-19.021,85.305-42.494c21.325,23.473,51.18,42.762,85.304,42.762\r\n\t\ts63.979-19.334,85.305-42.806C362.559,393.934,392.412,413,426.535,413h1.062l51.253-138.78c2.126-5.329,1.063-11.641-1.07-16.976\r\n\t\tc-2.136-5.333-7.237-8.487-12.567-10.623L427,234.133v-98.15C427,112.51,407.344,93,383.884,93h-63.979l-15.993-53h-95.969\r\n\t\tl-15.995,53h-63.979C104.511,93,85,112.51,85,135.982v98.15l-38.074,12.533c-5.33,2.136-10.582,5.334-12.718,10.667\r\n\t\tc-2.135,5.335-3.158,10.49-1.031,16.887L84.255,413z M128,136h256v84.261l-128-41.605l-128,41.605V136z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M341.231,408.007c-52.253,36.267-118.356,36.258-170.608-0.009c0,0-57.638,64.002-106.632,64.002h21.327\r\n\t\tc29.854,0,58.646-11.726,85.305-25.594c53.315,27.734,117.293,27.728,170.608-0.007C367.89,460.268,396.681,472,426.535,472h21.328\r\n\t\tC400.212,472,341.231,408.007,341.231,408.007z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M341.231,408.007c-52.253,36.267-118.356,36.258-170.608-0.009c0,0-57.638,64.002-106.632,64.002h21.327\r\n\t\tc29.854,0,58.646-11.726,85.305-25.594c53.315,27.734,117.293,27.728,170.608-0.007C367.89,460.268,396.681,472,426.535,472h21.328\r\n\t\tC400.212,472,341.231,408.007,341.231,408.007z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidBoat = androidBoat;
\ No newline at end of file
diff --git a/dist/ionicons/androidBookmark.js b/dist/ionicons/androidBookmark.js
new file mode 100644
index 000000000..fb897cc22
--- /dev/null
+++ b/dist/ionicons/androidBookmark.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidBookmark = void 0;
+var androidBookmark = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M360,64H152c-22.002,0-40,17.998-40,40v344l144-64l144,64V104C400,81.998,382.002,64,360,64z"
+ },
+ "children": []
+ }]
+};
+exports.androidBookmark = androidBookmark;
\ No newline at end of file
diff --git a/dist/ionicons/androidBulb.js b/dist/ionicons/androidBulb.js
new file mode 100644
index 000000000..1d66f56f5
--- /dev/null
+++ b/dist/ionicons/androidBulb.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidBulb = void 0;
+var androidBulb = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_26_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,170.136c25.499,0,49.567,10.025,67.771,28.229C341.975,216.568,352,240.637,352,266.136\r\n\t\t\tc0,17.621-4.422,34.031-13.144,48.773c-8.339,14.098-20.437,26.036-34.985,34.526L288,358.697v18.376V448h-64v-70.927v-18.376\r\n\t\t\tl-15.871-9.262C178.442,332.111,160,300.192,160,266.136c0-25.499,10.025-49.567,28.229-67.771\r\n\t\t\tC206.433,180.161,230.501,170.136,256,170.136 M277.333,32c-6.396,0-42.666,0-42.666,0v64h42.666V32L277.333,32z M406.396,85.864\r\n\t\t\tL368,124.271l29.864,29.865l38.406-38.396L406.396,85.864L406.396,85.864z M105.604,85.864l-29.875,29.875l38.406,38.396\r\n\t\t\tL144,124.271L105.604,85.864L105.604,85.864z M256,138.136c-70.396,0-128,57.604-128,128c0,46.938,25.604,88.531,64,110.938V480\r\n\t\t\th128V377.073c38.396-22.406,64-62.938,64-110.938C384,195.739,326.396,138.136,256,138.136L256,138.136z M480,244.802h-64v42.667\r\n\t\t\th64V244.802L480,244.802z M96,244.802H32v42.667h64V244.802L96,244.802z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,170.136c25.499,0,49.567,10.025,67.771,28.229C341.975,216.568,352,240.637,352,266.136\r\n\t\t\tc0,17.621-4.422,34.031-13.144,48.773c-8.339,14.098-20.437,26.036-34.985,34.526L288,358.697v18.376V448h-64v-70.927v-18.376\r\n\t\t\tl-15.871-9.262C178.442,332.111,160,300.192,160,266.136c0-25.499,10.025-49.567,28.229-67.771\r\n\t\t\tC206.433,180.161,230.501,170.136,256,170.136 M277.333,32c-6.396,0-42.666,0-42.666,0v64h42.666V32L277.333,32z M406.396,85.864\r\n\t\t\tL368,124.271l29.864,29.865l38.406-38.396L406.396,85.864L406.396,85.864z M105.604,85.864l-29.875,29.875l38.406,38.396\r\n\t\t\tL144,124.271L105.604,85.864L105.604,85.864z M256,138.136c-70.396,0-128,57.604-128,128c0,46.938,25.604,88.531,64,110.938V480\r\n\t\t\th128V377.073c38.396-22.406,64-62.938,64-110.938C384,195.739,326.396,138.136,256,138.136L256,138.136z M480,244.802h-64v42.667\r\n\t\t\th64V244.802L480,244.802z M96,244.802H32v42.667h64V244.802L96,244.802z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidBulb = androidBulb;
\ No newline at end of file
diff --git a/dist/ionicons/androidBus.js b/dist/ionicons/androidBus.js
new file mode 100644
index 000000000..3acec5283
--- /dev/null
+++ b/dist/ionicons/androidBus.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidBus = void 0;
+var androidBus = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_14_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M80,352c0,19.198,13.864,24.531,26.667,36.271v38.396c0,11.729,9.599,21.334,21.333,21.334h21.333\r\n\t\t\t\tc11.734,0,21.334-9.604,21.334-21.334v-21.333h170.666v21.333c0,11.729,9.604,21.334,21.334,21.334H384\r\n\t\t\t\tc11.729,0,21.333-9.604,21.333-21.334v-38.396C418.136,376.531,432,370.136,432,352V148.334C432,73.667,349.864,64,256,64\r\n\t\t\t\tS80,73.667,80,148.334V352z M160,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC192,354.125,178.136,367.989,160,367.989z M352,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC384,354.125,370.136,367.989,352,367.989z M384,245.333H128V138.667h256V245.333z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M80,352c0,19.198,13.864,24.531,26.667,36.271v38.396c0,11.729,9.599,21.334,21.333,21.334h21.333\r\n\t\t\t\tc11.734,0,21.334-9.604,21.334-21.334v-21.333h170.666v21.333c0,11.729,9.604,21.334,21.334,21.334H384\r\n\t\t\t\tc11.729,0,21.333-9.604,21.333-21.334v-38.396C418.136,376.531,432,370.136,432,352V148.334C432,73.667,349.864,64,256,64\r\n\t\t\t\tS80,73.667,80,148.334V352z M160,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC192,354.125,178.136,367.989,160,367.989z M352,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC384,354.125,370.136,367.989,352,367.989z M384,245.333H128V138.667h256V245.333z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidBus = androidBus;
\ No newline at end of file
diff --git a/dist/ionicons/androidCalendar.js b/dist/ionicons/androidCalendar.js
new file mode 100644
index 000000000..db0ede39c
--- /dev/null
+++ b/dist/ionicons/androidCalendar.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCalendar = void 0;
+var androidCalendar = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368.005,272h-96v96h96V272z M336.005,64v32h-160V64h-48v32h-24.01c-22.002,0-40,17.998-40,40v272\r\n\t\tc0,22.002,17.998,40,40,40h304.01c22.002,0,40-17.998,40-40V136c0-22.002-17.998-40-40-40h-24V64H336.005z M408.005,408h-304.01\r\n\t\tV196h304.01V408z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368.005,272h-96v96h96V272z M336.005,64v32h-160V64h-48v32h-24.01c-22.002,0-40,17.998-40,40v272\r\n\t\tc0,22.002,17.998,40,40,40h304.01c22.002,0,40-17.998,40-40V136c0-22.002-17.998-40-40-40h-24V64H336.005z M408.005,408h-304.01\r\n\t\tV196h304.01V408z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidCalendar = androidCalendar;
\ No newline at end of file
diff --git a/dist/ionicons/androidCall.js b/dist/ionicons/androidCall.js
new file mode 100644
index 000000000..7dccaf9b2
--- /dev/null
+++ b/dist/ionicons/androidCall.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCall = void 0;
+var androidCall = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M426.666,330.667c-26.666,0-52.271-4.271-75.729-11.729c-7.469-2.136-16-1.073-21.332,5.333l-46.939,46.928\r\n\tc-60.802-30.928-109.864-80-140.802-140.803l46.939-46.927c5.332-5.333,7.462-13.864,5.332-21.333\r\n\tc-8.537-24.531-12.802-50.136-12.802-76.803C181.333,73.604,171.734,64,160,64H85.333C73.599,64,64,73.604,64,85.333\r\n\tC64,285.864,226.136,448,426.666,448c11.73,0,21.334-9.604,21.334-21.333V352C448,340.271,438.396,330.667,426.666,330.667z"
+ },
+ "children": []
+ }]
+};
+exports.androidCall = androidCall;
\ No newline at end of file
diff --git a/dist/ionicons/androidCamera.js b/dist/ionicons/androidCamera.js
new file mode 100644
index 000000000..45a66ddc6
--- /dev/null
+++ b/dist/ionicons/androidCamera.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCamera = void 0;
+var androidCamera = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "280",
+ "r": "63"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "280",
+ "r": "63"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M440,96h-88l-32-32H192l-32,32H72c-22.092,0-40,17.908-40,40v272c0,22.092,17.908,40,40,40h368c22.092,0,40-17.908,40-40\r\n\t\tV136C480,113.908,462.092,96,440,96z M256,392c-61.855,0-112-50.145-112-112s50.145-112,112-112s112,50.145,112,112\r\n\t\tS317.855,392,256,392z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M440,96h-88l-32-32H192l-32,32H72c-22.092,0-40,17.908-40,40v272c0,22.092,17.908,40,40,40h368c22.092,0,40-17.908,40-40\r\n\t\tV136C480,113.908,462.092,96,440,96z M256,392c-61.855,0-112-50.145-112-112s50.145-112,112-112s112,50.145,112,112\r\n\t\tS317.855,392,256,392z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidCamera = androidCamera;
\ No newline at end of file
diff --git a/dist/ionicons/androidCancel.js b/dist/ionicons/androidCancel.js
new file mode 100644
index 000000000..854e141eb
--- /dev/null
+++ b/dist/ionicons/androidCancel.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCancel = void 0;
+var androidCancel = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C140.559,48,48,140.559,48,256c0,115.436,92.559,208,208,208c115.435,0,208-92.564,208-208\r\n\t\tC464,140.559,371.436,48,256,48z M360.002,330.881l-29.12,29.117L256,285.117l-74.881,74.881l-29.121-29.117L226.881,256\r\n\t\tl-74.883-74.881l29.121-29.116L256,226.881l74.881-74.878l29.12,29.116L285.119,256L360.002,330.881z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C140.559,48,48,140.559,48,256c0,115.436,92.559,208,208,208c115.435,0,208-92.564,208-208\r\n\t\tC464,140.559,371.436,48,256,48z M360.002,330.881l-29.12,29.117L256,285.117l-74.881,74.881l-29.121-29.117L226.881,256\r\n\t\tl-74.883-74.881l29.121-29.116L256,226.881l74.881-74.878l29.12,29.116L285.119,256L360.002,330.881z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidCancel = androidCancel;
\ No newline at end of file
diff --git a/dist/ionicons/androidCar.js b/dist/ionicons/androidCar.js
new file mode 100644
index 000000000..9eeaeea12
--- /dev/null
+++ b/dist/ionicons/androidCar.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCar = void 0;
+var androidCar = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_15_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.208,117.333c-4.271-12.802-16-21.333-29.875-21.333H138.667c-13.875,0-25.604,8.531-29.875,21.333L64,234.667v160\r\n\t\t\tC64,406.396,73.604,416,85.333,416h21.334c11.729,0,21.333-9.604,21.333-21.333V384h256v10.667\r\n\t\t\tc0,11.729,9.604,21.333,21.333,21.333h21.334c11.729,0,21.333-9.604,21.333-21.333v-160L403.208,117.333z M138.667,320\r\n\t\t\tc-18.125,0-32-13.865-32-32s13.875-32,32-32s32,13.866,32,32S156.792,320,138.667,320z M373.333,320c-18.125,0-32-13.865-32-32\r\n\t\t\ts13.875-32,32-32s32,13.866,32,32S391.458,320,373.333,320z M106.667,213.333l32-85.333h234.666l32,85.333H106.667z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.208,117.333c-4.271-12.802-16-21.333-29.875-21.333H138.667c-13.875,0-25.604,8.531-29.875,21.333L64,234.667v160\r\n\t\t\tC64,406.396,73.604,416,85.333,416h21.334c11.729,0,21.333-9.604,21.333-21.333V384h256v10.667\r\n\t\t\tc0,11.729,9.604,21.333,21.333,21.333h21.334c11.729,0,21.333-9.604,21.333-21.333v-160L403.208,117.333z M138.667,320\r\n\t\t\tc-18.125,0-32-13.865-32-32s13.875-32,32-32s32,13.866,32,32S156.792,320,138.667,320z M373.333,320c-18.125,0-32-13.865-32-32\r\n\t\t\ts13.875-32,32-32s32,13.866,32,32S391.458,320,373.333,320z M106.667,213.333l32-85.333h234.666l32,85.333H106.667z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidCar = androidCar;
\ No newline at end of file
diff --git a/dist/ionicons/androidCart.js b/dist/ionicons/androidCart.js
new file mode 100644
index 000000000..fd23e607d
--- /dev/null
+++ b/dist/ionicons/androidCart.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCart = void 0;
+var androidCart = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#010101",
+ "d": "M169.6,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6s41.601-18.718,41.601-41.6\r\n\t\tC211.2,396.317,192.481,377.6,169.6,377.6z M48,51.2v41.6h41.6l74.883,151.682l-31.308,50.954c-3.118,5.2-5.2,12.482-5.2,19.765\r\n\t\tc0,27.85,19.025,41.6,44.825,41.6H416v-40H177.893c-3.118,0-5.2-2.082-5.2-5.2c0-1.036,2.207-5.2,2.207-5.2l20.782-32.8h154.954\r\n\t\tc15.601,0,29.128-8.317,36.4-21.836l74.882-128.8c1.237-2.461,2.082-6.246,2.082-10.399c0-11.446-9.364-19.765-20.8-19.765H135.364\r\n\t\tL115.6,51.2H48z M374.399,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6S416,442.082,416,419.2\r\n\t\tC416,396.317,397.281,377.6,374.399,377.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#010101",
+ "d": "M169.6,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6s41.601-18.718,41.601-41.6\r\n\t\tC211.2,396.317,192.481,377.6,169.6,377.6z M48,51.2v41.6h41.6l74.883,151.682l-31.308,50.954c-3.118,5.2-5.2,12.482-5.2,19.765\r\n\t\tc0,27.85,19.025,41.6,44.825,41.6H416v-40H177.893c-3.118,0-5.2-2.082-5.2-5.2c0-1.036,2.207-5.2,2.207-5.2l20.782-32.8h154.954\r\n\t\tc15.601,0,29.128-8.317,36.4-21.836l74.882-128.8c1.237-2.461,2.082-6.246,2.082-10.399c0-11.446-9.364-19.765-20.8-19.765H135.364\r\n\t\tL115.6,51.2H48z M374.399,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6S416,442.082,416,419.2\r\n\t\tC416,396.317,397.281,377.6,374.399,377.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidCart = androidCart;
\ No newline at end of file
diff --git a/dist/ionicons/androidChat.js b/dist/ionicons/androidChat.js
new file mode 100644
index 000000000..03c2e6396
--- /dev/null
+++ b/dist/ionicons/androidChat.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidChat = void 0;
+var androidChat = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M391.553,64H57.607C53.131,64,48,67.745,48,72.159v214.217c0,4.413,5.131,8.624,9.607,8.624H115v88.894L205.128,295\r\n\t\th186.425c4.477,0,7.447-4.211,7.447-8.624V72.159C399,67.745,396.029,64,391.553,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M391.553,64H57.607C53.131,64,48,67.745,48,72.159v214.217c0,4.413,5.131,8.624,9.607,8.624H115v88.894L205.128,295\r\n\t\th186.425c4.477,0,7.447-4.211,7.447-8.624V72.159C399,67.745,396.029,64,391.553,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M456.396,127H424v166.57c0,15.987-6.915,26.43-25.152,26.43H218.096l-38.905,39h129.688L399,448v-89h57.396\r\n\t\tc4.478,0,7.604-4.262,7.604-8.682V136.103C464,131.689,460.874,127,456.396,127z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M456.396,127H424v166.57c0,15.987-6.915,26.43-25.152,26.43H218.096l-38.905,39h129.688L399,448v-89h57.396\r\n\t\tc4.478,0,7.604-4.262,7.604-8.682V136.103C464,131.689,460.874,127,456.396,127z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidChat = androidChat;
\ No newline at end of file
diff --git a/dist/ionicons/androidCheckbox.js b/dist/ionicons/androidCheckbox.js
new file mode 100644
index 000000000..4433f72c6
--- /dev/null
+++ b/dist/ionicons/androidCheckbox.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCheckbox = void 0;
+var androidCheckbox = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_22_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z M213.333,362.667L106.667,256l29.864-29.864\r\n\t\t\tl76.802,76.802l162.136-162.136l29.864,29.865L213.333,362.667z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z M213.333,362.667L106.667,256l29.864-29.864\r\n\t\t\tl76.802,76.802l162.136-162.136l29.864,29.865L213.333,362.667z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidCheckbox = androidCheckbox;
\ No newline at end of file
diff --git a/dist/ionicons/androidCheckboxBlank.js b/dist/ionicons/androidCheckboxBlank.js
new file mode 100644
index 000000000..f481969d1
--- /dev/null
+++ b/dist/ionicons/androidCheckboxBlank.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCheckboxBlank = void 0;
+var androidCheckboxBlank = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_23_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidCheckboxBlank = androidCheckboxBlank;
\ No newline at end of file
diff --git a/dist/ionicons/androidCheckboxOutline.js b/dist/ionicons/androidCheckboxOutline.js
new file mode 100644
index 000000000..9b79001d8
--- /dev/null
+++ b/dist/ionicons/androidCheckboxOutline.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCheckboxOutline = void 0;
+var androidCheckboxOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_24_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168.531,215.469l-29.864,29.864l96,96L448,128l-29.864-29.864L234.667,280.531L168.531,215.469z M405.333,405.333\r\n\t\t\tH106.667V106.667H320V64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V234.667h-42.667V405.333z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168.531,215.469l-29.864,29.864l96,96L448,128l-29.864-29.864L234.667,280.531L168.531,215.469z M405.333,405.333\r\n\t\t\tH106.667V106.667H320V64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V234.667h-42.667V405.333z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidCheckboxOutline = androidCheckboxOutline;
\ No newline at end of file
diff --git a/dist/ionicons/androidCheckboxOutlineBlank.js b/dist/ionicons/androidCheckboxOutlineBlank.js
new file mode 100644
index 000000000..461f4302f
--- /dev/null
+++ b/dist/ionicons/androidCheckboxOutlineBlank.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCheckboxOutlineBlank = void 0;
+var androidCheckboxOutlineBlank = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_25_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.333,106.667v298.666H106.667V106.667H405.333 M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64\r\n\t\t\tL405.333,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.333,106.667v298.666H106.667V106.667H405.333 M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64\r\n\t\t\tL405.333,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidCheckboxOutlineBlank = androidCheckboxOutlineBlank;
\ No newline at end of file
diff --git a/dist/ionicons/androidCheckmarkCircle.js b/dist/ionicons/androidCheckmarkCircle.js
new file mode 100644
index 000000000..18fa68f17
--- /dev/null
+++ b/dist/ionicons/androidCheckmarkCircle.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCheckmarkCircle = void 0;
+var androidCheckmarkCircle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M170.718,216.482L141.6,245.6L235.2,339.2l208-208l-29.118-29.118L235.2,279.918L170.718,216.482z M422.4,256\r\n\tc0,91.518-74.883,166.4-166.4,166.4S89.6,347.518,89.6,256S164.482,89.6,256,89.6c15.6,0,31.2,2.082,45.764,6.241L334,63.6\r\n\tC310.082,53.2,284.082,48,256,48C141.6,48,48,141.6,48,256s93.6,208,208,208s208-93.6,208-208H422.4z"
+ },
+ "children": []
+ }]
+};
+exports.androidCheckmarkCircle = androidCheckmarkCircle;
\ No newline at end of file
diff --git a/dist/ionicons/androidClipboard.js b/dist/ionicons/androidClipboard.js
new file mode 100644
index 000000000..87b531279
--- /dev/null
+++ b/dist/ionicons/androidClipboard.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidClipboard = void 0;
+var androidClipboard = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.333,80h-87.35C310.879,52.396,285.821,32,256,32s-54.879,20.396-61.983,48h-87.35C83.198,80,64,99.198,64,122.667\r\n\tv314.665C64,460.801,83.198,480,106.667,480h298.666C428.802,480,448,460.801,448,437.332V122.667C448,99.198,428.802,80,405.333,80\r\n\tz M256,80c11.729,0,21.333,9.599,21.333,21.333s-9.604,21.334-21.333,21.334s-21.333-9.6-21.333-21.334S244.271,80,256,80z M408,440\r\n\tH104V120h40v72h224v-72h40V440z"
+ },
+ "children": []
+ }]
+};
+exports.androidClipboard = androidClipboard;
\ No newline at end of file
diff --git a/dist/ionicons/androidClose.js b/dist/ionicons/androidClose.js
new file mode 100644
index 000000000..fcca3d735
--- /dev/null
+++ b/dist/ionicons/androidClose.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidClose = void 0;
+var androidClose = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_5_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "405,136.798 375.202,107 256,226.202 136.798,107 107,136.798 226.202,256 107,375.202 136.798,405 256,285.798 \r\n\t\t\t375.202,405 405,375.202 285.798,256 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "405,136.798 375.202,107 256,226.202 136.798,107 107,136.798 226.202,256 107,375.202 136.798,405 256,285.798 \r\n\t\t\t375.202,405 405,375.202 285.798,256 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidClose = androidClose;
\ No newline at end of file
diff --git a/dist/ionicons/androidCloud.js b/dist/ionicons/androidCloud.js
new file mode 100644
index 000000000..cadc5b407
--- /dev/null
+++ b/dist/ionicons/androidCloud.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCloud = void 0;
+var androidCloud = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z"
+ },
+ "children": []
+ }]
+};
+exports.androidCloud = androidCloud;
\ No newline at end of file
diff --git a/dist/ionicons/androidCloudCircle.js b/dist/ionicons/androidCloudCircle.js
new file mode 100644
index 000000000..2608f42b1
--- /dev/null
+++ b/dist/ionicons/androidCloudCircle.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCloudCircle = void 0;
+var androidCloudCircle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_32_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.6,48,48,141.6,48,256s93.6,208,208,208c114.4,0,208-93.6,208-208S370.4,48,256,48z M349.6,339.2\r\n\t\t\t\tc0,0-175.759,0-176.799,0c-34.318,0-62.4-28.082-62.4-62.399c0-34.319,28.082-62.4,62.4-62.4c1.041,0,2.082,0,3.117,0\r\n\t\t\t\tc9.364-36.4,41.601-62.399,80.083-62.399c45.764,0,83.199,37.435,83.199,83.198h10.4c29.118,0,52,22.882,52,52.001\r\n\t\t\t\tC401.6,316.318,378.718,339.2,349.6,339.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.6,48,48,141.6,48,256s93.6,208,208,208c114.4,0,208-93.6,208-208S370.4,48,256,48z M349.6,339.2\r\n\t\t\t\tc0,0-175.759,0-176.799,0c-34.318,0-62.4-28.082-62.4-62.399c0-34.319,28.082-62.4,62.4-62.4c1.041,0,2.082,0,3.117,0\r\n\t\t\t\tc9.364-36.4,41.601-62.399,80.083-62.399c45.764,0,83.199,37.435,83.199,83.198h10.4c29.118,0,52,22.882,52,52.001\r\n\t\t\t\tC401.6,316.318,378.718,339.2,349.6,339.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidCloudCircle = androidCloudCircle;
\ No newline at end of file
diff --git a/dist/ionicons/androidCloudDone.js b/dist/ionicons/androidCloudDone.js
new file mode 100644
index 000000000..4628cdee9
--- /dev/null
+++ b/dist/ionicons/androidCloudDone.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCloudDone = void 0;
+var androidCloudDone = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\t\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\t\tC496,263.002,455.004,219.999,403.002,217.001z M213.333,362.667L138.667,288l29.864-29.864l44.802,44.802L324.271,192\r\n\t\tl29.865,29.864L213.333,362.667z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\t\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\t\tC496,263.002,455.004,219.999,403.002,217.001z M213.333,362.667L138.667,288l29.864-29.864l44.802,44.802L324.271,192\r\n\t\tl29.865,29.864L213.333,362.667z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidCloudDone = androidCloudDone;
\ No newline at end of file
diff --git a/dist/ionicons/androidCloudOutline.js b/dist/ionicons/androidCloudOutline.js
new file mode 100644
index 000000000..3b50579c7
--- /dev/null
+++ b/dist/ionicons/androidCloudOutline.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCloudOutline = void 0;
+var androidCloudOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_9_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.001,217.001C388.997,148.002,328.998,96,256,96c-57.998,0-107.999,32.998-132.997,81\r\n\t\t\t\tC63.002,183.002,16,233.998,16,296c0,65.996,54.004,120,120,120h260c55,0,100-45,100-100.001\r\n\t\t\t\tC496,263.002,455.003,220,403.001,217.001z M396,376H136c-44.004,0-80-35.996-80-80c0-44,35.996-80,80-80h14.004\r\n\t\t\t\tc12.998-46,55-80,105.996-80c60.996,0,110,49,110,110v10h30c32.998,0,60,27.003,60,60C456,348.998,428.998,376,396,376z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.001,217.001C388.997,148.002,328.998,96,256,96c-57.998,0-107.999,32.998-132.997,81\r\n\t\t\t\tC63.002,183.002,16,233.998,16,296c0,65.996,54.004,120,120,120h260c55,0,100-45,100-100.001\r\n\t\t\t\tC496,263.002,455.003,220,403.001,217.001z M396,376H136c-44.004,0-80-35.996-80-80c0-44,35.996-80,80-80h14.004\r\n\t\t\t\tc12.998-46,55-80,105.996-80c60.996,0,110,49,110,110v10h30c32.998,0,60,27.003,60,60C456,348.998,428.998,376,396,376z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidCloudOutline = androidCloudOutline;
\ No newline at end of file
diff --git a/dist/ionicons/androidColorPalette.js b/dist/ionicons/androidColorPalette.js
new file mode 100644
index 000000000..807ee06e3
--- /dev/null
+++ b/dist/ionicons/androidColorPalette.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidColorPalette = void 0;
+var androidColorPalette = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_12_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64C150.401,64,64,150.401,64,256c0,105.604,86.401,192,192,192c18.136,0,32-13.864,32-32\r\n\t\t\tc0-8.531-3.198-16-8.531-21.333c-5.333-5.334-8.531-12.803-8.531-21.334c0-18.135,13.864-32,32-32h38.396\r\n\t\t\tc58.667,0,106.667-48,106.667-106.666C448,140.802,361.604,64,256,64z M138.667,256c-18.136,0-32-13.864-32-32s13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32S156.802,256,138.667,256z M202.667,170.667c-18.136,0-32-13.865-32-32c0-18.136,13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32C234.667,156.802,220.802,170.667,202.667,170.667z M309.333,170.667c-18.135,0-32-13.865-32-32\r\n\t\t\tc0-18.136,13.865-32,32-32c18.136,0,32,13.864,32,32C341.333,156.802,327.469,170.667,309.333,170.667z M373.333,256\r\n\t\t\tc-18.135,0-32-13.864-32-32s13.865-32,32-32c18.136,0,32,13.864,32,32S391.469,256,373.333,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64C150.401,64,64,150.401,64,256c0,105.604,86.401,192,192,192c18.136,0,32-13.864,32-32\r\n\t\t\tc0-8.531-3.198-16-8.531-21.333c-5.333-5.334-8.531-12.803-8.531-21.334c0-18.135,13.864-32,32-32h38.396\r\n\t\t\tc58.667,0,106.667-48,106.667-106.666C448,140.802,361.604,64,256,64z M138.667,256c-18.136,0-32-13.864-32-32s13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32S156.802,256,138.667,256z M202.667,170.667c-18.136,0-32-13.865-32-32c0-18.136,13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32C234.667,156.802,220.802,170.667,202.667,170.667z M309.333,170.667c-18.135,0-32-13.865-32-32\r\n\t\t\tc0-18.136,13.865-32,32-32c18.136,0,32,13.864,32,32C341.333,156.802,327.469,170.667,309.333,170.667z M373.333,256\r\n\t\t\tc-18.135,0-32-13.864-32-32s13.865-32,32-32c18.136,0,32,13.864,32,32S391.469,256,373.333,256z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidColorPalette = androidColorPalette;
\ No newline at end of file
diff --git a/dist/ionicons/androidCompass.js b/dist/ionicons/androidCompass.js
new file mode 100644
index 000000000..a89727ed8
--- /dev/null
+++ b/dist/ionicons/androidCompass.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCompass = void 0;
+var androidCompass = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,231.358c-13.442,0-24.643,11.2-24.643,24.642s11.2,24.643,24.643,24.643s24.643-11.2,24.643-24.643\r\n\tS269.442,231.358,256,231.358z M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z\r\n\t M305.284,305.284L121.6,390.4l85.116-183.679L390.4,121.6L305.284,305.284z"
+ },
+ "children": []
+ }]
+};
+exports.androidCompass = androidCompass;
\ No newline at end of file
diff --git a/dist/ionicons/androidContact.js b/dist/ionicons/androidContact.js
new file mode 100644
index 000000000..6d5a1c1e2
--- /dev/null
+++ b/dist/ionicons/androidContact.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidContact = void 0;
+var androidContact = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M331.08,338.205c-22.156,12.594-47.777,19.783-75.084,19.783c-27.302,0-52.919-7.182-75.073-19.771\r\n\t\tC122.153,356.152,77.262,396,64,448h384C434.745,396,389.854,356.131,331.08,338.205z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M331.08,338.205c-22.156,12.594-47.777,19.783-75.084,19.783c-27.302,0-52.919-7.182-75.073-19.771\r\n\t\tC122.153,356.152,77.262,396,64,448h384C434.745,396,389.854,356.131,331.08,338.205z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.996,64c-72.871,0-131.945,59.127-131.945,132.013c0,72.887,59.074,131.972,131.945,131.972\r\n\t\t\ts131.945-59.085,131.945-131.972C387.941,123.127,328.867,64,255.996,64z M255.996,294.986c-41.958,0-77.813-25.986-92.209-62.986\r\n\t\t\th184.418C333.809,269,297.953,294.986,255.996,294.986z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.996,64c-72.871,0-131.945,59.127-131.945,132.013c0,72.887,59.074,131.972,131.945,131.972\r\n\t\t\ts131.945-59.085,131.945-131.972C387.941,123.127,328.867,64,255.996,64z M255.996,294.986c-41.958,0-77.813-25.986-92.209-62.986\r\n\t\t\th184.418C333.809,269,297.953,294.986,255.996,294.986z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidContact = androidContact;
\ No newline at end of file
diff --git a/dist/ionicons/androidContacts.js b/dist/ionicons/androidContacts.js
new file mode 100644
index 000000000..a617a8bf8
--- /dev/null
+++ b/dist/ionicons/androidContacts.js
@@ -0,0 +1,95 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidContacts = void 0;
+var androidContacts = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M239.208,343.937c-17.78,10.103-38.342,15.876-60.255,15.876c-21.909,0-42.467-5.771-60.246-15.87\r\n\t\t\tC71.544,358.331,42.643,406,32,448h293.912C315.273,406,286.375,358.317,239.208,343.937z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M239.208,343.937c-17.78,10.103-38.342,15.876-60.255,15.876c-21.909,0-42.467-5.771-60.246-15.87\r\n\t\t\tC71.544,358.331,42.643,406,32,448h293.912C315.273,406,286.375,358.317,239.208,343.937z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M178.953,120.035c-58.479,0-105.886,47.394-105.886,105.858c0,58.464,47.407,105.857,105.886,105.857\r\n\t\t\t\tc58.479,0,105.886-47.394,105.886-105.857C284.839,167.429,237.431,120.035,178.953,120.035z M178.953,306.523\r\n\t\t\t\tc-33.671,0-62.445-22.513-73.997-50.523H252.95C241.396,284.011,212.624,306.523,178.953,306.523z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M178.953,120.035c-58.479,0-105.886,47.394-105.886,105.858c0,58.464,47.407,105.857,105.886,105.857\r\n\t\t\t\tc58.479,0,105.886-47.394,105.886-105.857C284.839,167.429,237.431,120.035,178.953,120.035z M178.953,306.523\r\n\t\t\t\tc-33.671,0-62.445-22.513-73.997-50.523H252.95C241.396,284.011,212.624,306.523,178.953,306.523z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M322.602,384H480c-10.638-42-39.537-81.691-86.703-96.072c-17.781,10.104-38.343,15.873-60.256,15.873\r\n\t\t\t\tc-14.823,0-29.024-2.654-42.168-7.49c-7.445,12.47-16.927,25.592-27.974,34.906C289.245,341.354,309.146,364,322.602,384z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M322.602,384H480c-10.638-42-39.537-81.691-86.703-96.072c-17.781,10.104-38.343,15.873-60.256,15.873\r\n\t\t\t\tc-14.823,0-29.024-2.654-42.168-7.49c-7.445,12.47-16.927,25.592-27.974,34.906C289.245,341.354,309.146,364,322.602,384z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M306.545,200h100.493c-11.554,28-40.327,50.293-73.997,50.293c-8.875,0-17.404-1.692-25.375-4.51\r\n\t\t\tc-1.338,8.709-3.543,17.07-6.52,25.118c10.066,3.174,20.779,4.862,31.895,4.862c58.479,0,105.886-47.41,105.886-105.872\r\n\t\t\tc0-58.465-47.407-105.866-105.886-105.866c-37.49,0-70.427,19.703-89.243,49.09C275.607,131.383,298.961,163,306.545,200z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M306.545,200h100.493c-11.554,28-40.327,50.293-73.997,50.293c-8.875,0-17.404-1.692-25.375-4.51\r\n\t\t\tc-1.338,8.709-3.543,17.07-6.52,25.118c10.066,3.174,20.779,4.862,31.895,4.862c58.479,0,105.886-47.41,105.886-105.872\r\n\t\t\tc0-58.465-47.407-105.866-105.886-105.866c-37.49,0-70.427,19.703-89.243,49.09C275.607,131.383,298.961,163,306.545,200z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidContacts = androidContacts;
\ No newline at end of file
diff --git a/dist/ionicons/androidContract.js b/dist/ionicons/androidContract.js
new file mode 100644
index 000000000..e8563e37a
--- /dev/null
+++ b/dist/ionicons/androidContract.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidContract = void 0;
+var androidContract = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_2_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,371.2h76.795V448H192V320H64V371.2z M140.795,140.8H64V192h128V64h-51.205V140.8z M320,448h51.2v-76.8H448V320H320\r\n\t\t\tV448z M371.2,140.8V64H320v128h128v-51.2H371.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,371.2h76.795V448H192V320H64V371.2z M140.795,140.8H64V192h128V64h-51.205V140.8z M320,448h51.2v-76.8H448V320H320\r\n\t\t\tV448z M371.2,140.8V64H320v128h128v-51.2H371.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidContract = androidContract;
\ No newline at end of file
diff --git a/dist/ionicons/androidCreate.js b/dist/ionicons/androidCreate.js
new file mode 100644
index 000000000..def519673
--- /dev/null
+++ b/dist/ionicons/androidCreate.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidCreate = void 0;
+var androidCreate = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_6_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#010101",
+ "d": "M64,368v80h80l235.727-235.729l-79.999-79.998L64,368z M441.602,150.398\r\n\t\t\tc8.531-8.531,8.531-21.334,0-29.865l-50.135-50.135c-8.531-8.531-21.334-8.531-29.865,0l-39.468,39.469l79.999,79.998\r\n\t\t\tL441.602,150.398z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#010101",
+ "d": "M64,368v80h80l235.727-235.729l-79.999-79.998L64,368z M441.602,150.398\r\n\t\t\tc8.531-8.531,8.531-21.334,0-29.865l-50.135-50.135c-8.531-8.531-21.334-8.531-29.865,0l-39.468,39.469l79.999,79.998\r\n\t\t\tL441.602,150.398z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidCreate = androidCreate;
\ No newline at end of file
diff --git a/dist/ionicons/androidDelete.js b/dist/ionicons/androidDelete.js
new file mode 100644
index 000000000..9afd19151
--- /dev/null
+++ b/dist/ionicons/androidDelete.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidDelete = void 0;
+var androidDelete = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,405.429C128,428.846,147.198,448,170.667,448h170.667C364.802,448,384,428.846,384,405.429V160H128V405.429z M416,96\r\n\t\th-80l-26.785-32H202.786L176,96H96v32h320V96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,405.429C128,428.846,147.198,448,170.667,448h170.667C364.802,448,384,428.846,384,405.429V160H128V405.429z M416,96\r\n\t\th-80l-26.785-32H202.786L176,96H96v32h320V96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidDelete = androidDelete;
\ No newline at end of file
diff --git a/dist/ionicons/androidDesktop.js b/dist/ionicons/androidDesktop.js
new file mode 100644
index 000000000..04f87fc73
--- /dev/null
+++ b/dist/ionicons/androidDesktop.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidDesktop = void 0;
+var androidDesktop = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_28_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.333,32H74.667C51.198,32,32,51.197,32,74.666v282.667C32,380.802,51.198,400,74.667,400h138.666l-42.666,48v32\r\n\t\t\th170.666v-32l-42.666-48h138.666C460.802,400,480,380.802,480,357.333V74.666C480,51.197,460.802,32,437.333,32z M437.333,320\r\n\t\t\tH74.667V74.666h362.666V320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.333,32H74.667C51.198,32,32,51.197,32,74.666v282.667C32,380.802,51.198,400,74.667,400h138.666l-42.666,48v32\r\n\t\t\th170.666v-32l-42.666-48h138.666C460.802,400,480,380.802,480,357.333V74.666C480,51.197,460.802,32,437.333,32z M437.333,320\r\n\t\t\tH74.667V74.666h362.666V320z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidDesktop = androidDesktop;
\ No newline at end of file
diff --git a/dist/ionicons/androidDocument.js b/dist/ionicons/androidDocument.js
new file mode 100644
index 000000000..ded498902
--- /dev/null
+++ b/dist/ionicons/androidDocument.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidDocument = void 0;
+var androidDocument = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,48H136c-22.092,0-40,17.908-40,40v336c0,22.092,17.908,40,40,40h240c22.092,0,40-17.908,40-40V176L288,48z M272,192\r\n\t\tV80l112,112H272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,48H136c-22.092,0-40,17.908-40,40v336c0,22.092,17.908,40,40,40h240c22.092,0,40-17.908,40-40V176L288,48z M272,192\r\n\t\tV80l112,112H272z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidDocument = androidDocument;
\ No newline at end of file
diff --git a/dist/ionicons/androidDone.js b/dist/ionicons/androidDone.js
new file mode 100644
index 000000000..ef319a546
--- /dev/null
+++ b/dist/ionicons/androidDone.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidDone = void 0;
+var androidDone = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "186.301,339.893 96,249.461 64,279.968 186.301,402 448,140.506 416,110 \t\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "186.301,339.893 96,249.461 64,279.968 186.301,402 448,140.506 416,110 \t\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidDone = androidDone;
\ No newline at end of file
diff --git a/dist/ionicons/androidDoneAll.js b/dist/ionicons/androidDoneAll.js
new file mode 100644
index 000000000..0f81ae5c5
--- /dev/null
+++ b/dist/ionicons/androidDoneAll.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidDoneAll = void 0;
+var androidDoneAll = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_4_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M387.581,139.712L356.755,109L216.913,248.319l30.831,30.719L387.581,139.712z M481.172,109L247.744,340.469\r\n\t\t\tl-91.39-91.051l-30.827,30.715L247.744,403L512,139.712L481.172,109z M0,280.133L123.321,403l30.829-30.713L31.934,249.418\r\n\t\t\tL0,280.133z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M387.581,139.712L356.755,109L216.913,248.319l30.831,30.719L387.581,139.712z M481.172,109L247.744,340.469\r\n\t\t\tl-91.39-91.051l-30.827,30.715L247.744,403L512,139.712L481.172,109z M0,280.133L123.321,403l30.829-30.713L31.934,249.418\r\n\t\t\tL0,280.133z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidDoneAll = androidDoneAll;
\ No newline at end of file
diff --git a/dist/ionicons/androidDownload.js b/dist/ionicons/androidDownload.js
new file mode 100644
index 000000000..aa9d85270
--- /dev/null
+++ b/dist/ionicons/androidDownload.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidDownload = void 0;
+var androidDownload = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z M224,268v-76h64v76h68L256,368L156,268H224z"
+ },
+ "children": []
+ }]
+};
+exports.androidDownload = androidDownload;
\ No newline at end of file
diff --git a/dist/ionicons/androidDrafts.js b/dist/ionicons/androidDrafts.js
new file mode 100644
index 000000000..9681e3023
--- /dev/null
+++ b/dist/ionicons/androidDrafts.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidDrafts = void 0;
+var androidDrafts = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_18_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,201.667c0-14.933-7.469-28.803-20.271-36.266L256,64L52.271,165.401C40.531,172.864,32,186.734,32,201.667v203.666\r\n\t\t\t\tC32,428.802,51.197,448,74.666,448h362.668C460.803,448,480,428.802,480,405.333V201.667z M256,304L84.631,192L256,106.667\r\n\t\t\t\tL427.369,192L256,304z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,201.667c0-14.933-7.469-28.803-20.271-36.266L256,64L52.271,165.401C40.531,172.864,32,186.734,32,201.667v203.666\r\n\t\t\t\tC32,428.802,51.197,448,74.666,448h362.668C460.803,448,480,428.802,480,405.333V201.667z M256,304L84.631,192L256,106.667\r\n\t\t\t\tL427.369,192L256,304z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidDrafts = androidDrafts;
\ No newline at end of file
diff --git a/dist/ionicons/androidExit.js b/dist/ionicons/androidExit.js
new file mode 100644
index 000000000..fb1783fea
--- /dev/null
+++ b/dist/ionicons/androidExit.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidExit = void 0;
+var androidExit = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M215.469,332.802l29.863,29.864L352,256L245.332,149.333l-29.863,29.865l55.469,55.469H64v42.666h205.864L215.469,332.802z\r\n\t M405.334,64H106.666C83.198,64,64,83.198,64,106.666V192h42.666v-85.333h298.668v298.668H106.666V320H64v85.334\r\n\tC64,428.802,83.198,448,106.666,448h298.668C428.802,448,448,428.802,448,405.334V106.666C448,83.198,428.802,64,405.334,64z"
+ },
+ "children": []
+ }]
+};
+exports.androidExit = androidExit;
\ No newline at end of file
diff --git a/dist/ionicons/androidExpand.js b/dist/ionicons/androidExpand.js
new file mode 100644
index 000000000..efbf4cbdb
--- /dev/null
+++ b/dist/ionicons/androidExpand.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidExpand = void 0;
+var androidExpand = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "396.795,396.8 320,396.8 320,448 448,448 448,320 396.795,320 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "396.795,396.8 320,396.8 320,448 448,448 448,320 396.795,320 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "396.8,115.205 396.8,192 448,192 448,64 320,64 320,115.205 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "396.8,115.205 396.8,192 448,192 448,64 320,64 320,115.205 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "115.205,115.2 192,115.2 192,64 64,64 64,192 115.205,192 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "115.205,115.2 192,115.2 192,64 64,64 64,192 115.205,192 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "115.2,396.795 115.2,320 64,320 64,448 192,448 192,396.795 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "115.2,396.795 115.2,320 64,320 64,448 192,448 192,396.795 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidExpand = androidExpand;
\ No newline at end of file
diff --git a/dist/ionicons/androidFavorite.js b/dist/ionicons/androidFavorite.js
new file mode 100644
index 000000000..4ed60b090
--- /dev/null
+++ b/dist/ionicons/androidFavorite.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidFavorite = void 0;
+var androidFavorite = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,448l-30.164-27.211C118.718,322.442,48,258.61,48,179.095C48,114.221,97.918,64,162.4,64\r\n\t\tc36.399,0,70.717,16.742,93.6,43.947C278.882,80.742,313.199,64,349.6,64C414.082,64,464,114.221,464,179.095\r\n\t\tc0,79.516-70.719,143.348-177.836,241.694L256,448z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,448l-30.164-27.211C118.718,322.442,48,258.61,48,179.095C48,114.221,97.918,64,162.4,64\r\n\t\tc36.399,0,70.717,16.742,93.6,43.947C278.882,80.742,313.199,64,349.6,64C414.082,64,464,114.221,464,179.095\r\n\t\tc0,79.516-70.719,143.348-177.836,241.694L256,448z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidFavorite = androidFavorite;
\ No newline at end of file
diff --git a/dist/ionicons/androidFavoriteOutline.js b/dist/ionicons/androidFavoriteOutline.js
new file mode 100644
index 000000000..535e78154
--- /dev/null
+++ b/dist/ionicons/androidFavoriteOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidFavoriteOutline = void 0;
+var androidFavoriteOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M349.6,64c-36.4,0-70.718,16.742-93.6,43.947C233.117,80.742,198.8,64,162.4,64C97.918,64,48,114.221,48,179.095\r\n\tc0,79.516,70.718,143.348,177.836,241.694L256,448l30.164-27.211C393.281,322.442,464,258.61,464,179.095\r\n\tC464,114.221,414.082,64,349.6,64z M268.836,393.257l-4.219,3.873L256,404.903l-8.616-7.772l-4.214-3.869\r\n\tc-50.418-46.282-93.961-86.254-122.746-121.994C92.467,236.555,80,208.128,80,179.095c0-22.865,8.422-43.931,23.715-59.316\r\n\tC118.957,104.445,139.798,96,162.4,96c26.134,0,51.97,12.167,69.11,32.545L256,157.661l24.489-29.116\r\n\tC297.63,108.167,323.465,96,349.6,96c22.603,0,43.443,8.445,58.686,23.778C423.578,135.164,432,156.229,432,179.095\r\n\tc0,29.033-12.467,57.459-40.422,92.171C362.794,307.006,319.253,346.975,268.836,393.257z"
+ },
+ "children": []
+ }]
+};
+exports.androidFavoriteOutline = androidFavoriteOutline;
\ No newline at end of file
diff --git a/dist/ionicons/androidFilm.js b/dist/ionicons/androidFilm.js
new file mode 100644
index 000000000..2bad42e32
--- /dev/null
+++ b/dist/ionicons/androidFilm.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidFilm = void 0;
+var androidFilm = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#010101",
+ "d": "M376,64v42.667h-40V64H176v42.667h-40V64H96v384h40v-42.666h40V448h160v-42.666h40V448h40V64H376z\r\n\t M176,362.667h-40V320h40V362.667z M176,277.334h-40v-42.667h40V277.334z M176,192h-40v-42.666h40V192z M376,362.667h-40V320h40\r\n\tV362.667z M376,277.334h-40v-42.667h40V277.334z M376,192h-40v-42.666h40V192z"
+ },
+ "children": []
+ }]
+};
+exports.androidFilm = androidFilm;
\ No newline at end of file
diff --git a/dist/ionicons/androidFolder.js b/dist/ionicons/androidFolder.js
new file mode 100644
index 000000000..c9c8accd8
--- /dev/null
+++ b/dist/ionicons/androidFolder.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidFolder = void 0;
+var androidFolder = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_10_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M213.338,96H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\t\t\t\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144H256.006L213.338,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M213.338,96H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\t\t\t\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144H256.006L213.338,96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidFolder = androidFolder;
\ No newline at end of file
diff --git a/dist/ionicons/androidFolderOpen.js b/dist/ionicons/androidFolderOpen.js
new file mode 100644
index 000000000..74891d8a7
--- /dev/null
+++ b/dist/ionicons/androidFolderOpen.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidFolderOpen = void 0;
+var androidFolderOpen = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.334,144H256.006l-42.668-48H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144z M448,373.333\r\n\tc0,5.782-4.885,10.667-10.666,10.667H74.666C68.884,384,64,379.115,64,373.333V176h373.334c5.781,0,10.666,4.885,10.666,10.667\r\n\tV373.333z"
+ },
+ "children": []
+ }]
+};
+exports.androidFolderOpen = androidFolderOpen;
\ No newline at end of file
diff --git a/dist/ionicons/androidFunnel.js b/dist/ionicons/androidFunnel.js
new file mode 100644
index 000000000..2975878f5
--- /dev/null
+++ b/dist/ionicons/androidFunnel.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidFunnel = void 0;
+var androidFunnel = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M208,400h96v-47.994h-96V400z M32,112v47.994h448V112H32z M112,280.783h288v-49.555H112V280.783z"
+ },
+ "children": []
+ }]
+};
+exports.androidFunnel = androidFunnel;
\ No newline at end of file
diff --git a/dist/ionicons/androidGlobe.js b/dist/ionicons/androidGlobe.js
new file mode 100644
index 000000000..8bd257e76
--- /dev/null
+++ b/dist/ionicons/androidGlobe.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidGlobe = void 0;
+var androidGlobe = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.124,48,48,141.125,48,256c0,114.875,93.124,208,208,208c114.875,0,208-93.125,208-208\r\n\tC464,141.125,370.875,48,256,48z M234.451,432.999c-39.464-4.726-75.978-22.392-104.519-50.932\r\n\tC96.258,348.393,77.714,303.622,77.714,256c0-42.87,15.036-83.424,42.601-115.659c0.71,8.517,2.463,17.648,2.014,24.175\r\n\tc-1.64,23.795-3.988,38.687,9.94,58.762c5.426,7.819,6.759,19.028,9.4,28.078c2.583,8.854,12.902,13.498,20.019,18.953\r\n\tc14.359,11.009,28.096,23.805,43.322,33.494c10.049,6.395,16.326,9.576,13.383,21.839c-2.367,9.862-3.028,15.937-8.13,24.723\r\n\tc-1.557,2.681,5.877,19.918,8.351,22.392c7.498,7.497,14.938,14.375,23.111,21.125C254.396,404.351,240.494,417.954,234.451,432.999\r\n\tz M382.067,382.067c-25.633,25.633-57.699,42.486-92.556,49.081c4.94-12.216,13.736-23.07,21.895-29.362\r\n\tc7.097-5.476,15.986-16.009,19.693-24.352c3.704-8.332,8.611-15.555,13.577-23.217c7.065-10.899-17.419-27.336-25.353-30.781\r\n\tc-17.854-7.751-31.294-18.21-47.161-29.375c-11.305-7.954-34.257,4.154-47.02-1.417c-17.481-7.633-31.883-20.896-47.078-32.339\r\n\tc-15.68-11.809-14.922-25.576-14.922-42.997c12.282,0.453,29.754-3.399,37.908,6.478c2.573,3.117,11.42,17.042,17.342,12.094\r\n\tc4.838-4.043-3.585-20.249-5.212-24.059c-5.005-11.715,11.404-16.284,19.803-24.228c10.96-10.364,34.47-26.618,32.612-34.047\r\n\ts-23.524-28.477-36.249-25.193c-1.907,0.492-18.697,18.097-21.941,20.859c0.086-5.746,0.172-11.491,0.26-17.237\r\n\tc0.055-3.628-6.768-7.352-6.451-9.692c0.8-5.914,17.262-16.647,21.357-21.357c-2.869-1.793-12.659-10.202-15.622-8.968\r\n\tc-7.174,2.99-15.276,5.05-22.45,8.039c0-2.488-0.302-4.825-0.662-7.133c14.376-6.365,29.587-10.791,45.31-13.152l14.084,5.66\r\n\tl9.944,11.801l9.924,10.233l8.675,2.795l13.779-12.995L282,87.929v-8.339c27.25,3.958,52.984,14.124,75.522,29.8\r\n\tc-4.032,0.361-8.463,0.954-13.462,1.59c-2.065-1.22-4.714-1.774-6.965-2.623c6.531,14.042,13.343,27.89,20.264,41.746\r\n\tc7.393,14.801,23.793,30.677,26.673,46.301c3.394,18.416,1.039,35.144,2.896,56.811c1.788,20.865,23.524,44.572,23.524,44.572\r\n\ts10.037,3.419,18.384,2.228C421.055,330.798,405.103,359.029,382.067,382.067z"
+ },
+ "children": []
+ }]
+};
+exports.androidGlobe = androidGlobe;
\ No newline at end of file
diff --git a/dist/ionicons/androidHand.js b/dist/ionicons/androidHand.js
new file mode 100644
index 000000000..2d9f0eddc
--- /dev/null
+++ b/dist/ionicons/androidHand.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidHand = void 0;
+var androidHand = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M450.679,273.5c-14.585-14.577-36.054-15.89-50.639-1.312l-41.687,41.664c-10.852,10.836-23.93,10.859-31.564,1.852\r\n\tc-5.057-5.968-3.061-24.374-1.644-36.049l20.907-171.849c1.867-15.353-9.07-30.185-24.43-32.051\r\n\tc-15.358-1.867-29.322,9.939-31.191,25.289L267.37,236.021c-1.205,3.358-3.79,3.938-4.081-0.582L255.44,60\r\n\tc0-15.465-12.542-28-28.014-28c-15.473,0-28.015,12.535-28.015,28l-0.552,176.752c0.146,2.04-1.604,2.624-1.92,0.294L172.016,99.077\r\n\tc-2.75-15.219-17.323-26.203-32.548-23.453c-15.227,2.748-25.339,18.187-22.591,33.403l22.193,161.455\r\n\tc0.023,2.872-0.941,4.513-2.308,0.831l-33.109-88.517c-5.18-14.572-21.196-23.065-35.776-17.889\r\n\tc-14.579,5.177-22.201,22.061-17.023,36.631l58.042,189.625c0.303,1.046,0.624,2.085,0.953,3.118l0.121,0.39\r\n\tc0.011,0.031,0.025,0.058,0.035,0.088C126.079,444.233,172.57,480,227.427,480c35.116,0,71.591-12.378,99.357-33.672\r\n\tc0.001,0,0.003-0.002,0.003-0.002c29.99-18.051,126.071-121.347,126.071-121.347C467.445,310.402,465.266,288.08,450.679,273.5z"
+ },
+ "children": []
+ }]
+};
+exports.androidHand = androidHand;
\ No newline at end of file
diff --git a/dist/ionicons/androidHangout.js b/dist/ionicons/androidHangout.js
new file mode 100644
index 000000000..a47f30760
--- /dev/null
+++ b/dist/ionicons/androidHangout.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidHangout = void 0;
+var androidHangout = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c-97.321,0-176,77.114-176,172.487c0,95.38,78.679,172.487,176,172.487V464c100.425-47.689,176-152.195,176-243.513\r\n\tC432,125.114,353.321,48,256,48z M246,230.633L224.943,271H193.88l20.712-40H184v-61h62V230.633z M328,230.633L307.768,271h-31.063\r\n\tl20.704-40H266v-61h62V230.633z"
+ },
+ "children": []
+ }]
+};
+exports.androidHangout = androidHangout;
\ No newline at end of file
diff --git a/dist/ionicons/androidHappy.js b/dist/ionicons/androidHappy.js
new file mode 100644
index 000000000..103145516
--- /dev/null
+++ b/dist/ionicons/androidHappy.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidHappy = void 0;
+var androidHappy = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\tC422.404,347.518,347.518,422.4,256,422.4z M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2\r\n\tc-17.682,0-31.2,13.518-31.2,31.2S311.118,235.2,328.8,235.2z M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2\r\n\tc-17.683,0-31.201,13.518-31.201,31.2S165.518,235.2,183.2,235.2z M256,370.4c48.883,0,89.436-30.164,106.081-72.801H149.919\r\n\tC166.564,340.236,207.117,370.4,256,370.4z"
+ },
+ "children": []
+ }]
+};
+exports.androidHappy = androidHappy;
\ No newline at end of file
diff --git a/dist/ionicons/androidHome.js b/dist/ionicons/androidHome.js
new file mode 100644
index 000000000..240cc780a
--- /dev/null
+++ b/dist/ionicons/androidHome.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidHome = void 0;
+var androidHome = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "208,448 208,320 304,320 304,448 401.6,448 401.6,256 464,256 256,64 48,256 110.4,256 110.4,448 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "208,448 208,320 304,320 304,448 401.6,448 401.6,256 464,256 256,64 48,256 110.4,256 110.4,448 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidHome = androidHome;
\ No newline at end of file
diff --git a/dist/ionicons/androidImage.js b/dist/ionicons/androidImage.js
new file mode 100644
index 000000000..ae9c9540f
--- /dev/null
+++ b/dist/ionicons/androidImage.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidImage = void 0;
+var androidImage = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_8_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,405.333V106.667C448,83.198,428.802,64,405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333z M181.333,288l53.334,64l74.666-96l96,128\r\n\t\t\tH106.667L181.333,288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,405.333V106.667C448,83.198,428.802,64,405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333z M181.333,288l53.334,64l74.666-96l96,128\r\n\t\t\tH106.667L181.333,288z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidImage = androidImage;
\ No newline at end of file
diff --git a/dist/ionicons/androidLaptop.js b/dist/ionicons/androidLaptop.js
new file mode 100644
index 000000000..61af6d1fe
--- /dev/null
+++ b/dist/ionicons/androidLaptop.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidLaptop = void 0;
+var androidLaptop = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_29_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.334,416C460.803,416,480,396.803,480,373.334V106.668C480,83.199,460.803,64,437.334,64H74.666\r\n\t\t\tC51.197,64,32,83.199,32,106.668v266.666C32,396.803,51.197,416,74.666,416H0c0,23.469,64,32,96,32h320c32,0,96-8.531,96-32\r\n\t\t\tH437.334z M74.666,106.668h362.668v271.998H74.666V106.668z M256,434.666c-11.729,0-21.333-9.604-21.333-21.334\r\n\t\t\tc0-11.729,9.604-21.332,21.333-21.332s21.333,9.604,21.333,21.332C277.333,425.062,267.729,434.666,256,434.666z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.334,416C460.803,416,480,396.803,480,373.334V106.668C480,83.199,460.803,64,437.334,64H74.666\r\n\t\t\tC51.197,64,32,83.199,32,106.668v266.666C32,396.803,51.197,416,74.666,416H0c0,23.469,64,32,96,32h320c32,0,96-8.531,96-32\r\n\t\t\tH437.334z M74.666,106.668h362.668v271.998H74.666V106.668z M256,434.666c-11.729,0-21.333-9.604-21.333-21.334\r\n\t\t\tc0-11.729,9.604-21.332,21.333-21.332s21.333,9.604,21.333,21.332C277.333,425.062,267.729,434.666,256,434.666z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidLaptop = androidLaptop;
\ No newline at end of file
diff --git a/dist/ionicons/androidList.js b/dist/ionicons/androidList.js
new file mode 100644
index 000000000..5cea92636
--- /dev/null
+++ b/dist/ionicons/androidList.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidList = void 0;
+var androidList = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M408,64H104c-22.091,0-40,17.908-40,40v304c0,22.092,17.909,40,40,40h304c22.092,0,40-17.908,40-40V104\r\n\t\tC448,81.908,430.092,64,408,64z M304,368H144v-48h160V368z M368,280H144v-48h224V280z M368,192H144v-48h224V192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M408,64H104c-22.091,0-40,17.908-40,40v304c0,22.092,17.909,40,40,40h304c22.092,0,40-17.908,40-40V104\r\n\t\tC448,81.908,430.092,64,408,64z M304,368H144v-48h160V368z M368,280H144v-48h224V280z M368,192H144v-48h224V192z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidList = androidList;
\ No newline at end of file
diff --git a/dist/ionicons/androidLocate.js b/dist/ionicons/androidLocate.js
new file mode 100644
index 000000000..389006556
--- /dev/null
+++ b/dist/ionicons/androidLocate.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidLocate = void 0;
+var androidLocate = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,176c-44.004,0-80.001,36-80.001,80c0,44.004,35.997,80,80.001,80c44.005,0,79.999-35.996,79.999-80\r\n\t\t\tC335.999,212,300.005,176,256,176z M446.938,234.667c-9.605-88.531-81.074-160-169.605-169.599V32h-42.666v33.067\r\n\t\t\tc-88.531,9.599-160,81.068-169.604,169.599H32v42.667h33.062c9.604,88.531,81.072,160,169.604,169.604V480h42.666v-33.062\r\n\t\t\tc88.531-9.604,160-81.073,169.605-169.604H480v-42.667H446.938z M256,405.333c-82.137,0-149.334-67.198-149.334-149.333\r\n\t\t\tc0-82.136,67.197-149.333,149.334-149.333c82.135,0,149.332,67.198,149.332,149.333C405.332,338.135,338.135,405.333,256,405.333z\r\n\t\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,176c-44.004,0-80.001,36-80.001,80c0,44.004,35.997,80,80.001,80c44.005,0,79.999-35.996,79.999-80\r\n\t\t\tC335.999,212,300.005,176,256,176z M446.938,234.667c-9.605-88.531-81.074-160-169.605-169.599V32h-42.666v33.067\r\n\t\t\tc-88.531,9.599-160,81.068-169.604,169.599H32v42.667h33.062c9.604,88.531,81.072,160,169.604,169.604V480h42.666v-33.062\r\n\t\t\tc88.531-9.604,160-81.073,169.605-169.604H480v-42.667H446.938z M256,405.333c-82.137,0-149.334-67.198-149.334-149.333\r\n\t\t\tc0-82.136,67.197-149.333,149.334-149.333c82.135,0,149.332,67.198,149.332,149.333C405.332,338.135,338.135,405.333,256,405.333z\r\n\t\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidLocate = androidLocate;
\ No newline at end of file
diff --git a/dist/ionicons/androidLock.js b/dist/ionicons/androidLock.js
new file mode 100644
index 000000000..ac74381d9
--- /dev/null
+++ b/dist/ionicons/androidLock.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidLock = void 0;
+var androidLock = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146v40h-20c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\t\t\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\t\t\ts40,17.998,40,40S278.002,368,256,368z M318.002,186H193.998v-40c0-34.004,28.003-62.002,62.002-62.002\r\n\t\t\tc34.004,0,62.002,27.998,62.002,62.002V186z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146v40h-20c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\t\t\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\t\t\ts40,17.998,40,40S278.002,368,256,368z M318.002,186H193.998v-40c0-34.004,28.003-62.002,62.002-62.002\r\n\t\t\tc34.004,0,62.002,27.998,62.002,62.002V186z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidLock = androidLock;
\ No newline at end of file
diff --git a/dist/ionicons/androidMail.js b/dist/ionicons/androidMail.js
new file mode 100644
index 000000000..0078d48d7
--- /dev/null
+++ b/dist/ionicons/androidMail.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidMail = void 0;
+var androidMail = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_19_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.332,80H74.668C51.199,80,32,99.198,32,122.667v266.666C32,412.802,51.199,432,74.668,432h362.664\r\n\t\t\tC460.801,432,480,412.802,480,389.333V122.667C480,99.198,460.801,80,437.332,80z M432,170.667L256,288L80,170.667V128\r\n\t\t\tl176,117.333L432,128V170.667z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.332,80H74.668C51.199,80,32,99.198,32,122.667v266.666C32,412.802,51.199,432,74.668,432h362.664\r\n\t\t\tC460.801,432,480,412.802,480,389.333V122.667C480,99.198,460.801,80,437.332,80z M432,170.667L256,288L80,170.667V128\r\n\t\t\tl176,117.333L432,128V170.667z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidMail = androidMail;
\ No newline at end of file
diff --git a/dist/ionicons/androidMap.js b/dist/ionicons/androidMap.js
new file mode 100644
index 000000000..10cc53fea
--- /dev/null
+++ b/dist/ionicons/androidMap.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidMap = void 0;
+var androidMap = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_34_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.333,64c-2.176,0-4.396,1.369-9.176,3.207S320,108.802,320,108.802L192,64L71.469,104.531\r\n\t\t\t\tC67.197,105.604,64,109.864,64,115.197v322.136C64,443.729,68.271,448,74.666,448c1.828,0,6.505-2.33,9.087-3.319\r\n\t\t\t\tS192,403.197,192,403.197L320,448l120.531-40.531c4.271-1.073,7.469-5.334,7.469-10.667V74.666C448,68.271,443.729,64,437.333,64\r\n\t\t\t\tz M320,405.333l-128-44.802V106.666l128,44.803V405.333z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.333,64c-2.176,0-4.396,1.369-9.176,3.207S320,108.802,320,108.802L192,64L71.469,104.531\r\n\t\t\t\tC67.197,105.604,64,109.864,64,115.197v322.136C64,443.729,68.271,448,74.666,448c1.828,0,6.505-2.33,9.087-3.319\r\n\t\t\t\tS192,403.197,192,403.197L320,448l120.531-40.531c4.271-1.073,7.469-5.334,7.469-10.667V74.666C448,68.271,443.729,64,437.333,64\r\n\t\t\t\tz M320,405.333l-128-44.802V106.666l128,44.803V405.333z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidMap = androidMap;
\ No newline at end of file
diff --git a/dist/ionicons/androidMenu.js b/dist/ionicons/androidMenu.js
new file mode 100644
index 000000000..1f6709d42
--- /dev/null
+++ b/dist/ionicons/androidMenu.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidMenu = void 0;
+var androidMenu = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_3_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,384h384v-42.666H64V384z M64,277.334h384v-42.667H64V277.334z M64,128v42.665h384V128H64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,384h384v-42.666H64V384z M64,277.334h384v-42.667H64V277.334z M64,128v42.665h384V128H64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidMenu = androidMenu;
\ No newline at end of file
diff --git a/dist/ionicons/androidMicrophone.js b/dist/ionicons/androidMicrophone.js
new file mode 100644
index 000000000..11b8816f5
--- /dev/null
+++ b/dist/ionicons/androidMicrophone.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidMicrophone = void 0;
+var androidMicrophone = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,320c37.712,0,68.571-30.924,68.571-68.714V100.714C324.571,62.924,293.712,32,256,32s-68.571,30.924-68.571,68.714\r\n\t\tv150.572C187.429,289.076,218.288,320,256,320z M377.139,244.548c0,68.714-58.282,116.815-121.139,116.815\r\n\t\ts-121.139-48.102-121.139-116.815H96c0,77.873,61.719,143.153,137.144,153.465V480h45.713v-81.987\r\n\t\tC354.281,386.561,416,322.421,416,244.548H377.139z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,320c37.712,0,68.571-30.924,68.571-68.714V100.714C324.571,62.924,293.712,32,256,32s-68.571,30.924-68.571,68.714\r\n\t\tv150.572C187.429,289.076,218.288,320,256,320z M377.139,244.548c0,68.714-58.282,116.815-121.139,116.815\r\n\t\ts-121.139-48.102-121.139-116.815H96c0,77.873,61.719,143.153,137.144,153.465V480h45.713v-81.987\r\n\t\tC354.281,386.561,416,322.421,416,244.548H377.139z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidMicrophone = androidMicrophone;
\ No newline at end of file
diff --git a/dist/ionicons/androidMicrophoneOff.js b/dist/ionicons/androidMicrophoneOff.js
new file mode 100644
index 000000000..5bf8a2c29
--- /dev/null
+++ b/dist/ionicons/androidMicrophoneOff.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidMicrophoneOff = void 0;
+var androidMicrophoneOff = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M367.951,354.654l-26.616-26.562l-9.568-9.548l-4.698-4.706L187,174.041v0.346L76.112,63.531L51.921,87.572L187,222.47\r\n\t\tv28.816c0,37.79,31.121,68.714,68.91,68.714c8.61,0,16.952-1.62,24.565-4.545l32.389,32.274\r\n\t\tc-17.333,8.793-36.812,13.86-56.782,13.86c-62.986,0-121.365-48.59-121.365-116.59H95.773C95.773,322,158,387.701,233,398.013V480\r\n\t\th46v-81.987c22-3.352,43.066-11.222,61.627-22.622l95.278,95.078l24.033-24l-33.847-33.785l-58.216-57.959l58.224,57.959\r\n\t\tL367.951,354.654z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M367.951,354.654l-26.616-26.562l-9.568-9.548l-4.698-4.706L187,174.041v0.346L76.112,63.531L51.921,87.572L187,222.47\r\n\t\tv28.816c0,37.79,31.121,68.714,68.91,68.714c8.61,0,16.952-1.62,24.565-4.545l32.389,32.274\r\n\t\tc-17.333,8.793-36.812,13.86-56.782,13.86c-62.986,0-121.365-48.59-121.365-116.59H95.773C95.773,322,158,387.701,233,398.013V480\r\n\t\th46v-81.987c22-3.352,43.066-11.222,61.627-22.622l95.278,95.078l24.033-24l-33.847-33.785l-58.216-57.959l58.224,57.959\r\n\t\tL367.951,354.654z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M325,251.286V100.714C325,62.924,293.791,32,256,32s-69,30.924-69,68.714v25.244l137.109,136.968\r\n\t\tC324.779,259.135,325,255.247,325,251.286z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M325,251.286V100.714C325,62.924,293.791,32,256,32s-69,30.924-69,68.714v25.244l137.109,136.968\r\n\t\tC324.779,259.135,325,255.247,325,251.286z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M416.439,245h-38.941c0,20.496-5.498,39.676-14.931,56.197l27.572,27.516C406.662,304.603,416.439,275.926,416.439,245z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416.439,245h-38.941c0,20.496-5.498,39.676-14.931,56.197l27.572,27.516C406.662,304.603,416.439,275.926,416.439,245z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "459.999,446.427 426.102,412.684 459.957,446.469 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "459.999,446.427 426.102,412.684 459.957,446.469 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidMicrophoneOff = androidMicrophoneOff;
\ No newline at end of file
diff --git a/dist/ionicons/androidMoreHorizontal.js b/dist/ionicons/androidMoreHorizontal.js
new file mode 100644
index 000000000..dc65f610e
--- /dev/null
+++ b/dist/ionicons/androidMoreHorizontal.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidMoreHorizontal = void 0;
+var androidMoreHorizontal = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M136,216c-22.002,0-40,17.998-40,40s17.998,40,40,40s40-17.998,40-40S158.002,216,136,216z M376,216\r\n\tc-22.002,0-40,17.998-40,40s17.998,40,40,40s40-17.998,40-40S398.002,216,376,216z M256,216c-22.002,0-40,17.998-40,40\r\n\ts17.998,40,40,40s40-17.998,40-40S278.002,216,256,216z"
+ },
+ "children": []
+ }]
+};
+exports.androidMoreHorizontal = androidMoreHorizontal;
\ No newline at end of file
diff --git a/dist/ionicons/androidMoreVertical.js b/dist/ionicons/androidMoreVertical.js
new file mode 100644
index 000000000..222af2c55
--- /dev/null
+++ b/dist/ionicons/androidMoreVertical.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidMoreVertical = void 0;
+var androidMoreVertical = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M296,136c0-22.002-17.998-40-40-40s-40,17.998-40,40s17.998,40,40,40S296,158.002,296,136z M296,376\r\n\tc0-22.002-17.998-40-40-40s-40,17.998-40,40s17.998,40,40,40S296,398.002,296,376z M296,256c0-22.002-17.998-40-40-40\r\n\ts-40,17.998-40,40s17.998,40,40,40S296,278.002,296,256z"
+ },
+ "children": []
+ }]
+};
+exports.androidMoreVertical = androidMoreVertical;
\ No newline at end of file
diff --git a/dist/ionicons/androidNavigate.js b/dist/ionicons/androidNavigate.js
new file mode 100644
index 000000000..fba25714b
--- /dev/null
+++ b/dist/ionicons/androidNavigate.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidNavigate = void 0;
+var androidNavigate = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_5_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,64 96,433.062 110.938,448 256,384 401.062,448 416,433.062 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,64 96,433.062 110.938,448 256,384 401.062,448 416,433.062 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidNavigate = androidNavigate;
\ No newline at end of file
diff --git a/dist/ionicons/androidNotifications.js b/dist/ionicons/androidNotifications.js
new file mode 100644
index 000000000..4a3b8eb1a
--- /dev/null
+++ b/dist/ionicons/androidNotifications.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidNotifications = void 0;
+var androidNotifications = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,464c22.779,0,41.411-18.719,41.411-41.6h-82.823C214.588,445.281,233.221,464,256,464z M390.589,339.2V224.8\r\n\tc0-63.44-44.516-117.518-103.53-131.041V79.2c0-17.682-13.457-31.2-31.059-31.2s-31.059,13.518-31.059,31.2v14.559\r\n\tc-59.015,13.523-103.53,67.601-103.53,131.041v114.4L80,380.8v20.8h352v-20.8L390.589,339.2z"
+ },
+ "children": []
+ }]
+};
+exports.androidNotifications = androidNotifications;
\ No newline at end of file
diff --git a/dist/ionicons/androidNotificationsNone.js b/dist/ionicons/androidNotificationsNone.js
new file mode 100644
index 000000000..48eb2a8de
--- /dev/null
+++ b/dist/ionicons/androidNotificationsNone.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidNotificationsNone = void 0;
+var androidNotificationsNone = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M257,120.471c7.083,0,23.911,4.479,23.911,4.479c45.589,10.447,77.678,52.439,77.678,99.85v114.4v13.212l9.321,9.364\r\n\tl7.788,7.823H136.302l7.788-7.823l9.321-9.364V339.2V224.8c0-47.41,32.089-89.403,77.678-99.85c0,0,18.043-4.479,23.911-4.479\r\n\t M256,48c-17.602,0-31.059,13.518-31.059,31.2v14.559c-59.015,13.523-103.53,67.601-103.53,131.041v114.4L80,380.8v20.8h352v-20.8\r\n\tl-41.411-41.6V224.8c0-63.44-44.516-117.518-103.53-131.041V79.2C287.059,61.518,273.602,48,256,48L256,48z M297.411,422.4h-82.823\r\n\tc0,22.881,18.633,41.6,41.412,41.6S297.411,445.281,297.411,422.4L297.411,422.4z"
+ },
+ "children": []
+ }]
+};
+exports.androidNotificationsNone = androidNotificationsNone;
\ No newline at end of file
diff --git a/dist/ionicons/androidNotificationsOff.js b/dist/ionicons/androidNotificationsOff.js
new file mode 100644
index 000000000..0899ace95
--- /dev/null
+++ b/dist/ionicons/androidNotificationsOff.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidNotificationsOff = void 0;
+var androidNotificationsOff = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,463.656c22.814,0,41.475-18.656,41.475-41.656h-82.95C214.525,445,233.186,463.656,256,463.656z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,463.656c22.814,0,41.475-18.656,41.475-41.656h-82.95C214.525,445,233.186,463.656,256,463.656z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M131.083,107.172l0.053,0.074L98.09,74.277L74.004,98.383l63.042,63.153C126.888,180.521,121,202.196,121,225.07v114.555\r\n\t\tl-41,41.656V402h297.743l36.182,36.33l24.079-24.301L425.9,402h0.316L131.083,107.172z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M131.083,107.172l0.053,0.074L98.09,74.277L74.004,98.383l63.042,63.153C126.888,180.521,121,202.196,121,225.07v114.555\r\n\t\tl-41,41.656V402h297.743l36.182,36.33l24.079-24.301L425.9,402h0.316L131.083,107.172z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M391,225.07c0-63.526-45-117.677-104-131.218V79.274c0-17.706-13.371-31.243-31-31.243c-17.628,0-31,13.537-31,31.243\r\n\t\tv14.578c-15,3.438-29.048,9.501-41.75,17.663L391,319.355V225.07z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M391,225.07c0-63.526-45-117.677-104-131.218V79.274c0-17.706-13.371-31.243-31-31.243c-17.628,0-31,13.537-31,31.243\r\n\t\tv14.578c-15,3.438-29.048,9.501-41.75,17.663L391,319.355V225.07z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidNotificationsOff = androidNotificationsOff;
\ No newline at end of file
diff --git a/dist/ionicons/androidOpen.js b/dist/ionicons/androidOpen.js
new file mode 100644
index 000000000..c5e4c911e
--- /dev/null
+++ b/dist/ionicons/androidOpen.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidOpen = void 0;
+var androidOpen = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.34,405.332H106.66V106.668H240V64H106.66C83.191,64,64,83.197,64,106.668v298.664C64,428.803,83.191,448,106.66,448\r\n\th298.68c23.469,0,42.66-19.197,42.66-42.668V272h-42.66V405.332z M288,64v42.668h87.474L159.999,322.133l29.866,29.866\r\n\tl215.476-215.47V224H448V64H288z"
+ },
+ "children": []
+ }]
+};
+exports.androidOpen = androidOpen;
\ No newline at end of file
diff --git a/dist/ionicons/androidOptions.js b/dist/ionicons/androidOptions.js
new file mode 100644
index 000000000..07be31c2e
--- /dev/null
+++ b/dist/ionicons/androidOptions.js
@@ -0,0 +1,183 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidOptions = void 0;
+var androidOptions = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "384",
+ "width": "272",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "384",
+ "width": "272",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "400",
+ "y": "384",
+ "width": "80",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "400",
+ "y": "384",
+ "width": "80",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384,447.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V447.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,447.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V447.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "240",
+ "width": "80",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "240",
+ "width": "80",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "240",
+ "width": "272",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "240",
+ "width": "272",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M192,303.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V303.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192,303.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V303.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "96",
+ "width": "272",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "96",
+ "width": "272",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "400",
+ "y": "96",
+ "width": "80",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "400",
+ "y": "96",
+ "width": "80",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384,159.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V159.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,159.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V159.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidOptions = androidOptions;
\ No newline at end of file
diff --git a/dist/ionicons/androidPeople.js b/dist/ionicons/androidPeople.js
new file mode 100644
index 000000000..02c791d4d
--- /dev/null
+++ b/dist/ionicons/androidPeople.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidPeople = void 0;
+var androidPeople = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M337.454,232c33.599,0,61.092-27.002,61.092-60c0-32.997-27.493-60-61.092-60s-61.09,27.003-61.09,60\r\n\tC276.364,204.998,303.855,232,337.454,232z M174.546,232c33.599,0,61.09-27.002,61.09-60c0-32.997-27.491-60-61.09-60\r\n\ts-61.092,27.003-61.092,60C113.454,204.998,140.947,232,174.546,232z M174.546,276C126.688,276,32,298.998,32,346v54h288v-54\r\n\tC320,298.998,222.401,276,174.546,276z M337.454,287.003c-6.105,0-10.325,0-17.454,0.997c23.426,17.002,32,28,32,58v54h128v-54\r\n\tC480,298.998,385.312,287.003,337.454,287.003z"
+ },
+ "children": []
+ }]
+};
+exports.androidPeople = androidPeople;
\ No newline at end of file
diff --git a/dist/ionicons/androidPerson.js b/dist/ionicons/androidPerson.js
new file mode 100644
index 000000000..6d22635b3
--- /dev/null
+++ b/dist/ionicons/androidPerson.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidPerson = void 0;
+var androidPerson = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S203.195,256,256,256z M256,304\r\n\t\tc-63.598,0-192,32.402-192,96v48h384v-48C448,336.402,319.598,304,256,304z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S203.195,256,256,256z M256,304\r\n\t\tc-63.598,0-192,32.402-192,96v48h384v-48C448,336.402,319.598,304,256,304z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidPerson = androidPerson;
\ No newline at end of file
diff --git a/dist/ionicons/androidPersonAdd.js b/dist/ionicons/androidPersonAdd.js
new file mode 100644
index 000000000..4c405ebee
--- /dev/null
+++ b/dist/ionicons/androidPersonAdd.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidPersonAdd = void 0;
+var androidPersonAdd = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M304,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S251.195,256,304,256z M304,304\r\n\t\t\tc-63.598,0-192,32.402-192,96v48h384v-48C496,336.402,367.598,304,304,304z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M304,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S251.195,256,304,256z M304,304\r\n\t\t\tc-63.598,0-192,32.402-192,96v48h384v-48C496,336.402,367.598,304,304,304z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {
+ "id": "Icon_16_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_16_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112,224v-64H80v64H16v32h64v64h32v-64h64v-32H112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112,224v-64H80v64H16v32h64v64h32v-64h64v-32H112z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidPersonAdd = androidPersonAdd;
\ No newline at end of file
diff --git a/dist/ionicons/androidPhoneLandscape.js b/dist/ionicons/androidPhoneLandscape.js
new file mode 100644
index 000000000..7a4149ed1
--- /dev/null
+++ b/dist/ionicons/androidPhoneLandscape.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidPhoneLandscape = void 0;
+var androidPhoneLandscape = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_6_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,358.856V153.143C480,130.512,461.674,112,439.272,112H72.728C50.326,112,32,130.512,32,153.143v205.713\r\n\t\t\tC32,381.488,50.326,400,72.728,400h366.545C461.674,400,480,381.488,480,358.856z M112,364V148h288v216H112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,358.856V153.143C480,130.512,461.674,112,439.272,112H72.728C50.326,112,32,130.512,32,153.143v205.713\r\n\t\t\tC32,381.488,50.326,400,72.728,400h366.545C461.674,400,480,381.488,480,358.856z M112,364V148h288v216H112z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidPhoneLandscape = androidPhoneLandscape;
\ No newline at end of file
diff --git a/dist/ionicons/androidPhonePortrait.js b/dist/ionicons/androidPhonePortrait.js
new file mode 100644
index 000000000..07231419d
--- /dev/null
+++ b/dist/ionicons/androidPhonePortrait.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidPhonePortrait = void 0;
+var androidPhonePortrait = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_6_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M358.856,32H153.143C130.512,32,112,50.326,112,72.728v366.545C112,461.674,130.512,480,153.143,480h205.713\r\n\t\t\tC381.488,480,400,461.674,400,439.272V72.728C400,50.326,381.488,32,358.856,32z M364,400H148V112h216V400z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M358.856,32H153.143C130.512,32,112,50.326,112,72.728v366.545C112,461.674,130.512,480,153.143,480h205.713\r\n\t\t\tC381.488,480,400,461.674,400,439.272V72.728C400,50.326,381.488,32,358.856,32z M364,400H148V112h216V400z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidPhonePortrait = androidPhonePortrait;
\ No newline at end of file
diff --git a/dist/ionicons/androidPin.js b/dist/ionicons/androidPin.js
new file mode 100644
index 000000000..ace884da4
--- /dev/null
+++ b/dist/ionicons/androidPin.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidPin = void 0;
+var androidPin = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-88.004,0-160,70.557-160,156.801C96,306.4,256,480,256,480s160-173.6,160-291.199C416,102.557,344.004,32,256,32z\r\n\t\t M256,244.801c-31.996,0-57.144-24.645-57.144-56c0-31.357,25.147-56,57.144-56s57.144,24.643,57.144,56\r\n\t\tC313.144,220.156,287.996,244.801,256,244.801z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-88.004,0-160,70.557-160,156.801C96,306.4,256,480,256,480s160-173.6,160-291.199C416,102.557,344.004,32,256,32z\r\n\t\t M256,244.801c-31.996,0-57.144-24.645-57.144-56c0-31.357,25.147-56,57.144-56s57.144,24.643,57.144,56\r\n\t\tC313.144,220.156,287.996,244.801,256,244.801z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidPin = androidPin;
\ No newline at end of file
diff --git a/dist/ionicons/androidPlane.js b/dist/ionicons/androidPlane.js
new file mode 100644
index 000000000..ba2167b53
--- /dev/null
+++ b/dist/ionicons/androidPlane.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidPlane = void 0;
+var androidPlane = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_36_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,336v-40L288,192V79.2c0-17.683-14.82-31.2-32-31.2c-17.179,0-32,13.518-32,31.2V192L64,296v40l160-48v113.602\r\n\t\t\tl-48,31.199V464l80-16l80,16v-31.199l-48-31.199V288L448,336z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,336v-40L288,192V79.2c0-17.683-14.82-31.2-32-31.2c-17.179,0-32,13.518-32,31.2V192L64,296v40l160-48v113.602\r\n\t\t\tl-48,31.199V464l80-16l80,16v-31.199l-48-31.199V288L448,336z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidPlane = androidPlane;
\ No newline at end of file
diff --git a/dist/ionicons/androidPlaystore.js b/dist/ionicons/androidPlaystore.js
new file mode 100644
index 000000000..9945227b1
--- /dev/null
+++ b/dist/ionicons/androidPlaystore.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidPlaystore = void 0;
+var androidPlaystore = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,152H360c0-57-46.562-103.859-104-103.859C198.562,48.141,152,95,152,152H48C66.688,368,61,464,61,464h389.999\r\n\t\tC450.998,464,445.311,366,464,152z M256,74.105c43.008,0,77.999,34.895,77.999,77.895H178C178,109,212.991,74.105,256,74.105z\r\n\t\t M204,397.64V228.867l142.999,84.387L204,397.64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,152H360c0-57-46.562-103.859-104-103.859C198.562,48.141,152,95,152,152H48C66.688,368,61,464,61,464h389.999\r\n\t\tC450.998,464,445.311,366,464,152z M256,74.105c43.008,0,77.999,34.895,77.999,77.895H178C178,109,212.991,74.105,256,74.105z\r\n\t\t M204,397.64V228.867l142.999,84.387L204,397.64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidPlaystore = androidPlaystore;
\ No newline at end of file
diff --git a/dist/ionicons/androidPrint.js b/dist/ionicons/androidPrint.js
new file mode 100644
index 000000000..edf046374
--- /dev/null
+++ b/dist/ionicons/androidPrint.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidPrint = void 0;
+var androidPrint = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.95,160h-287.9C76.824,160,48,188.803,48,224v138.667h79.899V448h256.201v-85.333H464V224\r\n\t\tC464,188.803,435.175,160,399.95,160z M352,416H160V288h192V416z M384.101,64H127.899v80h256.201V64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.95,160h-287.9C76.824,160,48,188.803,48,224v138.667h79.899V448h256.201v-85.333H464V224\r\n\t\tC464,188.803,435.175,160,399.95,160z M352,416H160V288h192V416z M384.101,64H127.899v80h256.201V64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidPrint = androidPrint;
\ No newline at end of file
diff --git a/dist/ionicons/androidRadioButtonOff.js b/dist/ionicons/androidRadioButtonOff.js
new file mode 100644
index 000000000..98481dab4
--- /dev/null
+++ b/dist/ionicons/androidRadioButtonOff.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidRadioButtonOff = void 0;
+var androidRadioButtonOff = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_20_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.399\r\n\t\t\tc-91.518,0-166.399-74.882-166.399-166.399S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.399,256,422.399z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.399\r\n\t\t\tc-91.518,0-166.399-74.882-166.399-166.399S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.399,256,422.399z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidRadioButtonOff = androidRadioButtonOff;
\ No newline at end of file
diff --git a/dist/ionicons/androidRadioButtonOn.js b/dist/ionicons/androidRadioButtonOn.js
new file mode 100644
index 000000000..2d1d556d8
--- /dev/null
+++ b/dist/ionicons/androidRadioButtonOn.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidRadioButtonOn = void 0;
+var androidRadioButtonOn = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_21_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,152c-57.2,0-104,46.8-104,104s46.8,104,104,104s104-46.8,104-104S313.2,152,256,152z M256,48\r\n\t\t\tC141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.4\r\n\t\t\tc-91.518,0-166.4-74.883-166.4-166.4S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.4,256,422.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,152c-57.2,0-104,46.8-104,104s46.8,104,104,104s104-46.8,104-104S313.2,152,256,152z M256,48\r\n\t\t\tC141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.4\r\n\t\t\tc-91.518,0-166.4-74.883-166.4-166.4S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.4,256,422.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidRadioButtonOn = androidRadioButtonOn;
\ No newline at end of file
diff --git a/dist/ionicons/androidRefresh.js b/dist/ionicons/androidRefresh.js
new file mode 100644
index 000000000..a2e816a93
--- /dev/null
+++ b/dist/ionicons/androidRefresh.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidRefresh = void 0;
+var androidRefresh = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,388c-72.597,0-132-59.405-132-132c0-72.601,59.403-132,132-132c36.3,0,69.299,15.4,92.406,39.601L278,234h154V80\r\n\t\tl-51.698,51.702C348.406,99.798,304.406,80,256,80c-96.797,0-176,79.203-176,176s78.094,176,176,176\r\n\t\tc81.045,0,148.287-54.134,169.401-128H378.85C360.105,353.561,311.712,388,256,388z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,388c-72.597,0-132-59.405-132-132c0-72.601,59.403-132,132-132c36.3,0,69.299,15.4,92.406,39.601L278,234h154V80\r\n\t\tl-51.698,51.702C348.406,99.798,304.406,80,256,80c-96.797,0-176,79.203-176,176s78.094,176,176,176\r\n\t\tc81.045,0,148.287-54.134,169.401-128H378.85C360.105,353.561,311.712,388,256,388z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidRefresh = androidRefresh;
\ No newline at end of file
diff --git a/dist/ionicons/androidRemove.js b/dist/ionicons/androidRemove.js
new file mode 100644
index 000000000..d4182d07e
--- /dev/null
+++ b/dist/ionicons/androidRemove.js
@@ -0,0 +1,20 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidRemove = void 0;
+var androidRemove = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "235",
+ "width": "320",
+ "height": "42"
+ },
+ "children": []
+ }]
+};
+exports.androidRemove = androidRemove;
\ No newline at end of file
diff --git a/dist/ionicons/androidRemoveCircle.js b/dist/ionicons/androidRemoveCircle.js
new file mode 100644
index 000000000..0b252fcba
--- /dev/null
+++ b/dist/ionicons/androidRemoveCircle.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidRemoveCircle = void 0;
+var androidRemoveCircle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277H149v-42h214V277\r\n\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277H149v-42h214V277\r\n\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidRemoveCircle = androidRemoveCircle;
\ No newline at end of file
diff --git a/dist/ionicons/androidRestaurant.js b/dist/ionicons/androidRestaurant.js
new file mode 100644
index 000000000..8973cf820
--- /dev/null
+++ b/dist/ionicons/androidRestaurant.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidRestaurant = void 0;
+var androidRestaurant = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_38_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M164.852,279.939l61.834-60.251L73.72,71.706c-33.626,32.764-33.626,86.677,0,119.44L164.852,279.939z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M164.852,279.939l61.834-60.251L73.72,71.706c-33.626,32.764-33.626,86.677,0,119.44L164.852,279.939z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M312.389,241.88c33.636,14.802,80.283,4.232,113.91-29.593c41.222-40.165,49.909-98.303,17.363-128.96\r\n\t\t\t\tc-31.465-31.71-91.131-23.245-132.354,16.921c-34.718,33.825-45.566,79.276-30.374,110.986\r\n\t\t\t\tC233.195,258.802,69.382,418.407,69.382,418.407L99.759,448l149.71-145.866L399.177,448l30.374-29.593L279.842,272.538\r\n\t\t\t\tL312.389,241.88z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M312.389,241.88c33.636,14.802,80.283,4.232,113.91-29.593c41.222-40.165,49.909-98.303,17.363-128.96\r\n\t\t\t\tc-31.465-31.71-91.131-23.245-132.354,16.921c-34.718,33.825-45.566,79.276-30.374,110.986\r\n\t\t\t\tC233.195,258.802,69.382,418.407,69.382,418.407L99.759,448l149.71-145.866L399.177,448l30.374-29.593L279.842,272.538\r\n\t\t\t\tL312.389,241.88z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidRestaurant = androidRestaurant;
\ No newline at end of file
diff --git a/dist/ionicons/androidSad.js b/dist/ionicons/androidSad.js
new file mode 100644
index 000000000..8f6d9da45
--- /dev/null
+++ b/dist/ionicons/androidSad.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidSad = void 0;
+var androidSad = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,288c-45.443,0-83.675,26.076-102.205,64h204.41C339.675,314.076,301.443,288,256,288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,288c-45.443,0-83.675,26.076-102.205,64h204.41C339.675,314.076,301.443,288,256,288z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\t\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\t\tC422.404,347.518,347.518,422.4,256,422.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\t\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\t\tC422.404,347.518,347.518,422.4,256,422.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2c-17.682,0-31.2,13.518-31.2,31.2\r\n\t\tS311.118,235.2,328.8,235.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2c-17.682,0-31.2,13.518-31.2,31.2\r\n\t\tS311.118,235.2,328.8,235.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2c-17.683,0-31.201,13.518-31.201,31.2\r\n\t\tS165.518,235.2,183.2,235.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2c-17.683,0-31.201,13.518-31.201,31.2\r\n\t\tS165.518,235.2,183.2,235.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidSad = androidSad;
\ No newline at end of file
diff --git a/dist/ionicons/androidSearch.js b/dist/ionicons/androidSearch.js
new file mode 100644
index 000000000..024d36354
--- /dev/null
+++ b/dist/ionicons/androidSearch.js
@@ -0,0 +1,53 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidSearch = void 0;
+var androidSearch = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_4_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257\r\n\t\t\t\t\tC347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628\r\n\t\t\t\t\tc35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z M206.225,305.372\r\n\t\t\t\t\tc-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742\r\n\t\t\t\t\tC304.687,261.485,260.925,305.372,206.225,305.372z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257\r\n\t\t\t\t\tC347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628\r\n\t\t\t\t\tc35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z M206.225,305.372\r\n\t\t\t\t\tc-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742\r\n\t\t\t\t\tC304.687,261.485,260.925,305.372,206.225,305.372z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidSearch = androidSearch;
\ No newline at end of file
diff --git a/dist/ionicons/androidSend.js b/dist/ionicons/androidSend.js
new file mode 100644
index 000000000..39615ca45
--- /dev/null
+++ b/dist/ionicons/androidSend.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidSend = void 0;
+var androidSend = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "48,448 464,256 48,64 48,213.333 346,256 48,298.667 "
+ },
+ "children": []
+ }]
+};
+exports.androidSend = androidSend;
\ No newline at end of file
diff --git a/dist/ionicons/androidSettings.js b/dist/ionicons/androidSettings.js
new file mode 100644
index 000000000..84266c1a4
--- /dev/null
+++ b/dist/ionicons/androidSettings.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidSettings = void 0;
+var androidSettings = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M413.967,276.8c1.06-6.235,1.06-13.518,1.06-20.8s-1.06-13.518-1.06-20.8l44.667-34.318\r\n\t\tc4.26-3.118,5.319-8.317,2.13-13.518L418.215,115.6c-2.129-4.164-8.507-6.235-12.767-4.164l-53.186,20.801\r\n\t\tc-10.638-8.318-23.394-15.601-36.16-20.801l-7.448-55.117c-1.06-4.154-5.319-8.318-10.638-8.318h-85.098\r\n\t\tc-5.318,0-9.577,4.164-10.637,8.318l-8.508,55.117c-12.767,5.2-24.464,12.482-36.171,20.801l-53.186-20.801\r\n\t\tc-5.319-2.071-10.638,0-12.767,4.164l-42.549,71.765c-2.119,4.153-1.061,10.399,2.129,13.518L96.97,235.2\r\n\t\tc0,7.282-1.06,13.518-1.06,20.8s1.06,13.518,1.06,20.8l-44.668,34.318c-4.26,3.118-5.318,8.317-2.13,13.518L92.721,396.4\r\n\t\tc2.13,4.164,8.508,6.235,12.767,4.164l53.187-20.801c10.637,8.318,23.394,15.601,36.16,20.801l8.508,55.117\r\n\t\tc1.069,5.2,5.318,8.318,10.637,8.318h85.098c5.319,0,9.578-4.164,10.638-8.318l8.518-55.117c12.757-5.2,24.464-12.482,36.16-20.801\r\n\t\tl53.187,20.801c5.318,2.071,10.637,0,12.767-4.164l42.549-71.765c2.129-4.153,1.06-10.399-2.13-13.518L413.967,276.8z\r\n\t\t M255.468,328.8c-41.489,0-74.46-32.235-74.46-72.8s32.971-72.8,74.46-72.8s74.461,32.235,74.461,72.8S296.957,328.8,255.468,328.8\r\n\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M413.967,276.8c1.06-6.235,1.06-13.518,1.06-20.8s-1.06-13.518-1.06-20.8l44.667-34.318\r\n\t\tc4.26-3.118,5.319-8.317,2.13-13.518L418.215,115.6c-2.129-4.164-8.507-6.235-12.767-4.164l-53.186,20.801\r\n\t\tc-10.638-8.318-23.394-15.601-36.16-20.801l-7.448-55.117c-1.06-4.154-5.319-8.318-10.638-8.318h-85.098\r\n\t\tc-5.318,0-9.577,4.164-10.637,8.318l-8.508,55.117c-12.767,5.2-24.464,12.482-36.171,20.801l-53.186-20.801\r\n\t\tc-5.319-2.071-10.638,0-12.767,4.164l-42.549,71.765c-2.119,4.153-1.061,10.399,2.129,13.518L96.97,235.2\r\n\t\tc0,7.282-1.06,13.518-1.06,20.8s1.06,13.518,1.06,20.8l-44.668,34.318c-4.26,3.118-5.318,8.317-2.13,13.518L92.721,396.4\r\n\t\tc2.13,4.164,8.508,6.235,12.767,4.164l53.187-20.801c10.637,8.318,23.394,15.601,36.16,20.801l8.508,55.117\r\n\t\tc1.069,5.2,5.318,8.318,10.637,8.318h85.098c5.319,0,9.578-4.164,10.638-8.318l8.518-55.117c12.757-5.2,24.464-12.482,36.16-20.801\r\n\t\tl53.187,20.801c5.318,2.071,10.637,0,12.767-4.164l42.549-71.765c2.129-4.153,1.06-10.399-2.13-13.518L413.967,276.8z\r\n\t\t M255.468,328.8c-41.489,0-74.46-32.235-74.46-72.8s32.971-72.8,74.46-72.8s74.461,32.235,74.461,72.8S296.957,328.8,255.468,328.8\r\n\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidSettings = androidSettings;
\ No newline at end of file
diff --git a/dist/ionicons/androidShare.js b/dist/ionicons/androidShare.js
new file mode 100644
index 000000000..2c3ea8051
--- /dev/null
+++ b/dist/ionicons/androidShare.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidShare = void 0;
+var androidShare = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_17_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,248L288,96v85.334C138.666,202.667,85.333,309.334,64,416c53.333-74.666,117.333-108.802,224-108.802v87.469L448,248\r\n\t\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,248L288,96v85.334C138.666,202.667,85.333,309.334,64,416c53.333-74.666,117.333-108.802,224-108.802v87.469L448,248\r\n\t\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidShare = androidShare;
\ No newline at end of file
diff --git a/dist/ionicons/androidShareAlt.js b/dist/ionicons/androidShareAlt.js
new file mode 100644
index 000000000..6e9f00324
--- /dev/null
+++ b/dist/ionicons/androidShareAlt.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidShareAlt = void 0;
+var androidShareAlt = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_33_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M383.822,344.427c-16.045,0-31.024,5.326-41.721,15.979l-152.957-88.42c1.071-5.328,2.142-9.593,2.142-14.919\r\n\t\t\tc0-5.328-1.071-9.593-2.142-14.919l150.826-87.35c11.762,10.653,26.741,17.041,43.852,17.041c35.295,0,64.178-28.766,64.178-63.92\r\n\t\t\tC448,72.767,419.117,44,383.822,44c-35.297,0-64.179,28.767-64.179,63.92c0,5.327,1.065,9.593,2.142,14.919l-150.821,87.35\r\n\t\t\tc-11.767-10.654-26.741-17.041-43.856-17.041c-35.296,0-63.108,28.766-63.108,63.92c0,35.153,28.877,63.92,64.178,63.92\r\n\t\t\tc17.115,0,32.089-6.389,43.856-17.042l151.891,88.421c-1.076,4.255-2.141,8.521-2.141,13.847\r\n\t\t\tc0,34.094,27.806,61.787,62.037,61.787c34.229,0,62.036-27.693,62.036-61.787C445.858,372.12,418.052,344.427,383.822,344.427z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M383.822,344.427c-16.045,0-31.024,5.326-41.721,15.979l-152.957-88.42c1.071-5.328,2.142-9.593,2.142-14.919\r\n\t\t\tc0-5.328-1.071-9.593-2.142-14.919l150.826-87.35c11.762,10.653,26.741,17.041,43.852,17.041c35.295,0,64.178-28.766,64.178-63.92\r\n\t\t\tC448,72.767,419.117,44,383.822,44c-35.297,0-64.179,28.767-64.179,63.92c0,5.327,1.065,9.593,2.142,14.919l-150.821,87.35\r\n\t\t\tc-11.767-10.654-26.741-17.041-43.856-17.041c-35.296,0-63.108,28.766-63.108,63.92c0,35.153,28.877,63.92,64.178,63.92\r\n\t\t\tc17.115,0,32.089-6.389,43.856-17.042l151.891,88.421c-1.076,4.255-2.141,8.521-2.141,13.847\r\n\t\t\tc0,34.094,27.806,61.787,62.037,61.787c34.229,0,62.036-27.693,62.036-61.787C445.858,372.12,418.052,344.427,383.822,344.427z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidShareAlt = androidShareAlt;
\ No newline at end of file
diff --git a/dist/ionicons/androidStar.js b/dist/ionicons/androidStar.js
new file mode 100644
index 000000000..c14c4a284
--- /dev/null
+++ b/dist/ionicons/androidStar.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidStar = void 0;
+var androidStar = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,372.686 380.83,448 347.809,305.934 458,210.409 312.733,197.934 256,64 199.257,197.934 54,210.409 \r\n\t\t164.192,305.934 131.161,448 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,372.686 380.83,448 347.809,305.934 458,210.409 312.733,197.934 256,64 199.257,197.934 54,210.409 \r\n\t\t164.192,305.934 131.161,448 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidStar = androidStar;
\ No newline at end of file
diff --git a/dist/ionicons/androidStarHalf.js b/dist/ionicons/androidStarHalf.js
new file mode 100644
index 000000000..60b1cf494
--- /dev/null
+++ b/dist/ionicons/androidStarHalf.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidStarHalf = void 0;
+var androidStarHalf = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M458,210.409l-145.267-12.476L256,64l-56.743,133.934L54,210.409l110.192,95.524L131.161,448L256,372.686L380.83,448\r\n\tl-33.021-142.066L458,210.409z M272.531,345.287L256,335.313l-0.002-189.277l27.27,64.379l7.52,17.751l19.208,1.65l69.846,5.998\r\n\tl-52.993,45.939l-14.576,12.636l4.367,18.788l15.875,68.299L272.531,345.287z"
+ },
+ "children": []
+ }]
+};
+exports.androidStarHalf = androidStarHalf;
\ No newline at end of file
diff --git a/dist/ionicons/androidStarOutline.js b/dist/ionicons/androidStarOutline.js
new file mode 100644
index 000000000..bf78dcd21
--- /dev/null
+++ b/dist/ionicons/androidStarOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidStarOutline = void 0;
+var androidStarOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M458,210.409l-145.267-12.476L256,64l-56.743,133.934L54,210.409l110.192,95.524L131.161,448L256,372.686L380.83,448\r\n\tl-33.021-142.066L458,210.409z M272.531,345.286L256,335.312l-16.53,9.973l-59.988,36.191l15.879-68.296l4.369-18.79l-14.577-12.637\r\n\tl-52.994-45.939l69.836-5.998l19.206-1.65l7.521-17.75l27.276-64.381l27.27,64.379l7.52,17.751l19.208,1.65l69.846,5.998\r\n\tl-52.993,45.939l-14.576,12.636l4.367,18.788l15.875,68.299L272.531,345.286z"
+ },
+ "children": []
+ }]
+};
+exports.androidStarOutline = androidStarOutline;
\ No newline at end of file
diff --git a/dist/ionicons/androidStopwatch.js b/dist/ionicons/androidStopwatch.js
new file mode 100644
index 000000000..ac5e96c65
--- /dev/null
+++ b/dist/ionicons/androidStopwatch.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidStopwatch = void 0;
+var androidStopwatch = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_7_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_7_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M232,306.667h48V176h-48V306.667z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M232,306.667h48V176h-48V306.667z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M407.67,170.271l30.786-30.786l-33.942-33.941l-30.785,30.786C341.217,111.057,300.369,96,256,96\r\n\t\t\tC149.961,96,64,181.961,64,288s85.961,192,192,192s192-85.961,192-192C448,243.631,432.943,202.783,407.67,170.271z\r\n\t\t\t M362.066,394.066C333.734,422.398,296.066,438,256,438s-77.735-15.602-106.066-43.934C121.602,365.735,106,328.066,106,288\r\n\t\t\ts15.602-77.735,43.934-106.066C178.265,153.602,215.934,138,256,138s77.734,15.602,106.066,43.934\r\n\t\t\tC390.398,210.265,406,247.934,406,288S390.398,365.735,362.066,394.066z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M407.67,170.271l30.786-30.786l-33.942-33.941l-30.785,30.786C341.217,111.057,300.369,96,256,96\r\n\t\t\tC149.961,96,64,181.961,64,288s85.961,192,192,192s192-85.961,192-192C448,243.631,432.943,202.783,407.67,170.271z\r\n\t\t\t M362.066,394.066C333.734,422.398,296.066,438,256,438s-77.735-15.602-106.066-43.934C121.602,365.735,106,328.066,106,288\r\n\t\t\ts15.602-77.735,43.934-106.066C178.265,153.602,215.934,138,256,138s77.734,15.602,106.066,43.934\r\n\t\t\tC390.398,210.265,406,247.934,406,288S390.398,365.735,362.066,394.066z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "32",
+ "width": "128",
+ "height": "48"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "32",
+ "width": "128",
+ "height": "48"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidStopwatch = androidStopwatch;
\ No newline at end of file
diff --git a/dist/ionicons/androidSubway.js b/dist/ionicons/androidSubway.js
new file mode 100644
index 000000000..95be6cf4f
--- /dev/null
+++ b/dist/ionicons/androidSubway.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidSubway = void 0;
+var androidSubway = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c-93.864,0-176,10.668-176,85.334v213.332c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48z M160,384c-18.136,0-32-13.865-32-32\r\n\t\tc0-18.137,13.864-32,32-32s32,13.863,32,32C192,370.135,178.136,384,160,384z M240,240H128v-96h112V240z M352,384\r\n\t\tc-18.136,0-32-13.865-32-32c0-18.137,13.864-32,32-32s32,13.863,32,32C384,370.135,370.136,384,352,384z M384,240H272v-96h112V240z\r\n\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c-93.864,0-176,10.668-176,85.334v213.332c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48z M160,384c-18.136,0-32-13.865-32-32\r\n\t\tc0-18.137,13.864-32,32-32s32,13.863,32,32C192,370.135,178.136,384,160,384z M240,240H128v-96h112V240z M352,384\r\n\t\tc-18.136,0-32-13.865-32-32c0-18.137,13.864-32,32-32s32,13.863,32,32C384,370.135,370.136,384,352,384z M384,240H272v-96h112V240z\r\n\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidSubway = androidSubway;
\ No newline at end of file
diff --git a/dist/ionicons/androidSunny.js b/dist/ionicons/androidSunny.js
new file mode 100644
index 000000000..546a3a36d
--- /dev/null
+++ b/dist/ionicons/androidSunny.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidSunny = void 0;
+var androidSunny = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_27_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,160c25.499,0,49.567,10.025,67.771,28.229C341.975,206.433,352,230.501,352,256s-10.025,49.567-28.229,67.771\r\n\t\t\tC305.567,341.975,281.499,352,256,352s-49.567-10.025-67.771-28.229C170.025,305.567,160,281.499,160,256\r\n\t\t\ts10.025-49.567,28.229-67.771C206.433,170.025,230.501,160,256,160 M277.333,32h-42.666v64h42.666V32L277.333,32z M406.396,75.729\r\n\t\t\tL368,114.135L397.864,144l38.406-38.396L406.396,75.729L406.396,75.729z M105.604,75.729l-29.875,29.875L114.136,144L144,114.135\r\n\t\t\tL105.604,75.729L105.604,75.729z M256,128c-70.396,0-128,57.604-128,128s57.604,128,128,128s128-57.604,128-128\r\n\t\t\tS326.396,128,256,128L256,128z M480,234.666h-64v42.668h64V234.666L480,234.666z M96,234.666H32v42.668h64V234.666L96,234.666z\r\n\t\t\t M397.864,368L368,397.865l38.396,38.406l29.875-29.875L397.864,368L397.864,368z M114.136,368l-38.406,38.396l29.875,29.875\r\n\t\t\tL144,397.865L114.136,368L114.136,368z M277.333,416h-42.666v64c6.396,0,42.666,0,42.666,0V416L277.333,416z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,160c25.499,0,49.567,10.025,67.771,28.229C341.975,206.433,352,230.501,352,256s-10.025,49.567-28.229,67.771\r\n\t\t\tC305.567,341.975,281.499,352,256,352s-49.567-10.025-67.771-28.229C170.025,305.567,160,281.499,160,256\r\n\t\t\ts10.025-49.567,28.229-67.771C206.433,170.025,230.501,160,256,160 M277.333,32h-42.666v64h42.666V32L277.333,32z M406.396,75.729\r\n\t\t\tL368,114.135L397.864,144l38.406-38.396L406.396,75.729L406.396,75.729z M105.604,75.729l-29.875,29.875L114.136,144L144,114.135\r\n\t\t\tL105.604,75.729L105.604,75.729z M256,128c-70.396,0-128,57.604-128,128s57.604,128,128,128s128-57.604,128-128\r\n\t\t\tS326.396,128,256,128L256,128z M480,234.666h-64v42.668h64V234.666L480,234.666z M96,234.666H32v42.668h64V234.666L96,234.666z\r\n\t\t\t M397.864,368L368,397.865l38.396,38.406l29.875-29.875L397.864,368L397.864,368z M114.136,368l-38.406,38.396l29.875,29.875\r\n\t\t\tL144,397.865L114.136,368L114.136,368z M277.333,416h-42.666v64c6.396,0,42.666,0,42.666,0V416L277.333,416z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidSunny = androidSunny;
\ No newline at end of file
diff --git a/dist/ionicons/androidSync.js b/dist/ionicons/androidSync.js
new file mode 100644
index 000000000..433308395
--- /dev/null
+++ b/dist/ionicons/androidSync.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidSync = void 0;
+var androidSync = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,93.09V32l-80,81.454l80,81.456v-61.093c65.996,0,120,54.982,120,122.183c0,20.363-5,39.714-14.004,57.016L391,342.547\r\n\tc15.996-25.457,25-54.988,25-86.547C416,166.401,343.998,93.09,256,93.09z M256,378.184c-66.001,0-120-54.988-120-122.184\r\n\tc0-20.363,5-39.709,13.999-57.02L121,169.454C104.999,193.89,96,224.436,96,256c0,89.599,72.002,162.91,160,162.91V480l80-81.453\r\n\tl-80-81.457V378.184z"
+ },
+ "children": []
+ }]
+};
+exports.androidSync = androidSync;
\ No newline at end of file
diff --git a/dist/ionicons/androidTextsms.js b/dist/ionicons/androidTextsms.js
new file mode 100644
index 000000000..f66012c67
--- /dev/null
+++ b/dist/ionicons/androidTextsms.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidTextsms = void 0;
+var androidTextsms = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M408,64H96c-22.002,0-32,17.998-32,40v344l64-64h280c22.002,0,40-17.998,40-40V104C448,81.998,430.002,64,408,64z\r\n\t\t M198.4,242H160v-40h38.4V242z M275.2,242h-38.4v-40h38.4V242z M352,242h-38.4v-40H352V242z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M408,64H96c-22.002,0-32,17.998-32,40v344l64-64h280c22.002,0,40-17.998,40-40V104C448,81.998,430.002,64,408,64z\r\n\t\t M198.4,242H160v-40h38.4V242z M275.2,242h-38.4v-40h38.4V242z M352,242h-38.4v-40H352V242z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidTextsms = androidTextsms;
\ No newline at end of file
diff --git a/dist/ionicons/androidTime.js b/dist/ionicons/androidTime.js
new file mode 100644
index 000000000..10ef5416f
--- /dev/null
+++ b/dist/ionicons/androidTime.js
@@ -0,0 +1,61 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidTime = void 0;
+var androidTime = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-opacity": "0.9",
+ "d": "M256,43C137.789,43,43,138.851,43,256s94.789,213,213,213s213-95.851,213-213S373.149,43,256,43z\r\n\t\t\t\t M256,426.4c-93.718,0-170.4-76.683-170.4-170.4S162.282,85.6,256,85.6S426.4,162.282,426.4,256S349.718,426.4,256,426.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-opacity": "0.9",
+ "d": "M256,43C137.789,43,43,138.851,43,256s94.789,213,213,213s213-95.851,213-213S373.149,43,256,43z\r\n\t\t\t\t M256,426.4c-93.718,0-170.4-76.683-170.4-170.4S162.282,85.6,256,85.6S426.4,162.282,426.4,256S349.718,426.4,256,426.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill-opacity": "0.9",
+ "points": "266.65,149.5 234.7,149.5 234.7,277.3 346.525,344.393 362.5,317.768 266.65,261.324 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill-opacity": "0.9",
+ "points": "266.65,149.5 234.7,149.5 234.7,277.3 346.525,344.393 362.5,317.768 266.65,261.324 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidTime = androidTime;
\ No newline at end of file
diff --git a/dist/ionicons/androidTrain.js b/dist/ionicons/androidTrain.js
new file mode 100644
index 000000000..29cb17c25
--- /dev/null
+++ b/dist/ionicons/androidTrain.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidTrain = void 0;
+var androidTrain = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_35_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M80,346.666c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\t\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48S80,58.668,80,133.334V346.666z M256,376\r\n\t\t\t\tc-22.002,0-40-17.997-40-39.999S233.998,296,256,296s40,17.999,40,40.001S278.002,376,256,376z M384,224H128v-96h256V224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M80,346.666c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\t\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48S80,58.668,80,133.334V346.666z M256,376\r\n\t\t\t\tc-22.002,0-40-17.997-40-39.999S233.998,296,256,296s40,17.999,40,40.001S278.002,376,256,376z M384,224H128v-96h256V224z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidTrain = androidTrain;
\ No newline at end of file
diff --git a/dist/ionicons/androidUnlock.js b/dist/ionicons/androidUnlock.js
new file mode 100644
index 000000000..5ab1bd8d4
--- /dev/null
+++ b/dist/ionicons/androidUnlock.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidUnlock = void 0;
+var androidUnlock = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146h37.998c0-34.004,28.003-62.002,62.002-62.002\r\n\tc34.004,0,62.002,27.998,62.002,62.002H318v40H136c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\ts40,17.998,40,40S278.002,368,256,368z"
+ },
+ "children": []
+ }]
+};
+exports.androidUnlock = androidUnlock;
\ No newline at end of file
diff --git a/dist/ionicons/androidUpload.js b/dist/ionicons/androidUpload.js
new file mode 100644
index 000000000..40fb44a0c
--- /dev/null
+++ b/dist/ionicons/androidUpload.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidUpload = void 0;
+var androidUpload = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z M288,276v76h-64v-76h-68l100-100l100,100H288z"
+ },
+ "children": []
+ }]
+};
+exports.androidUpload = androidUpload;
\ No newline at end of file
diff --git a/dist/ionicons/androidVolumeDown.js b/dist/ionicons/androidVolumeDown.js
new file mode 100644
index 000000000..e5556310a
--- /dev/null
+++ b/dist/ionicons/androidVolumeDown.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidVolumeDown = void 0;
+var androidVolumeDown = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,192v128h85.334L256,431.543V80.458L149.334,192H64z M352,256c0-38.399-21.333-72.407-53.333-88.863v176.636\r\n\tC330.667,328.408,352,294.4,352,256z"
+ },
+ "children": []
+ }]
+};
+exports.androidVolumeDown = androidVolumeDown;
\ No newline at end of file
diff --git a/dist/ionicons/androidVolumeMute.js b/dist/ionicons/androidVolumeMute.js
new file mode 100644
index 000000000..f1b27cf35
--- /dev/null
+++ b/dist/ionicons/androidVolumeMute.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidVolumeMute = void 0;
+var androidVolumeMute = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,192v128h85.334L256,431.543V80.458L149.334,192H64z"
+ },
+ "children": []
+ }]
+};
+exports.androidVolumeMute = androidVolumeMute;
\ No newline at end of file
diff --git a/dist/ionicons/androidVolumeOff.js b/dist/ionicons/androidVolumeOff.js
new file mode 100644
index 000000000..1061a5ac1
--- /dev/null
+++ b/dist/ionicons/androidVolumeOff.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidVolumeOff = void 0;
+var androidVolumeOff = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.5,256c0,22.717-4.883,44.362-13.603,63.855l31.88,31.88C439.283,323.33,448,290.653,448,256\r\n\t\tc0-93.256-64-172.254-149-192v44.978C361,127.632,405.5,186.882,405.5,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.5,256c0,22.717-4.883,44.362-13.603,63.855l31.88,31.88C439.283,323.33,448,290.653,448,256\r\n\t\tc0-93.256-64-172.254-149-192v44.978C361,127.632,405.5,186.882,405.5,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "256,80.458 204.979,132.938 256,183.957 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,80.458 204.979,132.938 256,183.957 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M420.842,396.885L91.116,67.157l-24,24l90.499,90.413l-8.28,10.43H64v128h85.334L256,431.543V280l94.915,94.686\r\n\t\tC335.795,387.443,318,397.213,299,403.022V448c31-7.172,58.996-22.163,82.315-42.809l39.61,39.693l24-24.043l-24.002-24.039\r\n\t\tL420.842,396.885z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M420.842,396.885L91.116,67.157l-24,24l90.499,90.413l-8.28,10.43H64v128h85.334L256,431.543V280l94.915,94.686\r\n\t\tC335.795,387.443,318,397.213,299,403.022V448c31-7.172,58.996-22.163,82.315-42.809l39.61,39.693l24-24.043l-24.002-24.039\r\n\t\tL420.842,396.885z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M352.188,256c0-38.399-21.188-72.407-53.188-88.863v59.82l50.801,50.801C351.355,270.739,352.188,263.454,352.188,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352.188,256c0-38.399-21.188-72.407-53.188-88.863v59.82l50.801,50.801C351.355,270.739,352.188,263.454,352.188,256z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidVolumeOff = androidVolumeOff;
\ No newline at end of file
diff --git a/dist/ionicons/androidVolumeUp.js b/dist/ionicons/androidVolumeUp.js
new file mode 100644
index 000000000..675878d67
--- /dev/null
+++ b/dist/ionicons/androidVolumeUp.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidVolumeUp = void 0;
+var androidVolumeUp = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,192v128h85.334L256,431.543V80.458L149.334,192H64z M352,256c0-38.399-21.333-72.407-53.333-88.863v176.636\r\n\tC330.667,328.408,352,294.4,352,256z M298.667,64v44.978C360.531,127.632,405.334,186.882,405.334,256\r\n\tc0,69.119-44.803,128.369-106.667,147.022V448C384,428.254,448,349.257,448,256C448,162.744,384,83.746,298.667,64z"
+ },
+ "children": []
+ }]
+};
+exports.androidVolumeUp = androidVolumeUp;
\ No newline at end of file
diff --git a/dist/ionicons/androidWalk.js b/dist/ionicons/androidWalk.js
new file mode 100644
index 000000000..90a25f100
--- /dev/null
+++ b/dist/ionicons/androidWalk.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidWalk = void 0;
+var androidWalk = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,112c22.223,0,39.997-17.776,39.997-40c0-22.225-17.774-40-39.997-40s-40.003,17.775-40.003,40\r\n\t\tC247.997,94.224,265.777,112,288,112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,112c22.223,0,39.997-17.776,39.997-40c0-22.225-17.774-40-39.997-40s-40.003,17.775-40.003,40\r\n\t\tC247.997,94.224,265.777,112,288,112z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M288,232h104v-40h-72l-44.802-69.333c-7.698-11.667-18.136-18.136-30.933-18.136c-3.198,0-8.828,0.531-12.799,1.747\r\n\t\tL120,144v112h40v-80l40.531-16L120,480h40l56.698-164.271L267,384v96h38V352l-57.031-96l19.745-61.864L288,232z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,232h104v-40h-72l-44.802-69.333c-7.698-11.667-18.136-18.136-30.933-18.136c-3.198,0-8.828,0.531-12.799,1.747\r\n\t\tL120,144v112h40v-80l40.531-16L120,480h40l56.698-164.271L267,384v96h38V352l-57.031-96l19.745-61.864L288,232z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.androidWalk = androidWalk;
\ No newline at end of file
diff --git a/dist/ionicons/androidWarning.js b/dist/ionicons/androidWarning.js
new file mode 100644
index 000000000..fca883c13
--- /dev/null
+++ b/dist/ionicons/androidWarning.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidWarning = void 0;
+var androidWarning = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_31_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,464h448L256,48L32,464z M280,400h-48v-48h48V400z M280,320h-48v-96h48V320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,464h448L256,48L32,464z M280,400h-48v-48h48V400z M280,320h-48v-96h48V320z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidWarning = androidWarning;
\ No newline at end of file
diff --git a/dist/ionicons/androidWatch.js b/dist/ionicons/androidWatch.js
new file mode 100644
index 000000000..7ba199cc6
--- /dev/null
+++ b/dist/ionicons/androidWatch.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidWatch = void 0;
+var androidWatch = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon_11_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,256c0-51.001-24.004-96.001-60.996-125L336,16H176l-19.004,115C120.004,159.999,96,204.999,96,256\r\n\t\t\t\tc0,50.996,24.004,95.996,60.996,125L176,496h160l19.004-115C391.996,351.996,416,306.996,416,256z M136,256\r\n\t\t\t\tc0-66.001,54.004-120,120-120s120,53.999,120,120c0,65.996-54.004,120-120,120S136,321.996,136,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,256c0-51.001-24.004-96.001-60.996-125L336,16H176l-19.004,115C120.004,159.999,96,204.999,96,256\r\n\t\t\t\tc0,50.996,24.004,95.996,60.996,125L176,496h160l19.004-115C391.996,351.996,416,306.996,416,256z M136,256\r\n\t\t\t\tc0-66.001,54.004-120,120-120s120,53.999,120,120c0,65.996-54.004,120-120,120S136,321.996,136,256z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.androidWatch = androidWatch;
\ No newline at end of file
diff --git a/dist/ionicons/androidWifi.js b/dist/ionicons/androidWifi.js
new file mode 100644
index 000000000..83e8e0989
--- /dev/null
+++ b/dist/ionicons/androidWifi.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.androidWifi = void 0;
+var androidWifi = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,228.719c-22.879,0-41.597,18.529-41.597,41.18c0,22.652,18.718,41.182,41.597,41.182\r\n\tc22.878,0,41.597-18.529,41.597-41.182C297.597,247.248,278.878,228.719,256,228.719z M380.8,269.898\r\n\tc0-67.946-56.163-123.539-124.8-123.539s-124.8,55.593-124.8,123.539c0,45.303,24.961,85.447,62.396,107.072l20.807-36.032\r\n\tc-24.972-14.417-41.604-40.153-41.604-71.04c0-45.295,37.433-82.358,83.201-82.358c45.771,0,83.201,37.063,83.201,82.358\r\n\tc0,30.887-16.633,56.623-41.604,71.04l20.807,36.032C355.837,355.346,380.8,315.201,380.8,269.898z M256,64\r\n\tC141.597,64,48,156.654,48,269.898C48,346.085,89.592,411.968,152,448l20.799-36.032c-49.919-28.824-83.207-81.324-83.207-142.069\r\n\tc0-90.593,74.891-164.718,166.408-164.718c91.517,0,166.406,74.125,166.406,164.718c0,60.745-33.284,114.271-83.205,142.069L360,448\r\n\tc62.406-36.032,104-101.915,104-178.102C464,156.654,370.403,64,256,64z"
+ },
+ "children": []
+ }]
+};
+exports.androidWifi = androidWifi;
\ No newline at end of file
diff --git a/dist/ionicons/aperture.js b/dist/ionicons/aperture.js
new file mode 100644
index 000000000..c22335eea
--- /dev/null
+++ b/dist/ionicons/aperture.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.aperture = void 0;
+var aperture = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M200.043,106.067c-40.631,15.171-73.434,46.382-90.717,85.933H256L200.043,106.067z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M200.043,106.067c-40.631,15.171-73.434,46.382-90.717,85.933H256L200.043,106.067z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M412.797,288c2.099-10.34,3.203-21.041,3.203-32c0-36.624-12.314-70.367-33.016-97.334L311,288H412.797z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M412.797,288c2.099-10.34,3.203-21.041,3.203-32c0-36.624-12.314-70.367-33.016-97.334L311,288H412.797z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M359.973,134.395C332.007,110.461,295.694,96,256,96c-7.966,0-15.794,0.591-23.448,1.715L310.852,224L359.973,134.395z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M359.973,134.395C332.007,110.461,295.694,96,256,96c-7.966,0-15.794,0.591-23.448,1.715L310.852,224L359.973,134.395z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M99.204,224C97.104,234.34,96,245.041,96,256c0,36.639,12.324,70.394,33.041,97.366L201,224H99.204z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M99.204,224C97.104,234.34,96,245.041,96,256c0,36.639,12.324,70.394,33.041,97.366L201,224H99.204z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M311.959,405.932c40.631-15.171,73.433-46.382,90.715-85.932H256L311.959,405.932z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M311.959,405.932c40.631-15.171,73.433-46.382,90.715-85.932H256L311.959,405.932z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M152.046,377.621C180.009,401.545,216.314,416,256,416c7.969,0,15.799-0.592,23.456-1.716L201.164,288L152.046,377.621z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M152.046,377.621C180.009,401.545,216.314,416,256,416c7.969,0,15.799-0.592,23.456-1.716L201.164,288L152.046,377.621z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.aperture = aperture;
\ No newline at end of file
diff --git a/dist/ionicons/archive.js b/dist/ionicons/archive.js
new file mode 100644
index 000000000..8db10adde
--- /dev/null
+++ b/dist/ionicons/archive.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.archive = void 0;
+var archive = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,307.7 384,192 304,192 304,96 207.6,96 207.6,192 128,192 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,307.7 384,192 304,192 304,96 207.6,96 207.6,192 128,192 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M465.4,297.2l-71.4-55h-42l62,61.8h-50.6c-2.3,0-4.3,1.2-5.4,2.9l-18.4,45.5H172.1l-18.4-45.5c-1-1.8-3.1-2.9-5.4-2.9H97.8\r\n\t\tl62.2-61.8h-42.2l-71.4,55c-10.6,6.2-15.8,19-14.1,31.6l8.7,66.9c2.3,13.1,9.7,20.3,28.1,20.3h373.8c19.1,0,25.8-7.6,28.1-20.3\r\n\t\tl8.7-66.9C481.4,315.9,476,303.4,465.4,297.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M465.4,297.2l-71.4-55h-42l62,61.8h-50.6c-2.3,0-4.3,1.2-5.4,2.9l-18.4,45.5H172.1l-18.4-45.5c-1-1.8-3.1-2.9-5.4-2.9H97.8\r\n\t\tl62.2-61.8h-42.2l-71.4,55c-10.6,6.2-15.8,19-14.1,31.6l8.7,66.9c2.3,13.1,9.7,20.3,28.1,20.3h373.8c19.1,0,25.8-7.6,28.1-20.3\r\n\t\tl8.7-66.9C481.4,315.9,476,303.4,465.4,297.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.archive = archive;
\ No newline at end of file
diff --git a/dist/ionicons/arrowDownA.js b/dist/ionicons/arrowDownA.js
new file mode 100644
index 000000000..0f408413e
--- /dev/null
+++ b/dist/ionicons/arrowDownA.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDownA = void 0;
+var arrowDownA = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256.5,448.5 448.5,256.5 336.5,256.5 336.5,64.5 176.5,64.5 176.5,256.5 64.5,256.5 "
+ },
+ "children": []
+ }]
+};
+exports.arrowDownA = arrowDownA;
\ No newline at end of file
diff --git a/dist/ionicons/arrowDownB.js b/dist/ionicons/arrowDownB.js
new file mode 100644
index 000000000..2fd22b81a
--- /dev/null
+++ b/dist/ionicons/arrowDownB.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDownB = void 0;
+var arrowDownB = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6\r\n\tc1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"
+ },
+ "children": []
+ }]
+};
+exports.arrowDownB = arrowDownB;
\ No newline at end of file
diff --git a/dist/ionicons/arrowDownC.js b/dist/ionicons/arrowDownC.js
new file mode 100644
index 000000000..d8ec7be4e
--- /dev/null
+++ b/dist/ionicons/arrowDownC.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowDownC = void 0;
+var arrowDownC = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M383.6,322.7L278.6,423c-5.8,6-13.7,9-22.4,9c-8.7,0-16.5-3-22.4-9L128.4,322.7c-12.5-11.9-12.5-31.3,0-43.2\r\n\tc12.5-11.9,32.7-11.9,45.2,0l50.4,48.2v-217c0-16.9,14.3-30.6,32-30.6c17.7,0,32,13.7,32,30.6v217l50.4-48.2\r\n\tc12.5-11.9,32.7-11.9,45.2,0C396.1,291.4,396.1,310.7,383.6,322.7z"
+ },
+ "children": []
+ }]
+};
+exports.arrowDownC = arrowDownC;
\ No newline at end of file
diff --git a/dist/ionicons/arrowExpand.js b/dist/ionicons/arrowExpand.js
new file mode 100644
index 000000000..6f9f36744
--- /dev/null
+++ b/dist/ionicons/arrowExpand.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowExpand = void 0;
+var arrowExpand = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "274,209.7 337.9,145.9 288,96 416,96 416,224 366.1,174.1 302.3,238 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "274,209.7 337.9,145.9 288,96 416,96 416,224 366.1,174.1 302.3,238 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "274,302.3 337.9,366.1 288,416 416,416 416,288 366.1,337.9 302.3,274 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "274,302.3 337.9,366.1 288,416 416,416 416,288 366.1,337.9 302.3,274 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "238,302.3 174.1,366.1 224,416 96,416 96,288 145.9,337.9 209.7,274 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "238,302.3 174.1,366.1 224,416 96,416 96,288 145.9,337.9 209.7,274 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "238,209.7 174.1,145.9 224,96 96,96 96,224 145.9,174.1 209.7,238 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "238,209.7 174.1,145.9 224,96 96,96 96,224 145.9,174.1 209.7,238 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrowExpand = arrowExpand;
\ No newline at end of file
diff --git a/dist/ionicons/arrowGraphDownLeft.js b/dist/ionicons/arrowGraphDownLeft.js
new file mode 100644
index 000000000..f330f89db
--- /dev/null
+++ b/dist/ionicons/arrowGraphDownLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowGraphDownLeft = void 0;
+var arrowGraphDownLeft = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "32,384 32,224 92.8,284.8 223.7,144 330.7,256 480,128 330.7,330.7 223.7,224 130.2,322.2 192,384 "
+ },
+ "children": []
+ }]
+};
+exports.arrowGraphDownLeft = arrowGraphDownLeft;
\ No newline at end of file
diff --git a/dist/ionicons/arrowGraphDownRight.js b/dist/ionicons/arrowGraphDownRight.js
new file mode 100644
index 000000000..9c4fe3f45
--- /dev/null
+++ b/dist/ionicons/arrowGraphDownRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowGraphDownRight = void 0;
+var arrowGraphDownRight = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "320,384 381.8,322.2 288.3,224 181.3,330.7 32,128 181.3,256 288.3,144 419.2,284.8 480,224 480,384 "
+ },
+ "children": []
+ }]
+};
+exports.arrowGraphDownRight = arrowGraphDownRight;
\ No newline at end of file
diff --git a/dist/ionicons/arrowGraphUpLeft.js b/dist/ionicons/arrowGraphUpLeft.js
new file mode 100644
index 000000000..74301fe00
--- /dev/null
+++ b/dist/ionicons/arrowGraphUpLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowGraphUpLeft = void 0;
+var arrowGraphUpLeft = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "192,128 130.2,189.8 223.7,288 330.7,181.3 480,384 330.7,256 223.7,368 92.8,227.2 32,288 32,128 "
+ },
+ "children": []
+ }]
+};
+exports.arrowGraphUpLeft = arrowGraphUpLeft;
\ No newline at end of file
diff --git a/dist/ionicons/arrowGraphUpRight.js b/dist/ionicons/arrowGraphUpRight.js
new file mode 100644
index 000000000..be6776be1
--- /dev/null
+++ b/dist/ionicons/arrowGraphUpRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowGraphUpRight = void 0;
+var arrowGraphUpRight = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "320,128 381.8,189.8 288.3,288 181.3,181.3 32,384 181.3,256 288.3,368 419.2,227.2 480,288 480,128 "
+ },
+ "children": []
+ }]
+};
+exports.arrowGraphUpRight = arrowGraphUpRight;
\ No newline at end of file
diff --git a/dist/ionicons/arrowLeftA.js b/dist/ionicons/arrowLeftA.js
new file mode 100644
index 000000000..70eca8d90
--- /dev/null
+++ b/dist/ionicons/arrowLeftA.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowLeftA = void 0;
+var arrowLeftA = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64.5,256.5 256.5,448.5 256.5,336.5 448.5,336.5 448.5,176.5 256.5,176.5 256.5,64.5 "
+ },
+ "children": []
+ }]
+};
+exports.arrowLeftA = arrowLeftA;
\ No newline at end of file
diff --git a/dist/ionicons/arrowLeftB.js b/dist/ionicons/arrowLeftB.js
new file mode 100644
index 000000000..482fdb256
--- /dev/null
+++ b/dist/ionicons/arrowLeftB.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowLeftB = void 0;
+var arrowLeftB = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M327.3,98.9l-2.1,1.8l-156.5,136c-5.3,4.6-8.6,11.5-8.6,19.2c0,7.7,3.4,14.6,8.6,19.2L324.9,411l2.6,2.3\r\n\tc2.5,1.7,5.5,2.7,8.7,2.7c8.7,0,15.8-7.4,15.8-16.6h0V112.6h0c0-9.2-7.1-16.6-15.8-16.6C332.9,96,329.8,97.1,327.3,98.9z"
+ },
+ "children": []
+ }]
+};
+exports.arrowLeftB = arrowLeftB;
\ No newline at end of file
diff --git a/dist/ionicons/arrowLeftC.js b/dist/ionicons/arrowLeftC.js
new file mode 100644
index 000000000..db5342286
--- /dev/null
+++ b/dist/ionicons/arrowLeftC.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowLeftC = void 0;
+var arrowLeftC = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M189.3,128.4L89,233.4c-6,5.8-9,13.7-9,22.4c0,8.7,3,16.5,9,22.4l100.3,105.4c11.9,12.5,31.3,12.5,43.2,0\r\n\tc11.9-12.5,11.9-32.7,0-45.2L184.4,288h217c16.9,0,30.6-14.3,30.6-32c0-17.7-13.7-32-30.6-32h-217l48.2-50.4\r\n\tc11.9-12.5,11.9-32.7,0-45.2C220.6,115.9,201.3,115.9,189.3,128.4z"
+ },
+ "children": []
+ }]
+};
+exports.arrowLeftC = arrowLeftC;
\ No newline at end of file
diff --git a/dist/ionicons/arrowMove.js b/dist/ionicons/arrowMove.js
new file mode 100644
index 000000000..d112135ef
--- /dev/null
+++ b/dist/ionicons/arrowMove.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowMove = void 0;
+var arrowMove = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "480,256 384,160 384,236 276,236 276,128 352,128 256,32 160,128 236,128 236,236 128,236 128,160 32,256 128,352 \r\n\t128,276 236,276 236,384 160,384 256,480 352,384 275.8,384 275.4,275.5 384,275.8 384,352 "
+ },
+ "children": []
+ }]
+};
+exports.arrowMove = arrowMove;
\ No newline at end of file
diff --git a/dist/ionicons/arrowResize.js b/dist/ionicons/arrowResize.js
new file mode 100644
index 000000000..8d9e0e286
--- /dev/null
+++ b/dist/ionicons/arrowResize.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowResize = void 0;
+var arrowResize = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "288,96 337.9,145.9 274,209.7 274,209.7 145.9,337.9 96,288 96,416 224,416 174.1,366.1 357.4,182.9 366.1,174.1 \r\n\t416,224 416,96 "
+ },
+ "children": []
+ }]
+};
+exports.arrowResize = arrowResize;
\ No newline at end of file
diff --git a/dist/ionicons/arrowReturnLeft.js b/dist/ionicons/arrowReturnLeft.js
new file mode 100644
index 000000000..d6004bc02
--- /dev/null
+++ b/dist/ionicons/arrowReturnLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowReturnLeft = void 0;
+var arrowReturnLeft = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192,96v64h248c4.4,0,8,3.6,8,8v240c0,4.4-3.6,8-8,8H136c-4.4,0-8-3.6-8-8v-48c0-4.4,3.6-8,8-8h248V224H192v64L64,192\r\n\tL192,96z"
+ },
+ "children": []
+ }]
+};
+exports.arrowReturnLeft = arrowReturnLeft;
\ No newline at end of file
diff --git a/dist/ionicons/arrowReturnRight.js b/dist/ionicons/arrowReturnRight.js
new file mode 100644
index 000000000..e48f9927d
--- /dev/null
+++ b/dist/ionicons/arrowReturnRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowReturnRight = void 0;
+var arrowReturnRight = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,192l-128,96v-64H128v128h248c4.4,0,8,3.6,8,8v48c0,4.4-3.6,8-8,8H72c-4.4,0-8-3.6-8-8V168c0-4.4,3.6-8,8-8h248V96\r\n\tL448,192z"
+ },
+ "children": []
+ }]
+};
+exports.arrowReturnRight = arrowReturnRight;
\ No newline at end of file
diff --git a/dist/ionicons/arrowRightA.js b/dist/ionicons/arrowRightA.js
new file mode 100644
index 000000000..6685cbbf1
--- /dev/null
+++ b/dist/ionicons/arrowRightA.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowRightA = void 0;
+var arrowRightA = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448.5,256.5 256.5,64.5 256.5,176.5 64.5,176.5 64.5,336.5 256.5,336.5 256.5,448.5 "
+ },
+ "children": []
+ }]
+};
+exports.arrowRightA = arrowRightA;
\ No newline at end of file
diff --git a/dist/ionicons/arrowRightB.js b/dist/ionicons/arrowRightB.js
new file mode 100644
index 000000000..23b23dc0b
--- /dev/null
+++ b/dist/ionicons/arrowRightB.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowRightB = void 0;
+var arrowRightB = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M184.7,413.1l2.1-1.8l156.5-136c5.3-4.6,8.6-11.5,8.6-19.2c0-7.7-3.4-14.6-8.6-19.2L187.1,101l-2.6-2.3\r\n\tC182,97,179,96,175.8,96c-8.7,0-15.8,7.4-15.8,16.6h0v286.8h0c0,9.2,7.1,16.6,15.8,16.6C179.1,416,182.2,414.9,184.7,413.1z"
+ },
+ "children": []
+ }]
+};
+exports.arrowRightB = arrowRightB;
\ No newline at end of file
diff --git a/dist/ionicons/arrowRightC.js b/dist/ionicons/arrowRightC.js
new file mode 100644
index 000000000..9237bdd82
--- /dev/null
+++ b/dist/ionicons/arrowRightC.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowRightC = void 0;
+var arrowRightC = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M322.7,128.4L423,233.4c6,5.8,9,13.7,9,22.4c0,8.7-3,16.5-9,22.4L322.7,383.6c-11.9,12.5-31.3,12.5-43.2,0\r\n\tc-11.9-12.5-11.9-32.7,0-45.2l48.2-50.4h-217C93.7,288,80,273.7,80,256c0-17.7,13.7-32,30.6-32h217l-48.2-50.4\r\n\tc-11.9-12.5-11.9-32.7,0-45.2C291.4,115.9,310.7,115.9,322.7,128.4z"
+ },
+ "children": []
+ }]
+};
+exports.arrowRightC = arrowRightC;
\ No newline at end of file
diff --git a/dist/ionicons/arrowShrink.js b/dist/ionicons/arrowShrink.js
new file mode 100644
index 000000000..4a2eb5f86
--- /dev/null
+++ b/dist/ionicons/arrowShrink.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowShrink = void 0;
+var arrowShrink = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,92.3 366.1,174.1 416,224 288,224 288,96 337.9,145.9 419.7,64 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,92.3 366.1,174.1 416,224 288,224 288,96 337.9,145.9 419.7,64 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "448,419.7 366.1,337.9 416,288 288,288 288,416 337.9,366.1 419.7,448 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,419.7 366.1,337.9 416,288 288,288 288,416 337.9,366.1 419.7,448 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "64,419.7 145.9,337.9 96,288 224,288 224,416 174.1,366.1 92.3,448 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64,419.7 145.9,337.9 96,288 224,288 224,416 174.1,366.1 92.3,448 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "64,92.3 145.9,174.1 96,224 224,224 224,96 174.1,145.9 92.3,64 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64,92.3 145.9,174.1 96,224 224,224 224,96 174.1,145.9 92.3,64 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrowShrink = arrowShrink;
\ No newline at end of file
diff --git a/dist/ionicons/arrowSwap.js b/dist/ionicons/arrowSwap.js
new file mode 100644
index 000000000..116eaed37
--- /dev/null
+++ b/dist/ionicons/arrowSwap.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowSwap = void 0;
+var arrowSwap = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,328v48c0,4.4,3.6,8,8,8h248v64l128-96l-128-96v64H72C67.6,320,64,323.6,64,328z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,328v48c0,4.4,3.6,8,8,8h248v64l128-96l-128-96v64H72C67.6,320,64,323.6,64,328z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M448,184v-48c0-4.4-3.6-8-8-8H192V64L64,160l128,96v-64h248C444.4,192,448,188.4,448,184z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,184v-48c0-4.4-3.6-8-8-8H192V64L64,160l128,96v-64h248C444.4,192,448,188.4,448,184z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrowSwap = arrowSwap;
\ No newline at end of file
diff --git a/dist/ionicons/arrowUpA.js b/dist/ionicons/arrowUpA.js
new file mode 100644
index 000000000..988a038aa
--- /dev/null
+++ b/dist/ionicons/arrowUpA.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUpA = void 0;
+var arrowUpA = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256.5,64.5 64.5,256.5 176.5,256.5 176.5,448.5 336.5,448.5 336.5,256.5 448.5,256.5 "
+ },
+ "children": []
+ }]
+};
+exports.arrowUpA = arrowUpA;
\ No newline at end of file
diff --git a/dist/ionicons/arrowUpB.js b/dist/ionicons/arrowUpB.js
new file mode 100644
index 000000000..c4b733f1d
--- /dev/null
+++ b/dist/ionicons/arrowUpB.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUpB = void 0;
+var arrowUpB = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6\r\n\tC97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"
+ },
+ "children": []
+ }]
+};
+exports.arrowUpB = arrowUpB;
\ No newline at end of file
diff --git a/dist/ionicons/arrowUpC.js b/dist/ionicons/arrowUpC.js
new file mode 100644
index 000000000..f948ae5b4
--- /dev/null
+++ b/dist/ionicons/arrowUpC.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrowUpC = void 0;
+var arrowUpC = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128.4,189.3L233.4,89c5.8-6,13.7-9,22.4-9c8.7,0,16.5,3,22.4,9l105.4,100.3c12.5,11.9,12.5,31.3,0,43.2\r\n\tc-12.5,11.9-32.7,11.9-45.2,0L288,184.4v217c0,16.9-14.3,30.6-32,30.6c-17.7,0-32-13.7-32-30.6v-217l-50.4,48.2\r\n\tc-12.5,11.9-32.7,11.9-45.2,0C115.9,220.6,115.9,201.3,128.4,189.3z"
+ },
+ "children": []
+ }]
+};
+exports.arrowUpC = arrowUpC;
\ No newline at end of file
diff --git a/dist/ionicons/asterisk.js b/dist/ionicons/asterisk.js
new file mode 100644
index 000000000..9d94b0166
--- /dev/null
+++ b/dist/ionicons/asterisk.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.asterisk = void 0;
+var asterisk = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "480,224 293.172,231.487 401.688,64 342.441,32 256,208 169.824,32 110.328,64 218.828,231.487 32,224 32,288 \r\n\t217.537,277.934 113.65,448 169.619,480 256,304 342.381,480 398.33,448 294.463,277.934 480,288 "
+ },
+ "children": []
+ }]
+};
+exports.asterisk = asterisk;
\ No newline at end of file
diff --git a/dist/ionicons/at.js b/dist/ionicons/at.js
new file mode 100644
index 000000000..f587de970
--- /dev/null
+++ b/dist/ionicons/at.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.at = void 0;
+var at = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M453.8,407.1c-23.9,25.3-52.3,43.8-85.2,55.4C335.7,474.2,301,480,264.5,480c-34.9,0-66.7-5.5-95.3-16.6\r\n\t\tc-28.6-11-53.1-26.4-73.3-46.1c-20.3-19.7-36-43.3-47.2-70.8c-11.2-27.5-16.7-57.5-16.7-90c0-32.1,6.1-61.8,18.3-89.1\r\n\t\tc12.2-27.3,28.8-51,49.9-71.1c21.1-20.1,45.7-35.8,74-47.3C202.3,37.7,232.5,32,264.5,32c27.6,0,54.4,4,80.3,12\r\n\t\tc26,8,49,20.1,69.1,36.1c20.1,16.1,36.1,36.1,48.1,60.2c12,24.1,18,52.4,18,84.9c0,24.1-3.3,45.4-10,63.8\r\n\t\tc-6.7,18.5-15.6,33.9-26.8,46.4c-11.2,12.5-23.9,21.8-38.3,28c-14.4,6.2-29.5,9.3-45.3,9.3c-16.2,0-29.2-3.8-39-11.4\r\n\t\tc-9.7-7.6-14.6-17.3-14.6-28.9h-3c-6.1,9.6-15.4,18.8-28,27.4c-12.6,8.6-28,13-46.3,13c-27.6,0-48.9-9-63.9-27.1\r\n\t\tc-15-18.1-22.5-41.5-22.5-70.5c0-16.9,2.8-33.5,8.5-50c5.7-16.5,13.8-31.1,24.3-44c10.5-12.8,23.1-23.2,37.7-31\r\n\t\tc14.6-7.8,30.8-11.7,48.7-11.7c15.4,0,28.4,3.2,39,9.6c10.5,6.4,17.4,14.3,20.7,23.5h0.6l4.9-24.1h54.2L357,261.4\r\n\t\tc-0.8,5.6-1.9,11.8-3.3,18.7c-1.4,6.8-2.1,13.2-2.1,19.3c0,6.8,1.3,12.5,4,17.2c2.6,4.6,7.8,6.9,15.5,6.9\r\n\t\tc15.8,0,28.9-8.4,39.3-25.3c10.3-16.9,15.5-39.5,15.5-68c0-24.1-4.1-45.5-12.2-64.1c-8.1-18.7-19.4-34.3-33.8-47\r\n\t\tc-14.4-12.6-31.6-22.2-51.4-28.6c-19.9-6.4-41.6-9.6-65.1-9.6c-25.6,0-49,4.5-70.3,13.5s-39.5,21.5-54.5,37.3\r\n\t\tc-15,15.9-26.7,34.5-35,56C95.2,209.1,91,232.3,91,257.2c0,26.5,4.4,50.4,13.1,71.7c8.7,21.3,21,39.4,36.8,54.5\r\n\t\tc15.8,15.1,34.7,26.6,56.6,34.6c21.9,8,46.1,12,72.4,12c32.9,0,61.2-5.2,84.9-15.7c23.7-10.4,45.5-24.9,65.4-43.4L453.8,407.1z\r\n\t\t M263.3,188c-9.7,0-18.3,2.8-25.6,8.4c-7.3,5.6-13.5,12.7-18.6,21.4c-5.1,8.6-8.9,18.2-11.6,28.6c-2.6,10.4-4,20.5-4,30.1\r\n\t\tc0,4.8,0.5,9.9,1.5,15.4c1,5.4,3,10.4,6.1,15.1c3,4.6,7,8.4,11.9,11.4c4.9,3,11.4,4.5,19.5,4.5c11,0,20.3-2.7,28-8.1\r\n\t\tc7.7-5.4,14-12.2,18.9-20.5c4.9-8.2,8.4-17.2,10.7-26.8c2.2-9.6,3.3-18.5,3.3-26.5c0-6.4-0.6-12.7-1.8-19\r\n\t\tc-1.2-6.2-3.3-11.8-6.4-16.9c-3-5-7.2-9.1-12.5-12.3C277.5,189.6,271,188,263.3,188z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M453.8,407.1c-23.9,25.3-52.3,43.8-85.2,55.4C335.7,474.2,301,480,264.5,480c-34.9,0-66.7-5.5-95.3-16.6\r\n\t\tc-28.6-11-53.1-26.4-73.3-46.1c-20.3-19.7-36-43.3-47.2-70.8c-11.2-27.5-16.7-57.5-16.7-90c0-32.1,6.1-61.8,18.3-89.1\r\n\t\tc12.2-27.3,28.8-51,49.9-71.1c21.1-20.1,45.7-35.8,74-47.3C202.3,37.7,232.5,32,264.5,32c27.6,0,54.4,4,80.3,12\r\n\t\tc26,8,49,20.1,69.1,36.1c20.1,16.1,36.1,36.1,48.1,60.2c12,24.1,18,52.4,18,84.9c0,24.1-3.3,45.4-10,63.8\r\n\t\tc-6.7,18.5-15.6,33.9-26.8,46.4c-11.2,12.5-23.9,21.8-38.3,28c-14.4,6.2-29.5,9.3-45.3,9.3c-16.2,0-29.2-3.8-39-11.4\r\n\t\tc-9.7-7.6-14.6-17.3-14.6-28.9h-3c-6.1,9.6-15.4,18.8-28,27.4c-12.6,8.6-28,13-46.3,13c-27.6,0-48.9-9-63.9-27.1\r\n\t\tc-15-18.1-22.5-41.5-22.5-70.5c0-16.9,2.8-33.5,8.5-50c5.7-16.5,13.8-31.1,24.3-44c10.5-12.8,23.1-23.2,37.7-31\r\n\t\tc14.6-7.8,30.8-11.7,48.7-11.7c15.4,0,28.4,3.2,39,9.6c10.5,6.4,17.4,14.3,20.7,23.5h0.6l4.9-24.1h54.2L357,261.4\r\n\t\tc-0.8,5.6-1.9,11.8-3.3,18.7c-1.4,6.8-2.1,13.2-2.1,19.3c0,6.8,1.3,12.5,4,17.2c2.6,4.6,7.8,6.9,15.5,6.9\r\n\t\tc15.8,0,28.9-8.4,39.3-25.3c10.3-16.9,15.5-39.5,15.5-68c0-24.1-4.1-45.5-12.2-64.1c-8.1-18.7-19.4-34.3-33.8-47\r\n\t\tc-14.4-12.6-31.6-22.2-51.4-28.6c-19.9-6.4-41.6-9.6-65.1-9.6c-25.6,0-49,4.5-70.3,13.5s-39.5,21.5-54.5,37.3\r\n\t\tc-15,15.9-26.7,34.5-35,56C95.2,209.1,91,232.3,91,257.2c0,26.5,4.4,50.4,13.1,71.7c8.7,21.3,21,39.4,36.8,54.5\r\n\t\tc15.8,15.1,34.7,26.6,56.6,34.6c21.9,8,46.1,12,72.4,12c32.9,0,61.2-5.2,84.9-15.7c23.7-10.4,45.5-24.9,65.4-43.4L453.8,407.1z\r\n\t\t M263.3,188c-9.7,0-18.3,2.8-25.6,8.4c-7.3,5.6-13.5,12.7-18.6,21.4c-5.1,8.6-8.9,18.2-11.6,28.6c-2.6,10.4-4,20.5-4,30.1\r\n\t\tc0,4.8,0.5,9.9,1.5,15.4c1,5.4,3,10.4,6.1,15.1c3,4.6,7,8.4,11.9,11.4c4.9,3,11.4,4.5,19.5,4.5c11,0,20.3-2.7,28-8.1\r\n\t\tc7.7-5.4,14-12.2,18.9-20.5c4.9-8.2,8.4-17.2,10.7-26.8c2.2-9.6,3.3-18.5,3.3-26.5c0-6.4-0.6-12.7-1.8-19\r\n\t\tc-1.2-6.2-3.3-11.8-6.4-16.9c-3-5-7.2-9.1-12.5-12.3C277.5,189.6,271,188,263.3,188z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.at = at;
\ No newline at end of file
diff --git a/dist/ionicons/backspace.js b/dist/ionicons/backspace.js
new file mode 100644
index 000000000..c498a5c2b
--- /dev/null
+++ b/dist/ionicons/backspace.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.backspace = void 0;
+var backspace = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71\r\n\t\tc0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905c-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371\r\n\t\tl-76.23-76.461l-76.23,76.461c-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905\r\n\t\tc-1.527-1.504-2.373-3.556-2.373-5.707c0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297\r\n\t\tc-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919c1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357\r\n\t\tl76.448,75.533l76.447-75.533c1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919\r\n\t\tc3.146,3.153,3.146,8.273,0,11.427L336.904,256L413.442,332.307z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71\r\n\t\tc0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905c-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371\r\n\t\tl-76.23-76.461l-76.23,76.461c-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905\r\n\t\tc-1.527-1.504-2.373-3.556-2.373-5.707c0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297\r\n\t\tc-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919c1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357\r\n\t\tl76.448,75.533l76.447-75.533c1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919\r\n\t\tc3.146,3.153,3.146,8.273,0,11.427L336.904,256L413.442,332.307z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.backspace = backspace;
\ No newline at end of file
diff --git a/dist/ionicons/backspaceOutline.js b/dist/ionicons/backspaceOutline.js
new file mode 100644
index 000000000..0c0ea3e33
--- /dev/null
+++ b/dist/ionicons/backspaceOutline.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.backspaceOutline = void 0;
+var backspaceOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71c0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905\r\n\t\t\tc-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371l-76.23-76.461l-76.23,76.461\r\n\t\t\tc-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905c-1.527-1.504-2.373-3.556-2.373-5.707\r\n\t\t\tc0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297c-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919\r\n\t\t\tc1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357l76.448,75.533l76.447-75.533\r\n\t\t\tc1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919c3.146,3.153,3.146,8.273,0,11.427\r\n\t\t\tL336.904,256L413.442,332.307z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71c0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905\r\n\t\t\tc-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371l-76.23-76.461l-76.23,76.461\r\n\t\t\tc-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905c-1.527-1.504-2.373-3.556-2.373-5.707\r\n\t\t\tc0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297c-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919\r\n\t\t\tc1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357l76.448,75.533l76.447-75.533\r\n\t\t\tc1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919c3.146,3.153,3.146,8.273,0,11.427\r\n\t\t\tL336.904,256L413.442,332.307z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M480,383c0,8.837-5.163,17-14,17H168\r\n\t\tc-15.167,0-24.333-6.666-32-16.5L40,256l96-128.438c9.5-13,21.167-15.562,32-15.562h297.5c8.837,0,14.5,6.163,14.5,15V383z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M480,383c0,8.837-5.163,17-14,17H168\r\n\t\tc-15.167,0-24.333-6.666-32-16.5L40,256l96-128.438c9.5-13,21.167-15.562,32-15.562h297.5c8.837,0,14.5,6.163,14.5,15V383z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.backspaceOutline = backspaceOutline;
\ No newline at end of file
diff --git a/dist/ionicons/bag.js b/dist/ionicons/bag.js
new file mode 100644
index 000000000..74a521879
--- /dev/null
+++ b/dist/ionicons/bag.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bag = void 0;
+var bag = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,160h-64v-4.5C384,87,329,32,260.5,32h-8C184,32,128,87,128,155.5v4.5H64L32,480h448L448,160z M160,155.5\r\n\tc0-50.7,41.8-91.5,92.5-91.5h7.5h0.5c50.7,0,91.5,40.8,91.5,91.5v4.5H160V155.5z M67.8,448l24.9-256H128v36.3\r\n\tc-9.6,5.5-16,15.9-16,27.7c0,17.7,14.3,32,32,32s32-14.3,32-32c0-11.8-6.4-22.2-16-27.7V192h192v36.3c-9.6,5.5-16,15.9-16,27.7\r\n\tc0,17.7,14.3,32,32,32s32-14.3,32-32c0-11.8-6.4-22.2-16-27.7V192h35.4l24.9,256H67.8z"
+ },
+ "children": []
+ }]
+};
+exports.bag = bag;
\ No newline at end of file
diff --git a/dist/ionicons/batteryCharging.js b/dist/ionicons/batteryCharging.js
new file mode 100644
index 000000000..cf3c9cac0
--- /dev/null
+++ b/dist/ionicons/batteryCharging.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryCharging = void 0;
+var batteryCharging = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M42.1,384h381.1c5.5,0,9.9-4.5,9.9-10v-54h36.9c5.6,0,10.1-4.5,10.1-10V202c0-5.5-4.5-10-10.1-10H433v-54\r\n\tc0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236C32,379.5,36.5,384,42.1,384z M257.4,160l-27.9,81H291L190.6,352l27.9-81H157\r\n\tL257.4,160z"
+ },
+ "children": []
+ }]
+};
+exports.batteryCharging = batteryCharging;
\ No newline at end of file
diff --git a/dist/ionicons/batteryEmpty.js b/dist/ionicons/batteryEmpty.js
new file mode 100644
index 000000000..8527550a2
--- /dev/null
+++ b/dist/ionicons/batteryEmpty.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryEmpty = void 0;
+var batteryEmpty = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z M448,288h-14.8H401v32v32H64V160h337v32v32h32.2H448V288z"
+ },
+ "children": []
+ }]
+};
+exports.batteryEmpty = batteryEmpty;
\ No newline at end of file
diff --git a/dist/ionicons/batteryFull.js b/dist/ionicons/batteryFull.js
new file mode 100644
index 000000000..427bb76f9
--- /dev/null
+++ b/dist/ionicons/batteryFull.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryFull = void 0;
+var batteryFull = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z"
+ },
+ "children": []
+ }]
+};
+exports.batteryFull = batteryFull;
\ No newline at end of file
diff --git a/dist/ionicons/batteryHalf.js b/dist/ionicons/batteryHalf.js
new file mode 100644
index 000000000..db0c1cabd
--- /dev/null
+++ b/dist/ionicons/batteryHalf.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryHalf = void 0;
+var batteryHalf = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z M448,288h-14.8H401v32v32h-49l-32-192h81v32v32h32.2H448V288z\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.batteryHalf = batteryHalf;
\ No newline at end of file
diff --git a/dist/ionicons/batteryLow.js b/dist/ionicons/batteryLow.js
new file mode 100644
index 000000000..7d123ac7d
--- /dev/null
+++ b/dist/ionicons/batteryLow.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.batteryLow = void 0;
+var batteryLow = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M42.1,384h381.1c5.5,0,9.9-4.5,9.9-10v-54h36.9c5.6,0,10.1-4.5,10.1-10V202c0-5.5-4.5-10-10.1-10H433v-54\r\n\tc0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236C32,379.5,36.5,384,42.1,384z M401,160v32v32h32.2H448v64h-14.8H401v32v32\r\n\tH224l-32-192H401z"
+ },
+ "children": []
+ }]
+};
+exports.batteryLow = batteryLow;
\ No newline at end of file
diff --git a/dist/ionicons/beaker.js b/dist/ionicons/beaker.js
new file mode 100644
index 000000000..b1f05f351
--- /dev/null
+++ b/dist/ionicons/beaker.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.beaker = void 0;
+var beaker = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M143.5,192.5V416c0,8.836,7.851,16.5,16.688,16.5h208c8.836,0,15.312-7.664,15.312-16.5V192.5H143.5z M359.5,344\r\n\t\t\tc0,4.418-3.582,8-8,8s-8-3.582-8-8v-48c0-4.418,3.582-8,8-8s8,3.582,8,8V344z M352.188,272c-4.418,0-8-3.581-8-8s3.582-8,8-8\r\n\t\t\ts8,3.581,8,8S356.605,272,352.188,272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M143.5,192.5V416c0,8.836,7.851,16.5,16.688,16.5h208c8.836,0,15.312-7.664,15.312-16.5V192.5H143.5z M359.5,344\r\n\t\t\tc0,4.418-3.582,8-8,8s-8-3.582-8-8v-48c0-4.418,3.582-8,8-8s8,3.582,8,8V344z M352.188,272c-4.418,0-8-3.581-8-8s3.582-8,8-8\r\n\t\t\ts8,3.581,8,8S356.605,272,352.188,272z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M445.078,32.5H128.438c-54.345,0-64.594,27.426-64.594,39.75C94.094,76.5,95.5,77,95.5,109c0,16,0,307,0,307\r\n\t\t\tc0,35.346,29.341,64.5,64.688,64.5h207.75c35.346,0,63.562-29.154,63.562-64.5c0,0,0-316.75,0-335.5\r\n\t\t\tc0-20.349,12.298-38.276,13.516-40.183c1.219-1.906,3-3.798,3-4.958C448.016,34.188,447.6,32.5,445.078,32.5z M399.5,80.5V416\r\n\t\t\tc0,17.92-12.443,32.5-29.812,32.5h-209.5c-17.617,0-32.688-14.883-32.688-32.5V109c0-11.812,1.094-37.25-3.828-43.957\r\n\t\t\tc0.921-0.793,3.114-0.543,4.516-0.543h272.66C400.112,64.5,399.5,75.299,399.5,80.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M445.078,32.5H128.438c-54.345,0-64.594,27.426-64.594,39.75C94.094,76.5,95.5,77,95.5,109c0,16,0,307,0,307\r\n\t\t\tc0,35.346,29.341,64.5,64.688,64.5h207.75c35.346,0,63.562-29.154,63.562-64.5c0,0,0-316.75,0-335.5\r\n\t\t\tc0-20.349,12.298-38.276,13.516-40.183c1.219-1.906,3-3.798,3-4.958C448.016,34.188,447.6,32.5,445.078,32.5z M399.5,80.5V416\r\n\t\t\tc0,17.92-12.443,32.5-29.812,32.5h-209.5c-17.617,0-32.688-14.883-32.688-32.5V109c0-11.812,1.094-37.25-3.828-43.957\r\n\t\t\tc0.921-0.793,3.114-0.543,4.516-0.543h272.66C400.112,64.5,399.5,75.299,399.5,80.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.beaker = beaker;
\ No newline at end of file
diff --git a/dist/ionicons/beer.js b/dist/ionicons/beer.js
new file mode 100644
index 000000000..357698f7f
--- /dev/null
+++ b/dist/ionicons/beer.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.beer = void 0;
+var beer = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,160h-32v-16c14.5-3.5,32-24.3,32-48c0-35.3-28.7-64-64-64c-16.3,0-31.1,6.1-42.4,16.1C297.2,38,281.4,32,264.2,32\r\n\t\tc-15.8,0-30.4,5.1-42.3,13.7c-9.9-8.5-22.9-13.7-37-13.7c-17.1,0-32.4,7.6-42.8,19.5C130.4,39.5,114.1,32,96,32\r\n\t\tc-35.3,0-64,28.7-64,64c0,16.2,6.1,31,16,42.3c0,0.2,0,0.4,0,0.7v54c0,26.5,21.5,48,48,48v223c0,8.8,7.2,16,16,16h256\r\n\t\tc8.8,0,16-7.2,16-16v-80h32c35.3,0,64-28.7,64-64v-96C480,188.7,451.3,160,416,160z M327.8,304c-1.6,0-3-0.6-4.3-1.4\r\n\t\tc-2.2-1.4-3.5-4-3.5-6.8V248c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8v48.1l0,0C336,301.1,332.2,304,327.8,304z M335,228.4\r\n\t\tc-1.2,1.8-3,3-5.1,3.5c-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1\r\n\t\tc1.8,1.2,3,3,3.5,5.1C336.6,224.4,336.2,226.6,335,228.4z M352,160v32H224.2c-0.1-4.3-3.6-7.8-8-7.8c-4.4,0-7.9,3.5-8,7.8H128v-9\r\n\t\tv-31.6c6.5-3.8,12.3-8.6,17-14.3c1.2-1.5,2.4-3,3.5-4.6c1.5,1.2,3,2.4,4.6,3.4c9.1,6.1,20,9.7,31.7,9.7c6.4,0,12.6-1.1,18.3-3\r\n\t\tc12.8,20.2,35.3,33.7,61,33.7c22,0,41.7-9.9,54.9-25.4c5.7-6.7,10.2-14.4,13.1-22.9H352V160z M382.6,105.2\r\n\t\tc-2.5-5.5-8.1-9.2-14.6-9.2h-48h-7c0,0-8.7-0.7-8.7,8.2s-2.9,17.1-7.8,23.7c-7.3,9.9-19.1,16.4-32.4,16.4\r\n\t\tc-14.9,0-27.9-8.1-34.8-20.2c-1.6-2.7-2.8-5.6-3.7-8.6c-0.1-0.6-0.3-1.1-0.4-1.6c-2-5.9-7.5-10.2-14.1-10.2c-3.9,0-7.5,1.5-10.2,4\r\n\t\tc0,0,0,0-0.1,0.1c-2.4,2.1-5.3,3.7-8.4,4.7c-2.4,0.8-5,1.2-7.7,1.2c-7.5,0-14.7-4-18.8-8.6c-10-11.4-23.7-6.8-29.7-5.5\r\n\t\ts-12.2,11.7-12.2,11.7c-1.1,2.1-2.5,4-4,5.8c-5.9,6.7-14.5,11-24.1,11v32v23v26c-8.8,0-16-7.2-16-16v-35v-34.3\r\n\t\tc-7.7-4.5-13.4-12.1-15.3-21c-0.5-2.1-0.7-4.4-0.7-6.7c0-17.6,14.4-32,32-32c11.8,0,23.3,7.7,30.1,15.4s26.7,7.7,33.9,0\r\n\t\tc6.8-7.3,14.3-15.4,24.8-15.4c6,0,11.6,2.2,15.9,5.8c1.9,1.6,3.6,3.5,4.9,5.6c1.1,1.8,2,4.2,3.1,5.8c2.7,3.4,6.5,5.5,11.2,5.5\r\n\t\tc4.4,0,8.3-1.9,11-5c0.6-0.7,1.2-1.5,1.7-2.3c2-2.5,4.2-4.8,6.7-6.8c6.8-5.4,15.5-8.6,24.8-8.6c10.6,0,20.2,4.1,27.4,10.9\r\n\t\tc1.7,1.6,6.7,4.5,13.2,5.1c4.5,0.4,6.1,0.3,8.2,0c10.3-1.3,14.4-4.7,16.4-6.6c5.8-5.8,13.8-9.4,22.6-9.4c17.6,0,32,14.4,32,32\r\n\t\tC384,99.2,383.5,102.3,382.6,105.2z M448,320c0,17.7-14.3,32-32,32h-32V192h32c17.7,0,32,14.3,32,32V320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,160h-32v-16c14.5-3.5,32-24.3,32-48c0-35.3-28.7-64-64-64c-16.3,0-31.1,6.1-42.4,16.1C297.2,38,281.4,32,264.2,32\r\n\t\tc-15.8,0-30.4,5.1-42.3,13.7c-9.9-8.5-22.9-13.7-37-13.7c-17.1,0-32.4,7.6-42.8,19.5C130.4,39.5,114.1,32,96,32\r\n\t\tc-35.3,0-64,28.7-64,64c0,16.2,6.1,31,16,42.3c0,0.2,0,0.4,0,0.7v54c0,26.5,21.5,48,48,48v223c0,8.8,7.2,16,16,16h256\r\n\t\tc8.8,0,16-7.2,16-16v-80h32c35.3,0,64-28.7,64-64v-96C480,188.7,451.3,160,416,160z M327.8,304c-1.6,0-3-0.6-4.3-1.4\r\n\t\tc-2.2-1.4-3.5-4-3.5-6.8V248c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8v48.1l0,0C336,301.1,332.2,304,327.8,304z M335,228.4\r\n\t\tc-1.2,1.8-3,3-5.1,3.5c-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1\r\n\t\tc1.8,1.2,3,3,3.5,5.1C336.6,224.4,336.2,226.6,335,228.4z M352,160v32H224.2c-0.1-4.3-3.6-7.8-8-7.8c-4.4,0-7.9,3.5-8,7.8H128v-9\r\n\t\tv-31.6c6.5-3.8,12.3-8.6,17-14.3c1.2-1.5,2.4-3,3.5-4.6c1.5,1.2,3,2.4,4.6,3.4c9.1,6.1,20,9.7,31.7,9.7c6.4,0,12.6-1.1,18.3-3\r\n\t\tc12.8,20.2,35.3,33.7,61,33.7c22,0,41.7-9.9,54.9-25.4c5.7-6.7,10.2-14.4,13.1-22.9H352V160z M382.6,105.2\r\n\t\tc-2.5-5.5-8.1-9.2-14.6-9.2h-48h-7c0,0-8.7-0.7-8.7,8.2s-2.9,17.1-7.8,23.7c-7.3,9.9-19.1,16.4-32.4,16.4\r\n\t\tc-14.9,0-27.9-8.1-34.8-20.2c-1.6-2.7-2.8-5.6-3.7-8.6c-0.1-0.6-0.3-1.1-0.4-1.6c-2-5.9-7.5-10.2-14.1-10.2c-3.9,0-7.5,1.5-10.2,4\r\n\t\tc0,0,0,0-0.1,0.1c-2.4,2.1-5.3,3.7-8.4,4.7c-2.4,0.8-5,1.2-7.7,1.2c-7.5,0-14.7-4-18.8-8.6c-10-11.4-23.7-6.8-29.7-5.5\r\n\t\ts-12.2,11.7-12.2,11.7c-1.1,2.1-2.5,4-4,5.8c-5.9,6.7-14.5,11-24.1,11v32v23v26c-8.8,0-16-7.2-16-16v-35v-34.3\r\n\t\tc-7.7-4.5-13.4-12.1-15.3-21c-0.5-2.1-0.7-4.4-0.7-6.7c0-17.6,14.4-32,32-32c11.8,0,23.3,7.7,30.1,15.4s26.7,7.7,33.9,0\r\n\t\tc6.8-7.3,14.3-15.4,24.8-15.4c6,0,11.6,2.2,15.9,5.8c1.9,1.6,3.6,3.5,4.9,5.6c1.1,1.8,2,4.2,3.1,5.8c2.7,3.4,6.5,5.5,11.2,5.5\r\n\t\tc4.4,0,8.3-1.9,11-5c0.6-0.7,1.2-1.5,1.7-2.3c2-2.5,4.2-4.8,6.7-6.8c6.8-5.4,15.5-8.6,24.8-8.6c10.6,0,20.2,4.1,27.4,10.9\r\n\t\tc1.7,1.6,6.7,4.5,13.2,5.1c4.5,0.4,6.1,0.3,8.2,0c10.3-1.3,14.4-4.7,16.4-6.6c5.8-5.8,13.8-9.4,22.6-9.4c17.6,0,32,14.4,32,32\r\n\t\tC384,99.2,383.5,102.3,382.6,105.2z M448,320c0,17.7-14.3,32-32,32h-32V192h32c17.7,0,32,14.3,32,32V320z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "168.2",
+ "cy": "168.2",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "168.2",
+ "cy": "168.2",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "328.2",
+ "cy": "168.2",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "328.2",
+ "cy": "168.2",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.beer = beer;
\ No newline at end of file
diff --git a/dist/ionicons/bluetooth.js b/dist/ionicons/bluetooth.js
new file mode 100644
index 000000000..fe45d486c
--- /dev/null
+++ b/dist/ionicons/bluetooth.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bluetooth = void 0;
+var bluetooth = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M140,143.6c-15.9,15.9-11.7,17.3-10.6,18.4c1.1,1.1,89.8,85.6,89.8,85.6s3.9,3.4,3.9,8.4h0c0,5-3.9,8.4-3.9,8.4\r\n\t\ts-88.7,84.5-89.8,85.6c-1.1,1.1-5.3,2.5,10.6,18.4c15.9,15.9,18.4,12.2,19.2,11.4l67.4-64.3c0.1-0.1,0.2-0.2,0.3-0.3\r\n\t\tc0.1-0.1,0.3-0.2,0.4-0.3c2.3-1.9,9.8-10.6,9.8-3.2c0,7.3,0,151.8,0,156.4v0.1v1.7c0,5.5,5.2,10.1,11.6,10.1c3.5,0,6.7-1.3,8.9-3.5\r\n\t\tl0,0c0,0,118.2-112.8,122.8-117.2c4.6-4.4,5-10.7,1-14.7l-83.9-80.3c0,0-4.4-4.3-4.4-8.3s4.4-8.3,4.4-8.3l83.9-80.3\r\n\t\tc4-4,3.6-10.4-1-14.7c-4.6-4.4-122.8-117.2-122.8-117.2l0,0c-2.1-2.1-5.3-3.5-8.8-3.5c-6.4,0-11.6,4.6-11.6,10.1v1.7V44\r\n\t\tc0,4.6,0,149.1,0,156.4c0,7.4-7.5-1.3-9.8-3.2c-0.1-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.2-0.3-0.3l-67.4-64.3\r\n\t\tC158.3,131.4,155.9,127.7,140,143.6z M280,119.9c0-6.6,7.5,2.3,9.8,4.4l30.5,29.2c2.1,2,2.9,4.7,2.9,7.2c0,2.5-1,5.6-2.8,7.3\r\n\t\tc-1.8,1.7-30.8,29.5-30.8,29.5c-2.3,1.8-9.6,9.8-9.6,1.7C280,199.2,280,126.5,280,119.9z M280,312.8c0-8.2,7.2-0.2,9.6,1.7\r\n\t\tc0,0,29.1,27.8,30.9,29.5c1.8,1.7,2.8,4.9,2.8,7.3s-0.8,5.2-2.9,7.2l-30.5,29.2c-2.3,2.1-9.8,11-9.8,4.4\r\n\t\tC280,385.5,280,312.8,280,312.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M140,143.6c-15.9,15.9-11.7,17.3-10.6,18.4c1.1,1.1,89.8,85.6,89.8,85.6s3.9,3.4,3.9,8.4h0c0,5-3.9,8.4-3.9,8.4\r\n\t\ts-88.7,84.5-89.8,85.6c-1.1,1.1-5.3,2.5,10.6,18.4c15.9,15.9,18.4,12.2,19.2,11.4l67.4-64.3c0.1-0.1,0.2-0.2,0.3-0.3\r\n\t\tc0.1-0.1,0.3-0.2,0.4-0.3c2.3-1.9,9.8-10.6,9.8-3.2c0,7.3,0,151.8,0,156.4v0.1v1.7c0,5.5,5.2,10.1,11.6,10.1c3.5,0,6.7-1.3,8.9-3.5\r\n\t\tl0,0c0,0,118.2-112.8,122.8-117.2c4.6-4.4,5-10.7,1-14.7l-83.9-80.3c0,0-4.4-4.3-4.4-8.3s4.4-8.3,4.4-8.3l83.9-80.3\r\n\t\tc4-4,3.6-10.4-1-14.7c-4.6-4.4-122.8-117.2-122.8-117.2l0,0c-2.1-2.1-5.3-3.5-8.8-3.5c-6.4,0-11.6,4.6-11.6,10.1v1.7V44\r\n\t\tc0,4.6,0,149.1,0,156.4c0,7.4-7.5-1.3-9.8-3.2c-0.1-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.2-0.3-0.3l-67.4-64.3\r\n\t\tC158.3,131.4,155.9,127.7,140,143.6z M280,119.9c0-6.6,7.5,2.3,9.8,4.4l30.5,29.2c2.1,2,2.9,4.7,2.9,7.2c0,2.5-1,5.6-2.8,7.3\r\n\t\tc-1.8,1.7-30.8,29.5-30.8,29.5c-2.3,1.8-9.6,9.8-9.6,1.7C280,199.2,280,126.5,280,119.9z M280,312.8c0-8.2,7.2-0.2,9.6,1.7\r\n\t\tc0,0,29.1,27.8,30.9,29.5c1.8,1.7,2.8,4.9,2.8,7.3s-0.8,5.2-2.9,7.2l-30.5,29.2c-2.3,2.1-9.8,11-9.8,4.4\r\n\t\tC280,385.5,280,312.8,280,312.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.bluetooth = bluetooth;
\ No newline at end of file
diff --git a/dist/ionicons/bonfire.js b/dist/ionicons/bonfire.js
new file mode 100644
index 000000000..012b3a863
--- /dev/null
+++ b/dist/ionicons/bonfire.js
@@ -0,0 +1,147 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bonfire = void 0;
+var bonfire = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M270.93,350.601C270.219,342.42,263.364,336,255,336c-7.635,0-14.01,5.352-15.605,12.506l-0.007-0.002l-15.612,92.502\r\n\t\tC223.273,443.258,223,445.597,223,448c0,17.673,14.327,32,32,32s32-14.327,32-32c0-2.899-0.393-5.705-1.115-8.377L270.93,350.601z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M270.93,350.601C270.219,342.42,263.364,336,255,336c-7.635,0-14.01,5.352-15.605,12.506l-0.007-0.002l-15.612,92.502\r\n\t\tC223.273,443.258,223,445.597,223,448c0,17.673,14.327,32,32,32s32-14.327,32-32c0-2.899-0.393-5.705-1.115-8.377L270.93,350.601z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "305.904,355.046 305.903,355.044 305.9,355.046 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "305.904,355.046 305.903,355.044 305.9,355.046 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M392.875,390.261c-1.718-1.407-3.3-2.881-5.138-3.94l-63.629-47.507c-5.775-3.796-11.997-3.689-16.527,0.85\r\n\t\tc-4.131,4.143-4.686,10.369-1.678,15.381l48.959,65.763c0.946,1.494,2.166,2.799,3.366,4.195c7.802,9.071,25.08,9.588,34.646-0.007\r\n\t\tC402.445,415.409,402.305,397.986,392.875,390.261z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M392.875,390.261c-1.718-1.407-3.3-2.881-5.138-3.94l-63.629-47.507c-5.775-3.796-11.997-3.689-16.527,0.85\r\n\t\tc-4.131,4.143-4.686,10.369-1.678,15.381l48.959,65.763c0.946,1.494,2.166,2.799,3.366,4.195c7.802,9.071,25.08,9.588,34.646-0.007\r\n\t\tC402.445,415.409,402.305,397.986,392.875,390.261z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "372.511,335.018 372.509,335.018 372.509,335.02 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "372.511,335.018 372.509,335.018 372.509,335.02 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M435.428,322.475l-59.521-2.284c-3.891-0.558-7.4,2.053-8.065,6.011c-0.604,3.611,1.347,7.138,4.668,8.816l0.013-0.039\r\n\t\tc0.041,0.019,0.062,0.006,0.105,0.025l57.717,17.756c8.289,1.93,17.656-2.343,17.656-11.648\r\n\t\tC448,329.328,444.917,323.667,435.428,322.475z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M435.428,322.475l-59.521-2.284c-3.891-0.558-7.4,2.053-8.065,6.011c-0.604,3.611,1.347,7.138,4.668,8.816l0.013-0.039\r\n\t\tc0.041,0.019,0.062,0.006,0.105,0.025l57.717,17.756c8.289,1.93,17.656-2.343,17.656-11.648\r\n\t\tC448,329.328,444.917,323.667,435.428,322.475z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "139.222,335.02 139.222,335.018 139.22,335.018 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "139.222,335.02 139.222,335.018 139.22,335.018 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M139.209,334.979l0.013,0.039c3.321-1.679,5.272-5.205,4.668-8.816c-0.665-3.958-4.175-6.568-8.065-6.011l-59.521,2.284\r\n\t\tC66.813,323.667,64,329.328,64,341.111c0,9.306,9.098,13.578,17.387,11.648l57.717-17.756\r\n\t\tC139.146,334.984,139.168,334.997,139.209,334.979z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M139.209,334.979l0.013,0.039c3.321-1.679,5.272-5.205,4.668-8.816c-0.665-3.958-4.175-6.568-8.065-6.011l-59.521,2.284\r\n\t\tC66.813,323.667,64,329.328,64,341.111c0,9.306,9.098,13.578,17.387,11.648l57.717-17.756\r\n\t\tC139.146,334.984,139.168,334.997,139.209,334.979z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M187.903,338.807l-63.597,47.431c-1.838,1.057-3.569,2.362-5.137,3.931c-9.563,9.567-9.566,25.088-0.004,34.65\r\n\t\tc9.561,9.571,25.055,9.578,34.618,0.007c1.3-1.299,2.405-2.694,3.352-4.185L206.097,355c3.007-5,2.452-11.213-1.677-15.346\r\n\t\tC199.893,335.126,192.712,334.762,187.903,338.807z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M187.903,338.807l-63.597,47.431c-1.838,1.057-3.569,2.362-5.137,3.931c-9.563,9.567-9.566,25.088-0.004,34.65\r\n\t\tc9.561,9.571,25.055,9.578,34.618,0.007c1.3-1.299,2.405-2.694,3.352-4.185L206.097,355c3.007-5,2.452-11.213-1.677-15.346\r\n\t\tC199.893,335.126,192.712,334.762,187.903,338.807z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M352,128c0-61-72.35-96-96-96c12.017,85.553-101.667,119.667-112,192s48,96,48,96\r\n\t\tc16.333-59.896,72.386-79.997,109.667-105.667C342.333,186.333,352,160.061,352,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,128c0-61-72.35-96-96-96c12.017,85.553-101.667,119.667-112,192s48,96,48,96\r\n\t\tc16.333-59.896,72.386-79.997,109.667-105.667C342.333,186.333,352,160.061,352,128z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M352,256c5.03-15.613,4.91-49,0-64c-8.999,18.5-26.287,34.3-47.186,48.689c-8.584,5.911-19.859,11.443-28.83,16.797\r\n\t\tc-18.714,11.165-34.984,21.848-47.329,36.4C240.001,311.25,256.973,320,272,320C307.999,320,336,305.662,352,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,256c5.03-15.613,4.91-49,0-64c-8.999,18.5-26.287,34.3-47.186,48.689c-8.584,5.911-19.859,11.443-28.83,16.797\r\n\t\tc-18.714,11.165-34.984,21.848-47.329,36.4C240.001,311.25,256.973,320,272,320C307.999,320,336,305.662,352,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M152.037,160c11.722-15.952,24.856-25.209,38.19-38.362c13.436-13.254,22.077-22.471,27.464-33.173\r\n\t\tC207.025,67.134,189.842,61.857,176,64c2.333,30.334-29.97,46.567-32,68.657C142.773,146,146.5,156,152.037,160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M152.037,160c11.722-15.952,24.856-25.209,38.19-38.362c13.436-13.254,22.077-22.471,27.464-33.173\r\n\t\tC207.025,67.134,189.842,61.857,176,64c2.333,30.334-29.97,46.567-32,68.657C142.773,146,146.5,156,152.037,160z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.bonfire = bonfire;
\ No newline at end of file
diff --git a/dist/ionicons/bookmark.js b/dist/ionicons/bookmark.js
new file mode 100644
index 000000000..5f12e869f
--- /dev/null
+++ b/dist/ionicons/bookmark.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bookmark = void 0;
+var bookmark = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344,64H168c-4.4,0-8,3.6-8,8v56h192V72C352,67.6,348.4,64,344,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344,64H168c-4.4,0-8,3.6-8,8v56h192V72C352,67.6,348.4,64,344,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "160,448 256,352 352,448 352,144 160,144 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "160,448 256,352 352,448 352,144 160,144 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.bookmark = bookmark;
\ No newline at end of file
diff --git a/dist/ionicons/bowtie.js b/dist/ionicons/bowtie.js
new file mode 100644
index 000000000..c8991b2d8
--- /dev/null
+++ b/dist/ionicons/bowtie.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bowtie = void 0;
+var bowtie = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M223.955,212.011c0,0,8.054-4.679,19.985-7.011c21.318-4.166,39.472-5.5,47.466,8.5c9.777,17.124,18.402,53.417,16.488,85.5\r\n\tc-1,16.75-4.622,22.125-4.622,22.125s-15.333,9.525-47.341,6.875c-34.725-2.875-39.971-15.004-39.971-15.004\r\n\ts4.497-11.305,7.995-42.499C227.452,239.303,223.955,212.011,223.955,212.011z"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M183.984,285c12.546-3.323,23.03-7.189,27.659-8.985c0.693-4.707,1.28-9.718,1.694-15.015\r\n\t\tc0.271-3.461,0.465-6.754,0.602-9.896c-6.854-2.333-13.534-4.851-28.769-10.104c-38.66-13.333-57.146-17-57.146-17\r\n\t\ts14.24-2.5,42.219,3c19.986,3.929,34.392,9.5,43.947,14.333c0.771-15.999-2.477-32.583-2.477-32.583\r\n\t\tC189.729,168.5,119.53,112,84.368,112C57.888,112,32,180.5,32,256s23.03,144,51.51,144c33.356,0,116.463-80,116.463-80\r\n\t\ts5.738-12.578,9.879-33.572c-18.788,5.198-63.84,8.572-63.84,8.572S166.996,289.5,183.984,285z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M183.984,285c12.546-3.323,23.03-7.189,27.659-8.985c0.693-4.707,1.28-9.718,1.694-15.015\r\n\t\tc0.271-3.461,0.465-6.754,0.602-9.896c-6.854-2.333-13.534-4.851-28.769-10.104c-38.66-13.333-57.146-17-57.146-17\r\n\t\ts14.24-2.5,42.219,3c19.986,3.929,34.392,9.5,43.947,14.333c0.771-15.999-2.477-32.583-2.477-32.583\r\n\t\tC189.729,168.5,119.53,112,84.368,112C57.888,112,32,180.5,32,256s23.03,144,51.51,144c33.356,0,116.463-80,116.463-80\r\n\t\ts5.738-12.578,9.879-33.572c-18.788,5.198-63.84,8.572-63.84,8.572S166.996,289.5,183.984,285z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M427.632,112c-36.37,0-102.363,56.5-124.348,96.75l-0.761,1.375c0,0,1.389,2.527,1.873,3.375\r\n\t\tc3.424,5.996,6.704,14.348,9.442,24.041c8.115-2.805,23.599-8.164,37.523-13.041c19.985-7,34.975-9.5,34.975-9.5\r\n\t\ts-52.982,23.741-69.605,34.264c2.169,10.159,3.693,21.199,4.218,32.242c5.423,2.216,16.551,6.475,29.914,9.994\r\n\t\tc18.986,5,40.398,11.5,40.398,11.5s-54.202-5.27-70.114-12.522c-0.013,2.862-0.095,5.709-0.263,8.522\r\n\t\tc-0.997,16.719-4.608,22.104-4.622,22.124C323.883,331.667,391.262,400,428.49,400C456.97,400,480,331.5,480,256\r\n\t\tS454.112,112,427.632,112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M427.632,112c-36.37,0-102.363,56.5-124.348,96.75l-0.761,1.375c0,0,1.389,2.527,1.873,3.375\r\n\t\tc3.424,5.996,6.704,14.348,9.442,24.041c8.115-2.805,23.599-8.164,37.523-13.041c19.985-7,34.975-9.5,34.975-9.5\r\n\t\ts-52.982,23.741-69.605,34.264c2.169,10.159,3.693,21.199,4.218,32.242c5.423,2.216,16.551,6.475,29.914,9.994\r\n\t\tc18.986,5,40.398,11.5,40.398,11.5s-54.202-5.27-70.114-12.522c-0.013,2.862-0.095,5.709-0.263,8.522\r\n\t\tc-0.997,16.719-4.608,22.104-4.622,22.124C323.883,331.667,391.262,400,428.49,400C456.97,400,480,331.5,480,256\r\n\t\tS454.112,112,427.632,112z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.bowtie = bowtie;
\ No newline at end of file
diff --git a/dist/ionicons/briefcase.js b/dist/ionicons/briefcase.js
new file mode 100644
index 000000000..e4f09e7b3
--- /dev/null
+++ b/dist/ionicons/briefcase.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.briefcase = void 0;
+var briefcase = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M272,272h-32v-8H32v176c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.7-3.6,7.7-8V264H272V272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M272,272h-32v-8H32v176c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.7-3.6,7.7-8V264H272V272z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64h-89.6c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8v96h208\r\n\t\tv-8h32v8h208v-96C480,147.6,476.7,144,472.2,144z M320,116.2c0,0.3,0,0.6,0,1V144H192v-26.8c0-0.4,0-0.7,0-1c0-0.3,0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.2,18.8-19.2h90.4c10.1,0,18.8,9.4,18.8,19.2C320,115.6,320,115.9,320,116.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64h-89.6c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8v96h208\r\n\t\tv-8h32v8h208v-96C480,147.6,476.7,144,472.2,144z M320,116.2c0,0.3,0,0.6,0,1V144H192v-26.8c0-0.4,0-0.7,0-1c0-0.3,0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.2,18.8-19.2h90.4c10.1,0,18.8,9.4,18.8,19.2C320,115.6,320,115.9,320,116.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.briefcase = briefcase;
\ No newline at end of file
diff --git a/dist/ionicons/bug.js b/dist/ionicons/bug.js
new file mode 100644
index 000000000..58339097b
--- /dev/null
+++ b/dist/ionicons/bug.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.bug = void 0;
+var bug = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M374.64,127.327C345.365,88.512,303.062,64,256,64s-89.365,24.512-118.64,63.327c6.354,15.64,15.833,30,28.13,42.297\r\n\t\tc24.176,24.176,56.319,37.49,90.51,37.49s66.334-13.314,90.51-37.49C358.807,157.327,368.286,142.966,374.64,127.327z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M374.64,127.327C345.365,88.512,303.062,64,256,64s-89.365,24.512-118.64,63.327c6.354,15.64,15.833,30,28.13,42.297\r\n\t\tc24.176,24.176,56.319,37.49,90.51,37.49s66.334-13.314,90.51-37.49C358.807,157.327,368.286,142.966,374.64,127.327z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M126.836,142.824c-1.725,2.827-3.396,5.703-4.992,8.644c-2.926-1.84-5.319-3.74-7.745-5.773\r\n\t\tc-1.171-0.981-2.954-3.949-4.546-7.35c5.41-11.314,1.181-25.037-9.914-31.261c-11.561-6.484-26.188-2.372-32.674,9.189\r\n\t\tc-6.485,11.56-2.371,26.188,9.187,32.673c1.251,0.702,2.539,1.272,3.847,1.729c2.816,6.269,7.32,14.331,13.548,19.547\r\n\t\tc4.184,3.507,8.792,7.117,15.204,10.674c-7.195,20.259-11.576,42.303-12.545,65.427c-11.026,0.207-18.619,2.1-25.474,4.122\r\n\t\tc-4.16,1.227-8.192,3.395-11.823,5.852c-0.954-0.115-1.923-0.182-2.908-0.182c-13.255,0-24,10.745-24,24s10.745,24,24,24\r\n\t\tc12.93,0,23.467-10.227,23.976-23.032c5.046-1.482,9.888-2.659,17.095-2.774c3.167,33.015,13.304,63.483,28.613,89.224\r\n\t\tc-14.166,11.006-22.882,23.016-26.605,36.317c0,0-0.75,0.438-1.873,1.366c-0.982,0.794-1.932,1.65-2.804,2.619\r\n\t\tc-8.865,9.855-8.062,25.031,1.793,33.895c9.854,8.865,25.028,8.062,33.893-1.793c8.087-8.988,8.095-22.381,0.558-31.395\r\n\t\tc3.074-5.562,6.236-9.014,13.67-14.961C171.368,425.235,207.723,445.619,248,448V222.872\r\n\t\tC194.764,219.954,149.229,188.138,126.836,142.824z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M126.836,142.824c-1.725,2.827-3.396,5.703-4.992,8.644c-2.926-1.84-5.319-3.74-7.745-5.773\r\n\t\tc-1.171-0.981-2.954-3.949-4.546-7.35c5.41-11.314,1.181-25.037-9.914-31.261c-11.561-6.484-26.188-2.372-32.674,9.189\r\n\t\tc-6.485,11.56-2.371,26.188,9.187,32.673c1.251,0.702,2.539,1.272,3.847,1.729c2.816,6.269,7.32,14.331,13.548,19.547\r\n\t\tc4.184,3.507,8.792,7.117,15.204,10.674c-7.195,20.259-11.576,42.303-12.545,65.427c-11.026,0.207-18.619,2.1-25.474,4.122\r\n\t\tc-4.16,1.227-8.192,3.395-11.823,5.852c-0.954-0.115-1.923-0.182-2.908-0.182c-13.255,0-24,10.745-24,24s10.745,24,24,24\r\n\t\tc12.93,0,23.467-10.227,23.976-23.032c5.046-1.482,9.888-2.659,17.095-2.774c3.167,33.015,13.304,63.483,28.613,89.224\r\n\t\tc-14.166,11.006-22.882,23.016-26.605,36.317c0,0-0.75,0.438-1.873,1.366c-0.982,0.794-1.932,1.65-2.804,2.619\r\n\t\tc-8.865,9.855-8.062,25.031,1.793,33.895c9.854,8.865,25.028,8.062,33.893-1.793c8.087-8.988,8.095-22.381,0.558-31.395\r\n\t\tc3.074-5.562,6.236-9.014,13.67-14.961C171.368,425.235,207.723,445.619,248,448V222.872\r\n\t\tC194.764,219.954,149.229,188.138,126.836,142.824z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M456,256.114c-0.985,0-1.954,0.066-2.908,0.182c-3.631-2.457-7.663-4.625-11.823-5.852\r\n\t\tc-6.854-2.021-14.447-3.915-25.474-4.122c-0.969-23.125-5.35-45.168-12.545-65.427c6.412-3.557,11.021-7.167,15.204-10.674\r\n\t\tc6.228-5.216,10.731-13.278,13.548-19.547c1.308-0.458,2.596-1.028,3.847-1.729c11.558-6.485,15.672-21.114,9.187-32.673\r\n\t\tc-6.485-11.561-21.113-15.673-32.674-9.189c-11.095,6.225-15.324,19.947-9.914,31.261c-1.592,3.401-3.375,6.369-4.546,7.35\r\n\t\tc-2.426,2.033-4.819,3.933-7.745,5.773c-1.596-2.941-3.268-5.817-4.992-8.644c-22.393,45.314-67.928,77.13-121.164,80.048V448\r\n\t\tc40.277-2.381,76.632-22.765,103.686-54.42c7.434,5.947,10.596,9.399,13.67,14.961c-7.537,9.014-7.529,22.406,0.558,31.395\r\n\t\tc8.864,9.855,24.038,10.658,33.893,1.793c9.854-8.863,10.658-24.039,1.793-33.895c-0.872-0.969-1.821-1.825-2.804-2.619\r\n\t\tc-1.123-0.929-1.873-1.366-1.873-1.366c-3.724-13.302-12.439-25.312-26.605-36.317c15.31-25.74,25.446-56.209,28.613-89.224\r\n\t\tc7.207,0.115,12.049,1.292,17.095,2.774c0.509,12.806,11.046,23.032,23.976,23.032c13.255,0,24-10.745,24-24\r\n\t\tS469.255,256.114,456,256.114z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M456,256.114c-0.985,0-1.954,0.066-2.908,0.182c-3.631-2.457-7.663-4.625-11.823-5.852\r\n\t\tc-6.854-2.021-14.447-3.915-25.474-4.122c-0.969-23.125-5.35-45.168-12.545-65.427c6.412-3.557,11.021-7.167,15.204-10.674\r\n\t\tc6.228-5.216,10.731-13.278,13.548-19.547c1.308-0.458,2.596-1.028,3.847-1.729c11.558-6.485,15.672-21.114,9.187-32.673\r\n\t\tc-6.485-11.561-21.113-15.673-32.674-9.189c-11.095,6.225-15.324,19.947-9.914,31.261c-1.592,3.401-3.375,6.369-4.546,7.35\r\n\t\tc-2.426,2.033-4.819,3.933-7.745,5.773c-1.596-2.941-3.268-5.817-4.992-8.644c-22.393,45.314-67.928,77.13-121.164,80.048V448\r\n\t\tc40.277-2.381,76.632-22.765,103.686-54.42c7.434,5.947,10.596,9.399,13.67,14.961c-7.537,9.014-7.529,22.406,0.558,31.395\r\n\t\tc8.864,9.855,24.038,10.658,33.893,1.793c9.854-8.863,10.658-24.039,1.793-33.895c-0.872-0.969-1.821-1.825-2.804-2.619\r\n\t\tc-1.123-0.929-1.873-1.366-1.873-1.366c-3.724-13.302-12.439-25.312-26.605-36.317c15.31-25.74,25.446-56.209,28.613-89.224\r\n\t\tc7.207,0.115,12.049,1.292,17.095,2.774c0.509,12.806,11.046,23.032,23.976,23.032c13.255,0,24-10.745,24-24\r\n\t\tS469.255,256.114,456,256.114z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.bug = bug;
\ No newline at end of file
diff --git a/dist/ionicons/calculator.js b/dist/ionicons/calculator.js
new file mode 100644
index 000000000..4cb2ff328
--- /dev/null
+++ b/dist/ionicons/calculator.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calculator = void 0;
+var calculator = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M400,32H112c-8.8,0-16,7.2-16,16v416c0,8.8,7.2,16,16,16h288c8.8,0,16-7.2,16-16V48C416,39.2,408.8,32,400,32z M144,208h32\r\n\tv32h-32V208z M144,272h32v32h-32V272z M144,336h32v32h-32V336z M240,432h-96v-32h96V432z M240,368h-32v-32h32V368z M240,304h-32v-32\r\n\th32V304z M240,240h-32v-32h32V240z M304,432h-32v-32h32V432z M304,368h-32v-32h32V368z M304,304h-32v-32h32V304z M304,240h-32v-32\r\n\th32V240z M368,432h-32v-96h32V432z M368,304h-32v-32h32V304z M368,240h-32v-32h32V240z M368,160H144V80h224V160z"
+ },
+ "children": []
+ }]
+};
+exports.calculator = calculator;
\ No newline at end of file
diff --git a/dist/ionicons/calendar.js b/dist/ionicons/calendar.js
new file mode 100644
index 000000000..39b80462c
--- /dev/null
+++ b/dist/ionicons/calendar.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.calendar = void 0;
+var calendar = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C112,113.7,126.3,128,144,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C112,113.7,126.3,128,144,128z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M368,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C336,113.7,350.3,128,368,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C336,113.7,350.3,128,368,128z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M472,64h-56v40.7c0,22.5-23.2,39.3-47.2,39.3S320,127.2,320,104.7V64H192v40.7c0,22.5-24,39.3-48,39.3s-48-16.8-48-39.3V64\r\n\t\tH40c-4.4,0-8,3.6-8,8v400c0,4.4,3.6,8,8,8h432c4.4,0,8-3.6,8-8V72C480,67.6,476.4,64,472,64z M432,432H80V176h352V432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M472,64h-56v40.7c0,22.5-23.2,39.3-47.2,39.3S320,127.2,320,104.7V64H192v40.7c0,22.5-24,39.3-48,39.3s-48-16.8-48-39.3V64\r\n\t\tH40c-4.4,0-8,3.6-8,8v400c0,4.4,3.6,8,8,8h432c4.4,0,8-3.6,8-8V72C480,67.6,476.4,64,472,64z M432,432H80V176h352V432z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.calendar = calendar;
\ No newline at end of file
diff --git a/dist/ionicons/camera.js b/dist/ionicons/camera.js
new file mode 100644
index 000000000..1599db4e8
--- /dev/null
+++ b/dist/ionicons/camera.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.camera = void 0;
+var camera = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M430.4,147h-67.5l-40.4-40.8c0,0-0.2-0.2-0.3-0.2l-0.2-0.2v0c-6-6-14.1-9.8-23.3-9.8h-84c-9.8,0-18.5,4.2-24.6,10.9l0,0.1\r\n\t\tl-39.5,40H81.6C63,147,48,161.6,48,180.2v202.1c0,18.6,15,33.7,33.6,33.7h348.8c18.5,0,33.6-15.1,33.6-33.7V180.2\r\n\t\tC464,161.6,448.9,147,430.4,147z M256,365.5c-50.9,0-92.4-41.6-92.4-92.6c0-51.1,41.5-92.6,92.4-92.6c51,0,92.4,41.5,92.4,92.6\r\n\t\tC348.4,323.9,307,365.5,256,365.5z M424.1,200.5c-7.7,0-14-6.3-14-14.1s6.3-14.1,14-14.1c7.7,0,14,6.3,14,14.1\r\n\t\tS431.8,200.5,424.1,200.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M430.4,147h-67.5l-40.4-40.8c0,0-0.2-0.2-0.3-0.2l-0.2-0.2v0c-6-6-14.1-9.8-23.3-9.8h-84c-9.8,0-18.5,4.2-24.6,10.9l0,0.1\r\n\t\tl-39.5,40H81.6C63,147,48,161.6,48,180.2v202.1c0,18.6,15,33.7,33.6,33.7h348.8c18.5,0,33.6-15.1,33.6-33.7V180.2\r\n\t\tC464,161.6,448.9,147,430.4,147z M256,365.5c-50.9,0-92.4-41.6-92.4-92.6c0-51.1,41.5-92.6,92.4-92.6c51,0,92.4,41.5,92.4,92.6\r\n\t\tC348.4,323.9,307,365.5,256,365.5z M424.1,200.5c-7.7,0-14-6.3-14-14.1s6.3-14.1,14-14.1c7.7,0,14,6.3,14,14.1\r\n\t\tS431.8,200.5,424.1,200.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,202.9c-38.6,0-69.8,31.3-69.8,70c0,38.6,31.2,70,69.8,70c38.5,0,69.8-31.3,69.8-70C325.8,234.2,294.5,202.9,256,202.9\r\n\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,202.9c-38.6,0-69.8,31.3-69.8,70c0,38.6,31.2,70,69.8,70c38.5,0,69.8-31.3,69.8-70C325.8,234.2,294.5,202.9,256,202.9\r\n\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.camera = camera;
\ No newline at end of file
diff --git a/dist/ionicons/card.js b/dist/ionicons/card.js
new file mode 100644
index 000000000..3525c652d
--- /dev/null
+++ b/dist/ionicons/card.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.card = void 0;
+var card = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M452,96H60c-15.5,0-27.9,12.5-28,28l0,0v0.3v263.4v0.3l0,0c0.2,15.5,12.5,28,28,28h392c15.6,0,28-12.7,28-28.3v0V124.3v0\r\n\t\tC480,108.7,467.6,96,452,96z M77.1,128h357.7c6.9,0,12.1,5.1,13.1,12v20H64v-20.3C65,132.9,70.3,128,77.1,128z M434.9,384H77.1\r\n\t\tc-6.9,0-12.1-4.9-13.1-11.7V256h384v116C447,378.9,441.7,384,434.9,384z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M452,96H60c-15.5,0-27.9,12.5-28,28l0,0v0.3v263.4v0.3l0,0c0.2,15.5,12.5,28,28,28h392c15.6,0,28-12.7,28-28.3v0V124.3v0\r\n\t\tC480,108.7,467.6,96,452,96z M77.1,128h357.7c6.9,0,12.1,5.1,13.1,12v20H64v-20.3C65,132.9,70.3,128,77.1,128z M434.9,384H77.1\r\n\t\tc-6.9,0-12.1-4.9-13.1-11.7V256h384v116C447,378.9,441.7,384,434.9,384z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "304",
+ "width": "192",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "304",
+ "width": "192",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "336",
+ "width": "96",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "336",
+ "width": "96",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "352",
+ "y": "304",
+ "width": "64",
+ "height": "48"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "352",
+ "y": "304",
+ "width": "64",
+ "height": "48"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.card = card;
\ No newline at end of file
diff --git a/dist/ionicons/cash.js b/dist/ionicons/cash.js
new file mode 100644
index 000000000..8056811da
--- /dev/null
+++ b/dist/ionicons/cash.js
@@ -0,0 +1,99 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cash = void 0;
+var cash = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,96v256h512V96H0z M192.508,320H80.129c0-26.582-21.549-48.129-48.129-48.129V192c35.346,0,64-28.653,64-64h96.509\r\n\t\tC172.576,151.455,160,185.767,160,224S172.576,296.545,192.508,320z M298.089,261.248c-2.582,4.182-5.978,7.602-10.189,10.257\r\n\t\tc-4.214,2.655-9.004,4.607-14.375,5.835c-2.812,0.644-5.654,1.119-8.524,1.432V288h-18v-9.43c-2.768-0.357-5.461-0.863-8.072-1.541\r\n\t\tc-5.688-1.475-10.641-3.659-14.851-6.709c-4.214-3.047-7.584-6.803-10.11-11.573C211.548,254.186,210.24,248,210.04,243h19.735\r\n\t\tc0.096,3,0.828,6.532,2.201,9.184c1.473,2.853,3.526,4.883,6.16,6.7c2.572,1.78,5.532,3.082,8.863,3.919v-34.358\r\n\t\tc-2.436-0.601-5.016-1.245-7.758-1.938c-4.846-1.18-8.873-2.729-12.085-4.646c-3.214-1.918-5.766-4.057-7.661-6.417\r\n\t\tc-1.896-2.359-3.238-4.867-4.028-7.522c-0.791-2.656-1.186-5.358-1.186-8.113c0-5.31,1.186-9.905,3.556-13.791\r\n\t\tc2.368-3.883,5.502-7.104,9.398-9.662c3.895-2.556,8.319-4.448,13.27-5.679c2.154-0.534,4.319-0.945,6.494-1.248V160h18v9.499\r\n\t\tc2.46,0.353,4.856,0.838,7.18,1.473c5.215,1.427,9.796,3.563,13.744,6.414c3.95,2.854,7.083,6.364,9.4,10.542\r\n\t\tc2.109,3.811,3.258,8.072,3.445,13.072h-19.866c-0.753-6-3.175-10.326-7.274-12.923c-1.966-1.246-4.186-2.196-6.629-2.887v30.368\r\n\t\tc2.589,0.639,5.15,1.268,7.654,1.878c3.421,0.836,5.87,1.453,7.346,1.844c3.686,1.083,6.897,2.558,9.637,4.425\r\n\t\tc2.737,1.869,5.028,4.008,6.873,6.417c1.841,2.411,3.21,4.992,4.107,7.744c0.893,2.753,1.343,5.51,1.343,8.262\r\n\t\tC301.96,252.027,300.668,257.07,298.089,261.248z M480,271.871c-26,0-48,21.547-48,48.129H319.491\r\n\t\tC339.424,296.545,352,262.233,352,224s-12.576-72.545-32.51-96H416c0,35.347,28.653,64,64,64V271.871z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,96v256h512V96H0z M192.508,320H80.129c0-26.582-21.549-48.129-48.129-48.129V192c35.346,0,64-28.653,64-64h96.509\r\n\t\tC172.576,151.455,160,185.767,160,224S172.576,296.545,192.508,320z M298.089,261.248c-2.582,4.182-5.978,7.602-10.189,10.257\r\n\t\tc-4.214,2.655-9.004,4.607-14.375,5.835c-2.812,0.644-5.654,1.119-8.524,1.432V288h-18v-9.43c-2.768-0.357-5.461-0.863-8.072-1.541\r\n\t\tc-5.688-1.475-10.641-3.659-14.851-6.709c-4.214-3.047-7.584-6.803-10.11-11.573C211.548,254.186,210.24,248,210.04,243h19.735\r\n\t\tc0.096,3,0.828,6.532,2.201,9.184c1.473,2.853,3.526,4.883,6.16,6.7c2.572,1.78,5.532,3.082,8.863,3.919v-34.358\r\n\t\tc-2.436-0.601-5.016-1.245-7.758-1.938c-4.846-1.18-8.873-2.729-12.085-4.646c-3.214-1.918-5.766-4.057-7.661-6.417\r\n\t\tc-1.896-2.359-3.238-4.867-4.028-7.522c-0.791-2.656-1.186-5.358-1.186-8.113c0-5.31,1.186-9.905,3.556-13.791\r\n\t\tc2.368-3.883,5.502-7.104,9.398-9.662c3.895-2.556,8.319-4.448,13.27-5.679c2.154-0.534,4.319-0.945,6.494-1.248V160h18v9.499\r\n\t\tc2.46,0.353,4.856,0.838,7.18,1.473c5.215,1.427,9.796,3.563,13.744,6.414c3.95,2.854,7.083,6.364,9.4,10.542\r\n\t\tc2.109,3.811,3.258,8.072,3.445,13.072h-19.866c-0.753-6-3.175-10.326-7.274-12.923c-1.966-1.246-4.186-2.196-6.629-2.887v30.368\r\n\t\tc2.589,0.639,5.15,1.268,7.654,1.878c3.421,0.836,5.87,1.453,7.346,1.844c3.686,1.083,6.897,2.558,9.637,4.425\r\n\t\tc2.737,1.869,5.028,4.008,6.873,6.417c1.841,2.411,3.21,4.992,4.107,7.744c0.893,2.753,1.343,5.51,1.343,8.262\r\n\t\tC301.96,252.027,300.668,257.07,298.089,261.248z M480,271.871c-26,0-48,21.547-48,48.129H319.491\r\n\t\tC339.424,296.545,352,262.233,352,224s-12.576-72.545-32.51-96H416c0,35.347,28.653,64,64,64V271.871z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "96",
+ "cy": "224",
+ "r": "32"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "96",
+ "cy": "224",
+ "r": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "416",
+ "cy": "224",
+ "r": "32"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "416",
+ "cy": "224",
+ "r": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M272.893,235.21c-2.395-0.823-5.029-1.618-7.893-2.389v30.856c1.592-0.23,3.069-0.547,4.416-0.959\r\n\t\tc3.053-0.934,5.529-2.139,7.425-3.613s3.264-3.171,4.107-5.089c0.842-1.917,1.263-3.858,1.263-5.827\r\n\t\tc0-4.031-0.975-7.006-2.921-8.924C277.34,237.349,275.206,235.999,272.893,235.21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M272.893,235.21c-2.395-0.823-5.029-1.618-7.893-2.389v30.856c1.592-0.23,3.069-0.547,4.416-0.959\r\n\t\tc3.053-0.934,5.529-2.139,7.425-3.613s3.264-3.171,4.107-5.089c0.842-1.917,1.263-3.858,1.263-5.827\r\n\t\tc0-4.031-0.975-7.006-2.921-8.924C277.34,237.349,275.206,235.999,272.893,235.21z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M236.004,190.959c-1.318,1.771-1.975,3.982-1.975,6.638c0,3.738,1.236,6.663,3.712,8.776\r\n\t\tc2.377,2.034,5.468,3.583,9.259,4.661v-26.356c-2.18,0.45-4.192,1.135-6.02,2.078C238.979,187.788,237.32,189.189,236.004,190.959z\r\n\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M236.004,190.959c-1.318,1.771-1.975,3.982-1.975,6.638c0,3.738,1.236,6.663,3.712,8.776\r\n\t\tc2.377,2.034,5.468,3.583,9.259,4.661v-26.356c-2.18,0.45-4.192,1.135-6.02,2.078C238.979,187.788,237.32,189.189,236.004,190.959z\r\n\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "y": "384",
+ "width": "512",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "y": "384",
+ "width": "512",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.cash = cash;
\ No newline at end of file
diff --git a/dist/ionicons/chatbox.js b/dist/ionicons/chatbox.js
new file mode 100644
index 000000000..dd9def081
--- /dev/null
+++ b/dist/ionicons/chatbox.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chatbox = void 0;
+var chatbox = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M124.3,400H277c14.4,0,14.4,0.1,21.3,5.2S384,464,384,464v-64h3.7c42.2,0,76.3-31.8,76.3-71.4V119.7\r\n\tc0-39.6-34.2-71.7-76.3-71.7H124.3C82.2,48,48,80.1,48,119.7v208.9C48,368.2,82.2,400,124.3,400z"
+ },
+ "children": []
+ }]
+};
+exports.chatbox = chatbox;
\ No newline at end of file
diff --git a/dist/ionicons/chatboxWorking.js b/dist/ionicons/chatboxWorking.js
new file mode 100644
index 000000000..bf4ef62c0
--- /dev/null
+++ b/dist/ionicons/chatboxWorking.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chatboxWorking = void 0;
+var chatboxWorking = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M124.3,400H277c14.4,0,14.4,0.1,21.3,5.2S384,464,384,464v-64h3.7c42.2,0,76.3-31.8,76.3-71.4V119.7\r\n\tc0-39.6-34.2-71.7-76.3-71.7H124.3C82.2,48,48,80.1,48,119.7v208.9C48,368.2,82.2,400,124.3,400z M352.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C320.1,206.3,334.4,192,352.1,192z M256.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C224.1,206.3,238.4,192,256.1,192z M160.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C128.1,206.3,142.4,192,160.1,192z"
+ },
+ "children": []
+ }]
+};
+exports.chatboxWorking = chatboxWorking;
\ No newline at end of file
diff --git a/dist/ionicons/chatboxes.js b/dist/ionicons/chatboxes.js
new file mode 100644
index 000000000..6146ec9a8
--- /dev/null
+++ b/dist/ionicons/chatboxes.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chatboxes = void 0;
+var chatboxes = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M294.1,365.5c-2.6-1.8-7.2-4.5-17.5-4.5H160.5c-34.7,0-64.5-26.1-64.5-59.2V201h-1.8C67.9,201,48,221.5,48,246.5v128.9\r\n\t\tc0,25,21.4,40.6,47.7,40.6H112v48l53.1-45c1.9-1.4,5.3-3,13.2-3h89.8c23,0,47.4-11.4,51.9-32L294.1,365.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M294.1,365.5c-2.6-1.8-7.2-4.5-17.5-4.5H160.5c-34.7,0-64.5-26.1-64.5-59.2V201h-1.8C67.9,201,48,221.5,48,246.5v128.9\r\n\t\tc0,25,21.4,40.6,47.7,40.6H112v48l53.1-45c1.9-1.4,5.3-3,13.2-3h89.8c23,0,47.4-11.4,51.9-32L294.1,365.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M401,48H183.7C149,48,128,74.8,128,107.8v69.7V276c0,33.1,28,60,62.7,60h101.1c10.4,0,15,2.3,17.5,4.2L384,400v-64h17\r\n\t\tc34.8,0,63-26.9,63-59.9V107.8C464,74.8,435.8,48,401,48z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M401,48H183.7C149,48,128,74.8,128,107.8v69.7V276c0,33.1,28,60,62.7,60h101.1c10.4,0,15,2.3,17.5,4.2L384,400v-64h17\r\n\t\tc34.8,0,63-26.9,63-59.9V107.8C464,74.8,435.8,48,401,48z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.chatboxes = chatboxes;
\ No newline at end of file
diff --git a/dist/ionicons/chatbubble.js b/dist/ionicons/chatbubble.js
new file mode 100644
index 000000000..27d4155b0
--- /dev/null
+++ b/dist/ionicons/chatbubble.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chatbubble = void 0;
+var chatbubble = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,449.4c28.9,0,56.4-5.7,81.3-15.9c0.6-0.3,1.1-0.5,1.7-0.7c0.1,0,0.2,0,0.2-0.1c3.5-1.3,7.3-2,11.2-2\r\n\tc4.3,0,8.4,0.8,12.1,2.4l84,30.9l-22.1-88.4c0-5.3,1.5-10.3,3.9-14.6c0,0,0,0,0,0c0.8-1.3,1.6-2.6,2.5-3.7\r\n\tc20.9-31.3,33-68.5,33-108.4C464,137.9,370.9,48,256,48C141.1,48,48,137.9,48,248.7C48,359.6,141.1,449.4,256,449.4z"
+ },
+ "children": []
+ }]
+};
+exports.chatbubble = chatbubble;
\ No newline at end of file
diff --git a/dist/ionicons/chatbubbleWorking.js b/dist/ionicons/chatbubbleWorking.js
new file mode 100644
index 000000000..0b056feac
--- /dev/null
+++ b/dist/ionicons/chatbubbleWorking.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chatbubbleWorking = void 0;
+var chatbubbleWorking = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,449.4c28.9,0,56.4-5.7,81.3-15.9c0.6-0.3,1.1-0.5,1.7-0.7c0.1,0,0.2,0,0.2-0.1c3.5-1.3,7.3-2,11.2-2\r\n\tc4.3,0,8.4,0.8,12.1,2.4l84,30.9l-22.1-88.4c0-5.3,1.5-10.3,3.9-14.6c0,0,0,0,0,0c0.8-1.3,1.6-2.6,2.5-3.7\r\n\tc20.9-31.3,33-68.5,33-108.4C464,137.9,370.9,48,256,48C141.1,48,48,137.9,48,248.7C48,359.6,141.1,449.4,256,449.4z M352,224\r\n\tc17.7,0,32,14.3,32,32c0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C320,238.3,334.3,224,352,224z M256,224c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C224,238.3,238.3,224,256,224z M160,224c17.7,0,32,14.3,32,32c0,17.7-14.3,32-32,32\r\n\tc-17.7,0-32-14.3-32-32C128,238.3,142.3,224,160,224z"
+ },
+ "children": []
+ }]
+};
+exports.chatbubbleWorking = chatbubbleWorking;
\ No newline at end of file
diff --git a/dist/ionicons/chatbubbles.js b/dist/ionicons/chatbubbles.js
new file mode 100644
index 000000000..68f809216
--- /dev/null
+++ b/dist/ionicons/chatbubbles.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chatbubbles = void 0;
+var chatbubbles = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M73.3,391C73.3,391,73.3,391,73.3,391c1.8,3,2.8,6.4,2.8,10.2L64,464l56.2-22.1c2.7-1.1,5.6-1.7,8.7-1.7\r\n\t\tc2.8,0,5.5,0.5,8,1.4c0,0,0.1,0,0.2,0c0.4,0.2,0.8,0.3,1.2,0.5c17.8,7.3,37.4,11.4,57.9,11.4c46.3,0,87.6-20.5,114.8-52.6\r\n\t\tc-14.1,3.6-28.9,5.7-44.1,5.7c-95.9,0-173.7-75-173.7-167.5c0-11.8,1.3-23.2,3.7-34.3C66.9,230.9,48,268.6,48,310.6\r\n\t\tc0,28.4,8.6,55.2,23.5,77.5C72.1,388.9,72.7,390,73.3,391z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M73.3,391C73.3,391,73.3,391,73.3,391c1.8,3,2.8,6.4,2.8,10.2L64,464l56.2-22.1c2.7-1.1,5.6-1.7,8.7-1.7\r\n\t\tc2.8,0,5.5,0.5,8,1.4c0,0,0.1,0,0.2,0c0.4,0.2,0.8,0.3,1.2,0.5c17.8,7.3,37.4,11.4,57.9,11.4c46.3,0,87.6-20.5,114.8-52.6\r\n\t\tc-14.1,3.6-28.9,5.7-44.1,5.7c-95.9,0-173.7-75-173.7-167.5c0-11.8,1.3-23.2,3.7-34.3C66.9,230.9,48,268.6,48,310.6\r\n\t\tc0,28.4,8.6,55.2,23.5,77.5C72.1,388.9,72.7,390,73.3,391z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M290.3,48c-83.7,0-153.6,57.2-170,133.2c-2.4,11.1-3.7,22.5-3.7,34.3c0,92.5,77.7,167.5,173.7,167.5\r\n\t\tc15.3,0,30-2.1,44.1-5.7c8.1-2.1,16.1-4.5,23.8-7.6c0.5-0.2,0.9-0.4,1.4-0.6c0.1,0,0.2,0,0.2-0.1c2.9-1.1,6.1-1.7,9.3-1.7\r\n\t\tc3.6,0,7,0.7,10.1,2l68.6,25.8l-17-73.8c0-4.4,1.2-8.6,3.3-12.2c0,0,0,0,0,0c0.6-1.1,1.4-2.1,2.1-3.1\r\n\t\tc17.4-26.1,27.5-57.2,27.5-90.5C464,123,386.3,48,290.3,48z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M290.3,48c-83.7,0-153.6,57.2-170,133.2c-2.4,11.1-3.7,22.5-3.7,34.3c0,92.5,77.7,167.5,173.7,167.5\r\n\t\tc15.3,0,30-2.1,44.1-5.7c8.1-2.1,16.1-4.5,23.8-7.6c0.5-0.2,0.9-0.4,1.4-0.6c0.1,0,0.2,0,0.2-0.1c2.9-1.1,6.1-1.7,9.3-1.7\r\n\t\tc3.6,0,7,0.7,10.1,2l68.6,25.8l-17-73.8c0-4.4,1.2-8.6,3.3-12.2c0,0,0,0,0,0c0.6-1.1,1.4-2.1,2.1-3.1\r\n\t\tc17.4-26.1,27.5-57.2,27.5-90.5C464,123,386.3,48,290.3,48z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.chatbubbles = chatbubbles;
\ No newline at end of file
diff --git a/dist/ionicons/checkmark.js b/dist/ionicons/checkmark.js
new file mode 100644
index 000000000..024f46c86
--- /dev/null
+++ b/dist/ionicons/checkmark.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkmark = void 0;
+var checkmark = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M461.6,109.6l-54.9-43.3c-1.7-1.4-3.8-2.4-6.2-2.4c-2.4,0-4.6,1-6.3,2.5L194.5,323c0,0-78.5-75.5-80.7-77.7\r\n\tc-2.2-2.2-5.1-5.9-9.5-5.9c-4.4,0-6.4,3.1-8.7,5.4c-1.7,1.8-29.7,31.2-43.5,45.8c-0.8,0.9-1.3,1.4-2,2.1c-1.2,1.7-2,3.6-2,5.7\r\n\tc0,2.2,0.8,4,2,5.7l2.8,2.6c0,0,139.3,133.8,141.6,136.1c2.3,2.3,5.1,5.2,9.2,5.2c4,0,7.3-4.3,9.2-6.2L462,121.8\r\n\tc1.2-1.7,2-3.6,2-5.8C464,113.5,463,111.4,461.6,109.6z"
+ },
+ "children": []
+ }]
+};
+exports.checkmark = checkmark;
\ No newline at end of file
diff --git a/dist/ionicons/checkmarkCircled.js b/dist/ionicons/checkmarkCircled.js
new file mode 100644
index 000000000..1ee8d72c0
--- /dev/null
+++ b/dist/ionicons/checkmarkCircled.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkmarkCircled = void 0;
+var checkmarkCircled = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t\t M370.9,181.1L231.8,359.6c-1.1,1.1-2.9,3.5-5.1,3.5c-2.3,0-3.8-1.6-5.1-2.9c-1.3-1.3-78.9-75.9-78.9-75.9l-1.5-1.5\r\n\t\tc-0.6-0.9-1.1-2-1.1-3.2c0-1.2,0.5-2.3,1.1-3.2c0.4-0.4,0.7-0.7,1.1-1.2c7.7-8.1,23.3-24.5,24.3-25.5c1.3-1.3,2.4-3,4.8-3\r\n\t\tc2.5,0,4.1,2.1,5.3,3.3c1.2,1.2,45,43.3,45,43.3l111.3-143c1-0.8,2.2-1.4,3.5-1.4c1.3,0,2.5,0.5,3.5,1.3l30.6,24.1\r\n\t\tc0.8,1,1.3,2.2,1.3,3.5C372,179.1,371.5,180.2,370.9,181.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t\t M370.9,181.1L231.8,359.6c-1.1,1.1-2.9,3.5-5.1,3.5c-2.3,0-3.8-1.6-5.1-2.9c-1.3-1.3-78.9-75.9-78.9-75.9l-1.5-1.5\r\n\t\tc-0.6-0.9-1.1-2-1.1-3.2c0-1.2,0.5-2.3,1.1-3.2c0.4-0.4,0.7-0.7,1.1-1.2c7.7-8.1,23.3-24.5,24.3-25.5c1.3-1.3,2.4-3,4.8-3\r\n\t\tc2.5,0,4.1,2.1,5.3,3.3c1.2,1.2,45,43.3,45,43.3l111.3-143c1-0.8,2.2-1.4,3.5-1.4c1.3,0,2.5,0.5,3.5,1.3l30.6,24.1\r\n\t\tc0.8,1,1.3,2.2,1.3,3.5C372,179.1,371.5,180.2,370.9,181.1z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.checkmarkCircled = checkmarkCircled;
\ No newline at end of file
diff --git a/dist/ionicons/checkmarkRound.js b/dist/ionicons/checkmarkRound.js
new file mode 100644
index 000000000..e8e8e7e53
--- /dev/null
+++ b/dist/ionicons/checkmarkRound.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.checkmarkRound = void 0;
+var checkmarkRound = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,71.9c-17.3-13.4-41.5-9.3-54.1,9.1L214,344.2l-99.1-107.3c-14.6-16.6-39.1-17.4-54.7-1.8\r\n\tc-15.6,15.5-16.4,41.6-1.7,58.1c0,0,120.4,133.6,137.7,147c17.3,13.4,41.5,9.3,54.1-9.1l206.3-301.7\r\n\tC469.2,110.9,465.3,85.2,448,71.9z"
+ },
+ "children": []
+ }]
+};
+exports.checkmarkRound = checkmarkRound;
\ No newline at end of file
diff --git a/dist/ionicons/chevronDown.js b/dist/ionicons/chevronDown.js
new file mode 100644
index 000000000..282e8de7c
--- /dev/null
+++ b/dist/ionicons/chevronDown.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronDown = void 0;
+var chevronDown = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9\r\n\tc-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3\r\n\tz"
+ },
+ "children": []
+ }]
+};
+exports.chevronDown = chevronDown;
\ No newline at end of file
diff --git a/dist/ionicons/chevronLeft.js b/dist/ionicons/chevronLeft.js
new file mode 100644
index 000000000..d13f0cb7e
--- /dev/null
+++ b/dist/ionicons/chevronLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronLeft = void 0;
+var chevronLeft = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M213.7,256L213.7,256L213.7,256L380.9,81.9c4.2-4.3,4.1-11.4-0.2-15.8l-29.9-30.6c-4.3-4.4-11.3-4.5-15.5-0.2L131.1,247.9\r\n\tc-2.2,2.2-3.2,5.2-3,8.1c-0.1,3,0.9,5.9,3,8.1l204.2,212.7c4.2,4.3,11.2,4.2,15.5-0.2l29.9-30.6c4.3-4.4,4.4-11.5,0.2-15.8\r\n\tL213.7,256z"
+ },
+ "children": []
+ }]
+};
+exports.chevronLeft = chevronLeft;
\ No newline at end of file
diff --git a/dist/ionicons/chevronRight.js b/dist/ionicons/chevronRight.js
new file mode 100644
index 000000000..00aea7a16
--- /dev/null
+++ b/dist/ionicons/chevronRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronRight = void 0;
+var chevronRight = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M298.3,256L298.3,256L298.3,256L131.1,81.9c-4.2-4.3-4.1-11.4,0.2-15.8l29.9-30.6c4.3-4.4,11.3-4.5,15.5-0.2l204.2,212.7\r\n\tc2.2,2.2,3.2,5.2,3,8.1c0.1,3-0.9,5.9-3,8.1L176.7,476.8c-4.2,4.3-11.2,4.2-15.5-0.2L131.3,446c-4.3-4.4-4.4-11.5-0.2-15.8\r\n\tL298.3,256z"
+ },
+ "children": []
+ }]
+};
+exports.chevronRight = chevronRight;
\ No newline at end of file
diff --git a/dist/ionicons/chevronUp.js b/dist/ionicons/chevronUp.js
new file mode 100644
index 000000000..532fdcf3b
--- /dev/null
+++ b/dist/ionicons/chevronUp.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.chevronUp = void 0;
+var chevronUp = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1\r\n\tc-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7\r\n\tz"
+ },
+ "children": []
+ }]
+};
+exports.chevronUp = chevronUp;
\ No newline at end of file
diff --git a/dist/ionicons/clipboard.js b/dist/ionicons/clipboard.js
new file mode 100644
index 000000000..790080225
--- /dev/null
+++ b/dist/ionicons/clipboard.js
@@ -0,0 +1,111 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clipboard = void 0;
+var clipboard = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M161,160.5h192c-1.688-20-9.729-35.45-27.921-40.356c-0.446-0.119-1.12-0.424-1.567-0.541\r\n\t\tc-12.004-3.424-21.012-7.653-21.012-20.781V78.227C302.5,52.691,281.976,32,256.49,32c-25.466,0-45.99,20.691-45.99,46.227v20.595\r\n\t\tc0,13.128-8.592,17.169-20.597,20.593c-0.447,0.117-0.8,0.61-1.266,0.729C170.446,125.05,162.927,140.5,161,160.5z M256.99,64.395\r\n\t\tc7.615,0,13.791,6.195,13.791,13.832c0,7.654-6.176,13.85-13.791,13.85c-7.614,0-13.772-6.195-13.772-13.85\r\n\t\tC243.218,70.59,249.376,64.395,256.99,64.395z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M161,160.5h192c-1.688-20-9.729-35.45-27.921-40.356c-0.446-0.119-1.12-0.424-1.567-0.541\r\n\t\tc-12.004-3.424-21.012-7.653-21.012-20.781V78.227C302.5,52.691,281.976,32,256.49,32c-25.466,0-45.99,20.691-45.99,46.227v20.595\r\n\t\tc0,13.128-8.592,17.169-20.597,20.593c-0.447,0.117-0.8,0.61-1.266,0.729C170.446,125.05,162.927,140.5,161,160.5z M256.99,64.395\r\n\t\tc7.615,0,13.791,6.195,13.791,13.832c0,7.654-6.176,13.85-13.791,13.85c-7.614,0-13.772-6.195-13.772-13.85\r\n\t\tC243.218,70.59,249.376,64.395,256.99,64.395z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M405.611,63.5H331.5v13.988c0,10.583,9.193,19.012,19.507,19.012h37.212c6.667,0,12.099,5.435,12.44,12.195l0.085,327.1\r\n\t\tc-0.322,6.432-5.303,11.546-11.514,12.017l-264.418,0.031c-6.211-0.471-11.149-5.695-11.472-12.126l-0.085-327.014\r\n\t\tc0.322-6.761,5.858-12.203,12.506-12.203h37.231c10.313,0,18.507-8.429,18.507-19.012V63.5h-73.131\r\n\t\tC93.25,63.5,80.5,76.058,80.5,91.575v360.38c0,15.502,12.75,28.545,27.869,28.545H256.99h148.621\r\n\t\tc15.138,0,26.889-13.043,26.889-28.545V91.575C432.5,76.058,420.749,63.5,405.611,63.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.611,63.5H331.5v13.988c0,10.583,9.193,19.012,19.507,19.012h37.212c6.667,0,12.099,5.435,12.44,12.195l0.085,327.1\r\n\t\tc-0.322,6.432-5.303,11.546-11.514,12.017l-264.418,0.031c-6.211-0.471-11.149-5.695-11.472-12.126l-0.085-327.014\r\n\t\tc0.322-6.761,5.858-12.203,12.506-12.203h37.231c10.313,0,18.507-8.429,18.507-19.012V63.5h-73.131\r\n\t\tC93.25,63.5,80.5,76.058,80.5,91.575v360.38c0,15.502,12.75,28.545,27.869,28.545H256.99h148.621\r\n\t\tc15.138,0,26.889-13.043,26.889-28.545V91.575C432.5,76.058,420.749,63.5,405.611,63.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "144.5",
+ "y": "192.5",
+ "width": "112",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "144.5",
+ "y": "192.5",
+ "width": "112",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "144.5",
+ "y": "384.5",
+ "width": "160",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "144.5",
+ "y": "384.5",
+ "width": "160",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "144.5",
+ "y": "320.5",
+ "width": "129",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "144.5",
+ "y": "320.5",
+ "width": "129",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "144.5",
+ "y": "256.5",
+ "width": "208",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "144.5",
+ "y": "256.5",
+ "width": "208",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.clipboard = clipboard;
\ No newline at end of file
diff --git a/dist/ionicons/clock.js b/dist/ionicons/clock.js
new file mode 100644
index 000000000..a33f55b7c
--- /dev/null
+++ b/dist/ionicons/clock.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.clock = void 0;
+var clock = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.988,32C132.285,32,32,132.298,32,256c0,123.715,100.285,224,223.988,224C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z M391.761,391.765c-10.099,10.098-21.126,18.928-32.886,26.42l-15.946-27.62l-13.856,8\r\n\t\tl15.955,27.636c-24.838,13.03-52.372,20.455-81.027,21.624V416h-16v31.825c-28.656-1.166-56.191-8.59-81.03-21.62l15.958-27.641\r\n\t\tl-13.856-8l-15.949,27.625c-11.761-7.492-22.79-16.324-32.889-26.424c-10.099-10.099-18.93-21.127-26.422-32.889l27.624-15.949\r\n\t\tl-8-13.855L85.796,345.03c-13.03-24.839-20.454-52.374-21.621-81.03H96v-16H64.175c1.167-28.655,8.592-56.19,21.623-81.029\r\n\t\tl27.638,15.958l8-13.856l-27.623-15.948c7.492-11.76,16.322-22.787,26.419-32.885c10.1-10.101,21.129-18.933,32.89-26.426\r\n\t\tl15.949,27.624l13.856-8l-15.958-27.64C191.81,72.765,219.345,65.34,248,64.175V96h16V64.176\r\n\t\tc28.654,1.169,56.188,8.595,81.026,21.626l-15.954,27.634l13.856,8l15.945-27.618c11.76,7.492,22.787,16.323,32.886,26.421\r\n\t\tc10.1,10.099,18.931,21.126,26.424,32.887l-27.619,15.946l8,13.856l27.636-15.956c13.031,24.839,20.457,52.373,21.624,81.027H416\r\n\t\tv16h31.824c-1.167,28.655-8.592,56.189-21.622,81.028l-27.637-15.957l-8,13.856l27.621,15.947\r\n\t\tC410.693,370.637,401.861,381.665,391.761,391.765z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.988,32C132.285,32,32,132.298,32,256c0,123.715,100.285,224,223.988,224C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z M391.761,391.765c-10.099,10.098-21.126,18.928-32.886,26.42l-15.946-27.62l-13.856,8\r\n\t\tl15.955,27.636c-24.838,13.03-52.372,20.455-81.027,21.624V416h-16v31.825c-28.656-1.166-56.191-8.59-81.03-21.62l15.958-27.641\r\n\t\tl-13.856-8l-15.949,27.625c-11.761-7.492-22.79-16.324-32.889-26.424c-10.099-10.099-18.93-21.127-26.422-32.889l27.624-15.949\r\n\t\tl-8-13.855L85.796,345.03c-13.03-24.839-20.454-52.374-21.621-81.03H96v-16H64.175c1.167-28.655,8.592-56.19,21.623-81.029\r\n\t\tl27.638,15.958l8-13.856l-27.623-15.948c7.492-11.76,16.322-22.787,26.419-32.885c10.1-10.101,21.129-18.933,32.89-26.426\r\n\t\tl15.949,27.624l13.856-8l-15.958-27.64C191.81,72.765,219.345,65.34,248,64.175V96h16V64.176\r\n\t\tc28.654,1.169,56.188,8.595,81.026,21.626l-15.954,27.634l13.856,8l15.945-27.618c11.76,7.492,22.787,16.323,32.886,26.421\r\n\t\tc10.1,10.099,18.931,21.126,26.424,32.887l-27.619,15.946l8,13.856l27.636-15.956c13.031,24.839,20.457,52.373,21.624,81.027H416\r\n\t\tv16h31.824c-1.167,28.655-8.592,56.189-21.622,81.028l-27.637-15.957l-8,13.856l27.621,15.947\r\n\t\tC410.693,370.637,401.861,381.665,391.761,391.765z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M400,241H284.268c-2.818-5.299-7.083-9.708-12.268-12.708V160h-32v68.292c-9.562,5.534-16,15.866-16,27.708\r\n\t\tc0,17.673,14.327,32,32,32c11.425,0,21.444-5.992,27.106-15H400V241z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M400,241H284.268c-2.818-5.299-7.083-9.708-12.268-12.708V160h-32v68.292c-9.562,5.534-16,15.866-16,27.708\r\n\t\tc0,17.673,14.327,32,32,32c11.425,0,21.444-5.992,27.106-15H400V241z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.clock = clock;
\ No newline at end of file
diff --git a/dist/ionicons/close.js b/dist/ionicons/close.js
new file mode 100644
index 000000000..c6c526e05
--- /dev/null
+++ b/dist/ionicons/close.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.close = void 0;
+var close = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4\r\n\tL256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1\r\n\tc-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1\r\n\tc2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"
+ },
+ "children": []
+ }]
+};
+exports.close = close;
\ No newline at end of file
diff --git a/dist/ionicons/closeCircled.js b/dist/ionicons/closeCircled.js
new file mode 100644
index 000000000..7218c431b
--- /dev/null
+++ b/dist/ionicons/closeCircled.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.closeCircled = void 0;
+var closeCircled = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,33C132.3,33,32,133.3,32,257c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,133.3,379.7,33,256,33z\r\n\t\t M364.3,332.5c1.5,1.5,2.3,3.5,2.3,5.6c0,2.1-0.8,4.2-2.3,5.6l-21.6,21.7c-1.6,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3L256,289.8\r\n\t\tl-75.4,75.7c-1.5,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3l-21.6-21.7c-1.5-1.5-2.3-3.5-2.3-5.6c0-2.1,0.8-4.2,2.3-5.6l75.7-76\r\n\t\tl-75.9-75c-3.1-3.1-3.1-8.2,0-11.3l21.6-21.7c1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l75.7,74.7l75.7-74.7\r\n\t\tc1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l21.6,21.7c3.1,3.1,3.1,8.2,0,11.3l-75.9,75L364.3,332.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,33C132.3,33,32,133.3,32,257c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,133.3,379.7,33,256,33z\r\n\t\t M364.3,332.5c1.5,1.5,2.3,3.5,2.3,5.6c0,2.1-0.8,4.2-2.3,5.6l-21.6,21.7c-1.6,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3L256,289.8\r\n\t\tl-75.4,75.7c-1.5,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3l-21.6-21.7c-1.5-1.5-2.3-3.5-2.3-5.6c0-2.1,0.8-4.2,2.3-5.6l75.7-76\r\n\t\tl-75.9-75c-3.1-3.1-3.1-8.2,0-11.3l21.6-21.7c1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l75.7,74.7l75.7-74.7\r\n\t\tc1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l21.6,21.7c3.1,3.1,3.1,8.2,0,11.3l-75.9,75L364.3,332.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.closeCircled = closeCircled;
\ No newline at end of file
diff --git a/dist/ionicons/closeRound.js b/dist/ionicons/closeRound.js
new file mode 100644
index 000000000..fe539a462
--- /dev/null
+++ b/dist/ionicons/closeRound.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.closeRound = void 0;
+var closeRound = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.5,386.6L306.9,256l130.6-130.6c14.1-14.1,14.1-36.8,0-50.9c-14.1-14.1-36.8-14.1-50.9,0L256,205.1L125.4,74.5\r\n\tc-14.1-14.1-36.8-14.1-50.9,0c-14.1,14.1-14.1,36.8,0,50.9L205.1,256L74.5,386.6c-14.1,14.1-14.1,36.8,0,50.9\r\n\tc14.1,14.1,36.8,14.1,50.9,0L256,306.9l130.6,130.6c14.1,14.1,36.8,14.1,50.9,0C451.5,423.4,451.5,400.6,437.5,386.6z"
+ },
+ "children": []
+ }]
+};
+exports.closeRound = closeRound;
\ No newline at end of file
diff --git a/dist/ionicons/closedCaptioning.js b/dist/ionicons/closedCaptioning.js
new file mode 100644
index 000000000..48d74f915
--- /dev/null
+++ b/dist/ionicons/closedCaptioning.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.closedCaptioning = void 0;
+var closedCaptioning = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,64v384h512V64H0z M464,255.825c0.045,26.724-1.547,47.143-3.797,80.223S441,392.5,401.097,396.168\r\n\t\t\tC361.201,399.835,305.369,400.12,256,400c-49,0.12-105.198-0.165-145.094-3.832c-39.903-3.668-56.855-27.04-59.105-60.12\r\n\t\t\ts-3.841-53.499-3.796-80.223c-0.045-26.725,0.095-44.124,3.798-80.224s23.01-56.267,59.106-59.934S201.842,112,248.704,112\r\n\t\t\tc2.431,0,5.296,0,7.296,0c2.437,0,4.871,0,7.302,0c46.862,0,101.698,0,137.795,3.667s55.403,23.833,59.106,59.934\r\n\t\t\tS464.045,229.1,464,255.825z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,64v384h512V64H0z M464,255.825c0.045,26.724-1.547,47.143-3.797,80.223S441,392.5,401.097,396.168\r\n\t\t\tC361.201,399.835,305.369,400.12,256,400c-49,0.12-105.198-0.165-145.094-3.832c-39.903-3.668-56.855-27.04-59.105-60.12\r\n\t\t\ts-3.841-53.499-3.796-80.223c-0.045-26.725,0.095-44.124,3.798-80.224s23.01-56.267,59.106-59.934S201.842,112,248.704,112\r\n\t\t\tc2.431,0,5.296,0,7.296,0c2.437,0,4.871,0,7.302,0c46.862,0,101.698,0,137.795,3.667s55.403,23.833,59.106,59.934\r\n\t\t\tS464.045,229.1,464,255.825z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M372,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C418.486,327.537,424.666,307,424.666,280H372C372,280,372,282.876,372,283.846z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M372,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C418.486,327.537,424.666,307,424.666,280H372C372,280,372,282.876,372,283.846z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M195,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C241.486,327.537,247.666,307,247.666,280H195C195,280,195,282.876,195,283.846z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M195,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C241.486,327.537,247.666,307,247.666,280H195C195,280,195,282.876,195,283.846z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.closedCaptioning = closedCaptioning;
\ No newline at end of file
diff --git a/dist/ionicons/cloud.js b/dist/ionicons/cloud.js
new file mode 100644
index 000000000..a06786792
--- /dev/null
+++ b/dist/ionicons/cloud.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cloud = void 0;
+var cloud = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M398.1,233.2c0-1.2,0.2-2.4,0.2-3.6c0-65-51.8-117.6-115.7-117.6c-46.1,0-85.7,27.4-104.3,67c-8.1-4.1-17.2-6.5-26.8-6.5\r\n\tc-29.5,0-54.1,21.9-58.8,50.5C57.3,235.2,32,269.1,32,309c0,50.2,40.1,90.9,89.5,91h276.7l0,0c45.2-0.2,81.7-37.5,81.7-83.4\r\n\tC480,270.6,443.3,233.3,398.1,233.2z"
+ },
+ "children": []
+ }]
+};
+exports.cloud = cloud;
\ No newline at end of file
diff --git a/dist/ionicons/code.js b/dist/ionicons/code.js
new file mode 100644
index 000000000..4bfc7b916
--- /dev/null
+++ b/dist/ionicons/code.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.code = void 0;
+var code = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\tc9.371,9.373,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\tc9.371,9.373,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\tc-9.371,9.373-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\tc-9.371,9.373-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.code = code;
\ No newline at end of file
diff --git a/dist/ionicons/codeDownload.js b/dist/ionicons/codeDownload.js
new file mode 100644
index 000000000..52385afca
--- /dev/null
+++ b/dist/ionicons/codeDownload.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.codeDownload = void 0;
+var codeDownload = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M330.967,284.104c6.48-6.467,6.48-16.951,0-23.422c-6.48-6.467-17.342-6.467-23.823,0L272,295.432V176.58\r\n\t\t\t\tc0-9.151-6.839-16.56-15.999-16.56c-9.162,0-16.001,7.408-16.001,16.56v118.852l-35.005-34.75\r\n\t\t\t\tc-6.481-6.467-17.095-6.467-23.573,0c-6.482,6.471-6.539,16.955-0.057,23.422l63.07,63.023c0.02,0.02,0.028,0.037,0.05,0.057\r\n\t\t\t\tc0.725,0.716,1.513,1.367,2.368,1.945c0.102,0.067,0.2,0.134,0.302,0.2c0.322,0.206,0.651,0.403,0.99,0.587\r\n\t\t\t\tc0.117,0.064,0.231,0.133,0.35,0.193c0.421,0.218,0.849,0.423,1.292,0.605c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc0.405,0.167,0.817,0.308,1.233,0.442c0.112,0.037,0.222,0.085,0.335,0.118c0.151,0.047,0.307,0.074,0.461,0.115\r\n\t\t\t\tc1.424,0.385,2.872,0.588,4.315,0.588c1.442,0,2.89-0.203,4.312-0.588c0.153-0.041,0.312-0.068,0.464-0.115\r\n\t\t\t\tc0.113-0.033,0.224-0.081,0.335-0.118c0.416-0.135,0.829-0.275,1.233-0.442c0.002-0.001,0.004-0.001,0.007-0.002\r\n\t\t\t\tc0.441-0.183,0.87-0.387,1.289-0.604c0.122-0.064,0.24-0.133,0.36-0.198c0.332-0.185,0.658-0.376,0.975-0.579\r\n\t\t\t\tc0.109-0.069,0.217-0.14,0.323-0.212c0.408-0.274,0.806-0.562,1.184-0.872c0.004-0.002,0.007-0.004,0.011-0.006\r\n\t\t\t\tc0.406-0.332,0.791-0.684,1.162-1.051c0.024-0.022,0.051-0.043,0.074-0.066L330.967,284.104z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M330.967,284.104c6.48-6.467,6.48-16.951,0-23.422c-6.48-6.467-17.342-6.467-23.823,0L272,295.432V176.58\r\n\t\t\t\tc0-9.151-6.839-16.56-15.999-16.56c-9.162,0-16.001,7.408-16.001,16.56v118.852l-35.005-34.75\r\n\t\t\t\tc-6.481-6.467-17.095-6.467-23.573,0c-6.482,6.471-6.539,16.955-0.057,23.422l63.07,63.023c0.02,0.02,0.028,0.037,0.05,0.057\r\n\t\t\t\tc0.725,0.716,1.513,1.367,2.368,1.945c0.102,0.067,0.2,0.134,0.302,0.2c0.322,0.206,0.651,0.403,0.99,0.587\r\n\t\t\t\tc0.117,0.064,0.231,0.133,0.35,0.193c0.421,0.218,0.849,0.423,1.292,0.605c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc0.405,0.167,0.817,0.308,1.233,0.442c0.112,0.037,0.222,0.085,0.335,0.118c0.151,0.047,0.307,0.074,0.461,0.115\r\n\t\t\t\tc1.424,0.385,2.872,0.588,4.315,0.588c1.442,0,2.89-0.203,4.312-0.588c0.153-0.041,0.312-0.068,0.464-0.115\r\n\t\t\t\tc0.113-0.033,0.224-0.081,0.335-0.118c0.416-0.135,0.829-0.275,1.233-0.442c0.002-0.001,0.004-0.001,0.007-0.002\r\n\t\t\t\tc0.441-0.183,0.87-0.387,1.289-0.604c0.122-0.064,0.24-0.133,0.36-0.198c0.332-0.185,0.658-0.376,0.975-0.579\r\n\t\t\t\tc0.109-0.069,0.217-0.14,0.323-0.212c0.408-0.274,0.806-0.562,1.184-0.872c0.004-0.002,0.007-0.004,0.011-0.006\r\n\t\t\t\tc0.406-0.332,0.791-0.684,1.162-1.051c0.024-0.022,0.051-0.043,0.074-0.066L330.967,284.104z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.codeDownload = codeDownload;
\ No newline at end of file
diff --git a/dist/ionicons/codeWorking.js b/dist/ionicons/codeWorking.js
new file mode 100644
index 000000000..37a955b90
--- /dev/null
+++ b/dist/ionicons/codeWorking.js
@@ -0,0 +1,103 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.codeWorking = void 0;
+var codeWorking = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "184.166",
+ "cy": "256.166",
+ "r": "24"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "184.166",
+ "cy": "256.166",
+ "r": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "256.166",
+ "cy": "256.166",
+ "r": "24"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256.166",
+ "cy": "256.166",
+ "r": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "328.166",
+ "cy": "256.166",
+ "r": "24"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "328.166",
+ "cy": "256.166",
+ "r": "24"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.codeWorking = codeWorking;
\ No newline at end of file
diff --git a/dist/ionicons/coffee.js b/dist/ionicons/coffee.js
new file mode 100644
index 000000000..934e0642a
--- /dev/null
+++ b/dist/ionicons/coffee.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.coffee = void 0;
+var coffee = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M383.1,257.4c0.6-5.4,0.9-10,0.9-13.8c0-19.6-3.3-19.7-16-19.7h-75.5c7.3-12,11.5-24.4,11.5-37c0-37.9-57.3-56.4-57.3-88\r\n\tc0-11.7,5.1-21.3,9.3-34.9c-26.5,7-47.4,33.5-47.4,61.6c0,48.3,56.3,48.7,56.3,84.8c0,4.5-1.4,8.5-2.1,13.5h-55.9\r\n\tc0.8-3,1.3-6.2,1.3-9.3c0-22.8-39.1-33.9-39.1-52.8c0-7,1-12.8,3.2-21c-12.9,5.1-28.3,20-28.3,36.8c0,26.7,31.9,29.3,36.8,46.3H80\r\n\tc-12.7,0-16,0.1-16,19.7c0,19.6,7.7,61.3,28.3,111c20.6,49.7,44.4,71.6,61.2,86.2l0.1-0.2c5.1,4.6,11.8,7.3,19.2,7.3h102.4\r\n\tc7.4,0,14.1-2.7,19.2-7.3l0.1,0.2c9-7.8,20-17.8,31.4-32.9c4.7,2,9.8,3.7,15.4,5c8.4,2,16.8,3,24.8,3c24,0,45.6-9.2,60.8-25.8\r\n\tc13.4-14.6,21.1-34.4,21.1-54.2C448,297,420,264.5,383.1,257.4z M366.1,384.2c-8.6,0-15.6-1.2-22.1-4.2c4-8,7.9-15.9,11.7-25.1\r\n\tc10.1-24.4,17.1-47,21.6-65.8c22,4.3,38.7,23.8,38.7,47.1C416,358.9,398.8,384.2,366.1,384.2z"
+ },
+ "children": []
+ }]
+};
+exports.coffee = coffee;
\ No newline at end of file
diff --git a/dist/ionicons/compass.js b/dist/ionicons/compass.js
new file mode 100644
index 000000000..b4ea57a29
--- /dev/null
+++ b/dist/ionicons/compass.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.compass = void 0;
+var compass = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-39,0-75.6,10-107.5,27.4C136.9,42.9,117.7,32,96,32c-35.3,0-64,28.7-64,64c0,21.7,10.9,40.9,27.4,52.5\r\n\t\t\tC42,180.4,32,217,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z M64,96\r\n\t\t\tc0-17.7,14.3-32,32-32c10.5,0,19.8,5,25.6,12.8c-17,12.7-32.1,27.8-44.8,44.8C69,115.8,64,106.5,64,96z M391.8,391.8\r\n\t\t\tC355.5,428,307.3,448,256,448c-51.3,0-99.5-20-135.8-56.2C84,355.5,64,307.3,64,256c0-51.3,20-99.5,56.2-135.8\r\n\t\t\tC156.5,84,204.7,64,256,64c51.3,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-39,0-75.6,10-107.5,27.4C136.9,42.9,117.7,32,96,32c-35.3,0-64,28.7-64,64c0,21.7,10.9,40.9,27.4,52.5\r\n\t\t\tC42,180.4,32,217,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z M64,96\r\n\t\t\tc0-17.7,14.3-32,32-32c10.5,0,19.8,5,25.6,12.8c-17,12.7-32.1,27.8-44.8,44.8C69,115.8,64,106.5,64,96z M391.8,391.8\r\n\t\t\tC355.5,428,307.3,448,256,448c-51.3,0-99.5-20-135.8-56.2C84,355.5,64,307.3,64,256c0-51.3,20-99.5,56.2-135.8\r\n\t\t\tC156.5,84,204.7,64,256,64c51.3,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M352,128c0,0-101.6,83.7-120,104s-72,152-72,152s102.4-82.3,120-104S352,128,352,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,128c0,0-101.6,83.7-120,104s-72,152-72,152s102.4-82.3,120-104S352,128,352,128z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.compass = compass;
\ No newline at end of file
diff --git a/dist/ionicons/compose.js b/dist/ionicons/compose.js
new file mode 100644
index 000000000..ca285b50b
--- /dev/null
+++ b/dist/ionicons/compose.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.compose = void 0;
+var compose = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M442.8,99.6l-30.4-30.4c-7-6.9-18.2-6.9-25.1,0L355.5,101l55.5,55.5l31.8-31.7C449.7,117.7,449.7,106.5,442.8,99.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M442.8,99.6l-30.4-30.4c-7-6.9-18.2-6.9-25.1,0L355.5,101l55.5,55.5l31.8-31.7C449.7,117.7,449.7,106.5,442.8,99.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "346.1,110.5 174.1,288 160,352 224,337.9 400.6,164.9 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "346.1,110.5 174.1,288 160,352 224,337.9 400.6,164.9 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384,256v150c0,5.1-3.9,10.1-9.2,10.1s-269-0.1-269-0.1c-5.6,0-9.8-5.4-9.8-10s0-268,0-268c0-5,4.7-10,10.6-10H256l32-32\r\n\t\tH87.4c-13,0-23.4,10.3-23.4,23.3v305.3c0,12.9,10.5,23.4,23.4,23.4h305.3c12.9,0,23.3-10.5,23.3-23.4V224L384,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,256v150c0,5.1-3.9,10.1-9.2,10.1s-269-0.1-269-0.1c-5.6,0-9.8-5.4-9.8-10s0-268,0-268c0-5,4.7-10,10.6-10H256l32-32\r\n\t\tH87.4c-13,0-23.4,10.3-23.4,23.3v305.3c0,12.9,10.5,23.4,23.4,23.4h305.3c12.9,0,23.3-10.5,23.3-23.4V224L384,256z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.compose = compose;
\ No newline at end of file
diff --git a/dist/ionicons/connectionBars.js b/dist/ionicons/connectionBars.js
new file mode 100644
index 000000000..86f1368fd
--- /dev/null
+++ b/dist/ionicons/connectionBars.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.connectionBars = void 0;
+var connectionBars = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "352",
+ "width": "64",
+ "height": "64"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "352",
+ "width": "64",
+ "height": "64"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "176",
+ "y": "288",
+ "width": "64",
+ "height": "128"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "176",
+ "y": "288",
+ "width": "64",
+ "height": "128"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "272",
+ "y": "192",
+ "width": "64",
+ "height": "224"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "272",
+ "y": "192",
+ "width": "64",
+ "height": "224"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "368",
+ "y": "96",
+ "width": "64",
+ "height": "320"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "368",
+ "y": "96",
+ "width": "64",
+ "height": "320"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.connectionBars = connectionBars;
\ No newline at end of file
diff --git a/dist/ionicons/contrast.js b/dist/ionicons/contrast.js
new file mode 100644
index 000000000..2b51b60c7
--- /dev/null
+++ b/dist/ionicons/contrast.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.contrast = void 0;
+var contrast = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t M391.8,391.8C355.5,428,307,448,256,448V64c51,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.contrast = contrast;
\ No newline at end of file
diff --git a/dist/ionicons/crop.js b/dist/ionicons/crop.js
new file mode 100644
index 000000000..fe25807fc
--- /dev/null
+++ b/dist/ionicons/crop.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.crop = void 0;
+var crop = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "352",
+ "y": "432",
+ "width": "64",
+ "height": "48"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "352",
+ "y": "432",
+ "width": "64",
+ "height": "48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "416,352 416,96 176,96 176,160 352,160 352,352 160,352 160,32 96,32 96,96 32,96 32,160 96,160 96,416 480,416 \r\n\t\t480,352 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "416,352 416,96 176,96 176,160 352,160 352,352 160,352 160,32 96,32 96,96 32,96 32,160 96,160 96,416 480,416 \r\n\t\t480,352 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.crop = crop;
\ No newline at end of file
diff --git a/dist/ionicons/cube.js b/dist/ionicons/cube.js
new file mode 100644
index 000000000..068fccd15
--- /dev/null
+++ b/dist/ionicons/cube.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.cube = void 0;
+var cube = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M467.301,168.084c-1.805,0-3.516,0.329-5.07,0.962l-2.281,1.15l-171.475,88.938l-3.888,1.996c0,0-0.052,0.023-0.052,0.047\r\n\t\tc-7.56,4.668-12.535,12.506-12.535,21.425v185.854c0,6.382,5.649,11.544,12.69,11.544c2.178,0,4.251-0.513,6.065-1.404\r\n\t\tc0.155-0.095,0.363-0.188,0.519-0.282l174.731-92.694l0.259-0.141c8.241-4.504,13.735-12.742,13.735-22.105V179.582\r\n\t\tC480,173.223,474.299,168.084,467.301,168.084z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M467.301,168.084c-1.805,0-3.516,0.329-5.07,0.962l-2.281,1.15l-171.475,88.938l-3.888,1.996c0,0-0.052,0.023-0.052,0.047\r\n\t\tc-7.56,4.668-12.535,12.506-12.535,21.425v185.854c0,6.382,5.649,11.544,12.69,11.544c2.178,0,4.251-0.513,6.065-1.404\r\n\t\tc0.155-0.095,0.363-0.188,0.519-0.282l174.731-92.694l0.259-0.141c8.241-4.504,13.735-12.742,13.735-22.105V179.582\r\n\t\tC480,173.223,474.299,168.084,467.301,168.084z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M454.273,118.521l-181.7-81.731c0,0-10.659-4.79-16.577-4.79s-16.526,4.79-16.526,4.79L57.614,118.521\r\n\t\tc0,0-7.989,3.292-7.989,9.479c0,6.562,8.3,11.5,8.3,11.5l182.582,96.371l2.902,1.479c3.784,1.687,8.077,2.649,12.587,2.649\r\n\t\tc4.561,0,8.915-0.963,12.742-2.696l2.539-1.315l182.893-96.536c0,0,7.508-4.036,7.508-11.453\r\n\t\tC461.678,121.5,454.273,118.521,454.273,118.521z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M454.273,118.521l-181.7-81.731c0,0-10.659-4.79-16.577-4.79s-16.526,4.79-16.526,4.79L57.614,118.521\r\n\t\tc0,0-7.989,3.292-7.989,9.479c0,6.562,8.3,11.5,8.3,11.5l182.582,96.371l2.902,1.479c3.784,1.687,8.077,2.649,12.587,2.649\r\n\t\tc4.561,0,8.915-0.963,12.742-2.696l2.539-1.315l182.893-96.536c0,0,7.508-4.036,7.508-11.453\r\n\t\tC461.678,121.5,454.273,118.521,454.273,118.521z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M227.466,261.178l-3.992-2.043L52.042,170.197l-2.28-1.15c-1.495-0.634-3.258-0.962-5.071-0.962\r\n\t\tc-6.997,0-12.69,5.138-12.69,11.497v183.792c0,9.388,5.485,17.602,13.727,22.105l0.208,0.141l174.739,92.694l0,0\r\n\t\tc1.918,1.08,4.199,1.687,6.636,1.687c6.989,0,12.69-5.162,12.69-11.544V282.603C240,273.684,235.024,265.846,227.466,261.178z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M227.466,261.178l-3.992-2.043L52.042,170.197l-2.28-1.15c-1.495-0.634-3.258-0.962-5.071-0.962\r\n\t\tc-6.997,0-12.69,5.138-12.69,11.497v183.792c0,9.388,5.485,17.602,13.727,22.105l0.208,0.141l174.739,92.694l0,0\r\n\t\tc1.918,1.08,4.199,1.687,6.636,1.687c6.989,0,12.69-5.162,12.69-11.544V282.603C240,273.684,235.024,265.846,227.466,261.178z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.cube = cube;
\ No newline at end of file
diff --git a/dist/ionicons/disc.js b/dist/ionicons/disc.js
new file mode 100644
index 000000000..8089f1acd
--- /dev/null
+++ b/dist/ionicons/disc.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.disc = void 0;
+var disc = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,158.9c-53.7,0-97.2,43.5-97.2,97.2c0,53.7,43.5,97.1,97.2,97.1c53.7,0,97.2-43.5,97.2-97.1\r\n\t\tC353.2,202.4,309.7,158.9,256,158.9z M256,299.5c-24,0-43.5-19.5-43.5-43.5c0-24,19.5-43.5,43.5-43.5c24,0,43.5,19.5,43.5,43.5\r\n\t\tC299.5,280,280,299.5,256,299.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,158.9c-53.7,0-97.2,43.5-97.2,97.2c0,53.7,43.5,97.1,97.2,97.1c53.7,0,97.2-43.5,97.2-97.1\r\n\t\tC353.2,202.4,309.7,158.9,256,158.9z M256,299.5c-24,0-43.5-19.5-43.5-43.5c0-24,19.5-43.5,43.5-43.5c24,0,43.5,19.5,43.5,43.5\r\n\t\tC299.5,280,280,299.5,256,299.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224s224-100.3,224-224C480,132.3,379.7,32,256,32z M256,378.8\r\n\t\tc-67.8,0-122.8-55-122.8-122.8c0-67.8,55-122.8,122.8-122.8c67.8,0,122.8,55,122.8,122.8C378.8,323.8,323.8,378.8,256,378.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224s224-100.3,224-224C480,132.3,379.7,32,256,32z M256,378.8\r\n\t\tc-67.8,0-122.8-55-122.8-122.8c0-67.8,55-122.8,122.8-122.8c67.8,0,122.8,55,122.8,122.8C378.8,323.8,323.8,378.8,256,378.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.disc = disc;
\ No newline at end of file
diff --git a/dist/ionicons/documentIcon.js b/dist/ionicons/documentIcon.js
new file mode 100644
index 000000000..b7519a944
--- /dev/null
+++ b/dist/ionicons/documentIcon.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.documentIcon = void 0;
+var documentIcon = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.3,168.9c-0.7-2.9-2-5-3.5-6.8l-83.7-91.7c-1.9-2.1-4.1-3.1-6.6-4.4c-2.9-1.5-6.1-1.6-9.4-1.6H136.2\r\n\tc-12.4,0-23.7,9.6-23.7,22.9v335.2c0,13.4,11.3,25.9,23.7,25.9h243.1c12.4,0,21.2-12.5,21.2-25.9V178.4\r\n\tC400.5,174.8,400.1,172.2,399.3,168.9z M305.5,111l58,63.5h-58V111z M144.5,416.5v-320h129v81.7c0,14.8,13.4,28.3,28.1,28.3h66.9\r\n\tv210H144.5z"
+ },
+ "children": []
+ }]
+};
+exports.documentIcon = documentIcon;
\ No newline at end of file
diff --git a/dist/ionicons/documentText.js b/dist/ionicons/documentText.js
new file mode 100644
index 000000000..0288a92a8
--- /dev/null
+++ b/dist/ionicons/documentText.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.documentText = void 0;
+var documentText = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M398.6,169.2c-0.9-2.2-2-4.3-3.5-6.1l-83.8-91.7c-1.9-2.1-4.2-3.6-6.7-4.9c-2.9-1.5-6.1-2.1-9.5-2.1H135.2\r\n\t\tc-12.4,0-22.7,10.6-22.7,23.9v335.2c0,13.4,10.3,24.9,22.7,24.9h243.1c12.4,0,22.2-11.5,22.2-24.9V179.4\r\n\t\tC400.5,175.8,400,172.3,398.6,169.2z M160.5,178.6c0-1.5,1.8-2.1,3.4-2.1h70.8c1.6,0,2.8,0.6,2.8,2.1v10.8c0,1.4-1.1,3.1-2.8,3.1\r\n\t\th-70.8c-1.6,0-3.4-1.7-3.4-3.1V178.6z M160.5,306.6c0-1.5,1.8-2.1,3.4-2.1h122.2c1.6,0,2.4,0.6,2.4,2.1v10.8c0,1.4-0.7,3.1-2.4,3.1\r\n\t\tH163.9c-1.6,0-3.4-1.7-3.4-3.1V306.6z M320.5,381.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1v-10.8\r\n\t\tc0-1.5,1.8-2.1,3.4-2.1h154.2c1.6,0,2.4,0.6,2.4,2.1V381.4z M352.5,253.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1\r\n\t\tv-10.8c0-1.5,1.8-2.1,3.4-2.1h186.2c1.6,0,2.4,0.6,2.4,2.1V253.4z M305.6,177.5c-5.6,0-11.1-5.2-11.1-11.3v-66l71.2,77.3H305.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M398.6,169.2c-0.9-2.2-2-4.3-3.5-6.1l-83.8-91.7c-1.9-2.1-4.2-3.6-6.7-4.9c-2.9-1.5-6.1-2.1-9.5-2.1H135.2\r\n\t\tc-12.4,0-22.7,10.6-22.7,23.9v335.2c0,13.4,10.3,24.9,22.7,24.9h243.1c12.4,0,22.2-11.5,22.2-24.9V179.4\r\n\t\tC400.5,175.8,400,172.3,398.6,169.2z M160.5,178.6c0-1.5,1.8-2.1,3.4-2.1h70.8c1.6,0,2.8,0.6,2.8,2.1v10.8c0,1.4-1.1,3.1-2.8,3.1\r\n\t\th-70.8c-1.6,0-3.4-1.7-3.4-3.1V178.6z M160.5,306.6c0-1.5,1.8-2.1,3.4-2.1h122.2c1.6,0,2.4,0.6,2.4,2.1v10.8c0,1.4-0.7,3.1-2.4,3.1\r\n\t\tH163.9c-1.6,0-3.4-1.7-3.4-3.1V306.6z M320.5,381.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1v-10.8\r\n\t\tc0-1.5,1.8-2.1,3.4-2.1h154.2c1.6,0,2.4,0.6,2.4,2.1V381.4z M352.5,253.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1\r\n\t\tv-10.8c0-1.5,1.8-2.1,3.4-2.1h186.2c1.6,0,2.4,0.6,2.4,2.1V253.4z M305.6,177.5c-5.6,0-11.1-5.2-11.1-11.3v-66l71.2,77.3H305.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.documentText = documentText;
\ No newline at end of file
diff --git a/dist/ionicons/drag.js b/dist/ionicons/drag.js
new file mode 100644
index 000000000..1bd1219ef
--- /dev/null
+++ b/dist/ionicons/drag.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.drag = void 0;
+var drag = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "y": "144",
+ "width": "512",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "y": "144",
+ "width": "512",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "y": "240",
+ "width": "512",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "y": "240",
+ "width": "512",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "y": "336",
+ "width": "512",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "y": "336",
+ "width": "512",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.drag = drag;
\ No newline at end of file
diff --git a/dist/ionicons/earth.js b/dist/ionicons/earth.js
new file mode 100644
index 000000000..a572be940
--- /dev/null
+++ b/dist/ionicons/earth.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.earth = void 0;
+var earth = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M357.275,125.525c-2.209-3.986-9.498-11.837-13.977-13.325c-5.979-0.921-2.398,4.413-2.398,6.7\r\n\t\tc-1.543,1.157-3.941,2.454-5.102,4c-0.699,0.6,1.704,6.103,6.337,4.335s1.964,1.799,5.164,8.865s9.607,7.207,12.49,5.067\r\n\t\tC363.444,138.455,359.286,129.155,357.275,125.525z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M357.275,125.525c-2.209-3.986-9.498-11.837-13.977-13.325c-5.979-0.921-2.398,4.413-2.398,6.7\r\n\t\tc-1.543,1.157-3.941,2.454-5.102,4c-0.699,0.6,1.704,6.103,6.337,4.335s1.964,1.799,5.164,8.865s9.607,7.207,12.49,5.067\r\n\t\tC363.444,138.455,359.286,129.155,357.275,125.525z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M375.8,170.6c-0.001,0.006-0.004,0.011-0.005,0.017C375.795,170.629,375.797,170.629,375.8,170.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M375.8,170.6c-0.001,0.006-0.004,0.011-0.005,0.017C375.795,170.629,375.797,170.629,375.8,170.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M434.6,197.1C435,197.1,432.8,196.7,434.6,197.1L434.6,197.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M434.6,197.1C435,197.1,432.8,196.7,434.6,197.1L434.6,197.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.701,100.3,224,224,224c123.701,0,224-100.299,224-224C480,132.3,379.701,32,256,32\r\n\t\tz M173.399,429.424c-5.515-3.133-9.374-7.56-10.961-15.929c-3.947-20.808-0.303-32.067,17.962-44.245\r\n\t\tc8.604-5.736,10.022-12.672,16.9-19.55c1.685-2.14,6.211-10.374,9.2-10.8c3.637-0.779,13.709-2.527,15.7-6.5\r\n\t\tc3.79-5.146,12.127-27.398,15.8-29.602c5.997-3.925,14.419-15.96,8.3-23.1c-7.021-8.643-16.799-8.766-25.9-13.301\r\n\t\tc-8.015-4.008-11.574-22.281-17.7-28.601c-11.912-12.136-29.999-19.199-45-26.7c-8.116-3.25-7.344-4.256-13.7,2.1\r\n\t\tc-8.162,8.162-20.093-2.067-21.3-10.5c-0.09-2.802-3.296-18.216-1.4-19.4c17.956-11.225-8.328-8.64-10.5-13.8\r\n\t\tc-5.355-14.993,13.008-26.86,25.4-28.1c13.885-1.738,16.784,21.895,22.1,19.9c2.556-1.276,2.566-12.394,2.9-14.8\r\n\t\tc1.267-8.029,3.588-9.273,11.4-12.175c9.098-3.379,16.063-7.617,25.7-9.225c11.006-3.195,20.317-1.533,28.8-8.6\r\n\t\tc3.888-2.915,6.704,1.58,10.4,2.4c7.999,1.599,9.7-11.1,9.7-15.9c-0.034-4.665,1.265-8.63-4.7-13.6\r\n\t\tc-7.806-6.069-19.029-0.869-25.3,5.4c-7.574,7.035-16.357,6.55-13.8-5.6c0.634-4.433,10.209-9.587,14-12\r\n\t\tc3.7-2.222,5.904,2.522,10.4,1.4c6.579-1.463,9.034,4.735,16.8,4.8c3.233-0.731,14.796-6.881,8.614-19.366\r\n\t\tC254.143,64.021,255.07,64,256,64c1.855,0,3.707,0.034,5.555,0.086c2.805,8.881-5.965,16.443-1.555,27.614\r\n\t\tc8.79,21.475,15.992,3.014,24.7-7c2.849-2.849,4.633-2.211,9.3-3.1c2.896-0.483,7.055-9.27,8.393-11.982\r\n\t\tc20.058,4.956,39.121,13.127,56.567,24.255c-7.447,0.792-9.348-1.396-9.234,7.377c0.042,3.317,0.297,13.319,5.274,14.15\r\n\t\tc8.277,0.975,6.781,6.832,14.551,7.85c7.443,0.976,2.816,7.553,5.851,14.05c3.393,10.227-19.806,13.302-24.302,14.8\r\n\t\tc-13.64,4.554,6.34,24.41,15.2,22.3c2.817-0.704,12.215-1.902,12.867-5.067c-0.011-0.323-1.836-11.012-0.867-12.233\r\n\t\tc1.533-1.934,5.123-2.946,10.776,0.255c13.374,7.573,20.146,25.7,35.897,29.295c2.146,0.489,5.86-0.15,8.494,2.033\r\n\t\tc2.231,3.015,7.92,8.416,1.131,8.416c-9.017-2.003-13.78,0.859-21.198-4.874c-7.733-5.977-12.543-10.891-22.75-11.076\r\n\t\tc-8.79-0.159-16.68-3.819-25.738-2.35c-5.05,0.819-10.038,2.811-14.912,4.3c-4.617,1.538-5.51,9.765-10.2,10.7\r\n\t\tc-19.467,4.581-15.261,23.169-18.773,37.913c-1.351,5.662-6.025,21.003-0.926,26.087c9.12,8.854,19.783,21.035,33.176,22.963\r\n\t\tc7.206,1.037,22.954-4.576,27.823,2.737c2.062,4.104,7.447-3.03,8.9,0.601c3.663,10.988-4.263,18.186-4.337,28.551\r\n\t\tc-0.11,15.203,9.178,20.57-3.263,34.148c-13.642,13.607-4.333,30.788-11.9,47c-4.042,8.337-4.808,19.894-10.872,23.777\r\n\t\tc-13.321,8.532-27.7,15.399-42.714,20.384c-26.627,8.838-55.155,11.672-83.017,8.456c-14.619-1.688-29.041-5.057-42.88-10.065\r\n\t\tc-3.769-1.363-7.28-2.505-10.472-3.704C178.143,431.619,175.759,430.55,173.399,429.424z M131.699,402.329\r\n\t\tc-0.468-0.397-0.935-0.796-1.399-1.198c-3.444-2.992-6.802-6.113-10.06-9.371c-3.388-3.388-6.634-6.881-9.734-10.471\r\n\t\tc-0.035-0.041-0.07-0.082-0.105-0.123c-0.637-0.738-1.257-1.486-1.882-2.234C56.834,316.471,49.259,225.004,92.6,155.1\r\n\t\tc6.078,6.078-4.101,18.024,7.5,26c5.124,3.606,10.021,2.159,9,8.8c-0.993,6.449,5.355,6.335,6.3,12\r\n\t\tc2.842,12.429,19.207,18.642,9.9,32.6c-9.118,12.625-16.992,26.729-10.1,42.8c2.254,5.86,7.919,11.858,12.222,16.244\r\n\t\tc7.813,7.966,7.377,3.188,7.377,13.256c-0.156,4.373,5.261,8.897,4.7,11.7c-1.001,8.011-2.904,15.93-3.9,23.9\r\n\t\tc-1.792,28.638-0.129,56.662,21.3,78.1c-7.969-4.806-15.636-10.249-22.968-16.29C133.183,403.591,132.44,402.961,131.699,402.329z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.701,100.3,224,224,224c123.701,0,224-100.299,224-224C480,132.3,379.701,32,256,32\r\n\t\tz M173.399,429.424c-5.515-3.133-9.374-7.56-10.961-15.929c-3.947-20.808-0.303-32.067,17.962-44.245\r\n\t\tc8.604-5.736,10.022-12.672,16.9-19.55c1.685-2.14,6.211-10.374,9.2-10.8c3.637-0.779,13.709-2.527,15.7-6.5\r\n\t\tc3.79-5.146,12.127-27.398,15.8-29.602c5.997-3.925,14.419-15.96,8.3-23.1c-7.021-8.643-16.799-8.766-25.9-13.301\r\n\t\tc-8.015-4.008-11.574-22.281-17.7-28.601c-11.912-12.136-29.999-19.199-45-26.7c-8.116-3.25-7.344-4.256-13.7,2.1\r\n\t\tc-8.162,8.162-20.093-2.067-21.3-10.5c-0.09-2.802-3.296-18.216-1.4-19.4c17.956-11.225-8.328-8.64-10.5-13.8\r\n\t\tc-5.355-14.993,13.008-26.86,25.4-28.1c13.885-1.738,16.784,21.895,22.1,19.9c2.556-1.276,2.566-12.394,2.9-14.8\r\n\t\tc1.267-8.029,3.588-9.273,11.4-12.175c9.098-3.379,16.063-7.617,25.7-9.225c11.006-3.195,20.317-1.533,28.8-8.6\r\n\t\tc3.888-2.915,6.704,1.58,10.4,2.4c7.999,1.599,9.7-11.1,9.7-15.9c-0.034-4.665,1.265-8.63-4.7-13.6\r\n\t\tc-7.806-6.069-19.029-0.869-25.3,5.4c-7.574,7.035-16.357,6.55-13.8-5.6c0.634-4.433,10.209-9.587,14-12\r\n\t\tc3.7-2.222,5.904,2.522,10.4,1.4c6.579-1.463,9.034,4.735,16.8,4.8c3.233-0.731,14.796-6.881,8.614-19.366\r\n\t\tC254.143,64.021,255.07,64,256,64c1.855,0,3.707,0.034,5.555,0.086c2.805,8.881-5.965,16.443-1.555,27.614\r\n\t\tc8.79,21.475,15.992,3.014,24.7-7c2.849-2.849,4.633-2.211,9.3-3.1c2.896-0.483,7.055-9.27,8.393-11.982\r\n\t\tc20.058,4.956,39.121,13.127,56.567,24.255c-7.447,0.792-9.348-1.396-9.234,7.377c0.042,3.317,0.297,13.319,5.274,14.15\r\n\t\tc8.277,0.975,6.781,6.832,14.551,7.85c7.443,0.976,2.816,7.553,5.851,14.05c3.393,10.227-19.806,13.302-24.302,14.8\r\n\t\tc-13.64,4.554,6.34,24.41,15.2,22.3c2.817-0.704,12.215-1.902,12.867-5.067c-0.011-0.323-1.836-11.012-0.867-12.233\r\n\t\tc1.533-1.934,5.123-2.946,10.776,0.255c13.374,7.573,20.146,25.7,35.897,29.295c2.146,0.489,5.86-0.15,8.494,2.033\r\n\t\tc2.231,3.015,7.92,8.416,1.131,8.416c-9.017-2.003-13.78,0.859-21.198-4.874c-7.733-5.977-12.543-10.891-22.75-11.076\r\n\t\tc-8.79-0.159-16.68-3.819-25.738-2.35c-5.05,0.819-10.038,2.811-14.912,4.3c-4.617,1.538-5.51,9.765-10.2,10.7\r\n\t\tc-19.467,4.581-15.261,23.169-18.773,37.913c-1.351,5.662-6.025,21.003-0.926,26.087c9.12,8.854,19.783,21.035,33.176,22.963\r\n\t\tc7.206,1.037,22.954-4.576,27.823,2.737c2.062,4.104,7.447-3.03,8.9,0.601c3.663,10.988-4.263,18.186-4.337,28.551\r\n\t\tc-0.11,15.203,9.178,20.57-3.263,34.148c-13.642,13.607-4.333,30.788-11.9,47c-4.042,8.337-4.808,19.894-10.872,23.777\r\n\t\tc-13.321,8.532-27.7,15.399-42.714,20.384c-26.627,8.838-55.155,11.672-83.017,8.456c-14.619-1.688-29.041-5.057-42.88-10.065\r\n\t\tc-3.769-1.363-7.28-2.505-10.472-3.704C178.143,431.619,175.759,430.55,173.399,429.424z M131.699,402.329\r\n\t\tc-0.468-0.397-0.935-0.796-1.399-1.198c-3.444-2.992-6.802-6.113-10.06-9.371c-3.388-3.388-6.634-6.881-9.734-10.471\r\n\t\tc-0.035-0.041-0.07-0.082-0.105-0.123c-0.637-0.738-1.257-1.486-1.882-2.234C56.834,316.471,49.259,225.004,92.6,155.1\r\n\t\tc6.078,6.078-4.101,18.024,7.5,26c5.124,3.606,10.021,2.159,9,8.8c-0.993,6.449,5.355,6.335,6.3,12\r\n\t\tc2.842,12.429,19.207,18.642,9.9,32.6c-9.118,12.625-16.992,26.729-10.1,42.8c2.254,5.86,7.919,11.858,12.222,16.244\r\n\t\tc7.813,7.966,7.377,3.188,7.377,13.256c-0.156,4.373,5.261,8.897,4.7,11.7c-1.001,8.011-2.904,15.93-3.9,23.9\r\n\t\tc-1.792,28.638-0.129,56.662,21.3,78.1c-7.969-4.806-15.636-10.249-22.968-16.29C133.183,403.591,132.44,402.961,131.699,402.329z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.earth = earth;
\ No newline at end of file
diff --git a/dist/ionicons/easel.js b/dist/ionicons/easel.js
new file mode 100644
index 000000000..ffa335d44
--- /dev/null
+++ b/dist/ionicons/easel.js
@@ -0,0 +1,99 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.easel = void 0;
+var easel = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "144",
+ "width": "352",
+ "height": "192"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "144",
+ "width": "352",
+ "height": "192"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M464,96H48c-8.837,0-16,7.163-16,16v256c0,8.837,6.932,16,15.768,16H464c8.837,0,16-7.163,16-16V112\r\n\t\tC480,103.163,472.837,96,464,96z M448,352H64V128h384V352z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,96H48c-8.837,0-16,7.163-16,16v256c0,8.837,6.932,16,15.768,16H464c8.837,0,16-7.163,16-16V112\r\n\t\tC480,103.163,472.837,96,464,96z M448,352H64V128h384V352z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "80,480 112,480 140.147,400 108.835,400 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "80,480 112,480 140.147,400 108.835,400 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "270.83,32 241.472,32 224.171,80 288.099,80 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "270.83,32 241.472,32 224.171,80 288.099,80 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "371.853,400 400,480 432,480 403.22,400 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "371.853,400 400,480 432,480 403.22,400 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "240",
+ "y": "400",
+ "width": "32",
+ "height": "48"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "240",
+ "y": "400",
+ "width": "32",
+ "height": "48"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.easel = easel;
\ No newline at end of file
diff --git a/dist/ionicons/edit.js b/dist/ionicons/edit.js
new file mode 100644
index 000000000..832102988
--- /dev/null
+++ b/dist/ionicons/edit.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.edit = void 0;
+var edit = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "178.846",
+ "y": "92.087",
+ "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 224.3476 631.1498)",
+ "width": "128.085",
+ "height": "354.049"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "178.846",
+ "y": "92.087",
+ "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 224.3476 631.1498)",
+ "width": "128.085",
+ "height": "354.049"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M471.723,88.393l-48.115-48.114c-11.723-11.724-31.558-10.896-44.304,1.85l-45.202,45.203l90.569,90.568l45.202-45.202\r\n\t\tC482.616,119.952,483.445,100.116,471.723,88.393z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M471.723,88.393l-48.115-48.114c-11.723-11.724-31.558-10.896-44.304,1.85l-45.202,45.203l90.569,90.568l45.202-45.202\r\n\t\tC482.616,119.952,483.445,100.116,471.723,88.393z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "64.021,363.252 32,480 148.737,447.979 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64.021,363.252 32,480 148.737,447.979 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.edit = edit;
\ No newline at end of file
diff --git a/dist/ionicons/egg.js b/dist/ionicons/egg.js
new file mode 100644
index 000000000..9e9c1ba3e
--- /dev/null
+++ b/dist/ionicons/egg.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.egg = void 0;
+var egg = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C192,32,96,165.2,96,288.9C96,412.6,160,480,256,480s160-67.4,160-191.1C416,165.2,320,32,256,32z"
+ },
+ "children": []
+ }]
+};
+exports.egg = egg;
\ No newline at end of file
diff --git a/dist/ionicons/eject.js b/dist/ionicons/eject.js
new file mode 100644
index 000000000..30035bbe9
--- /dev/null
+++ b/dist/ionicons/eject.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eject = void 0;
+var eject = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399,320L399,320c10,0,16.8-7.1,16.8-15.9c0-3.3-1.1-6.1-2.8-9L275.3,104.7c-4.6-5.3-11.5-8.7-19.3-8.7\r\n\t\tc-7.7,0-14.6,3.4-19.2,8.7l-138,190.8c-1.7,2.6-2.6,5.5-2.6,8.7c0,8.7,6.8,15.8,16.8,15.8v0H399z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399,320L399,320c10,0,16.8-7.1,16.8-15.9c0-3.3-1.1-6.1-2.8-9L275.3,104.7c-4.6-5.3-11.5-8.7-19.3-8.7\r\n\t\tc-7.7,0-14.6,3.4-19.2,8.7l-138,190.8c-1.7,2.6-2.6,5.5-2.6,8.7c0,8.7,6.8,15.8,16.8,15.8v0H399z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M403.7,352H108.4c-6.8,0-12.4,5.4-12.4,12.2v39.6c0,6.7,5.5,12.2,12.4,12.2h295.3c6.8,0,12.3-5.5,12.3-12.2v-39.6\r\n\t\tC416,357.4,410.5,352,403.7,352z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.7,352H108.4c-6.8,0-12.4,5.4-12.4,12.2v39.6c0,6.7,5.5,12.2,12.4,12.2h295.3c6.8,0,12.3-5.5,12.3-12.2v-39.6\r\n\t\tC416,357.4,410.5,352,403.7,352z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.eject = eject;
\ No newline at end of file
diff --git a/dist/ionicons/email.js b/dist/ionicons/email.js
new file mode 100644
index 000000000..58329e634
--- /dev/null
+++ b/dist/ionicons/email.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.email = void 0;
+var email = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M67,148.7c11,5.8,163.8,89.1,169.5,92.1c5.7,3,11.5,4.4,20.5,4.4c9,0,14.8-1.4,20.5-4.4c5.7-3,158.5-86.3,169.5-92.1\r\n\t\tc4.1-2.1,11-5.9,12.5-10.2c2.6-7.6-0.2-10.5-11.3-10.5H257H65.8c-11.1,0-13.9,3-11.3,10.5C56,142.9,62.9,146.6,67,148.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M67,148.7c11,5.8,163.8,89.1,169.5,92.1c5.7,3,11.5,4.4,20.5,4.4c9,0,14.8-1.4,20.5-4.4c5.7-3,158.5-86.3,169.5-92.1\r\n\t\tc4.1-2.1,11-5.9,12.5-10.2c2.6-7.6-0.2-10.5-11.3-10.5H257H65.8c-11.1,0-13.9,3-11.3,10.5C56,142.9,62.9,146.6,67,148.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M455.7,153.2c-8.2,4.2-81.8,56.6-130.5,88.1l82.2,92.5c2,2,2.9,4.4,1.8,5.6c-1.2,1.1-3.8,0.5-5.9-1.4l-98.6-83.2\r\n\t\tc-14.9,9.6-25.4,16.2-27.2,17.2c-7.7,3.9-13.1,4.4-20.5,4.4c-7.4,0-12.8-0.5-20.5-4.4c-1.9-1-12.3-7.6-27.2-17.2l-98.6,83.2\r\n\t\tc-2,2-4.7,2.6-5.9,1.4c-1.2-1.1-0.3-3.6,1.7-5.6l82.1-92.5c-48.7-31.5-123.1-83.9-131.3-88.1c-8.8-4.5-9.3,0.8-9.3,4.9\r\n\t\tc0,4.1,0,205,0,205c0,9.3,13.7,20.9,23.5,20.9H257h185.5c9.8,0,21.5-11.7,21.5-20.9c0,0,0-201,0-205\r\n\t\tC464,153.9,464.6,148.7,455.7,153.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M455.7,153.2c-8.2,4.2-81.8,56.6-130.5,88.1l82.2,92.5c2,2,2.9,4.4,1.8,5.6c-1.2,1.1-3.8,0.5-5.9-1.4l-98.6-83.2\r\n\t\tc-14.9,9.6-25.4,16.2-27.2,17.2c-7.7,3.9-13.1,4.4-20.5,4.4c-7.4,0-12.8-0.5-20.5-4.4c-1.9-1-12.3-7.6-27.2-17.2l-98.6,83.2\r\n\t\tc-2,2-4.7,2.6-5.9,1.4c-1.2-1.1-0.3-3.6,1.7-5.6l82.1-92.5c-48.7-31.5-123.1-83.9-131.3-88.1c-8.8-4.5-9.3,0.8-9.3,4.9\r\n\t\tc0,4.1,0,205,0,205c0,9.3,13.7,20.9,23.5,20.9H257h185.5c9.8,0,21.5-11.7,21.5-20.9c0,0,0-201,0-205\r\n\t\tC464,153.9,464.6,148.7,455.7,153.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.email = email;
\ No newline at end of file
diff --git a/dist/ionicons/emailUnread.js b/dist/ionicons/emailUnread.js
new file mode 100644
index 000000000..f8f9bb991
--- /dev/null
+++ b/dist/ionicons/emailUnread.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.emailUnread = void 0;
+var emailUnread = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "432",
+ "cy": "160",
+ "r": "64"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "432",
+ "cy": "160",
+ "r": "64"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M225,160H33.799c-11.1,0-13.898,3-11.299,10.5c1.5,4.4,8.4,8.1,12.5,10.2c11,5.8,163.799,89.1,169.5,92.1\r\n\t\t\tc5.699,3,11.5,4.4,20.5,4.4s14.799-1.4,20.5-4.4c3.79-1.995,72.625-39.497,121.559-66.107C357.594,193.551,352,177.433,352,160\r\n\t\t\tH225z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M225,160H33.799c-11.1,0-13.898,3-11.299,10.5c1.5,4.4,8.4,8.1,12.5,10.2c11,5.8,163.799,89.1,169.5,92.1\r\n\t\t\tc5.699,3,11.5,4.4,20.5,4.4s14.799-1.4,20.5-4.4c3.79-1.995,72.625-39.497,121.559-66.107C357.594,193.551,352,177.433,352,160\r\n\t\t\tH225z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M293.199,273.3l82.201,92.5c2,2,2.898,4.4,1.799,5.601c-1.199,1.1-3.799,0.5-5.9-1.4l-98.6-83.2\r\n\t\t\tc-14.9,9.601-25.4,16.2-27.199,17.2c-7.701,3.9-13.1,4.4-20.5,4.4s-12.801-0.5-20.5-4.4c-1.9-1-12.301-7.6-27.201-17.2l-98.6,83.2\r\n\t\t\tc-2,2-4.699,2.6-5.9,1.4C71.6,370.3,72.5,367.8,74.5,365.8l82.1-92.5C107.9,241.8,33.5,189.4,25.299,185.2\r\n\t\t\tC16.5,180.7,16,186,16,190.1c0,4.101,0,205,0,205C16,404.4,29.699,416,39.5,416H225h185.5c9.799,0,21.5-11.7,21.5-20.9\r\n\t\t\tc0,0,0-94.398,0-155.1c-21.726,0-41.416-8.673-55.832-22.729C350.167,235.173,318.36,257.025,293.199,273.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M293.199,273.3l82.201,92.5c2,2,2.898,4.4,1.799,5.601c-1.199,1.1-3.799,0.5-5.9-1.4l-98.6-83.2\r\n\t\t\tc-14.9,9.601-25.4,16.2-27.199,17.2c-7.701,3.9-13.1,4.4-20.5,4.4s-12.801-0.5-20.5-4.4c-1.9-1-12.301-7.6-27.201-17.2l-98.6,83.2\r\n\t\t\tc-2,2-4.699,2.6-5.9,1.4C71.6,370.3,72.5,367.8,74.5,365.8l82.1-92.5C107.9,241.8,33.5,189.4,25.299,185.2\r\n\t\t\tC16.5,180.7,16,186,16,190.1c0,4.101,0,205,0,205C16,404.4,29.699,416,39.5,416H225h185.5c9.799,0,21.5-11.7,21.5-20.9\r\n\t\t\tc0,0,0-94.398,0-155.1c-21.726,0-41.416-8.673-55.832-22.729C350.167,235.173,318.36,257.025,293.199,273.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.emailUnread = emailUnread;
\ No newline at end of file
diff --git a/dist/ionicons/erlenmeyerFlask.js b/dist/ionicons/erlenmeyerFlask.js
new file mode 100644
index 000000000..ef212c71b
--- /dev/null
+++ b/dist/ionicons/erlenmeyerFlask.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.erlenmeyerFlask = void 0;
+var erlenmeyerFlask = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M438.815,395.7L338.509,246.2c-12.8-20.3-19.009-44.4-19.009-70.2c0,0,0-73.5,0-93s12.592-33.25,15.009-42.083\r\n\t\tc2.296-8.392,0.512-8.417-15.188-8.417H192.526c-15.999,0-18.548,0.009-16.311,8.416C178.633,50,191.5,64.3,191.5,83.5\r\n\t\ts0,92.5,0,92.5c0,25.8-7.285,49.8-20.085,70.2l-49.279,76.5L73.035,395.6c-5.8,9-9.051,20.7-9.051,32.2\r\n\t\tc0,28,16.347,52.7,63.246,52.7h257.589c46.998,0,63.197-24.7,63.197-52.7C447.916,416.3,444.615,404.7,438.815,395.7z M409.218,441\r\n\t\tc-4.4,4.2-11.602,7.5-24.499,7.5h-257.59c-12.8,0-20.8-3.5-25.199-7.7c-2.7-2.6-6-7.05-6-13.35c0-5,1.4-10.125,3.9-14.125\r\n\t\tl99.039-150.392c15.699-25.199,24.632-55.231,24.632-86.932V64.5h64v111.4c0,31.199,7.761,61.3,23.859,87l100.523,150\r\n\t\tc2.499,4,3.968,9.25,3.968,14.25C415.85,433.55,411.918,438.4,409.218,441z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M438.815,395.7L338.509,246.2c-12.8-20.3-19.009-44.4-19.009-70.2c0,0,0-73.5,0-93s12.592-33.25,15.009-42.083\r\n\t\tc2.296-8.392,0.512-8.417-15.188-8.417H192.526c-15.999,0-18.548,0.009-16.311,8.416C178.633,50,191.5,64.3,191.5,83.5\r\n\t\ts0,92.5,0,92.5c0,25.8-7.285,49.8-20.085,70.2l-49.279,76.5L73.035,395.6c-5.8,9-9.051,20.7-9.051,32.2\r\n\t\tc0,28,16.347,52.7,63.246,52.7h257.589c46.998,0,63.197-24.7,63.197-52.7C447.916,416.3,444.615,404.7,438.815,395.7z M409.218,441\r\n\t\tc-4.4,4.2-11.602,7.5-24.499,7.5h-257.59c-12.8,0-20.8-3.5-25.199-7.7c-2.7-2.6-6-7.05-6-13.35c0-5,1.4-10.125,3.9-14.125\r\n\t\tl99.039-150.392c15.699-25.199,24.632-55.231,24.632-86.932V64.5h64v111.4c0,31.199,7.761,61.3,23.859,87l100.523,150\r\n\t\tc2.499,4,3.968,9.25,3.968,14.25C415.85,433.55,411.918,438.4,409.218,441z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M389.217,411.301c0.051,0.075,0.1,0.397,0,0.249L307.345,288.5H203.698l-81.069,123.151c-1.5,2.1-2.3,5.175-2.3,7.974\r\n\t\tc0,7.5,6.288,13.875,13.687,13.875h244c7.5,0,13.599-6.725,13.599-14.125C391.614,416.875,390.516,413.301,389.217,411.301z\r\n\t\t M302.021,341.7c-1.5-1.5-2.3-3.601-2.3-5.7s0.899-4.2,2.3-5.7c1.5-1.5,3.6-2.3,5.6-2.3c2.102,0,4.2,0.8,5.602,2.3\r\n\t\tc1.5,1.5,2.299,3.601,2.299,5.7s-0.899,4.2-2.299,5.7c-1.5,1.5-3.5,2.3-5.602,2.3C305.621,344,303.521,343.1,302.021,341.7z\r\n\t\t M348.92,400.7c-1.4,0.898-2.9,1.3-4.302,1.3c-2.499,0-5.099-1.3-6.598-3.6l-23.499-35.9c-2.4-3.7-1.4-8.7,2.299-11.1\r\n\t\tc1.4-0.9,2.9-1.301,4.4-1.301c2.6,0,5.1,1.301,6.5,3.601L351.22,389.6C353.618,393.299,352.618,398.299,348.92,400.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M389.217,411.301c0.051,0.075,0.1,0.397,0,0.249L307.345,288.5H203.698l-81.069,123.151c-1.5,2.1-2.3,5.175-2.3,7.974\r\n\t\tc0,7.5,6.288,13.875,13.687,13.875h244c7.5,0,13.599-6.725,13.599-14.125C391.614,416.875,390.516,413.301,389.217,411.301z\r\n\t\t M302.021,341.7c-1.5-1.5-2.3-3.601-2.3-5.7s0.899-4.2,2.3-5.7c1.5-1.5,3.6-2.3,5.6-2.3c2.102,0,4.2,0.8,5.602,2.3\r\n\t\tc1.5,1.5,2.299,3.601,2.299,5.7s-0.899,4.2-2.299,5.7c-1.5,1.5-3.5,2.3-5.602,2.3C305.621,344,303.521,343.1,302.021,341.7z\r\n\t\t M348.92,400.7c-1.4,0.898-2.9,1.3-4.302,1.3c-2.499,0-5.099-1.3-6.598-3.6l-23.499-35.9c-2.4-3.7-1.4-8.7,2.299-11.1\r\n\t\tc1.4-0.9,2.9-1.301,4.4-1.301c2.6,0,5.1,1.301,6.5,3.601L351.22,389.6C353.618,393.299,352.618,398.299,348.92,400.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.erlenmeyerFlask = erlenmeyerFlask;
\ No newline at end of file
diff --git a/dist/ionicons/erlenmeyerFlaskBubbles.js b/dist/ionicons/erlenmeyerFlaskBubbles.js
new file mode 100644
index 000000000..3237c2c95
--- /dev/null
+++ b/dist/ionicons/erlenmeyerFlaskBubbles.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.erlenmeyerFlaskBubbles = void 0;
+var erlenmeyerFlaskBubbles = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M445.9,427.1L328,227.9V78c0-7.7-6.5-14-14.5-14c-8,0-14.5,6.2-14.5,14v153.6c0,1.8,0.6,3.6,1.3,5.3\r\n\t\tc-7.6-11.1-20.6-18.4-35.4-18.4c-23.5,0-42.5,18.3-42.5,41c0,16.8,10.5,31.5,25.4,37.5h-72l35-58.5c1.2-2.1,2.1-4.5,2.1-6.9v-30.4\r\n\t\tc4,3.2,10,5.1,16.1,5.1c15.3,0,27.5-11.9,27.5-26.6c0-14.7-12.2-26.6-27.5-26.6c-6.1,0-12.1,1.9-16.1,5.1V78c0-7.7-6.5-14-14.5-14\r\n\t\tc-8,0-14.5,6.2-14.5,14v149.9L66.1,427.1c-2.5,4.3-2.6,9.6,0,13.9c2.6,4.3,7.2,7,12.4,7H256h177.5c5.1,0,9.8-2.6,12.4-7\r\n\t\tC448.5,436.8,448.4,431.4,445.9,427.1z M282.2,297c14.9-6,25.4-20.8,25.4-37.5c0-5.7-1.2-11.2-3.4-16.1l31,53.6H282.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M445.9,427.1L328,227.9V78c0-7.7-6.5-14-14.5-14c-8,0-14.5,6.2-14.5,14v153.6c0,1.8,0.6,3.6,1.3,5.3\r\n\t\tc-7.6-11.1-20.6-18.4-35.4-18.4c-23.5,0-42.5,18.3-42.5,41c0,16.8,10.5,31.5,25.4,37.5h-72l35-58.5c1.2-2.1,2.1-4.5,2.1-6.9v-30.4\r\n\t\tc4,3.2,10,5.1,16.1,5.1c15.3,0,27.5-11.9,27.5-26.6c0-14.7-12.2-26.6-27.5-26.6c-6.1,0-12.1,1.9-16.1,5.1V78c0-7.7-6.5-14-14.5-14\r\n\t\tc-8,0-14.5,6.2-14.5,14v149.9L66.1,427.1c-2.5,4.3-2.6,9.6,0,13.9c2.6,4.3,7.2,7,12.4,7H256h177.5c5.1,0,9.8-2.6,12.4-7\r\n\t\tC448.5,436.8,448.4,431.4,445.9,427.1z M282.2,297c14.9-6,25.4-20.8,25.4-37.5c0-5.7-1.2-11.2-3.4-16.1l31,53.6H282.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M265.1,128.6c12,0,21.7-9.4,21.7-20.9c0-11.6-9.7-20.9-21.7-20.9c-12,0-21.7,9.4-21.7,20.9\r\n\t\tC243.3,119.2,253.1,128.6,265.1,128.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M265.1,128.6c12,0,21.7-9.4,21.7-20.9c0-11.6-9.7-20.9-21.7-20.9c-12,0-21.7,9.4-21.7,20.9\r\n\t\tC243.3,119.2,253.1,128.6,265.1,128.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.erlenmeyerFlaskBubbles = erlenmeyerFlaskBubbles;
\ No newline at end of file
diff --git a/dist/ionicons/eye.js b/dist/ionicons/eye.js
new file mode 100644
index 000000000..368d90f81
--- /dev/null
+++ b/dist/ionicons/eye.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eye = void 0;
+var eye = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,128c-81.9,0-145.7,48.8-224,128c67.4,67.7,124,128,224,128c99.9,0,173.4-76.4,224-126.6\r\n\t\tC428.2,198.6,354.8,128,256,128z M256,347.3c-49.4,0-89.6-41-89.6-91.3c0-50.4,40.2-91.3,89.6-91.3s89.6,41,89.6,91.3\r\n\t\tC345.6,306.4,305.4,347.3,256,347.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,128c-81.9,0-145.7,48.8-224,128c67.4,67.7,124,128,224,128c99.9,0,173.4-76.4,224-126.6\r\n\t\tC428.2,198.6,354.8,128,256,128z M256,347.3c-49.4,0-89.6-41-89.6-91.3c0-50.4,40.2-91.3,89.6-91.3s89.6,41,89.6,91.3\r\n\t\tC345.6,306.4,305.4,347.3,256,347.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,224c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,29.4,23.5,53.3,52.3,53.3\r\n\t\t\ts52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9C270.3,256,256,241.7,256,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,224c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,29.4,23.5,53.3,52.3,53.3\r\n\t\t\ts52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9C270.3,256,256,241.7,256,224z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.eye = eye;
\ No newline at end of file
diff --git a/dist/ionicons/eyeDisabled.js b/dist/ionicons/eyeDisabled.js
new file mode 100644
index 000000000..ffad7c40b
--- /dev/null
+++ b/dist/ionicons/eyeDisabled.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.eyeDisabled = void 0;
+var eyeDisabled = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M376.4,158.3L448,86.6L425.4,64l-77.6,77.6C320,127.7,289.5,119,256,119c-81.9,0-145.7,52.2-224,137\r\n\tc34.8,37.4,66.8,72.7,103.3,98.1L64,425.4L86.6,448l76.9-76.9c27,13.7,57,21.9,92.5,21.9c99.9,0,173.4-81.8,224-135.5\r\n\tC452,223.4,417.6,185.7,376.4,158.3z M166.4,256c0-50.4,40.2-91.3,89.6-91.3c19.3,0,37.2,6.2,51.8,16.9l-50.7,50.7\r\n\tc-0.7-2.6-1.1-5.4-1.1-8.3c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,8.6,2,16.8,5.6,24\r\n\tL182,307.4C172.2,292.7,166.4,275,166.4,256z M256,347.3c-19.3,0-37.2-6.2-51.8-16.9l27.4-27.4c7.3,4,15.6,6.2,24.4,6.2\r\n\tc28.8,0,52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9c-2.9,0-5.6-0.4-8.3-1.1l50.3-50.3\r\n\tc9.8,14.6,15.6,32.3,15.6,51.4C345.6,306.4,305.4,347.3,256,347.3z"
+ },
+ "children": []
+ }]
+};
+exports.eyeDisabled = eyeDisabled;
\ No newline at end of file
diff --git a/dist/ionicons/female.js b/dist/ionicons/female.js
new file mode 100644
index 000000000..c460ab0f0
--- /dev/null
+++ b/dist/ionicons/female.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.female = void 0;
+var female = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,284c55.2-14.2,96-64.3,96-124c0-70.7-57.3-128-128-128S128,89.3,128,160c0,59.6,40.8,109.7,96,124v68h-64v64h64v64h64\r\n\tv-64h64v-64h-64V284z M256,240c-44.1,0-80-35.9-80-80s35.9-80,80-80s80,35.9,80,80S300.1,240,256,240z"
+ },
+ "children": []
+ }]
+};
+exports.female = female;
\ No newline at end of file
diff --git a/dist/ionicons/filing.js b/dist/ionicons/filing.js
new file mode 100644
index 000000000..59bff4ffb
--- /dev/null
+++ b/dist/ionicons/filing.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filing = void 0;
+var filing = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M381,128.6H132.1c-12.1,0-19.5,0-19.5,20.4v28.1h288V149C400.6,128.6,393.2,128.6,381,128.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M381,128.6H132.1c-12.1,0-19.5,0-19.5,20.4v28.1h288V149C400.6,128.6,393.2,128.6,381,128.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M333,96.5H180c-13.1,0-19.5,0.3-19.5,18.7h192C352.4,96.8,346.1,96.5,333,96.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M333,96.5H180c-13.1,0-19.5,0.3-19.5,18.7h192C352.4,96.8,346.1,96.5,333,96.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M432.4,169.6l-15.9-9.4v32.3h-321v-32.3l-15.2,9.4c-14.3,8.9-17.8,15.3-15,40.9l17.5,184.8c3.7,20.7,15.9,21.2,24,21.2\r\n\t\th299.9c8.1,0,20.2-0.5,23.9-21.2l17.2-184.4C450.1,186.5,445.8,178.1,432.4,169.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M432.4,169.6l-15.9-9.4v32.3h-321v-32.3l-15.2,9.4c-14.3,8.9-17.8,15.3-15,40.9l17.5,184.8c3.7,20.7,15.9,21.2,24,21.2\r\n\t\th299.9c8.1,0,20.2-0.5,23.9-21.2l17.2-184.4C450.1,186.5,445.8,178.1,432.4,169.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.filing = filing;
\ No newline at end of file
diff --git a/dist/ionicons/filmMarker.js b/dist/ionicons/filmMarker.js
new file mode 100644
index 000000000..d2205a504
--- /dev/null
+++ b/dist/ionicons/filmMarker.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.filmMarker = void 0;
+var filmMarker = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448.4,208h-344l341.2-68c8.5-1.6,14-9.7,12.4-18.1l-8.9-45.4c-1.6-8.4-9.8-13.8-18.3-12.2L60.7,137.9\r\n\tc-8.5,1.6-14,9.7-12.4,18l8.9,45.4c0.6,2.8,2.1,5.2,3.9,7.2c-7.4,1.2-13.1,7.2-13.1,14.9v209.2c0,8.5,7,15.4,15.6,15.4h384.8\r\n\tc8.6,0,15.6-6.9,15.6-15.4V223.4C464,214.9,457,208,448.4,208z M305,402.4l-50.7-36.3l-50.7,36.3l19.5-58.4l-50.8-36H235l19.2-58.4\r\n\tl19.3,58.4h62.7l-50.8,36L305,402.4z"
+ },
+ "children": []
+ }]
+};
+exports.filmMarker = filmMarker;
\ No newline at end of file
diff --git a/dist/ionicons/fireball.js b/dist/ionicons/fireball.js
new file mode 100644
index 000000000..3f077d305
--- /dev/null
+++ b/dist/ionicons/fireball.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fireball = void 0;
+var fireball = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M393.267,238.088l-0.231,10.404c-0.814,11.65-3.797,31.912-14.102,54.736c3.251-15.208,4.978-30.982,4.978-47.164\r\n\t\tc0-12.096-0.958-23.968-2.799-35.544c-15.091-94.901-89.626-169.923-184.138-185.518C185.706,32.285,179.048,32,179.048,32\r\n\t\tc0.238,0.281,0.465,0.562,0.7,0.844c39.458,47.181,44.1,96.656,37.744,131.85c-2.281,12.629-5.978,23.421-9.991,31.605\r\n\t\tc0,0,3.359-13.911,3.035-29.72c-0.293-14.234-3.572-30.006-14.986-38.552c3.497,18.378-0.752,33.501-9.121,47.729\r\n\t\tC161.69,217.808,101,249.386,96,327.408v3.836c0,53.692,25.624,98.979,68.719,125.012c-6.85-12.344-14.964-35.207-8.733-60.151\r\n\t\tc3.998,23.669,9.951,36.045,20.879,51.756c8.153,11.721,19.104,19.269,33.095,24.934S238.995,480,255.889,480\r\n\t\tc55.809,0,105.228-28.567,133.845-71.952l0.267,0.061v-0.007c16-25.254,26.1-55.5,26.1-88.019\r\n\t\tC416.1,290.112,407.596,262.071,393.267,238.088z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M393.267,238.088l-0.231,10.404c-0.814,11.65-3.797,31.912-14.102,54.736c3.251-15.208,4.978-30.982,4.978-47.164\r\n\t\tc0-12.096-0.958-23.968-2.799-35.544c-15.091-94.901-89.626-169.923-184.138-185.518C185.706,32.285,179.048,32,179.048,32\r\n\t\tc0.238,0.281,0.465,0.562,0.7,0.844c39.458,47.181,44.1,96.656,37.744,131.85c-2.281,12.629-5.978,23.421-9.991,31.605\r\n\t\tc0,0,3.359-13.911,3.035-29.72c-0.293-14.234-3.572-30.006-14.986-38.552c3.497,18.378-0.752,33.501-9.121,47.729\r\n\t\tC161.69,217.808,101,249.386,96,327.408v3.836c0,53.692,25.624,98.979,68.719,125.012c-6.85-12.344-14.964-35.207-8.733-60.151\r\n\t\tc3.998,23.669,9.951,36.045,20.879,51.756c8.153,11.721,19.104,19.269,33.095,24.934S238.995,480,255.889,480\r\n\t\tc55.809,0,105.228-28.567,133.845-71.952l0.267,0.061v-0.007c16-25.254,26.1-55.5,26.1-88.019\r\n\t\tC416.1,290.112,407.596,262.071,393.267,238.088z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.fireball = fireball;
\ No newline at end of file
diff --git a/dist/ionicons/flag.js b/dist/ionicons/flag.js
new file mode 100644
index 000000000..0664e662f
--- /dev/null
+++ b/dist/ionicons/flag.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flag = void 0;
+var flag = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M426.4,182.5c-35.8,5.9-94.2,7.5-133-66.1c-41.6-79.1-108.8-81.5-148.1-74.3c-19.1,3.5-33.4,19.5-33.4,35v196.6\r\n\t\tc11.3,4.3,23.4-0.2,26.5-0.8c0.8-0.2,1.5-0.3,2.4-0.5c25-5.5,51.4-8.1,116.8,23.3c82,39.3,153.8-33.1,181.6-83.5\r\n\t\tc2-3.5,8.7-20.2,8.7-36.2C438.2,180,426.4,182.5,426.4,182.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M426.4,182.5c-35.8,5.9-94.2,7.5-133-66.1c-41.6-79.1-108.8-81.5-148.1-74.3c-19.1,3.5-33.4,19.5-33.4,35v196.6\r\n\t\tc11.3,4.3,23.4-0.2,26.5-0.8c0.8-0.2,1.5-0.3,2.4-0.5c25-5.5,51.4-8.1,116.8,23.3c82,39.3,153.8-33.1,181.6-83.5\r\n\t\tc2-3.5,8.7-20.2,8.7-36.2C438.2,180,426.4,182.5,426.4,182.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M88,32H72c-4.4,0-8,3.6-8,8v432c0,4.4,3.6,8,8,8h16c4.4,0,8-3.6,8-8V40C96,35.6,92.4,32,88,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M88,32H72c-4.4,0-8,3.6-8,8v432c0,4.4,3.6,8,8,8h16c4.4,0,8-3.6,8-8V40C96,35.6,92.4,32,88,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.flag = flag;
\ No newline at end of file
diff --git a/dist/ionicons/flame.js b/dist/ionicons/flame.js
new file mode 100644
index 000000000..f56e0b8c8
--- /dev/null
+++ b/dist/ionicons/flame.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flame = void 0;
+var flame = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128.922,320c13.05,134,103.764,160,126.932,160c23.168,0,127.457-40.49,128.142-160c0.836-146-121.586-143-95.895-288\r\n\t\tC201.427,96,118.289,210.816,128.922,320z M215.667,368c0-44.183,40.187-80,40.187-80s40.701,35.817,40.701,80\r\n\t\tc0,44.184-40.701,80-40.701,80S215.667,412.184,215.667,368z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128.922,320c13.05,134,103.764,160,126.932,160c23.168,0,127.457-40.49,128.142-160c0.836-146-121.586-143-95.895-288\r\n\t\tC201.427,96,118.289,210.816,128.922,320z M215.667,368c0-44.183,40.187-80,40.187-80s40.701,35.817,40.701,80\r\n\t\tc0,44.184-40.701,80-40.701,80S215.667,412.184,215.667,368z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.flame = flame;
\ No newline at end of file
diff --git a/dist/ionicons/flash.js b/dist/ionicons/flash.js
new file mode 100644
index 000000000..17e222f6b
--- /dev/null
+++ b/dist/ionicons/flash.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flash = void 0;
+var flash = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "96,288 243,288 191.9,480 416,224 269,224 320,32 "
+ },
+ "children": []
+ }]
+};
+exports.flash = flash;
\ No newline at end of file
diff --git a/dist/ionicons/flashOff.js b/dist/ionicons/flashOff.js
new file mode 100644
index 000000000..5195d1df7
--- /dev/null
+++ b/dist/ionicons/flashOff.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.flashOff = void 0;
+var flashOff = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M147.4,451.9c0.4,0.2,0.7,0.5,1.1,0.7c10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9\r\n\t\tc123.7,0,224-100.3,224-224c0-84.3-46.6-157.7-115.5-195.9c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8\r\n\t\tc-1.8-0.6-3.6-1.2-5.4-1.8C302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256C32,340.3,78.6,413.6,147.4,451.9z M118.2,156.6\r\n\t\tl54.4,54.4l36.3-40.5l-52.4-52.4c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4c9.8,1.6,19.3,4.1,28.5,7.3\r\n\t\tc1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8c0,37.2-12.4,71.3-32.7,99.4l-54.4-54.4L303,341.4\r\n\t\tl52.4,52.4c-28,20.3-62.2,32.7-99.4,32.7c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3C85.6,218.8,98,184.7,118.2,156.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M147.4,451.9c0.4,0.2,0.7,0.5,1.1,0.7c10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9\r\n\t\tc123.7,0,224-100.3,224-224c0-84.3-46.6-157.7-115.5-195.9c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8\r\n\t\tc-1.8-0.6-3.6-1.2-5.4-1.8C302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256C32,340.3,78.6,413.6,147.4,451.9z M118.2,156.6\r\n\t\tl54.4,54.4l36.3-40.5l-52.4-52.4c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4c9.8,1.6,19.3,4.1,28.5,7.3\r\n\t\tc1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8c0,37.2-12.4,71.3-32.7,99.4l-54.4-54.4L303,341.4\r\n\t\tl52.4,52.4c-28,20.3-62.2,32.7-99.4,32.7c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3C85.6,218.8,98,184.7,118.2,156.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "209.7,389.8 348.9,235 263.6,235 302.2,122.2 163.1,277 248.4,277 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "209.7,389.8 348.9,235 263.6,235 302.2,122.2 163.1,277 248.4,277 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.flashOff = flashOff;
\ No newline at end of file
diff --git a/dist/ionicons/folder.js b/dist/ionicons/folder.js
new file mode 100644
index 000000000..1cccb18b8
--- /dev/null
+++ b/dist/ionicons/folder.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.folder = void 0;
+var folder = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M430.1,192H81.9c-17.7,0-18.6,9.2-17.6,20.5l13,183c0.9,11.2,3.5,20.5,21.1,20.5h316.2c18,0,20.1-9.2,21.1-20.5l12.1-185.3\r\n\t\tC448.7,199,447.8,192,430.1,192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M430.1,192H81.9c-17.7,0-18.6,9.2-17.6,20.5l13,183c0.9,11.2,3.5,20.5,21.1,20.5h316.2c18,0,20.1-9.2,21.1-20.5l12.1-185.3\r\n\t\tC448.7,199,447.8,192,430.1,192z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M426.2,143.3c-0.5-12.4-4.5-15.3-15.1-15.3c0,0-121.4,0-143.2,0c-21.8,0-24.4,0.3-40.9-17.4C213.3,95.8,218.7,96,190.4,96\r\n\t\t\tc-22.6,0-75.3,0-75.3,0c-17.4,0-23.6-1.5-25.2,16.6c-1.5,16.7-5,57.2-5.5,63.4h343.4L426.2,143.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M426.2,143.3c-0.5-12.4-4.5-15.3-15.1-15.3c0,0-121.4,0-143.2,0c-21.8,0-24.4,0.3-40.9-17.4C213.3,95.8,218.7,96,190.4,96\r\n\t\t\tc-22.6,0-75.3,0-75.3,0c-17.4,0-23.6-1.5-25.2,16.6c-1.5,16.7-5,57.2-5.5,63.4h343.4L426.2,143.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.folder = folder;
\ No newline at end of file
diff --git a/dist/ionicons/fork.js b/dist/ionicons/fork.js
new file mode 100644
index 000000000..db0409f5e
--- /dev/null
+++ b/dist/ionicons/fork.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.fork = void 0;
+var fork = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M270.2,148.9C270.2,149,270.1,149,270.2,148.9v0.1V148.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M270.2,148.9C270.2,149,270.1,149,270.2,148.9v0.1V148.9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M320,166c0-43.2-15-93.2-24-133.7V32h-8l-0.2,116.9c0,6.1-2.9,11.1-9,11.1c-5.7,0-8-4.3-8.6-9.9c-0.1-0.4,0-0.8,0-1.2\r\n\t\tL259.9,32h-8l-9,117l-0.1,1.1c-0.6,5.6-3.7,9.9-9.5,9.9c-6.1,0-9.1-5-9.1-11.1L223.8,32h-8C207,73,192,122.9,192,166.1\r\n\t\tc0,25.7,14.6,48.1,36.7,58.2c11.2,5.1,11.3,10.3,11.3,10.3s-16,201.7-16,213.1c0,11.4,4,18.5,9.5,24s14.2,8.2,22.4,8.2\r\n\t\tc0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c8.2,0,16.8-2.7,22.4-8.2c5.5-5.5,9.3-10.9,9.3-24c0-13.1-16-213.1-16-213.1s-1-5,11.4-10.6\r\n\t\tC305,214.2,320,191.8,320,166z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320,166c0-43.2-15-93.2-24-133.7V32h-8l-0.2,116.9c0,6.1-2.9,11.1-9,11.1c-5.7,0-8-4.3-8.6-9.9c-0.1-0.4,0-0.8,0-1.2\r\n\t\tL259.9,32h-8l-9,117l-0.1,1.1c-0.6,5.6-3.7,9.9-9.5,9.9c-6.1,0-9.1-5-9.1-11.1L223.8,32h-8C207,73,192,122.9,192,166.1\r\n\t\tc0,25.7,14.6,48.1,36.7,58.2c11.2,5.1,11.3,10.3,11.3,10.3s-16,201.7-16,213.1c0,11.4,4,18.5,9.5,24s14.2,8.2,22.4,8.2\r\n\t\tc0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c8.2,0,16.8-2.7,22.4-8.2c5.5-5.5,9.3-10.9,9.3-24c0-13.1-16-213.1-16-213.1s-1-5,11.4-10.6\r\n\t\tC305,214.2,320,191.8,320,166z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.fork = fork;
\ No newline at end of file
diff --git a/dist/ionicons/forkRepo.js b/dist/ionicons/forkRepo.js
new file mode 100644
index 000000000..3c2fa9f3f
--- /dev/null
+++ b/dist/ionicons/forkRepo.js
@@ -0,0 +1,49 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.forkRepo = void 0;
+var forkRepo = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "416,80 368,80 368,32 304,32 304,80 256,80 256,144 304,144 304,192 368,192 368,144 416,144 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "416,80 368,80 368,32 304,32 304,80 256,80 256,144 304,144 304,192 368,192 368,144 416,144 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M304,240c0,38.6-4.5,42.3-14.4,50.3c-7.4,6-22.2,7.1-39.4,8.3c-9.5,0.7-20.4,1.5-31.4,3.3\r\n\t\tc-9.4,1.5-18.4,4.7-26.8,8.8V151.4c19.1-11.1,32-31.7,32-55.4c0-35.3-28.7-64-64-64S96,60.7,96,96c0,23.7,12.9,44.3,32,55.4v209.2\r\n\t\tc-19.1,11.1-32,31.7-32,55.4c0,35.3,28.7,64,64,64s64-28.7,64-64c0-15.7-5.7-30.1-15-41.2c6.7-4.8,13.9-8.7,20.2-9.7\r\n\t\tc8.1-1.3,16.6-1.9,25.6-2.6c24.4-1.7,52.1-3.7,75.2-22.5c30.9-25.1,37.5-52.1,38-94.9l0,0V240H304z M160,64c17.6,0,32,14.4,32,32\r\n\t\ts-14.4,32-32,32s-32-14.4-32-32S142.4,64,160,64z M160,448c-17.6,0-32-14.4-32-32s14.4-32,32-32s32,14.4,32,32S177.6,448,160,448z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M304,240c0,38.6-4.5,42.3-14.4,50.3c-7.4,6-22.2,7.1-39.4,8.3c-9.5,0.7-20.4,1.5-31.4,3.3\r\n\t\tc-9.4,1.5-18.4,4.7-26.8,8.8V151.4c19.1-11.1,32-31.7,32-55.4c0-35.3-28.7-64-64-64S96,60.7,96,96c0,23.7,12.9,44.3,32,55.4v209.2\r\n\t\tc-19.1,11.1-32,31.7-32,55.4c0,35.3,28.7,64,64,64s64-28.7,64-64c0-15.7-5.7-30.1-15-41.2c6.7-4.8,13.9-8.7,20.2-9.7\r\n\t\tc8.1-1.3,16.6-1.9,25.6-2.6c24.4-1.7,52.1-3.7,75.2-22.5c30.9-25.1,37.5-52.1,38-94.9l0,0V240H304z M160,64c17.6,0,32,14.4,32,32\r\n\t\ts-14.4,32-32,32s-32-14.4-32-32S142.4,64,160,64z M160,448c-17.6,0-32-14.4-32-32s14.4-32,32-32s32,14.4,32,32S177.6,448,160,448z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.forkRepo = forkRepo;
\ No newline at end of file
diff --git a/dist/ionicons/forward.js b/dist/ionicons/forward.js
new file mode 100644
index 000000000..4a868cd4b
--- /dev/null
+++ b/dist/ionicons/forward.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.forward = void 0;
+var forward = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,298.1v92.3L448,256L288,112v80C100.8,192,64,400,64,400C117,307,186.4,298.1,288,298.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,298.1v92.3L448,256L288,112v80C100.8,192,64,400,64,400C117,307,186.4,298.1,288,298.1z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.forward = forward;
\ No newline at end of file
diff --git a/dist/ionicons/funnel.js b/dist/ionicons/funnel.js
new file mode 100644
index 000000000..dd0365c4a
--- /dev/null
+++ b/dist/ionicons/funnel.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.funnel = void 0;
+var funnel = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.085,32c-123.79,0-224.096,35.817-224.096,80c0,8.476,3.729,16.642,10.573,24.309l-0.061,0.008\r\n\t\tC74.408,175.213,192,313,192,352v87l0,0c0,22.688,28.891,41,64,41s64-18.312,64-41l0,0v-83.088c0-1.241,0.008-2.54,0.008-3.912\r\n\t\tC320.008,313,436,177.432,471,134.062v-0.002c6-7.007,8.977-14.408,8.977-22.06C479.977,67.817,379.875,32,256.085,32z\r\n\t\t M256.178,160c-92.058,0-176.112-22-176.112-48s83.053-48,176.112-48c93.06,0,176.111,22.413,176.111,48S348.236,160,256.178,160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.085,32c-123.79,0-224.096,35.817-224.096,80c0,8.476,3.729,16.642,10.573,24.309l-0.061,0.008\r\n\t\tC74.408,175.213,192,313,192,352v87l0,0c0,22.688,28.891,41,64,41s64-18.312,64-41l0,0v-83.088c0-1.241,0.008-2.54,0.008-3.912\r\n\t\tC320.008,313,436,177.432,471,134.062v-0.002c6-7.007,8.977-14.408,8.977-22.06C479.977,67.817,379.875,32,256.085,32z\r\n\t\t M256.178,160c-92.058,0-176.112-22-176.112-48s83.053-48,176.112-48c93.06,0,176.111,22.413,176.111,48S348.236,160,256.178,160z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.funnel = funnel;
\ No newline at end of file
diff --git a/dist/ionicons/gearA.js b/dist/ionicons/gearA.js
new file mode 100644
index 000000000..ea4779a39
--- /dev/null
+++ b/dist/ionicons/gearA.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gearA = void 0;
+var gearA = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M411.1,256c0-23.9,14.8-42.8,36.9-55.8c-4-13.3-9.3-26.2-15.8-38.2c-24.9,6.5-45-3.2-62-20.2c-16.9-16.9-22.1-37.1-15.6-62\r\n\t\tC342.6,73.3,329.8,68,316.4,64c-13,22.2-36.4,36.9-60.4,36.9c-23.9,0-47.4-14.7-60.4-36.9c-13.4,4-26.2,9.3-38.2,15.8\r\n\t\tc6.5,24.9,1.3,45-15.6,62c-16.9,16.9-37.1,26.7-61.9,20.2C73.3,174,68,186.8,64,200.2c22.2,13,37,31.9,37,55.8\r\n\t\tc0,23.9-14.8,47.4-37,60.4c4,13.4,9.3,26.2,15.8,38.2c24.9-6.5,45-1.3,61.9,15.6c17,16.9,22.1,37.1,15.6,62\r\n\t\tc12.1,6.5,24.8,11.8,38.2,15.8c13-22.2,36.5-36.9,60.4-36.9c23.9,0,47.4,14.7,60.4,36.9c13.4-4,26.2-9.3,38.2-15.8\r\n\t\tc-6.5-24.9-1.3-45,15.6-62c16.9-16.9,37.1-26.7,62-20.2c6.5-12.1,11.8-24.9,15.8-38.2C425.8,298.8,411.1,279.9,411.1,256z\r\n\t\t M256,354.3c-54.2,0-98.3-44-98.3-98.3c0-54.3,44-98.3,98.3-98.3c54.3,0,98.3,44,98.3,98.3C354.3,310.3,310.3,354.3,256,354.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M411.1,256c0-23.9,14.8-42.8,36.9-55.8c-4-13.3-9.3-26.2-15.8-38.2c-24.9,6.5-45-3.2-62-20.2c-16.9-16.9-22.1-37.1-15.6-62\r\n\t\tC342.6,73.3,329.8,68,316.4,64c-13,22.2-36.4,36.9-60.4,36.9c-23.9,0-47.4-14.7-60.4-36.9c-13.4,4-26.2,9.3-38.2,15.8\r\n\t\tc6.5,24.9,1.3,45-15.6,62c-16.9,16.9-37.1,26.7-61.9,20.2C73.3,174,68,186.8,64,200.2c22.2,13,37,31.9,37,55.8\r\n\t\tc0,23.9-14.8,47.4-37,60.4c4,13.4,9.3,26.2,15.8,38.2c24.9-6.5,45-1.3,61.9,15.6c17,16.9,22.1,37.1,15.6,62\r\n\t\tc12.1,6.5,24.8,11.8,38.2,15.8c13-22.2,36.5-36.9,60.4-36.9c23.9,0,47.4,14.7,60.4,36.9c13.4-4,26.2-9.3,38.2-15.8\r\n\t\tc-6.5-24.9-1.3-45,15.6-62c16.9-16.9,37.1-26.7,62-20.2c6.5-12.1,11.8-24.9,15.8-38.2C425.8,298.8,411.1,279.9,411.1,256z\r\n\t\t M256,354.3c-54.2,0-98.3-44-98.3-98.3c0-54.3,44-98.3,98.3-98.3c54.3,0,98.3,44,98.3,98.3C354.3,310.3,310.3,354.3,256,354.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.gearA = gearA;
\ No newline at end of file
diff --git a/dist/ionicons/gearB.js b/dist/ionicons/gearB.js
new file mode 100644
index 000000000..d91870a0d
--- /dev/null
+++ b/dist/ionicons/gearB.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.gearB = void 0;
+var gearB = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,294.4v-76.8h-42.8c-3.4-14.4-8.9-28-16.1-40.5l29.8-29.7l-54.3-54.3l-29.1,29.1c-12.6-7.7-26.4-13.5-41.1-17.3V64\r\n\th-76.8v40.9c-14.7,3.8-28.5,9.7-41.1,17.3l-29.1-29.1l-54.3,54.3l29.8,29.7c-7.2,12.5-12.6,26.1-16.1,40.5H64v76.8h44.1\r\n\tc3.8,13.7,9.5,26.6,16.7,38.6l-31.7,31.7l54.3,54.3l32.3-32.3c11.7,6.8,24.5,11.9,37.9,15.4v46h76.8v-46\r\n\tc13.5-3.5,26.2-8.6,37.9-15.4l32.3,32.3l54.3-54.3L387.3,333c7.2-11.9,12.9-24.8,16.7-38.6H448z M256,309.8\r\n\tc-29.7,0-53.7-24.1-53.7-53.8s24-53.8,53.7-53.8s53.8,24.1,53.8,53.8S285.7,309.8,256,309.8z"
+ },
+ "children": []
+ }]
+};
+exports.gearB = gearB;
\ No newline at end of file
diff --git a/dist/ionicons/grid.js b/dist/ionicons/grid.js
new file mode 100644
index 000000000..154fc0dc2
--- /dev/null
+++ b/dist/ionicons/grid.js
@@ -0,0 +1,147 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.grid = void 0;
+var grid = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M288,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M416,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M288,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M416,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M288,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M416,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.grid = grid;
\ No newline at end of file
diff --git a/dist/ionicons/hammer.js b/dist/ionicons/hammer.js
new file mode 100644
index 000000000..2b2fbd068
--- /dev/null
+++ b/dist/ionicons/hammer.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.hammer = void 0;
+var hammer = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M410,32h-52c-3.3,0-6,2.7-6,6v5.6c-4,4-10.9,9.8-17.8,9.8c-10.5,0-14.8-16.4-26.1-18.4s-27.2-3-37.9-3s-52,0.7-102,21.5\r\n\tc-50,20.8-71.7,64.9-72.3,81.4c-0.3,8.7,2.7,21.1,10,11.1c7.3-10,35.3-42.3,57.7-44.7c22.3-2.3,45.7,0.8,63.7,17.2\r\n\tc17.3,15.7,21.3,30.8,21.3,73.5l-6.6,2c-4.3,1.3-7,5.7-7,9c0,0-0.2,6.5-0.2,70.4C234.8,368,224,474,224,474c0,3.3,2.7,6,6,6h84\r\n\tc3.3,0,6-2.7,6-6c0,0-10.8-106-10.8-200.6c0-63.9-0.2-70.4-0.2-70.4c0-3.3-2.3-7.8-7-9l-8-2c0-38.2-0.4-54,6.3-65.9\r\n\tc7-12.4,22.3-22.9,29.7-25.1c5.9-1.8,16,1.3,22,6.5V122c0,3.3,2.7,6,6,6h52c3.3,0,6-2.7,6-6V38C416,34.7,413.3,32,410,32z"
+ },
+ "children": []
+ }]
+};
+exports.hammer = hammer;
\ No newline at end of file
diff --git a/dist/ionicons/happy.js b/dist/ionicons/happy.js
new file mode 100644
index 000000000..f25447350
--- /dev/null
+++ b/dist/ionicons/happy.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.happy = void 0;
+var happy = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M103.272,253.324\r\n\t\tc-8.272-5.574-9.249-15.145-3.747-22.207C110.074,217.573,123.25,208,144.137,208s34.174,9.593,44.655,23.174\r\n\t\tc5.464,7.076,3.765,17.011-3.787,22.144c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.716-6.223\r\n\t\tc-3.398-4.416-7.621-9.777-17.23-9.777c-9.561,0-13.818,5.387-17.269,9.821c-3.163,4.069-8.274,6.178-13.669,6.179\r\n\t\tC109.618,256,106.186,255.287,103.272,253.324z M394.245,310.945C370.607,356.719,316.344,384,256.004,384\r\n\t\tc-61.869,0-117.55-28.235-138.556-73.677c-3.663-7.939-0.191-17.383,7.734-21.057c2.137-0.978,4.363-1.463,6.658-1.463\r\n\t\tc6.163,0,11.818,3.61,14.407,9.199C162.164,331.438,206.27,352,256.004,352c48.602,0,91.8-20.269,110.053-55.615\r\n\t\tc2.746-5.301,8.148-8.588,14.104-8.588c2.532,0,5.06,0.621,7.308,1.796C395.201,293.598,398.254,303.184,394.245,310.945z\r\n\t\t M409.006,253.317c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.717-6.223c-3.398-4.416-7.62-9.777-17.23-9.777\r\n\t\tc-9.561,0-13.817,5.387-17.268,9.821c-3.163,4.069-8.275,6.178-13.67,6.179c-3.581,0-7.014-0.713-9.928-2.676\r\n\t\tc-8.271-5.574-9.248-15.145-3.746-22.207C334.074,217.573,347.25,208,368.137,208c20.888,0,34.175,9.593,44.656,23.174\r\n\t\tC418.257,238.25,416.558,248.185,409.006,253.317z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M103.272,253.324\r\n\t\tc-8.272-5.574-9.249-15.145-3.747-22.207C110.074,217.573,123.25,208,144.137,208s34.174,9.593,44.655,23.174\r\n\t\tc5.464,7.076,3.765,17.011-3.787,22.144c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.716-6.223\r\n\t\tc-3.398-4.416-7.621-9.777-17.23-9.777c-9.561,0-13.818,5.387-17.269,9.821c-3.163,4.069-8.274,6.178-13.669,6.179\r\n\t\tC109.618,256,106.186,255.287,103.272,253.324z M394.245,310.945C370.607,356.719,316.344,384,256.004,384\r\n\t\tc-61.869,0-117.55-28.235-138.556-73.677c-3.663-7.939-0.191-17.383,7.734-21.057c2.137-0.978,4.363-1.463,6.658-1.463\r\n\t\tc6.163,0,11.818,3.61,14.407,9.199C162.164,331.438,206.27,352,256.004,352c48.602,0,91.8-20.269,110.053-55.615\r\n\t\tc2.746-5.301,8.148-8.588,14.104-8.588c2.532,0,5.06,0.621,7.308,1.796C395.201,293.598,398.254,303.184,394.245,310.945z\r\n\t\t M409.006,253.317c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.717-6.223c-3.398-4.416-7.62-9.777-17.23-9.777\r\n\t\tc-9.561,0-13.817,5.387-17.268,9.821c-3.163,4.069-8.275,6.178-13.67,6.179c-3.581,0-7.014-0.713-9.928-2.676\r\n\t\tc-8.271-5.574-9.248-15.145-3.746-22.207C334.074,217.573,347.25,208,368.137,208c20.888,0,34.175,9.593,44.656,23.174\r\n\t\tC418.257,238.25,416.558,248.185,409.006,253.317z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.happy = happy;
\ No newline at end of file
diff --git a/dist/ionicons/happyOutline.js b/dist/ionicons/happyOutline.js
new file mode 100644
index 000000000..bd7bc5971
--- /dev/null
+++ b/dist/ionicons/happyOutline.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.happyOutline = void 0;
+var happyOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M387.469,289.593c-2.248-1.175-4.775-1.796-7.308-1.796c-5.956,0-11.358,3.287-14.104,8.588\r\n\t\tC347.804,331.731,304.605,352,256.004,352c-49.734,0-93.84-20.562-109.757-54.997c-2.589-5.589-8.244-9.199-14.407-9.199\r\n\t\tc-2.294,0-4.521,0.485-6.658,1.463c-7.926,3.674-11.397,13.117-7.734,21.057C138.454,355.765,194.135,384,256.004,384\r\n\t\tc60.34,0,114.604-27.281,138.241-73.055C398.254,303.184,395.201,293.598,387.469,289.593z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M387.469,289.593c-2.248-1.175-4.775-1.796-7.308-1.796c-5.956,0-11.358,3.287-14.104,8.588\r\n\t\tC347.804,331.731,304.605,352,256.004,352c-49.734,0-93.84-20.562-109.757-54.997c-2.589-5.589-8.244-9.199-14.407-9.199\r\n\t\tc-2.294,0-4.521,0.485-6.658,1.463c-7.926,3.674-11.397,13.117-7.734,21.057C138.454,355.765,194.135,384,256.004,384\r\n\t\tc60.34,0,114.604-27.281,138.241-73.055C398.254,303.184,395.201,293.598,387.469,289.593z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M412.793,231.174C402.312,217.593,389.024,208,368.137,208c-20.887,0-34.062,9.573-44.611,23.117\r\n\t\tc-5.502,7.062-4.525,16.633,3.746,22.207c2.914,1.963,6.347,2.676,9.928,2.676c5.395-0.001,10.507-2.109,13.67-6.179\r\n\t\tc3.45-4.435,7.707-9.821,17.268-9.821c9.61,0,13.832,5.361,17.23,9.777c3.178,4.104,8.305,6.223,13.717,6.223\r\n\t\tc3.581,0,7.007-0.708,9.922-2.683C416.558,248.185,418.257,238.25,412.793,231.174z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M412.793,231.174C402.312,217.593,389.024,208,368.137,208c-20.887,0-34.062,9.573-44.611,23.117\r\n\t\tc-5.502,7.062-4.525,16.633,3.746,22.207c2.914,1.963,6.347,2.676,9.928,2.676c5.395-0.001,10.507-2.109,13.67-6.179\r\n\t\tc3.45-4.435,7.707-9.821,17.268-9.821c9.61,0,13.832,5.361,17.23,9.777c3.178,4.104,8.305,6.223,13.717,6.223\r\n\t\tc3.581,0,7.007-0.708,9.922-2.683C416.558,248.185,418.257,238.25,412.793,231.174z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M188.792,231.174C178.312,217.593,165.024,208,144.137,208s-34.063,9.573-44.612,23.117\r\n\t\tc-5.501,7.062-4.525,16.633,3.747,22.207c2.914,1.963,6.346,2.676,9.927,2.676c5.395-0.001,10.507-2.109,13.669-6.179\r\n\t\tc3.451-4.435,7.708-9.821,17.269-9.821c9.61,0,13.832,5.361,17.23,9.777c3.177,4.104,8.304,6.223,13.716,6.223\r\n\t\tc3.582,0,7.007-0.708,9.922-2.683C192.558,248.185,194.257,238.25,188.792,231.174z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M188.792,231.174C178.312,217.593,165.024,208,144.137,208s-34.063,9.573-44.612,23.117\r\n\t\tc-5.501,7.062-4.525,16.633,3.747,22.207c2.914,1.963,6.346,2.676,9.927,2.676c5.395-0.001,10.507-2.109,13.669-6.179\r\n\t\tc3.451-4.435,7.708-9.821,17.269-9.821c9.61,0,13.832,5.361,17.23,9.777c3.177,4.104,8.304,6.223,13.716,6.223\r\n\t\tc3.582,0,7.007-0.708,9.922-2.683C192.558,248.185,194.257,238.25,188.792,231.174z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.happyOutline = happyOutline;
\ No newline at end of file
diff --git a/dist/ionicons/headphone.js b/dist/ionicons/headphone.js
new file mode 100644
index 000000000..a61b86df4
--- /dev/null
+++ b/dist/ionicons/headphone.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.headphone = void 0;
+var headphone = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M447.4,238.2c-3.2-59.8-21.9-108.6-56-145.2c-0.1-0.1-0.1-0.1-0.2-0.2c-7.7-8.4-16.1-15.9-24.8-22.6\r\n\tc-9-6.9-18.6-13-28.5-18.1c-25.3-13.1-53-20-82.1-20c-29,0-56.6,6.9-81.9,20c-9.9,5.1-19.4,11.2-28.4,18.1\r\n\tc-8.7,6.7-17,14.2-24.7,22.6c-0.1,0.1-0.1,0.1-0.2,0.2c-34,36.6-52.7,85.5-55.9,145.2C61.9,288.9,68,368,77.7,400\r\n\tc20.3,67,40.4,80,72.1,80s58.2-26.4,58.2-58.9V315.1c0-32.5-23.3-59-53.3-59c-18,0-34,9.7-43.8,24.4c0,0-11.1-8.1-13.1-23\r\n\tc-2.1-14.9-3.1-32.4,5.6-63c8.7-30.5,20.8-20.2,35.6-39c2.5-3.3,5.2-6.4,8-9.5c3.2-3.4,6.4-6.7,9.8-9.7c1.6-1.5,3.2-2.8,4.8-4.2\r\n\tc11-9.3,21-17,33.7-22.8c18.9-8.6,39.4-13.3,60.5-13.3c21,0,41.7,4.7,60.7,13.3c12.7,5.8,22.9,13.5,33.9,22.8\r\n\tc1.6,1.4,3.2,2.7,4.8,4.2c3.4,3,6.6,6.3,9.8,9.7c2.8,3.1,5.5,6.2,8,9.5c14.8,18.8,26.9,8.5,35.6,39c8.7,30.5,7.6,48.1,5.6,63\r\n\tc-2.1,14.9-13.1,23-13.1,23c-9.8-14.7-25.7-24.4-43.8-24.4c-30,0-53.3,26.4-53.3,59v106.1c0,32.4,26.5,58.9,58.2,58.9\r\n\tc31.7,0,51.8-13,72.1-80C444,368,450.1,288.9,447.4,238.2z"
+ },
+ "children": []
+ }]
+};
+exports.headphone = headphone;
\ No newline at end of file
diff --git a/dist/ionicons/heart.js b/dist/ionicons/heart.js
new file mode 100644
index 000000000..30ae3da22
--- /dev/null
+++ b/dist/ionicons/heart.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heart = void 0;
+var heart = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M429.9,95.6c-40.4-42.1-106-42.1-146.4,0L256,124.1l-27.5-28.6c-40.5-42.1-106-42.1-146.4,0c-45.5,47.3-45.5,124.1,0,171.4\r\n\t\tL256,448l173.9-181C475.4,219.7,475.4,142.9,429.9,95.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M429.9,95.6c-40.4-42.1-106-42.1-146.4,0L256,124.1l-27.5-28.6c-40.5-42.1-106-42.1-146.4,0c-45.5,47.3-45.5,124.1,0,171.4\r\n\t\tL256,448l173.9-181C475.4,219.7,475.4,142.9,429.9,95.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.heart = heart;
\ No newline at end of file
diff --git a/dist/ionicons/heartBroken.js b/dist/ionicons/heartBroken.js
new file mode 100644
index 000000000..698b29028
--- /dev/null
+++ b/dist/ionicons/heartBroken.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.heartBroken = void 0;
+var heartBroken = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M229,288c1-18,0-38,8-55c2-5,1-10,1-15c-4-21-14-40-15-60c0-1.39,1.004-4.771,1.005-6.157\r\n\t\tc-3.216,2.234-7.607,4.024-11.005,5.157c-20,6-17.51,2.573-34.51,13.573l-11.933,7.228c16.343-17.939,38.528-24.781,56.525-38.714\r\n\t\tc0.194-15.438,0.858-30.677,3.137-45.84C185.61,53.496,121.785,54.268,82.123,95.57c-45.497,47.344-45.497,124.101,0,171.445\r\n\t\tl152.849,159.096c-0.085-10.656-0.443-21.176-1.972-31.111C227,359,229,324,229,288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M229,288c1-18,0-38,8-55c2-5,1-10,1-15c-4-21-14-40-15-60c0-1.39,1.004-4.771,1.005-6.157\r\n\t\tc-3.216,2.234-7.607,4.024-11.005,5.157c-20,6-17.51,2.573-34.51,13.573l-11.933,7.228c16.343-17.939,38.528-24.781,56.525-38.714\r\n\t\tc0.194-15.438,0.858-30.677,3.137-45.84C185.61,53.496,121.785,54.268,82.123,95.57c-45.497,47.344-45.497,124.101,0,171.445\r\n\t\tl152.849,159.096c-0.085-10.656-0.443-21.176-1.972-31.111C227,359,229,324,229,288z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M322,301c-11-26-33-44-63-50c-0.85,0-1.879-0.543-2.936-1.319c-0.023,0.107-0.041,0.213-0.064,0.319c-11,48-23,94-21,142\r\n\t\tc0,12.227,3.983,25.117,3.833,38.131L256,448l104-108.25C345.153,329.271,330.428,318.621,322,301z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M322,301c-11-26-33-44-63-50c-0.85,0-1.879-0.543-2.936-1.319c-0.023,0.107-0.041,0.213-0.064,0.319c-11,48-23,94-21,142\r\n\t\tc0,12.227,3.983,25.117,3.833,38.131L256,448l104-108.25C345.153,329.271,330.428,318.621,322,301z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M429.874,95.57c-40.426-42.094-105.989-42.094-146.408,0L264,115.403c0.075,13.175,0.213,26.202-3,38.597\r\n\t\tc-2,10-19,19-16,31c3.003,13.213,8.166,25.705,10.732,38.559C271.014,232.084,284.771,242.896,297,256\r\n\t\tc22.801,26.766,37.747,57.459,65.283,81.371l67.591-70.355C475.375,219.671,475.375,142.914,429.874,95.57z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M429.874,95.57c-40.426-42.094-105.989-42.094-146.408,0L264,115.403c0.075,13.175,0.213,26.202-3,38.597\r\n\t\tc-2,10-19,19-16,31c3.003,13.213,8.166,25.705,10.732,38.559C271.014,232.084,284.771,242.896,297,256\r\n\t\tc22.801,26.766,37.747,57.459,65.283,81.371l67.591-70.355C475.375,219.671,475.375,142.914,429.874,95.57z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.heartBroken = heartBroken;
\ No newline at end of file
diff --git a/dist/ionicons/help.js b/dist/ionicons/help.js
new file mode 100644
index 000000000..fbb040dda
--- /dev/null
+++ b/dist/ionicons/help.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.help = void 0;
+var help = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M345.1,77.1C317.6,56.2,286.6,49,247.3,49c-29.8,0-55.3,6.1-75.5,19.7C142,89,128,123.1,128,177h76.8\r\n\t\tc0-14.4-1.4-29.9,7-43.2c8.4-13.3,20.1-23.5,40.2-23.5c20.4,0,30.9,5.9,40.8,18.1c8.4,10.4,11.6,22.8,11.6,36\r\n\t\tc0,11.4-5.8,21.9-12.7,31.4c-3.8,5.6-8.8,10.6-15.1,15.4c0,0-41.5,24.7-56.1,48.1c-10.9,17.4-14.8,39.2-15.7,65.3\r\n\t\tc-0.1,1.9,0.6,5.8,7.2,5.8c6.5,0,56,0,61.8,0c5.8,0,7-4.4,7.1-6.2c0.4-9.5,1.6-24.1,3.3-29.6c3.3-10.4,9.7-19.5,19.7-27.3\r\n\t\tl20.7-14.3c18.7-14.6,33.6-26.5,40.2-35.9c11.3-15.4,19.2-34.4,19.2-56.9C384,123.5,370.5,96.4,345.1,77.1z M242,370.2\r\n\t\tc-25.9-0.8-47.3,17.2-48.2,45.3c-0.8,28.2,19.5,46.7,45.5,47.5c27,0.8,47.9-16.6,48.7-44.7C288.8,390.2,269,371,242,370.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M345.1,77.1C317.6,56.2,286.6,49,247.3,49c-29.8,0-55.3,6.1-75.5,19.7C142,89,128,123.1,128,177h76.8\r\n\t\tc0-14.4-1.4-29.9,7-43.2c8.4-13.3,20.1-23.5,40.2-23.5c20.4,0,30.9,5.9,40.8,18.1c8.4,10.4,11.6,22.8,11.6,36\r\n\t\tc0,11.4-5.8,21.9-12.7,31.4c-3.8,5.6-8.8,10.6-15.1,15.4c0,0-41.5,24.7-56.1,48.1c-10.9,17.4-14.8,39.2-15.7,65.3\r\n\t\tc-0.1,1.9,0.6,5.8,7.2,5.8c6.5,0,56,0,61.8,0c5.8,0,7-4.4,7.1-6.2c0.4-9.5,1.6-24.1,3.3-29.6c3.3-10.4,9.7-19.5,19.7-27.3\r\n\t\tl20.7-14.3c18.7-14.6,33.6-26.5,40.2-35.9c11.3-15.4,19.2-34.4,19.2-56.9C384,123.5,370.5,96.4,345.1,77.1z M242,370.2\r\n\t\tc-25.9-0.8-47.3,17.2-48.2,45.3c-0.8,28.2,19.5,46.7,45.5,47.5c27,0.8,47.9-16.6,48.7-44.7C288.8,390.2,269,371,242,370.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.help = help;
\ No newline at end of file
diff --git a/dist/ionicons/helpBuoy.js b/dist/ionicons/helpBuoy.js
new file mode 100644
index 000000000..39f0b511b
--- /dev/null
+++ b/dist/ionicons/helpBuoy.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.helpBuoy = void 0;
+var helpBuoy = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M434.3,184.5l-61.5,18.9\r\n\tc-6.3-14-15.1-26.8-26.3-38c-11.2-11.2-24-20-38-26.3l18.9-61.5c23.8,9.5,45.6,23.9,64.3,42.5C410.4,138.9,424.8,160.7,434.3,184.5z\r\n\t M256,352c-53,0-96-43-96-96c0-53,43-96,96-96s96,43,96,96C352,309,309,352,256,352z M120.2,120.2c18.7-18.7,40.5-33,64.3-42.5\r\n\tl18.9,61.5c-14,6.3-26.8,15.1-38,26.3c-11.2,11.2-20,24-26.3,38l-61.5-18.9C87.2,160.7,101.6,138.9,120.2,120.2z M77.7,327.5\r\n\tl61.5-18.9c6.3,14,15.1,26.8,26.3,38s24,20,38,26.3l-18.9,61.5c-23.8-9.5-45.6-23.9-64.3-42.5C101.6,373.1,87.2,351.3,77.7,327.5z\r\n\t M391.8,391.8c-18.7,18.7-40.5,33-64.3,42.5l-18.9-61.5c14-6.3,26.8-15.1,38-26.3s20-24,26.3-38l61.5,18.9\r\n\tC424.8,351.3,410.4,373.1,391.8,391.8z"
+ },
+ "children": []
+ }]
+};
+exports.helpBuoy = helpBuoy;
\ No newline at end of file
diff --git a/dist/ionicons/helpCircled.js b/dist/ionicons/helpCircled.js
new file mode 100644
index 000000000..3cbc8e61e
--- /dev/null
+++ b/dist/ionicons/helpCircled.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.helpCircled = void 0;
+var helpCircled = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224c123.7,0,224-100.3,224-224S379.7,32,256,32z M276.2,358.7\r\n\t\tc-0.5,17.8-13.7,28.8-30.8,28.3c-16.4-0.5-29.3-12.2-28.8-30.1c0.5-17.8,14.1-29.1,30.5-28.6C264.3,328.8,276.8,340.9,276.2,358.7z\r\n\t\t M324.9,231.4c-4.2,5.9-13.6,13.5-25.4,22.7l-13.1,9c-6.4,4.9-10.4,10.7-12.5,17.3c-1.1,3.5-1.9,12.6-2.1,18.7\r\n\t\tc-0.1,1.2-0.8,3.9-4.5,3.9c-3.7,0-35,0-39.1,0c-4.1,0-4.6-2.4-4.5-3.6c0.6-16.6,3-30.3,9.9-41.3c9.3-14.8,35.5-30.4,35.5-30.4\r\n\t\tc4-3,7.1-6.2,9.5-9.7c4.4-6,8-12.7,8-19.9c0-8.3-2-16.2-7.3-22.8c-6.2-7.7-12.9-11.4-25.8-11.4c-12.7,0-20.1,6.4-25.4,14.8\r\n\t\tc-5.3,8.4-4.4,18.3-4.4,27.3H175c0-34,8.9-55.7,27.7-68.5c12.7-8.7,28.9-12.5,47.8-12.5c24.8,0,44.5,4.6,61.9,17.8\r\n\t\tc16.1,12.2,24.6,29.4,24.6,52.6C337,209.7,332,221.7,324.9,231.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224c123.7,0,224-100.3,224-224S379.7,32,256,32z M276.2,358.7\r\n\t\tc-0.5,17.8-13.7,28.8-30.8,28.3c-16.4-0.5-29.3-12.2-28.8-30.1c0.5-17.8,14.1-29.1,30.5-28.6C264.3,328.8,276.8,340.9,276.2,358.7z\r\n\t\t M324.9,231.4c-4.2,5.9-13.6,13.5-25.4,22.7l-13.1,9c-6.4,4.9-10.4,10.7-12.5,17.3c-1.1,3.5-1.9,12.6-2.1,18.7\r\n\t\tc-0.1,1.2-0.8,3.9-4.5,3.9c-3.7,0-35,0-39.1,0c-4.1,0-4.6-2.4-4.5-3.6c0.6-16.6,3-30.3,9.9-41.3c9.3-14.8,35.5-30.4,35.5-30.4\r\n\t\tc4-3,7.1-6.2,9.5-9.7c4.4-6,8-12.7,8-19.9c0-8.3-2-16.2-7.3-22.8c-6.2-7.7-12.9-11.4-25.8-11.4c-12.7,0-20.1,6.4-25.4,14.8\r\n\t\tc-5.3,8.4-4.4,18.3-4.4,27.3H175c0-34,8.9-55.7,27.7-68.5c12.7-8.7,28.9-12.5,47.8-12.5c24.8,0,44.5,4.6,61.9,17.8\r\n\t\tc16.1,12.2,24.6,29.4,24.6,52.6C337,209.7,332,221.7,324.9,231.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.helpCircled = helpCircled;
\ No newline at end of file
diff --git a/dist/ionicons/home.js b/dist/ionicons/home.js
new file mode 100644
index 000000000..b03fae8dc
--- /dev/null
+++ b/dist/ionicons/home.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.home = void 0;
+var home = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,288 256,64 64,288 112,288 112,448 208,448 208,320 304,320 304,448 400,448 400,288 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,288 256,64 64,288 112,288 112,448 208,448 208,320 304,320 304,448 400,448 400,288 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.home = home;
\ No newline at end of file
diff --git a/dist/ionicons/icecream.js b/dist/ionicons/icecream.js
new file mode 100644
index 000000000..e16951e7e
--- /dev/null
+++ b/dist/ionicons/icecream.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.icecream = void 0;
+var icecream = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "128,256 256,480 384,256 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "128,256 256,480 384,256 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M402.5,172.6c-0.8-0.4-1.5-0.8-2.3-1.3c-4.4-2.8-8.4-8.5-8.7-12.7l0.1-0.7c3.2-9,5-19.2,5-29.8c0-53.1-43-96.1-96.1-96.1\r\n\t\t\tc-31.4,0-59.2,15-76.8,38.3c0,0-9.1,14-10.8,29c0,0,1.1-19.4,4.2-31.5c-7.4-2.5-15.4-3.8-23.6-3.8c-41.7,0-75.6,33.8-75.6,75.6\r\n\t\t\tc0,6.4,0.8,12.6,2.3,18.5c0,0.4-0.1,0.7-0.2,1c-0.9,5.1-4,9.5-8.4,12.3c-0.7,0.5-1.5,0.9-2.2,1.3c-8.2,5-13.5,13.6-13.5,23.4\r\n\t\t\tc0,15.4,13.5,28,29.9,28h4.1h252h4.1c16.4,0,29.8-12.5,29.8-28C416,186.3,410.6,177.6,402.5,172.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M402.5,172.6c-0.8-0.4-1.5-0.8-2.3-1.3c-4.4-2.8-8.4-8.5-8.7-12.7l0.1-0.7c3.2-9,5-19.2,5-29.8c0-53.1-43-96.1-96.1-96.1\r\n\t\t\tc-31.4,0-59.2,15-76.8,38.3c0,0-9.1,14-10.8,29c0,0,1.1-19.4,4.2-31.5c-7.4-2.5-15.4-3.8-23.6-3.8c-41.7,0-75.6,33.8-75.6,75.6\r\n\t\t\tc0,6.4,0.8,12.6,2.3,18.5c0,0.4-0.1,0.7-0.2,1c-0.9,5.1-4,9.5-8.4,12.3c-0.7,0.5-1.5,0.9-2.2,1.3c-8.2,5-13.5,13.6-13.5,23.4\r\n\t\t\tc0,15.4,13.5,28,29.9,28h4.1h252h4.1c16.4,0,29.8-12.5,29.8-28C416,186.3,410.6,177.6,402.5,172.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.icecream = icecream;
\ No newline at end of file
diff --git a/dist/ionicons/image.js b/dist/ionicons/image.js
new file mode 100644
index 000000000..07a1451b5
--- /dev/null
+++ b/dist/ionicons/image.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.image = void 0;
+var image = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,224c26.5,0,48-21.5,48-48c0-26.5-21.5-48-48-48c-26.5,0-48,21.5-48,48C320,202.5,341.5,224,368,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,224c26.5,0,48-21.5,48-48c0-26.5-21.5-48-48-48c-26.5,0-48,21.5-48,48C320,202.5,341.5,224,368,224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M452,64H60c-15.6,0-28,12.7-28,28.3v327.4c0,15.6,12.4,28.3,28,28.3h392c15.6,0,28-12.7,28-28.3V92.3\r\n\t\tC480,76.7,467.6,64,452,64z M348.9,261.7c-3-3.5-7.6-6.2-12.8-6.2c-5.1,0-8.7,2.4-12.8,5.7l-18.7,15.8c-3.9,2.8-7,4.7-11.5,4.7\r\n\t\tc-4.3,0-8.2-1.6-11-4.1c-1-0.9-2.8-2.6-4.3-4.1L224,215.3c-4-4.6-10-7.5-16.7-7.5c-6.7,0-12.9,3.3-16.8,7.8L64,368.2V107.7\r\n\t\tc1-6.8,6.3-11.7,13.1-11.7h357.7c6.9,0,12.5,5.1,12.9,12l0.3,260.4L348.9,261.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M452,64H60c-15.6,0-28,12.7-28,28.3v327.4c0,15.6,12.4,28.3,28,28.3h392c15.6,0,28-12.7,28-28.3V92.3\r\n\t\tC480,76.7,467.6,64,452,64z M348.9,261.7c-3-3.5-7.6-6.2-12.8-6.2c-5.1,0-8.7,2.4-12.8,5.7l-18.7,15.8c-3.9,2.8-7,4.7-11.5,4.7\r\n\t\tc-4.3,0-8.2-1.6-11-4.1c-1-0.9-2.8-2.6-4.3-4.1L224,215.3c-4-4.6-10-7.5-16.7-7.5c-6.7,0-12.9,3.3-16.8,7.8L64,368.2V107.7\r\n\t\tc1-6.8,6.3-11.7,13.1-11.7h357.7c6.9,0,12.5,5.1,12.9,12l0.3,260.4L348.9,261.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.image = image;
\ No newline at end of file
diff --git a/dist/ionicons/images.js b/dist/ionicons/images.js
new file mode 100644
index 000000000..ccaf3df6a
--- /dev/null
+++ b/dist/ionicons/images.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.images = void 0;
+var images = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M457.6,140.2l-82.5-4l-4.8-53.8c-1-11.3-11.1-19.2-22.9-18.3L51.4,88.4c-11.8,1-20.3,10.5-19.4,21.7l21.2,235.8\r\n\t\t\tc1,11.3,11.2,19.2,22.9,18.3l15-1.2l-2.4,45.8c-0.6,12.6,9.2,22.8,22.4,23.5L441.3,448c13.2,0.6,24.1-8.6,24.8-21.2L480,163.5\r\n\t\t\tC480.6,151,470.7,140.8,457.6,140.2z M102.6,145.5l-7.1,134.8L78.1,305l-16-178c0-0.2,0-0.3,0-0.5s0-0.3,0-0.5\r\n\t\t\tc0.5-5,4.3-9,9.5-9.4l261-21.4c5.2-0.4,9.7,3,10.5,7.9c0,0.2,0.3,0.2,0.3,0.4c0,0.1,0.3,0.2,0.3,0.4l2.7,30.8l-219-10.5\r\n\t\t\tC114.2,123.8,103.2,133,102.6,145.5z M436.7,382.4l-46.7-55.3l-27.5-32.7c-2.4-2.9-6.3-5.3-10.6-5.5c-4.3-0.2-7.5,1.5-11.1,4.1\r\n\t\t\tl-16.4,11.9c-3.5,2.1-6.2,3.5-9.9,3.3c-3.6-0.2-6.8-1.6-9.1-3.8c-0.8-0.8-2.3-2.2-3.5-3.4l-42.8-48.9c-3.1-3.9-8.2-6.4-13.8-6.7\r\n\t\t\tc-5.7-0.3-11.2,2.1-14.8,5.6L129.4,359.8l-6.8,7.4l0.3-6.8l6.8-128.9l3.3-62.9c0-0.2,0-0.4,0-0.5c0-0.2,0-0.4,0-0.5\r\n\t\t\tc1.4-5.4,6.2-9.3,11.9-9l204.2,9.8l28.7,1.4l58.3,2.8c5.8,0.3,10.3,4.7,10.4,10.2c0,0.2,0.3,0.3,0.3,0.5c0,0.2,0.3,0.3,0.3,0.5\r\n\t\t\tL436.7,382.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M457.6,140.2l-82.5-4l-4.8-53.8c-1-11.3-11.1-19.2-22.9-18.3L51.4,88.4c-11.8,1-20.3,10.5-19.4,21.7l21.2,235.8\r\n\t\t\tc1,11.3,11.2,19.2,22.9,18.3l15-1.2l-2.4,45.8c-0.6,12.6,9.2,22.8,22.4,23.5L441.3,448c13.2,0.6,24.1-8.6,24.8-21.2L480,163.5\r\n\t\t\tC480.6,151,470.7,140.8,457.6,140.2z M102.6,145.5l-7.1,134.8L78.1,305l-16-178c0-0.2,0-0.3,0-0.5s0-0.3,0-0.5\r\n\t\t\tc0.5-5,4.3-9,9.5-9.4l261-21.4c5.2-0.4,9.7,3,10.5,7.9c0,0.2,0.3,0.2,0.3,0.4c0,0.1,0.3,0.2,0.3,0.4l2.7,30.8l-219-10.5\r\n\t\t\tC114.2,123.8,103.2,133,102.6,145.5z M436.7,382.4l-46.7-55.3l-27.5-32.7c-2.4-2.9-6.3-5.3-10.6-5.5c-4.3-0.2-7.5,1.5-11.1,4.1\r\n\t\t\tl-16.4,11.9c-3.5,2.1-6.2,3.5-9.9,3.3c-3.6-0.2-6.8-1.6-9.1-3.8c-0.8-0.8-2.3-2.2-3.5-3.4l-42.8-48.9c-3.1-3.9-8.2-6.4-13.8-6.7\r\n\t\t\tc-5.7-0.3-11.2,2.1-14.8,5.6L129.4,359.8l-6.8,7.4l0.3-6.8l6.8-128.9l3.3-62.9c0-0.2,0-0.4,0-0.5c0-0.2,0-0.4,0-0.5\r\n\t\t\tc1.4-5.4,6.2-9.3,11.9-9l204.2,9.8l28.7,1.4l58.3,2.8c5.8,0.3,10.3,4.7,10.4,10.2c0,0.2,0.3,0.3,0.3,0.5c0,0.2,0.3,0.3,0.3,0.5\r\n\t\t\tL436.7,382.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M373.2,262.3c19.4,0,35.2-15.8,35.2-35.2s-15.7-35.2-35.2-35.2c-19.4,0-35.2,15.7-35.2,35.2S353.7,262.3,373.2,262.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M373.2,262.3c19.4,0,35.2-15.8,35.2-35.2s-15.7-35.2-35.2-35.2c-19.4,0-35.2,15.7-35.2,35.2S353.7,262.3,373.2,262.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.images = images;
\ No newline at end of file
diff --git a/dist/ionicons/index.js b/dist/ionicons/index.js
new file mode 100644
index 000000000..bec7c0787
--- /dev/null
+++ b/dist/ionicons/index.js
@@ -0,0 +1 @@
+"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.androidRadioButtonOn=exports.androidRadioButtonOff=exports.androidPrint=exports.androidPlaystore=exports.androidPlane=exports.androidPin=exports.androidPhonePortrait=exports.androidPhoneLandscape=exports.androidPersonAdd=exports.androidPerson=exports.androidPeople=exports.androidOptions=exports.androidOpen=exports.androidNotificationsOff=exports.androidNotificationsNone=exports.androidNotifications=exports.androidNavigate=exports.androidMoreVertical=exports.androidMoreHorizontal=exports.androidMicrophoneOff=exports.androidMicrophone=exports.androidMenu=exports.androidMap=exports.androidMail=exports.androidLock=exports.androidLocate=exports.androidList=exports.androidLaptop=exports.androidImage=exports.androidHome=exports.androidHappy=exports.androidHangout=exports.androidHand=exports.androidGlobe=exports.androidFunnel=exports.androidFolderOpen=exports.androidFolder=exports.androidFilm=exports.androidFavoriteOutline=exports.androidFavorite=exports.androidExpand=exports.androidExit=exports.androidDrafts=exports.androidDownload=exports.androidDoneAll=exports.androidDone=exports.androidDocument=exports.androidDesktop=exports.androidDelete=exports.androidCreate=exports.androidContract=exports.androidContacts=exports.androidContact=exports.androidCompass=exports.androidColorPalette=exports.androidCloudOutline=exports.androidCloudDone=exports.androidCloudCircle=exports.androidCloud=exports.androidClose=exports.androidClipboard=exports.androidCheckmarkCircle=exports.androidCheckboxOutlineBlank=exports.androidCheckboxOutline=exports.androidCheckboxBlank=exports.androidCheckbox=exports.androidChat=exports.androidCart=exports.androidCar=exports.androidCancel=exports.androidCamera=exports.androidCall=exports.androidCalendar=exports.androidBus=exports.androidBulb=exports.androidBookmark=exports.androidBoat=exports.androidBicycle=exports.androidBar=exports.androidAttach=exports.androidArrowUp=exports.androidArrowForward=exports.androidArrowDropupCircle=exports.androidArrowDropup=exports.androidArrowDroprightCircle=exports.androidArrowDropright=exports.androidArrowDropleftCircle=exports.androidArrowDropleft=exports.androidArrowDropdownCircle=exports.androidArrowDropdown=exports.androidArrowDown=exports.androidArrowBack=exports.androidArchive=exports.androidApps=exports.androidAlert=exports.androidAlarmClock=exports.androidAddCircle=exports.androidAdd=exports.alertCircled=exports.alert=void 0;exports.codeDownload=exports.code=exports.cloud=exports.closedCaptioning=exports.closeRound=exports.closeCircled=exports.close=exports.clock=exports.clipboard=exports.chevronUp=exports.chevronRight=exports.chevronLeft=exports.chevronDown=exports.checkmarkRound=exports.checkmarkCircled=exports.checkmark=exports.chatbubbles=exports.chatbubbleWorking=exports.chatbubble=exports.chatboxes=exports.chatboxWorking=exports.chatbox=exports.cash=exports.card=exports.camera=exports.calendar=exports.calculator=exports.bug=exports.briefcase=exports.bowtie=exports.bookmark=exports.bonfire=exports.bluetooth=exports.beer=exports.beaker=exports.batteryLow=exports.batteryHalf=exports.batteryFull=exports.batteryEmpty=exports.batteryCharging=exports.bag=exports.backspaceOutline=exports.backspace=exports.at=exports.asterisk=exports.arrowUpC=exports.arrowUpB=exports.arrowUpA=exports.arrowSwap=exports.arrowShrink=exports.arrowRightC=exports.arrowRightB=exports.arrowRightA=exports.arrowReturnRight=exports.arrowReturnLeft=exports.arrowResize=exports.arrowMove=exports.arrowLeftC=exports.arrowLeftB=exports.arrowLeftA=exports.arrowGraphUpRight=exports.arrowGraphUpLeft=exports.arrowGraphDownRight=exports.arrowGraphDownLeft=exports.arrowExpand=exports.arrowDownC=exports.arrowDownB=exports.arrowDownA=exports.archive=exports.aperture=exports.androidWifi=exports.androidWatch=exports.androidWarning=exports.androidWalk=exports.androidVolumeUp=exports.androidVolumeOff=exports.androidVolumeMute=exports.androidVolumeDown=exports.androidUpload=exports.androidUnlock=exports.androidTrain=exports.androidTime=exports.androidTextsms=exports.androidSync=exports.androidSunny=exports.androidSubway=exports.androidStopwatch=exports.androidStarOutline=exports.androidStarHalf=exports.androidStar=exports.androidShareAlt=exports.androidShare=exports.androidSettings=exports.androidSend=exports.androidSearch=exports.androidSad=exports.androidRestaurant=exports.androidRemoveCircle=exports.androidRemove=exports.androidRefresh=void 0;exports.iosCalendar=exports.iosCalculatorOutline=exports.iosCalculator=exports.iosBrowsersOutline=exports.iosBrowsers=exports.iosBriefcaseOutline=exports.iosBriefcase=exports.iosBoxOutline=exports.iosBox=exports.iosBookmarksOutline=exports.iosBookmarks=exports.iosBookOutline=exports.iosBook=exports.iosBoltOutline=exports.iosBolt=exports.iosBodyOutline=exports.iosBody=exports.iosBellOutline=exports.iosBell=exports.iosBasketballOutline=exports.iosBasketball=exports.iosBaseballOutline=exports.iosBaseball=exports.iosBarcodeOutline=exports.iosBarcode=exports.iosAtOutline=exports.iosAt=exports.iosArrowUp=exports.iosArrowThinUp=exports.iosArrowThinRight=exports.iosArrowThinLeft=exports.iosArrowThinDown=exports.iosArrowRight=exports.iosArrowLeft=exports.iosArrowForward=exports.iosArrowDown=exports.iosArrowBack=exports.iosAnalyticsOutline=exports.iosAnalytics=exports.iosAmericanfootballOutline=exports.iosAmericanfootball=exports.iosAlbumsOutline=exports.iosAlbums=exports.iosAlarmOutline=exports.iosAlarm=exports.ionic=exports.informationCircled=exports.information=exports.images=exports.image=exports.icecream=exports.home=exports.helpCircled=exports.helpBuoy=exports.help=exports.heartBroken=exports.heart=exports.headphone=exports.happyOutline=exports.happy=exports.hammer=exports.grid=exports.gearB=exports.gearA=exports.funnel=exports.forward=exports.forkRepo=exports.fork=exports.folder=exports.flashOff=exports.flash=exports.flame=exports.flag=exports.fireball=exports.filmMarker=exports.filing=exports.female=exports.eyeDisabled=exports.eye=exports.erlenmeyerFlaskBubbles=exports.erlenmeyerFlask=exports.emailUnread=exports.email=exports.eject=exports.egg=exports.edit=exports.easel=exports.earth=exports.drag=exports.documentText=exports.documentIcon=exports.disc=exports.cube=exports.crop=exports.contrast=exports.connectionBars=exports.compose=exports.compass=exports.coffee=exports.codeWorking=void 0;exports.iosLocked=exports.iosLocationOutline=exports.iosLocation=exports.iosListOutline=exports.iosList=exports.iosLightbulbOutline=exports.iosLightbulb=exports.iosKeypadOutline=exports.iosKeypad=exports.iosIonicOutline=exports.iosInformationOutline=exports.iosInformationEmpty=exports.iosInformation=exports.iosInfiniteOutline=exports.iosInfinite=exports.iosHomeOutline=exports.iosHome=exports.iosHelpOutline=exports.iosHelpEmpty=exports.iosHelp=exports.iosHeartOutline=exports.iosHeart=exports.iosGridViewOutline=exports.iosGridView=exports.iosGlassesOutline=exports.iosGlasses=exports.iosGearOutline=exports.iosGear=exports.iosGameControllerBOutline=exports.iosGameControllerB=exports.iosGameControllerAOutline=exports.iosGameControllerA=exports.iosFootballOutline=exports.iosFootball=exports.iosFolderOutline=exports.iosFolder=exports.iosFlowerOutline=exports.iosFlower=exports.iosFlaskOutline=exports.iosFlask=exports.iosFlameOutline=exports.iosFlame=exports.iosFlagOutline=exports.iosFlag=exports.iosFilmOutline=exports.iosFilm=exports.iosFilingOutline=exports.iosFiling=exports.iosFastforwardOutline=exports.iosFastforward=exports.iosEyeOutline=exports.iosEye=exports.iosEmailOutline=exports.iosEmail=exports.iosDrag=exports.iosDownloadOutline=exports.iosDownload=exports.iosCropStrong=exports.iosCrop=exports.iosCopyOutline=exports.iosCopy=exports.iosContactOutline=exports.iosContact=exports.iosComposeOutline=exports.iosCompose=exports.iosColorWandOutline=exports.iosColorWand=exports.iosColorFilterOutline=exports.iosColorFilter=exports.iosCogOutline=exports.iosCog=exports.iosCloudyOutline=exports.iosCloudyNightOutline=exports.iosCloudyNight=exports.iosCloudy=exports.iosCloudUploadOutline=exports.iosCloudUpload=exports.iosCloudOutline=exports.iosCloudDownloadOutline=exports.iosCloudDownload=exports.iosCloud=exports.iosCloseOutline=exports.iosCloseEmpty=exports.iosClose=exports.iosClockOutline=exports.iosClock=exports.iosCircleOutline=exports.iosCircleFilled=exports.iosCheckmarkOutline=exports.iosCheckmarkEmpty=exports.iosCheckmark=exports.iosChatbubbleOutline=exports.iosChatbubble=exports.iosChatboxesOutline=exports.iosChatboxes=exports.iosCartOutline=exports.iosCart=exports.iosCameraOutline=exports.iosCamera=exports.iosCalendarOutline=void 0;exports.iosTennisballOutline=exports.iosTennisball=exports.iosTelephoneOutline=exports.iosTelephone=exports.iosSunnyOutline=exports.iosSunny=exports.iosStopwatchOutline=exports.iosStopwatch=exports.iosStarOutline=exports.iosStarHalf=exports.iosStar=exports.iosSpeedometerOutline=exports.iosSpeedometer=exports.iosSnowy=exports.iosSkipforwardOutline=exports.iosSkipforward=exports.iosSkipbackwardOutline=exports.iosSkipbackward=exports.iosShuffleStrong=exports.iosShuffle=exports.iosSettingsStrong=exports.iosSettings=exports.iosSearchStrong=exports.iosSearch=exports.iosRoseOutline=exports.iosRose=exports.iosRewindOutline=exports.iosRewind=exports.iosReverseCameraOutline=exports.iosReverseCamera=exports.iosReload=exports.iosRefreshOutline=exports.iosRefreshEmpty=exports.iosRefresh=exports.iosRedoOutline=exports.iosRedo=exports.iosRecordingOutline=exports.iosRecording=exports.iosRainyOutline=exports.iosRainy=exports.iosPulseStrong=exports.iosPulse=exports.iosPrinterOutline=exports.iosPrinter=exports.iosPricetagsOutline=exports.iosPricetags=exports.iosPricetagOutline=exports.iosPricetag=exports.iosPlusOutline=exports.iosPlusEmpty=exports.iosPlus=exports.iosPlayOutline=exports.iosPlay=exports.iosPintOutline=exports.iosPint=exports.iosPieOutline=exports.iosPie=exports.iosPhotosOutline=exports.iosPhotos=exports.iosPersonaddOutline=exports.iosPersonadd=exports.iosPersonOutline=exports.iosPerson=exports.iosPeopleOutline=exports.iosPeople=exports.iosPawOutline=exports.iosPaw=exports.iosPauseOutline=exports.iosPause=exports.iosPartlysunnyOutline=exports.iosPartlysunny=exports.iosPaperplaneOutline=exports.iosPaperplane=exports.iosPaperOutline=exports.iosPaper=exports.iosNutritionOutline=exports.iosNutrition=exports.iosNavigateOutline=exports.iosNavigate=exports.iosMusicalNotes=exports.iosMusicalNote=exports.iosMoreOutline=exports.iosMore=exports.iosMoonOutline=exports.iosMoon=exports.iosMonitorOutline=exports.iosMonitor=exports.iosMinusOutline=exports.iosMinusEmpty=exports.iosMinus=exports.iosMicOutline=exports.iosMicOff=exports.iosMic=exports.iosMedkitOutline=exports.iosMedkit=exports.iosMedicalOutline=exports.iosMedical=exports.iosLoopStrong=exports.iosLoop=exports.iosLockedOutline=void 0;exports.refresh=exports.record=exports.radioWaves=exports.quote=exports.qrScanner=exports.pullRequest=exports.printer=exports.pricetags=exports.pricetag=exports.power=exports.pound=exports.podium=exports.plusRound=exports.plusCircled=exports.plus=exports.playstation=exports.play=exports.planet=exports.plane=exports.pizza=exports.pinpoint=exports.pin=exports.pieGraph=exports.personStalker=exports.personAdd=exports.person=exports.pause=exports.paperclip=exports.paperAirplane=exports.paintbucket=exports.paintbrush=exports.outlet=exports.nuclear=exports.noSmoking=exports.network=exports.navigate=exports.naviconRound=exports.navicon=exports.musicNote=exports.mouse=exports.more=exports.monitor=exports.modelS=exports.minusRound=exports.minusCircled=exports.minus=exports.micC=exports.micB=exports.micA=exports.merge=exports.medkit=exports.map=exports.man=exports.male=exports.magnet=exports.loop=exports.logOut=exports.logIn=exports.locked=exports.lockCombination=exports.location=exports.loadD=exports.loadC=exports.loadB=exports.loadA=exports.link=exports.lightbulb=exports.levels=exports.leaf=exports.laptop=exports.knife=exports.key=exports.jet=exports.ipod=exports.iphone=exports.ipad=exports.iosWorldOutline=exports.iosWorld=exports.iosWineglassOutline=exports.iosWineglass=exports.iosVolumeLow=exports.iosVolumeHigh=exports.iosVideocamOutline=exports.iosVideocam=exports.iosUploadOutline=exports.iosUpload=exports.iosUnlockedOutline=exports.iosUnlocked=exports.iosUndoOutline=exports.iosUndo=exports.iosTrashOutline=exports.iosTrash=exports.iosToggleOutline=exports.iosToggle=exports.iosTimerOutline=exports.iosTimer=exports.iosTimeOutline=exports.iosTime=exports.iosThunderstormOutline=exports.iosThunderstorm=void 0;exports.speedometer=exports.speakerphone=exports.soupCanOutline=exports.soupCan=exports.socialYoutubeOutline=exports.socialYoutube=exports.socialYenOutline=exports.socialYen=exports.socialYahooOutline=exports.socialYahoo=exports.socialWordpressOutline=exports.socialWordpress=exports.socialWindowsOutline=exports.socialWindows=exports.socialWhatsappOutline=exports.socialWhatsapp=exports.socialVimeoOutline=exports.socialVimeo=exports.socialUsdOutline=exports.socialUsd=exports.socialTwitterOutline=exports.socialTwitter=exports.socialTwitchOutline=exports.socialTwitch=exports.socialTux=exports.socialTumblrOutline=exports.socialTumblr=exports.socialSnapchatOutline=exports.socialSnapchat=exports.socialSkypeOutline=exports.socialSkype=exports.socialSass=exports.socialRssOutline=exports.socialRss=exports.socialRedditOutline=exports.socialReddit=exports.socialPython=exports.socialPinterestOutline=exports.socialPinterest=exports.socialOctocat=exports.socialNodejs=exports.socialMarkdown=exports.socialLinkedinOutline=exports.socialLinkedin=exports.socialJavascriptOutline=exports.socialJavascript=exports.socialInstagramOutline=exports.socialInstagram=exports.socialHtml5Outline=exports.socialHtml5=exports.socialHackernewsOutline=exports.socialHackernews=exports.socialGoogleplusOutline=exports.socialGoogleplus=exports.socialGoogleOutline=exports.socialGoogle=exports.socialGithubOutline=exports.socialGithub=exports.socialFreebsdDevil=exports.socialFoursquareOutline=exports.socialFoursquare=exports.socialFacebookOutline=exports.socialFacebook=exports.socialEuroOutline=exports.socialEuro=exports.socialDropboxOutline=exports.socialDropbox=exports.socialDribbbleOutline=exports.socialDribbble=exports.socialDesignernewsOutline=exports.socialDesignernews=exports.socialCss3Outline=exports.socialCss3=exports.socialCodepenOutline=exports.socialCodepen=exports.socialChromeOutline=exports.socialChrome=exports.socialBufferOutline=exports.socialBuffer=exports.socialBitcoinOutline=exports.socialBitcoin=exports.socialAppleOutline=exports.socialApple=exports.socialAngularOutline=exports.socialAngular=exports.socialAndroidOutline=exports.socialAndroid=exports.skipForward=exports.skipBackward=exports.shuffle=exports.share=exports.settings=exports.search=exports.scissors=exports.sadOutline=exports.sad=exports.ribbonB=exports.ribbonA=exports.replyAll=exports.reply=void 0;exports.xbox=exports.wrench=exports.woman=exports.wineglass=exports.wifi=exports.waterdrop=exports.wand=exports.volumeMute=exports.volumeMedium=exports.volumeLow=exports.volumeHigh=exports.videocamera=exports.usb=exports.upload=exports.unlocked=exports.university=exports.umbrella=exports.tshirtOutline=exports.tshirt=exports.trophy=exports.trashB=exports.trashA=exports.transgender=exports.toggleFilled=exports.toggle=exports.thumbsup=exports.thumbsdown=exports.thermometer=exports.stop=exports.steam=exports.statsBars=exports.star=exports.spoon=void 0;var alertCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M476.7,422.2L270.1,72.7c-2.9-5-8.3-8.7-14.1-8.7c-5.9,0-11.3,3.7-14.1,8.7L35.3,422.2c-2.8,5-4.8,13-1.9,17.9\r\n\t\tc2.9,4.9,8.2,7.9,14,7.9h417.1c5.8,0,11.1-3,14-7.9C481.5,435.2,479.5,427.1,476.7,422.2z M288,400h-64v-48h64V400z M288,320h-64\r\n\t\tV176h64V320z"},"children":[{"name":"path","attribs":{"d":"M476.7,422.2L270.1,72.7c-2.9-5-8.3-8.7-14.1-8.7c-5.9,0-11.3,3.7-14.1,8.7L35.3,422.2c-2.8,5-4.8,13-1.9,17.9\r\n\t\tc2.9,4.9,8.2,7.9,14,7.9h417.1c5.8,0,11.1-3,14-7.9C481.5,435.2,479.5,427.1,476.7,422.2z M288,400h-64v-48h64V400z M288,320h-64\r\n\t\tV176h64V320z"},"children":[]}]}]}]};exports.alertCircled=alertCircled;var alert={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M320,480H192v-96h128V480z M304,320h-96L192,32h128L304,320z"},"children":[{"name":"path","attribs":{"d":"M320,480H192v-96h128V480z M304,320h-96L192,32h128L304,320z"},"children":[]}]}]}]};exports.alert=alert;var androidAddCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277h-86v86h-42v-86\r\n\t\t\th-86v-42h86v-86h42v86h86V277z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277h-86v86h-42v-86\r\n\t\t\th-86v-42h86v-86h42v86h86V277z"},"children":[]}]}]}]}]}]};exports.androidAddCircle=androidAddCircle;var androidAdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_7_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,277.333H277.333V416h-42.666V277.333H96v-42.666h138.667V96h42.666v138.667H416V277.333z"},"children":[{"name":"path","attribs":{"d":"M416,277.333H277.333V416h-42.666V277.333H96v-42.666h138.667V96h42.666v138.667H416V277.333z"},"children":[]}]}]}]}]}]};exports.androidAdd=androidAdd;var androidAlarmClock={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_2_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M470,124.837l-98.443-81.78l-27.814,32.931l98.442,81.769L470,124.837z M167.192,74.919L139.366,42L42,124.837\r\n\t\t\tl27.814,32.919L167.192,74.919z M266.701,172.628h-32.101v127.446l101.649,60.539l16.051-26.553l-85.6-49.917V172.628z\r\n\t\t\t M256,87.665c-107,0-192.601,86.021-192.601,191.166C63.399,383.98,149,470,256,470c105.936,0,192.601-86.02,192.601-191.169\r\n\t\t\tC448.601,173.687,361.936,87.665,256,87.665z M256,427.52c-82.393,0-149.8-66.906-149.8-148.688\r\n\t\t\tc0-81.777,67.407-148.684,149.8-148.684c82.394,0,149.8,66.906,149.8,148.684C405.8,361.671,338.394,427.52,256,427.52z"},"children":[{"name":"path","attribs":{"d":"M470,124.837l-98.443-81.78l-27.814,32.931l98.442,81.769L470,124.837z M167.192,74.919L139.366,42L42,124.837\r\n\t\t\tl27.814,32.919L167.192,74.919z M266.701,172.628h-32.101v127.446l101.649,60.539l16.051-26.553l-85.6-49.917V172.628z\r\n\t\t\t M256,87.665c-107,0-192.601,86.021-192.601,191.166C63.399,383.98,149,470,256,470c105.936,0,192.601-86.02,192.601-191.169\r\n\t\t\tC448.601,173.687,361.936,87.665,256,87.665z M256,427.52c-82.393,0-149.8-66.906-149.8-148.688\r\n\t\t\tc0-81.777,67.407-148.684,149.8-148.684c82.394,0,149.8,66.906,149.8,148.684C405.8,361.671,338.394,427.52,256,427.52z"},"children":[]}]}]}]}]}]};exports.androidAlarmClock=androidAlarmClock;var androidAlert={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_30_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.6,48,48,141.601,48,256s93.6,208,208,208c114.4,0,208-93.601,208-208S370.4,48,256,48z M280,360h-48v-40h48\r\n\t\t\tV360z M280,272h-48V144h48V272z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.6,48,48,141.601,48,256s93.6,208,208,208c114.4,0,208-93.601,208-208S370.4,48,256,48z M280,360h-48v-40h48\r\n\t\t\tV360z M280,272h-48V144h48V272z"},"children":[]}]}]}]}]}]};exports.androidAlert=androidAlert;var androidApps={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M96,176h80V96H96V176z M216,416h80v-80h-80V416z M96,416h80v-80H96V416z M96,296h80v-80H96V296z M216,296h80v-80h-80V296z\r\n\t\t\t M336,96v80h80V96H336z M216,176h80V96h-80V176z M336,296h80v-80h-80V296z M336,416h80v-80h-80V416z"},"children":[{"name":"path","attribs":{"d":"M96,176h80V96H96V176z M216,416h80v-80h-80V416z M96,416h80v-80H96V416z M96,296h80v-80H96V296z M216,296h80v-80h-80V296z\r\n\t\t\t M336,96v80h80V96H336z M216,176h80V96h-80V176z M336,296h80v-80h-80V296z M336,416h80v-80h-80V416z"},"children":[]}]}]}]}]}]};exports.androidApps=androidApps;var androidArchive={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M453.594,100.001l-32.353-39.299C415.469,52.627,405.083,48,394.664,48H117.335c-10.416,0-20.801,4.627-26.576,12.702\r\n\t\tl-32.351,39.299C51.468,106.923,48,117.335,48,128.886v288.89C48,443.2,68.8,464,94.225,464h323.553\r\n\t\tC443.202,464,464,443.2,464,417.775v-288.89C464,117.335,460.537,106.923,453.594,100.001z M256,383.109L128.89,256h80.89v-46.224\r\n\t\th92.443V256h80.89L256,383.109z M96.534,94.221l18.486-23.111h277.331l21.965,23.111H96.534z"},"children":[{"name":"path","attribs":{"d":"M453.594,100.001l-32.353-39.299C415.469,52.627,405.083,48,394.664,48H117.335c-10.416,0-20.801,4.627-26.576,12.702\r\n\t\tl-32.351,39.299C51.468,106.923,48,117.335,48,128.886v288.89C48,443.2,68.8,464,94.225,464h323.553\r\n\t\tC443.202,464,464,443.2,464,417.775v-288.89C464,117.335,460.537,106.923,453.594,100.001z M256,383.109L128.89,256h80.89v-46.224\r\n\t\th92.443V256h80.89L256,383.109z M96.534,94.221l18.486-23.111h277.331l21.965,23.111H96.534z"},"children":[]}]}]}]};exports.androidArchive=androidArchive;var androidArrowBack={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_8_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M427,234.625H167.296l119.702-119.702L256,85L85,256l171,171l29.922-29.924L167.296,277.375H427V234.625z"},"children":[{"name":"path","attribs":{"d":"M427,234.625H167.296l119.702-119.702L256,85L85,256l171,171l29.922-29.924L167.296,277.375H427V234.625z"},"children":[]}]}]}]}]}]};exports.androidArrowBack=androidArrowBack;var androidArrowDown={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_8_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M277.375,85v259.704l119.702-119.702L427,256L256,427L85,256l29.924-29.922l119.701,118.626V85H277.375z"},"children":[{"name":"path","attribs":{"d":"M277.375,85v259.704l119.702-119.702L427,256L256,427L85,256l29.924-29.922l119.701,118.626V85H277.375z"},"children":[]}]}]}]}]}]};exports.androidArrowDown=androidArrowDown;var androidArrowDropdownCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M256,320l-96-96h192\r\n\t\tL256,320z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M256,320l-96-96h192\r\n\t\tL256,320z"},"children":[]}]}]}]};exports.androidArrowDropdownCircle=androidArrowDropdownCircle;var androidArrowDropdown={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"128,192 256,320 384,192 \t"},"children":[{"name":"polygon","attribs":{"points":"128,192 256,320 384,192 \t"},"children":[]}]}]}]};exports.androidArrowDropdown=androidArrowDropdown;var androidArrowDropleftCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M192,256l96-96v192\r\n\t\tL192,256z"},"children":[{"name":"path","attribs":{"d":"M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M192,256l96-96v192\r\n\t\tL192,256z"},"children":[]}]}]}]};exports.androidArrowDropleftCircle=androidArrowDropleftCircle;var androidArrowDropleft={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"320,128 192,256 320,384 \t"},"children":[{"name":"polygon","attribs":{"points":"320,128 192,256 320,384 \t"},"children":[]}]}]}]};exports.androidArrowDropleft=androidArrowDropleft;var androidArrowDroprightCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,464c114.875,0,208-93.125,208-208S370.875,48,256,48S48,141.125,48,256S141.125,464,256,464z M224,352V160l96,96\r\n\t\tL224,352z"},"children":[{"name":"path","attribs":{"d":"M256,464c114.875,0,208-93.125,208-208S370.875,48,256,48S48,141.125,48,256S141.125,464,256,464z M224,352V160l96,96\r\n\t\tL224,352z"},"children":[]}]}]}]};exports.androidArrowDroprightCircle=androidArrowDroprightCircle;var androidArrowDropright={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"192,128 320,256 192,384 \t"},"children":[{"name":"polygon","attribs":{"points":"192,128 320,256 192,384 \t"},"children":[]}]}]}]};exports.androidArrowDropright=androidArrowDropright;var androidArrowDropupCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M352,288H160l96-96\r\n\t\tL352,288z"},"children":[{"name":"path","attribs":{"d":"M464,256c0-114.875-93.125-208-208-208S48,141.125,48,256s93.125,208,208,208S464,370.875,464,256z M352,288H160l96-96\r\n\t\tL352,288z"},"children":[]}]}]}]};exports.androidArrowDropupCircle=androidArrowDropupCircle;var androidArrowDropup={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"128,320 256,192 384,320 \t"},"children":[{"name":"polygon","attribs":{"points":"128,320 256,192 384,320 \t"},"children":[]}]}]}]};exports.androidArrowDropup=androidArrowDropup;var androidArrowForward={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_8_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M85,277.375h259.704L225.002,397.077L256,427l171-171L256,85l-29.922,29.924l118.626,119.701H85V277.375z"},"children":[{"name":"path","attribs":{"d":"M85,277.375h259.704L225.002,397.077L256,427l171-171L256,85l-29.922,29.924l118.626,119.701H85V277.375z"},"children":[]}]}]}]}]}]};exports.androidArrowForward=androidArrowForward;var androidArrowUp={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_8_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M277.375,427V167.296l119.702,119.702L427,256L256,85L85,256l29.924,29.922l119.701-118.626V427H277.375z"},"children":[{"name":"path","attribs":{"d":"M277.375,427V167.296l119.702,119.702L427,256L256,85L85,256l29.924,29.922l119.701-118.626V427H277.375z"},"children":[]}]}]}]}]}]};exports.androidArrowUp=androidArrowUp;var androidAttach={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_3_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M341.334,128v234.666C341.334,409.604,302.938,448,256,448c-46.937,0-85.333-38.396-85.333-85.334V117.334\r\n\t\t\tC170.667,87.469,194.135,64,224,64c29.864,0,53.333,23.469,53.333,53.334v245.333c0,11.729-9.605,21.333-21.334,21.333\r\n\t\t\tc-11.729,0-21.333-9.604-21.333-21.333V160h-32v202.667C202.667,392.531,226.135,416,256,416\r\n\t\t\tc29.865,0,53.334-23.469,53.334-53.333V117.334C309.334,70.401,270.938,32,224,32c-46.938,0-85.334,38.401-85.334,85.334v245.332\r\n\t\t\tC138.667,427.729,190.938,480,256,480c65.062,0,117.334-52.271,117.334-117.334V128H341.334z"},"children":[{"name":"path","attribs":{"d":"M341.334,128v234.666C341.334,409.604,302.938,448,256,448c-46.937,0-85.333-38.396-85.333-85.334V117.334\r\n\t\t\tC170.667,87.469,194.135,64,224,64c29.864,0,53.333,23.469,53.333,53.334v245.333c0,11.729-9.605,21.333-21.334,21.333\r\n\t\t\tc-11.729,0-21.333-9.604-21.333-21.333V160h-32v202.667C202.667,392.531,226.135,416,256,416\r\n\t\t\tc29.865,0,53.334-23.469,53.334-53.333V117.334C309.334,70.401,270.938,32,224,32c-46.938,0-85.334,38.401-85.334,85.334v245.332\r\n\t\t\tC138.667,427.729,190.938,480,256,480c65.062,0,117.334-52.271,117.334-117.334V128H341.334z"},"children":[]}]}]}]}]}]};exports.androidAttach=androidAttach;var androidBar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_37_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M234.667,277.333V408H128v40h256v-40H277.333V277.333L448,106.667V64H64v42.667L234.667,277.333z M160,149.333\r\n\t\t\tl-42.667-42.666h277.334L352,149.333H160z"},"children":[{"name":"path","attribs":{"d":"M234.667,277.333V408H128v40h256v-40H277.333V277.333L448,106.667V64H64v42.667L234.667,277.333z M160,149.333\r\n\t\t\tl-42.667-42.666h277.334L352,149.333H160z"},"children":[]}]}]}]}]}]};exports.androidBar=androidBar;var androidBicycle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_13_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M330.666,131.202c18.668,0,33.598-14.935,33.598-33.601S349.334,64,330.666,64C312,64,297.07,78.935,297.07,97.601\r\n\t\t\tS312,131.202,330.666,131.202z M386.666,261.334c-51.332,0-93.332,42-93.332,93.333s42,93.333,93.332,93.333\r\n\t\t\tC438,448,480,406,480,354.667S438,261.334,386.666,261.334z M386.666,420c-36.402,0-65.332-28.93-65.332-65.333\r\n\t\t\ts28.93-65.333,65.332-65.333c36.404,0,65.334,28.93,65.334,65.333S423.07,420,386.666,420z M305.597,224H384v-32h-58.845\r\n\t\t\tl-34.62-60.134c-5.605-9.333-15.869-15.864-27.07-15.864c-8.399,0-16.798,3.732-22.399,9.333l-71.732,69.065\r\n\t\t\tc-5.601,5.601-9.333,14-9.333,22.399c0,12.131,9.202,21.465,18.535,27.065L240,282.134V368h32V256l-39.333-32l42.929-44.533\r\n\t\t\tL305.597,224z M125.333,261.334C74,261.334,32,303.334,32,354.667S74,448,125.333,448c51.333,0,93.333-42,93.333-93.333\r\n\t\t\tS176.667,261.334,125.333,261.334z M125.333,420C88.934,420,60,391.07,60,354.667s28.934-65.333,65.333-65.333\r\n\t\t\tc36.399,0,65.333,28.93,65.333,65.333S161.732,420,125.333,420z"},"children":[{"name":"path","attribs":{"d":"M330.666,131.202c18.668,0,33.598-14.935,33.598-33.601S349.334,64,330.666,64C312,64,297.07,78.935,297.07,97.601\r\n\t\t\tS312,131.202,330.666,131.202z M386.666,261.334c-51.332,0-93.332,42-93.332,93.333s42,93.333,93.332,93.333\r\n\t\t\tC438,448,480,406,480,354.667S438,261.334,386.666,261.334z M386.666,420c-36.402,0-65.332-28.93-65.332-65.333\r\n\t\t\ts28.93-65.333,65.332-65.333c36.404,0,65.334,28.93,65.334,65.333S423.07,420,386.666,420z M305.597,224H384v-32h-58.845\r\n\t\t\tl-34.62-60.134c-5.605-9.333-15.869-15.864-27.07-15.864c-8.399,0-16.798,3.732-22.399,9.333l-71.732,69.065\r\n\t\t\tc-5.601,5.601-9.333,14-9.333,22.399c0,12.131,9.202,21.465,18.535,27.065L240,282.134V368h32V256l-39.333-32l42.929-44.533\r\n\t\t\tL305.597,224z M125.333,261.334C74,261.334,32,303.334,32,354.667S74,448,125.333,448c51.333,0,93.333-42,93.333-93.333\r\n\t\t\tS176.667,261.334,125.333,261.334z M125.333,420C88.934,420,60,391.07,60,354.667s28.934-65.333,65.333-65.333\r\n\t\t\tc36.399,0,65.333,28.93,65.333,65.333S161.732,420,125.333,420z"},"children":[]}]}]}]}]}]};exports.androidBicycle=androidBicycle;var androidBoat={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M84.255,413h1.063c34.123,0,63.977-19.021,85.305-42.494c21.325,23.473,51.18,42.762,85.304,42.762\r\n\t\ts63.979-19.334,85.305-42.806C362.559,393.934,392.412,413,426.535,413h1.062l51.253-138.78c2.126-5.329,1.063-11.641-1.07-16.976\r\n\t\tc-2.136-5.333-7.237-8.487-12.567-10.623L427,234.133v-98.15C427,112.51,407.344,93,383.884,93h-63.979l-15.993-53h-95.969\r\n\t\tl-15.995,53h-63.979C104.511,93,85,112.51,85,135.982v98.15l-38.074,12.533c-5.33,2.136-10.582,5.334-12.718,10.667\r\n\t\tc-2.135,5.335-3.158,10.49-1.031,16.887L84.255,413z M128,136h256v84.261l-128-41.605l-128,41.605V136z"},"children":[{"name":"path","attribs":{"d":"M84.255,413h1.063c34.123,0,63.977-19.021,85.305-42.494c21.325,23.473,51.18,42.762,85.304,42.762\r\n\t\ts63.979-19.334,85.305-42.806C362.559,393.934,392.412,413,426.535,413h1.062l51.253-138.78c2.126-5.329,1.063-11.641-1.07-16.976\r\n\t\tc-2.136-5.333-7.237-8.487-12.567-10.623L427,234.133v-98.15C427,112.51,407.344,93,383.884,93h-63.979l-15.993-53h-95.969\r\n\t\tl-15.995,53h-63.979C104.511,93,85,112.51,85,135.982v98.15l-38.074,12.533c-5.33,2.136-10.582,5.334-12.718,10.667\r\n\t\tc-2.135,5.335-3.158,10.49-1.031,16.887L84.255,413z M128,136h256v84.261l-128-41.605l-128,41.605V136z"},"children":[]}]},{"name":"path","attribs":{"d":"M341.231,408.007c-52.253,36.267-118.356,36.258-170.608-0.009c0,0-57.638,64.002-106.632,64.002h21.327\r\n\t\tc29.854,0,58.646-11.726,85.305-25.594c53.315,27.734,117.293,27.728,170.608-0.007C367.89,460.268,396.681,472,426.535,472h21.328\r\n\t\tC400.212,472,341.231,408.007,341.231,408.007z"},"children":[{"name":"path","attribs":{"d":"M341.231,408.007c-52.253,36.267-118.356,36.258-170.608-0.009c0,0-57.638,64.002-106.632,64.002h21.327\r\n\t\tc29.854,0,58.646-11.726,85.305-25.594c53.315,27.734,117.293,27.728,170.608-0.007C367.89,460.268,396.681,472,426.535,472h21.328\r\n\t\tC400.212,472,341.231,408.007,341.231,408.007z"},"children":[]}]}]}]};exports.androidBoat=androidBoat;var androidBookmark={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M360,64H152c-22.002,0-40,17.998-40,40v344l144-64l144,64V104C400,81.998,382.002,64,360,64z"},"children":[]}]};exports.androidBookmark=androidBookmark;var androidBulb={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_26_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,170.136c25.499,0,49.567,10.025,67.771,28.229C341.975,216.568,352,240.637,352,266.136\r\n\t\t\tc0,17.621-4.422,34.031-13.144,48.773c-8.339,14.098-20.437,26.036-34.985,34.526L288,358.697v18.376V448h-64v-70.927v-18.376\r\n\t\t\tl-15.871-9.262C178.442,332.111,160,300.192,160,266.136c0-25.499,10.025-49.567,28.229-67.771\r\n\t\t\tC206.433,180.161,230.501,170.136,256,170.136 M277.333,32c-6.396,0-42.666,0-42.666,0v64h42.666V32L277.333,32z M406.396,85.864\r\n\t\t\tL368,124.271l29.864,29.865l38.406-38.396L406.396,85.864L406.396,85.864z M105.604,85.864l-29.875,29.875l38.406,38.396\r\n\t\t\tL144,124.271L105.604,85.864L105.604,85.864z M256,138.136c-70.396,0-128,57.604-128,128c0,46.938,25.604,88.531,64,110.938V480\r\n\t\t\th128V377.073c38.396-22.406,64-62.938,64-110.938C384,195.739,326.396,138.136,256,138.136L256,138.136z M480,244.802h-64v42.667\r\n\t\t\th64V244.802L480,244.802z M96,244.802H32v42.667h64V244.802L96,244.802z"},"children":[{"name":"path","attribs":{"d":"M256,170.136c25.499,0,49.567,10.025,67.771,28.229C341.975,216.568,352,240.637,352,266.136\r\n\t\t\tc0,17.621-4.422,34.031-13.144,48.773c-8.339,14.098-20.437,26.036-34.985,34.526L288,358.697v18.376V448h-64v-70.927v-18.376\r\n\t\t\tl-15.871-9.262C178.442,332.111,160,300.192,160,266.136c0-25.499,10.025-49.567,28.229-67.771\r\n\t\t\tC206.433,180.161,230.501,170.136,256,170.136 M277.333,32c-6.396,0-42.666,0-42.666,0v64h42.666V32L277.333,32z M406.396,85.864\r\n\t\t\tL368,124.271l29.864,29.865l38.406-38.396L406.396,85.864L406.396,85.864z M105.604,85.864l-29.875,29.875l38.406,38.396\r\n\t\t\tL144,124.271L105.604,85.864L105.604,85.864z M256,138.136c-70.396,0-128,57.604-128,128c0,46.938,25.604,88.531,64,110.938V480\r\n\t\t\th128V377.073c38.396-22.406,64-62.938,64-110.938C384,195.739,326.396,138.136,256,138.136L256,138.136z M480,244.802h-64v42.667\r\n\t\t\th64V244.802L480,244.802z M96,244.802H32v42.667h64V244.802L96,244.802z"},"children":[]}]}]}]}]}]};exports.androidBulb=androidBulb;var androidBus={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_14_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M80,352c0,19.198,13.864,24.531,26.667,36.271v38.396c0,11.729,9.599,21.334,21.333,21.334h21.333\r\n\t\t\t\tc11.734,0,21.334-9.604,21.334-21.334v-21.333h170.666v21.333c0,11.729,9.604,21.334,21.334,21.334H384\r\n\t\t\t\tc11.729,0,21.333-9.604,21.333-21.334v-38.396C418.136,376.531,432,370.136,432,352V148.334C432,73.667,349.864,64,256,64\r\n\t\t\t\tS80,73.667,80,148.334V352z M160,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC192,354.125,178.136,367.989,160,367.989z M352,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC384,354.125,370.136,367.989,352,367.989z M384,245.333H128V138.667h256V245.333z"},"children":[{"name":"path","attribs":{"d":"M80,352c0,19.198,13.864,24.531,26.667,36.271v38.396c0,11.729,9.599,21.334,21.333,21.334h21.333\r\n\t\t\t\tc11.734,0,21.334-9.604,21.334-21.334v-21.333h170.666v21.333c0,11.729,9.604,21.334,21.334,21.334H384\r\n\t\t\t\tc11.729,0,21.333-9.604,21.333-21.334v-38.396C418.136,376.531,432,370.136,432,352V148.334C432,73.667,349.864,64,256,64\r\n\t\t\t\tS80,73.667,80,148.334V352z M160,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC192,354.125,178.136,367.989,160,367.989z M352,367.989c-18.136,0-32-13.864-32-32c0-18.135,13.864-32,32-32s32,13.865,32,32\r\n\t\t\t\tC384,354.125,370.136,367.989,352,367.989z M384,245.333H128V138.667h256V245.333z"},"children":[]}]}]}]}]}]}]}]};exports.androidBus=androidBus;var androidCalendar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368.005,272h-96v96h96V272z M336.005,64v32h-160V64h-48v32h-24.01c-22.002,0-40,17.998-40,40v272\r\n\t\tc0,22.002,17.998,40,40,40h304.01c22.002,0,40-17.998,40-40V136c0-22.002-17.998-40-40-40h-24V64H336.005z M408.005,408h-304.01\r\n\t\tV196h304.01V408z"},"children":[{"name":"path","attribs":{"d":"M368.005,272h-96v96h96V272z M336.005,64v32h-160V64h-48v32h-24.01c-22.002,0-40,17.998-40,40v272\r\n\t\tc0,22.002,17.998,40,40,40h304.01c22.002,0,40-17.998,40-40V136c0-22.002-17.998-40-40-40h-24V64H336.005z M408.005,408h-304.01\r\n\t\tV196h304.01V408z"},"children":[]}]}]}]};exports.androidCalendar=androidCalendar;var androidCall={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M426.666,330.667c-26.666,0-52.271-4.271-75.729-11.729c-7.469-2.136-16-1.073-21.332,5.333l-46.939,46.928\r\n\tc-60.802-30.928-109.864-80-140.802-140.803l46.939-46.927c5.332-5.333,7.462-13.864,5.332-21.333\r\n\tc-8.537-24.531-12.802-50.136-12.802-76.803C181.333,73.604,171.734,64,160,64H85.333C73.599,64,64,73.604,64,85.333\r\n\tC64,285.864,226.136,448,426.666,448c11.73,0,21.334-9.604,21.334-21.333V352C448,340.271,438.396,330.667,426.666,330.667z"},"children":[]}]};exports.androidCall=androidCall;var androidCamera={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"280","r":"63"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"280","r":"63"},"children":[]}]},{"name":"path","attribs":{"d":"M440,96h-88l-32-32H192l-32,32H72c-22.092,0-40,17.908-40,40v272c0,22.092,17.908,40,40,40h368c22.092,0,40-17.908,40-40\r\n\t\tV136C480,113.908,462.092,96,440,96z M256,392c-61.855,0-112-50.145-112-112s50.145-112,112-112s112,50.145,112,112\r\n\t\tS317.855,392,256,392z"},"children":[{"name":"path","attribs":{"d":"M440,96h-88l-32-32H192l-32,32H72c-22.092,0-40,17.908-40,40v272c0,22.092,17.908,40,40,40h368c22.092,0,40-17.908,40-40\r\n\t\tV136C480,113.908,462.092,96,440,96z M256,392c-61.855,0-112-50.145-112-112s50.145-112,112-112s112,50.145,112,112\r\n\t\tS317.855,392,256,392z"},"children":[]}]}]}]};exports.androidCamera=androidCamera;var androidCancel={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C140.559,48,48,140.559,48,256c0,115.436,92.559,208,208,208c115.435,0,208-92.564,208-208\r\n\t\tC464,140.559,371.436,48,256,48z M360.002,330.881l-29.12,29.117L256,285.117l-74.881,74.881l-29.121-29.117L226.881,256\r\n\t\tl-74.883-74.881l29.121-29.116L256,226.881l74.881-74.878l29.12,29.116L285.119,256L360.002,330.881z"},"children":[{"name":"path","attribs":{"d":"M256,48C140.559,48,48,140.559,48,256c0,115.436,92.559,208,208,208c115.435,0,208-92.564,208-208\r\n\t\tC464,140.559,371.436,48,256,48z M360.002,330.881l-29.12,29.117L256,285.117l-74.881,74.881l-29.121-29.117L226.881,256\r\n\t\tl-74.883-74.881l29.121-29.116L256,226.881l74.881-74.878l29.12,29.116L285.119,256L360.002,330.881z"},"children":[]}]}]}]};exports.androidCancel=androidCancel;var androidCar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_15_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M403.208,117.333c-4.271-12.802-16-21.333-29.875-21.333H138.667c-13.875,0-25.604,8.531-29.875,21.333L64,234.667v160\r\n\t\t\tC64,406.396,73.604,416,85.333,416h21.334c11.729,0,21.333-9.604,21.333-21.333V384h256v10.667\r\n\t\t\tc0,11.729,9.604,21.333,21.333,21.333h21.334c11.729,0,21.333-9.604,21.333-21.333v-160L403.208,117.333z M138.667,320\r\n\t\t\tc-18.125,0-32-13.865-32-32s13.875-32,32-32s32,13.866,32,32S156.792,320,138.667,320z M373.333,320c-18.125,0-32-13.865-32-32\r\n\t\t\ts13.875-32,32-32s32,13.866,32,32S391.458,320,373.333,320z M106.667,213.333l32-85.333h234.666l32,85.333H106.667z"},"children":[{"name":"path","attribs":{"d":"M403.208,117.333c-4.271-12.802-16-21.333-29.875-21.333H138.667c-13.875,0-25.604,8.531-29.875,21.333L64,234.667v160\r\n\t\t\tC64,406.396,73.604,416,85.333,416h21.334c11.729,0,21.333-9.604,21.333-21.333V384h256v10.667\r\n\t\t\tc0,11.729,9.604,21.333,21.333,21.333h21.334c11.729,0,21.333-9.604,21.333-21.333v-160L403.208,117.333z M138.667,320\r\n\t\t\tc-18.125,0-32-13.865-32-32s13.875-32,32-32s32,13.866,32,32S156.792,320,138.667,320z M373.333,320c-18.125,0-32-13.865-32-32\r\n\t\t\ts13.875-32,32-32s32,13.866,32,32S391.458,320,373.333,320z M106.667,213.333l32-85.333h234.666l32,85.333H106.667z"},"children":[]}]}]}]}]}]};exports.androidCar=androidCar;var androidCart={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M169.6,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6s41.601-18.718,41.601-41.6\r\n\t\tC211.2,396.317,192.481,377.6,169.6,377.6z M48,51.2v41.6h41.6l74.883,151.682l-31.308,50.954c-3.118,5.2-5.2,12.482-5.2,19.765\r\n\t\tc0,27.85,19.025,41.6,44.825,41.6H416v-40H177.893c-3.118,0-5.2-2.082-5.2-5.2c0-1.036,2.207-5.2,2.207-5.2l20.782-32.8h154.954\r\n\t\tc15.601,0,29.128-8.317,36.4-21.836l74.882-128.8c1.237-2.461,2.082-6.246,2.082-10.399c0-11.446-9.364-19.765-20.8-19.765H135.364\r\n\t\tL115.6,51.2H48z M374.399,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6S416,442.082,416,419.2\r\n\t\tC416,396.317,397.281,377.6,374.399,377.6z"},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M169.6,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6s41.601-18.718,41.601-41.6\r\n\t\tC211.2,396.317,192.481,377.6,169.6,377.6z M48,51.2v41.6h41.6l74.883,151.682l-31.308,50.954c-3.118,5.2-5.2,12.482-5.2,19.765\r\n\t\tc0,27.85,19.025,41.6,44.825,41.6H416v-40H177.893c-3.118,0-5.2-2.082-5.2-5.2c0-1.036,2.207-5.2,2.207-5.2l20.782-32.8h154.954\r\n\t\tc15.601,0,29.128-8.317,36.4-21.836l74.882-128.8c1.237-2.461,2.082-6.246,2.082-10.399c0-11.446-9.364-19.765-20.8-19.765H135.364\r\n\t\tL115.6,51.2H48z M374.399,377.6c-22.882,0-41.6,18.718-41.6,41.601c0,22.882,18.718,41.6,41.6,41.6S416,442.082,416,419.2\r\n\t\tC416,396.317,397.281,377.6,374.399,377.6z"},"children":[]}]}]}]};exports.androidCart=androidCart;var androidChat={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M391.553,64H57.607C53.131,64,48,67.745,48,72.159v214.217c0,4.413,5.131,8.624,9.607,8.624H115v88.894L205.128,295\r\n\t\th186.425c4.477,0,7.447-4.211,7.447-8.624V72.159C399,67.745,396.029,64,391.553,64z"},"children":[{"name":"path","attribs":{"d":"M391.553,64H57.607C53.131,64,48,67.745,48,72.159v214.217c0,4.413,5.131,8.624,9.607,8.624H115v88.894L205.128,295\r\n\t\th186.425c4.477,0,7.447-4.211,7.447-8.624V72.159C399,67.745,396.029,64,391.553,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M456.396,127H424v166.57c0,15.987-6.915,26.43-25.152,26.43H218.096l-38.905,39h129.688L399,448v-89h57.396\r\n\t\tc4.478,0,7.604-4.262,7.604-8.682V136.103C464,131.689,460.874,127,456.396,127z"},"children":[{"name":"path","attribs":{"d":"M456.396,127H424v166.57c0,15.987-6.915,26.43-25.152,26.43H218.096l-38.905,39h129.688L399,448v-89h57.396\r\n\t\tc4.478,0,7.604-4.262,7.604-8.682V136.103C464,131.689,460.874,127,456.396,127z"},"children":[]}]}]}]};exports.androidChat=androidChat;var androidCheckboxBlank={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_23_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z"},"children":[{"name":"path","attribs":{"d":"M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z"},"children":[]}]}]}]}]}]};exports.androidCheckboxBlank=androidCheckboxBlank;var androidCheckboxOutlineBlank={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_25_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M405.333,106.667v298.666H106.667V106.667H405.333 M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64\r\n\t\t\tL405.333,64z"},"children":[{"name":"path","attribs":{"d":"M405.333,106.667v298.666H106.667V106.667H405.333 M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64\r\n\t\t\tL405.333,64z"},"children":[]}]}]}]}]}]};exports.androidCheckboxOutlineBlank=androidCheckboxOutlineBlank;var androidCheckboxOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_24_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M168.531,215.469l-29.864,29.864l96,96L448,128l-29.864-29.864L234.667,280.531L168.531,215.469z M405.333,405.333\r\n\t\t\tH106.667V106.667H320V64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V234.667h-42.667V405.333z"},"children":[{"name":"path","attribs":{"d":"M168.531,215.469l-29.864,29.864l96,96L448,128l-29.864-29.864L234.667,280.531L168.531,215.469z M405.333,405.333\r\n\t\t\tH106.667V106.667H320V64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V234.667h-42.667V405.333z"},"children":[]}]}]}]}]}]};exports.androidCheckboxOutline=androidCheckboxOutline;var androidCheckbox={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_22_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z M213.333,362.667L106.667,256l29.864-29.864\r\n\t\t\tl76.802,76.802l162.136-162.136l29.864,29.865L213.333,362.667z"},"children":[{"name":"path","attribs":{"d":"M405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666C64,428.802,83.198,448,106.667,448h298.666\r\n\t\t\tC428.802,448,448,428.802,448,405.333V106.667C448,83.198,428.802,64,405.333,64z M213.333,362.667L106.667,256l29.864-29.864\r\n\t\t\tl76.802,76.802l162.136-162.136l29.864,29.865L213.333,362.667z"},"children":[]}]}]}]}]}]};exports.androidCheckbox=androidCheckbox;var androidCheckmarkCircle={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M170.718,216.482L141.6,245.6L235.2,339.2l208-208l-29.118-29.118L235.2,279.918L170.718,216.482z M422.4,256\r\n\tc0,91.518-74.883,166.4-166.4,166.4S89.6,347.518,89.6,256S164.482,89.6,256,89.6c15.6,0,31.2,2.082,45.764,6.241L334,63.6\r\n\tC310.082,53.2,284.082,48,256,48C141.6,48,48,141.6,48,256s93.6,208,208,208s208-93.6,208-208H422.4z"},"children":[]}]};exports.androidCheckmarkCircle=androidCheckmarkCircle;var androidClipboard={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M405.333,80h-87.35C310.879,52.396,285.821,32,256,32s-54.879,20.396-61.983,48h-87.35C83.198,80,64,99.198,64,122.667\r\n\tv314.665C64,460.801,83.198,480,106.667,480h298.666C428.802,480,448,460.801,448,437.332V122.667C448,99.198,428.802,80,405.333,80\r\n\tz M256,80c11.729,0,21.333,9.599,21.333,21.333s-9.604,21.334-21.333,21.334s-21.333-9.6-21.333-21.334S244.271,80,256,80z M408,440\r\n\tH104V120h40v72h224v-72h40V440z"},"children":[]}]};exports.androidClipboard=androidClipboard;var androidClose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_5_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"405,136.798 375.202,107 256,226.202 136.798,107 107,136.798 226.202,256 107,375.202 136.798,405 256,285.798 \r\n\t\t\t375.202,405 405,375.202 285.798,256 \t\t"},"children":[{"name":"polygon","attribs":{"points":"405,136.798 375.202,107 256,226.202 136.798,107 107,136.798 226.202,256 107,375.202 136.798,405 256,285.798 \r\n\t\t\t375.202,405 405,375.202 285.798,256 \t\t"},"children":[]}]}]}]}]}]};exports.androidClose=androidClose;var androidCloudCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_32_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.6,48,48,141.6,48,256s93.6,208,208,208c114.4,0,208-93.6,208-208S370.4,48,256,48z M349.6,339.2\r\n\t\t\t\tc0,0-175.759,0-176.799,0c-34.318,0-62.4-28.082-62.4-62.399c0-34.319,28.082-62.4,62.4-62.4c1.041,0,2.082,0,3.117,0\r\n\t\t\t\tc9.364-36.4,41.601-62.399,80.083-62.399c45.764,0,83.199,37.435,83.199,83.198h10.4c29.118,0,52,22.882,52,52.001\r\n\t\t\t\tC401.6,316.318,378.718,339.2,349.6,339.2z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.6,48,48,141.6,48,256s93.6,208,208,208c114.4,0,208-93.6,208-208S370.4,48,256,48z M349.6,339.2\r\n\t\t\t\tc0,0-175.759,0-176.799,0c-34.318,0-62.4-28.082-62.4-62.399c0-34.319,28.082-62.4,62.4-62.4c1.041,0,2.082,0,3.117,0\r\n\t\t\t\tc9.364-36.4,41.601-62.399,80.083-62.399c45.764,0,83.199,37.435,83.199,83.198h10.4c29.118,0,52,22.882,52,52.001\r\n\t\t\t\tC401.6,316.318,378.718,339.2,349.6,339.2z"},"children":[]}]}]}]}]}]}]}]};exports.androidCloudCircle=androidCloudCircle;var androidCloudDone={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\t\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\t\tC496,263.002,455.004,219.999,403.002,217.001z M213.333,362.667L138.667,288l29.864-29.864l44.802,44.802L324.271,192\r\n\t\tl29.865,29.864L213.333,362.667z"},"children":[{"name":"path","attribs":{"d":"M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\t\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\t\tC496,263.002,455.004,219.999,403.002,217.001z M213.333,362.667L138.667,288l29.864-29.864l44.802,44.802L324.271,192\r\n\t\tl29.865,29.864L213.333,362.667z"},"children":[]}]}]}]};exports.androidCloudDone=androidCloudDone;var androidCloudOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_9_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M403.001,217.001C388.997,148.002,328.998,96,256,96c-57.998,0-107.999,32.998-132.997,81\r\n\t\t\t\tC63.002,183.002,16,233.998,16,296c0,65.996,54.004,120,120,120h260c55,0,100-45,100-100.001\r\n\t\t\t\tC496,263.002,455.003,220,403.001,217.001z M396,376H136c-44.004,0-80-35.996-80-80c0-44,35.996-80,80-80h14.004\r\n\t\t\t\tc12.998-46,55-80,105.996-80c60.996,0,110,49,110,110v10h30c32.998,0,60,27.003,60,60C456,348.998,428.998,376,396,376z"},"children":[{"name":"path","attribs":{"d":"M403.001,217.001C388.997,148.002,328.998,96,256,96c-57.998,0-107.999,32.998-132.997,81\r\n\t\t\t\tC63.002,183.002,16,233.998,16,296c0,65.996,54.004,120,120,120h260c55,0,100-45,100-100.001\r\n\t\t\t\tC496,263.002,455.003,220,403.001,217.001z M396,376H136c-44.004,0-80-35.996-80-80c0-44,35.996-80,80-80h14.004\r\n\t\t\t\tc12.998-46,55-80,105.996-80c60.996,0,110,49,110,110v10h30c32.998,0,60,27.003,60,60C456,348.998,428.998,376,396,376z"},"children":[]}]}]}]}]}]}]}]};exports.androidCloudOutline=androidCloudOutline;var androidCloud={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z"},"children":[]}]};exports.androidCloud=androidCloud;var androidColorPalette={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_12_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,64C150.401,64,64,150.401,64,256c0,105.604,86.401,192,192,192c18.136,0,32-13.864,32-32\r\n\t\t\tc0-8.531-3.198-16-8.531-21.333c-5.333-5.334-8.531-12.803-8.531-21.334c0-18.135,13.864-32,32-32h38.396\r\n\t\t\tc58.667,0,106.667-48,106.667-106.666C448,140.802,361.604,64,256,64z M138.667,256c-18.136,0-32-13.864-32-32s13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32S156.802,256,138.667,256z M202.667,170.667c-18.136,0-32-13.865-32-32c0-18.136,13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32C234.667,156.802,220.802,170.667,202.667,170.667z M309.333,170.667c-18.135,0-32-13.865-32-32\r\n\t\t\tc0-18.136,13.865-32,32-32c18.136,0,32,13.864,32,32C341.333,156.802,327.469,170.667,309.333,170.667z M373.333,256\r\n\t\t\tc-18.135,0-32-13.864-32-32s13.865-32,32-32c18.136,0,32,13.864,32,32S391.469,256,373.333,256z"},"children":[{"name":"path","attribs":{"d":"M256,64C150.401,64,64,150.401,64,256c0,105.604,86.401,192,192,192c18.136,0,32-13.864,32-32\r\n\t\t\tc0-8.531-3.198-16-8.531-21.333c-5.333-5.334-8.531-12.803-8.531-21.334c0-18.135,13.864-32,32-32h38.396\r\n\t\t\tc58.667,0,106.667-48,106.667-106.666C448,140.802,361.604,64,256,64z M138.667,256c-18.136,0-32-13.864-32-32s13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32S156.802,256,138.667,256z M202.667,170.667c-18.136,0-32-13.865-32-32c0-18.136,13.864-32,32-32\r\n\t\t\tc18.135,0,32,13.864,32,32C234.667,156.802,220.802,170.667,202.667,170.667z M309.333,170.667c-18.135,0-32-13.865-32-32\r\n\t\t\tc0-18.136,13.865-32,32-32c18.136,0,32,13.864,32,32C341.333,156.802,327.469,170.667,309.333,170.667z M373.333,256\r\n\t\t\tc-18.135,0-32-13.864-32-32s13.865-32,32-32c18.136,0,32,13.864,32,32S391.469,256,373.333,256z"},"children":[]}]}]}]}]}]};exports.androidColorPalette=androidColorPalette;var androidCompass={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,231.358c-13.442,0-24.643,11.2-24.643,24.642s11.2,24.643,24.643,24.643s24.643-11.2,24.643-24.643\r\n\tS269.442,231.358,256,231.358z M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z\r\n\t M305.284,305.284L121.6,390.4l85.116-183.679L390.4,121.6L305.284,305.284z"},"children":[]}]};exports.androidCompass=androidCompass;var androidContact={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M331.08,338.205c-22.156,12.594-47.777,19.783-75.084,19.783c-27.302,0-52.919-7.182-75.073-19.771\r\n\t\tC122.153,356.152,77.262,396,64,448h384C434.745,396,389.854,356.131,331.08,338.205z"},"children":[{"name":"path","attribs":{"d":"M331.08,338.205c-22.156,12.594-47.777,19.783-75.084,19.783c-27.302,0-52.919-7.182-75.073-19.771\r\n\t\tC122.153,356.152,77.262,396,64,448h384C434.745,396,389.854,356.131,331.08,338.205z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255.996,64c-72.871,0-131.945,59.127-131.945,132.013c0,72.887,59.074,131.972,131.945,131.972\r\n\t\t\ts131.945-59.085,131.945-131.972C387.941,123.127,328.867,64,255.996,64z M255.996,294.986c-41.958,0-77.813-25.986-92.209-62.986\r\n\t\t\th184.418C333.809,269,297.953,294.986,255.996,294.986z"},"children":[{"name":"path","attribs":{"d":"M255.996,64c-72.871,0-131.945,59.127-131.945,132.013c0,72.887,59.074,131.972,131.945,131.972\r\n\t\t\ts131.945-59.085,131.945-131.972C387.941,123.127,328.867,64,255.996,64z M255.996,294.986c-41.958,0-77.813-25.986-92.209-62.986\r\n\t\t\th184.418C333.809,269,297.953,294.986,255.996,294.986z"},"children":[]}]}]}]}]}]};exports.androidContact=androidContact;var androidContacts={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M239.208,343.937c-17.78,10.103-38.342,15.876-60.255,15.876c-21.909,0-42.467-5.771-60.246-15.87\r\n\t\t\tC71.544,358.331,42.643,406,32,448h293.912C315.273,406,286.375,358.317,239.208,343.937z"},"children":[{"name":"path","attribs":{"d":"M239.208,343.937c-17.78,10.103-38.342,15.876-60.255,15.876c-21.909,0-42.467-5.771-60.246-15.87\r\n\t\t\tC71.544,358.331,42.643,406,32,448h293.912C315.273,406,286.375,358.317,239.208,343.937z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M178.953,120.035c-58.479,0-105.886,47.394-105.886,105.858c0,58.464,47.407,105.857,105.886,105.857\r\n\t\t\t\tc58.479,0,105.886-47.394,105.886-105.857C284.839,167.429,237.431,120.035,178.953,120.035z M178.953,306.523\r\n\t\t\t\tc-33.671,0-62.445-22.513-73.997-50.523H252.95C241.396,284.011,212.624,306.523,178.953,306.523z"},"children":[{"name":"path","attribs":{"d":"M178.953,120.035c-58.479,0-105.886,47.394-105.886,105.858c0,58.464,47.407,105.857,105.886,105.857\r\n\t\t\t\tc58.479,0,105.886-47.394,105.886-105.857C284.839,167.429,237.431,120.035,178.953,120.035z M178.953,306.523\r\n\t\t\t\tc-33.671,0-62.445-22.513-73.997-50.523H252.95C241.396,284.011,212.624,306.523,178.953,306.523z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M322.602,384H480c-10.638-42-39.537-81.691-86.703-96.072c-17.781,10.104-38.343,15.873-60.256,15.873\r\n\t\t\t\tc-14.823,0-29.024-2.654-42.168-7.49c-7.445,12.47-16.927,25.592-27.974,34.906C289.245,341.354,309.146,364,322.602,384z"},"children":[{"name":"path","attribs":{"d":"M322.602,384H480c-10.638-42-39.537-81.691-86.703-96.072c-17.781,10.104-38.343,15.873-60.256,15.873\r\n\t\t\t\tc-14.823,0-29.024-2.654-42.168-7.49c-7.445,12.47-16.927,25.592-27.974,34.906C289.245,341.354,309.146,364,322.602,384z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M306.545,200h100.493c-11.554,28-40.327,50.293-73.997,50.293c-8.875,0-17.404-1.692-25.375-4.51\r\n\t\t\tc-1.338,8.709-3.543,17.07-6.52,25.118c10.066,3.174,20.779,4.862,31.895,4.862c58.479,0,105.886-47.41,105.886-105.872\r\n\t\t\tc0-58.465-47.407-105.866-105.886-105.866c-37.49,0-70.427,19.703-89.243,49.09C275.607,131.383,298.961,163,306.545,200z"},"children":[{"name":"path","attribs":{"d":"M306.545,200h100.493c-11.554,28-40.327,50.293-73.997,50.293c-8.875,0-17.404-1.692-25.375-4.51\r\n\t\t\tc-1.338,8.709-3.543,17.07-6.52,25.118c10.066,3.174,20.779,4.862,31.895,4.862c58.479,0,105.886-47.41,105.886-105.872\r\n\t\t\tc0-58.465-47.407-105.866-105.886-105.866c-37.49,0-70.427,19.703-89.243,49.09C275.607,131.383,298.961,163,306.545,200z"},"children":[]}]}]}]}]}]};exports.androidContacts=androidContacts;var androidContract={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_2_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,371.2h76.795V448H192V320H64V371.2z M140.795,140.8H64V192h128V64h-51.205V140.8z M320,448h51.2v-76.8H448V320H320\r\n\t\t\tV448z M371.2,140.8V64H320v128h128v-51.2H371.2z"},"children":[{"name":"path","attribs":{"d":"M64,371.2h76.795V448H192V320H64V371.2z M140.795,140.8H64V192h128V64h-51.205V140.8z M320,448h51.2v-76.8H448V320H320\r\n\t\t\tV448z M371.2,140.8V64H320v128h128v-51.2H371.2z"},"children":[]}]}]}]}]}]};exports.androidContract=androidContract;var androidCreate={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_6_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M64,368v80h80l235.727-235.729l-79.999-79.998L64,368z M441.602,150.398\r\n\t\t\tc8.531-8.531,8.531-21.334,0-29.865l-50.135-50.135c-8.531-8.531-21.334-8.531-29.865,0l-39.468,39.469l79.999,79.998\r\n\t\t\tL441.602,150.398z"},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M64,368v80h80l235.727-235.729l-79.999-79.998L64,368z M441.602,150.398\r\n\t\t\tc8.531-8.531,8.531-21.334,0-29.865l-50.135-50.135c-8.531-8.531-21.334-8.531-29.865,0l-39.468,39.469l79.999,79.998\r\n\t\t\tL441.602,150.398z"},"children":[]}]}]}]}]}]};exports.androidCreate=androidCreate;var androidDelete={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,405.429C128,428.846,147.198,448,170.667,448h170.667C364.802,448,384,428.846,384,405.429V160H128V405.429z M416,96\r\n\t\th-80l-26.785-32H202.786L176,96H96v32h320V96z"},"children":[{"name":"path","attribs":{"d":"M128,405.429C128,428.846,147.198,448,170.667,448h170.667C364.802,448,384,428.846,384,405.429V160H128V405.429z M416,96\r\n\t\th-80l-26.785-32H202.786L176,96H96v32h320V96z"},"children":[]}]}]}]};exports.androidDelete=androidDelete;var androidDesktop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_28_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M437.333,32H74.667C51.198,32,32,51.197,32,74.666v282.667C32,380.802,51.198,400,74.667,400h138.666l-42.666,48v32\r\n\t\t\th170.666v-32l-42.666-48h138.666C460.802,400,480,380.802,480,357.333V74.666C480,51.197,460.802,32,437.333,32z M437.333,320\r\n\t\t\tH74.667V74.666h362.666V320z"},"children":[{"name":"path","attribs":{"d":"M437.333,32H74.667C51.198,32,32,51.197,32,74.666v282.667C32,380.802,51.198,400,74.667,400h138.666l-42.666,48v32\r\n\t\t\th170.666v-32l-42.666-48h138.666C460.802,400,480,380.802,480,357.333V74.666C480,51.197,460.802,32,437.333,32z M437.333,320\r\n\t\t\tH74.667V74.666h362.666V320z"},"children":[]}]}]}]}]}]};exports.androidDesktop=androidDesktop;var androidDocument={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,48H136c-22.092,0-40,17.908-40,40v336c0,22.092,17.908,40,40,40h240c22.092,0,40-17.908,40-40V176L288,48z M272,192\r\n\t\tV80l112,112H272z"},"children":[{"name":"path","attribs":{"d":"M288,48H136c-22.092,0-40,17.908-40,40v336c0,22.092,17.908,40,40,40h240c22.092,0,40-17.908,40-40V176L288,48z M272,192\r\n\t\tV80l112,112H272z"},"children":[]}]}]}]};exports.androidDocument=androidDocument;var androidDoneAll={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_4_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M387.581,139.712L356.755,109L216.913,248.319l30.831,30.719L387.581,139.712z M481.172,109L247.744,340.469\r\n\t\t\tl-91.39-91.051l-30.827,30.715L247.744,403L512,139.712L481.172,109z M0,280.133L123.321,403l30.829-30.713L31.934,249.418\r\n\t\t\tL0,280.133z"},"children":[{"name":"path","attribs":{"d":"M387.581,139.712L356.755,109L216.913,248.319l30.831,30.719L387.581,139.712z M481.172,109L247.744,340.469\r\n\t\t\tl-91.39-91.051l-30.827,30.715L247.744,403L512,139.712L481.172,109z M0,280.133L123.321,403l30.829-30.713L31.934,249.418\r\n\t\t\tL0,280.133z"},"children":[]}]}]}]}]}]};exports.androidDoneAll=androidDoneAll;var androidDone={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"186.301,339.893 96,249.461 64,279.968 186.301,402 448,140.506 416,110 \t\t\t"},"children":[{"name":"polygon","attribs":{"points":"186.301,339.893 96,249.461 64,279.968 186.301,402 448,140.506 416,110 \t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.androidDone=androidDone;var androidDownload={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z M224,268v-76h64v76h68L256,368L156,268H224z"},"children":[]}]};exports.androidDownload=androidDownload;var androidDrafts={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_18_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,201.667c0-14.933-7.469-28.803-20.271-36.266L256,64L52.271,165.401C40.531,172.864,32,186.734,32,201.667v203.666\r\n\t\t\t\tC32,428.802,51.197,448,74.666,448h362.668C460.803,448,480,428.802,480,405.333V201.667z M256,304L84.631,192L256,106.667\r\n\t\t\t\tL427.369,192L256,304z"},"children":[{"name":"path","attribs":{"d":"M480,201.667c0-14.933-7.469-28.803-20.271-36.266L256,64L52.271,165.401C40.531,172.864,32,186.734,32,201.667v203.666\r\n\t\t\t\tC32,428.802,51.197,448,74.666,448h362.668C460.803,448,480,428.802,480,405.333V201.667z M256,304L84.631,192L256,106.667\r\n\t\t\t\tL427.369,192L256,304z"},"children":[]}]}]}]}]}]}]}]};exports.androidDrafts=androidDrafts;var androidExit={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M215.469,332.802l29.863,29.864L352,256L245.332,149.333l-29.863,29.865l55.469,55.469H64v42.666h205.864L215.469,332.802z\r\n\t M405.334,64H106.666C83.198,64,64,83.198,64,106.666V192h42.666v-85.333h298.668v298.668H106.666V320H64v85.334\r\n\tC64,428.802,83.198,448,106.666,448h298.668C428.802,448,448,428.802,448,405.334V106.666C448,83.198,428.802,64,405.334,64z"},"children":[]}]};exports.androidExit=androidExit;var androidExpand={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"396.795,396.8 320,396.8 320,448 448,448 448,320 396.795,320 \t"},"children":[{"name":"polygon","attribs":{"points":"396.795,396.8 320,396.8 320,448 448,448 448,320 396.795,320 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"396.8,115.205 396.8,192 448,192 448,64 320,64 320,115.205 \t"},"children":[{"name":"polygon","attribs":{"points":"396.8,115.205 396.8,192 448,192 448,64 320,64 320,115.205 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"115.205,115.2 192,115.2 192,64 64,64 64,192 115.205,192 \t"},"children":[{"name":"polygon","attribs":{"points":"115.205,115.2 192,115.2 192,64 64,64 64,192 115.205,192 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"115.2,396.795 115.2,320 64,320 64,448 192,448 192,396.795 \t"},"children":[{"name":"polygon","attribs":{"points":"115.2,396.795 115.2,320 64,320 64,448 192,448 192,396.795 \t"},"children":[]}]}]}]};exports.androidExpand=androidExpand;var androidFavoriteOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M349.6,64c-36.4,0-70.718,16.742-93.6,43.947C233.117,80.742,198.8,64,162.4,64C97.918,64,48,114.221,48,179.095\r\n\tc0,79.516,70.718,143.348,177.836,241.694L256,448l30.164-27.211C393.281,322.442,464,258.61,464,179.095\r\n\tC464,114.221,414.082,64,349.6,64z M268.836,393.257l-4.219,3.873L256,404.903l-8.616-7.772l-4.214-3.869\r\n\tc-50.418-46.282-93.961-86.254-122.746-121.994C92.467,236.555,80,208.128,80,179.095c0-22.865,8.422-43.931,23.715-59.316\r\n\tC118.957,104.445,139.798,96,162.4,96c26.134,0,51.97,12.167,69.11,32.545L256,157.661l24.489-29.116\r\n\tC297.63,108.167,323.465,96,349.6,96c22.603,0,43.443,8.445,58.686,23.778C423.578,135.164,432,156.229,432,179.095\r\n\tc0,29.033-12.467,57.459-40.422,92.171C362.794,307.006,319.253,346.975,268.836,393.257z"},"children":[]}]};exports.androidFavoriteOutline=androidFavoriteOutline;var androidFavorite={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,448l-30.164-27.211C118.718,322.442,48,258.61,48,179.095C48,114.221,97.918,64,162.4,64\r\n\t\tc36.399,0,70.717,16.742,93.6,43.947C278.882,80.742,313.199,64,349.6,64C414.082,64,464,114.221,464,179.095\r\n\t\tc0,79.516-70.719,143.348-177.836,241.694L256,448z"},"children":[{"name":"path","attribs":{"d":"M256,448l-30.164-27.211C118.718,322.442,48,258.61,48,179.095C48,114.221,97.918,64,162.4,64\r\n\t\tc36.399,0,70.717,16.742,93.6,43.947C278.882,80.742,313.199,64,349.6,64C414.082,64,464,114.221,464,179.095\r\n\t\tc0,79.516-70.719,143.348-177.836,241.694L256,448z"},"children":[]}]}]}]};exports.androidFavorite=androidFavorite;var androidFilm={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill":"#010101","d":"M376,64v42.667h-40V64H176v42.667h-40V64H96v384h40v-42.666h40V448h160v-42.666h40V448h40V64H376z\r\n\t M176,362.667h-40V320h40V362.667z M176,277.334h-40v-42.667h40V277.334z M176,192h-40v-42.666h40V192z M376,362.667h-40V320h40\r\n\tV362.667z M376,277.334h-40v-42.667h40V277.334z M376,192h-40v-42.666h40V192z"},"children":[]}]};exports.androidFilm=androidFilm;var androidFolderOpen={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M437.334,144H256.006l-42.668-48H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144z M448,373.333\r\n\tc0,5.782-4.885,10.667-10.666,10.667H74.666C68.884,384,64,379.115,64,373.333V176h373.334c5.781,0,10.666,4.885,10.666,10.667\r\n\tV373.333z"},"children":[]}]};exports.androidFolderOpen=androidFolderOpen;var androidFolder={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_10_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M213.338,96H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\t\t\t\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144H256.006L213.338,96z"},"children":[{"name":"path","attribs":{"d":"M213.338,96H74.666C51.197,96,32,115.198,32,138.667v234.666C32,396.802,51.197,416,74.666,416h362.668\r\n\t\t\t\tC460.803,416,480,396.802,480,373.333V186.667C480,163.198,460.803,144,437.334,144H256.006L213.338,96z"},"children":[]}]}]}]}]}]}]}]};exports.androidFolder=androidFolder;var androidFunnel={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M208,400h96v-47.994h-96V400z M32,112v47.994h448V112H32z M112,280.783h288v-49.555H112V280.783z"},"children":[]}]};exports.androidFunnel=androidFunnel;var androidGlobe={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.124,48,48,141.125,48,256c0,114.875,93.124,208,208,208c114.875,0,208-93.125,208-208\r\n\tC464,141.125,370.875,48,256,48z M234.451,432.999c-39.464-4.726-75.978-22.392-104.519-50.932\r\n\tC96.258,348.393,77.714,303.622,77.714,256c0-42.87,15.036-83.424,42.601-115.659c0.71,8.517,2.463,17.648,2.014,24.175\r\n\tc-1.64,23.795-3.988,38.687,9.94,58.762c5.426,7.819,6.759,19.028,9.4,28.078c2.583,8.854,12.902,13.498,20.019,18.953\r\n\tc14.359,11.009,28.096,23.805,43.322,33.494c10.049,6.395,16.326,9.576,13.383,21.839c-2.367,9.862-3.028,15.937-8.13,24.723\r\n\tc-1.557,2.681,5.877,19.918,8.351,22.392c7.498,7.497,14.938,14.375,23.111,21.125C254.396,404.351,240.494,417.954,234.451,432.999\r\n\tz M382.067,382.067c-25.633,25.633-57.699,42.486-92.556,49.081c4.94-12.216,13.736-23.07,21.895-29.362\r\n\tc7.097-5.476,15.986-16.009,19.693-24.352c3.704-8.332,8.611-15.555,13.577-23.217c7.065-10.899-17.419-27.336-25.353-30.781\r\n\tc-17.854-7.751-31.294-18.21-47.161-29.375c-11.305-7.954-34.257,4.154-47.02-1.417c-17.481-7.633-31.883-20.896-47.078-32.339\r\n\tc-15.68-11.809-14.922-25.576-14.922-42.997c12.282,0.453,29.754-3.399,37.908,6.478c2.573,3.117,11.42,17.042,17.342,12.094\r\n\tc4.838-4.043-3.585-20.249-5.212-24.059c-5.005-11.715,11.404-16.284,19.803-24.228c10.96-10.364,34.47-26.618,32.612-34.047\r\n\ts-23.524-28.477-36.249-25.193c-1.907,0.492-18.697,18.097-21.941,20.859c0.086-5.746,0.172-11.491,0.26-17.237\r\n\tc0.055-3.628-6.768-7.352-6.451-9.692c0.8-5.914,17.262-16.647,21.357-21.357c-2.869-1.793-12.659-10.202-15.622-8.968\r\n\tc-7.174,2.99-15.276,5.05-22.45,8.039c0-2.488-0.302-4.825-0.662-7.133c14.376-6.365,29.587-10.791,45.31-13.152l14.084,5.66\r\n\tl9.944,11.801l9.924,10.233l8.675,2.795l13.779-12.995L282,87.929v-8.339c27.25,3.958,52.984,14.124,75.522,29.8\r\n\tc-4.032,0.361-8.463,0.954-13.462,1.59c-2.065-1.22-4.714-1.774-6.965-2.623c6.531,14.042,13.343,27.89,20.264,41.746\r\n\tc7.393,14.801,23.793,30.677,26.673,46.301c3.394,18.416,1.039,35.144,2.896,56.811c1.788,20.865,23.524,44.572,23.524,44.572\r\n\ts10.037,3.419,18.384,2.228C421.055,330.798,405.103,359.029,382.067,382.067z"},"children":[]}]};exports.androidGlobe=androidGlobe;var androidHand={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M450.679,273.5c-14.585-14.577-36.054-15.89-50.639-1.312l-41.687,41.664c-10.852,10.836-23.93,10.859-31.564,1.852\r\n\tc-5.057-5.968-3.061-24.374-1.644-36.049l20.907-171.849c1.867-15.353-9.07-30.185-24.43-32.051\r\n\tc-15.358-1.867-29.322,9.939-31.191,25.289L267.37,236.021c-1.205,3.358-3.79,3.938-4.081-0.582L255.44,60\r\n\tc0-15.465-12.542-28-28.014-28c-15.473,0-28.015,12.535-28.015,28l-0.552,176.752c0.146,2.04-1.604,2.624-1.92,0.294L172.016,99.077\r\n\tc-2.75-15.219-17.323-26.203-32.548-23.453c-15.227,2.748-25.339,18.187-22.591,33.403l22.193,161.455\r\n\tc0.023,2.872-0.941,4.513-2.308,0.831l-33.109-88.517c-5.18-14.572-21.196-23.065-35.776-17.889\r\n\tc-14.579,5.177-22.201,22.061-17.023,36.631l58.042,189.625c0.303,1.046,0.624,2.085,0.953,3.118l0.121,0.39\r\n\tc0.011,0.031,0.025,0.058,0.035,0.088C126.079,444.233,172.57,480,227.427,480c35.116,0,71.591-12.378,99.357-33.672\r\n\tc0.001,0,0.003-0.002,0.003-0.002c29.99-18.051,126.071-121.347,126.071-121.347C467.445,310.402,465.266,288.08,450.679,273.5z"},"children":[]}]};exports.androidHand=androidHand;var androidHangout={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48c-97.321,0-176,77.114-176,172.487c0,95.38,78.679,172.487,176,172.487V464c100.425-47.689,176-152.195,176-243.513\r\n\tC432,125.114,353.321,48,256,48z M246,230.633L224.943,271H193.88l20.712-40H184v-61h62V230.633z M328,230.633L307.768,271h-31.063\r\n\tl20.704-40H266v-61h62V230.633z"},"children":[]}]};exports.androidHangout=androidHangout;var androidHappy={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\tC422.404,347.518,347.518,422.4,256,422.4z M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2\r\n\tc-17.682,0-31.2,13.518-31.2,31.2S311.118,235.2,328.8,235.2z M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2\r\n\tc-17.683,0-31.201,13.518-31.201,31.2S165.518,235.2,183.2,235.2z M256,370.4c48.883,0,89.436-30.164,106.081-72.801H149.919\r\n\tC166.564,340.236,207.117,370.4,256,370.4z"},"children":[]}]};exports.androidHappy=androidHappy;var androidHome={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"208,448 208,320 304,320 304,448 401.6,448 401.6,256 464,256 256,64 48,256 110.4,256 110.4,448 \t"},"children":[{"name":"polygon","attribs":{"points":"208,448 208,320 304,320 304,448 401.6,448 401.6,256 464,256 256,64 48,256 110.4,256 110.4,448 \t"},"children":[]}]}]}]};exports.androidHome=androidHome;var androidImage={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_8_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,405.333V106.667C448,83.198,428.802,64,405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333z M181.333,288l53.334,64l74.666-96l96,128\r\n\t\t\tH106.667L181.333,288z"},"children":[{"name":"path","attribs":{"d":"M448,405.333V106.667C448,83.198,428.802,64,405.333,64H106.667C83.198,64,64,83.198,64,106.667v298.666\r\n\t\t\tC64,428.802,83.198,448,106.667,448h298.666C428.802,448,448,428.802,448,405.333z M181.333,288l53.334,64l74.666-96l96,128\r\n\t\t\tH106.667L181.333,288z"},"children":[]}]}]}]}]}]};exports.androidImage=androidImage;var androidLaptop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_29_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M437.334,416C460.803,416,480,396.803,480,373.334V106.668C480,83.199,460.803,64,437.334,64H74.666\r\n\t\t\tC51.197,64,32,83.199,32,106.668v266.666C32,396.803,51.197,416,74.666,416H0c0,23.469,64,32,96,32h320c32,0,96-8.531,96-32\r\n\t\t\tH437.334z M74.666,106.668h362.668v271.998H74.666V106.668z M256,434.666c-11.729,0-21.333-9.604-21.333-21.334\r\n\t\t\tc0-11.729,9.604-21.332,21.333-21.332s21.333,9.604,21.333,21.332C277.333,425.062,267.729,434.666,256,434.666z"},"children":[{"name":"path","attribs":{"d":"M437.334,416C460.803,416,480,396.803,480,373.334V106.668C480,83.199,460.803,64,437.334,64H74.666\r\n\t\t\tC51.197,64,32,83.199,32,106.668v266.666C32,396.803,51.197,416,74.666,416H0c0,23.469,64,32,96,32h320c32,0,96-8.531,96-32\r\n\t\t\tH437.334z M74.666,106.668h362.668v271.998H74.666V106.668z M256,434.666c-11.729,0-21.333-9.604-21.333-21.334\r\n\t\t\tc0-11.729,9.604-21.332,21.333-21.332s21.333,9.604,21.333,21.332C277.333,425.062,267.729,434.666,256,434.666z"},"children":[]}]}]}]}]}]};exports.androidLaptop=androidLaptop;var androidList={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M408,64H104c-22.091,0-40,17.908-40,40v304c0,22.092,17.909,40,40,40h304c22.092,0,40-17.908,40-40V104\r\n\t\tC448,81.908,430.092,64,408,64z M304,368H144v-48h160V368z M368,280H144v-48h224V280z M368,192H144v-48h224V192z"},"children":[{"name":"path","attribs":{"d":"M408,64H104c-22.091,0-40,17.908-40,40v304c0,22.092,17.909,40,40,40h304c22.092,0,40-17.908,40-40V104\r\n\t\tC448,81.908,430.092,64,408,64z M304,368H144v-48h160V368z M368,280H144v-48h224V280z M368,192H144v-48h224V192z"},"children":[]}]}]}]};exports.androidList=androidList;var androidLocate={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,176c-44.004,0-80.001,36-80.001,80c0,44.004,35.997,80,80.001,80c44.005,0,79.999-35.996,79.999-80\r\n\t\t\tC335.999,212,300.005,176,256,176z M446.938,234.667c-9.605-88.531-81.074-160-169.605-169.599V32h-42.666v33.067\r\n\t\t\tc-88.531,9.599-160,81.068-169.604,169.599H32v42.667h33.062c9.604,88.531,81.072,160,169.604,169.604V480h42.666v-33.062\r\n\t\t\tc88.531-9.604,160-81.073,169.605-169.604H480v-42.667H446.938z M256,405.333c-82.137,0-149.334-67.198-149.334-149.333\r\n\t\t\tc0-82.136,67.197-149.333,149.334-149.333c82.135,0,149.332,67.198,149.332,149.333C405.332,338.135,338.135,405.333,256,405.333z\r\n\t\t\t"},"children":[{"name":"path","attribs":{"d":"M256,176c-44.004,0-80.001,36-80.001,80c0,44.004,35.997,80,80.001,80c44.005,0,79.999-35.996,79.999-80\r\n\t\t\tC335.999,212,300.005,176,256,176z M446.938,234.667c-9.605-88.531-81.074-160-169.605-169.599V32h-42.666v33.067\r\n\t\t\tc-88.531,9.599-160,81.068-169.604,169.599H32v42.667h33.062c9.604,88.531,81.072,160,169.604,169.604V480h42.666v-33.062\r\n\t\t\tc88.531-9.604,160-81.073,169.605-169.604H480v-42.667H446.938z M256,405.333c-82.137,0-149.334-67.198-149.334-149.333\r\n\t\t\tc0-82.136,67.197-149.333,149.334-149.333c82.135,0,149.332,67.198,149.332,149.333C405.332,338.135,338.135,405.333,256,405.333z\r\n\t\t\t"},"children":[]}]}]}]}]}]};exports.androidLocate=androidLocate;var androidLock={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146v40h-20c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\t\t\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\t\t\ts40,17.998,40,40S278.002,368,256,368z M318.002,186H193.998v-40c0-34.004,28.003-62.002,62.002-62.002\r\n\t\t\tc34.004,0,62.002,27.998,62.002,62.002V186z"},"children":[{"name":"path","attribs":{"d":"M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146v40h-20c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\t\t\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\t\t\ts40,17.998,40,40S278.002,368,256,368z M318.002,186H193.998v-40c0-34.004,28.003-62.002,62.002-62.002\r\n\t\t\tc34.004,0,62.002,27.998,62.002,62.002V186z"},"children":[]}]}]}]}]}]};exports.androidLock=androidLock;var androidMail={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_19_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M437.332,80H74.668C51.199,80,32,99.198,32,122.667v266.666C32,412.802,51.199,432,74.668,432h362.664\r\n\t\t\tC460.801,432,480,412.802,480,389.333V122.667C480,99.198,460.801,80,437.332,80z M432,170.667L256,288L80,170.667V128\r\n\t\t\tl176,117.333L432,128V170.667z"},"children":[{"name":"path","attribs":{"d":"M437.332,80H74.668C51.199,80,32,99.198,32,122.667v266.666C32,412.802,51.199,432,74.668,432h362.664\r\n\t\t\tC460.801,432,480,412.802,480,389.333V122.667C480,99.198,460.801,80,437.332,80z M432,170.667L256,288L80,170.667V128\r\n\t\t\tl176,117.333L432,128V170.667z"},"children":[]}]}]}]}]}]};exports.androidMail=androidMail;var androidMap={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_34_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M437.333,64c-2.176,0-4.396,1.369-9.176,3.207S320,108.802,320,108.802L192,64L71.469,104.531\r\n\t\t\t\tC67.197,105.604,64,109.864,64,115.197v322.136C64,443.729,68.271,448,74.666,448c1.828,0,6.505-2.33,9.087-3.319\r\n\t\t\t\tS192,403.197,192,403.197L320,448l120.531-40.531c4.271-1.073,7.469-5.334,7.469-10.667V74.666C448,68.271,443.729,64,437.333,64\r\n\t\t\t\tz M320,405.333l-128-44.802V106.666l128,44.803V405.333z"},"children":[{"name":"path","attribs":{"d":"M437.333,64c-2.176,0-4.396,1.369-9.176,3.207S320,108.802,320,108.802L192,64L71.469,104.531\r\n\t\t\t\tC67.197,105.604,64,109.864,64,115.197v322.136C64,443.729,68.271,448,74.666,448c1.828,0,6.505-2.33,9.087-3.319\r\n\t\t\t\tS192,403.197,192,403.197L320,448l120.531-40.531c4.271-1.073,7.469-5.334,7.469-10.667V74.666C448,68.271,443.729,64,437.333,64\r\n\t\t\t\tz M320,405.333l-128-44.802V106.666l128,44.803V405.333z"},"children":[]}]}]}]}]}]}]}]};exports.androidMap=androidMap;var androidMenu={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_3_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,384h384v-42.666H64V384z M64,277.334h384v-42.667H64V277.334z M64,128v42.665h384V128H64z"},"children":[{"name":"path","attribs":{"d":"M64,384h384v-42.666H64V384z M64,277.334h384v-42.667H64V277.334z M64,128v42.665h384V128H64z"},"children":[]}]}]}]}]}]};exports.androidMenu=androidMenu;var androidMicrophoneOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M367.951,354.654l-26.616-26.562l-9.568-9.548l-4.698-4.706L187,174.041v0.346L76.112,63.531L51.921,87.572L187,222.47\r\n\t\tv28.816c0,37.79,31.121,68.714,68.91,68.714c8.61,0,16.952-1.62,24.565-4.545l32.389,32.274\r\n\t\tc-17.333,8.793-36.812,13.86-56.782,13.86c-62.986,0-121.365-48.59-121.365-116.59H95.773C95.773,322,158,387.701,233,398.013V480\r\n\t\th46v-81.987c22-3.352,43.066-11.222,61.627-22.622l95.278,95.078l24.033-24l-33.847-33.785l-58.216-57.959l58.224,57.959\r\n\t\tL367.951,354.654z"},"children":[{"name":"path","attribs":{"d":"M367.951,354.654l-26.616-26.562l-9.568-9.548l-4.698-4.706L187,174.041v0.346L76.112,63.531L51.921,87.572L187,222.47\r\n\t\tv28.816c0,37.79,31.121,68.714,68.91,68.714c8.61,0,16.952-1.62,24.565-4.545l32.389,32.274\r\n\t\tc-17.333,8.793-36.812,13.86-56.782,13.86c-62.986,0-121.365-48.59-121.365-116.59H95.773C95.773,322,158,387.701,233,398.013V480\r\n\t\th46v-81.987c22-3.352,43.066-11.222,61.627-22.622l95.278,95.078l24.033-24l-33.847-33.785l-58.216-57.959l58.224,57.959\r\n\t\tL367.951,354.654z"},"children":[]}]},{"name":"path","attribs":{"d":"M325,251.286V100.714C325,62.924,293.791,32,256,32s-69,30.924-69,68.714v25.244l137.109,136.968\r\n\t\tC324.779,259.135,325,255.247,325,251.286z"},"children":[{"name":"path","attribs":{"d":"M325,251.286V100.714C325,62.924,293.791,32,256,32s-69,30.924-69,68.714v25.244l137.109,136.968\r\n\t\tC324.779,259.135,325,255.247,325,251.286z"},"children":[]}]},{"name":"path","attribs":{"d":"M416.439,245h-38.941c0,20.496-5.498,39.676-14.931,56.197l27.572,27.516C406.662,304.603,416.439,275.926,416.439,245z"},"children":[{"name":"path","attribs":{"d":"M416.439,245h-38.941c0,20.496-5.498,39.676-14.931,56.197l27.572,27.516C406.662,304.603,416.439,275.926,416.439,245z"},"children":[]}]},{"name":"polygon","attribs":{"points":"459.999,446.427 426.102,412.684 459.957,446.469 \t"},"children":[{"name":"polygon","attribs":{"points":"459.999,446.427 426.102,412.684 459.957,446.469 \t"},"children":[]}]}]}]};exports.androidMicrophoneOff=androidMicrophoneOff;var androidMicrophone={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,320c37.712,0,68.571-30.924,68.571-68.714V100.714C324.571,62.924,293.712,32,256,32s-68.571,30.924-68.571,68.714\r\n\t\tv150.572C187.429,289.076,218.288,320,256,320z M377.139,244.548c0,68.714-58.282,116.815-121.139,116.815\r\n\t\ts-121.139-48.102-121.139-116.815H96c0,77.873,61.719,143.153,137.144,153.465V480h45.713v-81.987\r\n\t\tC354.281,386.561,416,322.421,416,244.548H377.139z"},"children":[{"name":"path","attribs":{"d":"M256,320c37.712,0,68.571-30.924,68.571-68.714V100.714C324.571,62.924,293.712,32,256,32s-68.571,30.924-68.571,68.714\r\n\t\tv150.572C187.429,289.076,218.288,320,256,320z M377.139,244.548c0,68.714-58.282,116.815-121.139,116.815\r\n\t\ts-121.139-48.102-121.139-116.815H96c0,77.873,61.719,143.153,137.144,153.465V480h45.713v-81.987\r\n\t\tC354.281,386.561,416,322.421,416,244.548H377.139z"},"children":[]}]}]}]};exports.androidMicrophone=androidMicrophone;var androidMoreHorizontal={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M136,216c-22.002,0-40,17.998-40,40s17.998,40,40,40s40-17.998,40-40S158.002,216,136,216z M376,216\r\n\tc-22.002,0-40,17.998-40,40s17.998,40,40,40s40-17.998,40-40S398.002,216,376,216z M256,216c-22.002,0-40,17.998-40,40\r\n\ts17.998,40,40,40s40-17.998,40-40S278.002,216,256,216z"},"children":[]}]};exports.androidMoreHorizontal=androidMoreHorizontal;var androidMoreVertical={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M296,136c0-22.002-17.998-40-40-40s-40,17.998-40,40s17.998,40,40,40S296,158.002,296,136z M296,376\r\n\tc0-22.002-17.998-40-40-40s-40,17.998-40,40s17.998,40,40,40S296,398.002,296,376z M296,256c0-22.002-17.998-40-40-40\r\n\ts-40,17.998-40,40s17.998,40,40,40S296,278.002,296,256z"},"children":[]}]};exports.androidMoreVertical=androidMoreVertical;var androidNavigate={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_5_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,64 96,433.062 110.938,448 256,384 401.062,448 416,433.062 \t\t"},"children":[{"name":"polygon","attribs":{"points":"256,64 96,433.062 110.938,448 256,384 401.062,448 416,433.062 \t\t"},"children":[]}]}]}]}]}]};exports.androidNavigate=androidNavigate;var androidNotificationsNone={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M257,120.471c7.083,0,23.911,4.479,23.911,4.479c45.589,10.447,77.678,52.439,77.678,99.85v114.4v13.212l9.321,9.364\r\n\tl7.788,7.823H136.302l7.788-7.823l9.321-9.364V339.2V224.8c0-47.41,32.089-89.403,77.678-99.85c0,0,18.043-4.479,23.911-4.479\r\n\t M256,48c-17.602,0-31.059,13.518-31.059,31.2v14.559c-59.015,13.523-103.53,67.601-103.53,131.041v114.4L80,380.8v20.8h352v-20.8\r\n\tl-41.411-41.6V224.8c0-63.44-44.516-117.518-103.53-131.041V79.2C287.059,61.518,273.602,48,256,48L256,48z M297.411,422.4h-82.823\r\n\tc0,22.881,18.633,41.6,41.412,41.6S297.411,445.281,297.411,422.4L297.411,422.4z"},"children":[]}]};exports.androidNotificationsNone=androidNotificationsNone;var androidNotificationsOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,463.656c22.814,0,41.475-18.656,41.475-41.656h-82.95C214.525,445,233.186,463.656,256,463.656z"},"children":[{"name":"path","attribs":{"d":"M256,463.656c22.814,0,41.475-18.656,41.475-41.656h-82.95C214.525,445,233.186,463.656,256,463.656z"},"children":[]}]},{"name":"path","attribs":{"d":"M131.083,107.172l0.053,0.074L98.09,74.277L74.004,98.383l63.042,63.153C126.888,180.521,121,202.196,121,225.07v114.555\r\n\t\tl-41,41.656V402h297.743l36.182,36.33l24.079-24.301L425.9,402h0.316L131.083,107.172z"},"children":[{"name":"path","attribs":{"d":"M131.083,107.172l0.053,0.074L98.09,74.277L74.004,98.383l63.042,63.153C126.888,180.521,121,202.196,121,225.07v114.555\r\n\t\tl-41,41.656V402h297.743l36.182,36.33l24.079-24.301L425.9,402h0.316L131.083,107.172z"},"children":[]}]},{"name":"path","attribs":{"d":"M391,225.07c0-63.526-45-117.677-104-131.218V79.274c0-17.706-13.371-31.243-31-31.243c-17.628,0-31,13.537-31,31.243\r\n\t\tv14.578c-15,3.438-29.048,9.501-41.75,17.663L391,319.355V225.07z"},"children":[{"name":"path","attribs":{"d":"M391,225.07c0-63.526-45-117.677-104-131.218V79.274c0-17.706-13.371-31.243-31-31.243c-17.628,0-31,13.537-31,31.243\r\n\t\tv14.578c-15,3.438-29.048,9.501-41.75,17.663L391,319.355V225.07z"},"children":[]}]}]}]};exports.androidNotificationsOff=androidNotificationsOff;var androidNotifications={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,464c22.779,0,41.411-18.719,41.411-41.6h-82.823C214.588,445.281,233.221,464,256,464z M390.589,339.2V224.8\r\n\tc0-63.44-44.516-117.518-103.53-131.041V79.2c0-17.682-13.457-31.2-31.059-31.2s-31.059,13.518-31.059,31.2v14.559\r\n\tc-59.015,13.523-103.53,67.601-103.53,131.041v114.4L80,380.8v20.8h352v-20.8L390.589,339.2z"},"children":[]}]};exports.androidNotifications=androidNotifications;var androidOpen={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M405.34,405.332H106.66V106.668H240V64H106.66C83.191,64,64,83.197,64,106.668v298.664C64,428.803,83.191,448,106.66,448\r\n\th298.68c23.469,0,42.66-19.197,42.66-42.668V272h-42.66V405.332z M288,64v42.668h87.474L159.999,322.133l29.866,29.866\r\n\tl215.476-215.47V224H448V64H288z"},"children":[]}]};exports.androidOpen=androidOpen;var androidOptions={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"32","y":"384","width":"272","height":"32"},"children":[{"name":"rect","attribs":{"x":"32","y":"384","width":"272","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"400","y":"384","width":"80","height":"32"},"children":[{"name":"rect","attribs":{"x":"400","y":"384","width":"80","height":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M384,447.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V447.5z"},"children":[{"name":"path","attribs":{"d":"M384,447.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V447.5z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"32","y":"240","width":"80","height":"32"},"children":[{"name":"rect","attribs":{"x":"32","y":"240","width":"80","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"240","width":"272","height":"32"},"children":[{"name":"rect","attribs":{"x":"208","y":"240","width":"272","height":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M192,303.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V303.5z"},"children":[{"name":"path","attribs":{"d":"M192,303.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V303.5z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"32","y":"96","width":"272","height":"32"},"children":[{"name":"rect","attribs":{"x":"32","y":"96","width":"272","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"400","y":"96","width":"80","height":"32"},"children":[{"name":"rect","attribs":{"x":"400","y":"96","width":"80","height":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M384,159.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V159.5z"},"children":[{"name":"path","attribs":{"d":"M384,159.5c0,17.949-14.327,32.5-32,32.5l0,0c-17.673,0-32-14.551-32-32.5v-95c0-17.949,14.327-32.5,32-32.5l0,0\r\n\t\t\tc17.673,0,32,14.551,32,32.5V159.5z"},"children":[]}]}]}]}]}]};exports.androidOptions=androidOptions;var androidPeople={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M337.454,232c33.599,0,61.092-27.002,61.092-60c0-32.997-27.493-60-61.092-60s-61.09,27.003-61.09,60\r\n\tC276.364,204.998,303.855,232,337.454,232z M174.546,232c33.599,0,61.09-27.002,61.09-60c0-32.997-27.491-60-61.09-60\r\n\ts-61.092,27.003-61.092,60C113.454,204.998,140.947,232,174.546,232z M174.546,276C126.688,276,32,298.998,32,346v54h288v-54\r\n\tC320,298.998,222.401,276,174.546,276z M337.454,287.003c-6.105,0-10.325,0-17.454,0.997c23.426,17.002,32,28,32,58v54h128v-54\r\n\tC480,298.998,385.312,287.003,337.454,287.003z"},"children":[]}]};exports.androidPeople=androidPeople;var androidPersonAdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M304,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S251.195,256,304,256z M304,304\r\n\t\t\tc-63.598,0-192,32.402-192,96v48h384v-48C496,336.402,367.598,304,304,304z"},"children":[{"name":"path","attribs":{"d":"M304,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S251.195,256,304,256z M304,304\r\n\t\t\tc-63.598,0-192,32.402-192,96v48h384v-48C496,336.402,367.598,304,304,304z"},"children":[]}]}]}]},{"name":"g","attribs":{"id":"Icon_16_"},"children":[{"name":"g","attribs":{"id":"Icon_16_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M112,224v-64H80v64H16v32h64v64h32v-64h64v-32H112z"},"children":[{"name":"path","attribs":{"d":"M112,224v-64H80v64H16v32h64v64h32v-64h64v-32H112z"},"children":[]}]}]}]}]}]}]}]};exports.androidPersonAdd=androidPersonAdd;var androidPerson={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S203.195,256,256,256z M256,304\r\n\t\tc-63.598,0-192,32.402-192,96v48h384v-48C448,336.402,319.598,304,256,304z"},"children":[{"name":"path","attribs":{"d":"M256,256c52.805,0,96-43.201,96-96s-43.195-96-96-96s-96,43.201-96,96S203.195,256,256,256z M256,304\r\n\t\tc-63.598,0-192,32.402-192,96v48h384v-48C448,336.402,319.598,304,256,304z"},"children":[]}]}]}]};exports.androidPerson=androidPerson;var androidPhoneLandscape={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_6_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,358.856V153.143C480,130.512,461.674,112,439.272,112H72.728C50.326,112,32,130.512,32,153.143v205.713\r\n\t\t\tC32,381.488,50.326,400,72.728,400h366.545C461.674,400,480,381.488,480,358.856z M112,364V148h288v216H112z"},"children":[{"name":"path","attribs":{"d":"M480,358.856V153.143C480,130.512,461.674,112,439.272,112H72.728C50.326,112,32,130.512,32,153.143v205.713\r\n\t\t\tC32,381.488,50.326,400,72.728,400h366.545C461.674,400,480,381.488,480,358.856z M112,364V148h288v216H112z"},"children":[]}]}]}]}]}]};exports.androidPhoneLandscape=androidPhoneLandscape;var androidPhonePortrait={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_6_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M358.856,32H153.143C130.512,32,112,50.326,112,72.728v366.545C112,461.674,130.512,480,153.143,480h205.713\r\n\t\t\tC381.488,480,400,461.674,400,439.272V72.728C400,50.326,381.488,32,358.856,32z M364,400H148V112h216V400z"},"children":[{"name":"path","attribs":{"d":"M358.856,32H153.143C130.512,32,112,50.326,112,72.728v366.545C112,461.674,130.512,480,153.143,480h205.713\r\n\t\t\tC381.488,480,400,461.674,400,439.272V72.728C400,50.326,381.488,32,358.856,32z M364,400H148V112h216V400z"},"children":[]}]}]}]}]}]};exports.androidPhonePortrait=androidPhonePortrait;var androidPin={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32c-88.004,0-160,70.557-160,156.801C96,306.4,256,480,256,480s160-173.6,160-291.199C416,102.557,344.004,32,256,32z\r\n\t\t M256,244.801c-31.996,0-57.144-24.645-57.144-56c0-31.357,25.147-56,57.144-56s57.144,24.643,57.144,56\r\n\t\tC313.144,220.156,287.996,244.801,256,244.801z"},"children":[{"name":"path","attribs":{"d":"M256,32c-88.004,0-160,70.557-160,156.801C96,306.4,256,480,256,480s160-173.6,160-291.199C416,102.557,344.004,32,256,32z\r\n\t\t M256,244.801c-31.996,0-57.144-24.645-57.144-56c0-31.357,25.147-56,57.144-56s57.144,24.643,57.144,56\r\n\t\tC313.144,220.156,287.996,244.801,256,244.801z"},"children":[]}]}]}]};exports.androidPin=androidPin;var androidPlane={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_36_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,336v-40L288,192V79.2c0-17.683-14.82-31.2-32-31.2c-17.179,0-32,13.518-32,31.2V192L64,296v40l160-48v113.602\r\n\t\t\tl-48,31.199V464l80-16l80,16v-31.199l-48-31.199V288L448,336z"},"children":[{"name":"path","attribs":{"d":"M448,336v-40L288,192V79.2c0-17.683-14.82-31.2-32-31.2c-17.179,0-32,13.518-32,31.2V192L64,296v40l160-48v113.602\r\n\t\t\tl-48,31.199V464l80-16l80,16v-31.199l-48-31.199V288L448,336z"},"children":[]}]}]}]}]}]};exports.androidPlane=androidPlane;var androidPlaystore={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M464,152H360c0-57-46.562-103.859-104-103.859C198.562,48.141,152,95,152,152H48C66.688,368,61,464,61,464h389.999\r\n\t\tC450.998,464,445.311,366,464,152z M256,74.105c43.008,0,77.999,34.895,77.999,77.895H178C178,109,212.991,74.105,256,74.105z\r\n\t\t M204,397.64V228.867l142.999,84.387L204,397.64z"},"children":[{"name":"path","attribs":{"d":"M464,152H360c0-57-46.562-103.859-104-103.859C198.562,48.141,152,95,152,152H48C66.688,368,61,464,61,464h389.999\r\n\t\tC450.998,464,445.311,366,464,152z M256,74.105c43.008,0,77.999,34.895,77.999,77.895H178C178,109,212.991,74.105,256,74.105z\r\n\t\t M204,397.64V228.867l142.999,84.387L204,397.64z"},"children":[]}]}]}]};exports.androidPlaystore=androidPlaystore;var androidPrint={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M399.95,160h-287.9C76.824,160,48,188.803,48,224v138.667h79.899V448h256.201v-85.333H464V224\r\n\t\tC464,188.803,435.175,160,399.95,160z M352,416H160V288h192V416z M384.101,64H127.899v80h256.201V64z"},"children":[{"name":"path","attribs":{"d":"M399.95,160h-287.9C76.824,160,48,188.803,48,224v138.667h79.899V448h256.201v-85.333H464V224\r\n\t\tC464,188.803,435.175,160,399.95,160z M352,416H160V288h192V416z M384.101,64H127.899v80h256.201V64z"},"children":[]}]}]}]};exports.androidPrint=androidPrint;var androidRadioButtonOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_20_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.399\r\n\t\t\tc-91.518,0-166.399-74.882-166.399-166.399S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.399,256,422.399z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.399\r\n\t\t\tc-91.518,0-166.399-74.882-166.399-166.399S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.399,256,422.399z"},"children":[]}]}]}]}]}]};exports.androidRadioButtonOff=androidRadioButtonOff;var androidRadioButtonOn={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_21_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,152c-57.2,0-104,46.8-104,104s46.8,104,104,104s104-46.8,104-104S313.2,152,256,152z M256,48\r\n\t\t\tC141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.4\r\n\t\t\tc-91.518,0-166.4-74.883-166.4-166.4S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.4,256,422.4z"},"children":[{"name":"path","attribs":{"d":"M256,152c-57.2,0-104,46.8-104,104s46.8,104,104,104s104-46.8,104-104S313.2,152,256,152z M256,48\r\n\t\t\tC141.601,48,48,141.601,48,256s93.601,208,208,208s208-93.601,208-208S370.399,48,256,48z M256,422.4\r\n\t\t\tc-91.518,0-166.4-74.883-166.4-166.4S164.482,89.6,256,89.6S422.4,164.482,422.4,256S347.518,422.4,256,422.4z"},"children":[]}]}]}]}]}]};exports.androidRadioButtonOn=androidRadioButtonOn;var androidRefresh={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,388c-72.597,0-132-59.405-132-132c0-72.601,59.403-132,132-132c36.3,0,69.299,15.4,92.406,39.601L278,234h154V80\r\n\t\tl-51.698,51.702C348.406,99.798,304.406,80,256,80c-96.797,0-176,79.203-176,176s78.094,176,176,176\r\n\t\tc81.045,0,148.287-54.134,169.401-128H378.85C360.105,353.561,311.712,388,256,388z"},"children":[{"name":"path","attribs":{"d":"M256,388c-72.597,0-132-59.405-132-132c0-72.601,59.403-132,132-132c36.3,0,69.299,15.4,92.406,39.601L278,234h154V80\r\n\t\tl-51.698,51.702C348.406,99.798,304.406,80,256,80c-96.797,0-176,79.203-176,176s78.094,176,176,176\r\n\t\tc81.045,0,148.287-54.134,169.401-128H378.85C360.105,353.561,311.712,388,256,388z"},"children":[]}]}]}]};exports.androidRefresh=androidRefresh;var androidRemoveCircle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277H149v-42h214V277\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M256,48C141.125,48,48,141.125,48,256s93.125,208,208,208s208-93.125,208-208S370.875,48,256,48z M363,277H149v-42h214V277\r\n\t\tz"},"children":[]}]}]}]};exports.androidRemoveCircle=androidRemoveCircle;var androidRemove={"viewBox":"0 0 512 512","children":[{"name":"rect","attribs":{"x":"96","y":"235","width":"320","height":"42"},"children":[]}]};exports.androidRemove=androidRemove;var androidRestaurant={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_38_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M164.852,279.939l61.834-60.251L73.72,71.706c-33.626,32.764-33.626,86.677,0,119.44L164.852,279.939z"},"children":[{"name":"path","attribs":{"d":"M164.852,279.939l61.834-60.251L73.72,71.706c-33.626,32.764-33.626,86.677,0,119.44L164.852,279.939z"},"children":[]}]},{"name":"path","attribs":{"d":"M312.389,241.88c33.636,14.802,80.283,4.232,113.91-29.593c41.222-40.165,49.909-98.303,17.363-128.96\r\n\t\t\t\tc-31.465-31.71-91.131-23.245-132.354,16.921c-34.718,33.825-45.566,79.276-30.374,110.986\r\n\t\t\t\tC233.195,258.802,69.382,418.407,69.382,418.407L99.759,448l149.71-145.866L399.177,448l30.374-29.593L279.842,272.538\r\n\t\t\t\tL312.389,241.88z"},"children":[{"name":"path","attribs":{"d":"M312.389,241.88c33.636,14.802,80.283,4.232,113.91-29.593c41.222-40.165,49.909-98.303,17.363-128.96\r\n\t\t\t\tc-31.465-31.71-91.131-23.245-132.354,16.921c-34.718,33.825-45.566,79.276-30.374,110.986\r\n\t\t\t\tC233.195,258.802,69.382,418.407,69.382,418.407L99.759,448l149.71-145.866L399.177,448l30.374-29.593L279.842,272.538\r\n\t\t\t\tL312.389,241.88z"},"children":[]}]}]}]}]}]}]}]};exports.androidRestaurant=androidRestaurant;var androidSad={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,288c-45.443,0-83.675,26.076-102.205,64h204.41C339.675,314.076,301.443,288,256,288z"},"children":[{"name":"path","attribs":{"d":"M256,288c-45.443,0-83.675,26.076-102.205,64h204.41C339.675,314.076,301.443,288,256,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\t\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\t\tC422.404,347.518,347.518,422.4,256,422.4z"},"children":[{"name":"path","attribs":{"d":"M256,48C140.563,48,48,141.6,48,256c0,114.4,92.563,208,208,208s208-93.6,208-208C464,141.6,370.401,48,256,48z M256,422.4\r\n\t\tc-91.518,0-166.404-74.883-166.404-166.4c0-91.518,74.887-166.4,166.404-166.4S422.404,164.482,422.404,256\r\n\t\tC422.404,347.518,347.518,422.4,256,422.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2c-17.682,0-31.2,13.518-31.2,31.2\r\n\t\tS311.118,235.2,328.8,235.2z"},"children":[{"name":"path","attribs":{"d":"M328.8,235.2c17.683,0,31.201-13.518,31.201-31.2s-13.519-31.2-31.201-31.2c-17.682,0-31.2,13.518-31.2,31.2\r\n\t\tS311.118,235.2,328.8,235.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2c-17.683,0-31.201,13.518-31.201,31.2\r\n\t\tS165.518,235.2,183.2,235.2z"},"children":[{"name":"path","attribs":{"d":"M183.2,235.2c17.682,0,31.2-13.518,31.2-31.2s-13.519-31.2-31.2-31.2c-17.683,0-31.201,13.518-31.201,31.2\r\n\t\tS165.518,235.2,183.2,235.2z"},"children":[]}]}]}]};exports.androidSad=androidSad;var androidSearch={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_4_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257\r\n\t\t\t\t\tC347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628\r\n\t\t\t\t\tc35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z M206.225,305.372\r\n\t\t\t\t\tc-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742\r\n\t\t\t\t\tC304.687,261.485,260.925,305.372,206.225,305.372z"},"children":[{"name":"path","attribs":{"d":"M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257\r\n\t\t\t\t\tC347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628\r\n\t\t\t\t\tc35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z M206.225,305.372\r\n\t\t\t\t\tc-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742\r\n\t\t\t\t\tC304.687,261.485,260.925,305.372,206.225,305.372z"},"children":[]}]}]}]}]}]}]}]}]}]};exports.androidSearch=androidSearch;var androidSend={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"48,448 464,256 48,64 48,213.333 346,256 48,298.667 "},"children":[]}]};exports.androidSend=androidSend;var androidSettings={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M413.967,276.8c1.06-6.235,1.06-13.518,1.06-20.8s-1.06-13.518-1.06-20.8l44.667-34.318\r\n\t\tc4.26-3.118,5.319-8.317,2.13-13.518L418.215,115.6c-2.129-4.164-8.507-6.235-12.767-4.164l-53.186,20.801\r\n\t\tc-10.638-8.318-23.394-15.601-36.16-20.801l-7.448-55.117c-1.06-4.154-5.319-8.318-10.638-8.318h-85.098\r\n\t\tc-5.318,0-9.577,4.164-10.637,8.318l-8.508,55.117c-12.767,5.2-24.464,12.482-36.171,20.801l-53.186-20.801\r\n\t\tc-5.319-2.071-10.638,0-12.767,4.164l-42.549,71.765c-2.119,4.153-1.061,10.399,2.129,13.518L96.97,235.2\r\n\t\tc0,7.282-1.06,13.518-1.06,20.8s1.06,13.518,1.06,20.8l-44.668,34.318c-4.26,3.118-5.318,8.317-2.13,13.518L92.721,396.4\r\n\t\tc2.13,4.164,8.508,6.235,12.767,4.164l53.187-20.801c10.637,8.318,23.394,15.601,36.16,20.801l8.508,55.117\r\n\t\tc1.069,5.2,5.318,8.318,10.637,8.318h85.098c5.319,0,9.578-4.164,10.638-8.318l8.518-55.117c12.757-5.2,24.464-12.482,36.16-20.801\r\n\t\tl53.187,20.801c5.318,2.071,10.637,0,12.767-4.164l42.549-71.765c2.129-4.153,1.06-10.399-2.13-13.518L413.967,276.8z\r\n\t\t M255.468,328.8c-41.489,0-74.46-32.235-74.46-72.8s32.971-72.8,74.46-72.8s74.461,32.235,74.461,72.8S296.957,328.8,255.468,328.8\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M413.967,276.8c1.06-6.235,1.06-13.518,1.06-20.8s-1.06-13.518-1.06-20.8l44.667-34.318\r\n\t\tc4.26-3.118,5.319-8.317,2.13-13.518L418.215,115.6c-2.129-4.164-8.507-6.235-12.767-4.164l-53.186,20.801\r\n\t\tc-10.638-8.318-23.394-15.601-36.16-20.801l-7.448-55.117c-1.06-4.154-5.319-8.318-10.638-8.318h-85.098\r\n\t\tc-5.318,0-9.577,4.164-10.637,8.318l-8.508,55.117c-12.767,5.2-24.464,12.482-36.171,20.801l-53.186-20.801\r\n\t\tc-5.319-2.071-10.638,0-12.767,4.164l-42.549,71.765c-2.119,4.153-1.061,10.399,2.129,13.518L96.97,235.2\r\n\t\tc0,7.282-1.06,13.518-1.06,20.8s1.06,13.518,1.06,20.8l-44.668,34.318c-4.26,3.118-5.318,8.317-2.13,13.518L92.721,396.4\r\n\t\tc2.13,4.164,8.508,6.235,12.767,4.164l53.187-20.801c10.637,8.318,23.394,15.601,36.16,20.801l8.508,55.117\r\n\t\tc1.069,5.2,5.318,8.318,10.637,8.318h85.098c5.319,0,9.578-4.164,10.638-8.318l8.518-55.117c12.757-5.2,24.464-12.482,36.16-20.801\r\n\t\tl53.187,20.801c5.318,2.071,10.637,0,12.767-4.164l42.549-71.765c2.129-4.153,1.06-10.399-2.13-13.518L413.967,276.8z\r\n\t\t M255.468,328.8c-41.489,0-74.46-32.235-74.46-72.8s32.971-72.8,74.46-72.8s74.461,32.235,74.461,72.8S296.957,328.8,255.468,328.8\r\n\t\tz"},"children":[]}]}]}]};exports.androidSettings=androidSettings;var androidShareAlt={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_33_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M383.822,344.427c-16.045,0-31.024,5.326-41.721,15.979l-152.957-88.42c1.071-5.328,2.142-9.593,2.142-14.919\r\n\t\t\tc0-5.328-1.071-9.593-2.142-14.919l150.826-87.35c11.762,10.653,26.741,17.041,43.852,17.041c35.295,0,64.178-28.766,64.178-63.92\r\n\t\t\tC448,72.767,419.117,44,383.822,44c-35.297,0-64.179,28.767-64.179,63.92c0,5.327,1.065,9.593,2.142,14.919l-150.821,87.35\r\n\t\t\tc-11.767-10.654-26.741-17.041-43.856-17.041c-35.296,0-63.108,28.766-63.108,63.92c0,35.153,28.877,63.92,64.178,63.92\r\n\t\t\tc17.115,0,32.089-6.389,43.856-17.042l151.891,88.421c-1.076,4.255-2.141,8.521-2.141,13.847\r\n\t\t\tc0,34.094,27.806,61.787,62.037,61.787c34.229,0,62.036-27.693,62.036-61.787C445.858,372.12,418.052,344.427,383.822,344.427z"},"children":[{"name":"path","attribs":{"d":"M383.822,344.427c-16.045,0-31.024,5.326-41.721,15.979l-152.957-88.42c1.071-5.328,2.142-9.593,2.142-14.919\r\n\t\t\tc0-5.328-1.071-9.593-2.142-14.919l150.826-87.35c11.762,10.653,26.741,17.041,43.852,17.041c35.295,0,64.178-28.766,64.178-63.92\r\n\t\t\tC448,72.767,419.117,44,383.822,44c-35.297,0-64.179,28.767-64.179,63.92c0,5.327,1.065,9.593,2.142,14.919l-150.821,87.35\r\n\t\t\tc-11.767-10.654-26.741-17.041-43.856-17.041c-35.296,0-63.108,28.766-63.108,63.92c0,35.153,28.877,63.92,64.178,63.92\r\n\t\t\tc17.115,0,32.089-6.389,43.856-17.042l151.891,88.421c-1.076,4.255-2.141,8.521-2.141,13.847\r\n\t\t\tc0,34.094,27.806,61.787,62.037,61.787c34.229,0,62.036-27.693,62.036-61.787C445.858,372.12,418.052,344.427,383.822,344.427z"},"children":[]}]}]}]}]}]};exports.androidShareAlt=androidShareAlt;var androidShare={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_17_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,248L288,96v85.334C138.666,202.667,85.333,309.334,64,416c53.333-74.666,117.333-108.802,224-108.802v87.469L448,248\r\n\t\t\tz"},"children":[{"name":"path","attribs":{"d":"M448,248L288,96v85.334C138.666,202.667,85.333,309.334,64,416c53.333-74.666,117.333-108.802,224-108.802v87.469L448,248\r\n\t\t\tz"},"children":[]}]}]}]}]}]};exports.androidShare=androidShare;var androidStarHalf={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M458,210.409l-145.267-12.476L256,64l-56.743,133.934L54,210.409l110.192,95.524L131.161,448L256,372.686L380.83,448\r\n\tl-33.021-142.066L458,210.409z M272.531,345.287L256,335.313l-0.002-189.277l27.27,64.379l7.52,17.751l19.208,1.65l69.846,5.998\r\n\tl-52.993,45.939l-14.576,12.636l4.367,18.788l15.875,68.299L272.531,345.287z"},"children":[]}]};exports.androidStarHalf=androidStarHalf;var androidStarOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M458,210.409l-145.267-12.476L256,64l-56.743,133.934L54,210.409l110.192,95.524L131.161,448L256,372.686L380.83,448\r\n\tl-33.021-142.066L458,210.409z M272.531,345.286L256,335.312l-16.53,9.973l-59.988,36.191l15.879-68.296l4.369-18.79l-14.577-12.637\r\n\tl-52.994-45.939l69.836-5.998l19.206-1.65l7.521-17.75l27.276-64.381l27.27,64.379l7.52,17.751l19.208,1.65l69.846,5.998\r\n\tl-52.993,45.939l-14.576,12.636l4.367,18.788l15.875,68.299L272.531,345.286z"},"children":[]}]};exports.androidStarOutline=androidStarOutline;var androidStar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,372.686 380.83,448 347.809,305.934 458,210.409 312.733,197.934 256,64 199.257,197.934 54,210.409 \r\n\t\t164.192,305.934 131.161,448 \t"},"children":[{"name":"polygon","attribs":{"points":"256,372.686 380.83,448 347.809,305.934 458,210.409 312.733,197.934 256,64 199.257,197.934 54,210.409 \r\n\t\t164.192,305.934 131.161,448 \t"},"children":[]}]}]}]};exports.androidStar=androidStar;var androidStopwatch={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{"id":"Icon_7_"},"children":[{"name":"g","attribs":{"id":"Icon_7_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M232,306.667h48V176h-48V306.667z"},"children":[{"name":"path","attribs":{"d":"M232,306.667h48V176h-48V306.667z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M407.67,170.271l30.786-30.786l-33.942-33.941l-30.785,30.786C341.217,111.057,300.369,96,256,96\r\n\t\t\tC149.961,96,64,181.961,64,288s85.961,192,192,192s192-85.961,192-192C448,243.631,432.943,202.783,407.67,170.271z\r\n\t\t\t M362.066,394.066C333.734,422.398,296.066,438,256,438s-77.735-15.602-106.066-43.934C121.602,365.735,106,328.066,106,288\r\n\t\t\ts15.602-77.735,43.934-106.066C178.265,153.602,215.934,138,256,138s77.734,15.602,106.066,43.934\r\n\t\t\tC390.398,210.265,406,247.934,406,288S390.398,365.735,362.066,394.066z"},"children":[{"name":"path","attribs":{"d":"M407.67,170.271l30.786-30.786l-33.942-33.941l-30.785,30.786C341.217,111.057,300.369,96,256,96\r\n\t\t\tC149.961,96,64,181.961,64,288s85.961,192,192,192s192-85.961,192-192C448,243.631,432.943,202.783,407.67,170.271z\r\n\t\t\t M362.066,394.066C333.734,422.398,296.066,438,256,438s-77.735-15.602-106.066-43.934C121.602,365.735,106,328.066,106,288\r\n\t\t\ts15.602-77.735,43.934-106.066C178.265,153.602,215.934,138,256,138s77.734,15.602,106.066,43.934\r\n\t\t\tC390.398,210.265,406,247.934,406,288S390.398,365.735,362.066,394.066z"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"32","width":"128","height":"48"},"children":[{"name":"rect","attribs":{"x":"192","y":"32","width":"128","height":"48"},"children":[]}]}]}]}]}]};exports.androidStopwatch=androidStopwatch;var androidSubway={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48c-93.864,0-176,10.668-176,85.334v213.332c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48z M160,384c-18.136,0-32-13.865-32-32\r\n\t\tc0-18.137,13.864-32,32-32s32,13.863,32,32C192,370.135,178.136,384,160,384z M240,240H128v-96h112V240z M352,384\r\n\t\tc-18.136,0-32-13.865-32-32c0-18.137,13.864-32,32-32s32,13.863,32,32C384,370.135,370.136,384,352,384z M384,240H272v-96h112V240z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M256,48c-93.864,0-176,10.668-176,85.334v213.332c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48z M160,384c-18.136,0-32-13.865-32-32\r\n\t\tc0-18.137,13.864-32,32-32s32,13.863,32,32C192,370.135,178.136,384,160,384z M240,240H128v-96h112V240z M352,384\r\n\t\tc-18.136,0-32-13.865-32-32c0-18.137,13.864-32,32-32s32,13.863,32,32C384,370.135,370.136,384,352,384z M384,240H272v-96h112V240z\r\n\t\t"},"children":[]}]}]}]};exports.androidSubway=androidSubway;var androidSunny={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_27_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,160c25.499,0,49.567,10.025,67.771,28.229C341.975,206.433,352,230.501,352,256s-10.025,49.567-28.229,67.771\r\n\t\t\tC305.567,341.975,281.499,352,256,352s-49.567-10.025-67.771-28.229C170.025,305.567,160,281.499,160,256\r\n\t\t\ts10.025-49.567,28.229-67.771C206.433,170.025,230.501,160,256,160 M277.333,32h-42.666v64h42.666V32L277.333,32z M406.396,75.729\r\n\t\t\tL368,114.135L397.864,144l38.406-38.396L406.396,75.729L406.396,75.729z M105.604,75.729l-29.875,29.875L114.136,144L144,114.135\r\n\t\t\tL105.604,75.729L105.604,75.729z M256,128c-70.396,0-128,57.604-128,128s57.604,128,128,128s128-57.604,128-128\r\n\t\t\tS326.396,128,256,128L256,128z M480,234.666h-64v42.668h64V234.666L480,234.666z M96,234.666H32v42.668h64V234.666L96,234.666z\r\n\t\t\t M397.864,368L368,397.865l38.396,38.406l29.875-29.875L397.864,368L397.864,368z M114.136,368l-38.406,38.396l29.875,29.875\r\n\t\t\tL144,397.865L114.136,368L114.136,368z M277.333,416h-42.666v64c6.396,0,42.666,0,42.666,0V416L277.333,416z"},"children":[{"name":"path","attribs":{"d":"M256,160c25.499,0,49.567,10.025,67.771,28.229C341.975,206.433,352,230.501,352,256s-10.025,49.567-28.229,67.771\r\n\t\t\tC305.567,341.975,281.499,352,256,352s-49.567-10.025-67.771-28.229C170.025,305.567,160,281.499,160,256\r\n\t\t\ts10.025-49.567,28.229-67.771C206.433,170.025,230.501,160,256,160 M277.333,32h-42.666v64h42.666V32L277.333,32z M406.396,75.729\r\n\t\t\tL368,114.135L397.864,144l38.406-38.396L406.396,75.729L406.396,75.729z M105.604,75.729l-29.875,29.875L114.136,144L144,114.135\r\n\t\t\tL105.604,75.729L105.604,75.729z M256,128c-70.396,0-128,57.604-128,128s57.604,128,128,128s128-57.604,128-128\r\n\t\t\tS326.396,128,256,128L256,128z M480,234.666h-64v42.668h64V234.666L480,234.666z M96,234.666H32v42.668h64V234.666L96,234.666z\r\n\t\t\t M397.864,368L368,397.865l38.396,38.406l29.875-29.875L397.864,368L397.864,368z M114.136,368l-38.406,38.396l29.875,29.875\r\n\t\t\tL144,397.865L114.136,368L114.136,368z M277.333,416h-42.666v64c6.396,0,42.666,0,42.666,0V416L277.333,416z"},"children":[]}]}]}]}]}]};exports.androidSunny=androidSunny;var androidSync={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,93.09V32l-80,81.454l80,81.456v-61.093c65.996,0,120,54.982,120,122.183c0,20.363-5,39.714-14.004,57.016L391,342.547\r\n\tc15.996-25.457,25-54.988,25-86.547C416,166.401,343.998,93.09,256,93.09z M256,378.184c-66.001,0-120-54.988-120-122.184\r\n\tc0-20.363,5-39.709,13.999-57.02L121,169.454C104.999,193.89,96,224.436,96,256c0,89.599,72.002,162.91,160,162.91V480l80-81.453\r\n\tl-80-81.457V378.184z"},"children":[]}]};exports.androidSync=androidSync;var androidTextsms={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M408,64H96c-22.002,0-32,17.998-32,40v344l64-64h280c22.002,0,40-17.998,40-40V104C448,81.998,430.002,64,408,64z\r\n\t\t M198.4,242H160v-40h38.4V242z M275.2,242h-38.4v-40h38.4V242z M352,242h-38.4v-40H352V242z"},"children":[{"name":"path","attribs":{"d":"M408,64H96c-22.002,0-32,17.998-32,40v344l64-64h280c22.002,0,40-17.998,40-40V104C448,81.998,430.002,64,408,64z\r\n\t\t M198.4,242H160v-40h38.4V242z M275.2,242h-38.4v-40h38.4V242z M352,242h-38.4v-40H352V242z"},"children":[]}]}]}]};exports.androidTextsms=androidTextsms;var androidTime={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_1_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-opacity":"0.9","d":"M256,43C137.789,43,43,138.851,43,256s94.789,213,213,213s213-95.851,213-213S373.149,43,256,43z\r\n\t\t\t\t M256,426.4c-93.718,0-170.4-76.683-170.4-170.4S162.282,85.6,256,85.6S426.4,162.282,426.4,256S349.718,426.4,256,426.4z"},"children":[{"name":"path","attribs":{"fill-opacity":"0.9","d":"M256,43C137.789,43,43,138.851,43,256s94.789,213,213,213s213-95.851,213-213S373.149,43,256,43z\r\n\t\t\t\t M256,426.4c-93.718,0-170.4-76.683-170.4-170.4S162.282,85.6,256,85.6S426.4,162.282,426.4,256S349.718,426.4,256,426.4z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"fill-opacity":"0.9","points":"266.65,149.5 234.7,149.5 234.7,277.3 346.525,344.393 362.5,317.768 266.65,261.324 \t\t"},"children":[{"name":"polygon","attribs":{"fill-opacity":"0.9","points":"266.65,149.5 234.7,149.5 234.7,277.3 346.525,344.393 362.5,317.768 266.65,261.324 \t\t"},"children":[]}]}]}]}]}]};exports.androidTime=androidTime;var androidTrain={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_35_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M80,346.666c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\t\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48S80,58.668,80,133.334V346.666z M256,376\r\n\t\t\t\tc-22.002,0-40-17.997-40-39.999S233.998,296,256,296s40,17.999,40,40.001S278.002,376,256,376z M384,224H128v-96h256V224z"},"children":[{"name":"path","attribs":{"d":"M80,346.666c0,41.604,33.062,74.666,74.667,74.666L128,448v16h256v-16l-26.667-26.668\r\n\t\t\t\tc41.604,0,74.667-33.062,74.667-74.666V133.334C432,58.668,349.864,48,256,48S80,58.668,80,133.334V346.666z M256,376\r\n\t\t\t\tc-22.002,0-40-17.997-40-39.999S233.998,296,256,296s40,17.999,40,40.001S278.002,376,256,376z M384,224H128v-96h256V224z"},"children":[]}]}]}]}]}]}]}]};exports.androidTrain=androidTrain;var androidUnlock={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M376,186h-20v-40c0-55-45-100-100-100S156,91,156,146h37.998c0-34.004,28.003-62.002,62.002-62.002\r\n\tc34.004,0,62.002,27.998,62.002,62.002H318v40H136c-22.002,0-40,17.998-40,40v200c0,22.002,17.998,40,40,40h240\r\n\tc22.002,0,40-17.998,40-40V226C416,203.998,398.002,186,376,186z M256,368c-22.002,0-40-17.998-40-40s17.998-40,40-40\r\n\ts40,17.998,40,40S278.002,368,256,368z"},"children":[]}]};exports.androidUnlock=androidUnlock;var androidUpload={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M403.002,217.001C388.998,148.002,328.998,96,256,96c-57.998,0-107.998,32.998-132.998,81.001\r\n\tC63.002,183.002,16,233.998,16,296c0,65.996,53.999,120,120,120h260c55,0,100-45,100-100\r\n\tC496,263.002,455.004,219.999,403.002,217.001z M288,276v76h-64v-76h-68l100-100l100,100H288z"},"children":[]}]};exports.androidUpload=androidUpload;var androidVolumeDown={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M64,192v128h85.334L256,431.543V80.458L149.334,192H64z M352,256c0-38.399-21.333-72.407-53.333-88.863v176.636\r\n\tC330.667,328.408,352,294.4,352,256z"},"children":[]}]};exports.androidVolumeDown=androidVolumeDown;var androidVolumeMute={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M64,192v128h85.334L256,431.543V80.458L149.334,192H64z"},"children":[]}]};exports.androidVolumeMute=androidVolumeMute;var androidVolumeOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M405.5,256c0,22.717-4.883,44.362-13.603,63.855l31.88,31.88C439.283,323.33,448,290.653,448,256\r\n\t\tc0-93.256-64-172.254-149-192v44.978C361,127.632,405.5,186.882,405.5,256z"},"children":[{"name":"path","attribs":{"d":"M405.5,256c0,22.717-4.883,44.362-13.603,63.855l31.88,31.88C439.283,323.33,448,290.653,448,256\r\n\t\tc0-93.256-64-172.254-149-192v44.978C361,127.632,405.5,186.882,405.5,256z"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,80.458 204.979,132.938 256,183.957 \t"},"children":[{"name":"polygon","attribs":{"points":"256,80.458 204.979,132.938 256,183.957 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M420.842,396.885L91.116,67.157l-24,24l90.499,90.413l-8.28,10.43H64v128h85.334L256,431.543V280l94.915,94.686\r\n\t\tC335.795,387.443,318,397.213,299,403.022V448c31-7.172,58.996-22.163,82.315-42.809l39.61,39.693l24-24.043l-24.002-24.039\r\n\t\tL420.842,396.885z"},"children":[{"name":"path","attribs":{"d":"M420.842,396.885L91.116,67.157l-24,24l90.499,90.413l-8.28,10.43H64v128h85.334L256,431.543V280l94.915,94.686\r\n\t\tC335.795,387.443,318,397.213,299,403.022V448c31-7.172,58.996-22.163,82.315-42.809l39.61,39.693l24-24.043l-24.002-24.039\r\n\t\tL420.842,396.885z"},"children":[]}]},{"name":"path","attribs":{"d":"M352.188,256c0-38.399-21.188-72.407-53.188-88.863v59.82l50.801,50.801C351.355,270.739,352.188,263.454,352.188,256z"},"children":[{"name":"path","attribs":{"d":"M352.188,256c0-38.399-21.188-72.407-53.188-88.863v59.82l50.801,50.801C351.355,270.739,352.188,263.454,352.188,256z"},"children":[]}]}]}]};exports.androidVolumeOff=androidVolumeOff;var androidVolumeUp={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M64,192v128h85.334L256,431.543V80.458L149.334,192H64z M352,256c0-38.399-21.333-72.407-53.333-88.863v176.636\r\n\tC330.667,328.408,352,294.4,352,256z M298.667,64v44.978C360.531,127.632,405.334,186.882,405.334,256\r\n\tc0,69.119-44.803,128.369-106.667,147.022V448C384,428.254,448,349.257,448,256C448,162.744,384,83.746,298.667,64z"},"children":[]}]};exports.androidVolumeUp=androidVolumeUp;var androidWalk={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,112c22.223,0,39.997-17.776,39.997-40c0-22.225-17.774-40-39.997-40s-40.003,17.775-40.003,40\r\n\t\tC247.997,94.224,265.777,112,288,112z"},"children":[{"name":"path","attribs":{"d":"M288,112c22.223,0,39.997-17.776,39.997-40c0-22.225-17.774-40-39.997-40s-40.003,17.775-40.003,40\r\n\t\tC247.997,94.224,265.777,112,288,112z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,232h104v-40h-72l-44.802-69.333c-7.698-11.667-18.136-18.136-30.933-18.136c-3.198,0-8.828,0.531-12.799,1.747\r\n\t\tL120,144v112h40v-80l40.531-16L120,480h40l56.698-164.271L267,384v96h38V352l-57.031-96l19.745-61.864L288,232z"},"children":[{"name":"path","attribs":{"d":"M288,232h104v-40h-72l-44.802-69.333c-7.698-11.667-18.136-18.136-30.933-18.136c-3.198,0-8.828,0.531-12.799,1.747\r\n\t\tL120,144v112h40v-80l40.531-16L120,480h40l56.698-164.271L267,384v96h38V352l-57.031-96l19.745-61.864L288,232z"},"children":[]}]}]}]};exports.androidWalk=androidWalk;var androidWarning={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_31_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,464h448L256,48L32,464z M280,400h-48v-48h48V400z M280,320h-48v-96h48V320z"},"children":[{"name":"path","attribs":{"d":"M32,464h448L256,48L32,464z M280,400h-48v-48h48V400z M280,320h-48v-96h48V320z"},"children":[]}]}]}]}]}]};exports.androidWarning=androidWarning;var androidWatch={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon_11_"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,256c0-51.001-24.004-96.001-60.996-125L336,16H176l-19.004,115C120.004,159.999,96,204.999,96,256\r\n\t\t\t\tc0,50.996,24.004,95.996,60.996,125L176,496h160l19.004-115C391.996,351.996,416,306.996,416,256z M136,256\r\n\t\t\t\tc0-66.001,54.004-120,120-120s120,53.999,120,120c0,65.996-54.004,120-120,120S136,321.996,136,256z"},"children":[{"name":"path","attribs":{"d":"M416,256c0-51.001-24.004-96.001-60.996-125L336,16H176l-19.004,115C120.004,159.999,96,204.999,96,256\r\n\t\t\t\tc0,50.996,24.004,95.996,60.996,125L176,496h160l19.004-115C391.996,351.996,416,306.996,416,256z M136,256\r\n\t\t\t\tc0-66.001,54.004-120,120-120s120,53.999,120,120c0,65.996-54.004,120-120,120S136,321.996,136,256z"},"children":[]}]}]}]}]}]}]}]};exports.androidWatch=androidWatch;var androidWifi={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,228.719c-22.879,0-41.597,18.529-41.597,41.18c0,22.652,18.718,41.182,41.597,41.182\r\n\tc22.878,0,41.597-18.529,41.597-41.182C297.597,247.248,278.878,228.719,256,228.719z M380.8,269.898\r\n\tc0-67.946-56.163-123.539-124.8-123.539s-124.8,55.593-124.8,123.539c0,45.303,24.961,85.447,62.396,107.072l20.807-36.032\r\n\tc-24.972-14.417-41.604-40.153-41.604-71.04c0-45.295,37.433-82.358,83.201-82.358c45.771,0,83.201,37.063,83.201,82.358\r\n\tc0,30.887-16.633,56.623-41.604,71.04l20.807,36.032C355.837,355.346,380.8,315.201,380.8,269.898z M256,64\r\n\tC141.597,64,48,156.654,48,269.898C48,346.085,89.592,411.968,152,448l20.799-36.032c-49.919-28.824-83.207-81.324-83.207-142.069\r\n\tc0-90.593,74.891-164.718,166.408-164.718c91.517,0,166.406,74.125,166.406,164.718c0,60.745-33.284,114.271-83.205,142.069L360,448\r\n\tc62.406-36.032,104-101.915,104-178.102C464,156.654,370.403,64,256,64z"},"children":[]}]};exports.androidWifi=androidWifi;var aperture={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M200.043,106.067c-40.631,15.171-73.434,46.382-90.717,85.933H256L200.043,106.067z"},"children":[{"name":"path","attribs":{"d":"M200.043,106.067c-40.631,15.171-73.434,46.382-90.717,85.933H256L200.043,106.067z"},"children":[]}]},{"name":"path","attribs":{"d":"M412.797,288c2.099-10.34,3.203-21.041,3.203-32c0-36.624-12.314-70.367-33.016-97.334L311,288H412.797z"},"children":[{"name":"path","attribs":{"d":"M412.797,288c2.099-10.34,3.203-21.041,3.203-32c0-36.624-12.314-70.367-33.016-97.334L311,288H412.797z"},"children":[]}]},{"name":"path","attribs":{"d":"M359.973,134.395C332.007,110.461,295.694,96,256,96c-7.966,0-15.794,0.591-23.448,1.715L310.852,224L359.973,134.395z"},"children":[{"name":"path","attribs":{"d":"M359.973,134.395C332.007,110.461,295.694,96,256,96c-7.966,0-15.794,0.591-23.448,1.715L310.852,224L359.973,134.395z"},"children":[]}]},{"name":"path","attribs":{"d":"M99.204,224C97.104,234.34,96,245.041,96,256c0,36.639,12.324,70.394,33.041,97.366L201,224H99.204z"},"children":[{"name":"path","attribs":{"d":"M99.204,224C97.104,234.34,96,245.041,96,256c0,36.639,12.324,70.394,33.041,97.366L201,224H99.204z"},"children":[]}]},{"name":"path","attribs":{"d":"M311.959,405.932c40.631-15.171,73.433-46.382,90.715-85.932H256L311.959,405.932z"},"children":[{"name":"path","attribs":{"d":"M311.959,405.932c40.631-15.171,73.433-46.382,90.715-85.932H256L311.959,405.932z"},"children":[]}]},{"name":"path","attribs":{"d":"M152.046,377.621C180.009,401.545,216.314,416,256,416c7.969,0,15.799-0.592,23.456-1.716L201.164,288L152.046,377.621z"},"children":[{"name":"path","attribs":{"d":"M152.046,377.621C180.009,401.545,216.314,416,256,416c7.969,0,15.799-0.592,23.456-1.716L201.164,288L152.046,377.621z"},"children":[]}]}]}]}]}]};exports.aperture=aperture;var archive={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,307.7 384,192 304,192 304,96 207.6,96 207.6,192 128,192 \t"},"children":[{"name":"polygon","attribs":{"points":"256,307.7 384,192 304,192 304,96 207.6,96 207.6,192 128,192 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M465.4,297.2l-71.4-55h-42l62,61.8h-50.6c-2.3,0-4.3,1.2-5.4,2.9l-18.4,45.5H172.1l-18.4-45.5c-1-1.8-3.1-2.9-5.4-2.9H97.8\r\n\t\tl62.2-61.8h-42.2l-71.4,55c-10.6,6.2-15.8,19-14.1,31.6l8.7,66.9c2.3,13.1,9.7,20.3,28.1,20.3h373.8c19.1,0,25.8-7.6,28.1-20.3\r\n\t\tl8.7-66.9C481.4,315.9,476,303.4,465.4,297.2z"},"children":[{"name":"path","attribs":{"d":"M465.4,297.2l-71.4-55h-42l62,61.8h-50.6c-2.3,0-4.3,1.2-5.4,2.9l-18.4,45.5H172.1l-18.4-45.5c-1-1.8-3.1-2.9-5.4-2.9H97.8\r\n\t\tl62.2-61.8h-42.2l-71.4,55c-10.6,6.2-15.8,19-14.1,31.6l8.7,66.9c2.3,13.1,9.7,20.3,28.1,20.3h373.8c19.1,0,25.8-7.6,28.1-20.3\r\n\t\tl8.7-66.9C481.4,315.9,476,303.4,465.4,297.2z"},"children":[]}]}]}]};exports.archive=archive;var arrowDownA={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"256.5,448.5 448.5,256.5 336.5,256.5 336.5,64.5 176.5,64.5 176.5,256.5 64.5,256.5 "},"children":[]}]};exports.arrowDownA=arrowDownA;var arrowDownB={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M98.9,184.7l1.8,2.1l136,156.5c4.6,5.3,11.5,8.6,19.2,8.6c7.7,0,14.6-3.4,19.2-8.6L411,187.1l2.3-2.6\r\n\tc1.7-2.5,2.7-5.5,2.7-8.7c0-8.7-7.4-15.8-16.6-15.8v0H112.6v0c-9.2,0-16.6,7.1-16.6,15.8C96,179.1,97.1,182.2,98.9,184.7z"},"children":[]}]};exports.arrowDownB=arrowDownB;var arrowDownC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M383.6,322.7L278.6,423c-5.8,6-13.7,9-22.4,9c-8.7,0-16.5-3-22.4-9L128.4,322.7c-12.5-11.9-12.5-31.3,0-43.2\r\n\tc12.5-11.9,32.7-11.9,45.2,0l50.4,48.2v-217c0-16.9,14.3-30.6,32-30.6c17.7,0,32,13.7,32,30.6v217l50.4-48.2\r\n\tc12.5-11.9,32.7-11.9,45.2,0C396.1,291.4,396.1,310.7,383.6,322.7z"},"children":[]}]};exports.arrowDownC=arrowDownC;var arrowExpand={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"274,209.7 337.9,145.9 288,96 416,96 416,224 366.1,174.1 302.3,238 \t"},"children":[{"name":"polygon","attribs":{"points":"274,209.7 337.9,145.9 288,96 416,96 416,224 366.1,174.1 302.3,238 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"274,302.3 337.9,366.1 288,416 416,416 416,288 366.1,337.9 302.3,274 \t"},"children":[{"name":"polygon","attribs":{"points":"274,302.3 337.9,366.1 288,416 416,416 416,288 366.1,337.9 302.3,274 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"238,302.3 174.1,366.1 224,416 96,416 96,288 145.9,337.9 209.7,274 \t"},"children":[{"name":"polygon","attribs":{"points":"238,302.3 174.1,366.1 224,416 96,416 96,288 145.9,337.9 209.7,274 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"238,209.7 174.1,145.9 224,96 96,96 96,224 145.9,174.1 209.7,238 \t"},"children":[{"name":"polygon","attribs":{"points":"238,209.7 174.1,145.9 224,96 96,96 96,224 145.9,174.1 209.7,238 \t"},"children":[]}]}]}]};exports.arrowExpand=arrowExpand;var arrowGraphDownLeft={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"32,384 32,224 92.8,284.8 223.7,144 330.7,256 480,128 330.7,330.7 223.7,224 130.2,322.2 192,384 "},"children":[]}]};exports.arrowGraphDownLeft=arrowGraphDownLeft;var arrowGraphDownRight={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"320,384 381.8,322.2 288.3,224 181.3,330.7 32,128 181.3,256 288.3,144 419.2,284.8 480,224 480,384 "},"children":[]}]};exports.arrowGraphDownRight=arrowGraphDownRight;var arrowGraphUpLeft={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"192,128 130.2,189.8 223.7,288 330.7,181.3 480,384 330.7,256 223.7,368 92.8,227.2 32,288 32,128 "},"children":[]}]};exports.arrowGraphUpLeft=arrowGraphUpLeft;var arrowGraphUpRight={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"320,128 381.8,189.8 288.3,288 181.3,181.3 32,384 181.3,256 288.3,368 419.2,227.2 480,288 480,128 "},"children":[]}]};exports.arrowGraphUpRight=arrowGraphUpRight;var arrowLeftA={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"64.5,256.5 256.5,448.5 256.5,336.5 448.5,336.5 448.5,176.5 256.5,176.5 256.5,64.5 "},"children":[]}]};exports.arrowLeftA=arrowLeftA;var arrowLeftB={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M327.3,98.9l-2.1,1.8l-156.5,136c-5.3,4.6-8.6,11.5-8.6,19.2c0,7.7,3.4,14.6,8.6,19.2L324.9,411l2.6,2.3\r\n\tc2.5,1.7,5.5,2.7,8.7,2.7c8.7,0,15.8-7.4,15.8-16.6h0V112.6h0c0-9.2-7.1-16.6-15.8-16.6C332.9,96,329.8,97.1,327.3,98.9z"},"children":[]}]};exports.arrowLeftB=arrowLeftB;var arrowLeftC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M189.3,128.4L89,233.4c-6,5.8-9,13.7-9,22.4c0,8.7,3,16.5,9,22.4l100.3,105.4c11.9,12.5,31.3,12.5,43.2,0\r\n\tc11.9-12.5,11.9-32.7,0-45.2L184.4,288h217c16.9,0,30.6-14.3,30.6-32c0-17.7-13.7-32-30.6-32h-217l48.2-50.4\r\n\tc11.9-12.5,11.9-32.7,0-45.2C220.6,115.9,201.3,115.9,189.3,128.4z"},"children":[]}]};exports.arrowLeftC=arrowLeftC;var arrowMove={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"480,256 384,160 384,236 276,236 276,128 352,128 256,32 160,128 236,128 236,236 128,236 128,160 32,256 128,352 \r\n\t128,276 236,276 236,384 160,384 256,480 352,384 275.8,384 275.4,275.5 384,275.8 384,352 "},"children":[]}]};exports.arrowMove=arrowMove;var arrowResize={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"288,96 337.9,145.9 274,209.7 274,209.7 145.9,337.9 96,288 96,416 224,416 174.1,366.1 357.4,182.9 366.1,174.1 \r\n\t416,224 416,96 "},"children":[]}]};exports.arrowResize=arrowResize;var arrowReturnLeft={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M192,96v64h248c4.4,0,8,3.6,8,8v240c0,4.4-3.6,8-8,8H136c-4.4,0-8-3.6-8-8v-48c0-4.4,3.6-8,8-8h248V224H192v64L64,192\r\n\tL192,96z"},"children":[]}]};exports.arrowReturnLeft=arrowReturnLeft;var arrowReturnRight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,192l-128,96v-64H128v128h248c4.4,0,8,3.6,8,8v48c0,4.4-3.6,8-8,8H72c-4.4,0-8-3.6-8-8V168c0-4.4,3.6-8,8-8h248V96\r\n\tL448,192z"},"children":[]}]};exports.arrowReturnRight=arrowReturnRight;var arrowRightA={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"448.5,256.5 256.5,64.5 256.5,176.5 64.5,176.5 64.5,336.5 256.5,336.5 256.5,448.5 "},"children":[]}]};exports.arrowRightA=arrowRightA;var arrowRightB={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M184.7,413.1l2.1-1.8l156.5-136c5.3-4.6,8.6-11.5,8.6-19.2c0-7.7-3.4-14.6-8.6-19.2L187.1,101l-2.6-2.3\r\n\tC182,97,179,96,175.8,96c-8.7,0-15.8,7.4-15.8,16.6h0v286.8h0c0,9.2,7.1,16.6,15.8,16.6C179.1,416,182.2,414.9,184.7,413.1z"},"children":[]}]};exports.arrowRightB=arrowRightB;var arrowRightC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M322.7,128.4L423,233.4c6,5.8,9,13.7,9,22.4c0,8.7-3,16.5-9,22.4L322.7,383.6c-11.9,12.5-31.3,12.5-43.2,0\r\n\tc-11.9-12.5-11.9-32.7,0-45.2l48.2-50.4h-217C93.7,288,80,273.7,80,256c0-17.7,13.7-32,30.6-32h217l-48.2-50.4\r\n\tc-11.9-12.5-11.9-32.7,0-45.2C291.4,115.9,310.7,115.9,322.7,128.4z"},"children":[]}]};exports.arrowRightC=arrowRightC;var arrowShrink={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"448,92.3 366.1,174.1 416,224 288,224 288,96 337.9,145.9 419.7,64 \t"},"children":[{"name":"polygon","attribs":{"points":"448,92.3 366.1,174.1 416,224 288,224 288,96 337.9,145.9 419.7,64 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"448,419.7 366.1,337.9 416,288 288,288 288,416 337.9,366.1 419.7,448 \t"},"children":[{"name":"polygon","attribs":{"points":"448,419.7 366.1,337.9 416,288 288,288 288,416 337.9,366.1 419.7,448 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"64,419.7 145.9,337.9 96,288 224,288 224,416 174.1,366.1 92.3,448 \t"},"children":[{"name":"polygon","attribs":{"points":"64,419.7 145.9,337.9 96,288 224,288 224,416 174.1,366.1 92.3,448 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"64,92.3 145.9,174.1 96,224 224,224 224,96 174.1,145.9 92.3,64 \t"},"children":[{"name":"polygon","attribs":{"points":"64,92.3 145.9,174.1 96,224 224,224 224,96 174.1,145.9 92.3,64 \t"},"children":[]}]}]}]};exports.arrowShrink=arrowShrink;var arrowSwap={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,328v48c0,4.4,3.6,8,8,8h248v64l128-96l-128-96v64H72C67.6,320,64,323.6,64,328z"},"children":[{"name":"path","attribs":{"d":"M64,328v48c0,4.4,3.6,8,8,8h248v64l128-96l-128-96v64H72C67.6,320,64,323.6,64,328z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,184v-48c0-4.4-3.6-8-8-8H192V64L64,160l128,96v-64h248C444.4,192,448,188.4,448,184z"},"children":[{"name":"path","attribs":{"d":"M448,184v-48c0-4.4-3.6-8-8-8H192V64L64,160l128,96v-64h248C444.4,192,448,188.4,448,184z"},"children":[]}]}]}]};exports.arrowSwap=arrowSwap;var arrowUpA={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"256.5,64.5 64.5,256.5 176.5,256.5 176.5,448.5 336.5,448.5 336.5,256.5 448.5,256.5 "},"children":[]}]};exports.arrowUpA=arrowUpA;var arrowUpB={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M413.1,327.3l-1.8-2.1l-136-156.5c-4.6-5.3-11.5-8.6-19.2-8.6c-7.7,0-14.6,3.4-19.2,8.6L101,324.9l-2.3,2.6\r\n\tC97,330,96,333,96,336.2c0,8.7,7.4,15.8,16.6,15.8v0h286.8v0c9.2,0,16.6-7.1,16.6-15.8C416,332.9,414.9,329.8,413.1,327.3z"},"children":[]}]};exports.arrowUpB=arrowUpB;var arrowUpC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M128.4,189.3L233.4,89c5.8-6,13.7-9,22.4-9c8.7,0,16.5,3,22.4,9l105.4,100.3c12.5,11.9,12.5,31.3,0,43.2\r\n\tc-12.5,11.9-32.7,11.9-45.2,0L288,184.4v217c0,16.9-14.3,30.6-32,30.6c-17.7,0-32-13.7-32-30.6v-217l-50.4,48.2\r\n\tc-12.5,11.9-32.7,11.9-45.2,0C115.9,220.6,115.9,201.3,128.4,189.3z"},"children":[]}]};exports.arrowUpC=arrowUpC;var asterisk={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"480,224 293.172,231.487 401.688,64 342.441,32 256,208 169.824,32 110.328,64 218.828,231.487 32,224 32,288 \r\n\t217.537,277.934 113.65,448 169.619,480 256,304 342.381,480 398.33,448 294.463,277.934 480,288 "},"children":[]}]};exports.asterisk=asterisk;var at={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M453.8,407.1c-23.9,25.3-52.3,43.8-85.2,55.4C335.7,474.2,301,480,264.5,480c-34.9,0-66.7-5.5-95.3-16.6\r\n\t\tc-28.6-11-53.1-26.4-73.3-46.1c-20.3-19.7-36-43.3-47.2-70.8c-11.2-27.5-16.7-57.5-16.7-90c0-32.1,6.1-61.8,18.3-89.1\r\n\t\tc12.2-27.3,28.8-51,49.9-71.1c21.1-20.1,45.7-35.8,74-47.3C202.3,37.7,232.5,32,264.5,32c27.6,0,54.4,4,80.3,12\r\n\t\tc26,8,49,20.1,69.1,36.1c20.1,16.1,36.1,36.1,48.1,60.2c12,24.1,18,52.4,18,84.9c0,24.1-3.3,45.4-10,63.8\r\n\t\tc-6.7,18.5-15.6,33.9-26.8,46.4c-11.2,12.5-23.9,21.8-38.3,28c-14.4,6.2-29.5,9.3-45.3,9.3c-16.2,0-29.2-3.8-39-11.4\r\n\t\tc-9.7-7.6-14.6-17.3-14.6-28.9h-3c-6.1,9.6-15.4,18.8-28,27.4c-12.6,8.6-28,13-46.3,13c-27.6,0-48.9-9-63.9-27.1\r\n\t\tc-15-18.1-22.5-41.5-22.5-70.5c0-16.9,2.8-33.5,8.5-50c5.7-16.5,13.8-31.1,24.3-44c10.5-12.8,23.1-23.2,37.7-31\r\n\t\tc14.6-7.8,30.8-11.7,48.7-11.7c15.4,0,28.4,3.2,39,9.6c10.5,6.4,17.4,14.3,20.7,23.5h0.6l4.9-24.1h54.2L357,261.4\r\n\t\tc-0.8,5.6-1.9,11.8-3.3,18.7c-1.4,6.8-2.1,13.2-2.1,19.3c0,6.8,1.3,12.5,4,17.2c2.6,4.6,7.8,6.9,15.5,6.9\r\n\t\tc15.8,0,28.9-8.4,39.3-25.3c10.3-16.9,15.5-39.5,15.5-68c0-24.1-4.1-45.5-12.2-64.1c-8.1-18.7-19.4-34.3-33.8-47\r\n\t\tc-14.4-12.6-31.6-22.2-51.4-28.6c-19.9-6.4-41.6-9.6-65.1-9.6c-25.6,0-49,4.5-70.3,13.5s-39.5,21.5-54.5,37.3\r\n\t\tc-15,15.9-26.7,34.5-35,56C95.2,209.1,91,232.3,91,257.2c0,26.5,4.4,50.4,13.1,71.7c8.7,21.3,21,39.4,36.8,54.5\r\n\t\tc15.8,15.1,34.7,26.6,56.6,34.6c21.9,8,46.1,12,72.4,12c32.9,0,61.2-5.2,84.9-15.7c23.7-10.4,45.5-24.9,65.4-43.4L453.8,407.1z\r\n\t\t M263.3,188c-9.7,0-18.3,2.8-25.6,8.4c-7.3,5.6-13.5,12.7-18.6,21.4c-5.1,8.6-8.9,18.2-11.6,28.6c-2.6,10.4-4,20.5-4,30.1\r\n\t\tc0,4.8,0.5,9.9,1.5,15.4c1,5.4,3,10.4,6.1,15.1c3,4.6,7,8.4,11.9,11.4c4.9,3,11.4,4.5,19.5,4.5c11,0,20.3-2.7,28-8.1\r\n\t\tc7.7-5.4,14-12.2,18.9-20.5c4.9-8.2,8.4-17.2,10.7-26.8c2.2-9.6,3.3-18.5,3.3-26.5c0-6.4-0.6-12.7-1.8-19\r\n\t\tc-1.2-6.2-3.3-11.8-6.4-16.9c-3-5-7.2-9.1-12.5-12.3C277.5,189.6,271,188,263.3,188z"},"children":[{"name":"path","attribs":{"d":"M453.8,407.1c-23.9,25.3-52.3,43.8-85.2,55.4C335.7,474.2,301,480,264.5,480c-34.9,0-66.7-5.5-95.3-16.6\r\n\t\tc-28.6-11-53.1-26.4-73.3-46.1c-20.3-19.7-36-43.3-47.2-70.8c-11.2-27.5-16.7-57.5-16.7-90c0-32.1,6.1-61.8,18.3-89.1\r\n\t\tc12.2-27.3,28.8-51,49.9-71.1c21.1-20.1,45.7-35.8,74-47.3C202.3,37.7,232.5,32,264.5,32c27.6,0,54.4,4,80.3,12\r\n\t\tc26,8,49,20.1,69.1,36.1c20.1,16.1,36.1,36.1,48.1,60.2c12,24.1,18,52.4,18,84.9c0,24.1-3.3,45.4-10,63.8\r\n\t\tc-6.7,18.5-15.6,33.9-26.8,46.4c-11.2,12.5-23.9,21.8-38.3,28c-14.4,6.2-29.5,9.3-45.3,9.3c-16.2,0-29.2-3.8-39-11.4\r\n\t\tc-9.7-7.6-14.6-17.3-14.6-28.9h-3c-6.1,9.6-15.4,18.8-28,27.4c-12.6,8.6-28,13-46.3,13c-27.6,0-48.9-9-63.9-27.1\r\n\t\tc-15-18.1-22.5-41.5-22.5-70.5c0-16.9,2.8-33.5,8.5-50c5.7-16.5,13.8-31.1,24.3-44c10.5-12.8,23.1-23.2,37.7-31\r\n\t\tc14.6-7.8,30.8-11.7,48.7-11.7c15.4,0,28.4,3.2,39,9.6c10.5,6.4,17.4,14.3,20.7,23.5h0.6l4.9-24.1h54.2L357,261.4\r\n\t\tc-0.8,5.6-1.9,11.8-3.3,18.7c-1.4,6.8-2.1,13.2-2.1,19.3c0,6.8,1.3,12.5,4,17.2c2.6,4.6,7.8,6.9,15.5,6.9\r\n\t\tc15.8,0,28.9-8.4,39.3-25.3c10.3-16.9,15.5-39.5,15.5-68c0-24.1-4.1-45.5-12.2-64.1c-8.1-18.7-19.4-34.3-33.8-47\r\n\t\tc-14.4-12.6-31.6-22.2-51.4-28.6c-19.9-6.4-41.6-9.6-65.1-9.6c-25.6,0-49,4.5-70.3,13.5s-39.5,21.5-54.5,37.3\r\n\t\tc-15,15.9-26.7,34.5-35,56C95.2,209.1,91,232.3,91,257.2c0,26.5,4.4,50.4,13.1,71.7c8.7,21.3,21,39.4,36.8,54.5\r\n\t\tc15.8,15.1,34.7,26.6,56.6,34.6c21.9,8,46.1,12,72.4,12c32.9,0,61.2-5.2,84.9-15.7c23.7-10.4,45.5-24.9,65.4-43.4L453.8,407.1z\r\n\t\t M263.3,188c-9.7,0-18.3,2.8-25.6,8.4c-7.3,5.6-13.5,12.7-18.6,21.4c-5.1,8.6-8.9,18.2-11.6,28.6c-2.6,10.4-4,20.5-4,30.1\r\n\t\tc0,4.8,0.5,9.9,1.5,15.4c1,5.4,3,10.4,6.1,15.1c3,4.6,7,8.4,11.9,11.4c4.9,3,11.4,4.5,19.5,4.5c11,0,20.3-2.7,28-8.1\r\n\t\tc7.7-5.4,14-12.2,18.9-20.5c4.9-8.2,8.4-17.2,10.7-26.8c2.2-9.6,3.3-18.5,3.3-26.5c0-6.4-0.6-12.7-1.8-19\r\n\t\tc-1.2-6.2-3.3-11.8-6.4-16.9c-3-5-7.2-9.1-12.5-12.3C277.5,189.6,271,188,263.3,188z"},"children":[]}]}]}]};exports.at=at;var backspaceOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71c0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905\r\n\t\t\tc-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371l-76.23-76.461l-76.23,76.461\r\n\t\t\tc-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905c-1.527-1.504-2.373-3.556-2.373-5.707\r\n\t\t\tc0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297c-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919\r\n\t\t\tc1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357l76.448,75.533l76.447-75.533\r\n\t\t\tc1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919c3.146,3.153,3.146,8.273,0,11.427\r\n\t\t\tL336.904,256L413.442,332.307z"},"children":[{"name":"path","attribs":{"d":"M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71c0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905\r\n\t\t\tc-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371l-76.23-76.461l-76.23,76.461\r\n\t\t\tc-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905c-1.527-1.504-2.373-3.556-2.373-5.707\r\n\t\t\tc0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297c-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919\r\n\t\t\tc1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357l76.448,75.533l76.447-75.533\r\n\t\t\tc1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919c3.146,3.153,3.146,8.273,0,11.427\r\n\t\t\tL336.904,256L413.442,332.307z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M480,383c0,8.837-5.163,17-14,17H168\r\n\t\tc-15.167,0-24.333-6.666-32-16.5L40,256l96-128.438c9.5-13,21.167-15.562,32-15.562h297.5c8.837,0,14.5,6.163,14.5,15V383z"},"children":[{"name":"path","attribs":{"d":"M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M480,383c0,8.837-5.163,17-14,17H168\r\n\t\tc-15.167,0-24.333-6.666-32-16.5L40,256l96-128.438c9.5-13,21.167-15.562,32-15.562h297.5c8.837,0,14.5,6.163,14.5,15V383z"},"children":[]}]}]}]};exports.backspaceOutline=backspaceOutline;var backspace={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71\r\n\t\tc0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905c-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371\r\n\t\tl-76.23-76.461l-76.23,76.461c-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905\r\n\t\tc-1.527-1.504-2.373-3.556-2.373-5.707c0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297\r\n\t\tc-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919c1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357\r\n\t\tl76.448,75.533l76.447-75.533c1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919\r\n\t\tc3.146,3.153,3.146,8.273,0,11.427L336.904,256L413.442,332.307z"},"children":[{"name":"path","attribs":{"d":"M498.941,93.559C490.037,84.654,478.696,80,465.875,80H168c-24.303,0-43.717,9.402-57.706,28.441L0,255.938l110.4,146.528\r\n\t\tl0.18,0.231l0.184,0.232c6.904,8.855,14.424,15.701,22.99,20.417C143.883,428.924,155.405,432,168,432h298\r\n\t\tc26.191,0,46-22.257,46-49V127C512,114.179,507.846,102.463,498.941,93.559z M413.442,332.307c1.528,1.51,2.372,3.562,2.372,5.71\r\n\t\tc0,2.151-0.844,4.203-2.372,5.707l-21.823,21.905c-1.575,1.586-3.625,2.371-5.691,2.371c-2.071,0-4.138-0.785-5.695-2.371\r\n\t\tl-76.23-76.461l-76.23,76.461c-1.558,1.586-3.625,2.371-5.695,2.371c-2.066,0-4.117-0.785-5.692-2.371l-21.824-21.905\r\n\t\tc-1.527-1.504-2.373-3.556-2.373-5.707c0-2.148,0.846-4.2,2.373-5.71L271.098,256l-76.738-76.297\r\n\t\tc-3.146-3.153-3.146-8.273,0-11.427l21.807-21.919c1.516-1.511,3.552-2.357,5.696-2.357c2.152,0,4.189,0.847,5.691,2.357\r\n\t\tl76.448,75.533l76.447-75.533c1.504-1.511,3.541-2.357,5.693-2.357c2.143,0,4.179,0.847,5.695,2.357l21.807,21.919\r\n\t\tc3.146,3.153,3.146,8.273,0,11.427L336.904,256L413.442,332.307z"},"children":[]}]}]}]};exports.backspace=backspace;var bag={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,160h-64v-4.5C384,87,329,32,260.5,32h-8C184,32,128,87,128,155.5v4.5H64L32,480h448L448,160z M160,155.5\r\n\tc0-50.7,41.8-91.5,92.5-91.5h7.5h0.5c50.7,0,91.5,40.8,91.5,91.5v4.5H160V155.5z M67.8,448l24.9-256H128v36.3\r\n\tc-9.6,5.5-16,15.9-16,27.7c0,17.7,14.3,32,32,32s32-14.3,32-32c0-11.8-6.4-22.2-16-27.7V192h192v36.3c-9.6,5.5-16,15.9-16,27.7\r\n\tc0,17.7,14.3,32,32,32s32-14.3,32-32c0-11.8-6.4-22.2-16-27.7V192h35.4l24.9,256H67.8z"},"children":[]}]};exports.bag=bag;var batteryCharging={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M42.1,384h381.1c5.5,0,9.9-4.5,9.9-10v-54h36.9c5.6,0,10.1-4.5,10.1-10V202c0-5.5-4.5-10-10.1-10H433v-54\r\n\tc0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236C32,379.5,36.5,384,42.1,384z M257.4,160l-27.9,81H291L190.6,352l27.9-81H157\r\n\tL257.4,160z"},"children":[]}]};exports.batteryCharging=batteryCharging;var batteryEmpty={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z M448,288h-14.8H401v32v32H64V160h337v32v32h32.2H448V288z"},"children":[]}]};exports.batteryEmpty=batteryEmpty;var batteryFull={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z"},"children":[]}]};exports.batteryFull=batteryFull;var batteryHalf={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M469.9,192H433v-54c0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236c0,5.5,4.5,10,10.1,10h381.1c5.5,0,9.9-4.5,9.9-10\r\n\tv-54h36.9c5.6,0,10.1-4.5,10.1-10V202C480,196.5,475.5,192,469.9,192z M448,288h-14.8H401v32v32h-49l-32-192h81v32v32h32.2H448V288z\r\n\t"},"children":[]}]};exports.batteryHalf=batteryHalf;var batteryLow={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M42.1,384h381.1c5.5,0,9.9-4.5,9.9-10v-54h36.9c5.6,0,10.1-4.5,10.1-10V202c0-5.5-4.5-10-10.1-10H433v-54\r\n\tc0-5.5-4.3-10-9.9-10H42.1c-5.6,0-10.1,4.5-10.1,10v236C32,379.5,36.5,384,42.1,384z M401,160v32v32h32.2H448v64h-14.8H401v32v32\r\n\tH224l-32-192H401z"},"children":[]}]};exports.batteryLow=batteryLow;var beaker={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M143.5,192.5V416c0,8.836,7.851,16.5,16.688,16.5h208c8.836,0,15.312-7.664,15.312-16.5V192.5H143.5z M359.5,344\r\n\t\t\tc0,4.418-3.582,8-8,8s-8-3.582-8-8v-48c0-4.418,3.582-8,8-8s8,3.582,8,8V344z M352.188,272c-4.418,0-8-3.581-8-8s3.582-8,8-8\r\n\t\t\ts8,3.581,8,8S356.605,272,352.188,272z"},"children":[{"name":"path","attribs":{"d":"M143.5,192.5V416c0,8.836,7.851,16.5,16.688,16.5h208c8.836,0,15.312-7.664,15.312-16.5V192.5H143.5z M359.5,344\r\n\t\t\tc0,4.418-3.582,8-8,8s-8-3.582-8-8v-48c0-4.418,3.582-8,8-8s8,3.582,8,8V344z M352.188,272c-4.418,0-8-3.581-8-8s3.582-8,8-8\r\n\t\t\ts8,3.581,8,8S356.605,272,352.188,272z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M445.078,32.5H128.438c-54.345,0-64.594,27.426-64.594,39.75C94.094,76.5,95.5,77,95.5,109c0,16,0,307,0,307\r\n\t\t\tc0,35.346,29.341,64.5,64.688,64.5h207.75c35.346,0,63.562-29.154,63.562-64.5c0,0,0-316.75,0-335.5\r\n\t\t\tc0-20.349,12.298-38.276,13.516-40.183c1.219-1.906,3-3.798,3-4.958C448.016,34.188,447.6,32.5,445.078,32.5z M399.5,80.5V416\r\n\t\t\tc0,17.92-12.443,32.5-29.812,32.5h-209.5c-17.617,0-32.688-14.883-32.688-32.5V109c0-11.812,1.094-37.25-3.828-43.957\r\n\t\t\tc0.921-0.793,3.114-0.543,4.516-0.543h272.66C400.112,64.5,399.5,75.299,399.5,80.5z"},"children":[{"name":"path","attribs":{"d":"M445.078,32.5H128.438c-54.345,0-64.594,27.426-64.594,39.75C94.094,76.5,95.5,77,95.5,109c0,16,0,307,0,307\r\n\t\t\tc0,35.346,29.341,64.5,64.688,64.5h207.75c35.346,0,63.562-29.154,63.562-64.5c0,0,0-316.75,0-335.5\r\n\t\t\tc0-20.349,12.298-38.276,13.516-40.183c1.219-1.906,3-3.798,3-4.958C448.016,34.188,447.6,32.5,445.078,32.5z M399.5,80.5V416\r\n\t\t\tc0,17.92-12.443,32.5-29.812,32.5h-209.5c-17.617,0-32.688-14.883-32.688-32.5V109c0-11.812,1.094-37.25-3.828-43.957\r\n\t\t\tc0.921-0.793,3.114-0.543,4.516-0.543h272.66C400.112,64.5,399.5,75.299,399.5,80.5z"},"children":[]}]}]}]}]}]};exports.beaker=beaker;var beer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,160h-32v-16c14.5-3.5,32-24.3,32-48c0-35.3-28.7-64-64-64c-16.3,0-31.1,6.1-42.4,16.1C297.2,38,281.4,32,264.2,32\r\n\t\tc-15.8,0-30.4,5.1-42.3,13.7c-9.9-8.5-22.9-13.7-37-13.7c-17.1,0-32.4,7.6-42.8,19.5C130.4,39.5,114.1,32,96,32\r\n\t\tc-35.3,0-64,28.7-64,64c0,16.2,6.1,31,16,42.3c0,0.2,0,0.4,0,0.7v54c0,26.5,21.5,48,48,48v223c0,8.8,7.2,16,16,16h256\r\n\t\tc8.8,0,16-7.2,16-16v-80h32c35.3,0,64-28.7,64-64v-96C480,188.7,451.3,160,416,160z M327.8,304c-1.6,0-3-0.6-4.3-1.4\r\n\t\tc-2.2-1.4-3.5-4-3.5-6.8V248c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8v48.1l0,0C336,301.1,332.2,304,327.8,304z M335,228.4\r\n\t\tc-1.2,1.8-3,3-5.1,3.5c-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1\r\n\t\tc1.8,1.2,3,3,3.5,5.1C336.6,224.4,336.2,226.6,335,228.4z M352,160v32H224.2c-0.1-4.3-3.6-7.8-8-7.8c-4.4,0-7.9,3.5-8,7.8H128v-9\r\n\t\tv-31.6c6.5-3.8,12.3-8.6,17-14.3c1.2-1.5,2.4-3,3.5-4.6c1.5,1.2,3,2.4,4.6,3.4c9.1,6.1,20,9.7,31.7,9.7c6.4,0,12.6-1.1,18.3-3\r\n\t\tc12.8,20.2,35.3,33.7,61,33.7c22,0,41.7-9.9,54.9-25.4c5.7-6.7,10.2-14.4,13.1-22.9H352V160z M382.6,105.2\r\n\t\tc-2.5-5.5-8.1-9.2-14.6-9.2h-48h-7c0,0-8.7-0.7-8.7,8.2s-2.9,17.1-7.8,23.7c-7.3,9.9-19.1,16.4-32.4,16.4\r\n\t\tc-14.9,0-27.9-8.1-34.8-20.2c-1.6-2.7-2.8-5.6-3.7-8.6c-0.1-0.6-0.3-1.1-0.4-1.6c-2-5.9-7.5-10.2-14.1-10.2c-3.9,0-7.5,1.5-10.2,4\r\n\t\tc0,0,0,0-0.1,0.1c-2.4,2.1-5.3,3.7-8.4,4.7c-2.4,0.8-5,1.2-7.7,1.2c-7.5,0-14.7-4-18.8-8.6c-10-11.4-23.7-6.8-29.7-5.5\r\n\t\ts-12.2,11.7-12.2,11.7c-1.1,2.1-2.5,4-4,5.8c-5.9,6.7-14.5,11-24.1,11v32v23v26c-8.8,0-16-7.2-16-16v-35v-34.3\r\n\t\tc-7.7-4.5-13.4-12.1-15.3-21c-0.5-2.1-0.7-4.4-0.7-6.7c0-17.6,14.4-32,32-32c11.8,0,23.3,7.7,30.1,15.4s26.7,7.7,33.9,0\r\n\t\tc6.8-7.3,14.3-15.4,24.8-15.4c6,0,11.6,2.2,15.9,5.8c1.9,1.6,3.6,3.5,4.9,5.6c1.1,1.8,2,4.2,3.1,5.8c2.7,3.4,6.5,5.5,11.2,5.5\r\n\t\tc4.4,0,8.3-1.9,11-5c0.6-0.7,1.2-1.5,1.7-2.3c2-2.5,4.2-4.8,6.7-6.8c6.8-5.4,15.5-8.6,24.8-8.6c10.6,0,20.2,4.1,27.4,10.9\r\n\t\tc1.7,1.6,6.7,4.5,13.2,5.1c4.5,0.4,6.1,0.3,8.2,0c10.3-1.3,14.4-4.7,16.4-6.6c5.8-5.8,13.8-9.4,22.6-9.4c17.6,0,32,14.4,32,32\r\n\t\tC384,99.2,383.5,102.3,382.6,105.2z M448,320c0,17.7-14.3,32-32,32h-32V192h32c17.7,0,32,14.3,32,32V320z"},"children":[{"name":"path","attribs":{"d":"M416,160h-32v-16c14.5-3.5,32-24.3,32-48c0-35.3-28.7-64-64-64c-16.3,0-31.1,6.1-42.4,16.1C297.2,38,281.4,32,264.2,32\r\n\t\tc-15.8,0-30.4,5.1-42.3,13.7c-9.9-8.5-22.9-13.7-37-13.7c-17.1,0-32.4,7.6-42.8,19.5C130.4,39.5,114.1,32,96,32\r\n\t\tc-35.3,0-64,28.7-64,64c0,16.2,6.1,31,16,42.3c0,0.2,0,0.4,0,0.7v54c0,26.5,21.5,48,48,48v223c0,8.8,7.2,16,16,16h256\r\n\t\tc8.8,0,16-7.2,16-16v-80h32c35.3,0,64-28.7,64-64v-96C480,188.7,451.3,160,416,160z M327.8,304c-1.6,0-3-0.6-4.3-1.4\r\n\t\tc-2.2-1.4-3.5-4-3.5-6.8V248c0-4.4,3.6-8,8-8c4.4,0,8,3.6,8,8v48.1l0,0C336,301.1,332.2,304,327.8,304z M335,228.4\r\n\t\tc-1.2,1.8-3,3-5.1,3.5c-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1\r\n\t\tc1.8,1.2,3,3,3.5,5.1C336.6,224.4,336.2,226.6,335,228.4z M352,160v32H224.2c-0.1-4.3-3.6-7.8-8-7.8c-4.4,0-7.9,3.5-8,7.8H128v-9\r\n\t\tv-31.6c6.5-3.8,12.3-8.6,17-14.3c1.2-1.5,2.4-3,3.5-4.6c1.5,1.2,3,2.4,4.6,3.4c9.1,6.1,20,9.7,31.7,9.7c6.4,0,12.6-1.1,18.3-3\r\n\t\tc12.8,20.2,35.3,33.7,61,33.7c22,0,41.7-9.9,54.9-25.4c5.7-6.7,10.2-14.4,13.1-22.9H352V160z M382.6,105.2\r\n\t\tc-2.5-5.5-8.1-9.2-14.6-9.2h-48h-7c0,0-8.7-0.7-8.7,8.2s-2.9,17.1-7.8,23.7c-7.3,9.9-19.1,16.4-32.4,16.4\r\n\t\tc-14.9,0-27.9-8.1-34.8-20.2c-1.6-2.7-2.8-5.6-3.7-8.6c-0.1-0.6-0.3-1.1-0.4-1.6c-2-5.9-7.5-10.2-14.1-10.2c-3.9,0-7.5,1.5-10.2,4\r\n\t\tc0,0,0,0-0.1,0.1c-2.4,2.1-5.3,3.7-8.4,4.7c-2.4,0.8-5,1.2-7.7,1.2c-7.5,0-14.7-4-18.8-8.6c-10-11.4-23.7-6.8-29.7-5.5\r\n\t\ts-12.2,11.7-12.2,11.7c-1.1,2.1-2.5,4-4,5.8c-5.9,6.7-14.5,11-24.1,11v32v23v26c-8.8,0-16-7.2-16-16v-35v-34.3\r\n\t\tc-7.7-4.5-13.4-12.1-15.3-21c-0.5-2.1-0.7-4.4-0.7-6.7c0-17.6,14.4-32,32-32c11.8,0,23.3,7.7,30.1,15.4s26.7,7.7,33.9,0\r\n\t\tc6.8-7.3,14.3-15.4,24.8-15.4c6,0,11.6,2.2,15.9,5.8c1.9,1.6,3.6,3.5,4.9,5.6c1.1,1.8,2,4.2,3.1,5.8c2.7,3.4,6.5,5.5,11.2,5.5\r\n\t\tc4.4,0,8.3-1.9,11-5c0.6-0.7,1.2-1.5,1.7-2.3c2-2.5,4.2-4.8,6.7-6.8c6.8-5.4,15.5-8.6,24.8-8.6c10.6,0,20.2,4.1,27.4,10.9\r\n\t\tc1.7,1.6,6.7,4.5,13.2,5.1c4.5,0.4,6.1,0.3,8.2,0c10.3-1.3,14.4-4.7,16.4-6.6c5.8-5.8,13.8-9.4,22.6-9.4c17.6,0,32,14.4,32,32\r\n\t\tC384,99.2,383.5,102.3,382.6,105.2z M448,320c0,17.7-14.3,32-32,32h-32V192h32c17.7,0,32,14.3,32,32V320z"},"children":[]}]},{"name":"circle","attribs":{"cx":"168.2","cy":"168.2","r":"8"},"children":[{"name":"circle","attribs":{"cx":"168.2","cy":"168.2","r":"8"},"children":[]}]},{"name":"circle","attribs":{"cx":"328.2","cy":"168.2","r":"8"},"children":[{"name":"circle","attribs":{"cx":"328.2","cy":"168.2","r":"8"},"children":[]}]}]}]};exports.beer=beer;var bluetooth={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M140,143.6c-15.9,15.9-11.7,17.3-10.6,18.4c1.1,1.1,89.8,85.6,89.8,85.6s3.9,3.4,3.9,8.4h0c0,5-3.9,8.4-3.9,8.4\r\n\t\ts-88.7,84.5-89.8,85.6c-1.1,1.1-5.3,2.5,10.6,18.4c15.9,15.9,18.4,12.2,19.2,11.4l67.4-64.3c0.1-0.1,0.2-0.2,0.3-0.3\r\n\t\tc0.1-0.1,0.3-0.2,0.4-0.3c2.3-1.9,9.8-10.6,9.8-3.2c0,7.3,0,151.8,0,156.4v0.1v1.7c0,5.5,5.2,10.1,11.6,10.1c3.5,0,6.7-1.3,8.9-3.5\r\n\t\tl0,0c0,0,118.2-112.8,122.8-117.2c4.6-4.4,5-10.7,1-14.7l-83.9-80.3c0,0-4.4-4.3-4.4-8.3s4.4-8.3,4.4-8.3l83.9-80.3\r\n\t\tc4-4,3.6-10.4-1-14.7c-4.6-4.4-122.8-117.2-122.8-117.2l0,0c-2.1-2.1-5.3-3.5-8.8-3.5c-6.4,0-11.6,4.6-11.6,10.1v1.7V44\r\n\t\tc0,4.6,0,149.1,0,156.4c0,7.4-7.5-1.3-9.8-3.2c-0.1-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.2-0.3-0.3l-67.4-64.3\r\n\t\tC158.3,131.4,155.9,127.7,140,143.6z M280,119.9c0-6.6,7.5,2.3,9.8,4.4l30.5,29.2c2.1,2,2.9,4.7,2.9,7.2c0,2.5-1,5.6-2.8,7.3\r\n\t\tc-1.8,1.7-30.8,29.5-30.8,29.5c-2.3,1.8-9.6,9.8-9.6,1.7C280,199.2,280,126.5,280,119.9z M280,312.8c0-8.2,7.2-0.2,9.6,1.7\r\n\t\tc0,0,29.1,27.8,30.9,29.5c1.8,1.7,2.8,4.9,2.8,7.3s-0.8,5.2-2.9,7.2l-30.5,29.2c-2.3,2.1-9.8,11-9.8,4.4\r\n\t\tC280,385.5,280,312.8,280,312.8z"},"children":[{"name":"path","attribs":{"d":"M140,143.6c-15.9,15.9-11.7,17.3-10.6,18.4c1.1,1.1,89.8,85.6,89.8,85.6s3.9,3.4,3.9,8.4h0c0,5-3.9,8.4-3.9,8.4\r\n\t\ts-88.7,84.5-89.8,85.6c-1.1,1.1-5.3,2.5,10.6,18.4c15.9,15.9,18.4,12.2,19.2,11.4l67.4-64.3c0.1-0.1,0.2-0.2,0.3-0.3\r\n\t\tc0.1-0.1,0.3-0.2,0.4-0.3c2.3-1.9,9.8-10.6,9.8-3.2c0,7.3,0,151.8,0,156.4v0.1v1.7c0,5.5,5.2,10.1,11.6,10.1c3.5,0,6.7-1.3,8.9-3.5\r\n\t\tl0,0c0,0,118.2-112.8,122.8-117.2c4.6-4.4,5-10.7,1-14.7l-83.9-80.3c0,0-4.4-4.3-4.4-8.3s4.4-8.3,4.4-8.3l83.9-80.3\r\n\t\tc4-4,3.6-10.4-1-14.7c-4.6-4.4-122.8-117.2-122.8-117.2l0,0c-2.1-2.1-5.3-3.5-8.8-3.5c-6.4,0-11.6,4.6-11.6,10.1v1.7V44\r\n\t\tc0,4.6,0,149.1,0,156.4c0,7.4-7.5-1.3-9.8-3.2c-0.1-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.2-0.2-0.3-0.3l-67.4-64.3\r\n\t\tC158.3,131.4,155.9,127.7,140,143.6z M280,119.9c0-6.6,7.5,2.3,9.8,4.4l30.5,29.2c2.1,2,2.9,4.7,2.9,7.2c0,2.5-1,5.6-2.8,7.3\r\n\t\tc-1.8,1.7-30.8,29.5-30.8,29.5c-2.3,1.8-9.6,9.8-9.6,1.7C280,199.2,280,126.5,280,119.9z M280,312.8c0-8.2,7.2-0.2,9.6,1.7\r\n\t\tc0,0,29.1,27.8,30.9,29.5c1.8,1.7,2.8,4.9,2.8,7.3s-0.8,5.2-2.9,7.2l-30.5,29.2c-2.3,2.1-9.8,11-9.8,4.4\r\n\t\tC280,385.5,280,312.8,280,312.8z"},"children":[]}]}]}]};exports.bluetooth=bluetooth;var bonfire={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M270.93,350.601C270.219,342.42,263.364,336,255,336c-7.635,0-14.01,5.352-15.605,12.506l-0.007-0.002l-15.612,92.502\r\n\t\tC223.273,443.258,223,445.597,223,448c0,17.673,14.327,32,32,32s32-14.327,32-32c0-2.899-0.393-5.705-1.115-8.377L270.93,350.601z"},"children":[{"name":"path","attribs":{"d":"M270.93,350.601C270.219,342.42,263.364,336,255,336c-7.635,0-14.01,5.352-15.605,12.506l-0.007-0.002l-15.612,92.502\r\n\t\tC223.273,443.258,223,445.597,223,448c0,17.673,14.327,32,32,32s32-14.327,32-32c0-2.899-0.393-5.705-1.115-8.377L270.93,350.601z"},"children":[]}]},{"name":"polygon","attribs":{"points":"305.904,355.046 305.903,355.044 305.9,355.046 \t"},"children":[{"name":"polygon","attribs":{"points":"305.904,355.046 305.903,355.044 305.9,355.046 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M392.875,390.261c-1.718-1.407-3.3-2.881-5.138-3.94l-63.629-47.507c-5.775-3.796-11.997-3.689-16.527,0.85\r\n\t\tc-4.131,4.143-4.686,10.369-1.678,15.381l48.959,65.763c0.946,1.494,2.166,2.799,3.366,4.195c7.802,9.071,25.08,9.588,34.646-0.007\r\n\t\tC402.445,415.409,402.305,397.986,392.875,390.261z"},"children":[{"name":"path","attribs":{"d":"M392.875,390.261c-1.718-1.407-3.3-2.881-5.138-3.94l-63.629-47.507c-5.775-3.796-11.997-3.689-16.527,0.85\r\n\t\tc-4.131,4.143-4.686,10.369-1.678,15.381l48.959,65.763c0.946,1.494,2.166,2.799,3.366,4.195c7.802,9.071,25.08,9.588,34.646-0.007\r\n\t\tC402.445,415.409,402.305,397.986,392.875,390.261z"},"children":[]}]},{"name":"polygon","attribs":{"points":"372.511,335.018 372.509,335.018 372.509,335.02 \t"},"children":[{"name":"polygon","attribs":{"points":"372.511,335.018 372.509,335.018 372.509,335.02 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M435.428,322.475l-59.521-2.284c-3.891-0.558-7.4,2.053-8.065,6.011c-0.604,3.611,1.347,7.138,4.668,8.816l0.013-0.039\r\n\t\tc0.041,0.019,0.062,0.006,0.105,0.025l57.717,17.756c8.289,1.93,17.656-2.343,17.656-11.648\r\n\t\tC448,329.328,444.917,323.667,435.428,322.475z"},"children":[{"name":"path","attribs":{"d":"M435.428,322.475l-59.521-2.284c-3.891-0.558-7.4,2.053-8.065,6.011c-0.604,3.611,1.347,7.138,4.668,8.816l0.013-0.039\r\n\t\tc0.041,0.019,0.062,0.006,0.105,0.025l57.717,17.756c8.289,1.93,17.656-2.343,17.656-11.648\r\n\t\tC448,329.328,444.917,323.667,435.428,322.475z"},"children":[]}]},{"name":"polygon","attribs":{"points":"139.222,335.02 139.222,335.018 139.22,335.018 \t"},"children":[{"name":"polygon","attribs":{"points":"139.222,335.02 139.222,335.018 139.22,335.018 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M139.209,334.979l0.013,0.039c3.321-1.679,5.272-5.205,4.668-8.816c-0.665-3.958-4.175-6.568-8.065-6.011l-59.521,2.284\r\n\t\tC66.813,323.667,64,329.328,64,341.111c0,9.306,9.098,13.578,17.387,11.648l57.717-17.756\r\n\t\tC139.146,334.984,139.168,334.997,139.209,334.979z"},"children":[{"name":"path","attribs":{"d":"M139.209,334.979l0.013,0.039c3.321-1.679,5.272-5.205,4.668-8.816c-0.665-3.958-4.175-6.568-8.065-6.011l-59.521,2.284\r\n\t\tC66.813,323.667,64,329.328,64,341.111c0,9.306,9.098,13.578,17.387,11.648l57.717-17.756\r\n\t\tC139.146,334.984,139.168,334.997,139.209,334.979z"},"children":[]}]},{"name":"path","attribs":{"d":"M187.903,338.807l-63.597,47.431c-1.838,1.057-3.569,2.362-5.137,3.931c-9.563,9.567-9.566,25.088-0.004,34.65\r\n\t\tc9.561,9.571,25.055,9.578,34.618,0.007c1.3-1.299,2.405-2.694,3.352-4.185L206.097,355c3.007-5,2.452-11.213-1.677-15.346\r\n\t\tC199.893,335.126,192.712,334.762,187.903,338.807z"},"children":[{"name":"path","attribs":{"d":"M187.903,338.807l-63.597,47.431c-1.838,1.057-3.569,2.362-5.137,3.931c-9.563,9.567-9.566,25.088-0.004,34.65\r\n\t\tc9.561,9.571,25.055,9.578,34.618,0.007c1.3-1.299,2.405-2.694,3.352-4.185L206.097,355c3.007-5,2.452-11.213-1.677-15.346\r\n\t\tC199.893,335.126,192.712,334.762,187.903,338.807z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,128c0-61-72.35-96-96-96c12.017,85.553-101.667,119.667-112,192s48,96,48,96\r\n\t\tc16.333-59.896,72.386-79.997,109.667-105.667C342.333,186.333,352,160.061,352,128z"},"children":[{"name":"path","attribs":{"d":"M352,128c0-61-72.35-96-96-96c12.017,85.553-101.667,119.667-112,192s48,96,48,96\r\n\t\tc16.333-59.896,72.386-79.997,109.667-105.667C342.333,186.333,352,160.061,352,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,256c5.03-15.613,4.91-49,0-64c-8.999,18.5-26.287,34.3-47.186,48.689c-8.584,5.911-19.859,11.443-28.83,16.797\r\n\t\tc-18.714,11.165-34.984,21.848-47.329,36.4C240.001,311.25,256.973,320,272,320C307.999,320,336,305.662,352,256z"},"children":[{"name":"path","attribs":{"d":"M352,256c5.03-15.613,4.91-49,0-64c-8.999,18.5-26.287,34.3-47.186,48.689c-8.584,5.911-19.859,11.443-28.83,16.797\r\n\t\tc-18.714,11.165-34.984,21.848-47.329,36.4C240.001,311.25,256.973,320,272,320C307.999,320,336,305.662,352,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M152.037,160c11.722-15.952,24.856-25.209,38.19-38.362c13.436-13.254,22.077-22.471,27.464-33.173\r\n\t\tC207.025,67.134,189.842,61.857,176,64c2.333,30.334-29.97,46.567-32,68.657C142.773,146,146.5,156,152.037,160z"},"children":[{"name":"path","attribs":{"d":"M152.037,160c11.722-15.952,24.856-25.209,38.19-38.362c13.436-13.254,22.077-22.471,27.464-33.173\r\n\t\tC207.025,67.134,189.842,61.857,176,64c2.333,30.334-29.97,46.567-32,68.657C142.773,146,146.5,156,152.037,160z"},"children":[]}]}]}]};exports.bonfire=bonfire;var bookmark={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,64H168c-4.4,0-8,3.6-8,8v56h192V72C352,67.6,348.4,64,344,64z"},"children":[{"name":"path","attribs":{"d":"M344,64H168c-4.4,0-8,3.6-8,8v56h192V72C352,67.6,348.4,64,344,64z"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,448 256,352 352,448 352,144 160,144 \t"},"children":[{"name":"polygon","attribs":{"points":"160,448 256,352 352,448 352,144 160,144 \t"},"children":[]}]}]}]};exports.bookmark=bookmark;var bowtie={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M223.955,212.011c0,0,8.054-4.679,19.985-7.011c21.318-4.166,39.472-5.5,47.466,8.5c9.777,17.124,18.402,53.417,16.488,85.5\r\n\tc-1,16.75-4.622,22.125-4.622,22.125s-15.333,9.525-47.341,6.875c-34.725-2.875-39.971-15.004-39.971-15.004\r\n\ts4.497-11.305,7.995-42.499C227.452,239.303,223.955,212.011,223.955,212.011z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M183.984,285c12.546-3.323,23.03-7.189,27.659-8.985c0.693-4.707,1.28-9.718,1.694-15.015\r\n\t\tc0.271-3.461,0.465-6.754,0.602-9.896c-6.854-2.333-13.534-4.851-28.769-10.104c-38.66-13.333-57.146-17-57.146-17\r\n\t\ts14.24-2.5,42.219,3c19.986,3.929,34.392,9.5,43.947,14.333c0.771-15.999-2.477-32.583-2.477-32.583\r\n\t\tC189.729,168.5,119.53,112,84.368,112C57.888,112,32,180.5,32,256s23.03,144,51.51,144c33.356,0,116.463-80,116.463-80\r\n\t\ts5.738-12.578,9.879-33.572c-18.788,5.198-63.84,8.572-63.84,8.572S166.996,289.5,183.984,285z"},"children":[{"name":"path","attribs":{"d":"M183.984,285c12.546-3.323,23.03-7.189,27.659-8.985c0.693-4.707,1.28-9.718,1.694-15.015\r\n\t\tc0.271-3.461,0.465-6.754,0.602-9.896c-6.854-2.333-13.534-4.851-28.769-10.104c-38.66-13.333-57.146-17-57.146-17\r\n\t\ts14.24-2.5,42.219,3c19.986,3.929,34.392,9.5,43.947,14.333c0.771-15.999-2.477-32.583-2.477-32.583\r\n\t\tC189.729,168.5,119.53,112,84.368,112C57.888,112,32,180.5,32,256s23.03,144,51.51,144c33.356,0,116.463-80,116.463-80\r\n\t\ts5.738-12.578,9.879-33.572c-18.788,5.198-63.84,8.572-63.84,8.572S166.996,289.5,183.984,285z"},"children":[]}]},{"name":"path","attribs":{"d":"M427.632,112c-36.37,0-102.363,56.5-124.348,96.75l-0.761,1.375c0,0,1.389,2.527,1.873,3.375\r\n\t\tc3.424,5.996,6.704,14.348,9.442,24.041c8.115-2.805,23.599-8.164,37.523-13.041c19.985-7,34.975-9.5,34.975-9.5\r\n\t\ts-52.982,23.741-69.605,34.264c2.169,10.159,3.693,21.199,4.218,32.242c5.423,2.216,16.551,6.475,29.914,9.994\r\n\t\tc18.986,5,40.398,11.5,40.398,11.5s-54.202-5.27-70.114-12.522c-0.013,2.862-0.095,5.709-0.263,8.522\r\n\t\tc-0.997,16.719-4.608,22.104-4.622,22.124C323.883,331.667,391.262,400,428.49,400C456.97,400,480,331.5,480,256\r\n\t\tS454.112,112,427.632,112z"},"children":[{"name":"path","attribs":{"d":"M427.632,112c-36.37,0-102.363,56.5-124.348,96.75l-0.761,1.375c0,0,1.389,2.527,1.873,3.375\r\n\t\tc3.424,5.996,6.704,14.348,9.442,24.041c8.115-2.805,23.599-8.164,37.523-13.041c19.985-7,34.975-9.5,34.975-9.5\r\n\t\ts-52.982,23.741-69.605,34.264c2.169,10.159,3.693,21.199,4.218,32.242c5.423,2.216,16.551,6.475,29.914,9.994\r\n\t\tc18.986,5,40.398,11.5,40.398,11.5s-54.202-5.27-70.114-12.522c-0.013,2.862-0.095,5.709-0.263,8.522\r\n\t\tc-0.997,16.719-4.608,22.104-4.622,22.124C323.883,331.667,391.262,400,428.49,400C456.97,400,480,331.5,480,256\r\n\t\tS454.112,112,427.632,112z"},"children":[]}]}]}]};exports.bowtie=bowtie;var briefcase={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M272,272h-32v-8H32v176c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.7-3.6,7.7-8V264H272V272z"},"children":[{"name":"path","attribs":{"d":"M272,272h-32v-8H32v176c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.7-3.6,7.7-8V264H272V272z"},"children":[]}]},{"name":"path","attribs":{"d":"M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64h-89.6c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8v96h208\r\n\t\tv-8h32v8h208v-96C480,147.6,476.7,144,472.2,144z M320,116.2c0,0.3,0,0.6,0,1V144H192v-26.8c0-0.4,0-0.7,0-1c0-0.3,0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.2,18.8-19.2h90.4c10.1,0,18.8,9.4,18.8,19.2C320,115.6,320,115.9,320,116.2z"},"children":[{"name":"path","attribs":{"d":"M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64h-89.6c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8v96h208\r\n\t\tv-8h32v8h208v-96C480,147.6,476.7,144,472.2,144z M320,116.2c0,0.3,0,0.6,0,1V144H192v-26.8c0-0.4,0-0.7,0-1c0-0.3,0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.2,18.8-19.2h90.4c10.1,0,18.8,9.4,18.8,19.2C320,115.6,320,115.9,320,116.2z"},"children":[]}]}]}]};exports.briefcase=briefcase;var bug={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M374.64,127.327C345.365,88.512,303.062,64,256,64s-89.365,24.512-118.64,63.327c6.354,15.64,15.833,30,28.13,42.297\r\n\t\tc24.176,24.176,56.319,37.49,90.51,37.49s66.334-13.314,90.51-37.49C358.807,157.327,368.286,142.966,374.64,127.327z"},"children":[{"name":"path","attribs":{"d":"M374.64,127.327C345.365,88.512,303.062,64,256,64s-89.365,24.512-118.64,63.327c6.354,15.64,15.833,30,28.13,42.297\r\n\t\tc24.176,24.176,56.319,37.49,90.51,37.49s66.334-13.314,90.51-37.49C358.807,157.327,368.286,142.966,374.64,127.327z"},"children":[]}]},{"name":"path","attribs":{"d":"M126.836,142.824c-1.725,2.827-3.396,5.703-4.992,8.644c-2.926-1.84-5.319-3.74-7.745-5.773\r\n\t\tc-1.171-0.981-2.954-3.949-4.546-7.35c5.41-11.314,1.181-25.037-9.914-31.261c-11.561-6.484-26.188-2.372-32.674,9.189\r\n\t\tc-6.485,11.56-2.371,26.188,9.187,32.673c1.251,0.702,2.539,1.272,3.847,1.729c2.816,6.269,7.32,14.331,13.548,19.547\r\n\t\tc4.184,3.507,8.792,7.117,15.204,10.674c-7.195,20.259-11.576,42.303-12.545,65.427c-11.026,0.207-18.619,2.1-25.474,4.122\r\n\t\tc-4.16,1.227-8.192,3.395-11.823,5.852c-0.954-0.115-1.923-0.182-2.908-0.182c-13.255,0-24,10.745-24,24s10.745,24,24,24\r\n\t\tc12.93,0,23.467-10.227,23.976-23.032c5.046-1.482,9.888-2.659,17.095-2.774c3.167,33.015,13.304,63.483,28.613,89.224\r\n\t\tc-14.166,11.006-22.882,23.016-26.605,36.317c0,0-0.75,0.438-1.873,1.366c-0.982,0.794-1.932,1.65-2.804,2.619\r\n\t\tc-8.865,9.855-8.062,25.031,1.793,33.895c9.854,8.865,25.028,8.062,33.893-1.793c8.087-8.988,8.095-22.381,0.558-31.395\r\n\t\tc3.074-5.562,6.236-9.014,13.67-14.961C171.368,425.235,207.723,445.619,248,448V222.872\r\n\t\tC194.764,219.954,149.229,188.138,126.836,142.824z"},"children":[{"name":"path","attribs":{"d":"M126.836,142.824c-1.725,2.827-3.396,5.703-4.992,8.644c-2.926-1.84-5.319-3.74-7.745-5.773\r\n\t\tc-1.171-0.981-2.954-3.949-4.546-7.35c5.41-11.314,1.181-25.037-9.914-31.261c-11.561-6.484-26.188-2.372-32.674,9.189\r\n\t\tc-6.485,11.56-2.371,26.188,9.187,32.673c1.251,0.702,2.539,1.272,3.847,1.729c2.816,6.269,7.32,14.331,13.548,19.547\r\n\t\tc4.184,3.507,8.792,7.117,15.204,10.674c-7.195,20.259-11.576,42.303-12.545,65.427c-11.026,0.207-18.619,2.1-25.474,4.122\r\n\t\tc-4.16,1.227-8.192,3.395-11.823,5.852c-0.954-0.115-1.923-0.182-2.908-0.182c-13.255,0-24,10.745-24,24s10.745,24,24,24\r\n\t\tc12.93,0,23.467-10.227,23.976-23.032c5.046-1.482,9.888-2.659,17.095-2.774c3.167,33.015,13.304,63.483,28.613,89.224\r\n\t\tc-14.166,11.006-22.882,23.016-26.605,36.317c0,0-0.75,0.438-1.873,1.366c-0.982,0.794-1.932,1.65-2.804,2.619\r\n\t\tc-8.865,9.855-8.062,25.031,1.793,33.895c9.854,8.865,25.028,8.062,33.893-1.793c8.087-8.988,8.095-22.381,0.558-31.395\r\n\t\tc3.074-5.562,6.236-9.014,13.67-14.961C171.368,425.235,207.723,445.619,248,448V222.872\r\n\t\tC194.764,219.954,149.229,188.138,126.836,142.824z"},"children":[]}]},{"name":"path","attribs":{"d":"M456,256.114c-0.985,0-1.954,0.066-2.908,0.182c-3.631-2.457-7.663-4.625-11.823-5.852\r\n\t\tc-6.854-2.021-14.447-3.915-25.474-4.122c-0.969-23.125-5.35-45.168-12.545-65.427c6.412-3.557,11.021-7.167,15.204-10.674\r\n\t\tc6.228-5.216,10.731-13.278,13.548-19.547c1.308-0.458,2.596-1.028,3.847-1.729c11.558-6.485,15.672-21.114,9.187-32.673\r\n\t\tc-6.485-11.561-21.113-15.673-32.674-9.189c-11.095,6.225-15.324,19.947-9.914,31.261c-1.592,3.401-3.375,6.369-4.546,7.35\r\n\t\tc-2.426,2.033-4.819,3.933-7.745,5.773c-1.596-2.941-3.268-5.817-4.992-8.644c-22.393,45.314-67.928,77.13-121.164,80.048V448\r\n\t\tc40.277-2.381,76.632-22.765,103.686-54.42c7.434,5.947,10.596,9.399,13.67,14.961c-7.537,9.014-7.529,22.406,0.558,31.395\r\n\t\tc8.864,9.855,24.038,10.658,33.893,1.793c9.854-8.863,10.658-24.039,1.793-33.895c-0.872-0.969-1.821-1.825-2.804-2.619\r\n\t\tc-1.123-0.929-1.873-1.366-1.873-1.366c-3.724-13.302-12.439-25.312-26.605-36.317c15.31-25.74,25.446-56.209,28.613-89.224\r\n\t\tc7.207,0.115,12.049,1.292,17.095,2.774c0.509,12.806,11.046,23.032,23.976,23.032c13.255,0,24-10.745,24-24\r\n\t\tS469.255,256.114,456,256.114z"},"children":[{"name":"path","attribs":{"d":"M456,256.114c-0.985,0-1.954,0.066-2.908,0.182c-3.631-2.457-7.663-4.625-11.823-5.852\r\n\t\tc-6.854-2.021-14.447-3.915-25.474-4.122c-0.969-23.125-5.35-45.168-12.545-65.427c6.412-3.557,11.021-7.167,15.204-10.674\r\n\t\tc6.228-5.216,10.731-13.278,13.548-19.547c1.308-0.458,2.596-1.028,3.847-1.729c11.558-6.485,15.672-21.114,9.187-32.673\r\n\t\tc-6.485-11.561-21.113-15.673-32.674-9.189c-11.095,6.225-15.324,19.947-9.914,31.261c-1.592,3.401-3.375,6.369-4.546,7.35\r\n\t\tc-2.426,2.033-4.819,3.933-7.745,5.773c-1.596-2.941-3.268-5.817-4.992-8.644c-22.393,45.314-67.928,77.13-121.164,80.048V448\r\n\t\tc40.277-2.381,76.632-22.765,103.686-54.42c7.434,5.947,10.596,9.399,13.67,14.961c-7.537,9.014-7.529,22.406,0.558,31.395\r\n\t\tc8.864,9.855,24.038,10.658,33.893,1.793c9.854-8.863,10.658-24.039,1.793-33.895c-0.872-0.969-1.821-1.825-2.804-2.619\r\n\t\tc-1.123-0.929-1.873-1.366-1.873-1.366c-3.724-13.302-12.439-25.312-26.605-36.317c15.31-25.74,25.446-56.209,28.613-89.224\r\n\t\tc7.207,0.115,12.049,1.292,17.095,2.774c0.509,12.806,11.046,23.032,23.976,23.032c13.255,0,24-10.745,24-24\r\n\t\tS469.255,256.114,456,256.114z"},"children":[]}]}]}]};exports.bug=bug;var calculator={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M400,32H112c-8.8,0-16,7.2-16,16v416c0,8.8,7.2,16,16,16h288c8.8,0,16-7.2,16-16V48C416,39.2,408.8,32,400,32z M144,208h32\r\n\tv32h-32V208z M144,272h32v32h-32V272z M144,336h32v32h-32V336z M240,432h-96v-32h96V432z M240,368h-32v-32h32V368z M240,304h-32v-32\r\n\th32V304z M240,240h-32v-32h32V240z M304,432h-32v-32h32V432z M304,368h-32v-32h32V368z M304,304h-32v-32h32V304z M304,240h-32v-32\r\n\th32V240z M368,432h-32v-96h32V432z M368,304h-32v-32h32V304z M368,240h-32v-32h32V240z M368,160H144V80h224V160z"},"children":[]}]};exports.calculator=calculator;var calendar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C112,113.7,126.3,128,144,128z"},"children":[{"name":"path","attribs":{"d":"M144,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C112,113.7,126.3,128,144,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C336,113.7,350.3,128,368,128z"},"children":[{"name":"path","attribs":{"d":"M368,128c17.7,0,32-14.3,32-32V64c0-17.7-14.3-32-32-32s-32,14.3-32,32v32C336,113.7,350.3,128,368,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M472,64h-56v40.7c0,22.5-23.2,39.3-47.2,39.3S320,127.2,320,104.7V64H192v40.7c0,22.5-24,39.3-48,39.3s-48-16.8-48-39.3V64\r\n\t\tH40c-4.4,0-8,3.6-8,8v400c0,4.4,3.6,8,8,8h432c4.4,0,8-3.6,8-8V72C480,67.6,476.4,64,472,64z M432,432H80V176h352V432z"},"children":[{"name":"path","attribs":{"d":"M472,64h-56v40.7c0,22.5-23.2,39.3-47.2,39.3S320,127.2,320,104.7V64H192v40.7c0,22.5-24,39.3-48,39.3s-48-16.8-48-39.3V64\r\n\t\tH40c-4.4,0-8,3.6-8,8v400c0,4.4,3.6,8,8,8h432c4.4,0,8-3.6,8-8V72C480,67.6,476.4,64,472,64z M432,432H80V176h352V432z"},"children":[]}]}]}]};exports.calendar=calendar;var camera={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M430.4,147h-67.5l-40.4-40.8c0,0-0.2-0.2-0.3-0.2l-0.2-0.2v0c-6-6-14.1-9.8-23.3-9.8h-84c-9.8,0-18.5,4.2-24.6,10.9l0,0.1\r\n\t\tl-39.5,40H81.6C63,147,48,161.6,48,180.2v202.1c0,18.6,15,33.7,33.6,33.7h348.8c18.5,0,33.6-15.1,33.6-33.7V180.2\r\n\t\tC464,161.6,448.9,147,430.4,147z M256,365.5c-50.9,0-92.4-41.6-92.4-92.6c0-51.1,41.5-92.6,92.4-92.6c51,0,92.4,41.5,92.4,92.6\r\n\t\tC348.4,323.9,307,365.5,256,365.5z M424.1,200.5c-7.7,0-14-6.3-14-14.1s6.3-14.1,14-14.1c7.7,0,14,6.3,14,14.1\r\n\t\tS431.8,200.5,424.1,200.5z"},"children":[{"name":"path","attribs":{"d":"M430.4,147h-67.5l-40.4-40.8c0,0-0.2-0.2-0.3-0.2l-0.2-0.2v0c-6-6-14.1-9.8-23.3-9.8h-84c-9.8,0-18.5,4.2-24.6,10.9l0,0.1\r\n\t\tl-39.5,40H81.6C63,147,48,161.6,48,180.2v202.1c0,18.6,15,33.7,33.6,33.7h348.8c18.5,0,33.6-15.1,33.6-33.7V180.2\r\n\t\tC464,161.6,448.9,147,430.4,147z M256,365.5c-50.9,0-92.4-41.6-92.4-92.6c0-51.1,41.5-92.6,92.4-92.6c51,0,92.4,41.5,92.4,92.6\r\n\t\tC348.4,323.9,307,365.5,256,365.5z M424.1,200.5c-7.7,0-14-6.3-14-14.1s6.3-14.1,14-14.1c7.7,0,14,6.3,14,14.1\r\n\t\tS431.8,200.5,424.1,200.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,202.9c-38.6,0-69.8,31.3-69.8,70c0,38.6,31.2,70,69.8,70c38.5,0,69.8-31.3,69.8-70C325.8,234.2,294.5,202.9,256,202.9\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M256,202.9c-38.6,0-69.8,31.3-69.8,70c0,38.6,31.2,70,69.8,70c38.5,0,69.8-31.3,69.8-70C325.8,234.2,294.5,202.9,256,202.9\r\n\t\tz"},"children":[]}]}]}]};exports.camera=camera;var card={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M452,96H60c-15.5,0-27.9,12.5-28,28l0,0v0.3v263.4v0.3l0,0c0.2,15.5,12.5,28,28,28h392c15.6,0,28-12.7,28-28.3v0V124.3v0\r\n\t\tC480,108.7,467.6,96,452,96z M77.1,128h357.7c6.9,0,12.1,5.1,13.1,12v20H64v-20.3C65,132.9,70.3,128,77.1,128z M434.9,384H77.1\r\n\t\tc-6.9,0-12.1-4.9-13.1-11.7V256h384v116C447,378.9,441.7,384,434.9,384z"},"children":[{"name":"path","attribs":{"d":"M452,96H60c-15.5,0-27.9,12.5-28,28l0,0v0.3v263.4v0.3l0,0c0.2,15.5,12.5,28,28,28h392c15.6,0,28-12.7,28-28.3v0V124.3v0\r\n\t\tC480,108.7,467.6,96,452,96z M77.1,128h357.7c6.9,0,12.1,5.1,13.1,12v20H64v-20.3C65,132.9,70.3,128,77.1,128z M434.9,384H77.1\r\n\t\tc-6.9,0-12.1-4.9-13.1-11.7V256h384v116C447,378.9,441.7,384,434.9,384z"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"304","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"96","y":"304","width":"192","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"336","width":"96","height":"16"},"children":[{"name":"rect","attribs":{"x":"96","y":"336","width":"96","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"352","y":"304","width":"64","height":"48"},"children":[{"name":"rect","attribs":{"x":"352","y":"304","width":"64","height":"48"},"children":[]}]}]}]};exports.card=card;var cash={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,96v256h512V96H0z M192.508,320H80.129c0-26.582-21.549-48.129-48.129-48.129V192c35.346,0,64-28.653,64-64h96.509\r\n\t\tC172.576,151.455,160,185.767,160,224S172.576,296.545,192.508,320z M298.089,261.248c-2.582,4.182-5.978,7.602-10.189,10.257\r\n\t\tc-4.214,2.655-9.004,4.607-14.375,5.835c-2.812,0.644-5.654,1.119-8.524,1.432V288h-18v-9.43c-2.768-0.357-5.461-0.863-8.072-1.541\r\n\t\tc-5.688-1.475-10.641-3.659-14.851-6.709c-4.214-3.047-7.584-6.803-10.11-11.573C211.548,254.186,210.24,248,210.04,243h19.735\r\n\t\tc0.096,3,0.828,6.532,2.201,9.184c1.473,2.853,3.526,4.883,6.16,6.7c2.572,1.78,5.532,3.082,8.863,3.919v-34.358\r\n\t\tc-2.436-0.601-5.016-1.245-7.758-1.938c-4.846-1.18-8.873-2.729-12.085-4.646c-3.214-1.918-5.766-4.057-7.661-6.417\r\n\t\tc-1.896-2.359-3.238-4.867-4.028-7.522c-0.791-2.656-1.186-5.358-1.186-8.113c0-5.31,1.186-9.905,3.556-13.791\r\n\t\tc2.368-3.883,5.502-7.104,9.398-9.662c3.895-2.556,8.319-4.448,13.27-5.679c2.154-0.534,4.319-0.945,6.494-1.248V160h18v9.499\r\n\t\tc2.46,0.353,4.856,0.838,7.18,1.473c5.215,1.427,9.796,3.563,13.744,6.414c3.95,2.854,7.083,6.364,9.4,10.542\r\n\t\tc2.109,3.811,3.258,8.072,3.445,13.072h-19.866c-0.753-6-3.175-10.326-7.274-12.923c-1.966-1.246-4.186-2.196-6.629-2.887v30.368\r\n\t\tc2.589,0.639,5.15,1.268,7.654,1.878c3.421,0.836,5.87,1.453,7.346,1.844c3.686,1.083,6.897,2.558,9.637,4.425\r\n\t\tc2.737,1.869,5.028,4.008,6.873,6.417c1.841,2.411,3.21,4.992,4.107,7.744c0.893,2.753,1.343,5.51,1.343,8.262\r\n\t\tC301.96,252.027,300.668,257.07,298.089,261.248z M480,271.871c-26,0-48,21.547-48,48.129H319.491\r\n\t\tC339.424,296.545,352,262.233,352,224s-12.576-72.545-32.51-96H416c0,35.347,28.653,64,64,64V271.871z"},"children":[{"name":"path","attribs":{"d":"M0,96v256h512V96H0z M192.508,320H80.129c0-26.582-21.549-48.129-48.129-48.129V192c35.346,0,64-28.653,64-64h96.509\r\n\t\tC172.576,151.455,160,185.767,160,224S172.576,296.545,192.508,320z M298.089,261.248c-2.582,4.182-5.978,7.602-10.189,10.257\r\n\t\tc-4.214,2.655-9.004,4.607-14.375,5.835c-2.812,0.644-5.654,1.119-8.524,1.432V288h-18v-9.43c-2.768-0.357-5.461-0.863-8.072-1.541\r\n\t\tc-5.688-1.475-10.641-3.659-14.851-6.709c-4.214-3.047-7.584-6.803-10.11-11.573C211.548,254.186,210.24,248,210.04,243h19.735\r\n\t\tc0.096,3,0.828,6.532,2.201,9.184c1.473,2.853,3.526,4.883,6.16,6.7c2.572,1.78,5.532,3.082,8.863,3.919v-34.358\r\n\t\tc-2.436-0.601-5.016-1.245-7.758-1.938c-4.846-1.18-8.873-2.729-12.085-4.646c-3.214-1.918-5.766-4.057-7.661-6.417\r\n\t\tc-1.896-2.359-3.238-4.867-4.028-7.522c-0.791-2.656-1.186-5.358-1.186-8.113c0-5.31,1.186-9.905,3.556-13.791\r\n\t\tc2.368-3.883,5.502-7.104,9.398-9.662c3.895-2.556,8.319-4.448,13.27-5.679c2.154-0.534,4.319-0.945,6.494-1.248V160h18v9.499\r\n\t\tc2.46,0.353,4.856,0.838,7.18,1.473c5.215,1.427,9.796,3.563,13.744,6.414c3.95,2.854,7.083,6.364,9.4,10.542\r\n\t\tc2.109,3.811,3.258,8.072,3.445,13.072h-19.866c-0.753-6-3.175-10.326-7.274-12.923c-1.966-1.246-4.186-2.196-6.629-2.887v30.368\r\n\t\tc2.589,0.639,5.15,1.268,7.654,1.878c3.421,0.836,5.87,1.453,7.346,1.844c3.686,1.083,6.897,2.558,9.637,4.425\r\n\t\tc2.737,1.869,5.028,4.008,6.873,6.417c1.841,2.411,3.21,4.992,4.107,7.744c0.893,2.753,1.343,5.51,1.343,8.262\r\n\t\tC301.96,252.027,300.668,257.07,298.089,261.248z M480,271.871c-26,0-48,21.547-48,48.129H319.491\r\n\t\tC339.424,296.545,352,262.233,352,224s-12.576-72.545-32.51-96H416c0,35.347,28.653,64,64,64V271.871z"},"children":[]}]},{"name":"circle","attribs":{"cx":"96","cy":"224","r":"32"},"children":[{"name":"circle","attribs":{"cx":"96","cy":"224","r":"32"},"children":[]}]},{"name":"circle","attribs":{"cx":"416","cy":"224","r":"32"},"children":[{"name":"circle","attribs":{"cx":"416","cy":"224","r":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M272.893,235.21c-2.395-0.823-5.029-1.618-7.893-2.389v30.856c1.592-0.23,3.069-0.547,4.416-0.959\r\n\t\tc3.053-0.934,5.529-2.139,7.425-3.613s3.264-3.171,4.107-5.089c0.842-1.917,1.263-3.858,1.263-5.827\r\n\t\tc0-4.031-0.975-7.006-2.921-8.924C277.34,237.349,275.206,235.999,272.893,235.21z"},"children":[{"name":"path","attribs":{"d":"M272.893,235.21c-2.395-0.823-5.029-1.618-7.893-2.389v30.856c1.592-0.23,3.069-0.547,4.416-0.959\r\n\t\tc3.053-0.934,5.529-2.139,7.425-3.613s3.264-3.171,4.107-5.089c0.842-1.917,1.263-3.858,1.263-5.827\r\n\t\tc0-4.031-0.975-7.006-2.921-8.924C277.34,237.349,275.206,235.999,272.893,235.21z"},"children":[]}]},{"name":"path","attribs":{"d":"M236.004,190.959c-1.318,1.771-1.975,3.982-1.975,6.638c0,3.738,1.236,6.663,3.712,8.776\r\n\t\tc2.377,2.034,5.468,3.583,9.259,4.661v-26.356c-2.18,0.45-4.192,1.135-6.02,2.078C238.979,187.788,237.32,189.189,236.004,190.959z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M236.004,190.959c-1.318,1.771-1.975,3.982-1.975,6.638c0,3.738,1.236,6.663,3.712,8.776\r\n\t\tc2.377,2.034,5.468,3.583,9.259,4.661v-26.356c-2.18,0.45-4.192,1.135-6.02,2.078C238.979,187.788,237.32,189.189,236.004,190.959z\r\n\t\t"},"children":[]}]},{"name":"rect","attribs":{"y":"384","width":"512","height":"32"},"children":[{"name":"rect","attribs":{"y":"384","width":"512","height":"32"},"children":[]}]}]}]};exports.cash=cash;var chatboxWorking={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M124.3,400H277c14.4,0,14.4,0.1,21.3,5.2S384,464,384,464v-64h3.7c42.2,0,76.3-31.8,76.3-71.4V119.7\r\n\tc0-39.6-34.2-71.7-76.3-71.7H124.3C82.2,48,48,80.1,48,119.7v208.9C48,368.2,82.2,400,124.3,400z M352.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C320.1,206.3,334.4,192,352.1,192z M256.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C224.1,206.3,238.4,192,256.1,192z M160.1,192c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C128.1,206.3,142.4,192,160.1,192z"},"children":[]}]};exports.chatboxWorking=chatboxWorking;var chatbox={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M124.3,400H277c14.4,0,14.4,0.1,21.3,5.2S384,464,384,464v-64h3.7c42.2,0,76.3-31.8,76.3-71.4V119.7\r\n\tc0-39.6-34.2-71.7-76.3-71.7H124.3C82.2,48,48,80.1,48,119.7v208.9C48,368.2,82.2,400,124.3,400z"},"children":[]}]};exports.chatbox=chatbox;var chatboxes={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M294.1,365.5c-2.6-1.8-7.2-4.5-17.5-4.5H160.5c-34.7,0-64.5-26.1-64.5-59.2V201h-1.8C67.9,201,48,221.5,48,246.5v128.9\r\n\t\tc0,25,21.4,40.6,47.7,40.6H112v48l53.1-45c1.9-1.4,5.3-3,13.2-3h89.8c23,0,47.4-11.4,51.9-32L294.1,365.5z"},"children":[{"name":"path","attribs":{"d":"M294.1,365.5c-2.6-1.8-7.2-4.5-17.5-4.5H160.5c-34.7,0-64.5-26.1-64.5-59.2V201h-1.8C67.9,201,48,221.5,48,246.5v128.9\r\n\t\tc0,25,21.4,40.6,47.7,40.6H112v48l53.1-45c1.9-1.4,5.3-3,13.2-3h89.8c23,0,47.4-11.4,51.9-32L294.1,365.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M401,48H183.7C149,48,128,74.8,128,107.8v69.7V276c0,33.1,28,60,62.7,60h101.1c10.4,0,15,2.3,17.5,4.2L384,400v-64h17\r\n\t\tc34.8,0,63-26.9,63-59.9V107.8C464,74.8,435.8,48,401,48z"},"children":[{"name":"path","attribs":{"d":"M401,48H183.7C149,48,128,74.8,128,107.8v69.7V276c0,33.1,28,60,62.7,60h101.1c10.4,0,15,2.3,17.5,4.2L384,400v-64h17\r\n\t\tc34.8,0,63-26.9,63-59.9V107.8C464,74.8,435.8,48,401,48z"},"children":[]}]}]}]};exports.chatboxes=chatboxes;var chatbubbleWorking={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,449.4c28.9,0,56.4-5.7,81.3-15.9c0.6-0.3,1.1-0.5,1.7-0.7c0.1,0,0.2,0,0.2-0.1c3.5-1.3,7.3-2,11.2-2\r\n\tc4.3,0,8.4,0.8,12.1,2.4l84,30.9l-22.1-88.4c0-5.3,1.5-10.3,3.9-14.6c0,0,0,0,0,0c0.8-1.3,1.6-2.6,2.5-3.7\r\n\tc20.9-31.3,33-68.5,33-108.4C464,137.9,370.9,48,256,48C141.1,48,48,137.9,48,248.7C48,359.6,141.1,449.4,256,449.4z M352,224\r\n\tc17.7,0,32,14.3,32,32c0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C320,238.3,334.3,224,352,224z M256,224c17.7,0,32,14.3,32,32\r\n\tc0,17.7-14.3,32-32,32c-17.7,0-32-14.3-32-32C224,238.3,238.3,224,256,224z M160,224c17.7,0,32,14.3,32,32c0,17.7-14.3,32-32,32\r\n\tc-17.7,0-32-14.3-32-32C128,238.3,142.3,224,160,224z"},"children":[]}]};exports.chatbubbleWorking=chatbubbleWorking;var chatbubble={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,449.4c28.9,0,56.4-5.7,81.3-15.9c0.6-0.3,1.1-0.5,1.7-0.7c0.1,0,0.2,0,0.2-0.1c3.5-1.3,7.3-2,11.2-2\r\n\tc4.3,0,8.4,0.8,12.1,2.4l84,30.9l-22.1-88.4c0-5.3,1.5-10.3,3.9-14.6c0,0,0,0,0,0c0.8-1.3,1.6-2.6,2.5-3.7\r\n\tc20.9-31.3,33-68.5,33-108.4C464,137.9,370.9,48,256,48C141.1,48,48,137.9,48,248.7C48,359.6,141.1,449.4,256,449.4z"},"children":[]}]};exports.chatbubble=chatbubble;var chatbubbles={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M73.3,391C73.3,391,73.3,391,73.3,391c1.8,3,2.8,6.4,2.8,10.2L64,464l56.2-22.1c2.7-1.1,5.6-1.7,8.7-1.7\r\n\t\tc2.8,0,5.5,0.5,8,1.4c0,0,0.1,0,0.2,0c0.4,0.2,0.8,0.3,1.2,0.5c17.8,7.3,37.4,11.4,57.9,11.4c46.3,0,87.6-20.5,114.8-52.6\r\n\t\tc-14.1,3.6-28.9,5.7-44.1,5.7c-95.9,0-173.7-75-173.7-167.5c0-11.8,1.3-23.2,3.7-34.3C66.9,230.9,48,268.6,48,310.6\r\n\t\tc0,28.4,8.6,55.2,23.5,77.5C72.1,388.9,72.7,390,73.3,391z"},"children":[{"name":"path","attribs":{"d":"M73.3,391C73.3,391,73.3,391,73.3,391c1.8,3,2.8,6.4,2.8,10.2L64,464l56.2-22.1c2.7-1.1,5.6-1.7,8.7-1.7\r\n\t\tc2.8,0,5.5,0.5,8,1.4c0,0,0.1,0,0.2,0c0.4,0.2,0.8,0.3,1.2,0.5c17.8,7.3,37.4,11.4,57.9,11.4c46.3,0,87.6-20.5,114.8-52.6\r\n\t\tc-14.1,3.6-28.9,5.7-44.1,5.7c-95.9,0-173.7-75-173.7-167.5c0-11.8,1.3-23.2,3.7-34.3C66.9,230.9,48,268.6,48,310.6\r\n\t\tc0,28.4,8.6,55.2,23.5,77.5C72.1,388.9,72.7,390,73.3,391z"},"children":[]}]},{"name":"path","attribs":{"d":"M290.3,48c-83.7,0-153.6,57.2-170,133.2c-2.4,11.1-3.7,22.5-3.7,34.3c0,92.5,77.7,167.5,173.7,167.5\r\n\t\tc15.3,0,30-2.1,44.1-5.7c8.1-2.1,16.1-4.5,23.8-7.6c0.5-0.2,0.9-0.4,1.4-0.6c0.1,0,0.2,0,0.2-0.1c2.9-1.1,6.1-1.7,9.3-1.7\r\n\t\tc3.6,0,7,0.7,10.1,2l68.6,25.8l-17-73.8c0-4.4,1.2-8.6,3.3-12.2c0,0,0,0,0,0c0.6-1.1,1.4-2.1,2.1-3.1\r\n\t\tc17.4-26.1,27.5-57.2,27.5-90.5C464,123,386.3,48,290.3,48z"},"children":[{"name":"path","attribs":{"d":"M290.3,48c-83.7,0-153.6,57.2-170,133.2c-2.4,11.1-3.7,22.5-3.7,34.3c0,92.5,77.7,167.5,173.7,167.5\r\n\t\tc15.3,0,30-2.1,44.1-5.7c8.1-2.1,16.1-4.5,23.8-7.6c0.5-0.2,0.9-0.4,1.4-0.6c0.1,0,0.2,0,0.2-0.1c2.9-1.1,6.1-1.7,9.3-1.7\r\n\t\tc3.6,0,7,0.7,10.1,2l68.6,25.8l-17-73.8c0-4.4,1.2-8.6,3.3-12.2c0,0,0,0,0,0c0.6-1.1,1.4-2.1,2.1-3.1\r\n\t\tc17.4-26.1,27.5-57.2,27.5-90.5C464,123,386.3,48,290.3,48z"},"children":[]}]}]}]};exports.chatbubbles=chatbubbles;var checkmarkCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t\t M370.9,181.1L231.8,359.6c-1.1,1.1-2.9,3.5-5.1,3.5c-2.3,0-3.8-1.6-5.1-2.9c-1.3-1.3-78.9-75.9-78.9-75.9l-1.5-1.5\r\n\t\tc-0.6-0.9-1.1-2-1.1-3.2c0-1.2,0.5-2.3,1.1-3.2c0.4-0.4,0.7-0.7,1.1-1.2c7.7-8.1,23.3-24.5,24.3-25.5c1.3-1.3,2.4-3,4.8-3\r\n\t\tc2.5,0,4.1,2.1,5.3,3.3c1.2,1.2,45,43.3,45,43.3l111.3-143c1-0.8,2.2-1.4,3.5-1.4c1.3,0,2.5,0.5,3.5,1.3l30.6,24.1\r\n\t\tc0.8,1,1.3,2.2,1.3,3.5C372,179.1,371.5,180.2,370.9,181.1z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t\t M370.9,181.1L231.8,359.6c-1.1,1.1-2.9,3.5-5.1,3.5c-2.3,0-3.8-1.6-5.1-2.9c-1.3-1.3-78.9-75.9-78.9-75.9l-1.5-1.5\r\n\t\tc-0.6-0.9-1.1-2-1.1-3.2c0-1.2,0.5-2.3,1.1-3.2c0.4-0.4,0.7-0.7,1.1-1.2c7.7-8.1,23.3-24.5,24.3-25.5c1.3-1.3,2.4-3,4.8-3\r\n\t\tc2.5,0,4.1,2.1,5.3,3.3c1.2,1.2,45,43.3,45,43.3l111.3-143c1-0.8,2.2-1.4,3.5-1.4c1.3,0,2.5,0.5,3.5,1.3l30.6,24.1\r\n\t\tc0.8,1,1.3,2.2,1.3,3.5C372,179.1,371.5,180.2,370.9,181.1z"},"children":[]}]}]}]};exports.checkmarkCircled=checkmarkCircled;var checkmarkRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,71.9c-17.3-13.4-41.5-9.3-54.1,9.1L214,344.2l-99.1-107.3c-14.6-16.6-39.1-17.4-54.7-1.8\r\n\tc-15.6,15.5-16.4,41.6-1.7,58.1c0,0,120.4,133.6,137.7,147c17.3,13.4,41.5,9.3,54.1-9.1l206.3-301.7\r\n\tC469.2,110.9,465.3,85.2,448,71.9z"},"children":[]}]};exports.checkmarkRound=checkmarkRound;var checkmark={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M461.6,109.6l-54.9-43.3c-1.7-1.4-3.8-2.4-6.2-2.4c-2.4,0-4.6,1-6.3,2.5L194.5,323c0,0-78.5-75.5-80.7-77.7\r\n\tc-2.2-2.2-5.1-5.9-9.5-5.9c-4.4,0-6.4,3.1-8.7,5.4c-1.7,1.8-29.7,31.2-43.5,45.8c-0.8,0.9-1.3,1.4-2,2.1c-1.2,1.7-2,3.6-2,5.7\r\n\tc0,2.2,0.8,4,2,5.7l2.8,2.6c0,0,139.3,133.8,141.6,136.1c2.3,2.3,5.1,5.2,9.2,5.2c4,0,7.3-4.3,9.2-6.2L462,121.8\r\n\tc1.2-1.7,2-3.6,2-5.8C464,113.5,463,111.4,461.6,109.6z"},"children":[]}]};exports.checkmark=checkmark;var chevronDown={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,298.3L256,298.3L256,298.3l174.2-167.2c4.3-4.2,11.4-4.1,15.8,0.2l30.6,29.9c4.4,4.3,4.5,11.3,0.2,15.5L264.1,380.9\r\n\tc-2.2,2.2-5.2,3.2-8.1,3c-3,0.1-5.9-0.9-8.1-3L35.2,176.7c-4.3-4.2-4.2-11.2,0.2-15.5L66,131.3c4.4-4.3,11.5-4.4,15.8-0.2L256,298.3\r\n\tz"},"children":[]}]};exports.chevronDown=chevronDown;var chevronLeft={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M213.7,256L213.7,256L213.7,256L380.9,81.9c4.2-4.3,4.1-11.4-0.2-15.8l-29.9-30.6c-4.3-4.4-11.3-4.5-15.5-0.2L131.1,247.9\r\n\tc-2.2,2.2-3.2,5.2-3,8.1c-0.1,3,0.9,5.9,3,8.1l204.2,212.7c4.2,4.3,11.2,4.2,15.5-0.2l29.9-30.6c4.3-4.4,4.4-11.5,0.2-15.8\r\n\tL213.7,256z"},"children":[]}]};exports.chevronLeft=chevronLeft;var chevronRight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M298.3,256L298.3,256L298.3,256L131.1,81.9c-4.2-4.3-4.1-11.4,0.2-15.8l29.9-30.6c4.3-4.4,11.3-4.5,15.5-0.2l204.2,212.7\r\n\tc2.2,2.2,3.2,5.2,3,8.1c0.1,3-0.9,5.9-3,8.1L176.7,476.8c-4.2,4.3-11.2,4.2-15.5-0.2L131.3,446c-4.3-4.4-4.4-11.5-0.2-15.8\r\n\tL298.3,256z"},"children":[]}]};exports.chevronRight=chevronRight;var chevronUp={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,213.7L256,213.7L256,213.7l174.2,167.2c4.3,4.2,11.4,4.1,15.8-0.2l30.6-29.9c4.4-4.3,4.5-11.3,0.2-15.5L264.1,131.1\r\n\tc-2.2-2.2-5.2-3.2-8.1-3c-3-0.1-5.9,0.9-8.1,3L35.2,335.3c-4.3,4.2-4.2,11.2,0.2,15.5L66,380.7c4.4,4.3,11.5,4.4,15.8,0.2L256,213.7\r\n\tz"},"children":[]}]};exports.chevronUp=chevronUp;var clipboard={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M161,160.5h192c-1.688-20-9.729-35.45-27.921-40.356c-0.446-0.119-1.12-0.424-1.567-0.541\r\n\t\tc-12.004-3.424-21.012-7.653-21.012-20.781V78.227C302.5,52.691,281.976,32,256.49,32c-25.466,0-45.99,20.691-45.99,46.227v20.595\r\n\t\tc0,13.128-8.592,17.169-20.597,20.593c-0.447,0.117-0.8,0.61-1.266,0.729C170.446,125.05,162.927,140.5,161,160.5z M256.99,64.395\r\n\t\tc7.615,0,13.791,6.195,13.791,13.832c0,7.654-6.176,13.85-13.791,13.85c-7.614,0-13.772-6.195-13.772-13.85\r\n\t\tC243.218,70.59,249.376,64.395,256.99,64.395z"},"children":[{"name":"path","attribs":{"d":"M161,160.5h192c-1.688-20-9.729-35.45-27.921-40.356c-0.446-0.119-1.12-0.424-1.567-0.541\r\n\t\tc-12.004-3.424-21.012-7.653-21.012-20.781V78.227C302.5,52.691,281.976,32,256.49,32c-25.466,0-45.99,20.691-45.99,46.227v20.595\r\n\t\tc0,13.128-8.592,17.169-20.597,20.593c-0.447,0.117-0.8,0.61-1.266,0.729C170.446,125.05,162.927,140.5,161,160.5z M256.99,64.395\r\n\t\tc7.615,0,13.791,6.195,13.791,13.832c0,7.654-6.176,13.85-13.791,13.85c-7.614,0-13.772-6.195-13.772-13.85\r\n\t\tC243.218,70.59,249.376,64.395,256.99,64.395z"},"children":[]}]},{"name":"path","attribs":{"d":"M405.611,63.5H331.5v13.988c0,10.583,9.193,19.012,19.507,19.012h37.212c6.667,0,12.099,5.435,12.44,12.195l0.085,327.1\r\n\t\tc-0.322,6.432-5.303,11.546-11.514,12.017l-264.418,0.031c-6.211-0.471-11.149-5.695-11.472-12.126l-0.085-327.014\r\n\t\tc0.322-6.761,5.858-12.203,12.506-12.203h37.231c10.313,0,18.507-8.429,18.507-19.012V63.5h-73.131\r\n\t\tC93.25,63.5,80.5,76.058,80.5,91.575v360.38c0,15.502,12.75,28.545,27.869,28.545H256.99h148.621\r\n\t\tc15.138,0,26.889-13.043,26.889-28.545V91.575C432.5,76.058,420.749,63.5,405.611,63.5z"},"children":[{"name":"path","attribs":{"d":"M405.611,63.5H331.5v13.988c0,10.583,9.193,19.012,19.507,19.012h37.212c6.667,0,12.099,5.435,12.44,12.195l0.085,327.1\r\n\t\tc-0.322,6.432-5.303,11.546-11.514,12.017l-264.418,0.031c-6.211-0.471-11.149-5.695-11.472-12.126l-0.085-327.014\r\n\t\tc0.322-6.761,5.858-12.203,12.506-12.203h37.231c10.313,0,18.507-8.429,18.507-19.012V63.5h-73.131\r\n\t\tC93.25,63.5,80.5,76.058,80.5,91.575v360.38c0,15.502,12.75,28.545,27.869,28.545H256.99h148.621\r\n\t\tc15.138,0,26.889-13.043,26.889-28.545V91.575C432.5,76.058,420.749,63.5,405.611,63.5z"},"children":[]}]},{"name":"rect","attribs":{"x":"144.5","y":"192.5","width":"112","height":"32"},"children":[{"name":"rect","attribs":{"x":"144.5","y":"192.5","width":"112","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144.5","y":"384.5","width":"160","height":"32"},"children":[{"name":"rect","attribs":{"x":"144.5","y":"384.5","width":"160","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144.5","y":"320.5","width":"129","height":"32"},"children":[{"name":"rect","attribs":{"x":"144.5","y":"320.5","width":"129","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"144.5","y":"256.5","width":"208","height":"32"},"children":[{"name":"rect","attribs":{"x":"144.5","y":"256.5","width":"208","height":"32"},"children":[]}]}]}]};exports.clipboard=clipboard;var clock={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255.988,32C132.285,32,32,132.298,32,256c0,123.715,100.285,224,223.988,224C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z M391.761,391.765c-10.099,10.098-21.126,18.928-32.886,26.42l-15.946-27.62l-13.856,8\r\n\t\tl15.955,27.636c-24.838,13.03-52.372,20.455-81.027,21.624V416h-16v31.825c-28.656-1.166-56.191-8.59-81.03-21.62l15.958-27.641\r\n\t\tl-13.856-8l-15.949,27.625c-11.761-7.492-22.79-16.324-32.889-26.424c-10.099-10.099-18.93-21.127-26.422-32.889l27.624-15.949\r\n\t\tl-8-13.855L85.796,345.03c-13.03-24.839-20.454-52.374-21.621-81.03H96v-16H64.175c1.167-28.655,8.592-56.19,21.623-81.029\r\n\t\tl27.638,15.958l8-13.856l-27.623-15.948c7.492-11.76,16.322-22.787,26.419-32.885c10.1-10.101,21.129-18.933,32.89-26.426\r\n\t\tl15.949,27.624l13.856-8l-15.958-27.64C191.81,72.765,219.345,65.34,248,64.175V96h16V64.176\r\n\t\tc28.654,1.169,56.188,8.595,81.026,21.626l-15.954,27.634l13.856,8l15.945-27.618c11.76,7.492,22.787,16.323,32.886,26.421\r\n\t\tc10.1,10.099,18.931,21.126,26.424,32.887l-27.619,15.946l8,13.856l27.636-15.956c13.031,24.839,20.457,52.373,21.624,81.027H416\r\n\t\tv16h31.824c-1.167,28.655-8.592,56.189-21.622,81.028l-27.637-15.957l-8,13.856l27.621,15.947\r\n\t\tC410.693,370.637,401.861,381.665,391.761,391.765z"},"children":[{"name":"path","attribs":{"d":"M255.988,32C132.285,32,32,132.298,32,256c0,123.715,100.285,224,223.988,224C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z M391.761,391.765c-10.099,10.098-21.126,18.928-32.886,26.42l-15.946-27.62l-13.856,8\r\n\t\tl15.955,27.636c-24.838,13.03-52.372,20.455-81.027,21.624V416h-16v31.825c-28.656-1.166-56.191-8.59-81.03-21.62l15.958-27.641\r\n\t\tl-13.856-8l-15.949,27.625c-11.761-7.492-22.79-16.324-32.889-26.424c-10.099-10.099-18.93-21.127-26.422-32.889l27.624-15.949\r\n\t\tl-8-13.855L85.796,345.03c-13.03-24.839-20.454-52.374-21.621-81.03H96v-16H64.175c1.167-28.655,8.592-56.19,21.623-81.029\r\n\t\tl27.638,15.958l8-13.856l-27.623-15.948c7.492-11.76,16.322-22.787,26.419-32.885c10.1-10.101,21.129-18.933,32.89-26.426\r\n\t\tl15.949,27.624l13.856-8l-15.958-27.64C191.81,72.765,219.345,65.34,248,64.175V96h16V64.176\r\n\t\tc28.654,1.169,56.188,8.595,81.026,21.626l-15.954,27.634l13.856,8l15.945-27.618c11.76,7.492,22.787,16.323,32.886,26.421\r\n\t\tc10.1,10.099,18.931,21.126,26.424,32.887l-27.619,15.946l8,13.856l27.636-15.956c13.031,24.839,20.457,52.373,21.624,81.027H416\r\n\t\tv16h31.824c-1.167,28.655-8.592,56.189-21.622,81.028l-27.637-15.957l-8,13.856l27.621,15.947\r\n\t\tC410.693,370.637,401.861,381.665,391.761,391.765z"},"children":[]}]},{"name":"path","attribs":{"d":"M400,241H284.268c-2.818-5.299-7.083-9.708-12.268-12.708V160h-32v68.292c-9.562,5.534-16,15.866-16,27.708\r\n\t\tc0,17.673,14.327,32,32,32c11.425,0,21.444-5.992,27.106-15H400V241z"},"children":[{"name":"path","attribs":{"d":"M400,241H284.268c-2.818-5.299-7.083-9.708-12.268-12.708V160h-32v68.292c-9.562,5.534-16,15.866-16,27.708\r\n\t\tc0,17.673,14.327,32,32,32c11.425,0,21.444-5.992,27.106-15H400V241z"},"children":[]}]}]}]};exports.clock=clock;var closeCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,33C132.3,33,32,133.3,32,257c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,133.3,379.7,33,256,33z\r\n\t\t M364.3,332.5c1.5,1.5,2.3,3.5,2.3,5.6c0,2.1-0.8,4.2-2.3,5.6l-21.6,21.7c-1.6,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3L256,289.8\r\n\t\tl-75.4,75.7c-1.5,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3l-21.6-21.7c-1.5-1.5-2.3-3.5-2.3-5.6c0-2.1,0.8-4.2,2.3-5.6l75.7-76\r\n\t\tl-75.9-75c-3.1-3.1-3.1-8.2,0-11.3l21.6-21.7c1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l75.7,74.7l75.7-74.7\r\n\t\tc1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l21.6,21.7c3.1,3.1,3.1,8.2,0,11.3l-75.9,75L364.3,332.5z"},"children":[{"name":"path","attribs":{"d":"M256,33C132.3,33,32,133.3,32,257c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,133.3,379.7,33,256,33z\r\n\t\t M364.3,332.5c1.5,1.5,2.3,3.5,2.3,5.6c0,2.1-0.8,4.2-2.3,5.6l-21.6,21.7c-1.6,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3L256,289.8\r\n\t\tl-75.4,75.7c-1.5,1.6-3.6,2.3-5.6,2.3c-2,0-4.1-0.8-5.6-2.3l-21.6-21.7c-1.5-1.5-2.3-3.5-2.3-5.6c0-2.1,0.8-4.2,2.3-5.6l75.7-76\r\n\t\tl-75.9-75c-3.1-3.1-3.1-8.2,0-11.3l21.6-21.7c1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l75.7,74.7l75.7-74.7\r\n\t\tc1.5-1.5,3.5-2.3,5.6-2.3c2.1,0,4.1,0.8,5.6,2.3l21.6,21.7c3.1,3.1,3.1,8.2,0,11.3l-75.9,75L364.3,332.5z"},"children":[]}]}]}]};exports.closeCircled=closeCircled;var closeRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M437.5,386.6L306.9,256l130.6-130.6c14.1-14.1,14.1-36.8,0-50.9c-14.1-14.1-36.8-14.1-50.9,0L256,205.1L125.4,74.5\r\n\tc-14.1-14.1-36.8-14.1-50.9,0c-14.1,14.1-14.1,36.8,0,50.9L205.1,256L74.5,386.6c-14.1,14.1-14.1,36.8,0,50.9\r\n\tc14.1,14.1,36.8,14.1,50.9,0L256,306.9l130.6,130.6c14.1,14.1,36.8,14.1,50.9,0C451.5,423.4,451.5,400.6,437.5,386.6z"},"children":[]}]};exports.closeRound=closeRound;var close={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M443.6,387.1L312.4,255.4l131.5-130c5.4-5.4,5.4-14.2,0-19.6l-37.4-37.6c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4\r\n\tL256,197.8L124.9,68.3c-2.6-2.6-6.1-4-9.8-4c-3.7,0-7.2,1.5-9.8,4L68,105.9c-5.4,5.4-5.4,14.2,0,19.6l131.5,130L68.4,387.1\r\n\tc-2.6,2.6-4.1,6.1-4.1,9.8c0,3.7,1.4,7.2,4.1,9.8l37.4,37.6c2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1L256,313.1l130.7,131.1\r\n\tc2.7,2.7,6.2,4.1,9.8,4.1c3.5,0,7.1-1.3,9.8-4.1l37.4-37.6c2.6-2.6,4.1-6.1,4.1-9.8C447.7,393.2,446.2,389.7,443.6,387.1z"},"children":[]}]};exports.close=close;var closedCaptioning={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M0,64v384h512V64H0z M464,255.825c0.045,26.724-1.547,47.143-3.797,80.223S441,392.5,401.097,396.168\r\n\t\t\tC361.201,399.835,305.369,400.12,256,400c-49,0.12-105.198-0.165-145.094-3.832c-39.903-3.668-56.855-27.04-59.105-60.12\r\n\t\t\ts-3.841-53.499-3.796-80.223c-0.045-26.725,0.095-44.124,3.798-80.224s23.01-56.267,59.106-59.934S201.842,112,248.704,112\r\n\t\t\tc2.431,0,5.296,0,7.296,0c2.437,0,4.871,0,7.302,0c46.862,0,101.698,0,137.795,3.667s55.403,23.833,59.106,59.934\r\n\t\t\tS464.045,229.1,464,255.825z"},"children":[{"name":"path","attribs":{"d":"M0,64v384h512V64H0z M464,255.825c0.045,26.724-1.547,47.143-3.797,80.223S441,392.5,401.097,396.168\r\n\t\t\tC361.201,399.835,305.369,400.12,256,400c-49,0.12-105.198-0.165-145.094-3.832c-39.903-3.668-56.855-27.04-59.105-60.12\r\n\t\t\ts-3.841-53.499-3.796-80.223c-0.045-26.725,0.095-44.124,3.798-80.224s23.01-56.267,59.106-59.934S201.842,112,248.704,112\r\n\t\t\tc2.431,0,5.296,0,7.296,0c2.437,0,4.871,0,7.302,0c46.862,0,101.698,0,137.795,3.667s55.403,23.833,59.106,59.934\r\n\t\t\tS464.045,229.1,464,255.825z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M372,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C418.486,327.537,424.666,307,424.666,280H372C372,280,372,282.876,372,283.846z"},"children":[{"name":"path","attribs":{"d":"M372,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C418.486,327.537,424.666,307,424.666,280H372C372,280,372,282.876,372,283.846z"},"children":[]}]},{"name":"path","attribs":{"d":"M195,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C241.486,327.537,247.666,307,247.666,280H195C195,280,195,282.876,195,283.846z"},"children":[{"name":"path","attribs":{"d":"M195,283.846v0.766c0,18.639-11.581,29.566-27.003,29.566c-15.418,0-25.808-12.309-27.284-29.566\r\n\t\t\tc0,0-1.335-9.078-1.335-27.298s1.546-29.759,1.546-29.759c2.711-19.473,12.188-29.566,27.607-29.566\r\n\t\t\tc15.367,0,27.584,13.262,27.584,33.388c0.023,0.086,0.01,0.624,0.01,0.624h51.541c0-25-6.309-47.556-18.92-61.746\r\n\t\t\tc-12.617-14.183-31.403-21.273-56.369-21.273c-12.483,0-23.93,1.654-34.33,4.942c-10.404,3.295-19.376,9.062-26.916,17.291\r\n\t\t\tc-7.545,8.234-13.397,19.254-17.555,33.059c-4.162,13.809-6.242,31.224-6.242,52.247c0,20.52,1.688,37.684,5.072,51.488\r\n\t\t\tc3.377,13.811,8.388,24.83,15.018,33.059c6.632,8.234,14.953,13.935,24.967,17.1c10.01,3.163,21.779,4.748,35.304,4.748\r\n\t\t\tc28.604,0,49.089-7.258,61.443-21.318C241.486,327.537,247.666,307,247.666,280H195C195,280,195,282.876,195,283.846z"},"children":[]}]}]}]}]}]};exports.closedCaptioning=closedCaptioning;var cloud={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M398.1,233.2c0-1.2,0.2-2.4,0.2-3.6c0-65-51.8-117.6-115.7-117.6c-46.1,0-85.7,27.4-104.3,67c-8.1-4.1-17.2-6.5-26.8-6.5\r\n\tc-29.5,0-54.1,21.9-58.8,50.5C57.3,235.2,32,269.1,32,309c0,50.2,40.1,90.9,89.5,91h276.7l0,0c45.2-0.2,81.7-37.5,81.7-83.4\r\n\tC480,270.6,443.3,233.3,398.1,233.2z"},"children":[]}]};exports.cloud=cloud;var codeDownload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M330.967,284.104c6.48-6.467,6.48-16.951,0-23.422c-6.48-6.467-17.342-6.467-23.823,0L272,295.432V176.58\r\n\t\t\t\tc0-9.151-6.839-16.56-15.999-16.56c-9.162,0-16.001,7.408-16.001,16.56v118.852l-35.005-34.75\r\n\t\t\t\tc-6.481-6.467-17.095-6.467-23.573,0c-6.482,6.471-6.539,16.955-0.057,23.422l63.07,63.023c0.02,0.02,0.028,0.037,0.05,0.057\r\n\t\t\t\tc0.725,0.716,1.513,1.367,2.368,1.945c0.102,0.067,0.2,0.134,0.302,0.2c0.322,0.206,0.651,0.403,0.99,0.587\r\n\t\t\t\tc0.117,0.064,0.231,0.133,0.35,0.193c0.421,0.218,0.849,0.423,1.292,0.605c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc0.405,0.167,0.817,0.308,1.233,0.442c0.112,0.037,0.222,0.085,0.335,0.118c0.151,0.047,0.307,0.074,0.461,0.115\r\n\t\t\t\tc1.424,0.385,2.872,0.588,4.315,0.588c1.442,0,2.89-0.203,4.312-0.588c0.153-0.041,0.312-0.068,0.464-0.115\r\n\t\t\t\tc0.113-0.033,0.224-0.081,0.335-0.118c0.416-0.135,0.829-0.275,1.233-0.442c0.002-0.001,0.004-0.001,0.007-0.002\r\n\t\t\t\tc0.441-0.183,0.87-0.387,1.289-0.604c0.122-0.064,0.24-0.133,0.36-0.198c0.332-0.185,0.658-0.376,0.975-0.579\r\n\t\t\t\tc0.109-0.069,0.217-0.14,0.323-0.212c0.408-0.274,0.806-0.562,1.184-0.872c0.004-0.002,0.007-0.004,0.011-0.006\r\n\t\t\t\tc0.406-0.332,0.791-0.684,1.162-1.051c0.024-0.022,0.051-0.043,0.074-0.066L330.967,284.104z"},"children":[{"name":"path","attribs":{"d":"M330.967,284.104c6.48-6.467,6.48-16.951,0-23.422c-6.48-6.467-17.342-6.467-23.823,0L272,295.432V176.58\r\n\t\t\t\tc0-9.151-6.839-16.56-15.999-16.56c-9.162,0-16.001,7.408-16.001,16.56v118.852l-35.005-34.75\r\n\t\t\t\tc-6.481-6.467-17.095-6.467-23.573,0c-6.482,6.471-6.539,16.955-0.057,23.422l63.07,63.023c0.02,0.02,0.028,0.037,0.05,0.057\r\n\t\t\t\tc0.725,0.716,1.513,1.367,2.368,1.945c0.102,0.067,0.2,0.134,0.302,0.2c0.322,0.206,0.651,0.403,0.99,0.587\r\n\t\t\t\tc0.117,0.064,0.231,0.133,0.35,0.193c0.421,0.218,0.849,0.423,1.292,0.605c0.002,0.001,0.004,0.001,0.006,0.002\r\n\t\t\t\tc0.405,0.167,0.817,0.308,1.233,0.442c0.112,0.037,0.222,0.085,0.335,0.118c0.151,0.047,0.307,0.074,0.461,0.115\r\n\t\t\t\tc1.424,0.385,2.872,0.588,4.315,0.588c1.442,0,2.89-0.203,4.312-0.588c0.153-0.041,0.312-0.068,0.464-0.115\r\n\t\t\t\tc0.113-0.033,0.224-0.081,0.335-0.118c0.416-0.135,0.829-0.275,1.233-0.442c0.002-0.001,0.004-0.001,0.007-0.002\r\n\t\t\t\tc0.441-0.183,0.87-0.387,1.289-0.604c0.122-0.064,0.24-0.133,0.36-0.198c0.332-0.185,0.658-0.376,0.975-0.579\r\n\t\t\t\tc0.109-0.069,0.217-0.14,0.323-0.212c0.408-0.274,0.806-0.562,1.184-0.872c0.004-0.002,0.007-0.004,0.011-0.006\r\n\t\t\t\tc0.406-0.332,0.791-0.684,1.162-1.051c0.024-0.022,0.051-0.043,0.074-0.066L330.967,284.104z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[]}]},{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[]}]}]}]}]}]};exports.codeDownload=codeDownload;var codeWorking={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"184.166","cy":"256.166","r":"24"},"children":[{"name":"circle","attribs":{"cx":"184.166","cy":"256.166","r":"24"},"children":[]}]},{"name":"circle","attribs":{"cx":"256.166","cy":"256.166","r":"24"},"children":[{"name":"circle","attribs":{"cx":"256.166","cy":"256.166","r":"24"},"children":[]}]},{"name":"circle","attribs":{"cx":"328.166","cy":"256.166","r":"24"},"children":[{"name":"circle","attribs":{"cx":"328.166","cy":"256.166","r":"24"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\t\tc9.371,9.372,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[]}]},{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\t\tc-9.371,9.372-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[]}]}]}]}]}]};exports.codeWorking=codeWorking;var code={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\tc9.371,9.373,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[{"name":"path","attribs":{"d":"M168,392c-6.143,0-12.285-2.344-16.971-7.029l-112-112c-9.373-9.373-9.373-24.569,0-33.941l112-112\r\n\t\tc9.373-9.372,24.568-9.372,33.941,0c9.371,9.372,9.371,24.568,0,33.941L89.941,256l95.029,95.029\r\n\t\tc9.371,9.373,9.371,24.568,0,33.941C180.283,389.656,174.143,392,168,392z"},"children":[]}]},{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\tc-9.371,9.373-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[{"name":"path","attribs":{"d":"M344,392c6.143,0,12.285-2.344,16.971-7.029l112-112c9.373-9.373,9.373-24.569,0-33.941l-112-112\r\n\t\tc-9.373-9.372-24.568-9.372-33.941,0c-9.371,9.372-9.371,24.568,0,33.941L422.059,256l-95.029,95.029\r\n\t\tc-9.371,9.373-9.371,24.568,0,33.941C331.717,389.656,337.857,392,344,392z"},"children":[]}]}]}]};exports.code=code;var coffee={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M383.1,257.4c0.6-5.4,0.9-10,0.9-13.8c0-19.6-3.3-19.7-16-19.7h-75.5c7.3-12,11.5-24.4,11.5-37c0-37.9-57.3-56.4-57.3-88\r\n\tc0-11.7,5.1-21.3,9.3-34.9c-26.5,7-47.4,33.5-47.4,61.6c0,48.3,56.3,48.7,56.3,84.8c0,4.5-1.4,8.5-2.1,13.5h-55.9\r\n\tc0.8-3,1.3-6.2,1.3-9.3c0-22.8-39.1-33.9-39.1-52.8c0-7,1-12.8,3.2-21c-12.9,5.1-28.3,20-28.3,36.8c0,26.7,31.9,29.3,36.8,46.3H80\r\n\tc-12.7,0-16,0.1-16,19.7c0,19.6,7.7,61.3,28.3,111c20.6,49.7,44.4,71.6,61.2,86.2l0.1-0.2c5.1,4.6,11.8,7.3,19.2,7.3h102.4\r\n\tc7.4,0,14.1-2.7,19.2-7.3l0.1,0.2c9-7.8,20-17.8,31.4-32.9c4.7,2,9.8,3.7,15.4,5c8.4,2,16.8,3,24.8,3c24,0,45.6-9.2,60.8-25.8\r\n\tc13.4-14.6,21.1-34.4,21.1-54.2C448,297,420,264.5,383.1,257.4z M366.1,384.2c-8.6,0-15.6-1.2-22.1-4.2c4-8,7.9-15.9,11.7-25.1\r\n\tc10.1-24.4,17.1-47,21.6-65.8c22,4.3,38.7,23.8,38.7,47.1C416,358.9,398.8,384.2,366.1,384.2z"},"children":[]}]};exports.coffee=coffee;var compass={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32c-39,0-75.6,10-107.5,27.4C136.9,42.9,117.7,32,96,32c-35.3,0-64,28.7-64,64c0,21.7,10.9,40.9,27.4,52.5\r\n\t\t\tC42,180.4,32,217,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z M64,96\r\n\t\t\tc0-17.7,14.3-32,32-32c10.5,0,19.8,5,25.6,12.8c-17,12.7-32.1,27.8-44.8,44.8C69,115.8,64,106.5,64,96z M391.8,391.8\r\n\t\t\tC355.5,428,307.3,448,256,448c-51.3,0-99.5-20-135.8-56.2C84,355.5,64,307.3,64,256c0-51.3,20-99.5,56.2-135.8\r\n\t\t\tC156.5,84,204.7,64,256,64c51.3,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z"},"children":[{"name":"path","attribs":{"d":"M256,32c-39,0-75.6,10-107.5,27.4C136.9,42.9,117.7,32,96,32c-35.3,0-64,28.7-64,64c0,21.7,10.9,40.9,27.4,52.5\r\n\t\t\tC42,180.4,32,217,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z M64,96\r\n\t\t\tc0-17.7,14.3-32,32-32c10.5,0,19.8,5,25.6,12.8c-17,12.7-32.1,27.8-44.8,44.8C69,115.8,64,106.5,64,96z M391.8,391.8\r\n\t\t\tC355.5,428,307.3,448,256,448c-51.3,0-99.5-20-135.8-56.2C84,355.5,64,307.3,64,256c0-51.3,20-99.5,56.2-135.8\r\n\t\t\tC156.5,84,204.7,64,256,64c51.3,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M352,128c0,0-101.6,83.7-120,104s-72,152-72,152s102.4-82.3,120-104S352,128,352,128z"},"children":[{"name":"path","attribs":{"d":"M352,128c0,0-101.6,83.7-120,104s-72,152-72,152s102.4-82.3,120-104S352,128,352,128z"},"children":[]}]}]}]};exports.compass=compass;var compose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M442.8,99.6l-30.4-30.4c-7-6.9-18.2-6.9-25.1,0L355.5,101l55.5,55.5l31.8-31.7C449.7,117.7,449.7,106.5,442.8,99.6z"},"children":[{"name":"path","attribs":{"d":"M442.8,99.6l-30.4-30.4c-7-6.9-18.2-6.9-25.1,0L355.5,101l55.5,55.5l31.8-31.7C449.7,117.7,449.7,106.5,442.8,99.6z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"346.1,110.5 174.1,288 160,352 224,337.9 400.6,164.9 \t\t"},"children":[{"name":"polygon","attribs":{"points":"346.1,110.5 174.1,288 160,352 224,337.9 400.6,164.9 \t\t"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M384,256v150c0,5.1-3.9,10.1-9.2,10.1s-269-0.1-269-0.1c-5.6,0-9.8-5.4-9.8-10s0-268,0-268c0-5,4.7-10,10.6-10H256l32-32\r\n\t\tH87.4c-13,0-23.4,10.3-23.4,23.3v305.3c0,12.9,10.5,23.4,23.4,23.4h305.3c12.9,0,23.3-10.5,23.3-23.4V224L384,256z"},"children":[{"name":"path","attribs":{"d":"M384,256v150c0,5.1-3.9,10.1-9.2,10.1s-269-0.1-269-0.1c-5.6,0-9.8-5.4-9.8-10s0-268,0-268c0-5,4.7-10,10.6-10H256l32-32\r\n\t\tH87.4c-13,0-23.4,10.3-23.4,23.3v305.3c0,12.9,10.5,23.4,23.4,23.4h305.3c12.9,0,23.3-10.5,23.3-23.4V224L384,256z"},"children":[]}]}]}]};exports.compose=compose;var connectionBars={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"80","y":"352","width":"64","height":"64"},"children":[{"name":"rect","attribs":{"x":"80","y":"352","width":"64","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"288","width":"64","height":"128"},"children":[{"name":"rect","attribs":{"x":"176","y":"288","width":"64","height":"128"},"children":[]}]},{"name":"rect","attribs":{"x":"272","y":"192","width":"64","height":"224"},"children":[{"name":"rect","attribs":{"x":"272","y":"192","width":"64","height":"224"},"children":[]}]},{"name":"rect","attribs":{"x":"368","y":"96","width":"64","height":"320"},"children":[{"name":"rect","attribs":{"x":"368","y":"96","width":"64","height":"320"},"children":[]}]}]}]};exports.connectionBars=connectionBars;var contrast={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t M391.8,391.8C355.5,428,307,448,256,448V64c51,0,99.5,20,135.8,56.2C428,156.5,448,204.7,448,256C448,307.3,428,355.5,391.8,391.8z\r\n\t"},"children":[]}]};exports.contrast=contrast;var crop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"352","y":"432","width":"64","height":"48"},"children":[{"name":"rect","attribs":{"x":"352","y":"432","width":"64","height":"48"},"children":[]}]},{"name":"polygon","attribs":{"points":"416,352 416,96 176,96 176,160 352,160 352,352 160,352 160,32 96,32 96,96 32,96 32,160 96,160 96,416 480,416 \r\n\t\t480,352 \t"},"children":[{"name":"polygon","attribs":{"points":"416,352 416,96 176,96 176,160 352,160 352,352 160,352 160,32 96,32 96,96 32,96 32,160 96,160 96,416 480,416 \r\n\t\t480,352 \t"},"children":[]}]}]}]};exports.crop=crop;var cube={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M467.301,168.084c-1.805,0-3.516,0.329-5.07,0.962l-2.281,1.15l-171.475,88.938l-3.888,1.996c0,0-0.052,0.023-0.052,0.047\r\n\t\tc-7.56,4.668-12.535,12.506-12.535,21.425v185.854c0,6.382,5.649,11.544,12.69,11.544c2.178,0,4.251-0.513,6.065-1.404\r\n\t\tc0.155-0.095,0.363-0.188,0.519-0.282l174.731-92.694l0.259-0.141c8.241-4.504,13.735-12.742,13.735-22.105V179.582\r\n\t\tC480,173.223,474.299,168.084,467.301,168.084z"},"children":[{"name":"path","attribs":{"d":"M467.301,168.084c-1.805,0-3.516,0.329-5.07,0.962l-2.281,1.15l-171.475,88.938l-3.888,1.996c0,0-0.052,0.023-0.052,0.047\r\n\t\tc-7.56,4.668-12.535,12.506-12.535,21.425v185.854c0,6.382,5.649,11.544,12.69,11.544c2.178,0,4.251-0.513,6.065-1.404\r\n\t\tc0.155-0.095,0.363-0.188,0.519-0.282l174.731-92.694l0.259-0.141c8.241-4.504,13.735-12.742,13.735-22.105V179.582\r\n\t\tC480,173.223,474.299,168.084,467.301,168.084z"},"children":[]}]},{"name":"path","attribs":{"d":"M454.273,118.521l-181.7-81.731c0,0-10.659-4.79-16.577-4.79s-16.526,4.79-16.526,4.79L57.614,118.521\r\n\t\tc0,0-7.989,3.292-7.989,9.479c0,6.562,8.3,11.5,8.3,11.5l182.582,96.371l2.902,1.479c3.784,1.687,8.077,2.649,12.587,2.649\r\n\t\tc4.561,0,8.915-0.963,12.742-2.696l2.539-1.315l182.893-96.536c0,0,7.508-4.036,7.508-11.453\r\n\t\tC461.678,121.5,454.273,118.521,454.273,118.521z"},"children":[{"name":"path","attribs":{"d":"M454.273,118.521l-181.7-81.731c0,0-10.659-4.79-16.577-4.79s-16.526,4.79-16.526,4.79L57.614,118.521\r\n\t\tc0,0-7.989,3.292-7.989,9.479c0,6.562,8.3,11.5,8.3,11.5l182.582,96.371l2.902,1.479c3.784,1.687,8.077,2.649,12.587,2.649\r\n\t\tc4.561,0,8.915-0.963,12.742-2.696l2.539-1.315l182.893-96.536c0,0,7.508-4.036,7.508-11.453\r\n\t\tC461.678,121.5,454.273,118.521,454.273,118.521z"},"children":[]}]},{"name":"path","attribs":{"d":"M227.466,261.178l-3.992-2.043L52.042,170.197l-2.28-1.15c-1.495-0.634-3.258-0.962-5.071-0.962\r\n\t\tc-6.997,0-12.69,5.138-12.69,11.497v183.792c0,9.388,5.485,17.602,13.727,22.105l0.208,0.141l174.739,92.694l0,0\r\n\t\tc1.918,1.08,4.199,1.687,6.636,1.687c6.989,0,12.69-5.162,12.69-11.544V282.603C240,273.684,235.024,265.846,227.466,261.178z"},"children":[{"name":"path","attribs":{"d":"M227.466,261.178l-3.992-2.043L52.042,170.197l-2.28-1.15c-1.495-0.634-3.258-0.962-5.071-0.962\r\n\t\tc-6.997,0-12.69,5.138-12.69,11.497v183.792c0,9.388,5.485,17.602,13.727,22.105l0.208,0.141l174.739,92.694l0,0\r\n\t\tc1.918,1.08,4.199,1.687,6.636,1.687c6.989,0,12.69-5.162,12.69-11.544V282.603C240,273.684,235.024,265.846,227.466,261.178z"},"children":[]}]}]}]};exports.cube=cube;var disc={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,158.9c-53.7,0-97.2,43.5-97.2,97.2c0,53.7,43.5,97.1,97.2,97.1c53.7,0,97.2-43.5,97.2-97.1\r\n\t\tC353.2,202.4,309.7,158.9,256,158.9z M256,299.5c-24,0-43.5-19.5-43.5-43.5c0-24,19.5-43.5,43.5-43.5c24,0,43.5,19.5,43.5,43.5\r\n\t\tC299.5,280,280,299.5,256,299.5z"},"children":[{"name":"path","attribs":{"d":"M256,158.9c-53.7,0-97.2,43.5-97.2,97.2c0,53.7,43.5,97.1,97.2,97.1c53.7,0,97.2-43.5,97.2-97.1\r\n\t\tC353.2,202.4,309.7,158.9,256,158.9z M256,299.5c-24,0-43.5-19.5-43.5-43.5c0-24,19.5-43.5,43.5-43.5c24,0,43.5,19.5,43.5,43.5\r\n\t\tC299.5,280,280,299.5,256,299.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224s224-100.3,224-224C480,132.3,379.7,32,256,32z M256,378.8\r\n\t\tc-67.8,0-122.8-55-122.8-122.8c0-67.8,55-122.8,122.8-122.8c67.8,0,122.8,55,122.8,122.8C378.8,323.8,323.8,378.8,256,378.8z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224s224-100.3,224-224C480,132.3,379.7,32,256,32z M256,378.8\r\n\t\tc-67.8,0-122.8-55-122.8-122.8c0-67.8,55-122.8,122.8-122.8c67.8,0,122.8,55,122.8,122.8C378.8,323.8,323.8,378.8,256,378.8z"},"children":[]}]}]}]};exports.disc=disc;var documentText={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M398.6,169.2c-0.9-2.2-2-4.3-3.5-6.1l-83.8-91.7c-1.9-2.1-4.2-3.6-6.7-4.9c-2.9-1.5-6.1-2.1-9.5-2.1H135.2\r\n\t\tc-12.4,0-22.7,10.6-22.7,23.9v335.2c0,13.4,10.3,24.9,22.7,24.9h243.1c12.4,0,22.2-11.5,22.2-24.9V179.4\r\n\t\tC400.5,175.8,400,172.3,398.6,169.2z M160.5,178.6c0-1.5,1.8-2.1,3.4-2.1h70.8c1.6,0,2.8,0.6,2.8,2.1v10.8c0,1.4-1.1,3.1-2.8,3.1\r\n\t\th-70.8c-1.6,0-3.4-1.7-3.4-3.1V178.6z M160.5,306.6c0-1.5,1.8-2.1,3.4-2.1h122.2c1.6,0,2.4,0.6,2.4,2.1v10.8c0,1.4-0.7,3.1-2.4,3.1\r\n\t\tH163.9c-1.6,0-3.4-1.7-3.4-3.1V306.6z M320.5,381.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1v-10.8\r\n\t\tc0-1.5,1.8-2.1,3.4-2.1h154.2c1.6,0,2.4,0.6,2.4,2.1V381.4z M352.5,253.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1\r\n\t\tv-10.8c0-1.5,1.8-2.1,3.4-2.1h186.2c1.6,0,2.4,0.6,2.4,2.1V253.4z M305.6,177.5c-5.6,0-11.1-5.2-11.1-11.3v-66l71.2,77.3H305.6z"},"children":[{"name":"path","attribs":{"d":"M398.6,169.2c-0.9-2.2-2-4.3-3.5-6.1l-83.8-91.7c-1.9-2.1-4.2-3.6-6.7-4.9c-2.9-1.5-6.1-2.1-9.5-2.1H135.2\r\n\t\tc-12.4,0-22.7,10.6-22.7,23.9v335.2c0,13.4,10.3,24.9,22.7,24.9h243.1c12.4,0,22.2-11.5,22.2-24.9V179.4\r\n\t\tC400.5,175.8,400,172.3,398.6,169.2z M160.5,178.6c0-1.5,1.8-2.1,3.4-2.1h70.8c1.6,0,2.8,0.6,2.8,2.1v10.8c0,1.4-1.1,3.1-2.8,3.1\r\n\t\th-70.8c-1.6,0-3.4-1.7-3.4-3.1V178.6z M160.5,306.6c0-1.5,1.8-2.1,3.4-2.1h122.2c1.6,0,2.4,0.6,2.4,2.1v10.8c0,1.4-0.7,3.1-2.4,3.1\r\n\t\tH163.9c-1.6,0-3.4-1.7-3.4-3.1V306.6z M320.5,381.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1v-10.8\r\n\t\tc0-1.5,1.8-2.1,3.4-2.1h154.2c1.6,0,2.4,0.6,2.4,2.1V381.4z M352.5,253.4c0,1.4-0.7,3.1-2.4,3.1H163.9c-1.6,0-3.4-1.7-3.4-3.1\r\n\t\tv-10.8c0-1.5,1.8-2.1,3.4-2.1h186.2c1.6,0,2.4,0.6,2.4,2.1V253.4z M305.6,177.5c-5.6,0-11.1-5.2-11.1-11.3v-66l71.2,77.3H305.6z"},"children":[]}]}]}]};exports.documentText=documentText;var documentIcon={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M399.3,168.9c-0.7-2.9-2-5-3.5-6.8l-83.7-91.7c-1.9-2.1-4.1-3.1-6.6-4.4c-2.9-1.5-6.1-1.6-9.4-1.6H136.2\r\n\tc-12.4,0-23.7,9.6-23.7,22.9v335.2c0,13.4,11.3,25.9,23.7,25.9h243.1c12.4,0,21.2-12.5,21.2-25.9V178.4\r\n\tC400.5,174.8,400.1,172.2,399.3,168.9z M305.5,111l58,63.5h-58V111z M144.5,416.5v-320h129v81.7c0,14.8,13.4,28.3,28.1,28.3h66.9\r\n\tv210H144.5z"},"children":[]}]};exports.documentIcon=documentIcon;var drag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"y":"144","width":"512","height":"32"},"children":[{"name":"rect","attribs":{"y":"144","width":"512","height":"32"},"children":[]}]},{"name":"rect","attribs":{"y":"240","width":"512","height":"32"},"children":[{"name":"rect","attribs":{"y":"240","width":"512","height":"32"},"children":[]}]},{"name":"rect","attribs":{"y":"336","width":"512","height":"32"},"children":[{"name":"rect","attribs":{"y":"336","width":"512","height":"32"},"children":[]}]}]}]};exports.drag=drag;var earth={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M357.275,125.525c-2.209-3.986-9.498-11.837-13.977-13.325c-5.979-0.921-2.398,4.413-2.398,6.7\r\n\t\tc-1.543,1.157-3.941,2.454-5.102,4c-0.699,0.6,1.704,6.103,6.337,4.335s1.964,1.799,5.164,8.865s9.607,7.207,12.49,5.067\r\n\t\tC363.444,138.455,359.286,129.155,357.275,125.525z"},"children":[{"name":"path","attribs":{"d":"M357.275,125.525c-2.209-3.986-9.498-11.837-13.977-13.325c-5.979-0.921-2.398,4.413-2.398,6.7\r\n\t\tc-1.543,1.157-3.941,2.454-5.102,4c-0.699,0.6,1.704,6.103,6.337,4.335s1.964,1.799,5.164,8.865s9.607,7.207,12.49,5.067\r\n\t\tC363.444,138.455,359.286,129.155,357.275,125.525z"},"children":[]}]},{"name":"path","attribs":{"d":"M375.8,170.6c-0.001,0.006-0.004,0.011-0.005,0.017C375.795,170.629,375.797,170.629,375.8,170.6z"},"children":[{"name":"path","attribs":{"d":"M375.8,170.6c-0.001,0.006-0.004,0.011-0.005,0.017C375.795,170.629,375.797,170.629,375.8,170.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M434.6,197.1C435,197.1,432.8,196.7,434.6,197.1L434.6,197.1z"},"children":[{"name":"path","attribs":{"d":"M434.6,197.1C435,197.1,432.8,196.7,434.6,197.1L434.6,197.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.701,100.3,224,224,224c123.701,0,224-100.299,224-224C480,132.3,379.701,32,256,32\r\n\t\tz M173.399,429.424c-5.515-3.133-9.374-7.56-10.961-15.929c-3.947-20.808-0.303-32.067,17.962-44.245\r\n\t\tc8.604-5.736,10.022-12.672,16.9-19.55c1.685-2.14,6.211-10.374,9.2-10.8c3.637-0.779,13.709-2.527,15.7-6.5\r\n\t\tc3.79-5.146,12.127-27.398,15.8-29.602c5.997-3.925,14.419-15.96,8.3-23.1c-7.021-8.643-16.799-8.766-25.9-13.301\r\n\t\tc-8.015-4.008-11.574-22.281-17.7-28.601c-11.912-12.136-29.999-19.199-45-26.7c-8.116-3.25-7.344-4.256-13.7,2.1\r\n\t\tc-8.162,8.162-20.093-2.067-21.3-10.5c-0.09-2.802-3.296-18.216-1.4-19.4c17.956-11.225-8.328-8.64-10.5-13.8\r\n\t\tc-5.355-14.993,13.008-26.86,25.4-28.1c13.885-1.738,16.784,21.895,22.1,19.9c2.556-1.276,2.566-12.394,2.9-14.8\r\n\t\tc1.267-8.029,3.588-9.273,11.4-12.175c9.098-3.379,16.063-7.617,25.7-9.225c11.006-3.195,20.317-1.533,28.8-8.6\r\n\t\tc3.888-2.915,6.704,1.58,10.4,2.4c7.999,1.599,9.7-11.1,9.7-15.9c-0.034-4.665,1.265-8.63-4.7-13.6\r\n\t\tc-7.806-6.069-19.029-0.869-25.3,5.4c-7.574,7.035-16.357,6.55-13.8-5.6c0.634-4.433,10.209-9.587,14-12\r\n\t\tc3.7-2.222,5.904,2.522,10.4,1.4c6.579-1.463,9.034,4.735,16.8,4.8c3.233-0.731,14.796-6.881,8.614-19.366\r\n\t\tC254.143,64.021,255.07,64,256,64c1.855,0,3.707,0.034,5.555,0.086c2.805,8.881-5.965,16.443-1.555,27.614\r\n\t\tc8.79,21.475,15.992,3.014,24.7-7c2.849-2.849,4.633-2.211,9.3-3.1c2.896-0.483,7.055-9.27,8.393-11.982\r\n\t\tc20.058,4.956,39.121,13.127,56.567,24.255c-7.447,0.792-9.348-1.396-9.234,7.377c0.042,3.317,0.297,13.319,5.274,14.15\r\n\t\tc8.277,0.975,6.781,6.832,14.551,7.85c7.443,0.976,2.816,7.553,5.851,14.05c3.393,10.227-19.806,13.302-24.302,14.8\r\n\t\tc-13.64,4.554,6.34,24.41,15.2,22.3c2.817-0.704,12.215-1.902,12.867-5.067c-0.011-0.323-1.836-11.012-0.867-12.233\r\n\t\tc1.533-1.934,5.123-2.946,10.776,0.255c13.374,7.573,20.146,25.7,35.897,29.295c2.146,0.489,5.86-0.15,8.494,2.033\r\n\t\tc2.231,3.015,7.92,8.416,1.131,8.416c-9.017-2.003-13.78,0.859-21.198-4.874c-7.733-5.977-12.543-10.891-22.75-11.076\r\n\t\tc-8.79-0.159-16.68-3.819-25.738-2.35c-5.05,0.819-10.038,2.811-14.912,4.3c-4.617,1.538-5.51,9.765-10.2,10.7\r\n\t\tc-19.467,4.581-15.261,23.169-18.773,37.913c-1.351,5.662-6.025,21.003-0.926,26.087c9.12,8.854,19.783,21.035,33.176,22.963\r\n\t\tc7.206,1.037,22.954-4.576,27.823,2.737c2.062,4.104,7.447-3.03,8.9,0.601c3.663,10.988-4.263,18.186-4.337,28.551\r\n\t\tc-0.11,15.203,9.178,20.57-3.263,34.148c-13.642,13.607-4.333,30.788-11.9,47c-4.042,8.337-4.808,19.894-10.872,23.777\r\n\t\tc-13.321,8.532-27.7,15.399-42.714,20.384c-26.627,8.838-55.155,11.672-83.017,8.456c-14.619-1.688-29.041-5.057-42.88-10.065\r\n\t\tc-3.769-1.363-7.28-2.505-10.472-3.704C178.143,431.619,175.759,430.55,173.399,429.424z M131.699,402.329\r\n\t\tc-0.468-0.397-0.935-0.796-1.399-1.198c-3.444-2.992-6.802-6.113-10.06-9.371c-3.388-3.388-6.634-6.881-9.734-10.471\r\n\t\tc-0.035-0.041-0.07-0.082-0.105-0.123c-0.637-0.738-1.257-1.486-1.882-2.234C56.834,316.471,49.259,225.004,92.6,155.1\r\n\t\tc6.078,6.078-4.101,18.024,7.5,26c5.124,3.606,10.021,2.159,9,8.8c-0.993,6.449,5.355,6.335,6.3,12\r\n\t\tc2.842,12.429,19.207,18.642,9.9,32.6c-9.118,12.625-16.992,26.729-10.1,42.8c2.254,5.86,7.919,11.858,12.222,16.244\r\n\t\tc7.813,7.966,7.377,3.188,7.377,13.256c-0.156,4.373,5.261,8.897,4.7,11.7c-1.001,8.011-2.904,15.93-3.9,23.9\r\n\t\tc-1.792,28.638-0.129,56.662,21.3,78.1c-7.969-4.806-15.636-10.249-22.968-16.29C133.183,403.591,132.44,402.961,131.699,402.329z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.701,100.3,224,224,224c123.701,0,224-100.299,224-224C480,132.3,379.701,32,256,32\r\n\t\tz M173.399,429.424c-5.515-3.133-9.374-7.56-10.961-15.929c-3.947-20.808-0.303-32.067,17.962-44.245\r\n\t\tc8.604-5.736,10.022-12.672,16.9-19.55c1.685-2.14,6.211-10.374,9.2-10.8c3.637-0.779,13.709-2.527,15.7-6.5\r\n\t\tc3.79-5.146,12.127-27.398,15.8-29.602c5.997-3.925,14.419-15.96,8.3-23.1c-7.021-8.643-16.799-8.766-25.9-13.301\r\n\t\tc-8.015-4.008-11.574-22.281-17.7-28.601c-11.912-12.136-29.999-19.199-45-26.7c-8.116-3.25-7.344-4.256-13.7,2.1\r\n\t\tc-8.162,8.162-20.093-2.067-21.3-10.5c-0.09-2.802-3.296-18.216-1.4-19.4c17.956-11.225-8.328-8.64-10.5-13.8\r\n\t\tc-5.355-14.993,13.008-26.86,25.4-28.1c13.885-1.738,16.784,21.895,22.1,19.9c2.556-1.276,2.566-12.394,2.9-14.8\r\n\t\tc1.267-8.029,3.588-9.273,11.4-12.175c9.098-3.379,16.063-7.617,25.7-9.225c11.006-3.195,20.317-1.533,28.8-8.6\r\n\t\tc3.888-2.915,6.704,1.58,10.4,2.4c7.999,1.599,9.7-11.1,9.7-15.9c-0.034-4.665,1.265-8.63-4.7-13.6\r\n\t\tc-7.806-6.069-19.029-0.869-25.3,5.4c-7.574,7.035-16.357,6.55-13.8-5.6c0.634-4.433,10.209-9.587,14-12\r\n\t\tc3.7-2.222,5.904,2.522,10.4,1.4c6.579-1.463,9.034,4.735,16.8,4.8c3.233-0.731,14.796-6.881,8.614-19.366\r\n\t\tC254.143,64.021,255.07,64,256,64c1.855,0,3.707,0.034,5.555,0.086c2.805,8.881-5.965,16.443-1.555,27.614\r\n\t\tc8.79,21.475,15.992,3.014,24.7-7c2.849-2.849,4.633-2.211,9.3-3.1c2.896-0.483,7.055-9.27,8.393-11.982\r\n\t\tc20.058,4.956,39.121,13.127,56.567,24.255c-7.447,0.792-9.348-1.396-9.234,7.377c0.042,3.317,0.297,13.319,5.274,14.15\r\n\t\tc8.277,0.975,6.781,6.832,14.551,7.85c7.443,0.976,2.816,7.553,5.851,14.05c3.393,10.227-19.806,13.302-24.302,14.8\r\n\t\tc-13.64,4.554,6.34,24.41,15.2,22.3c2.817-0.704,12.215-1.902,12.867-5.067c-0.011-0.323-1.836-11.012-0.867-12.233\r\n\t\tc1.533-1.934,5.123-2.946,10.776,0.255c13.374,7.573,20.146,25.7,35.897,29.295c2.146,0.489,5.86-0.15,8.494,2.033\r\n\t\tc2.231,3.015,7.92,8.416,1.131,8.416c-9.017-2.003-13.78,0.859-21.198-4.874c-7.733-5.977-12.543-10.891-22.75-11.076\r\n\t\tc-8.79-0.159-16.68-3.819-25.738-2.35c-5.05,0.819-10.038,2.811-14.912,4.3c-4.617,1.538-5.51,9.765-10.2,10.7\r\n\t\tc-19.467,4.581-15.261,23.169-18.773,37.913c-1.351,5.662-6.025,21.003-0.926,26.087c9.12,8.854,19.783,21.035,33.176,22.963\r\n\t\tc7.206,1.037,22.954-4.576,27.823,2.737c2.062,4.104,7.447-3.03,8.9,0.601c3.663,10.988-4.263,18.186-4.337,28.551\r\n\t\tc-0.11,15.203,9.178,20.57-3.263,34.148c-13.642,13.607-4.333,30.788-11.9,47c-4.042,8.337-4.808,19.894-10.872,23.777\r\n\t\tc-13.321,8.532-27.7,15.399-42.714,20.384c-26.627,8.838-55.155,11.672-83.017,8.456c-14.619-1.688-29.041-5.057-42.88-10.065\r\n\t\tc-3.769-1.363-7.28-2.505-10.472-3.704C178.143,431.619,175.759,430.55,173.399,429.424z M131.699,402.329\r\n\t\tc-0.468-0.397-0.935-0.796-1.399-1.198c-3.444-2.992-6.802-6.113-10.06-9.371c-3.388-3.388-6.634-6.881-9.734-10.471\r\n\t\tc-0.035-0.041-0.07-0.082-0.105-0.123c-0.637-0.738-1.257-1.486-1.882-2.234C56.834,316.471,49.259,225.004,92.6,155.1\r\n\t\tc6.078,6.078-4.101,18.024,7.5,26c5.124,3.606,10.021,2.159,9,8.8c-0.993,6.449,5.355,6.335,6.3,12\r\n\t\tc2.842,12.429,19.207,18.642,9.9,32.6c-9.118,12.625-16.992,26.729-10.1,42.8c2.254,5.86,7.919,11.858,12.222,16.244\r\n\t\tc7.813,7.966,7.377,3.188,7.377,13.256c-0.156,4.373,5.261,8.897,4.7,11.7c-1.001,8.011-2.904,15.93-3.9,23.9\r\n\t\tc-1.792,28.638-0.129,56.662,21.3,78.1c-7.969-4.806-15.636-10.249-22.968-16.29C133.183,403.591,132.44,402.961,131.699,402.329z"},"children":[]}]}]}]};exports.earth=earth;var easel={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"80","y":"144","width":"352","height":"192"},"children":[{"name":"rect","attribs":{"x":"80","y":"144","width":"352","height":"192"},"children":[]}]},{"name":"path","attribs":{"d":"M464,96H48c-8.837,0-16,7.163-16,16v256c0,8.837,6.932,16,15.768,16H464c8.837,0,16-7.163,16-16V112\r\n\t\tC480,103.163,472.837,96,464,96z M448,352H64V128h384V352z"},"children":[{"name":"path","attribs":{"d":"M464,96H48c-8.837,0-16,7.163-16,16v256c0,8.837,6.932,16,15.768,16H464c8.837,0,16-7.163,16-16V112\r\n\t\tC480,103.163,472.837,96,464,96z M448,352H64V128h384V352z"},"children":[]}]},{"name":"polygon","attribs":{"points":"80,480 112,480 140.147,400 108.835,400 \t"},"children":[{"name":"polygon","attribs":{"points":"80,480 112,480 140.147,400 108.835,400 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"270.83,32 241.472,32 224.171,80 288.099,80 \t"},"children":[{"name":"polygon","attribs":{"points":"270.83,32 241.472,32 224.171,80 288.099,80 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"371.853,400 400,480 432,480 403.22,400 \t"},"children":[{"name":"polygon","attribs":{"points":"371.853,400 400,480 432,480 403.22,400 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"240","y":"400","width":"32","height":"48"},"children":[{"name":"rect","attribs":{"x":"240","y":"400","width":"32","height":"48"},"children":[]}]}]}]};exports.easel=easel;var edit={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"178.846","y":"92.087","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 224.3476 631.1498)","width":"128.085","height":"354.049"},"children":[{"name":"rect","attribs":{"x":"178.846","y":"92.087","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 224.3476 631.1498)","width":"128.085","height":"354.049"},"children":[]}]},{"name":"path","attribs":{"d":"M471.723,88.393l-48.115-48.114c-11.723-11.724-31.558-10.896-44.304,1.85l-45.202,45.203l90.569,90.568l45.202-45.202\r\n\t\tC482.616,119.952,483.445,100.116,471.723,88.393z"},"children":[{"name":"path","attribs":{"d":"M471.723,88.393l-48.115-48.114c-11.723-11.724-31.558-10.896-44.304,1.85l-45.202,45.203l90.569,90.568l45.202-45.202\r\n\t\tC482.616,119.952,483.445,100.116,471.723,88.393z"},"children":[]}]},{"name":"polygon","attribs":{"points":"64.021,363.252 32,480 148.737,447.979 \t"},"children":[{"name":"polygon","attribs":{"points":"64.021,363.252 32,480 148.737,447.979 \t"},"children":[]}]}]}]};exports.edit=edit;var egg={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C192,32,96,165.2,96,288.9C96,412.6,160,480,256,480s160-67.4,160-191.1C416,165.2,320,32,256,32z"},"children":[]}]};exports.egg=egg;var eject={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M399,320L399,320c10,0,16.8-7.1,16.8-15.9c0-3.3-1.1-6.1-2.8-9L275.3,104.7c-4.6-5.3-11.5-8.7-19.3-8.7\r\n\t\tc-7.7,0-14.6,3.4-19.2,8.7l-138,190.8c-1.7,2.6-2.6,5.5-2.6,8.7c0,8.7,6.8,15.8,16.8,15.8v0H399z"},"children":[{"name":"path","attribs":{"d":"M399,320L399,320c10,0,16.8-7.1,16.8-15.9c0-3.3-1.1-6.1-2.8-9L275.3,104.7c-4.6-5.3-11.5-8.7-19.3-8.7\r\n\t\tc-7.7,0-14.6,3.4-19.2,8.7l-138,190.8c-1.7,2.6-2.6,5.5-2.6,8.7c0,8.7,6.8,15.8,16.8,15.8v0H399z"},"children":[]}]},{"name":"path","attribs":{"d":"M403.7,352H108.4c-6.8,0-12.4,5.4-12.4,12.2v39.6c0,6.7,5.5,12.2,12.4,12.2h295.3c6.8,0,12.3-5.5,12.3-12.2v-39.6\r\n\t\tC416,357.4,410.5,352,403.7,352z"},"children":[{"name":"path","attribs":{"d":"M403.7,352H108.4c-6.8,0-12.4,5.4-12.4,12.2v39.6c0,6.7,5.5,12.2,12.4,12.2h295.3c6.8,0,12.3-5.5,12.3-12.2v-39.6\r\n\t\tC416,357.4,410.5,352,403.7,352z"},"children":[]}]}]}]};exports.eject=eject;var emailUnread={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"432","cy":"160","r":"64"},"children":[{"name":"circle","attribs":{"cx":"432","cy":"160","r":"64"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M225,160H33.799c-11.1,0-13.898,3-11.299,10.5c1.5,4.4,8.4,8.1,12.5,10.2c11,5.8,163.799,89.1,169.5,92.1\r\n\t\t\tc5.699,3,11.5,4.4,20.5,4.4s14.799-1.4,20.5-4.4c3.79-1.995,72.625-39.497,121.559-66.107C357.594,193.551,352,177.433,352,160\r\n\t\t\tH225z"},"children":[{"name":"path","attribs":{"d":"M225,160H33.799c-11.1,0-13.898,3-11.299,10.5c1.5,4.4,8.4,8.1,12.5,10.2c11,5.8,163.799,89.1,169.5,92.1\r\n\t\t\tc5.699,3,11.5,4.4,20.5,4.4s14.799-1.4,20.5-4.4c3.79-1.995,72.625-39.497,121.559-66.107C357.594,193.551,352,177.433,352,160\r\n\t\t\tH225z"},"children":[]}]},{"name":"path","attribs":{"d":"M293.199,273.3l82.201,92.5c2,2,2.898,4.4,1.799,5.601c-1.199,1.1-3.799,0.5-5.9-1.4l-98.6-83.2\r\n\t\t\tc-14.9,9.601-25.4,16.2-27.199,17.2c-7.701,3.9-13.1,4.4-20.5,4.4s-12.801-0.5-20.5-4.4c-1.9-1-12.301-7.6-27.201-17.2l-98.6,83.2\r\n\t\t\tc-2,2-4.699,2.6-5.9,1.4C71.6,370.3,72.5,367.8,74.5,365.8l82.1-92.5C107.9,241.8,33.5,189.4,25.299,185.2\r\n\t\t\tC16.5,180.7,16,186,16,190.1c0,4.101,0,205,0,205C16,404.4,29.699,416,39.5,416H225h185.5c9.799,0,21.5-11.7,21.5-20.9\r\n\t\t\tc0,0,0-94.398,0-155.1c-21.726,0-41.416-8.673-55.832-22.729C350.167,235.173,318.36,257.025,293.199,273.3z"},"children":[{"name":"path","attribs":{"d":"M293.199,273.3l82.201,92.5c2,2,2.898,4.4,1.799,5.601c-1.199,1.1-3.799,0.5-5.9-1.4l-98.6-83.2\r\n\t\t\tc-14.9,9.601-25.4,16.2-27.199,17.2c-7.701,3.9-13.1,4.4-20.5,4.4s-12.801-0.5-20.5-4.4c-1.9-1-12.301-7.6-27.201-17.2l-98.6,83.2\r\n\t\t\tc-2,2-4.699,2.6-5.9,1.4C71.6,370.3,72.5,367.8,74.5,365.8l82.1-92.5C107.9,241.8,33.5,189.4,25.299,185.2\r\n\t\t\tC16.5,180.7,16,186,16,190.1c0,4.101,0,205,0,205C16,404.4,29.699,416,39.5,416H225h185.5c9.799,0,21.5-11.7,21.5-20.9\r\n\t\t\tc0,0,0-94.398,0-155.1c-21.726,0-41.416-8.673-55.832-22.729C350.167,235.173,318.36,257.025,293.199,273.3z"},"children":[]}]}]}]}]}]};exports.emailUnread=emailUnread;var email={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M67,148.7c11,5.8,163.8,89.1,169.5,92.1c5.7,3,11.5,4.4,20.5,4.4c9,0,14.8-1.4,20.5-4.4c5.7-3,158.5-86.3,169.5-92.1\r\n\t\tc4.1-2.1,11-5.9,12.5-10.2c2.6-7.6-0.2-10.5-11.3-10.5H257H65.8c-11.1,0-13.9,3-11.3,10.5C56,142.9,62.9,146.6,67,148.7z"},"children":[{"name":"path","attribs":{"d":"M67,148.7c11,5.8,163.8,89.1,169.5,92.1c5.7,3,11.5,4.4,20.5,4.4c9,0,14.8-1.4,20.5-4.4c5.7-3,158.5-86.3,169.5-92.1\r\n\t\tc4.1-2.1,11-5.9,12.5-10.2c2.6-7.6-0.2-10.5-11.3-10.5H257H65.8c-11.1,0-13.9,3-11.3,10.5C56,142.9,62.9,146.6,67,148.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M455.7,153.2c-8.2,4.2-81.8,56.6-130.5,88.1l82.2,92.5c2,2,2.9,4.4,1.8,5.6c-1.2,1.1-3.8,0.5-5.9-1.4l-98.6-83.2\r\n\t\tc-14.9,9.6-25.4,16.2-27.2,17.2c-7.7,3.9-13.1,4.4-20.5,4.4c-7.4,0-12.8-0.5-20.5-4.4c-1.9-1-12.3-7.6-27.2-17.2l-98.6,83.2\r\n\t\tc-2,2-4.7,2.6-5.9,1.4c-1.2-1.1-0.3-3.6,1.7-5.6l82.1-92.5c-48.7-31.5-123.1-83.9-131.3-88.1c-8.8-4.5-9.3,0.8-9.3,4.9\r\n\t\tc0,4.1,0,205,0,205c0,9.3,13.7,20.9,23.5,20.9H257h185.5c9.8,0,21.5-11.7,21.5-20.9c0,0,0-201,0-205\r\n\t\tC464,153.9,464.6,148.7,455.7,153.2z"},"children":[{"name":"path","attribs":{"d":"M455.7,153.2c-8.2,4.2-81.8,56.6-130.5,88.1l82.2,92.5c2,2,2.9,4.4,1.8,5.6c-1.2,1.1-3.8,0.5-5.9-1.4l-98.6-83.2\r\n\t\tc-14.9,9.6-25.4,16.2-27.2,17.2c-7.7,3.9-13.1,4.4-20.5,4.4c-7.4,0-12.8-0.5-20.5-4.4c-1.9-1-12.3-7.6-27.2-17.2l-98.6,83.2\r\n\t\tc-2,2-4.7,2.6-5.9,1.4c-1.2-1.1-0.3-3.6,1.7-5.6l82.1-92.5c-48.7-31.5-123.1-83.9-131.3-88.1c-8.8-4.5-9.3,0.8-9.3,4.9\r\n\t\tc0,4.1,0,205,0,205c0,9.3,13.7,20.9,23.5,20.9H257h185.5c9.8,0,21.5-11.7,21.5-20.9c0,0,0-201,0-205\r\n\t\tC464,153.9,464.6,148.7,455.7,153.2z"},"children":[]}]}]}]};exports.email=email;var erlenmeyerFlaskBubbles={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M445.9,427.1L328,227.9V78c0-7.7-6.5-14-14.5-14c-8,0-14.5,6.2-14.5,14v153.6c0,1.8,0.6,3.6,1.3,5.3\r\n\t\tc-7.6-11.1-20.6-18.4-35.4-18.4c-23.5,0-42.5,18.3-42.5,41c0,16.8,10.5,31.5,25.4,37.5h-72l35-58.5c1.2-2.1,2.1-4.5,2.1-6.9v-30.4\r\n\t\tc4,3.2,10,5.1,16.1,5.1c15.3,0,27.5-11.9,27.5-26.6c0-14.7-12.2-26.6-27.5-26.6c-6.1,0-12.1,1.9-16.1,5.1V78c0-7.7-6.5-14-14.5-14\r\n\t\tc-8,0-14.5,6.2-14.5,14v149.9L66.1,427.1c-2.5,4.3-2.6,9.6,0,13.9c2.6,4.3,7.2,7,12.4,7H256h177.5c5.1,0,9.8-2.6,12.4-7\r\n\t\tC448.5,436.8,448.4,431.4,445.9,427.1z M282.2,297c14.9-6,25.4-20.8,25.4-37.5c0-5.7-1.2-11.2-3.4-16.1l31,53.6H282.2z"},"children":[{"name":"path","attribs":{"d":"M445.9,427.1L328,227.9V78c0-7.7-6.5-14-14.5-14c-8,0-14.5,6.2-14.5,14v153.6c0,1.8,0.6,3.6,1.3,5.3\r\n\t\tc-7.6-11.1-20.6-18.4-35.4-18.4c-23.5,0-42.5,18.3-42.5,41c0,16.8,10.5,31.5,25.4,37.5h-72l35-58.5c1.2-2.1,2.1-4.5,2.1-6.9v-30.4\r\n\t\tc4,3.2,10,5.1,16.1,5.1c15.3,0,27.5-11.9,27.5-26.6c0-14.7-12.2-26.6-27.5-26.6c-6.1,0-12.1,1.9-16.1,5.1V78c0-7.7-6.5-14-14.5-14\r\n\t\tc-8,0-14.5,6.2-14.5,14v149.9L66.1,427.1c-2.5,4.3-2.6,9.6,0,13.9c2.6,4.3,7.2,7,12.4,7H256h177.5c5.1,0,9.8-2.6,12.4-7\r\n\t\tC448.5,436.8,448.4,431.4,445.9,427.1z M282.2,297c14.9-6,25.4-20.8,25.4-37.5c0-5.7-1.2-11.2-3.4-16.1l31,53.6H282.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M265.1,128.6c12,0,21.7-9.4,21.7-20.9c0-11.6-9.7-20.9-21.7-20.9c-12,0-21.7,9.4-21.7,20.9\r\n\t\tC243.3,119.2,253.1,128.6,265.1,128.6z"},"children":[{"name":"path","attribs":{"d":"M265.1,128.6c12,0,21.7-9.4,21.7-20.9c0-11.6-9.7-20.9-21.7-20.9c-12,0-21.7,9.4-21.7,20.9\r\n\t\tC243.3,119.2,253.1,128.6,265.1,128.6z"},"children":[]}]}]}]};exports.erlenmeyerFlaskBubbles=erlenmeyerFlaskBubbles;var erlenmeyerFlask={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M438.815,395.7L338.509,246.2c-12.8-20.3-19.009-44.4-19.009-70.2c0,0,0-73.5,0-93s12.592-33.25,15.009-42.083\r\n\t\tc2.296-8.392,0.512-8.417-15.188-8.417H192.526c-15.999,0-18.548,0.009-16.311,8.416C178.633,50,191.5,64.3,191.5,83.5\r\n\t\ts0,92.5,0,92.5c0,25.8-7.285,49.8-20.085,70.2l-49.279,76.5L73.035,395.6c-5.8,9-9.051,20.7-9.051,32.2\r\n\t\tc0,28,16.347,52.7,63.246,52.7h257.589c46.998,0,63.197-24.7,63.197-52.7C447.916,416.3,444.615,404.7,438.815,395.7z M409.218,441\r\n\t\tc-4.4,4.2-11.602,7.5-24.499,7.5h-257.59c-12.8,0-20.8-3.5-25.199-7.7c-2.7-2.6-6-7.05-6-13.35c0-5,1.4-10.125,3.9-14.125\r\n\t\tl99.039-150.392c15.699-25.199,24.632-55.231,24.632-86.932V64.5h64v111.4c0,31.199,7.761,61.3,23.859,87l100.523,150\r\n\t\tc2.499,4,3.968,9.25,3.968,14.25C415.85,433.55,411.918,438.4,409.218,441z"},"children":[{"name":"path","attribs":{"d":"M438.815,395.7L338.509,246.2c-12.8-20.3-19.009-44.4-19.009-70.2c0,0,0-73.5,0-93s12.592-33.25,15.009-42.083\r\n\t\tc2.296-8.392,0.512-8.417-15.188-8.417H192.526c-15.999,0-18.548,0.009-16.311,8.416C178.633,50,191.5,64.3,191.5,83.5\r\n\t\ts0,92.5,0,92.5c0,25.8-7.285,49.8-20.085,70.2l-49.279,76.5L73.035,395.6c-5.8,9-9.051,20.7-9.051,32.2\r\n\t\tc0,28,16.347,52.7,63.246,52.7h257.589c46.998,0,63.197-24.7,63.197-52.7C447.916,416.3,444.615,404.7,438.815,395.7z M409.218,441\r\n\t\tc-4.4,4.2-11.602,7.5-24.499,7.5h-257.59c-12.8,0-20.8-3.5-25.199-7.7c-2.7-2.6-6-7.05-6-13.35c0-5,1.4-10.125,3.9-14.125\r\n\t\tl99.039-150.392c15.699-25.199,24.632-55.231,24.632-86.932V64.5h64v111.4c0,31.199,7.761,61.3,23.859,87l100.523,150\r\n\t\tc2.499,4,3.968,9.25,3.968,14.25C415.85,433.55,411.918,438.4,409.218,441z"},"children":[]}]},{"name":"path","attribs":{"d":"M389.217,411.301c0.051,0.075,0.1,0.397,0,0.249L307.345,288.5H203.698l-81.069,123.151c-1.5,2.1-2.3,5.175-2.3,7.974\r\n\t\tc0,7.5,6.288,13.875,13.687,13.875h244c7.5,0,13.599-6.725,13.599-14.125C391.614,416.875,390.516,413.301,389.217,411.301z\r\n\t\t M302.021,341.7c-1.5-1.5-2.3-3.601-2.3-5.7s0.899-4.2,2.3-5.7c1.5-1.5,3.6-2.3,5.6-2.3c2.102,0,4.2,0.8,5.602,2.3\r\n\t\tc1.5,1.5,2.299,3.601,2.299,5.7s-0.899,4.2-2.299,5.7c-1.5,1.5-3.5,2.3-5.602,2.3C305.621,344,303.521,343.1,302.021,341.7z\r\n\t\t M348.92,400.7c-1.4,0.898-2.9,1.3-4.302,1.3c-2.499,0-5.099-1.3-6.598-3.6l-23.499-35.9c-2.4-3.7-1.4-8.7,2.299-11.1\r\n\t\tc1.4-0.9,2.9-1.301,4.4-1.301c2.6,0,5.1,1.301,6.5,3.601L351.22,389.6C353.618,393.299,352.618,398.299,348.92,400.7z"},"children":[{"name":"path","attribs":{"d":"M389.217,411.301c0.051,0.075,0.1,0.397,0,0.249L307.345,288.5H203.698l-81.069,123.151c-1.5,2.1-2.3,5.175-2.3,7.974\r\n\t\tc0,7.5,6.288,13.875,13.687,13.875h244c7.5,0,13.599-6.725,13.599-14.125C391.614,416.875,390.516,413.301,389.217,411.301z\r\n\t\t M302.021,341.7c-1.5-1.5-2.3-3.601-2.3-5.7s0.899-4.2,2.3-5.7c1.5-1.5,3.6-2.3,5.6-2.3c2.102,0,4.2,0.8,5.602,2.3\r\n\t\tc1.5,1.5,2.299,3.601,2.299,5.7s-0.899,4.2-2.299,5.7c-1.5,1.5-3.5,2.3-5.602,2.3C305.621,344,303.521,343.1,302.021,341.7z\r\n\t\t M348.92,400.7c-1.4,0.898-2.9,1.3-4.302,1.3c-2.499,0-5.099-1.3-6.598-3.6l-23.499-35.9c-2.4-3.7-1.4-8.7,2.299-11.1\r\n\t\tc1.4-0.9,2.9-1.301,4.4-1.301c2.6,0,5.1,1.301,6.5,3.601L351.22,389.6C353.618,393.299,352.618,398.299,348.92,400.7z"},"children":[]}]}]}]};exports.erlenmeyerFlask=erlenmeyerFlask;var eyeDisabled={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M376.4,158.3L448,86.6L425.4,64l-77.6,77.6C320,127.7,289.5,119,256,119c-81.9,0-145.7,52.2-224,137\r\n\tc34.8,37.4,66.8,72.7,103.3,98.1L64,425.4L86.6,448l76.9-76.9c27,13.7,57,21.9,92.5,21.9c99.9,0,173.4-81.8,224-135.5\r\n\tC452,223.4,417.6,185.7,376.4,158.3z M166.4,256c0-50.4,40.2-91.3,89.6-91.3c19.3,0,37.2,6.2,51.8,16.9l-50.7,50.7\r\n\tc-0.7-2.6-1.1-5.4-1.1-8.3c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,8.6,2,16.8,5.6,24\r\n\tL182,307.4C172.2,292.7,166.4,275,166.4,256z M256,347.3c-19.3,0-37.2-6.2-51.8-16.9l27.4-27.4c7.3,4,15.6,6.2,24.4,6.2\r\n\tc28.8,0,52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9c-2.9,0-5.6-0.4-8.3-1.1l50.3-50.3\r\n\tc9.8,14.6,15.6,32.3,15.6,51.4C345.6,306.4,305.4,347.3,256,347.3z"},"children":[]}]};exports.eyeDisabled=eyeDisabled;var eye={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,128c-81.9,0-145.7,48.8-224,128c67.4,67.7,124,128,224,128c99.9,0,173.4-76.4,224-126.6\r\n\t\tC428.2,198.6,354.8,128,256,128z M256,347.3c-49.4,0-89.6-41-89.6-91.3c0-50.4,40.2-91.3,89.6-91.3s89.6,41,89.6,91.3\r\n\t\tC345.6,306.4,305.4,347.3,256,347.3z"},"children":[{"name":"path","attribs":{"d":"M256,128c-81.9,0-145.7,48.8-224,128c67.4,67.7,124,128,224,128c99.9,0,173.4-76.4,224-126.6\r\n\t\tC428.2,198.6,354.8,128,256,128z M256,347.3c-49.4,0-89.6-41-89.6-91.3c0-50.4,40.2-91.3,89.6-91.3s89.6,41,89.6,91.3\r\n\t\tC345.6,306.4,305.4,347.3,256,347.3z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,224c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,29.4,23.5,53.3,52.3,53.3\r\n\t\t\ts52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9C270.3,256,256,241.7,256,224z"},"children":[{"name":"path","attribs":{"d":"M256,224c0-7.9,2.9-15.1,7.6-20.7c-2.5-0.4-5-0.6-7.6-0.6c-28.8,0-52.3,23.9-52.3,53.3c0,29.4,23.5,53.3,52.3,53.3\r\n\t\t\ts52.3-23.9,52.3-53.3c0-2.3-0.2-4.6-0.4-6.9c-5.5,4.3-12.3,6.9-19.8,6.9C270.3,256,256,241.7,256,224z"},"children":[]}]}]}]}]}]};exports.eye=eye;var female={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M288,284c55.2-14.2,96-64.3,96-124c0-70.7-57.3-128-128-128S128,89.3,128,160c0,59.6,40.8,109.7,96,124v68h-64v64h64v64h64\r\n\tv-64h64v-64h-64V284z M256,240c-44.1,0-80-35.9-80-80s35.9-80,80-80s80,35.9,80,80S300.1,240,256,240z"},"children":[]}]};exports.female=female;var filing={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M381,128.6H132.1c-12.1,0-19.5,0-19.5,20.4v28.1h288V149C400.6,128.6,393.2,128.6,381,128.6z"},"children":[{"name":"path","attribs":{"d":"M381,128.6H132.1c-12.1,0-19.5,0-19.5,20.4v28.1h288V149C400.6,128.6,393.2,128.6,381,128.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M333,96.5H180c-13.1,0-19.5,0.3-19.5,18.7h192C352.4,96.8,346.1,96.5,333,96.5z"},"children":[{"name":"path","attribs":{"d":"M333,96.5H180c-13.1,0-19.5,0.3-19.5,18.7h192C352.4,96.8,346.1,96.5,333,96.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M432.4,169.6l-15.9-9.4v32.3h-321v-32.3l-15.2,9.4c-14.3,8.9-17.8,15.3-15,40.9l17.5,184.8c3.7,20.7,15.9,21.2,24,21.2\r\n\t\th299.9c8.1,0,20.2-0.5,23.9-21.2l17.2-184.4C450.1,186.5,445.8,178.1,432.4,169.6z"},"children":[{"name":"path","attribs":{"d":"M432.4,169.6l-15.9-9.4v32.3h-321v-32.3l-15.2,9.4c-14.3,8.9-17.8,15.3-15,40.9l17.5,184.8c3.7,20.7,15.9,21.2,24,21.2\r\n\t\th299.9c8.1,0,20.2-0.5,23.9-21.2l17.2-184.4C450.1,186.5,445.8,178.1,432.4,169.6z"},"children":[]}]}]}]};exports.filing=filing;var filmMarker={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448.4,208h-344l341.2-68c8.5-1.6,14-9.7,12.4-18.1l-8.9-45.4c-1.6-8.4-9.8-13.8-18.3-12.2L60.7,137.9\r\n\tc-8.5,1.6-14,9.7-12.4,18l8.9,45.4c0.6,2.8,2.1,5.2,3.9,7.2c-7.4,1.2-13.1,7.2-13.1,14.9v209.2c0,8.5,7,15.4,15.6,15.4h384.8\r\n\tc8.6,0,15.6-6.9,15.6-15.4V223.4C464,214.9,457,208,448.4,208z M305,402.4l-50.7-36.3l-50.7,36.3l19.5-58.4l-50.8-36H235l19.2-58.4\r\n\tl19.3,58.4h62.7l-50.8,36L305,402.4z"},"children":[]}]};exports.filmMarker=filmMarker;var fireball={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M393.267,238.088l-0.231,10.404c-0.814,11.65-3.797,31.912-14.102,54.736c3.251-15.208,4.978-30.982,4.978-47.164\r\n\t\tc0-12.096-0.958-23.968-2.799-35.544c-15.091-94.901-89.626-169.923-184.138-185.518C185.706,32.285,179.048,32,179.048,32\r\n\t\tc0.238,0.281,0.465,0.562,0.7,0.844c39.458,47.181,44.1,96.656,37.744,131.85c-2.281,12.629-5.978,23.421-9.991,31.605\r\n\t\tc0,0,3.359-13.911,3.035-29.72c-0.293-14.234-3.572-30.006-14.986-38.552c3.497,18.378-0.752,33.501-9.121,47.729\r\n\t\tC161.69,217.808,101,249.386,96,327.408v3.836c0,53.692,25.624,98.979,68.719,125.012c-6.85-12.344-14.964-35.207-8.733-60.151\r\n\t\tc3.998,23.669,9.951,36.045,20.879,51.756c8.153,11.721,19.104,19.269,33.095,24.934S238.995,480,255.889,480\r\n\t\tc55.809,0,105.228-28.567,133.845-71.952l0.267,0.061v-0.007c16-25.254,26.1-55.5,26.1-88.019\r\n\t\tC416.1,290.112,407.596,262.071,393.267,238.088z"},"children":[{"name":"path","attribs":{"d":"M393.267,238.088l-0.231,10.404c-0.814,11.65-3.797,31.912-14.102,54.736c3.251-15.208,4.978-30.982,4.978-47.164\r\n\t\tc0-12.096-0.958-23.968-2.799-35.544c-15.091-94.901-89.626-169.923-184.138-185.518C185.706,32.285,179.048,32,179.048,32\r\n\t\tc0.238,0.281,0.465,0.562,0.7,0.844c39.458,47.181,44.1,96.656,37.744,131.85c-2.281,12.629-5.978,23.421-9.991,31.605\r\n\t\tc0,0,3.359-13.911,3.035-29.72c-0.293-14.234-3.572-30.006-14.986-38.552c3.497,18.378-0.752,33.501-9.121,47.729\r\n\t\tC161.69,217.808,101,249.386,96,327.408v3.836c0,53.692,25.624,98.979,68.719,125.012c-6.85-12.344-14.964-35.207-8.733-60.151\r\n\t\tc3.998,23.669,9.951,36.045,20.879,51.756c8.153,11.721,19.104,19.269,33.095,24.934S238.995,480,255.889,480\r\n\t\tc55.809,0,105.228-28.567,133.845-71.952l0.267,0.061v-0.007c16-25.254,26.1-55.5,26.1-88.019\r\n\t\tC416.1,290.112,407.596,262.071,393.267,238.088z"},"children":[]}]}]}]};exports.fireball=fireball;var flag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M426.4,182.5c-35.8,5.9-94.2,7.5-133-66.1c-41.6-79.1-108.8-81.5-148.1-74.3c-19.1,3.5-33.4,19.5-33.4,35v196.6\r\n\t\tc11.3,4.3,23.4-0.2,26.5-0.8c0.8-0.2,1.5-0.3,2.4-0.5c25-5.5,51.4-8.1,116.8,23.3c82,39.3,153.8-33.1,181.6-83.5\r\n\t\tc2-3.5,8.7-20.2,8.7-36.2C438.2,180,426.4,182.5,426.4,182.5z"},"children":[{"name":"path","attribs":{"d":"M426.4,182.5c-35.8,5.9-94.2,7.5-133-66.1c-41.6-79.1-108.8-81.5-148.1-74.3c-19.1,3.5-33.4,19.5-33.4,35v196.6\r\n\t\tc11.3,4.3,23.4-0.2,26.5-0.8c0.8-0.2,1.5-0.3,2.4-0.5c25-5.5,51.4-8.1,116.8,23.3c82,39.3,153.8-33.1,181.6-83.5\r\n\t\tc2-3.5,8.7-20.2,8.7-36.2C438.2,180,426.4,182.5,426.4,182.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M88,32H72c-4.4,0-8,3.6-8,8v432c0,4.4,3.6,8,8,8h16c4.4,0,8-3.6,8-8V40C96,35.6,92.4,32,88,32z"},"children":[{"name":"path","attribs":{"d":"M88,32H72c-4.4,0-8,3.6-8,8v432c0,4.4,3.6,8,8,8h16c4.4,0,8-3.6,8-8V40C96,35.6,92.4,32,88,32z"},"children":[]}]}]}]};exports.flag=flag;var flame={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128.922,320c13.05,134,103.764,160,126.932,160c23.168,0,127.457-40.49,128.142-160c0.836-146-121.586-143-95.895-288\r\n\t\tC201.427,96,118.289,210.816,128.922,320z M215.667,368c0-44.183,40.187-80,40.187-80s40.701,35.817,40.701,80\r\n\t\tc0,44.184-40.701,80-40.701,80S215.667,412.184,215.667,368z"},"children":[{"name":"path","attribs":{"d":"M128.922,320c13.05,134,103.764,160,126.932,160c23.168,0,127.457-40.49,128.142-160c0.836-146-121.586-143-95.895-288\r\n\t\tC201.427,96,118.289,210.816,128.922,320z M215.667,368c0-44.183,40.187-80,40.187-80s40.701,35.817,40.701,80\r\n\t\tc0,44.184-40.701,80-40.701,80S215.667,412.184,215.667,368z"},"children":[]}]}]}]};exports.flame=flame;var flashOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M147.4,451.9c0.4,0.2,0.7,0.5,1.1,0.7c10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9\r\n\t\tc123.7,0,224-100.3,224-224c0-84.3-46.6-157.7-115.5-195.9c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8\r\n\t\tc-1.8-0.6-3.6-1.2-5.4-1.8C302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256C32,340.3,78.6,413.6,147.4,451.9z M118.2,156.6\r\n\t\tl54.4,54.4l36.3-40.5l-52.4-52.4c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4c9.8,1.6,19.3,4.1,28.5,7.3\r\n\t\tc1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8c0,37.2-12.4,71.3-32.7,99.4l-54.4-54.4L303,341.4\r\n\t\tl52.4,52.4c-28,20.3-62.2,32.7-99.4,32.7c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3C85.6,218.8,98,184.7,118.2,156.6z"},"children":[{"name":"path","attribs":{"d":"M147.4,451.9c0.4,0.2,0.7,0.5,1.1,0.7c10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9\r\n\t\tc123.7,0,224-100.3,224-224c0-84.3-46.6-157.7-115.5-195.9c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8\r\n\t\tc-1.8-0.6-3.6-1.2-5.4-1.8C302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256C32,340.3,78.6,413.6,147.4,451.9z M118.2,156.6\r\n\t\tl54.4,54.4l36.3-40.5l-52.4-52.4c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4c9.8,1.6,19.3,4.1,28.5,7.3\r\n\t\tc1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8c0,37.2-12.4,71.3-32.7,99.4l-54.4-54.4L303,341.4\r\n\t\tl52.4,52.4c-28,20.3-62.2,32.7-99.4,32.7c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3C85.6,218.8,98,184.7,118.2,156.6z"},"children":[]}]},{"name":"polygon","attribs":{"points":"209.7,389.8 348.9,235 263.6,235 302.2,122.2 163.1,277 248.4,277 \t"},"children":[{"name":"polygon","attribs":{"points":"209.7,389.8 348.9,235 263.6,235 302.2,122.2 163.1,277 248.4,277 \t"},"children":[]}]}]}]};exports.flashOff=flashOff;var flash={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"96,288 243,288 191.9,480 416,224 269,224 320,32 "},"children":[]}]};exports.flash=flash;var folder={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M430.1,192H81.9c-17.7,0-18.6,9.2-17.6,20.5l13,183c0.9,11.2,3.5,20.5,21.1,20.5h316.2c18,0,20.1-9.2,21.1-20.5l12.1-185.3\r\n\t\tC448.7,199,447.8,192,430.1,192z"},"children":[{"name":"path","attribs":{"d":"M430.1,192H81.9c-17.7,0-18.6,9.2-17.6,20.5l13,183c0.9,11.2,3.5,20.5,21.1,20.5h316.2c18,0,20.1-9.2,21.1-20.5l12.1-185.3\r\n\t\tC448.7,199,447.8,192,430.1,192z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M426.2,143.3c-0.5-12.4-4.5-15.3-15.1-15.3c0,0-121.4,0-143.2,0c-21.8,0-24.4,0.3-40.9-17.4C213.3,95.8,218.7,96,190.4,96\r\n\t\t\tc-22.6,0-75.3,0-75.3,0c-17.4,0-23.6-1.5-25.2,16.6c-1.5,16.7-5,57.2-5.5,63.4h343.4L426.2,143.3z"},"children":[{"name":"path","attribs":{"d":"M426.2,143.3c-0.5-12.4-4.5-15.3-15.1-15.3c0,0-121.4,0-143.2,0c-21.8,0-24.4,0.3-40.9-17.4C213.3,95.8,218.7,96,190.4,96\r\n\t\t\tc-22.6,0-75.3,0-75.3,0c-17.4,0-23.6-1.5-25.2,16.6c-1.5,16.7-5,57.2-5.5,63.4h343.4L426.2,143.3z"},"children":[]}]}]}]}]}]};exports.folder=folder;var forkRepo={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"class":"st0","points":"416,80 368,80 368,32 304,32 304,80 256,80 256,144 304,144 304,192 368,192 368,144 416,144 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"416,80 368,80 368,32 304,32 304,80 256,80 256,144 304,144 304,192 368,192 368,144 416,144 \t"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M304,240c0,38.6-4.5,42.3-14.4,50.3c-7.4,6-22.2,7.1-39.4,8.3c-9.5,0.7-20.4,1.5-31.4,3.3\r\n\t\tc-9.4,1.5-18.4,4.7-26.8,8.8V151.4c19.1-11.1,32-31.7,32-55.4c0-35.3-28.7-64-64-64S96,60.7,96,96c0,23.7,12.9,44.3,32,55.4v209.2\r\n\t\tc-19.1,11.1-32,31.7-32,55.4c0,35.3,28.7,64,64,64s64-28.7,64-64c0-15.7-5.7-30.1-15-41.2c6.7-4.8,13.9-8.7,20.2-9.7\r\n\t\tc8.1-1.3,16.6-1.9,25.6-2.6c24.4-1.7,52.1-3.7,75.2-22.5c30.9-25.1,37.5-52.1,38-94.9l0,0V240H304z M160,64c17.6,0,32,14.4,32,32\r\n\t\ts-14.4,32-32,32s-32-14.4-32-32S142.4,64,160,64z M160,448c-17.6,0-32-14.4-32-32s14.4-32,32-32s32,14.4,32,32S177.6,448,160,448z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M304,240c0,38.6-4.5,42.3-14.4,50.3c-7.4,6-22.2,7.1-39.4,8.3c-9.5,0.7-20.4,1.5-31.4,3.3\r\n\t\tc-9.4,1.5-18.4,4.7-26.8,8.8V151.4c19.1-11.1,32-31.7,32-55.4c0-35.3-28.7-64-64-64S96,60.7,96,96c0,23.7,12.9,44.3,32,55.4v209.2\r\n\t\tc-19.1,11.1-32,31.7-32,55.4c0,35.3,28.7,64,64,64s64-28.7,64-64c0-15.7-5.7-30.1-15-41.2c6.7-4.8,13.9-8.7,20.2-9.7\r\n\t\tc8.1-1.3,16.6-1.9,25.6-2.6c24.4-1.7,52.1-3.7,75.2-22.5c30.9-25.1,37.5-52.1,38-94.9l0,0V240H304z M160,64c17.6,0,32,14.4,32,32\r\n\t\ts-14.4,32-32,32s-32-14.4-32-32S142.4,64,160,64z M160,448c-17.6,0-32-14.4-32-32s14.4-32,32-32s32,14.4,32,32S177.6,448,160,448z"},"children":[]}]}]}]};exports.forkRepo=forkRepo;var fork={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M270.2,148.9C270.2,149,270.1,149,270.2,148.9v0.1V148.9z"},"children":[{"name":"path","attribs":{"d":"M270.2,148.9C270.2,149,270.1,149,270.2,148.9v0.1V148.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M320,166c0-43.2-15-93.2-24-133.7V32h-8l-0.2,116.9c0,6.1-2.9,11.1-9,11.1c-5.7,0-8-4.3-8.6-9.9c-0.1-0.4,0-0.8,0-1.2\r\n\t\tL259.9,32h-8l-9,117l-0.1,1.1c-0.6,5.6-3.7,9.9-9.5,9.9c-6.1,0-9.1-5-9.1-11.1L223.8,32h-8C207,73,192,122.9,192,166.1\r\n\t\tc0,25.7,14.6,48.1,36.7,58.2c11.2,5.1,11.3,10.3,11.3,10.3s-16,201.7-16,213.1c0,11.4,4,18.5,9.5,24s14.2,8.2,22.4,8.2\r\n\t\tc0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c8.2,0,16.8-2.7,22.4-8.2c5.5-5.5,9.3-10.9,9.3-24c0-13.1-16-213.1-16-213.1s-1-5,11.4-10.6\r\n\t\tC305,214.2,320,191.8,320,166z"},"children":[{"name":"path","attribs":{"d":"M320,166c0-43.2-15-93.2-24-133.7V32h-8l-0.2,116.9c0,6.1-2.9,11.1-9,11.1c-5.7,0-8-4.3-8.6-9.9c-0.1-0.4,0-0.8,0-1.2\r\n\t\tL259.9,32h-8l-9,117l-0.1,1.1c-0.6,5.6-3.7,9.9-9.5,9.9c-6.1,0-9.1-5-9.1-11.1L223.8,32h-8C207,73,192,122.9,192,166.1\r\n\t\tc0,25.7,14.6,48.1,36.7,58.2c11.2,5.1,11.3,10.3,11.3,10.3s-16,201.7-16,213.1c0,11.4,4,18.5,9.5,24s14.2,8.2,22.4,8.2\r\n\t\tc0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c8.2,0,16.8-2.7,22.4-8.2c5.5-5.5,9.3-10.9,9.3-24c0-13.1-16-213.1-16-213.1s-1-5,11.4-10.6\r\n\t\tC305,214.2,320,191.8,320,166z"},"children":[]}]}]}]};exports.fork=fork;var forward={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,298.1v92.3L448,256L288,112v80C100.8,192,64,400,64,400C117,307,186.4,298.1,288,298.1z"},"children":[{"name":"path","attribs":{"d":"M288,298.1v92.3L448,256L288,112v80C100.8,192,64,400,64,400C117,307,186.4,298.1,288,298.1z"},"children":[]}]}]}]};exports.forward=forward;var funnel={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.085,32c-123.79,0-224.096,35.817-224.096,80c0,8.476,3.729,16.642,10.573,24.309l-0.061,0.008\r\n\t\tC74.408,175.213,192,313,192,352v87l0,0c0,22.688,28.891,41,64,41s64-18.312,64-41l0,0v-83.088c0-1.241,0.008-2.54,0.008-3.912\r\n\t\tC320.008,313,436,177.432,471,134.062v-0.002c6-7.007,8.977-14.408,8.977-22.06C479.977,67.817,379.875,32,256.085,32z\r\n\t\t M256.178,160c-92.058,0-176.112-22-176.112-48s83.053-48,176.112-48c93.06,0,176.111,22.413,176.111,48S348.236,160,256.178,160z"},"children":[{"name":"path","attribs":{"d":"M256.085,32c-123.79,0-224.096,35.817-224.096,80c0,8.476,3.729,16.642,10.573,24.309l-0.061,0.008\r\n\t\tC74.408,175.213,192,313,192,352v87l0,0c0,22.688,28.891,41,64,41s64-18.312,64-41l0,0v-83.088c0-1.241,0.008-2.54,0.008-3.912\r\n\t\tC320.008,313,436,177.432,471,134.062v-0.002c6-7.007,8.977-14.408,8.977-22.06C479.977,67.817,379.875,32,256.085,32z\r\n\t\t M256.178,160c-92.058,0-176.112-22-176.112-48s83.053-48,176.112-48c93.06,0,176.111,22.413,176.111,48S348.236,160,256.178,160z"},"children":[]}]}]}]};exports.funnel=funnel;var gearA={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M411.1,256c0-23.9,14.8-42.8,36.9-55.8c-4-13.3-9.3-26.2-15.8-38.2c-24.9,6.5-45-3.2-62-20.2c-16.9-16.9-22.1-37.1-15.6-62\r\n\t\tC342.6,73.3,329.8,68,316.4,64c-13,22.2-36.4,36.9-60.4,36.9c-23.9,0-47.4-14.7-60.4-36.9c-13.4,4-26.2,9.3-38.2,15.8\r\n\t\tc6.5,24.9,1.3,45-15.6,62c-16.9,16.9-37.1,26.7-61.9,20.2C73.3,174,68,186.8,64,200.2c22.2,13,37,31.9,37,55.8\r\n\t\tc0,23.9-14.8,47.4-37,60.4c4,13.4,9.3,26.2,15.8,38.2c24.9-6.5,45-1.3,61.9,15.6c17,16.9,22.1,37.1,15.6,62\r\n\t\tc12.1,6.5,24.8,11.8,38.2,15.8c13-22.2,36.5-36.9,60.4-36.9c23.9,0,47.4,14.7,60.4,36.9c13.4-4,26.2-9.3,38.2-15.8\r\n\t\tc-6.5-24.9-1.3-45,15.6-62c16.9-16.9,37.1-26.7,62-20.2c6.5-12.1,11.8-24.9,15.8-38.2C425.8,298.8,411.1,279.9,411.1,256z\r\n\t\t M256,354.3c-54.2,0-98.3-44-98.3-98.3c0-54.3,44-98.3,98.3-98.3c54.3,0,98.3,44,98.3,98.3C354.3,310.3,310.3,354.3,256,354.3z"},"children":[{"name":"path","attribs":{"d":"M411.1,256c0-23.9,14.8-42.8,36.9-55.8c-4-13.3-9.3-26.2-15.8-38.2c-24.9,6.5-45-3.2-62-20.2c-16.9-16.9-22.1-37.1-15.6-62\r\n\t\tC342.6,73.3,329.8,68,316.4,64c-13,22.2-36.4,36.9-60.4,36.9c-23.9,0-47.4-14.7-60.4-36.9c-13.4,4-26.2,9.3-38.2,15.8\r\n\t\tc6.5,24.9,1.3,45-15.6,62c-16.9,16.9-37.1,26.7-61.9,20.2C73.3,174,68,186.8,64,200.2c22.2,13,37,31.9,37,55.8\r\n\t\tc0,23.9-14.8,47.4-37,60.4c4,13.4,9.3,26.2,15.8,38.2c24.9-6.5,45-1.3,61.9,15.6c17,16.9,22.1,37.1,15.6,62\r\n\t\tc12.1,6.5,24.8,11.8,38.2,15.8c13-22.2,36.5-36.9,60.4-36.9c23.9,0,47.4,14.7,60.4,36.9c13.4-4,26.2-9.3,38.2-15.8\r\n\t\tc-6.5-24.9-1.3-45,15.6-62c16.9-16.9,37.1-26.7,62-20.2c6.5-12.1,11.8-24.9,15.8-38.2C425.8,298.8,411.1,279.9,411.1,256z\r\n\t\t M256,354.3c-54.2,0-98.3-44-98.3-98.3c0-54.3,44-98.3,98.3-98.3c54.3,0,98.3,44,98.3,98.3C354.3,310.3,310.3,354.3,256,354.3z"},"children":[]}]}]}]};exports.gearA=gearA;var gearB={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,294.4v-76.8h-42.8c-3.4-14.4-8.9-28-16.1-40.5l29.8-29.7l-54.3-54.3l-29.1,29.1c-12.6-7.7-26.4-13.5-41.1-17.3V64\r\n\th-76.8v40.9c-14.7,3.8-28.5,9.7-41.1,17.3l-29.1-29.1l-54.3,54.3l29.8,29.7c-7.2,12.5-12.6,26.1-16.1,40.5H64v76.8h44.1\r\n\tc3.8,13.7,9.5,26.6,16.7,38.6l-31.7,31.7l54.3,54.3l32.3-32.3c11.7,6.8,24.5,11.9,37.9,15.4v46h76.8v-46\r\n\tc13.5-3.5,26.2-8.6,37.9-15.4l32.3,32.3l54.3-54.3L387.3,333c7.2-11.9,12.9-24.8,16.7-38.6H448z M256,309.8\r\n\tc-29.7,0-53.7-24.1-53.7-53.8s24-53.8,53.7-53.8s53.8,24.1,53.8,53.8S285.7,309.8,256,309.8z"},"children":[]}]};exports.gearB=gearB;var grid={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[{"name":"path","attribs":{"d":"M160,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[{"name":"path","attribs":{"d":"M288,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M416,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[{"name":"path","attribs":{"d":"M416,153.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V153.3z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[{"name":"path","attribs":{"d":"M160,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[{"name":"path","attribs":{"d":"M288,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M416,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[{"name":"path","attribs":{"d":"M416,281.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V281.3z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[{"name":"path","attribs":{"d":"M160,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M288,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[{"name":"path","attribs":{"d":"M288,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M416,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[{"name":"path","attribs":{"d":"M416,409.3c0,3.7-3,6.7-6.7,6.7h-50.5c-3.7,0-6.7-3-6.7-6.7v-50.5c0-3.7,3-6.7,6.7-6.7h50.5c3.7,0,6.7,3,6.7,6.7V409.3z"},"children":[]}]}]}]}]}]};exports.grid=grid;var hammer={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M410,32h-52c-3.3,0-6,2.7-6,6v5.6c-4,4-10.9,9.8-17.8,9.8c-10.5,0-14.8-16.4-26.1-18.4s-27.2-3-37.9-3s-52,0.7-102,21.5\r\n\tc-50,20.8-71.7,64.9-72.3,81.4c-0.3,8.7,2.7,21.1,10,11.1c7.3-10,35.3-42.3,57.7-44.7c22.3-2.3,45.7,0.8,63.7,17.2\r\n\tc17.3,15.7,21.3,30.8,21.3,73.5l-6.6,2c-4.3,1.3-7,5.7-7,9c0,0-0.2,6.5-0.2,70.4C234.8,368,224,474,224,474c0,3.3,2.7,6,6,6h84\r\n\tc3.3,0,6-2.7,6-6c0,0-10.8-106-10.8-200.6c0-63.9-0.2-70.4-0.2-70.4c0-3.3-2.3-7.8-7-9l-8-2c0-38.2-0.4-54,6.3-65.9\r\n\tc7-12.4,22.3-22.9,29.7-25.1c5.9-1.8,16,1.3,22,6.5V122c0,3.3,2.7,6,6,6h52c3.3,0,6-2.7,6-6V38C416,34.7,413.3,32,410,32z"},"children":[]}]};exports.hammer=hammer;var happyOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M387.469,289.593c-2.248-1.175-4.775-1.796-7.308-1.796c-5.956,0-11.358,3.287-14.104,8.588\r\n\t\tC347.804,331.731,304.605,352,256.004,352c-49.734,0-93.84-20.562-109.757-54.997c-2.589-5.589-8.244-9.199-14.407-9.199\r\n\t\tc-2.294,0-4.521,0.485-6.658,1.463c-7.926,3.674-11.397,13.117-7.734,21.057C138.454,355.765,194.135,384,256.004,384\r\n\t\tc60.34,0,114.604-27.281,138.241-73.055C398.254,303.184,395.201,293.598,387.469,289.593z"},"children":[{"name":"path","attribs":{"d":"M387.469,289.593c-2.248-1.175-4.775-1.796-7.308-1.796c-5.956,0-11.358,3.287-14.104,8.588\r\n\t\tC347.804,331.731,304.605,352,256.004,352c-49.734,0-93.84-20.562-109.757-54.997c-2.589-5.589-8.244-9.199-14.407-9.199\r\n\t\tc-2.294,0-4.521,0.485-6.658,1.463c-7.926,3.674-11.397,13.117-7.734,21.057C138.454,355.765,194.135,384,256.004,384\r\n\t\tc60.34,0,114.604-27.281,138.241-73.055C398.254,303.184,395.201,293.598,387.469,289.593z"},"children":[]}]},{"name":"path","attribs":{"d":"M412.793,231.174C402.312,217.593,389.024,208,368.137,208c-20.887,0-34.062,9.573-44.611,23.117\r\n\t\tc-5.502,7.062-4.525,16.633,3.746,22.207c2.914,1.963,6.347,2.676,9.928,2.676c5.395-0.001,10.507-2.109,13.67-6.179\r\n\t\tc3.45-4.435,7.707-9.821,17.268-9.821c9.61,0,13.832,5.361,17.23,9.777c3.178,4.104,8.305,6.223,13.717,6.223\r\n\t\tc3.581,0,7.007-0.708,9.922-2.683C416.558,248.185,418.257,238.25,412.793,231.174z"},"children":[{"name":"path","attribs":{"d":"M412.793,231.174C402.312,217.593,389.024,208,368.137,208c-20.887,0-34.062,9.573-44.611,23.117\r\n\t\tc-5.502,7.062-4.525,16.633,3.746,22.207c2.914,1.963,6.347,2.676,9.928,2.676c5.395-0.001,10.507-2.109,13.67-6.179\r\n\t\tc3.45-4.435,7.707-9.821,17.268-9.821c9.61,0,13.832,5.361,17.23,9.777c3.178,4.104,8.305,6.223,13.717,6.223\r\n\t\tc3.581,0,7.007-0.708,9.922-2.683C416.558,248.185,418.257,238.25,412.793,231.174z"},"children":[]}]},{"name":"path","attribs":{"d":"M188.792,231.174C178.312,217.593,165.024,208,144.137,208s-34.063,9.573-44.612,23.117\r\n\t\tc-5.501,7.062-4.525,16.633,3.747,22.207c2.914,1.963,6.346,2.676,9.927,2.676c5.395-0.001,10.507-2.109,13.669-6.179\r\n\t\tc3.451-4.435,7.708-9.821,17.269-9.821c9.61,0,13.832,5.361,17.23,9.777c3.177,4.104,8.304,6.223,13.716,6.223\r\n\t\tc3.582,0,7.007-0.708,9.922-2.683C192.558,248.185,194.257,238.25,188.792,231.174z"},"children":[{"name":"path","attribs":{"d":"M188.792,231.174C178.312,217.593,165.024,208,144.137,208s-34.063,9.573-44.612,23.117\r\n\t\tc-5.501,7.062-4.525,16.633,3.747,22.207c2.914,1.963,6.346,2.676,9.927,2.676c5.395-0.001,10.507-2.109,13.669-6.179\r\n\t\tc3.451-4.435,7.708-9.821,17.269-9.821c9.61,0,13.832,5.361,17.23,9.777c3.177,4.104,8.304,6.223,13.716,6.223\r\n\t\tc3.582,0,7.007-0.708,9.922-2.683C192.558,248.185,194.257,238.25,188.792,231.174z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[]}]}]}]};exports.happyOutline=happyOutline;var happy={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M103.272,253.324\r\n\t\tc-8.272-5.574-9.249-15.145-3.747-22.207C110.074,217.573,123.25,208,144.137,208s34.174,9.593,44.655,23.174\r\n\t\tc5.464,7.076,3.765,17.011-3.787,22.144c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.716-6.223\r\n\t\tc-3.398-4.416-7.621-9.777-17.23-9.777c-9.561,0-13.818,5.387-17.269,9.821c-3.163,4.069-8.274,6.178-13.669,6.179\r\n\t\tC109.618,256,106.186,255.287,103.272,253.324z M394.245,310.945C370.607,356.719,316.344,384,256.004,384\r\n\t\tc-61.869,0-117.55-28.235-138.556-73.677c-3.663-7.939-0.191-17.383,7.734-21.057c2.137-0.978,4.363-1.463,6.658-1.463\r\n\t\tc6.163,0,11.818,3.61,14.407,9.199C162.164,331.438,206.27,352,256.004,352c48.602,0,91.8-20.269,110.053-55.615\r\n\t\tc2.746-5.301,8.148-8.588,14.104-8.588c2.532,0,5.06,0.621,7.308,1.796C395.201,293.598,398.254,303.184,394.245,310.945z\r\n\t\t M409.006,253.317c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.717-6.223c-3.398-4.416-7.62-9.777-17.23-9.777\r\n\t\tc-9.561,0-13.817,5.387-17.268,9.821c-3.163,4.069-8.275,6.178-13.67,6.179c-3.581,0-7.014-0.713-9.928-2.676\r\n\t\tc-8.271-5.574-9.248-15.145-3.746-22.207C334.074,217.573,347.25,208,368.137,208c20.888,0,34.175,9.593,44.656,23.174\r\n\t\tC418.257,238.25,416.558,248.185,409.006,253.317z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M103.272,253.324\r\n\t\tc-8.272-5.574-9.249-15.145-3.747-22.207C110.074,217.573,123.25,208,144.137,208s34.174,9.593,44.655,23.174\r\n\t\tc5.464,7.076,3.765,17.011-3.787,22.144c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.716-6.223\r\n\t\tc-3.398-4.416-7.621-9.777-17.23-9.777c-9.561,0-13.818,5.387-17.269,9.821c-3.163,4.069-8.274,6.178-13.669,6.179\r\n\t\tC109.618,256,106.186,255.287,103.272,253.324z M394.245,310.945C370.607,356.719,316.344,384,256.004,384\r\n\t\tc-61.869,0-117.55-28.235-138.556-73.677c-3.663-7.939-0.191-17.383,7.734-21.057c2.137-0.978,4.363-1.463,6.658-1.463\r\n\t\tc6.163,0,11.818,3.61,14.407,9.199C162.164,331.438,206.27,352,256.004,352c48.602,0,91.8-20.269,110.053-55.615\r\n\t\tc2.746-5.301,8.148-8.588,14.104-8.588c2.532,0,5.06,0.621,7.308,1.796C395.201,293.598,398.254,303.184,394.245,310.945z\r\n\t\t M409.006,253.317c-2.915,1.975-6.341,2.683-9.922,2.683c-5.412,0-10.539-2.119-13.717-6.223c-3.398-4.416-7.62-9.777-17.23-9.777\r\n\t\tc-9.561,0-13.817,5.387-17.268,9.821c-3.163,4.069-8.275,6.178-13.67,6.179c-3.581,0-7.014-0.713-9.928-2.676\r\n\t\tc-8.271-5.574-9.248-15.145-3.746-22.207C334.074,217.573,347.25,208,368.137,208c20.888,0,34.175,9.593,44.656,23.174\r\n\t\tC418.257,238.25,416.558,248.185,409.006,253.317z"},"children":[]}]}]}]};exports.happy=happy;var headphone={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M447.4,238.2c-3.2-59.8-21.9-108.6-56-145.2c-0.1-0.1-0.1-0.1-0.2-0.2c-7.7-8.4-16.1-15.9-24.8-22.6\r\n\tc-9-6.9-18.6-13-28.5-18.1c-25.3-13.1-53-20-82.1-20c-29,0-56.6,6.9-81.9,20c-9.9,5.1-19.4,11.2-28.4,18.1\r\n\tc-8.7,6.7-17,14.2-24.7,22.6c-0.1,0.1-0.1,0.1-0.2,0.2c-34,36.6-52.7,85.5-55.9,145.2C61.9,288.9,68,368,77.7,400\r\n\tc20.3,67,40.4,80,72.1,80s58.2-26.4,58.2-58.9V315.1c0-32.5-23.3-59-53.3-59c-18,0-34,9.7-43.8,24.4c0,0-11.1-8.1-13.1-23\r\n\tc-2.1-14.9-3.1-32.4,5.6-63c8.7-30.5,20.8-20.2,35.6-39c2.5-3.3,5.2-6.4,8-9.5c3.2-3.4,6.4-6.7,9.8-9.7c1.6-1.5,3.2-2.8,4.8-4.2\r\n\tc11-9.3,21-17,33.7-22.8c18.9-8.6,39.4-13.3,60.5-13.3c21,0,41.7,4.7,60.7,13.3c12.7,5.8,22.9,13.5,33.9,22.8\r\n\tc1.6,1.4,3.2,2.7,4.8,4.2c3.4,3,6.6,6.3,9.8,9.7c2.8,3.1,5.5,6.2,8,9.5c14.8,18.8,26.9,8.5,35.6,39c8.7,30.5,7.6,48.1,5.6,63\r\n\tc-2.1,14.9-13.1,23-13.1,23c-9.8-14.7-25.7-24.4-43.8-24.4c-30,0-53.3,26.4-53.3,59v106.1c0,32.4,26.5,58.9,58.2,58.9\r\n\tc31.7,0,51.8-13,72.1-80C444,368,450.1,288.9,447.4,238.2z"},"children":[]}]};exports.headphone=headphone;var heartBroken={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M229,288c1-18,0-38,8-55c2-5,1-10,1-15c-4-21-14-40-15-60c0-1.39,1.004-4.771,1.005-6.157\r\n\t\tc-3.216,2.234-7.607,4.024-11.005,5.157c-20,6-17.51,2.573-34.51,13.573l-11.933,7.228c16.343-17.939,38.528-24.781,56.525-38.714\r\n\t\tc0.194-15.438,0.858-30.677,3.137-45.84C185.61,53.496,121.785,54.268,82.123,95.57c-45.497,47.344-45.497,124.101,0,171.445\r\n\t\tl152.849,159.096c-0.085-10.656-0.443-21.176-1.972-31.111C227,359,229,324,229,288z"},"children":[{"name":"path","attribs":{"d":"M229,288c1-18,0-38,8-55c2-5,1-10,1-15c-4-21-14-40-15-60c0-1.39,1.004-4.771,1.005-6.157\r\n\t\tc-3.216,2.234-7.607,4.024-11.005,5.157c-20,6-17.51,2.573-34.51,13.573l-11.933,7.228c16.343-17.939,38.528-24.781,56.525-38.714\r\n\t\tc0.194-15.438,0.858-30.677,3.137-45.84C185.61,53.496,121.785,54.268,82.123,95.57c-45.497,47.344-45.497,124.101,0,171.445\r\n\t\tl152.849,159.096c-0.085-10.656-0.443-21.176-1.972-31.111C227,359,229,324,229,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M322,301c-11-26-33-44-63-50c-0.85,0-1.879-0.543-2.936-1.319c-0.023,0.107-0.041,0.213-0.064,0.319c-11,48-23,94-21,142\r\n\t\tc0,12.227,3.983,25.117,3.833,38.131L256,448l104-108.25C345.153,329.271,330.428,318.621,322,301z"},"children":[{"name":"path","attribs":{"d":"M322,301c-11-26-33-44-63-50c-0.85,0-1.879-0.543-2.936-1.319c-0.023,0.107-0.041,0.213-0.064,0.319c-11,48-23,94-21,142\r\n\t\tc0,12.227,3.983,25.117,3.833,38.131L256,448l104-108.25C345.153,329.271,330.428,318.621,322,301z"},"children":[]}]},{"name":"path","attribs":{"d":"M429.874,95.57c-40.426-42.094-105.989-42.094-146.408,0L264,115.403c0.075,13.175,0.213,26.202-3,38.597\r\n\t\tc-2,10-19,19-16,31c3.003,13.213,8.166,25.705,10.732,38.559C271.014,232.084,284.771,242.896,297,256\r\n\t\tc22.801,26.766,37.747,57.459,65.283,81.371l67.591-70.355C475.375,219.671,475.375,142.914,429.874,95.57z"},"children":[{"name":"path","attribs":{"d":"M429.874,95.57c-40.426-42.094-105.989-42.094-146.408,0L264,115.403c0.075,13.175,0.213,26.202-3,38.597\r\n\t\tc-2,10-19,19-16,31c3.003,13.213,8.166,25.705,10.732,38.559C271.014,232.084,284.771,242.896,297,256\r\n\t\tc22.801,26.766,37.747,57.459,65.283,81.371l67.591-70.355C475.375,219.671,475.375,142.914,429.874,95.57z"},"children":[]}]}]}]};exports.heartBroken=heartBroken;var heart={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M429.9,95.6c-40.4-42.1-106-42.1-146.4,0L256,124.1l-27.5-28.6c-40.5-42.1-106-42.1-146.4,0c-45.5,47.3-45.5,124.1,0,171.4\r\n\t\tL256,448l173.9-181C475.4,219.7,475.4,142.9,429.9,95.6z"},"children":[{"name":"path","attribs":{"d":"M429.9,95.6c-40.4-42.1-106-42.1-146.4,0L256,124.1l-27.5-28.6c-40.5-42.1-106-42.1-146.4,0c-45.5,47.3-45.5,124.1,0,171.4\r\n\t\tL256,448l173.9-181C475.4,219.7,475.4,142.9,429.9,95.6z"},"children":[]}]}]}]};exports.heart=heart;var helpBuoy={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M434.3,184.5l-61.5,18.9\r\n\tc-6.3-14-15.1-26.8-26.3-38c-11.2-11.2-24-20-38-26.3l18.9-61.5c23.8,9.5,45.6,23.9,64.3,42.5C410.4,138.9,424.8,160.7,434.3,184.5z\r\n\t M256,352c-53,0-96-43-96-96c0-53,43-96,96-96s96,43,96,96C352,309,309,352,256,352z M120.2,120.2c18.7-18.7,40.5-33,64.3-42.5\r\n\tl18.9,61.5c-14,6.3-26.8,15.1-38,26.3c-11.2,11.2-20,24-26.3,38l-61.5-18.9C87.2,160.7,101.6,138.9,120.2,120.2z M77.7,327.5\r\n\tl61.5-18.9c6.3,14,15.1,26.8,26.3,38s24,20,38,26.3l-18.9,61.5c-23.8-9.5-45.6-23.9-64.3-42.5C101.6,373.1,87.2,351.3,77.7,327.5z\r\n\t M391.8,391.8c-18.7,18.7-40.5,33-64.3,42.5l-18.9-61.5c14-6.3,26.8-15.1,38-26.3s20-24,26.3-38l61.5,18.9\r\n\tC424.8,351.3,410.4,373.1,391.8,391.8z"},"children":[]}]};exports.helpBuoy=helpBuoy;var helpCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224c123.7,0,224-100.3,224-224S379.7,32,256,32z M276.2,358.7\r\n\t\tc-0.5,17.8-13.7,28.8-30.8,28.3c-16.4-0.5-29.3-12.2-28.8-30.1c0.5-17.8,14.1-29.1,30.5-28.6C264.3,328.8,276.8,340.9,276.2,358.7z\r\n\t\t M324.9,231.4c-4.2,5.9-13.6,13.5-25.4,22.7l-13.1,9c-6.4,4.9-10.4,10.7-12.5,17.3c-1.1,3.5-1.9,12.6-2.1,18.7\r\n\t\tc-0.1,1.2-0.8,3.9-4.5,3.9c-3.7,0-35,0-39.1,0c-4.1,0-4.6-2.4-4.5-3.6c0.6-16.6,3-30.3,9.9-41.3c9.3-14.8,35.5-30.4,35.5-30.4\r\n\t\tc4-3,7.1-6.2,9.5-9.7c4.4-6,8-12.7,8-19.9c0-8.3-2-16.2-7.3-22.8c-6.2-7.7-12.9-11.4-25.8-11.4c-12.7,0-20.1,6.4-25.4,14.8\r\n\t\tc-5.3,8.4-4.4,18.3-4.4,27.3H175c0-34,8.9-55.7,27.7-68.5c12.7-8.7,28.9-12.5,47.8-12.5c24.8,0,44.5,4.6,61.9,17.8\r\n\t\tc16.1,12.2,24.6,29.4,24.6,52.6C337,209.7,332,221.7,324.9,231.4z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224c123.7,0,224-100.3,224-224S379.7,32,256,32z M276.2,358.7\r\n\t\tc-0.5,17.8-13.7,28.8-30.8,28.3c-16.4-0.5-29.3-12.2-28.8-30.1c0.5-17.8,14.1-29.1,30.5-28.6C264.3,328.8,276.8,340.9,276.2,358.7z\r\n\t\t M324.9,231.4c-4.2,5.9-13.6,13.5-25.4,22.7l-13.1,9c-6.4,4.9-10.4,10.7-12.5,17.3c-1.1,3.5-1.9,12.6-2.1,18.7\r\n\t\tc-0.1,1.2-0.8,3.9-4.5,3.9c-3.7,0-35,0-39.1,0c-4.1,0-4.6-2.4-4.5-3.6c0.6-16.6,3-30.3,9.9-41.3c9.3-14.8,35.5-30.4,35.5-30.4\r\n\t\tc4-3,7.1-6.2,9.5-9.7c4.4-6,8-12.7,8-19.9c0-8.3-2-16.2-7.3-22.8c-6.2-7.7-12.9-11.4-25.8-11.4c-12.7,0-20.1,6.4-25.4,14.8\r\n\t\tc-5.3,8.4-4.4,18.3-4.4,27.3H175c0-34,8.9-55.7,27.7-68.5c12.7-8.7,28.9-12.5,47.8-12.5c24.8,0,44.5,4.6,61.9,17.8\r\n\t\tc16.1,12.2,24.6,29.4,24.6,52.6C337,209.7,332,221.7,324.9,231.4z"},"children":[]}]}]}]};exports.helpCircled=helpCircled;var help={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M345.1,77.1C317.6,56.2,286.6,49,247.3,49c-29.8,0-55.3,6.1-75.5,19.7C142,89,128,123.1,128,177h76.8\r\n\t\tc0-14.4-1.4-29.9,7-43.2c8.4-13.3,20.1-23.5,40.2-23.5c20.4,0,30.9,5.9,40.8,18.1c8.4,10.4,11.6,22.8,11.6,36\r\n\t\tc0,11.4-5.8,21.9-12.7,31.4c-3.8,5.6-8.8,10.6-15.1,15.4c0,0-41.5,24.7-56.1,48.1c-10.9,17.4-14.8,39.2-15.7,65.3\r\n\t\tc-0.1,1.9,0.6,5.8,7.2,5.8c6.5,0,56,0,61.8,0c5.8,0,7-4.4,7.1-6.2c0.4-9.5,1.6-24.1,3.3-29.6c3.3-10.4,9.7-19.5,19.7-27.3\r\n\t\tl20.7-14.3c18.7-14.6,33.6-26.5,40.2-35.9c11.3-15.4,19.2-34.4,19.2-56.9C384,123.5,370.5,96.4,345.1,77.1z M242,370.2\r\n\t\tc-25.9-0.8-47.3,17.2-48.2,45.3c-0.8,28.2,19.5,46.7,45.5,47.5c27,0.8,47.9-16.6,48.7-44.7C288.8,390.2,269,371,242,370.2z"},"children":[{"name":"path","attribs":{"d":"M345.1,77.1C317.6,56.2,286.6,49,247.3,49c-29.8,0-55.3,6.1-75.5,19.7C142,89,128,123.1,128,177h76.8\r\n\t\tc0-14.4-1.4-29.9,7-43.2c8.4-13.3,20.1-23.5,40.2-23.5c20.4,0,30.9,5.9,40.8,18.1c8.4,10.4,11.6,22.8,11.6,36\r\n\t\tc0,11.4-5.8,21.9-12.7,31.4c-3.8,5.6-8.8,10.6-15.1,15.4c0,0-41.5,24.7-56.1,48.1c-10.9,17.4-14.8,39.2-15.7,65.3\r\n\t\tc-0.1,1.9,0.6,5.8,7.2,5.8c6.5,0,56,0,61.8,0c5.8,0,7-4.4,7.1-6.2c0.4-9.5,1.6-24.1,3.3-29.6c3.3-10.4,9.7-19.5,19.7-27.3\r\n\t\tl20.7-14.3c18.7-14.6,33.6-26.5,40.2-35.9c11.3-15.4,19.2-34.4,19.2-56.9C384,123.5,370.5,96.4,345.1,77.1z M242,370.2\r\n\t\tc-25.9-0.8-47.3,17.2-48.2,45.3c-0.8,28.2,19.5,46.7,45.5,47.5c27,0.8,47.9-16.6,48.7-44.7C288.8,390.2,269,371,242,370.2z"},"children":[]}]}]}]};exports.help=help;var home={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"448,288 256,64 64,288 112,288 112,448 208,448 208,320 304,320 304,448 400,448 400,288 \t"},"children":[{"name":"polygon","attribs":{"points":"448,288 256,64 64,288 112,288 112,448 208,448 208,320 304,320 304,448 400,448 400,288 \t"},"children":[]}]}]}]};exports.home=home;var icecream={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"128,256 256,480 384,256 \t"},"children":[{"name":"polygon","attribs":{"points":"128,256 256,480 384,256 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M402.5,172.6c-0.8-0.4-1.5-0.8-2.3-1.3c-4.4-2.8-8.4-8.5-8.7-12.7l0.1-0.7c3.2-9,5-19.2,5-29.8c0-53.1-43-96.1-96.1-96.1\r\n\t\t\tc-31.4,0-59.2,15-76.8,38.3c0,0-9.1,14-10.8,29c0,0,1.1-19.4,4.2-31.5c-7.4-2.5-15.4-3.8-23.6-3.8c-41.7,0-75.6,33.8-75.6,75.6\r\n\t\t\tc0,6.4,0.8,12.6,2.3,18.5c0,0.4-0.1,0.7-0.2,1c-0.9,5.1-4,9.5-8.4,12.3c-0.7,0.5-1.5,0.9-2.2,1.3c-8.2,5-13.5,13.6-13.5,23.4\r\n\t\t\tc0,15.4,13.5,28,29.9,28h4.1h252h4.1c16.4,0,29.8-12.5,29.8-28C416,186.3,410.6,177.6,402.5,172.6z"},"children":[{"name":"path","attribs":{"d":"M402.5,172.6c-0.8-0.4-1.5-0.8-2.3-1.3c-4.4-2.8-8.4-8.5-8.7-12.7l0.1-0.7c3.2-9,5-19.2,5-29.8c0-53.1-43-96.1-96.1-96.1\r\n\t\t\tc-31.4,0-59.2,15-76.8,38.3c0,0-9.1,14-10.8,29c0,0,1.1-19.4,4.2-31.5c-7.4-2.5-15.4-3.8-23.6-3.8c-41.7,0-75.6,33.8-75.6,75.6\r\n\t\t\tc0,6.4,0.8,12.6,2.3,18.5c0,0.4-0.1,0.7-0.2,1c-0.9,5.1-4,9.5-8.4,12.3c-0.7,0.5-1.5,0.9-2.2,1.3c-8.2,5-13.5,13.6-13.5,23.4\r\n\t\t\tc0,15.4,13.5,28,29.9,28h4.1h252h4.1c16.4,0,29.8-12.5,29.8-28C416,186.3,410.6,177.6,402.5,172.6z"},"children":[]}]}]}]}]}]};exports.icecream=icecream;var image={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,224c26.5,0,48-21.5,48-48c0-26.5-21.5-48-48-48c-26.5,0-48,21.5-48,48C320,202.5,341.5,224,368,224z"},"children":[{"name":"path","attribs":{"d":"M368,224c26.5,0,48-21.5,48-48c0-26.5-21.5-48-48-48c-26.5,0-48,21.5-48,48C320,202.5,341.5,224,368,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M452,64H60c-15.6,0-28,12.7-28,28.3v327.4c0,15.6,12.4,28.3,28,28.3h392c15.6,0,28-12.7,28-28.3V92.3\r\n\t\tC480,76.7,467.6,64,452,64z M348.9,261.7c-3-3.5-7.6-6.2-12.8-6.2c-5.1,0-8.7,2.4-12.8,5.7l-18.7,15.8c-3.9,2.8-7,4.7-11.5,4.7\r\n\t\tc-4.3,0-8.2-1.6-11-4.1c-1-0.9-2.8-2.6-4.3-4.1L224,215.3c-4-4.6-10-7.5-16.7-7.5c-6.7,0-12.9,3.3-16.8,7.8L64,368.2V107.7\r\n\t\tc1-6.8,6.3-11.7,13.1-11.7h357.7c6.9,0,12.5,5.1,12.9,12l0.3,260.4L348.9,261.7z"},"children":[{"name":"path","attribs":{"d":"M452,64H60c-15.6,0-28,12.7-28,28.3v327.4c0,15.6,12.4,28.3,28,28.3h392c15.6,0,28-12.7,28-28.3V92.3\r\n\t\tC480,76.7,467.6,64,452,64z M348.9,261.7c-3-3.5-7.6-6.2-12.8-6.2c-5.1,0-8.7,2.4-12.8,5.7l-18.7,15.8c-3.9,2.8-7,4.7-11.5,4.7\r\n\t\tc-4.3,0-8.2-1.6-11-4.1c-1-0.9-2.8-2.6-4.3-4.1L224,215.3c-4-4.6-10-7.5-16.7-7.5c-6.7,0-12.9,3.3-16.8,7.8L64,368.2V107.7\r\n\t\tc1-6.8,6.3-11.7,13.1-11.7h357.7c6.9,0,12.5,5.1,12.9,12l0.3,260.4L348.9,261.7z"},"children":[]}]}]}]};exports.image=image;var images={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M457.6,140.2l-82.5-4l-4.8-53.8c-1-11.3-11.1-19.2-22.9-18.3L51.4,88.4c-11.8,1-20.3,10.5-19.4,21.7l21.2,235.8\r\n\t\t\tc1,11.3,11.2,19.2,22.9,18.3l15-1.2l-2.4,45.8c-0.6,12.6,9.2,22.8,22.4,23.5L441.3,448c13.2,0.6,24.1-8.6,24.8-21.2L480,163.5\r\n\t\t\tC480.6,151,470.7,140.8,457.6,140.2z M102.6,145.5l-7.1,134.8L78.1,305l-16-178c0-0.2,0-0.3,0-0.5s0-0.3,0-0.5\r\n\t\t\tc0.5-5,4.3-9,9.5-9.4l261-21.4c5.2-0.4,9.7,3,10.5,7.9c0,0.2,0.3,0.2,0.3,0.4c0,0.1,0.3,0.2,0.3,0.4l2.7,30.8l-219-10.5\r\n\t\t\tC114.2,123.8,103.2,133,102.6,145.5z M436.7,382.4l-46.7-55.3l-27.5-32.7c-2.4-2.9-6.3-5.3-10.6-5.5c-4.3-0.2-7.5,1.5-11.1,4.1\r\n\t\t\tl-16.4,11.9c-3.5,2.1-6.2,3.5-9.9,3.3c-3.6-0.2-6.8-1.6-9.1-3.8c-0.8-0.8-2.3-2.2-3.5-3.4l-42.8-48.9c-3.1-3.9-8.2-6.4-13.8-6.7\r\n\t\t\tc-5.7-0.3-11.2,2.1-14.8,5.6L129.4,359.8l-6.8,7.4l0.3-6.8l6.8-128.9l3.3-62.9c0-0.2,0-0.4,0-0.5c0-0.2,0-0.4,0-0.5\r\n\t\t\tc1.4-5.4,6.2-9.3,11.9-9l204.2,9.8l28.7,1.4l58.3,2.8c5.8,0.3,10.3,4.7,10.4,10.2c0,0.2,0.3,0.3,0.3,0.5c0,0.2,0.3,0.3,0.3,0.5\r\n\t\t\tL436.7,382.4z"},"children":[{"name":"path","attribs":{"d":"M457.6,140.2l-82.5-4l-4.8-53.8c-1-11.3-11.1-19.2-22.9-18.3L51.4,88.4c-11.8,1-20.3,10.5-19.4,21.7l21.2,235.8\r\n\t\t\tc1,11.3,11.2,19.2,22.9,18.3l15-1.2l-2.4,45.8c-0.6,12.6,9.2,22.8,22.4,23.5L441.3,448c13.2,0.6,24.1-8.6,24.8-21.2L480,163.5\r\n\t\t\tC480.6,151,470.7,140.8,457.6,140.2z M102.6,145.5l-7.1,134.8L78.1,305l-16-178c0-0.2,0-0.3,0-0.5s0-0.3,0-0.5\r\n\t\t\tc0.5-5,4.3-9,9.5-9.4l261-21.4c5.2-0.4,9.7,3,10.5,7.9c0,0.2,0.3,0.2,0.3,0.4c0,0.1,0.3,0.2,0.3,0.4l2.7,30.8l-219-10.5\r\n\t\t\tC114.2,123.8,103.2,133,102.6,145.5z M436.7,382.4l-46.7-55.3l-27.5-32.7c-2.4-2.9-6.3-5.3-10.6-5.5c-4.3-0.2-7.5,1.5-11.1,4.1\r\n\t\t\tl-16.4,11.9c-3.5,2.1-6.2,3.5-9.9,3.3c-3.6-0.2-6.8-1.6-9.1-3.8c-0.8-0.8-2.3-2.2-3.5-3.4l-42.8-48.9c-3.1-3.9-8.2-6.4-13.8-6.7\r\n\t\t\tc-5.7-0.3-11.2,2.1-14.8,5.6L129.4,359.8l-6.8,7.4l0.3-6.8l6.8-128.9l3.3-62.9c0-0.2,0-0.4,0-0.5c0-0.2,0-0.4,0-0.5\r\n\t\t\tc1.4-5.4,6.2-9.3,11.9-9l204.2,9.8l28.7,1.4l58.3,2.8c5.8,0.3,10.3,4.7,10.4,10.2c0,0.2,0.3,0.3,0.3,0.5c0,0.2,0.3,0.3,0.3,0.5\r\n\t\t\tL436.7,382.4z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M373.2,262.3c19.4,0,35.2-15.8,35.2-35.2s-15.7-35.2-35.2-35.2c-19.4,0-35.2,15.7-35.2,35.2S353.7,262.3,373.2,262.3z"},"children":[{"name":"path","attribs":{"d":"M373.2,262.3c19.4,0,35.2-15.8,35.2-35.2s-15.7-35.2-35.2-35.2c-19.4,0-35.2,15.7-35.2,35.2S353.7,262.3,373.2,262.3z"},"children":[]}]}]}]};exports.images=images;var informationCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,253C478.3,129.3,376.7,30.4,253,32S30.4,135.3,32,259c1.7,123.7,103.3,222.6,227,221C382.7,478.3,481.7,376.7,480,253\r\n\t\tz M256,111.9c17.7,0,32,14.3,32,32s-14.3,32-32,32c-17.7,0-32-14.3-32-32S238.3,111.9,256,111.9z M300,395h-88v-11h22V224h-22v-12\r\n\t\th66v172h22V395z"},"children":[{"name":"path","attribs":{"d":"M480,253C478.3,129.3,376.7,30.4,253,32S30.4,135.3,32,259c1.7,123.7,103.3,222.6,227,221C382.7,478.3,481.7,376.7,480,253\r\n\t\tz M256,111.9c17.7,0,32,14.3,32,32s-14.3,32-32,32c-17.7,0-32-14.3-32-32S238.3,111.9,256,111.9z M300,395h-88v-11h22V224h-22v-12\r\n\t\th66v172h22V395z"},"children":[]}]}]}]};exports.informationCircled=informationCircled;var information={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"288,448 288,192 192,192 192,208 224,208 224,448 192,448 192,464 320,464 320,448 \t"},"children":[{"name":"polygon","attribs":{"points":"288,448 288,192 192,192 192,208 224,208 224,448 192,448 192,464 320,464 320,448 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M255.8,144.5c26.6,0,48.2-21.6,48.2-48.2s-21.6-48.2-48.2-48.2c-26.6,0-48.2,21.6-48.2,48.2S229.2,144.5,255.8,144.5z"},"children":[{"name":"path","attribs":{"d":"M255.8,144.5c26.6,0,48.2-21.6,48.2-48.2s-21.6-48.2-48.2-48.2c-26.6,0-48.2,21.6-48.2,48.2S229.2,144.5,255.8,144.5z"},"children":[]}]}]}]};exports.information=information;var ionic={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M423.592,132.804C427.006,127.714,429,121.59,429,115c0-17.675-14.33-32-32-32c-6.59,0-12.714,1.994-17.805,5.409\r\n\t\tC344.709,63.015,302.11,48,256,48C141.125,48,48,141.125,48,256c0,114.877,93.125,208,208,208c114.873,0,208-93.123,208-208\r\n\t\tC464,209.889,448.984,167.29,423.592,132.804z M391.83,391.832c-17.646,17.646-38.191,31.499-61.064,41.174\r\n\t\tc-23.672,10.012-48.826,15.089-74.766,15.089c-25.94,0-51.095-5.077-74.767-15.089c-22.873-9.675-43.417-23.527-61.064-41.174\r\n\t\ts-31.5-38.191-41.174-61.064C68.982,307.096,63.905,281.94,63.905,256c0-25.94,5.077-51.095,15.089-74.767\r\n\t\tc9.674-22.873,23.527-43.417,41.174-61.064s38.191-31.5,61.064-41.174C204.905,68.982,230.06,63.905,256,63.905\r\n\t\tc25.939,0,51.094,5.077,74.766,15.089c13.446,5.687,26.08,12.83,37.802,21.327C366.293,104.719,365,109.707,365,115\r\n\t\tc0,17.675,14.327,32,32,32c5.293,0,10.28-1.293,14.678-3.568c8.498,11.721,15.641,24.355,21.327,37.801\r\n\t\tc10.013,23.672,15.09,48.827,15.09,74.767c0,25.939-5.077,51.096-15.09,74.768C423.33,353.641,409.478,374.186,391.83,391.832z"},"children":[{"name":"path","attribs":{"d":"M423.592,132.804C427.006,127.714,429,121.59,429,115c0-17.675-14.33-32-32-32c-6.59,0-12.714,1.994-17.805,5.409\r\n\t\tC344.709,63.015,302.11,48,256,48C141.125,48,48,141.125,48,256c0,114.877,93.125,208,208,208c114.873,0,208-93.123,208-208\r\n\t\tC464,209.889,448.984,167.29,423.592,132.804z M391.83,391.832c-17.646,17.646-38.191,31.499-61.064,41.174\r\n\t\tc-23.672,10.012-48.826,15.089-74.766,15.089c-25.94,0-51.095-5.077-74.767-15.089c-22.873-9.675-43.417-23.527-61.064-41.174\r\n\t\ts-31.5-38.191-41.174-61.064C68.982,307.096,63.905,281.94,63.905,256c0-25.94,5.077-51.095,15.089-74.767\r\n\t\tc9.674-22.873,23.527-43.417,41.174-61.064s38.191-31.5,61.064-41.174C204.905,68.982,230.06,63.905,256,63.905\r\n\t\tc25.939,0,51.094,5.077,74.766,15.089c13.446,5.687,26.08,12.83,37.802,21.327C366.293,104.719,365,109.707,365,115\r\n\t\tc0,17.675,14.327,32,32,32c5.293,0,10.28-1.293,14.678-3.568c8.498,11.721,15.641,24.355,21.327,37.801\r\n\t\tc10.013,23.672,15.09,48.827,15.09,74.767c0,25.939-5.077,51.096-15.09,74.768C423.33,353.641,409.478,374.186,391.83,391.832z"},"children":[]}]},{"name":"circle","attribs":{"cx":"256.003","cy":"256","r":"96"},"children":[{"name":"circle","attribs":{"cx":"256.003","cy":"256","r":"96"},"children":[]}]}]}]};exports.ionic=ionic;var iosAlarmOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.5,10.4c-25.7-19.4-57-32-91-34.9v-0.1c0-8.5-7-15.5-15.5-15.5\r\n\t\t\tc-8.5,0-15.5,7-15.5,15.5v0.1c-33.9,2.9-65.1,15.5-90.7,34.9l-10.4-10.4l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1\r\n\t\t\tc-1.6,0-3.2,0.1-4.8,0.1c-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2\r\n\t\t\tc0,43.9,16.2,84,43,114.7l-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0\r\n\t\t\tc47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1L389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5\r\n\t\t\tL438.4,192.4z M76.2,167.8c-4.2-8.6-6.4-18.4-6.5-28c-0.1-35.1,28.4-64.6,65.5-66.8c12.7-0.7,23.1,1.4,32.1,6.1L76.2,167.8z\r\n\t\t\t M415.9,276.5c0,87.7-72,157.1-160.1,157.1C167.8,433.6,96,364.2,96,276.5c0-87.7,71.8-158.7,159.9-158.7\r\n\t\t\tC344,117.8,415.9,188.7,415.9,276.5z M344.7,79.2c8.8-4.8,19.3-6.8,32.1-6.1c37.2,2,65.6,31.5,65.5,66.8c0,9.6-2.3,19.4-6.5,28.1\r\n\t\t\tL344.7,79.2z"},"children":[{"name":"path","attribs":{"d":"M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.5,10.4c-25.7-19.4-57-32-91-34.9v-0.1c0-8.5-7-15.5-15.5-15.5\r\n\t\t\tc-8.5,0-15.5,7-15.5,15.5v0.1c-33.9,2.9-65.1,15.5-90.7,34.9l-10.4-10.4l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1\r\n\t\t\tc-1.6,0-3.2,0.1-4.8,0.1c-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2\r\n\t\t\tc0,43.9,16.2,84,43,114.7l-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0\r\n\t\t\tc47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1L389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5\r\n\t\t\tL438.4,192.4z M76.2,167.8c-4.2-8.6-6.4-18.4-6.5-28c-0.1-35.1,28.4-64.6,65.5-66.8c12.7-0.7,23.1,1.4,32.1,6.1L76.2,167.8z\r\n\t\t\t M415.9,276.5c0,87.7-72,157.1-160.1,157.1C167.8,433.6,96,364.2,96,276.5c0-87.7,71.8-158.7,159.9-158.7\r\n\t\t\tC344,117.8,415.9,188.7,415.9,276.5z M344.7,79.2c8.8-4.8,19.3-6.8,32.1-6.1c37.2,2,65.6,31.5,65.5,66.8c0,9.6-2.3,19.4-6.5,28.1\r\n\t\t\tL344.7,79.2z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"points":"256,160 256,288 160,288 160,304 272,304 272,160 \t"},"children":[{"name":"polygon","attribs":{"points":"256,160 256,288 160,288 160,304 272,304 272,160 \t"},"children":[]}]}]}]};exports.iosAlarmOutline=iosAlarmOutline;var iosAlarm={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.6,10.4c-25.7-19.4-57.2-32-91.2-34.9v-0.1c0-8.5-7-15.5-15.5-15.5s-15.5,7-15.5,15.5\r\n\t\tv0.1c-34,2.9-65,15.5-90.6,34.9L139,128.6l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1c-1.6,0-3.2,0.1-4.8,0.1\r\n\t\tc-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2c0,43.9,16.2,84,43,114.7\r\n\t\tl-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0c47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1\r\n\t\tL389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5L438.4,192.4z M272,304H160v-16h96V160h16V304z"},"children":[{"name":"path","attribs":{"d":"M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.6,10.4c-25.7-19.4-57.2-32-91.2-34.9v-0.1c0-8.5-7-15.5-15.5-15.5s-15.5,7-15.5,15.5\r\n\t\tv0.1c-34,2.9-65,15.5-90.6,34.9L139,128.6l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1c-1.6,0-3.2,0.1-4.8,0.1\r\n\t\tc-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2c0,43.9,16.2,84,43,114.7\r\n\t\tl-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0c47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1\r\n\t\tL389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5L438.4,192.4z M272,304H160v-16h96V160h16V304z"},"children":[]}]}]}]};exports.iosAlarm=iosAlarm;var iosAlbumsOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M464,144v288H48V144H464 M480,128H32v320h448V128L480,128z"},"children":[{"name":"path","attribs":{"d":"M464,144v288H48V144H464 M480,128H32v320h448V128L480,128z"},"children":[]}]},{"name":"rect","attribs":{"x":"72","y":"96","width":"368","height":"16"},"children":[{"name":"rect","attribs":{"x":"72","y":"96","width":"368","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"104","y":"64","width":"304","height":"16"},"children":[{"name":"rect","attribs":{"x":"104","y":"64","width":"304","height":"16"},"children":[]}]}]}]};exports.iosAlbumsOutline=iosAlbumsOutline;var iosAlbums={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,128H32v320h448V128L480,128z"},"children":[{"name":"path","attribs":{"d":"M480,128H32v320h448V128L480,128z"},"children":[]}]},{"name":"rect","attribs":{"x":"72","y":"96","width":"368","height":"16"},"children":[{"name":"rect","attribs":{"x":"72","y":"96","width":"368","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"104","y":"64","width":"304","height":"16"},"children":[{"name":"rect","attribs":{"x":"104","y":"64","width":"304","height":"16"},"children":[]}]}]}]};exports.iosAlbums=iosAlbums;var iosAmericanfootballOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M378.605,133.395C305.902,60.691,189.38,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.149,464c38.926,0,65.192-3.658,65.192-3.658\r\n\t\tS490.326,245.116,378.605,133.395z M65.142,65.208C76.137,64.194,94.374,63,116.856,63H117l-0.068-0.071\r\n\t\tc27.167,0,53.167,1.754,77.792,5.22l-126.6,126.581c-1.025-7.283-1.91-14.697-2.64-22.246\r\n\t\tC60.898,125.049,63.398,84.256,65.142,65.208z M143.9,368.102c-23.85-23.852-42.793-54.938-56.304-92.396\r\n\t\tc-6.973-19.332-12.51-40.373-16.57-62.866L212.838,71.05c10.672,1.929,21.064,4.191,31.141,6.804\r\n\t\tc52.027,13.492,93.783,35.708,124.139,66.064c23.851,23.85,42.786,54.928,56.297,92.386c6.974,19.333,12.509,40.375,16.567,62.871\r\n\t\tL299.17,440.986c-10.66-1.93-21.041-4.191-31.104-6.801C216.036,420.696,174.26,398.459,143.9,368.102z M446.861,446.868\r\n\t\tc-10.994,1.012-29.23,2.275-51.71,2.275c-27.192,0-53.225-1.77-77.876-5.25l126.607-126.607c1.024,7.279,1.908,14.688,2.638,22.233\r\n\t\tC451.108,386.956,448.606,427.817,446.861,446.868z"},"children":[{"name":"path","attribs":{"d":"M378.605,133.395C305.902,60.691,189.38,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.149,464c38.926,0,65.192-3.658,65.192-3.658\r\n\t\tS490.326,245.116,378.605,133.395z M65.142,65.208C76.137,64.194,94.374,63,116.856,63H117l-0.068-0.071\r\n\t\tc27.167,0,53.167,1.754,77.792,5.22l-126.6,126.581c-1.025-7.283-1.91-14.697-2.64-22.246\r\n\t\tC60.898,125.049,63.398,84.256,65.142,65.208z M143.9,368.102c-23.85-23.852-42.793-54.938-56.304-92.396\r\n\t\tc-6.973-19.332-12.51-40.373-16.57-62.866L212.838,71.05c10.672,1.929,21.064,4.191,31.141,6.804\r\n\t\tc52.027,13.492,93.783,35.708,124.139,66.064c23.851,23.85,42.786,54.928,56.297,92.386c6.974,19.333,12.509,40.375,16.567,62.871\r\n\t\tL299.17,440.986c-10.66-1.93-21.041-4.191-31.104-6.801C216.036,420.696,174.26,398.459,143.9,368.102z M446.861,446.868\r\n\t\tc-10.994,1.012-29.23,2.275-51.71,2.275c-27.192,0-53.225-1.77-77.876-5.25l126.607-126.607c1.024,7.279,1.908,14.688,2.638,22.233\r\n\t\tC451.108,386.956,448.606,427.817,446.861,446.868z"},"children":[]}]},{"name":"polygon","attribs":{"points":"307.304,317.847 329.929,340.479 301.275,369.131 312.59,380.445 380.471,312.564 369.157,301.25 340.436,329.971 \r\n\t\t317.811,307.34 346.527,278.623 335.214,267.31 306.499,296.024 283.866,273.386 312.568,244.684 301.255,233.37 272.555,262.07 \r\n\t\t249.929,239.439 278.626,210.742 267.312,199.429 238.618,228.124 215.987,205.487 244.674,176.8 233.361,165.487 204.676,194.172 \r\n\t\t182.052,171.542 210.734,142.86 199.421,131.547 131.538,199.429 142.852,210.743 171.545,182.049 194.169,204.679 165.478,233.37 \r\n\t\t176.791,244.683 205.48,215.994 228.11,238.631 199.432,267.31 210.745,278.623 239.422,249.946 262.048,272.577 233.374,301.251 \r\n\t\t244.688,312.564 273.359,283.893 295.992,306.531 267.332,335.191 278.646,346.505 \t"},"children":[{"name":"polygon","attribs":{"points":"307.304,317.847 329.929,340.479 301.275,369.131 312.59,380.445 380.471,312.564 369.157,301.25 340.436,329.971 \r\n\t\t317.811,307.34 346.527,278.623 335.214,267.31 306.499,296.024 283.866,273.386 312.568,244.684 301.255,233.37 272.555,262.07 \r\n\t\t249.929,239.439 278.626,210.742 267.312,199.429 238.618,228.124 215.987,205.487 244.674,176.8 233.361,165.487 204.676,194.172 \r\n\t\t182.052,171.542 210.734,142.86 199.421,131.547 131.538,199.429 142.852,210.743 171.545,182.049 194.169,204.679 165.478,233.37 \r\n\t\t176.791,244.683 205.48,215.994 228.11,238.631 199.432,267.31 210.745,278.623 239.422,249.946 262.048,272.577 233.374,301.251 \r\n\t\t244.688,312.564 273.359,283.893 295.992,306.531 267.332,335.191 278.646,346.505 \t"},"children":[]}]}]}]};exports.iosAmericanfootballOutline=iosAmericanfootballOutline;var iosAmericanfootball={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M378.605,133.395C305.902,60.691,189.381,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.148,464c38.927,0,65.193-3.658,65.193-3.658\r\n\t\t\tS490.327,245.116,378.605,133.395z M68.124,194.728L194.707,68.146c6.123,0.861,12.164,1.825,18.112,2.899L71.025,212.838\r\n\t\t\tC69.955,206.901,68.987,200.862,68.124,194.728z M267.312,335.195l28.688-28.688l-22.627-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.688-28.688l-22.627-22.627l-28.688,28.688l-11.313-11.312l28.688-28.688l-22.628-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.689-28.689l-22.628-22.627l-28.688,28.688l-11.314-11.313l67.884-67.883l11.313,11.314l-28.688,28.688l22.628,22.627\r\n\t\t\tl28.688-28.688l11.313,11.313l-28.688,28.688l22.628,22.628l28.688-28.688l11.314,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.313,11.312l-28.688,28.688l22.628,22.628l28.688-28.688l11.312,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.314,11.312l-67.883,67.884l-11.313-11.313l28.688-28.688l-22.628-22.628l-28.688,28.688L267.312,335.195z\r\n\t\t\t M317.259,443.891c-6.121-0.863-12.159-1.83-18.104-2.906L440.979,299.16c1.071,5.938,2.038,11.977,2.901,18.111L317.259,443.891z\r\n\t\t\t"},"children":[{"name":"path","attribs":{"d":"M378.605,133.395C305.902,60.691,189.381,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.148,464c38.927,0,65.193-3.658,65.193-3.658\r\n\t\t\tS490.327,245.116,378.605,133.395z M68.124,194.728L194.707,68.146c6.123,0.861,12.164,1.825,18.112,2.899L71.025,212.838\r\n\t\t\tC69.955,206.901,68.987,200.862,68.124,194.728z M267.312,335.195l28.688-28.688l-22.627-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.688-28.688l-22.627-22.627l-28.688,28.688l-11.313-11.312l28.688-28.688l-22.628-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.689-28.689l-22.628-22.627l-28.688,28.688l-11.314-11.313l67.884-67.883l11.313,11.314l-28.688,28.688l22.628,22.627\r\n\t\t\tl28.688-28.688l11.313,11.313l-28.688,28.688l22.628,22.628l28.688-28.688l11.314,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.313,11.312l-28.688,28.688l22.628,22.628l28.688-28.688l11.312,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.314,11.312l-67.883,67.884l-11.313-11.313l28.688-28.688l-22.628-22.628l-28.688,28.688L267.312,335.195z\r\n\t\t\t M317.259,443.891c-6.121-0.863-12.159-1.83-18.104-2.906L440.979,299.16c1.071,5.938,2.038,11.977,2.901,18.111L317.259,443.891z\r\n\t\t\t"},"children":[]}]}]}]}]}]};exports.iosAmericanfootball=iosAmericanfootball;var iosAnalyticsOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48c28.087,0,55.325,5.497,80.958,16.339c24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12\r\n\t\tC458.503,200.675,464,227.913,464,256s-5.497,55.325-16.339,80.958c-10.476,24.767-25.476,47.013-44.583,66.12\r\n\t\ts-41.354,34.107-66.12,44.583C311.325,458.503,284.087,464,256,464s-55.325-5.497-80.958-16.339\r\n\t\tc-24.767-10.476-47.013-25.476-66.12-44.583s-34.107-41.354-44.583-66.12C53.497,311.325,48,284.087,48,256\r\n\t\ts5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12s41.354-34.107,66.12-44.583\r\n\t\tC200.675,53.497,227.913,48,256,48 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224\r\n\t\tS379.712,32,256,32L256,32z"},"children":[{"name":"path","attribs":{"d":"M256,48c28.087,0,55.325,5.497,80.958,16.339c24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12\r\n\t\tC458.503,200.675,464,227.913,464,256s-5.497,55.325-16.339,80.958c-10.476,24.767-25.476,47.013-44.583,66.12\r\n\t\ts-41.354,34.107-66.12,44.583C311.325,458.503,284.087,464,256,464s-55.325-5.497-80.958-16.339\r\n\t\tc-24.767-10.476-47.013-25.476-66.12-44.583s-34.107-41.354-44.583-66.12C53.497,311.325,48,284.087,48,256\r\n\t\ts5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12s41.354-34.107,66.12-44.583\r\n\t\tC200.675,53.497,227.913,48,256,48 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224\r\n\t\tS379.712,32,256,32L256,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M107.776,320c-25.252,0-41.168-18.448-41.902-19.317c-2.841-3.359-2.401-8.371,0.982-11.192\r\n\t\tc3.374-2.813,8.401-2.388,11.248,0.948c0.604,0.701,14.606,16.597,35.606,13.186c12.104-1.964,28.08-25.681,38.652-41.376\r\n\t\tc4.251-6.311,7.922-11.761,11.215-15.856c16.773-20.865,33.899-23.333,45.325-21.726c24.139,3.394,44.358,27.498,53.689,49.882\r\n\t\tc7.454,17.884,19.042,28.256,32.628,29.208c15.408,1.061,31.539-9.885,43.105-29.336c1.228-2.064,2.562-4.496,3.978-7.07\r\n\t\tc9.482-17.262,23.814-43.35,51.75-43.35c31.146,0,51.957,34.286,52.828,35.746c2.252,3.774,0.996,8.648-2.806,10.885\r\n\t\tc-3.8,2.237-8.708,0.988-10.96-2.786c-0.037-0.062-4.493-7.413-11.859-14.568c-6.286-6.107-16.108-13.387-27.203-13.387\r\n\t\tc-18.438,0-29.121,19.445-37.705,35.07c-1.48,2.696-2.88,5.243-4.245,7.538c-14.718,24.751-36.4,38.635-58.01,37.108\r\n\t\tc-19.951-1.398-36.389-15.242-46.284-38.98c-10.013-24.02-28.279-38.417-41.149-40.228c-10.6-1.494-20.895,3.861-30.578,15.906\r\n\t\tc-2.872,3.573-6.539,9.017-10.421,14.779c-13.549,20.114-30.411,45.146-49.37,48.223C113.349,319.784,110.507,320,107.776,320z"},"children":[{"name":"path","attribs":{"d":"M107.776,320c-25.252,0-41.168-18.448-41.902-19.317c-2.841-3.359-2.401-8.371,0.982-11.192\r\n\t\tc3.374-2.813,8.401-2.388,11.248,0.948c0.604,0.701,14.606,16.597,35.606,13.186c12.104-1.964,28.08-25.681,38.652-41.376\r\n\t\tc4.251-6.311,7.922-11.761,11.215-15.856c16.773-20.865,33.899-23.333,45.325-21.726c24.139,3.394,44.358,27.498,53.689,49.882\r\n\t\tc7.454,17.884,19.042,28.256,32.628,29.208c15.408,1.061,31.539-9.885,43.105-29.336c1.228-2.064,2.562-4.496,3.978-7.07\r\n\t\tc9.482-17.262,23.814-43.35,51.75-43.35c31.146,0,51.957,34.286,52.828,35.746c2.252,3.774,0.996,8.648-2.806,10.885\r\n\t\tc-3.8,2.237-8.708,0.988-10.96-2.786c-0.037-0.062-4.493-7.413-11.859-14.568c-6.286-6.107-16.108-13.387-27.203-13.387\r\n\t\tc-18.438,0-29.121,19.445-37.705,35.07c-1.48,2.696-2.88,5.243-4.245,7.538c-14.718,24.751-36.4,38.635-58.01,37.108\r\n\t\tc-19.951-1.398-36.389-15.242-46.284-38.98c-10.013-24.02-28.279-38.417-41.149-40.228c-10.6-1.494-20.895,3.861-30.578,15.906\r\n\t\tc-2.872,3.573-6.539,9.017-10.421,14.779c-13.549,20.114-30.411,45.146-49.37,48.223C113.349,319.784,110.507,320,107.776,320z"},"children":[]}]}]}]};exports.iosAnalyticsOutline=iosAnalyticsOutline;var iosAnalytics={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C141.174,32,46.544,118.404,33.54,229.739C32.534,238.354,32,247.114,32,256c0,1.783,0.026,3.561,0.067,5.333\r\n\tC34.901,382.581,134.071,480,256,480c105.255,0,193.537-72.602,217.542-170.454c1.337-5.451,2.474-10.979,3.404-16.579\r\n\tC478.943,280.939,480,268.594,480,256C480,132.288,379.712,32,256,32z M462.585,280.352c-7.265-7.807-13.064-16.09-15.702-20.429\r\n\tc-0.871-1.47-21.682-35.994-52.828-35.994c-27.937,0-42.269,26.269-51.751,43.65c-1.415,2.593-2.75,5.041-3.978,7.118\r\n\tc-11.566,19.587-27.693,30.608-43.105,29.541c-13.586-0.959-25.174-11.403-32.628-29.41c-9.331-22.54-29.551-46.812-53.689-50.229\r\n\tc-11.428-1.619-28.553,0.866-45.325,21.876c-3.293,4.124-6.964,9.612-11.215,15.967c-10.572,15.804-26.549,39.686-38.653,41.663\r\n\tc-21.02,3.438-35.021-12.596-35.583-13.249l-0.487-0.58l-0.587-0.479c-0.208-0.17-15.041-12.417-29.047-33.334\r\n\tc0-0.155-0.006-0.31-0.006-0.464c0-28.087,5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12\r\n\ts41.354-34.107,66.12-44.583C200.675,53.497,227.913,48,256,48s55.325,5.497,80.958,16.339\r\n\tc24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12C458.503,200.675,464,227.913,464,256\r\n\tC464,264.197,463.518,272.318,462.585,280.352z"},"children":[]}]};exports.iosAnalytics=iosAnalytics;var iosArrowBack={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"352,128.4 319.7,96 160,256 160,256 160,256 319.7,416 352,383.6 224.7,256 "},"children":[]}]};exports.iosArrowBack=iosArrowBack;var iosArrowDown={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"396.6,160 416,180.7 256,352 96,180.7 115.3,160 256,310.5 "},"children":[]}]};exports.iosArrowDown=iosArrowDown;var iosArrowForward={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"160,128.4 192.3,96 352,256 352,256 352,256 192.3,416 160,383.6 287.3,256 "},"children":[]}]};exports.iosArrowForward=iosArrowForward;var iosArrowLeft={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"352,115.4 331.3,96 160,256 331.3,416 352,396.7 201.5,256 "},"children":[]}]};exports.iosArrowLeft=iosArrowLeft;var iosArrowRight={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"160,115.4 180.7,96 352,256 180.7,416 160,396.7 310.5,256 "},"children":[]}]};exports.iosArrowRight=iosArrowRight;var iosArrowThinDown={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M349.7,322.2c-3.1-3.1-8-3-11.3,0L264,388.6V104c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v284.6l-74.4-66.3\r\n\tc-3.4-2.9-8.1-3.2-11.2-0.1c-3.1,3.1-3.3,8.5-0.1,11.4c0,0,87,79.2,88,80s2.8,2.4,5.7,2.4s4.9-1.6,5.7-2.4s88-80,88-80\r\n\tc1.5-1.5,2.3-3.6,2.3-5.7C352,325.8,351.2,323.8,349.7,322.2z"},"children":[]}]};exports.iosArrowThinDown=iosArrowThinDown;var iosArrowThinLeft={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M189.8,349.7c3.1-3.1,3-8,0-11.3L123.4,264H408c4.4,0,8-3.6,8-8c0-4.4-3.6-8-8-8H123.4l66.3-74.4c2.9-3.4,3.2-8.1,0.1-11.2\r\n\tc-3.1-3.1-8.5-3.3-11.4-0.1c0,0-79.2,87-80,88S96,253.1,96,256s1.6,4.9,2.4,5.7s80,88,80,88c1.5,1.5,3.6,2.3,5.7,2.3\r\n\tC186.2,352,188.2,351.2,189.8,349.7z"},"children":[]}]};exports.iosArrowThinLeft=iosArrowThinLeft;var iosArrowThinRight={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M322.2,349.7c-3.1-3.1-3-8,0-11.3l66.4-74.4H104c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8h284.6l-66.3-74.4\r\n\tc-2.9-3.4-3.2-8.1-0.1-11.2c3.1-3.1,8.5-3.3,11.4-0.1c0,0,79.2,87,80,88s2.4,2.8,2.4,5.7s-1.6,4.9-2.4,5.7s-80,88-80,88\r\n\tc-1.5,1.5-3.6,2.3-5.7,2.3C325.8,352,323.8,351.2,322.2,349.7z"},"children":[]}]};exports.iosArrowThinRight=iosArrowThinRight;var iosArrowThinUp={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M349.7,189.8c-3.1,3.1-8,3-11.3,0L264,123.4V408c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V123.4l-74.4,66.3\r\n\tc-3.4,2.9-8.1,3.2-11.2,0.1c-3.1-3.1-3.3-8.5-0.1-11.4c0,0,87-79.2,88-80s2.8-2.4,5.7-2.4s4.9,1.6,5.7,2.4s88,80,88,80\r\n\tc1.5,1.5,2.3,3.6,2.3,5.7C352,186.2,351.2,188.2,349.7,189.8z"},"children":[]}]};exports.iosArrowThinUp=iosArrowThinUp;var iosArrowUp={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"396.6,352 416,331.3 256,160 96,331.3 115.3,352 256,201.5 "},"children":[]}]};exports.iosArrowUp=iosArrowUp;var iosAtOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M364.4,320.9c-5.3,7.5-11.6,14.7-18.8,21.4c-7.1,6.6-15.1,12.5-23.7,17.4c-8.6,4.9-17.9,8.8-27.5,11.5s-19.8,4.1-30.3,4.1\r\n\t\tc-15.9,0-31.2-2.6-45.5-7.6c-14.2-5-26.8-12.5-37.5-22.4c-10.7-9.8-21.7-25.9-28.2-41c-5.8-13.4-8.1-27.8-8.1-49.5\r\n\t\tc0-15.6,3.6-33,9.8-47.6c6-14,14.3-26.4,24.9-36.9c10.4-10.3,23-18.6,37.6-24.8c13.1-5.5,28.5-8.2,47.1-8.2c14.9,0,29,2.4,41.9,7\r\n\t\tc12.8,4.6,23.9,11.2,33.1,19.6c8.7,7.9,14,17.4,19.7,30.2c5,11.2,6.8,20.9,6.8,35.9c0,12.4-2.2,24.1-6.5,34.9\r\n\t\tc-4.3,10.6-7.5,17-14,25c-6.6,7.9-10.6,12.7-18.1,17.1c-8.6,5-15.3,7.4-21,7.4c-3.6,0-6.3-0.7-7.8-2c-1.5-1.3-2.4-3-2.7-5.4\r\n\t\tc-0.4-2.8-0.1-6.3,1-10.4c1.1-4.4,2.8-8.6,4.9-13.7L339.4,181h-17.8l-6.2,16.5c-3.8-6.1-9.1-11.5-15.9-15.5\r\n\t\tc-10.5-6.1-19.5-8.8-31.2-8.8c-13.5,0-26,3.5-37.2,10.4c-11,6.8-20.5,15.6-28.2,26.3c-7.5,10.3-9.3,15.7-12.9,26.4l-0.6,1.7\r\n\t\tc-4.2,12.4-6.3,24.6-6.3,36.2c0,7.7,1.4,15,4.1,21.8c2.7,6.8,6.4,12.8,11.1,17.8c4.7,5.1,10.4,9.1,16.9,12.1s13.7,4.5,21.3,4.5\r\n\t\tc8.5,0,16.6-1.4,26.1-4.7c6.3-2.2,11.9-5.8,17.4-11.4c1,3.2,2.7,6,5.3,8.5c5,5,11.7,7.6,19.9,7.6c8.6,0,17.8-3,29-9.3\r\n\t\tc9.9-5.6,15.7-12,23.3-21.1c8.2-9.8,12.3-18,16.9-29.7c5-12.5,7.5-26,7.5-40.3c0-18-2.4-30.2-8.5-43.6c-6.6-14.3-13.2-25.8-24-35.4\r\n\t\tc-10.9-9.6-23.9-17.1-38.5-22.3c-14.5-5.1-30.3-7.7-46.7-7.7c-20.1,0-37.2,3-52.2,9.1c-16.5,6.7-30.9,16-43,27.6\r\n\t\tc-12.2,11.8-22,25.9-29,41.9c-7.3,16.6-11.4,36.7-11.4,55.1c0,25.1,3.1,42.6,10.3,58.4c8,17.3,21,35.4,33.3,46\r\n\t\tc12.6,10.9,27.1,19.1,43.2,24.2c15.9,5.1,32.3,7.7,48.8,7.7c11.4,0,22.8-1.6,34-4.6c11.2-3.1,22-7.4,32.1-13.1\r\n\t\tc10.1-5.6,19.5-12.5,28.2-20.6c8.6-8.1,18.6-20.8,22-26.9c1.3-2.4,2.2-4.3,2.9-5.8h-18.5L364.4,320.9z M275.8,294.4\r\n\t\tc-4.4,5.6-7.7,9.5-11.8,12.2c-4.4,3-7.9,4.9-12.4,5.9c-4.6,1.2-9.3,1.7-13.7,1.7c-5.6,0-10.8-1-15.4-3c-4.7-2-8.7-4.8-12.1-8.4\r\n\t\tc-3.4-3.6-6.1-7.9-8.1-12.7c-1.9-4.8-2.9-10.2-2.9-16c0-9.5,1.8-19.7,5.3-30.3c0.4-1.2,0.8-2.4,1.1-3.4c2.8-8.6,4.3-11.5,9.5-20\r\n\t\tc5.7-9.4,14.1-16.6,23-22.5c8.6-5.8,18.2-8.7,28.5-8.7c4.2,0,8.6,0.5,13.2,1.5c3.6,0.8,5.6,1.9,9,3.9c0.6,0.3,1.1,0.6,1.7,1\r\n\t\tc3.9,2.2,7.4,5.1,10.4,8.7c2.7,3.2,4.8,7.4,6.3,12.3l-20.6,57.8C283.6,282.5,279.9,289.2,275.8,294.4z"},"children":[{"name":"path","attribs":{"d":"M364.4,320.9c-5.3,7.5-11.6,14.7-18.8,21.4c-7.1,6.6-15.1,12.5-23.7,17.4c-8.6,4.9-17.9,8.8-27.5,11.5s-19.8,4.1-30.3,4.1\r\n\t\tc-15.9,0-31.2-2.6-45.5-7.6c-14.2-5-26.8-12.5-37.5-22.4c-10.7-9.8-21.7-25.9-28.2-41c-5.8-13.4-8.1-27.8-8.1-49.5\r\n\t\tc0-15.6,3.6-33,9.8-47.6c6-14,14.3-26.4,24.9-36.9c10.4-10.3,23-18.6,37.6-24.8c13.1-5.5,28.5-8.2,47.1-8.2c14.9,0,29,2.4,41.9,7\r\n\t\tc12.8,4.6,23.9,11.2,33.1,19.6c8.7,7.9,14,17.4,19.7,30.2c5,11.2,6.8,20.9,6.8,35.9c0,12.4-2.2,24.1-6.5,34.9\r\n\t\tc-4.3,10.6-7.5,17-14,25c-6.6,7.9-10.6,12.7-18.1,17.1c-8.6,5-15.3,7.4-21,7.4c-3.6,0-6.3-0.7-7.8-2c-1.5-1.3-2.4-3-2.7-5.4\r\n\t\tc-0.4-2.8-0.1-6.3,1-10.4c1.1-4.4,2.8-8.6,4.9-13.7L339.4,181h-17.8l-6.2,16.5c-3.8-6.1-9.1-11.5-15.9-15.5\r\n\t\tc-10.5-6.1-19.5-8.8-31.2-8.8c-13.5,0-26,3.5-37.2,10.4c-11,6.8-20.5,15.6-28.2,26.3c-7.5,10.3-9.3,15.7-12.9,26.4l-0.6,1.7\r\n\t\tc-4.2,12.4-6.3,24.6-6.3,36.2c0,7.7,1.4,15,4.1,21.8c2.7,6.8,6.4,12.8,11.1,17.8c4.7,5.1,10.4,9.1,16.9,12.1s13.7,4.5,21.3,4.5\r\n\t\tc8.5,0,16.6-1.4,26.1-4.7c6.3-2.2,11.9-5.8,17.4-11.4c1,3.2,2.7,6,5.3,8.5c5,5,11.7,7.6,19.9,7.6c8.6,0,17.8-3,29-9.3\r\n\t\tc9.9-5.6,15.7-12,23.3-21.1c8.2-9.8,12.3-18,16.9-29.7c5-12.5,7.5-26,7.5-40.3c0-18-2.4-30.2-8.5-43.6c-6.6-14.3-13.2-25.8-24-35.4\r\n\t\tc-10.9-9.6-23.9-17.1-38.5-22.3c-14.5-5.1-30.3-7.7-46.7-7.7c-20.1,0-37.2,3-52.2,9.1c-16.5,6.7-30.9,16-43,27.6\r\n\t\tc-12.2,11.8-22,25.9-29,41.9c-7.3,16.6-11.4,36.7-11.4,55.1c0,25.1,3.1,42.6,10.3,58.4c8,17.3,21,35.4,33.3,46\r\n\t\tc12.6,10.9,27.1,19.1,43.2,24.2c15.9,5.1,32.3,7.7,48.8,7.7c11.4,0,22.8-1.6,34-4.6c11.2-3.1,22-7.4,32.1-13.1\r\n\t\tc10.1-5.6,19.5-12.5,28.2-20.6c8.6-8.1,18.6-20.8,22-26.9c1.3-2.4,2.2-4.3,2.9-5.8h-18.5L364.4,320.9z M275.8,294.4\r\n\t\tc-4.4,5.6-7.7,9.5-11.8,12.2c-4.4,3-7.9,4.9-12.4,5.9c-4.6,1.2-9.3,1.7-13.7,1.7c-5.6,0-10.8-1-15.4-3c-4.7-2-8.7-4.8-12.1-8.4\r\n\t\tc-3.4-3.6-6.1-7.9-8.1-12.7c-1.9-4.8-2.9-10.2-2.9-16c0-9.5,1.8-19.7,5.3-30.3c0.4-1.2,0.8-2.4,1.1-3.4c2.8-8.6,4.3-11.5,9.5-20\r\n\t\tc5.7-9.4,14.1-16.6,23-22.5c8.6-5.8,18.2-8.7,28.5-8.7c4.2,0,8.6,0.5,13.2,1.5c3.6,0.8,5.6,1.9,9,3.9c0.6,0.3,1.1,0.6,1.7,1\r\n\t\tc3.9,2.2,7.4,5.1,10.4,8.7c2.7,3.2,4.8,7.4,6.3,12.3l-20.6,57.8C283.6,282.5,279.9,289.2,275.8,294.4z"},"children":[]}]}]}]};exports.iosAtOutline=iosAtOutline;var iosAt={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M356,320c-9.7,13.3-29.9,28.5-38.1,33.1s-16.9,8.3-26,10.8c-9,2.5-18.6,3.9-28.4,3.9c-14.9,0-29.4-2.4-43-7.2\r\n\tc-13.3-4.7-25.2-11.8-35.1-21c-9.9-9-20.3-24.2-26.5-38.5c-5.3-12.4-7.6-25.8-7.6-46.5c0-14.7,3.4-30.9,9.2-44.7\r\n\tc5.6-13.2,13.5-24.9,23.3-34.6c9.7-9.6,21.6-17.5,35.3-23.3c12.3-5.1,26.7-7.7,44.4-7.7c13.9,0,27.2,2.2,39.4,6.6\r\n\tc11.9,4.3,22.3,10.4,30.9,18.3c8,7.3,12.9,16.1,18.2,28.1c4.6,10.2,6.3,19.2,6.3,33.3c0,11.5-2,22.4-6,32.4c-4,9.8-7,15.8-13,23.3\r\n\tc-6.3,7.6-9.8,11.8-16.5,15.6c-7.8,4.6-13.7,6.7-18.5,6.7c-3.8,0-5-0.9-5.1-1c-0.6-0.5-1.1-1.2-1.4-2.8c-0.3-2.2,0-5.2,0.9-8.6\r\n\tc1-3.9,2.4-7.7,4.6-12.9L342.3,179h-25.6l-4.5,12c-3.5-4.1-7.7-7.5-12.4-10.2c-11.1-6.4-20.4-9-32.3-9c-13.8,0-26.7,3.6-38.2,10.7\r\n\tc-11.2,6.9-20.8,15.8-28.5,26.5c-7.6,10.5-9.5,16.1-13,26.5l-0.6,1.8c-4.2,12.4-6.3,24.7-6.3,36.4c0,7.9,1.5,15.5,4.3,22.6\r\n\tc2.8,7.2,6.7,13.4,11.6,18.5c4.8,5.2,10.7,9.4,17.7,12.6c6.8,3.1,14.3,4.8,22.4,4.8c8.9,0,17.1-1.5,26.7-4.8\r\n\tc5.3-1.8,9.9-4.5,14.4-8.3c1,1.7,2.2,3.1,3.7,4.5c5.6,5.6,13.1,8.5,22.1,8.5c8.9,0,18.6-3,30.2-9.5c10.3-5.8,16.3-12.5,23.7-21.4\r\n\tc8.4-10,12.5-18.6,17-29.9c5.1-12.5,7.6-26.2,7.6-40.6c0-18.1-2.4-30.4-8.7-44c-6.6-14.4-13.3-25.9-24.3-35.6\r\n\tc-10.9-9.7-23.9-17.2-38.7-22.4c-14.6-5.1-30.3-7.7-46.7-7.7c-20,0-37.2,3-52.2,9.1c-16.3,6.6-30.8,15.9-43.1,27.6\r\n\tc-12.3,11.8-22.1,26-29.1,42c-7.3,16.5-11.4,36.5-11.4,55.1c0,25,3.1,42.4,10.4,58.4c8.1,17.5,21.2,35.5,33.4,45.9\r\n\tc12.7,11.1,27.3,19.2,43.4,24.3c15.9,5.1,32.3,7.7,48.6,7.7c11.2,0,22.7-1.6,34.1-4.6c11.6-3.2,22.4-7.6,32.1-13.1\r\n\tc9.9-5.5,19.5-12.4,28.2-20.6c8.8-8.2,19.4-20.9,22.9-27.1c1.2-2.3,2.2-4.2,2.8-5.6H356z M271.9,290.6c-4.4,5.5-7.2,8.9-10.6,11.2\r\n\tc-3.8,2.6-6.8,4.2-10.7,5.2h-0.1c-3.9,1-8.1,1.5-12.4,1.5c-5,0-9.4-0.9-13.4-2.7c-4.1-1.7-7.5-4.1-10.5-7.3\r\n\tc-2.9-3.1-5.4-6.8-7.1-11.1c-1.7-4.3-2.5-9-2.5-14.1c0-8.7,1.7-18.3,5-28.2c0.4-1.2,0.8-2.4,1.1-3.3c2.6-8.1,4-10.6,8.9-18.6\r\n\tc4.5-7.4,11.5-14.2,21.2-20.7c7.7-5.1,16.2-7.8,25.6-7.8c3.8,0,7.8,0.5,12,1.4c3,0.7,4.6,1.6,7.6,3.3l0.2,0.1\r\n\tc0.4,0.2,0.8,0.4,1.3,0.7l0.3,0.2c3.4,1.9,6.4,4.5,9,7.6c2,2.4,3.7,5.5,5,9.4L282,272.2C279,279.6,275.6,285.8,271.9,290.6z"},"children":[]}]};exports.iosAt=iosAt;var iosBarcodeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"48,384 128,384 128,368 64,368 64,144 128,144 128,128 48,128 \t"},"children":[{"name":"polygon","attribs":{"points":"48,384 128,384 128,368 64,368 64,144 128,144 128,128 48,128 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"384,128 384,144 448,144 448,368 384,368 384,384 464,384 464,128 \t"},"children":[{"name":"polygon","attribs":{"points":"384,128 384,144 448,144 448,368 384,368 384,384 464,384 464,128 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"112","y":"192","width":"16","height":"128"},"children":[{"name":"rect","attribs":{"x":"112","y":"192","width":"16","height":"128"},"children":[]}]},{"name":"rect","attribs":{"x":"384","y":"192","width":"16","height":"128"},"children":[{"name":"rect","attribs":{"x":"384","y":"192","width":"16","height":"128"},"children":[]}]},{"name":"rect","attribs":{"x":"320","y":"160","width":"16","height":"192"},"children":[{"name":"rect","attribs":{"x":"320","y":"160","width":"16","height":"192"},"children":[]}]},{"name":"rect","attribs":{"x":"176","y":"160","width":"16","height":"192"},"children":[{"name":"rect","attribs":{"x":"176","y":"160","width":"16","height":"192"},"children":[]}]},{"name":"rect","attribs":{"x":"247","y":"176","width":"16","height":"160"},"children":[{"name":"rect","attribs":{"x":"247","y":"176","width":"16","height":"160"},"children":[]}]}]}]};exports.iosBarcodeOutline=iosBarcodeOutline;var iosBarcode={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48,128v256h416V128H48z M128,320h-16V192h16V320z M192,352h-16V160h16V352z M263,336h-16V176h16V336z M336,352h-16V160h16\r\n\t\tV352z M400,320h-16V192h16V320z"},"children":[{"name":"path","attribs":{"d":"M48,128v256h416V128H48z M128,320h-16V192h16V320z M192,352h-16V160h16V352z M263,336h-16V176h16V336z M336,352h-16V160h16\r\n\t\tV352z M400,320h-16V192h16V320z"},"children":[]}]}]}]};exports.iosBarcode=iosBarcode;var iosBaseballOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M462.686,279.369c0.132-1.182,0.257-2.365,0.369-3.554c0.004-0.038,0.007-0.078,0.011-0.117\r\n\tC463.675,269.213,464,262.645,464,256c0-114.863-93.13-208-208-208c-7.951,0-15.792,0.462-23.512,1.331\r\n\tc-0.089,0.01-0.18,0.018-0.27,0.028c0,0.001,0,0.002,0,0.003C135.207,60.409,58.442,138.199,48.989,235.687\r\n\tc-0.001,0-0.003,0-0.004,0c-0.072,0.748-0.131,1.497-0.195,2.246c-0.136,1.576-0.253,3.157-0.353,4.743\r\n\tc-0.026,0.418-0.056,0.835-0.08,1.254c-0.064,1.121-0.116,2.245-0.163,3.371c-0.011,0.281-0.021,0.562-0.032,0.843\r\n\tC48.065,250.751,48,253.368,48,256c0,114.863,93.137,208,208,208c2.627,0,5.239-0.065,7.843-0.162\r\n\tc0.293-0.011,0.586-0.021,0.878-0.033c1.11-0.046,2.219-0.098,3.324-0.16c0.454-0.025,0.906-0.058,1.359-0.086\r\n\tc1.604-0.103,3.201-0.222,4.795-0.36c0.704-0.061,1.41-0.115,2.113-0.184c0-0.001,0-0.003,0-0.004\r\n\tc97.494-9.452,175.279-86.216,186.326-183.229c0.001,0,0.002,0,0.004,0C462.658,279.645,462.67,279.507,462.686,279.369z\r\n\t M446.665,256c0,2.568-0.066,5.122-0.167,7.666c-10.334-0.468-20.552-1.69-30.614-3.664l6.11-19.056l-15.232-4.884l-6.488,20.235\r\n\tc-7.591-2.112-15.08-4.651-22.442-7.638c-4.976-2.018-9.851-4.223-14.625-6.604l11.518-17.003l-13.247-8.974l-12.359,18.246\r\n\tc-12.241-7.35-23.703-15.977-34.305-25.812l14.73-14.73l-11.313-11.313l-14.73,14.73c-9.555-10.297-17.964-21.408-25.175-33.254\r\n\tl18.487-12.522l-8.972-13.246l-17.324,11.735c-2.597-5.131-4.998-10.375-7.174-15.74c-2.843-7.009-5.276-14.134-7.327-21.352\r\n\tl20.812-6.673l-4.885-15.234l-19.711,6.32c-2.104-10.423-3.41-21.014-3.896-31.729c2.544-0.101,5.097-0.167,7.665-0.167\r\n\tC361.132,65.335,446.665,150.869,446.665,256z M65.337,256c0-1.317,0.023-2.629,0.05-3.939c9.064,0.559,18.039,1.687,26.891,3.409\r\n\tl-7.115,22.191l15.235,4.885l7.5-23.391c7.692,2.128,15.28,4.696,22.738,7.721c5.175,2.099,10.239,4.404,15.197,6.896l-13.405,19.79\r\n\tl13.246,8.973l14.219-20.992c12.038,7.279,23.32,15.793,33.765,25.483l-16.853,16.853l11.313,11.314l16.854-16.854\r\n\tc9.968,10.744,18.7,22.369,26.114,34.796l-20.753,14.058l8.972,13.246l19.473-13.19c2.283,4.611,4.4,9.317,6.347,14.116\r\n\tc3.161,7.795,5.834,15.729,8.016,23.778l-22.832,7.32l4.884,15.233l21.531-6.903c1.608,8.506,2.679,17.122,3.215,25.822\r\n\tc-1.311,0.026-2.622,0.05-3.939,0.05C150.87,446.664,65.336,361.13,65.337,256z M275.893,445.629\r\n\tc-0.621-9.974-1.911-19.911-3.859-29.746l24.1-7.727l-4.884-15.232l-22.896,7.341c-3.946-14.415-9.356-28.51-16.234-42.054\r\n\tl20.172-13.664l-8.973-13.246l-18.988,12.862c-7.888-13.094-17.233-25.552-28.04-37.145l17.081-17.081l-11.313-11.313\r\n\tl-17.082,17.081c-11.288-10.521-23.393-19.66-36.108-27.414l12.696-18.743l-13.246-8.972l-13.446,19.85\r\n\tc-13.548-6.974-27.659-12.467-42.094-16.494l7.158-22.325l-15.235-4.885l-7.52,23.452c-10.181-2.068-20.477-3.424-30.81-4.067\r\n\tc9.168-88.037,78.492-158.454,166.023-169.311c0.574,11.858,2.095,23.676,4.543,35.339l-25.935,8.316l4.885,15.234l24.903-7.985\r\n\tc4.045,14.144,9.504,27.967,16.386,41.246l-22.322,15.121l8.973,13.246l21.236-14.385c7.688,12.528,16.735,24.455,27.116,35.59\r\n\tl-19.204,19.204l11.313,11.314l19.204-19.205c11.447,10.669,23.735,19.921,36.647,27.745l-14.555,21.486l13.248,8.974l15.328-22.628\r\n\tc13.28,6.789,27.1,12.155,41.229,16.118l-8.168,25.477l15.232,4.884l8.525-26.59c11.301,2.312,22.744,3.754,34.224,4.31\r\n\tC434.347,367.137,363.93,436.46,275.893,445.629z"},"children":[]}]};exports.iosBaseballOutline=iosBaseballOutline;var iosBaseball={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48c-8.044,0-15.975,0.473-23.782,1.361l0,0l0,0C128.555,61.166,48,149.18,48,256c0,114.863,93.137,208,208,208\r\n\tc106.827,0,194.833-80.553,206.638-184.218l0,0l0,0C463.527,271.977,464,264.045,464,256C464,141.137,370.87,48,256,48z\r\n\t M259.939,446.614c-0.539-8.693-1.605-17.305-3.209-25.804l-21.511,6.896l-4.885-15.234l22.812-7.314\r\n\tc-2.183-8.056-4.856-15.994-8.02-23.794c-1.943-4.794-4.061-9.497-6.341-14.105l-19.464,13.186l-8.972-13.247l20.744-14.054\r\n\tc-7.416-12.429-16.149-24.057-26.119-34.803l-16.852,16.853l-11.313-11.313l16.852-16.852c-10.442-9.689-21.721-18.202-33.757-25.48\r\n\tl-14.216,20.988l-13.247-8.973l13.403-19.788c-4.96-2.491-10.027-4.799-15.206-6.9c-7.455-3.021-15.038-5.59-22.725-7.717\r\n\tl-7.5,23.392l-15.236-4.885l7.115-22.192c-8.856-1.723-17.835-2.853-26.904-3.412c0.109-5.373,0.438-10.695,0.984-15.953\r\n\tc10.339,0.647,20.639,1.998,30.827,4.068l7.518-23.454l15.237,4.886l-7.159,22.328c14.433,4.027,28.542,9.521,42.09,16.494\r\n\tl13.449-19.854l13.248,8.973l-12.7,18.748c12.712,7.754,24.815,16.892,36.1,27.411l17.082-17.082l11.314,11.314l-17.083,17.082\r\n\tc10.809,11.595,20.156,24.055,28.044,37.151l18.999-12.869l8.973,13.248l-20.183,13.67c6.878,13.546,12.289,27.642,16.232,42.058\r\n\tl22.919-7.349l4.885,15.236l-24.122,7.734c1.947,9.828,3.231,19.761,3.854,29.727C270.637,446.177,265.314,446.504,259.939,446.614z\r\n\t M410.961,275.293l-8.529,26.604l-15.236-4.885l8.174-25.493c-14.124-3.964-27.94-9.329-41.218-16.116l-15.335,22.641l-13.248-8.973\r\n\tl14.564-21.499c-12.912-7.826-25.199-17.077-36.644-27.746l-19.205,19.204l-11.312-11.314l19.202-19.203\r\n\tc-10.381-11.135-19.427-23.062-27.114-35.59l-21.248,14.393l-8.974-13.248l22.335-15.127c-6.881-13.278-12.339-27.099-16.384-41.241\r\n\tl-24.918,7.99l-4.885-15.237l25.951-8.321c-2.447-11.663-3.943-23.482-4.522-35.337c5.189-0.644,10.446-1.068,15.754-1.284\r\n\tc0.507,10.743,1.859,21.334,3.972,31.807l19.744-6.359l4.907,15.212l-20.789,6.658c2.051,7.218,4.491,14.338,7.333,21.348\r\n\tc2.176,5.363,4.578,10.603,7.174,15.731l17.315-11.729l8.973,13.246l-18.477,12.516c7.209,11.846,15.619,22.957,25.174,33.254\r\n\tl14.729-14.731l11.314,11.313l-14.732,14.731c10.602,9.836,22.062,18.463,34.302,25.813l12.352-18.235l13.248,8.973l-11.512,16.994\r\n\tc4.777,2.383,9.656,4.589,14.635,6.608c7.354,2.982,14.837,5.521,22.421,7.631l6.484-20.22l15.233,4.885l-6.104,19.043\r\n\tc10.116,1.984,20.286,3.311,30.626,3.824c-0.215,5.312-0.643,10.572-1.285,15.768C433.72,279.028,422.269,277.607,410.961,275.293z"},"children":[]}]};exports.iosBaseball=iosBaseball;var iosBasketballOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.137,48,48,141.136,48,256s93.137,208,208,208c114.871,0,208-93.138,208-208S370.871,48,256,48z M446.664,256\r\n\tc0,0.048-0.002,0.097-0.002,0.145c-22.315-1.721-43.989-6.972-64.62-15.699c-17.888-7.566-34.453-17.505-49.479-29.634\r\n\tc20.69-29.501,38.442-61.212,52.824-94.715C423.045,150.95,446.664,200.766,446.664,256z M372.606,105.261\r\n\tc-0.28,0.676-0.55,1.354-0.835,2.028c-13.908,32.883-31.062,63.956-51.286,92.987c-1.538-1.449-3.063-2.914-4.563-4.413\r\n\tc-19.107-19.107-34.107-41.354-44.583-66.12c-8.697-20.563-13.933-42.163-15.671-64.401c0.111,0,0.221-0.004,0.332-0.004\r\n\tC299.884,65.337,340.347,80.249,372.606,105.261z M239.675,66.044c4.431,58.126,31.044,110.041,71.391,147.312\r\n\tc-9.495,12.749-19.609,25.076-30.319,36.965c-47.554-50.032-104.815-90.746-168.767-119.132\r\n\tC143.616,94.733,188.833,70.375,239.675,66.044z M280.687,273.84c36.229,40.67,65.48,86.438,87.185,136.453\r\n\tc-25.4,18.467-55.51,30.829-88.162,34.898c-2.272-47.816-19.521-91.707-47.179-127.071\r\n\tC249.483,304.357,265.568,289.567,280.687,273.84z M262.039,270.039c-12.704,12.703-25.977,24.662-39.778,35.87\r\n\tc-38.737-42.885-93.831-70.706-155.45-73.635c4.07-32.646,16.432-62.75,34.896-88.146c59.195,25.688,112.445,61.947,158.332,107.833\r\n\tc3.323,3.323,6.59,6.689,9.812,10.089C267.277,264.736,264.677,267.401,262.039,270.039z M65.508,248.23\r\n\tc25.238,1.145,49.436,6.797,71.45,16.109c24.767,10.476,47.013,25.476,66.12,44.583c2.254,2.254,4.445,4.555,6.584,6.895\r\n\tc-31.414,23.915-65.427,44.049-101.708,60.182C81.322,343.205,65.336,301.437,65.336,256\r\n\tC65.336,253.396,65.404,250.809,65.508,248.23z M119.067,388.526c35.988-16.434,69.81-36.787,100.914-60.521\r\n\tc11.249,14.372,20.522,30.115,27.68,47.037c9.614,22.729,15.013,46.724,16.114,71.45c-2.58,0.104-5.17,0.172-7.775,0.172\r\n\tC202.317,446.664,153.751,424.353,119.067,388.526z M380.81,400.021c-22.489-50.671-52.72-97.14-89.191-137.909\r\n\tc11.101-12.269,21.634-25.061,31.556-38.336c34.171,27.342,76.521,44.885,122.801,48.363\r\n\tC441.686,323.058,417.311,368.347,380.81,400.021z"},"children":[]}]};exports.iosBasketballOutline=iosBasketballOutline;var iosBasketball={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.137,48,48,141.136,48,256s93.137,208,208,208c114.871,0,208-93.138,208-208S370.871,48,256,48z\r\n\t M380.797,400.032c-4.158,3.608-8.48,7.029-12.942,10.272c-21.704-50.015-50.938-95.795-87.168-136.465\r\n\tc-15.118,15.728-31.203,30.518-48.156,44.28c27.659,35.364,44.916,79.254,47.189,127.069c-5.252,0.655-10.571,1.086-15.944,1.303\r\n\tc-1.103-24.727-6.5-48.721-16.114-71.45c-7.158-16.922-16.431-32.665-27.68-47.037c-31.104,23.733-64.923,44.093-100.91,60.526\r\n\tc-3.883-4.011-7.592-8.191-11.115-12.529c36.28-16.134,70.291-36.271,101.705-60.186c-2.139-2.34-4.33-4.641-6.584-6.895\r\n\tc-19.107-19.107-41.354-34.107-66.12-44.583c-22.015-9.312-46.212-14.964-71.45-16.108c0.217-5.379,0.648-10.703,1.303-15.959\r\n\tc61.62,2.929,116.713,30.753,155.45,73.638c13.802-11.208,27.075-23.167,39.778-35.87c2.638-2.638,5.238-5.303,7.812-7.988\r\n\tc-3.223-3.4-6.489-6.767-9.812-10.09c-45.887-45.886-99.137-82.145-158.332-107.832c3.243-4.461,6.665-8.782,10.272-12.939\r\n\tc63.951,28.387,121.212,69.101,168.767,119.132c10.711-11.889,20.824-24.216,30.319-36.965\r\n\tc-40.347-37.271-66.956-89.188-71.388-147.312c5.273-0.449,10.604-0.692,15.99-0.702c1.738,22.238,6.974,43.838,15.671,64.401\r\n\tc10.476,24.767,25.476,47.013,44.583,66.12c1.5,1.5,3.025,2.965,4.562,4.413c20.226-29.031,37.379-60.104,51.287-92.987\r\n\tc0.285-0.674,0.555-1.353,0.835-2.028c4.419,3.426,8.681,7.042,12.779,10.835c-14.383,33.502-32.132,65.215-52.822,94.716\r\n\tc15.026,12.13,31.591,22.068,49.479,29.635c20.631,8.727,42.305,13.978,64.62,15.698c-0.004,5.387-0.243,10.717-0.688,15.991\r\n\tc-46.278-3.479-88.631-21.018-122.801-48.359c-9.922,13.275-20.455,26.067-31.556,38.336\r\n\tC328.091,302.883,358.307,349.36,380.797,400.032z"},"children":[]}]};exports.iosBasketball=iosBasketball;var iosBellOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z M107.2,368\r\n\t\tc8.6-9,16.4-18.4,22.7-31.8c12-25.3,17.4-59.2,17.4-110.2c0-46.4,12.5-80.4,37.1-101.2c22.9-19.3,51.7-23.3,71.8-23.3\r\n\t\tc20.1,0,48.9,4,71.6,23.3c24.5,20.7,37,54.5,37,100.9c0,83.8,14.9,117.3,40.3,142.3H107.2z"},"children":[{"name":"path","attribs":{"d":"M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z M107.2,368\r\n\t\tc8.6-9,16.4-18.4,22.7-31.8c12-25.3,17.4-59.2,17.4-110.2c0-46.4,12.5-80.4,37.1-101.2c22.9-19.3,51.7-23.3,71.8-23.3\r\n\t\tc20.1,0,48.9,4,71.6,23.3c24.5,20.7,37,54.5,37,100.9c0,83.8,14.9,117.3,40.3,142.3H107.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"},"children":[{"name":"path","attribs":{"d":"M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"},"children":[]}]}]}]};exports.iosBellOutline=iosBellOutline;var iosBell={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z"},"children":[{"name":"path","attribs":{"d":"M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"},"children":[{"name":"path","attribs":{"d":"M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"},"children":[]}]}]}]};exports.iosBell=iosBell;var iosBodyOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,47.959c17.645,0,32,14.351,32,31.991c0,17.64-14.355,31.99-32,31.99s-32-14.351-32-31.99\r\n\t\tC224,62.31,238.355,47.959,256,47.959 M256,31.964c-26.51,0-48,21.483-48,47.986c0,26.502,21.49,47.985,48,47.985\r\n\t\ts48-21.483,48-47.985C304,53.447,282.51,31.964,256,31.964L256,31.964z"},"children":[{"name":"path","attribs":{"d":"M256,47.959c17.645,0,32,14.351,32,31.991c0,17.64-14.355,31.99-32,31.99s-32-14.351-32-31.99\r\n\t\tC224,62.31,238.355,47.959,256,47.959 M256,31.964c-26.51,0-48,21.483-48,47.986c0,26.502,21.49,47.985,48,47.985\r\n\t\ts48-21.483,48-47.985C304,53.447,282.51,31.964,256,31.964L256,31.964z"},"children":[]}]},{"name":"path","attribs":{"d":"M424,144H88c-13.255,0-24,10.747-24,24s10.745,24,24,24h100.451c5.549,0,13.197,4.295,17.216,14.708\r\n\t\tc4.651,12.055,2.37,33.33-0.539,51.444l-3.923,21.26c-0.019,0.104-0.205,0.1-0.205,0.203l-32.229,172.238\r\n\t\tc-2.303,13.051,6.487,25.494,19.54,27.797c1.408,0.248,2.844,0.367,4.218,0.367c11.357,0,20.917-8.19,22.97-19.836L236,340.242\r\n\t\tv0.166c0,0,7.25-31.408,19.452-31.408h1.096C269,309,274,340.408,274,340.408v-0.082l21.483,119.895\r\n\t\tc2.052,11.642,12.331,19.815,23.763,19.815c1.387,0,2.855-0.121,4.268-0.368c13.053-2.303,21.821-14.76,19.519-27.811\r\n\t\tl-32.349-172.251c-0.002-0.008,0.011-0.02,0.009-0.027c-0.019-0.104-0.032-0.217-0.052-0.322l-3.771-21.411\r\n\t\tc-2.909-18.119-5.188-39.083-0.538-51.137C310.351,196.295,318.5,192,323.549,192H424c13.255,0,24-10.747,24-24\r\n\t\tS437.255,144,424,144z M88,176.113c-4.411,0-8-3.646-8-8.057c0-4.411,3.589-8.057,8-8.057h336c4.411,0,8,3.59,8,8s-3.589,8-8,8\r\n\t\tH322.5c-15.538,0-27.438,14.738-30.982,23.922c-4.846,12.557-5.004,31.942-0.388,60.688l-0.009,0.104l0.006,0.11l3.367,19.138\r\n\t\tl0.562,3.241l32.252,171.628c0.5,2.834-0.62,4.961-1.332,5.977c-0.713,1.017-2.335,2.799-5.179,3.301\r\n\t\tc-0.476,0.083-0.955,0.126-1.427,0.126c-3.893,0-7.207-2.639-7.883-6.472L290.255,338h-0.015c-0.271-2-1.828-10.05-5.022-18.771\r\n\t\tc-2.278-6.217-4.844-11.034-7.844-15.005C270.283,294.836,262.135,293,256.548,293h-1.096c-5.47,0-13.503,1.731-20.71,10.938\r\n\t\tc-3.05,3.896-5.729,8.671-8.19,14.802c-3.628,9.037-5.505,17.654-5.708,18.613l-0.11,0.369l-20.728,119.9\r\n\t\tc-0.693,3.886-3.75,6.596-7.441,6.596c-0.459,0-0.932-0.043-1.403-0.127c-2.84-0.5-4.455-2.275-5.165-3.288\r\n\t\tc-0.709-1.013-1.824-3.136-1.323-5.975l32.257-171.562l0.004-0.019l0.174-0.927l3.775-21.33l0.022-0.125l0.021-0.126\r\n\t\tc4.629-28.829,4.527-48.3-0.332-60.891c-3.543-9.181-13.576-23.737-31.76-23.737"},"children":[{"name":"path","attribs":{"d":"M424,144H88c-13.255,0-24,10.747-24,24s10.745,24,24,24h100.451c5.549,0,13.197,4.295,17.216,14.708\r\n\t\tc4.651,12.055,2.37,33.33-0.539,51.444l-3.923,21.26c-0.019,0.104-0.205,0.1-0.205,0.203l-32.229,172.238\r\n\t\tc-2.303,13.051,6.487,25.494,19.54,27.797c1.408,0.248,2.844,0.367,4.218,0.367c11.357,0,20.917-8.19,22.97-19.836L236,340.242\r\n\t\tv0.166c0,0,7.25-31.408,19.452-31.408h1.096C269,309,274,340.408,274,340.408v-0.082l21.483,119.895\r\n\t\tc2.052,11.642,12.331,19.815,23.763,19.815c1.387,0,2.855-0.121,4.268-0.368c13.053-2.303,21.821-14.76,19.519-27.811\r\n\t\tl-32.349-172.251c-0.002-0.008,0.011-0.02,0.009-0.027c-0.019-0.104-0.032-0.217-0.052-0.322l-3.771-21.411\r\n\t\tc-2.909-18.119-5.188-39.083-0.538-51.137C310.351,196.295,318.5,192,323.549,192H424c13.255,0,24-10.747,24-24\r\n\t\tS437.255,144,424,144z M88,176.113c-4.411,0-8-3.646-8-8.057c0-4.411,3.589-8.057,8-8.057h336c4.411,0,8,3.59,8,8s-3.589,8-8,8\r\n\t\tH322.5c-15.538,0-27.438,14.738-30.982,23.922c-4.846,12.557-5.004,31.942-0.388,60.688l-0.009,0.104l0.006,0.11l3.367,19.138\r\n\t\tl0.562,3.241l32.252,171.628c0.5,2.834-0.62,4.961-1.332,5.977c-0.713,1.017-2.335,2.799-5.179,3.301\r\n\t\tc-0.476,0.083-0.955,0.126-1.427,0.126c-3.893,0-7.207-2.639-7.883-6.472L290.255,338h-0.015c-0.271-2-1.828-10.05-5.022-18.771\r\n\t\tc-2.278-6.217-4.844-11.034-7.844-15.005C270.283,294.836,262.135,293,256.548,293h-1.096c-5.47,0-13.503,1.731-20.71,10.938\r\n\t\tc-3.05,3.896-5.729,8.671-8.19,14.802c-3.628,9.037-5.505,17.654-5.708,18.613l-0.11,0.369l-20.728,119.9\r\n\t\tc-0.693,3.886-3.75,6.596-7.441,6.596c-0.459,0-0.932-0.043-1.403-0.127c-2.84-0.5-4.455-2.275-5.165-3.288\r\n\t\tc-0.709-1.013-1.824-3.136-1.323-5.975l32.257-171.562l0.004-0.019l0.174-0.927l3.775-21.33l0.022-0.125l0.021-0.126\r\n\t\tc4.629-28.829,4.527-48.3-0.332-60.891c-3.543-9.181-13.576-23.737-31.76-23.737"},"children":[]}]}]}]};exports.iosBodyOutline=iosBodyOutline;var iosBody={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"79.838","r":"48"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"79.838","r":"48"},"children":[]}]},{"name":"path","attribs":{"d":"M424,144H88c-13.255,0-24,10.745-24,24s10.745,24,24,24h98.451c5.579,1,13.197,3.837,17.216,14.252\r\n\t\tc4.651,12.056,2.37,33.606-0.539,51.727l-3.775,21.395c-0.019,0.104-0.039,0.207-0.058,0.311c-0.002,0.008-0.002,0.012-0.004,0.02\r\n\t\tl-30.375,172.268c-2.303,13.053,6.414,25.5,19.467,27.803c13.055,2.301,25.333-6.416,27.634-19.471L237,340.348v0.167\r\n\t\tc0,0,6.25-32.515,18.452-32.515h1.096C269,308,275,340.515,275,340.515v-0.083l20.983,119.913\r\n\t\tc2.301,13.055,14.663,21.749,27.718,19.448c13.053-2.303,21.728-14.762,19.425-27.814L312.73,279.703\r\n\t\tc-0.002-0.008-0.013-0.02-0.015-0.027c-0.019-0.104-0.044-0.217-0.063-0.322l-3.777-21.414\r\n\t\tc-2.909-18.121-5.191-39.631-0.541-51.688C312.354,195.838,319.97,193,325.549,192H424c13.255,0,24-10.745,24-24\r\n\t\tS437.255,144,424,144z"},"children":[{"name":"path","attribs":{"d":"M424,144H88c-13.255,0-24,10.745-24,24s10.745,24,24,24h98.451c5.579,1,13.197,3.837,17.216,14.252\r\n\t\tc4.651,12.056,2.37,33.606-0.539,51.727l-3.775,21.395c-0.019,0.104-0.039,0.207-0.058,0.311c-0.002,0.008-0.002,0.012-0.004,0.02\r\n\t\tl-30.375,172.268c-2.303,13.053,6.414,25.5,19.467,27.803c13.055,2.301,25.333-6.416,27.634-19.471L237,340.348v0.167\r\n\t\tc0,0,6.25-32.515,18.452-32.515h1.096C269,308,275,340.515,275,340.515v-0.083l20.983,119.913\r\n\t\tc2.301,13.055,14.663,21.749,27.718,19.448c13.053-2.303,21.728-14.762,19.425-27.814L312.73,279.703\r\n\t\tc-0.002-0.008-0.013-0.02-0.015-0.027c-0.019-0.104-0.044-0.217-0.063-0.322l-3.777-21.414\r\n\t\tc-2.909-18.121-5.191-39.631-0.541-51.688C312.354,195.838,319.97,193,325.549,192H424c13.255,0,24-10.745,24-24\r\n\t\tS437.255,144,424,144z"},"children":[]}]}]}]};exports.iosBody=iosBody;var iosBoltOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M273.9,132l-16.5,89.1L254,240h19.2h64.8l-99.8,140l16.5-89.1L258,272h-19.2h-64.7L273.9,132 M302.7,64L143,288h95.8\r\n\tl-29.5,160L369,224h-95.8L302.7,64L302.7,64z"},"children":[]}]};exports.iosBoltOutline=iosBoltOutline;var iosBolt={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M302.7,64L143,288h95.8l-29.5,160L369,224h-95.8L302.7,64L302.7,64z"},"children":[]}]};exports.iosBolt=iosBolt;var iosBookOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M347.621,64c-40.941,0-79.121,14-91.578,44.495C242.5,78,205.408,64,164.466,64C109.265,64,64,89.98,64,143v1v8.995V417v9\r\n\th6.215h10.958h4.967c12.86-26.334,44.238-42,78.325-42c40.224,0,73.877,27.528,81.617,64h19.714c7.739-36.472,41.495-64,81.722-64\r\n\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z M248,410.926\r\n\tC230,385.055,199.27,368,164.5,368c-34.769,0-64.5,10.055-83.5,35.926l-1,0.537V142l0,0v-1c3-41.825,40.089-61,84.293-61\r\n\tc45.162,0,82.145,18.708,83.363,61.808c-0.017,0.729,0.016,1.459,0.016,2.192L248,157.103V410.926z M432,148v255.926\r\n\tC414,378.055,382.269,368,347.5,368c-34.77,0-65.5,17.055-83.5,42.926V145v-1c0-44.112,37.659-64,83.587-64\r\n\tC391.79,80,429,91.175,432,133v1V148z"},"children":[]}]};exports.iosBookOutline=iosBookOutline;var iosBook={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M164.466,64C109.266,64,64,89.98,64,143v1v8.994V417v9h6.215h10.959h4.967c12.86-26.334,44.238-42,78.325-42\r\n\t\tc40.224,0,73.877,27.528,81.616,64H248V95.346C230.76,73.951,198.981,64,164.466,64z"},"children":[{"name":"path","attribs":{"d":"M164.466,64C109.266,64,64,89.98,64,143v1v8.994V417v9h6.215h10.959h4.967c12.86-26.334,44.238-42,78.325-42\r\n\t\tc40.224,0,73.877,27.528,81.616,64H248V95.346C230.76,73.951,198.981,64,164.466,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M347.621,64c-34.332,0-66.713,9.851-83.621,31.011V448h1.797c7.739-36.472,41.495-64,81.722-64\r\n\t\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z"},"children":[{"name":"path","attribs":{"d":"M347.621,64c-34.332,0-66.713,9.851-83.621,31.011V448h1.797c7.739-36.472,41.495-64,81.722-64\r\n\t\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z"},"children":[]}]}]}]};exports.iosBook=iosBook;var iosBookmarksOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M432,64H281.6c-10.3,0-19.3,4.6-25.6,11.7l0,0l0,0c-6.2-7.2-15.3-11.7-25.6-11.7H80c-18.8,0-33,13.3-33,32v286.1\r\n\tc0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0c13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6\r\n\tc0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0c18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z M248,411.1\r\n\tc-4.7-7.8-13.5-11.1-23.8-11.1H80c-9.4,0-16-8.5-16-17.9V96c0-9.4,6.6-16,16-16c0,0,130.6,0,143.3,0c12.8,0,24.7,12.8,24.7,22.2\r\n\tV411.1z M320,80c18.8,0,43,0,64,0v100.4l-22.9-14.5l-9.1-6.4l-9.1,6.4L320,180.4V80z M448,382.1c0,9.4-6.6,17.9-16,17.9H287.8\r\n\tc-10.3,0-19.1,2.3-23.8,11.1V102.2c0-9.4,11.9-22.2,24.7-22.2c2.2,0,7.7,0,15.3,0v131l48-32l48,32V80c18.6,0,32,0,32,0\r\n\tc9.4,0,16,6.7,16,16V382.1z"},"children":[]}]};exports.iosBookmarksOutline=iosBookmarksOutline;var iosBookmarks={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M342.9,165.4l9.1-6.4l9.1,6.4l22.9,14.5V64c-20.7,0-44.5,0-64,0v115.9L342.9,165.4z"},"children":[{"name":"path","attribs":{"d":"M342.9,165.4l9.1-6.4l9.1,6.4l22.9,14.5V64c-20.7,0-44.5,0-64,0v115.9L342.9,165.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M432,64c0,0-13.3,0-32,0v146.5l-48-32l-48,32V64c-12.1,0-20.6,0-22.4,0c-8.1,0-17.6,7.2-17.6,15s0,329,0,329l-8,5.5l-8-5.5\r\n\t\tc0,0,0-322,0-329s-9.2-15-17.6-15S80,64,80,64c-18.8,0-33,13.3-33,32v286.1c0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0\r\n\t\tc13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6c0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0\r\n\t\tc18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z"},"children":[{"name":"path","attribs":{"d":"M432,64c0,0-13.3,0-32,0v146.5l-48-32l-48,32V64c-12.1,0-20.6,0-22.4,0c-8.1,0-17.6,7.2-17.6,15s0,329,0,329l-8,5.5l-8-5.5\r\n\t\tc0,0,0-322,0-329s-9.2-15-17.6-15S80,64,80,64c-18.8,0-33,13.3-33,32v286.1c0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0\r\n\t\tc13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6c0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0\r\n\t\tc18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z"},"children":[]}]}]}]};exports.iosBookmarks=iosBookmarks;var iosBoxOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M287.8,240c8.8,0,16.1,7.2,16.1,16s-7,16-15.9,16h-64c-8.8,0-16-7.2-16-16s7.2-16,16-16h63 M288,224h-64\r\n\t\tc-17.6,0-32,14.4-32,32s14.4,32,32,32h64c17.6,0,32-14.4,32-32S305.6,224,288,224L288,224z"},"children":[{"name":"path","attribs":{"d":"M287.8,240c8.8,0,16.1,7.2,16.1,16s-7,16-15.9,16h-64c-8.8,0-16-7.2-16-16s7.2-16,16-16h63 M288,224h-64\r\n\t\tc-17.6,0-32,14.4-32,32s14.4,32,32,32h64c17.6,0,32-14.4,32-32S305.6,224,288,224L288,224z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,112H96v80h16v208h288V192h16V112z M384,384H128V192h256V384z M400,176H112v-48h288V176z"},"children":[{"name":"path","attribs":{"d":"M416,112H96v80h16v208h288V192h16V112z M384,384H128V192h256V384z M400,176H112v-48h288V176z"},"children":[]}]}]}]}]}]};exports.iosBoxOutline=iosBoxOutline;var iosBox={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M112,400h288V208H112V400z M224,240h64c8.8,0,16,7.2,16,16s-7.2,16-16,16h-64c-8.8,0-16-7.2-16-16S215.2,240,224,240z"},"children":[{"name":"path","attribs":{"d":"M112,400h288V208H112V400z M224,240h64c8.8,0,16,7.2,16,16s-7.2,16-16,16h-64c-8.8,0-16-7.2-16-16S215.2,240,224,240z"},"children":[]}]},{"name":"polygon","attribs":{"points":"96,112 96,192 112,192 400,192 416,192 416,112 \t"},"children":[{"name":"polygon","attribs":{"points":"96,112 96,192 112,192 400,192 416,192 416,112 \t"},"children":[]}]}]}]};exports.iosBox=iosBox;var iosBriefcaseOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,128v-16h-32v16h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v-16H96v16H48v320\r\n\t\th416V128H416z M192,127.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1v29.4v0.5H192V127.5z M448,432H64V208h384\r\n\t\tV432z M448,192H64v-48h32v16h32v-16h256v16h32v-16h32V192z"},"children":[{"name":"path","attribs":{"d":"M416,128v-16h-32v16h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v-16H96v16H48v320\r\n\t\th416V128H416z M192,127.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1v29.4v0.5H192V127.5z M448,432H64V208h384\r\n\t\tV432z M448,192H64v-48h32v16h32v-16h256v16h32v-16h32V192z"},"children":[]}]}]}]};exports.iosBriefcaseOutline=iosBriefcaseOutline;var iosBriefcase={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"96","y":"112","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"96","y":"112","width":"32","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"48","y":"208","width":"416","height":"240"},"children":[{"name":"rect","attribs":{"x":"48","y":"208","width":"416","height":"240"},"children":[]}]},{"name":"rect","attribs":{"x":"384","y":"112","width":"32","height":"16"},"children":[{"name":"rect","attribs":{"x":"384","y":"112","width":"32","height":"16"},"children":[]}]},{"name":"path","attribs":{"d":"M416,128v32h-32v-32h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v32H96v-32H48v64\r\n\t\th416v-64H416z M320,127.5v0.5H192v-0.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V127.5z"},"children":[{"name":"path","attribs":{"d":"M416,128v32h-32v-32h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v32H96v-32H48v64\r\n\t\th416v-64H416z M320,127.5v0.5H192v-0.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V127.5z"},"children":[]}]}]}]};exports.iosBriefcase=iosBriefcase;var iosBrowsersOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z"},"children":[{"name":"path","attribs":{"d":"M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 \t\t"},"children":[{"name":"polygon","attribs":{"points":"448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 \t\t"},"children":[]}]}]}]}]}]};exports.iosBrowsersOutline=iosBrowsersOutline;var iosBrowsers={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,144v304h303.9V144H64z"},"children":[{"name":"path","attribs":{"d":"M64,144v304h303.9V144H64z"},"children":[]}]},{"name":"polygon","attribs":{"points":"144,64 144,128 384,128 384,368 448,368 448,64 \t"},"children":[{"name":"polygon","attribs":{"points":"144,64 144,128 384,128 384,368 448,368 448,64 \t"},"children":[]}]}]}]};exports.iosBrowsers=iosBrowsers;var iosCalculatorOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,160h224V96H144V160z M160,112h192v32H160V112z"},"children":[{"name":"path","attribs":{"d":"M144,160h224V96H144V160z M160,112h192v32H160V112z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t\t M384,416c0,8.8-7.2,16-16,16H144c-8.8,0-16-7.2-16-16V96c0-8.8,7.2-16,16-16h224c8.8,0,16,7.2,16,16V416z"},"children":[{"name":"path","attribs":{"d":"M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t\t M384,416c0,8.8-7.2,16-16,16H144c-8.8,0-16-7.2-16-16V96c0-8.8,7.2-16,16-16h224c8.8,0,16,7.2,16,16V416z"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,240 160,208 160,192 144,192 144,256 208,256 208,240 192,240 \t"},"children":[{"name":"polygon","attribs":{"points":"160,240 160,208 160,192 144,192 144,256 208,256 208,240 192,240 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,320 160,288 160,272 144,272 144,336 208,336 208,320 192,320 \t"},"children":[{"name":"polygon","attribs":{"points":"160,320 160,288 160,272 144,272 144,336 208,336 208,320 192,320 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,400 160,368 160,352 144,352 144,416 208,416 208,400 192,400 \t"},"children":[{"name":"polygon","attribs":{"points":"160,400 160,368 160,352 144,352 144,416 208,416 208,400 192,400 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"240,240 240,208 240,192 224,192 224,256 288,256 288,240 272,240 \t"},"children":[{"name":"polygon","attribs":{"points":"240,240 240,208 240,192 224,192 224,256 288,256 288,240 272,240 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"320,240 320,208 320,192 304,192 304,256 368,256 368,240 352,240 \t"},"children":[{"name":"polygon","attribs":{"points":"320,240 320,208 320,192 304,192 304,256 368,256 368,240 352,240 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"240,320 240,288 240,272 224,272 224,336 288,336 288,320 272,320 \t"},"children":[{"name":"polygon","attribs":{"points":"240,320 240,288 240,272 224,272 224,336 288,336 288,320 272,320 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"240,400 240,368 240,352 224,352 224,416 288,416 288,400 272,400 \t"},"children":[{"name":"polygon","attribs":{"points":"240,400 240,368 240,352 224,352 224,416 288,416 288,400 272,400 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"320,400 320,368 320,272 304,272 304,416 368,416 368,400 352,400 \t"},"children":[{"name":"polygon","attribs":{"points":"320,400 320,368 320,272 304,272 304,416 368,416 368,400 352,400 \t"},"children":[]}]}]}]};exports.iosCalculatorOutline=iosCalculatorOutline;var iosCalculator={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t M360,280v128h-48V280H360z M360,200v48h-48v-48H360z M280,360v48h-48v-48H280z M280,280v48h-48v-48H280z M280,200v48h-48v-48H280z\r\n\t M200,360v48h-48v-48H200z M200,280v48h-48v-48H200z M200,200v48h-48v-48H200z M152,152v-48h208v48H152z"},"children":[]}]};exports.iosCalculator=iosCalculator;var iosCalendarOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"polyline","attribs":{"class":"st0","points":"80,112 80,176 432,176 432,112 "},"children":[]},{"name":"path","attribs":{"d":"M352,96V64h-16v32H176V64h-16v32H64v352h384V96H352z M432,432H80V192h352V432z M432,176H80v-64h80v32h16v-32h160v32h16v-32\r\n\th80V176z"},"children":[]}]};exports.iosCalendarOutline=iosCalendarOutline;var iosCalendar={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"64","y":"192","width":"384","height":"256"},"children":[{"name":"rect","attribs":{"x":"64","y":"192","width":"384","height":"256"},"children":[]}]},{"name":"polygon","attribs":{"points":"448,96 352,96 352,144 336,144 336,96 176,96 176,144 160,144 160,96 64,96 64,176 448,176 \t"},"children":[{"name":"polygon","attribs":{"points":"448,96 352,96 352,144 336,144 336,96 176,96 176,144 160,144 160,96 64,96 64,176 448,176 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"64","width":"16","height":"32"},"children":[{"name":"rect","attribs":{"x":"160","y":"64","width":"16","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"336","y":"64","width":"16","height":"32"},"children":[{"name":"rect","attribs":{"x":"336","y":"64","width":"16","height":"32"},"children":[]}]}]}]};exports.iosCalendar=iosCalendar;var iosCameraOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M432,366.7\r\n\t\tc0,9.3-6.2,17.3-14.5,17.3h-320c-8.7,0-17.5-8.7-17.5-17.3v-176c0-8.2,8.1-14.7,17.5-14.7h60.7h7.1l4.8-3.2c4-4.5,7.7-10,11.1-13.8\r\n\t\tc11.3-12.7,19.5-21.7,25.3-26.9c4.7-4.2,6.2-4.1,6.2-4.1h88.5c0,0,1.6-0.1,6.7,4.5c6.1,5.5,14.7,16.5,26.6,29.8\r\n\t\tc2.9,3.3,6,6.8,9.3,10.5l4.8,3.2h7.2h61.7c8.8,0,14.5,6,14.5,14.7V366.7z"},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M432,366.7\r\n\t\tc0,9.3-6.2,17.3-14.5,17.3h-320c-8.7,0-17.5-8.7-17.5-17.3v-176c0-8.2,8.1-14.7,17.5-14.7h60.7h7.1l4.8-3.2c4-4.5,7.7-10,11.1-13.8\r\n\t\tc11.3-12.7,19.5-21.7,25.3-26.9c4.7-4.2,6.2-4.1,6.2-4.1h88.5c0,0,1.6-0.1,6.7,4.5c6.1,5.5,14.7,16.5,26.6,29.8\r\n\t\tc2.9,3.3,6,6.8,9.3,10.5l4.8,3.2h7.2h61.7c8.8,0,14.5,6,14.5,14.7V366.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,189.5c-47.1,0-85.5,38.4-85.5,85.5s38.4,85.5,85.5,85.5s85.5-38.4,85.5-85.5S303.1,189.5,256,189.5z M256,344.5\r\n\t\tc-38.4,0-69.5-31.1-69.5-69.5s31.1-69.5,69.5-69.5s69.5,31.1,69.5,69.5S294.4,344.5,256,344.5z"},"children":[{"name":"path","attribs":{"d":"M256,189.5c-47.1,0-85.5,38.4-85.5,85.5s38.4,85.5,85.5,85.5s85.5-38.4,85.5-85.5S303.1,189.5,256,189.5z M256,344.5\r\n\t\tc-38.4,0-69.5-31.1-69.5-69.5s31.1-69.5,69.5-69.5s69.5,31.1,69.5,69.5S294.4,344.5,256,344.5z"},"children":[]}]},{"name":"rect","attribs":{"x":"352","y":"192","width":"17","height":"17"},"children":[{"name":"rect","attribs":{"x":"352","y":"192","width":"17","height":"17"},"children":[]}]},{"name":"circle","attribs":{"cx":"256","cy":"275","r":"32"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"275","r":"32"},"children":[]}]}]}]};exports.iosCameraOutline=iosCameraOutline;var iosCamera={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M256,360.5\r\n\t\tc-47.1,0-85.5-38.4-85.5-85.5s38.4-85.5,85.5-85.5s85.5,38.4,85.5,85.5S303.1,360.5,256,360.5z M369,209h-17v-17h17V209z"},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M256,360.5\r\n\t\tc-47.1,0-85.5-38.4-85.5-85.5s38.4-85.5,85.5-85.5s85.5,38.4,85.5,85.5S303.1,360.5,256,360.5z M369,209h-17v-17h17V209z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,205.5c-38.4,0-69.5,31.1-69.5,69.5s31.1,69.5,69.5,69.5s69.5-31.1,69.5-69.5S294.4,205.5,256,205.5z M256,307\r\n\t\tc-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,307,256,307z"},"children":[{"name":"path","attribs":{"d":"M256,205.5c-38.4,0-69.5,31.1-69.5,69.5s31.1,69.5,69.5,69.5s69.5-31.1,69.5-69.5S294.4,205.5,256,205.5z M256,307\r\n\t\tc-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,307,256,307z"},"children":[]}]}]}]};exports.iosCamera=iosCamera;var iosCartOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z M160,432c-4.411,0-8-3.589-8-8\r\n\t\ts3.589-8,8-8s8,3.589,8,8S164.411,432,160,432z"},"children":[{"name":"path","attribs":{"d":"M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z M160,432c-4.411,0-8-3.589-8-8\r\n\t\ts3.589-8,8-8s8,3.589,8,8S164.411,432,160,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z M384.5,432\r\n\t\tc-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S388.911,432,384.5,432z"},"children":[{"name":"path","attribs":{"d":"M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z M384.5,432\r\n\t\tc-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S388.911,432,384.5,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z M418.59,242.348l-260.601,45.99l-31.732-176.3l303.869,30.608L418.59,242.348z"},"children":[{"name":"path","attribs":{"d":"M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z M418.59,242.348l-260.601,45.99l-31.732-176.3l303.869,30.608L418.59,242.348z"},"children":[]}]}]}]};exports.iosCartOutline=iosCartOutline;var iosCart={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z"},"children":[{"name":"path","attribs":{"d":"M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z"},"children":[]}]},{"name":"path","attribs":{"d":"M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z"},"children":[{"name":"path","attribs":{"d":"M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z"},"children":[{"name":"path","attribs":{"d":"M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z"},"children":[]}]}]}]};exports.iosCart=iosCart;var iosChatboxesOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"64,64 320,64 320,160 336,160 336,48 48,48 48,272 160,272 160,256 64,256 \t"},"children":[{"name":"polygon","attribs":{"points":"64,64 320,64 320,160 336,160 336,48 48,48 48,272 160,272 160,256 64,256 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M176,176v224h162.6l64,64H416v-64h48V176H176z M448,384h-48v54.6L345,384H192V192h256V384z"},"children":[{"name":"path","attribs":{"d":"M176,176v224h162.6l64,64H416v-64h48V176H176z M448,384h-48v54.6L345,384H192V192h256V384z"},"children":[]}]}]}]};exports.iosChatboxesOutline=iosChatboxesOutline;var iosChatboxes={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"336,48 48,48 48,272 160,272 160,160 336,160 \t"},"children":[{"name":"polygon","attribs":{"points":"336,48 48,48 48,272 160,272 160,160 336,160 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M176,176v224h162.6l64,64H416v-64h48V176H176z"},"children":[{"name":"path","attribs":{"d":"M176,176v224h162.6l64,64H416v-64h48V176H176z"},"children":[]}]}]}]};exports.iosChatboxes=iosChatboxes;var iosChatbubbleOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,112c97,0,176,62,176,138.3c0,35.9-17.6,69.2-49.5,93.9c-32.8,25.4-77.4,39.3-125.5,39.3c-28.9,0-51-3-69.7-9.3\r\n\tc-0.6-0.2-1.3-0.5-2-0.7c-0.3-0.1-0.6-0.2-0.8-0.2c-4.7-1.4-9.7-2.1-14.7-2.1c-5.6,0-11.1,0.9-16.3,2.6l0,0l-0.3,0.1\r\n\tc-0.6,0.2-8.9,3.3-11,4.3l0,0l-39.6,17.2c13.8-43.9,13.8-44.8,13.8-47.6c0-7.1-2.2-14.1-6.3-20.2c-0.5-0.7-1-1.4-1.6-2.1\r\n\tc-0.7-0.9-1.3-1.7-1.8-2.3c-17.4-21.9-26.6-47.1-26.6-73C80,174,159,112,256,112 M256,96C149.9,96,64,165.1,64,250.3\r\n\tc0,30.7,11.2,59.3,30.4,83.3c0.9,0.9,2.9,3.8,3.6,4.9c0,0-1-1.6-1.1-1.9c0,0,0,0,0,0l0,0c0,0,0,0,0,0c2.3,3.3,3.6,7.1,3.6,11.2\r\n\tc0,1.4-17.9,58-17.9,58l0,0c-1.3,4.4,2.1,8.9,7.6,10c0.8,0.2,1.6,0.2,2.4,0.2c1.3,0,2.5-0.2,3.7-0.5l1.6-0.6l50.6-22\r\n\tc0.9-0.4,9-3.5,10-3.9c0,0,0.6-0.2,0.6-0.2c0,0-0.1,0-0.6,0.2c3.4-1.2,7.2-1.8,11.2-1.8c3.6,0,7.1,0.5,10.3,1.5c0.1,0,0.2,0,0.2,0.1\r\n\tc0.5,0.2,1,0.3,1.5,0.5c23.1,7.9,48.4,10.3,75.1,10.3c106,0,191-64.1,191-149.3C448,165.1,362,96,256,96L256,96z"},"children":[]}]};exports.iosChatbubbleOutline=iosChatbubbleOutline;var iosChatbubble={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,96C149.9,96,64,165.1,64,250.3c0,30.7,11.2,59.3,30.4,83.3c0.9,0.9,2.9,3.8,3.6,4.9c0,0-1-1.6-1.1-1.9c0,0,0,0,0,0l0,0\r\n\tc0,0,0,0,0,0c2.3,3.3,3.6,7.1,3.6,11.2c0,1.4-17.9,58-17.9,58l0,0c-1.3,4.4,2.1,8.9,7.6,10c0.8,0.2,1.6,0.2,2.4,0.2\r\n\tc1.3,0,2.5-0.2,3.7-0.5l1.6-0.6l50.6-22c0.9-0.4,9-3.5,10-3.9c0,0,0.6-0.2,0.6-0.2c0,0-0.1,0-0.6,0.2c3.4-1.2,7.2-1.8,11.2-1.8\r\n\tc3.6,0,7.1,0.5,10.3,1.5c0.1,0,0.2,0,0.2,0.1c0.5,0.2,1,0.3,1.5,0.5c23.1,7.9,48.4,10.3,75.1,10.3c106,0,191-64.1,191-149.3\r\n\tC448,165.1,362,96,256,96L256,96z"},"children":[]}]};exports.iosChatbubble=iosChatbubble;var iosCheckmarkEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M223.9,329.7c-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"},"children":[{"name":"path","attribs":{"d":"M223.9,329.7c-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"},"children":[]}]}]}]};exports.iosCheckmarkEmpty=iosCheckmarkEmpty;var iosCheckmarkOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M340.1,177.3L215.3,303l-47.2-47.2l-17.8,17.8l56,56c2.5,2.5,5.9,4.5,8.9,4.5s6.3-2,8.8-4.4l133.7-134.4L340.1,177.3z"},"children":[{"name":"path","attribs":{"d":"M340.1,177.3L215.3,303l-47.2-47.2l-17.8,17.8l56,56c2.5,2.5,5.9,4.5,8.9,4.5s6.3-2,8.8-4.4l133.7-134.4L340.1,177.3z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]};exports.iosCheckmarkOutline=iosCheckmarkOutline;var iosCheckmark={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M223.9,329.7\r\n\t\tc-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M223.9,329.7\r\n\t\tc-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"},"children":[]}]}]}]};exports.iosCheckmark=iosCheckmark;var iosCircleFilled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,96c-88.4,0-160,71.6-160,160c0,88.4,71.6,160,160,160c88.4,0,160-71.6,160-160C416,167.6,344.4,96,256,96z"},"children":[{"name":"path","attribs":{"d":"M256,96c-88.4,0-160,71.6-160,160c0,88.4,71.6,160,160,160c88.4,0,160-71.6,160-160C416,167.6,344.4,96,256,96z"},"children":[]}]}]}]}]}]};exports.iosCircleFilled=iosCircleFilled;var iosCircleOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]};exports.iosCircleOutline=iosCircleOutline;var iosClockOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,256 160,256 160,273.3 273.3,273.3 273.3,128 256,128 \t"},"children":[{"name":"polygon","attribs":{"points":"256,256 160,256 160,273.3 273.3,273.3 273.3,128 256,128 \t"},"children":[]}]}]}]};exports.iosClockOutline=iosClockOutline;var iosClock={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M273,273H160v-17h96V128h17\r\n\t\tV273z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M273,273H160v-17h96V128h17\r\n\t\tV273z"},"children":[]}]}]}]};exports.iosClock=iosClock;var iosCloseEmpty={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"polygon","attribs":{"class":"st0","points":"340.2,160 255.8,244.3 171.8,160.4 160,172.2 244,256 160,339.9 171.8,351.6 255.8,267.8 340.2,352 \r\n\t352,340.3 267.6,256 352,171.8 "},"children":[]}]};exports.iosCloseEmpty=iosCloseEmpty;var iosCloseOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\t\tS484.3,190.1,403.1,108.9z M390.8,390.8c-74.3,74.3-195.3,74.3-269.6,0c-74.3-74.3-74.3-195.3,0-269.6s195.3-74.3,269.6,0\r\n\t\t\tC465.2,195.5,465.2,316.5,390.8,390.8z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\t\tS484.3,190.1,403.1,108.9z M390.8,390.8c-74.3,74.3-195.3,74.3-269.6,0c-74.3-74.3-74.3-195.3,0-269.6s195.3-74.3,269.6,0\r\n\t\t\tC465.2,195.5,465.2,316.5,390.8,390.8z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"class":"st0","points":"340.2,160 255.8,244.2 171.8,160.4 160,172.2 244,256 160,339.8 171.8,351.6 255.8,267.8 340.2,352 \r\n\t\t352,340.2 267.6,256 352,171.8 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"340.2,160 255.8,244.2 171.8,160.4 160,172.2 244,256 160,339.8 171.8,351.6 255.8,267.8 340.2,352 \r\n\t\t352,340.2 267.6,256 352,171.8 \t"},"children":[]}]}]}]};exports.iosCloseOutline=iosCloseOutline;var iosClose={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\tS484.3,190.1,403.1,108.9z M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2\r\n\t\tl11.8,11.8L267.6,256L352,340.2z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\tS484.3,190.1,403.1,108.9z M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2\r\n\t\tl11.8,11.8L267.6,256L352,340.2z"},"children":[]}]}]}]};exports.iosClose=iosClose;var iosCloudDownloadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"193.2,381.2 181.6,392.6 256.1,466 330.6,392.6 319,381.2 264.3,435 264.3,192.9 247.9,192.9 247.9,435 \t\t"},"children":[{"name":"polygon","attribs":{"points":"193.2,381.2 181.6,392.6 256.1,466 330.6,392.6 319,381.2 264.3,435 264.3,192.9 247.9,192.9 247.9,435 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H213v-16h-90.7\r\n\t\t\tc-40.9,0-74.2-33.2-74.2-73.7c0-31.4,20.2-57.5,50.2-67.7l8.4-2.8l1.5-8.7c3.6-21.3,22.1-38.8,43.9-38.8c6.9,0,13.7,1.6,19.9,4.7\r\n\t\t\tl13.5,6.7l6.5-13.6c16.6-34.4,52.1-56.6,90.4-56.6c55.3,0,100.9,42.8,100.9,97.6c0,13.1-0.2,20.1-0.2,20.1l15.2,0.1\r\n\t\t\tc36.7,0.5,65.6,30,65.6,66.4c0,36.3-29.8,66.1-66.5,66.3l-3.2,0.1H297v16h101h0c45,0,81.9-37.2,81.9-82.1\r\n\t\t\tC479.9,201,444.5,164.5,399.2,164.4z"},"children":[{"name":"path","attribs":{"d":"M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H213v-16h-90.7\r\n\t\t\tc-40.9,0-74.2-33.2-74.2-73.7c0-31.4,20.2-57.5,50.2-67.7l8.4-2.8l1.5-8.7c3.6-21.3,22.1-38.8,43.9-38.8c6.9,0,13.7,1.6,19.9,4.7\r\n\t\t\tl13.5,6.7l6.5-13.6c16.6-34.4,52.1-56.6,90.4-56.6c55.3,0,100.9,42.8,100.9,97.6c0,13.1-0.2,20.1-0.2,20.1l15.2,0.1\r\n\t\t\tc36.7,0.5,65.6,30,65.6,66.4c0,36.3-29.8,66.1-66.5,66.3l-3.2,0.1H297v16h101h0c45,0,81.9-37.2,81.9-82.1\r\n\t\t\tC479.9,201,444.5,164.5,399.2,164.4z"},"children":[]}]}]}]}]}]};exports.iosCloudDownloadOutline=iosCloudDownloadOutline;var iosCloudDownload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"248,435 193.3,381.2 181.6,392.6 256.1,466 330.6,392.6 318.8,381.2 264,435 264,328 248,328 \t"},"children":[{"name":"polygon","attribs":{"points":"248,435 193.3,381.2 181.6,392.6 256.1,466 330.6,392.6 318.8,381.2 264,435 264,328 248,328 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H192h21h35V193h16v135h134\r\n\t\tc45,0,81.9-37.2,81.9-82.1C479.9,201,444.5,164.5,399.2,164.4z"},"children":[{"name":"path","attribs":{"d":"M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H192h21h35V193h16v135h134\r\n\t\tc45,0,81.9-37.2,81.9-82.1C479.9,201,444.5,164.5,399.2,164.4z"},"children":[]}]}]}]};exports.iosCloudDownload=iosCloudDownload;var iosCloudOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M399.3,232.8c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-117.2-116.8-117.2c-46.1,0-85.8,27.9-104.4,67c-8.1-4.1-17.1-6.4-26.8-6.4\r\n\tc-29.6,0-54.1,23.7-58.9,52C57.4,236.8,32,268.8,32,308.4c0,49.8,40.1,91.6,89.6,91.6H398c45,0,82-38.9,82-84.3\r\n\tC480,270.1,444.6,232.9,399.3,232.8z M397.5,383.6l-3.2,0.4H122.4c-40.9,0-74.2-34.9-74.2-76.1c0-31.9,20.2-58.4,50.2-68.8l8.4-3\r\n\tl1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8l13.5,6.8l6.5-13.7c16.6-34.9,52.1-58.2,90.4-58.2\r\n\tc55.3,0,100.9,44.1,100.9,99.7c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1c36.7,0.5,65.6,30.5,65.6,67.4C464,352.1,434.2,383.4,397.5,383.6z\r\n\t"},"children":[]}]};exports.iosCloudOutline=iosCloudOutline;var iosCloudUploadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"193.3,260.4 181.7,248.8 256.2,174.5 330.7,248.8 319,260.4 264.4,205.8 264.4,447.6 247.9,447.6 247.9,205.8 \t\t\r\n\t\t\t"},"children":[{"name":"polygon","attribs":{"points":"193.3,260.4 181.7,248.8 256.2,174.5 330.7,248.8 319,260.4 264.4,205.8 264.4,447.6 247.9,447.6 247.9,205.8 \t\t\r\n\t\t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H213v-16h-90.6\r\n\t\t\tc-40.9,0-74.2-33.5-74.2-74.6c0-31.8,20.2-61.2,50.2-71.6l8.4-2.9l1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8\r\n\t\t\tl13.5,6.8l6.5-13.7c16.6-34.9,52.1-57.4,90.4-57.4c55.3,0,100.9,43.3,100.9,98.9c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1\r\n\t\t\tC435,199.1,464,232,464,268.9c0,36.8-29.8,66.9-66.5,67.1l-3.2,0H297v16h101h0c45,0,82-37.3,82-82.8\r\n\t\t\tC480,223.7,444.5,183.7,399.3,183.6z"},"children":[{"name":"path","attribs":{"d":"M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H213v-16h-90.6\r\n\t\t\tc-40.9,0-74.2-33.5-74.2-74.6c0-31.8,20.2-61.2,50.2-71.6l8.4-2.9l1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8\r\n\t\t\tl13.5,6.8l6.5-13.7c16.6-34.9,52.1-57.4,90.4-57.4c55.3,0,100.9,43.3,100.9,98.9c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1\r\n\t\t\tC435,199.1,464,232,464,268.9c0,36.8-29.8,66.9-66.5,67.1l-3.2,0H297v16h101h0c45,0,82-37.3,82-82.8\r\n\t\t\tC480,223.7,444.5,183.7,399.3,183.6z"},"children":[]}]}]}]}]}]};exports.iosCloudUploadOutline=iosCloudUploadOutline;var iosCloudUpload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"248","y":"352","width":"16","height":"96"},"children":[{"name":"rect","attribs":{"x":"248","y":"352","width":"16","height":"96"},"children":[]}]},{"name":"path","attribs":{"d":"M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H182h31h35V205.8\r\n\t\tl-54.7,54.5l-11.6-11.6l74.5-74.3l74.5,74.3l-11.8,11.6L264,205.8V352h134c45,0,82-37.3,82-82.8C480,223.7,444.5,183.7,399.3,183.6\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H182h31h35V205.8\r\n\t\tl-54.7,54.5l-11.6-11.6l74.5-74.3l74.5,74.3l-11.8,11.6L264,205.8V352h134c45,0,82-37.3,82-82.8C480,223.7,444.5,183.7,399.3,183.6\r\n\t\tz"},"children":[]}]}]}]};exports.iosCloudUpload=iosCloudUpload;var iosCloud={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M399.3,232.8c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-117.2-116.8-117.2c-46.1,0-85.8,27.9-104.4,67c-8.1-4.1-17.1-6.4-26.8-6.4\r\n\tc-29.6,0-54.1,23.7-58.9,52C57.4,236.8,32,268.8,32,308.4c0,49.8,40.1,91.6,89.6,91.6H398c45,0,82-38.9,82-84.3\r\n\tC480,270.1,444.6,232.9,399.3,232.8z"},"children":[]}]};exports.iosCloud=iosCloud;var iosCloudyNightOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M189,223.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H115.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC126.5,252,154.5,223.8,189,223.8 M189,208c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,296.7,64,319.8,64,346.9\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC257.5,234.3,226.3,208,189,208L189,208z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M189,223.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H115.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC126.5,252,154.5,223.8,189,223.8 M189,208c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,296.7,64,319.8,64,346.9\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC257.5,234.3,226.3,208,189,208L189,208z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc5.9,1.2,11.6,3,17,5.4c10.1-25.5,29.4-46.4,53.8-58.6c-4.6,13.9-7.1,28.7-7.1,44.1c0,27.3,7.9,52.8,21.4,74.2\r\n\t\tc13.8,21.8,33.5,39.5,56.8,50.9c15.3,7.4,32.2,12.1,50,13.5c-14,12.2-31.2,20.9-50,24.8c-1.9,6.9-4.9,13.4-8.6,19.3\r\n\t\tc33.6-3.6,63.3-20.1,84-44.6c5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc5.9,1.2,11.6,3,17,5.4c10.1-25.5,29.4-46.4,53.8-58.6c-4.6,13.9-7.1,28.7-7.1,44.1c0,27.3,7.9,52.8,21.4,74.2\r\n\t\tc13.8,21.8,33.5,39.5,56.8,50.9c15.3,7.4,32.2,12.1,50,13.5c-14,12.2-31.2,20.9-50,24.8c-1.9,6.9-4.9,13.4-8.6,19.3\r\n\t\tc33.6-3.6,63.3-20.1,84-44.6c5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"},"children":[]}]}]}]};exports.iosCloudyNightOutline=iosCloudyNightOutline;var iosCloudyNight={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc-0.3,0.8-0.6,1.5-0.9,2.3c11.9,3.5,23.1,9.4,32.8,17.3c13,10.6,22.9,24.5,28.8,40.1c20.1,0.9,38.9,9.4,53.3,24\r\n\t\tc15.2,15.4,23.5,35.9,23.5,57.4c0,11.4-2.4,22.5-6.8,32.8c0.8-0.1,1.6-0.1,2.5-0.2c33.6-3.6,63.3-20.1,84-44.6\r\n\t\tc5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc-0.3,0.8-0.6,1.5-0.9,2.3c11.9,3.5,23.1,9.4,32.8,17.3c13,10.6,22.9,24.5,28.8,40.1c20.1,0.9,38.9,9.4,53.3,24\r\n\t\tc15.2,15.4,23.5,35.9,23.5,57.4c0,11.4-2.4,22.5-6.8,32.8c0.8-0.1,1.6-0.1,2.5-0.2c33.6-3.6,63.3-20.1,84-44.6\r\n\t\tc5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"},"children":[]}]}]},{"name":"path","attribs":{"class":"st0","d":"M189,209c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,297.7,64,320.8,64,347.9\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\tC257.5,235.3,226.3,209,189,209L189,209z"},"children":[]}]};exports.iosCloudyNight=iosCloudyNight;var iosCloudyOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M244,175.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H170.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.7-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\tC181.5,204,209.5,175.8,244,175.8 M244,160c-43,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7S364.1,221,328.4,221c-2.7,0-5.4,0-8,0.3C312.5,186.3,281,160,244,160\r\n\tL244,160z"},"children":[]}]};exports.iosCloudyOutline=iosCloudyOutline;var iosCloudy={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M244,160c-43,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7S364.1,221,328.4,221c-2.7,0-5.4,0-8,0.3C312.5,186.3,281,160,244,160\r\n\tL244,160z"},"children":[]}]};exports.iosCloudy=iosCloudy;var iosCogOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.696-29.708l-22.594-22.605l-30.192,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.008l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.306l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.608l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.31\r\n\t\tl29.592,12.202l20.595-27.807l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.107l29.593-12.204l-4.998-33.708\r\n\t\tl10.196-7.401l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.403l33.791,4.802l12.298-29.508l-27.193-20.506l2.7-13.503\r\n\t\tL448,272.754z M419.707,320.767l-2.8,6.702l-31.891-4.501l-18.896,27.807l15.695,27.106l-5.198,5.202l-27.293-15.904\r\n\t\tl-26.593,18.204l4.799,31.809l-6.698,2.802l-19.595-25.607l-32.892,6.501l-7.798,31.209h-7.198l-8.397-31.309l-32.592-6.501\r\n\t\tl-19.495,26.406l-6.698-2.801l4.399-32.509l-27.493-18.304l-28.793,17.504l-5.099-5.101l16.996-29.108l-18.096-27.606\r\n\t\tl-33.191,4.701l-2.699-6.603l26.894-20.205l-6.199-31.809l-32.991-8.502v-7.202l32.991-8.402l6.299-31.608l-27.293-20.505\r\n\t\tl2.699-6.602l33.691,4.801l17.796-26.807l-17.996-30.008l4.999-5.001l20.595,12.303l9.197,5.501l27.893-18.205l-4.499-33.809\r\n\t\tl6.699-2.8l20.294,27.407l31.492-6.102l8.798-33.208h7.198l8.298,33.008l31.691,6.301l20.095-26.807l6.598,2.801l-4.999,33.108\r\n\t\tl27.193,18.105l28.292-16.205l5.1,5.102l-16.695,28.007l18.396,27.007l32.491-4.601l2.799,6.702l-26.193,19.705l6.498,32.508\r\n\t\tl31.292,8.102v7.202l-31.391,8.103l-6.499,32.709L419.707,320.767z"},"children":[{"name":"path","attribs":{"d":"M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.696-29.708l-22.594-22.605l-30.192,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.008l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.306l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.608l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.31\r\n\t\tl29.592,12.202l20.595-27.807l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.107l29.593-12.204l-4.998-33.708\r\n\t\tl10.196-7.401l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.403l33.791,4.802l12.298-29.508l-27.193-20.506l2.7-13.503\r\n\t\tL448,272.754z M419.707,320.767l-2.8,6.702l-31.891-4.501l-18.896,27.807l15.695,27.106l-5.198,5.202l-27.293-15.904\r\n\t\tl-26.593,18.204l4.799,31.809l-6.698,2.802l-19.595-25.607l-32.892,6.501l-7.798,31.209h-7.198l-8.397-31.309l-32.592-6.501\r\n\t\tl-19.495,26.406l-6.698-2.801l4.399-32.509l-27.493-18.304l-28.793,17.504l-5.099-5.101l16.996-29.108l-18.096-27.606\r\n\t\tl-33.191,4.701l-2.699-6.603l26.894-20.205l-6.199-31.809l-32.991-8.502v-7.202l32.991-8.402l6.299-31.608l-27.293-20.505\r\n\t\tl2.699-6.602l33.691,4.801l17.796-26.807l-17.996-30.008l4.999-5.001l20.595,12.303l9.197,5.501l27.893-18.205l-4.499-33.809\r\n\t\tl6.699-2.8l20.294,27.407l31.492-6.102l8.798-33.208h7.198l8.298,33.008l31.691,6.301l20.095-26.807l6.598,2.801l-4.999,33.108\r\n\t\tl27.193,18.105l28.292-16.205l5.1,5.102l-16.695,28.007l18.396,27.007l32.491-4.601l2.799,6.702l-26.193,19.705l6.498,32.508\r\n\t\tl31.292,8.102v7.202l-31.391,8.103l-6.499,32.709L419.707,320.767z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,128c-70.692,0-128,57.308-128,128c0,70.693,57.308,128,128,128s128-57.307,128-128C384,185.308,326.692,128,256,128z\r\n\t\t M144,256c0-29.916,11.65-58.042,32.804-79.195C197.958,155.65,226.084,144,256,144c7.496,0,14.88,0.732,22.069,2.161L250.3,250.1\r\n\t\tl-104.155,27.888C144.727,270.824,144,263.468,144,256z M256,368c-29.917,0-58.042-11.65-79.196-32.804\r\n\t\tc-11.927-11.926-20.831-26.069-26.331-41.499L253.9,266.2l74.935,74.889C308.558,358.501,283.009,368,256,368z M340.154,329.901\r\n\t\tL265.2,254.9l28.05-104.58c15.604,5.487,29.904,14.443,41.945,26.484C356.35,197.958,368,226.084,368,256\r\n\t\tC368,283.486,358.159,309.457,340.154,329.901z"},"children":[{"name":"path","attribs":{"d":"M256,128c-70.692,0-128,57.308-128,128c0,70.693,57.308,128,128,128s128-57.307,128-128C384,185.308,326.692,128,256,128z\r\n\t\t M144,256c0-29.916,11.65-58.042,32.804-79.195C197.958,155.65,226.084,144,256,144c7.496,0,14.88,0.732,22.069,2.161L250.3,250.1\r\n\t\tl-104.155,27.888C144.727,270.824,144,263.468,144,256z M256,368c-29.917,0-58.042-11.65-79.196-32.804\r\n\t\tc-11.927-11.926-20.831-26.069-26.331-41.499L253.9,266.2l74.935,74.889C308.558,358.501,283.009,368,256,368z M340.154,329.901\r\n\t\tL265.2,254.9l28.05-104.58c15.604,5.487,29.904,14.443,41.945,26.484C356.35,197.958,368,226.084,368,256\r\n\t\tC368,283.486,358.159,309.457,340.154,329.901z"},"children":[]}]}]}]};exports.iosCogOutline=iosCogOutline;var iosCog={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M293.25,150.32L265.2,254.9l74.954,75C358.159,309.457,368,283.486,368,256c0-29.916-11.65-58.042-32.805-79.196\r\n\t\tC323.154,164.763,308.854,155.807,293.25,150.32z"},"children":[{"name":"path","attribs":{"d":"M293.25,150.32L265.2,254.9l74.954,75C358.159,309.457,368,283.486,368,256c0-29.916-11.65-58.042-32.805-79.196\r\n\t\tC323.154,164.763,308.854,155.807,293.25,150.32z"},"children":[]}]},{"name":"path","attribs":{"d":"M278.068,146.161C270.88,144.732,263.496,144,256,144c-29.916,0-58.042,11.65-79.196,32.805\r\n\t\tC155.65,197.958,144,226.084,144,256c0,7.468,0.727,14.824,2.145,21.988L250.3,250.1L278.068,146.161z"},"children":[{"name":"path","attribs":{"d":"M278.068,146.161C270.88,144.732,263.496,144,256,144c-29.916,0-58.042,11.65-79.196,32.805\r\n\t\tC155.65,197.958,144,226.084,144,256c0,7.468,0.727,14.824,2.145,21.988L250.3,250.1L278.068,146.161z"},"children":[]}]},{"name":"path","attribs":{"d":"M150.473,293.697c5.5,15.43,14.404,29.572,26.331,41.498C197.958,356.35,226.083,368,256,368\r\n\t\tc27.009,0,52.558-9.499,72.835-26.911L253.9,266.2L150.473,293.697z"},"children":[{"name":"path","attribs":{"d":"M150.473,293.697c5.5,15.43,14.404,29.572,26.331,41.498C197.958,356.35,226.083,368,256,368\r\n\t\tc27.009,0,52.558-9.499,72.835-26.911L253.9,266.2L150.473,293.697z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.695-29.708l-22.594-22.605l-30.191,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.007l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.307l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.607l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.311\r\n\t\tl29.592,12.202l20.595-27.808l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.106l29.593-12.203l-4.998-33.709\r\n\t\tl10.196-7.4l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.402l33.791,4.802l12.298-29.508l-27.193-20.507l2.7-13.502\r\n\t\tL448,272.754z M256,384c-70.692,0-128-57.307-128-128c0-70.692,57.308-128,128-128c70.692,0,128,57.308,128,128\r\n\t\tC384,326.693,326.692,384,256,384z"},"children":[{"name":"path","attribs":{"d":"M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.695-29.708l-22.594-22.605l-30.191,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.007l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.307l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.607l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.311\r\n\t\tl29.592,12.202l20.595-27.808l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.106l29.593-12.203l-4.998-33.709\r\n\t\tl10.196-7.4l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.402l33.791,4.802l12.298-29.508l-27.193-20.507l2.7-13.502\r\n\t\tL448,272.754z M256,384c-70.692,0-128-57.307-128-128c0-70.692,57.308-128,128-128c70.692,0,128,57.308,128,128\r\n\t\tC384,326.693,326.692,384,256,384z"},"children":[]}]}]}]};exports.iosCog=iosCog;var iosColorFilterOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M366.195,212.122c1.185-6.528,1.806-13.252,1.806-20.122c0-61.856-50.145-112.001-112.001-112.001\r\n\tS143.999,130.144,143.999,192c0,6.87,0.621,13.594,1.806,20.122C98.616,225.302,63.999,268.606,63.999,320\r\n\tc0,61.856,50.145,112.001,112.001,112.001c31.342,0,59.671-12.879,80-33.627c20.329,20.748,48.658,33.627,80,33.627\r\n\tc61.856,0,112.001-50.145,112.001-112.001C448.001,268.606,413.384,225.303,366.195,212.122z M159.999,192\r\n\tc0-52.935,43.065-96.001,96.001-96.001s96.001,43.066,96.001,96.001c0,5.776-0.513,11.435-1.495,16.933\r\n\tc-4.749-0.614-9.59-0.934-14.506-0.934c-31.342,0-59.671,12.879-80,33.627c-20.329-20.748-48.658-33.627-80-33.627\r\n\tc-4.916,0-9.757,0.319-14.506,0.934C160.512,203.435,159.999,197.776,159.999,192z M272.001,320c0,19.58-5.896,37.806-16.001,53.006\r\n\tc-10.104-15.2-16.001-33.426-16.001-53.006c0-5.776,0.513-11.435,1.495-16.933c4.749,0.614,9.59,0.934,14.506,0.934\r\n\ts9.757-0.319,14.506-0.934C271.488,308.565,272.001,314.224,272.001,320z M256,288.001c-3.484,0-6.925-0.191-10.314-0.556\r\n\tc2.626-7.262,6.105-14.119,10.314-20.451c4.21,6.332,7.688,13.189,10.314,20.451C262.925,287.81,259.484,288.001,256,288.001z\r\n\t M229.791,284.364c-29.756-8.455-53.666-30.937-64.105-59.81c3.39-0.364,6.83-0.556,10.314-0.556\r\n\tc27.353,0,52.069,11.5,69.572,29.917C238.847,263.104,233.484,273.351,229.791,284.364z M266.428,253.917\r\n\tc17.503-18.418,42.219-29.918,69.572-29.918c3.484,0,6.925,0.191,10.314,0.556c-10.439,28.873-34.35,51.354-64.105,59.81\r\n\tC278.516,273.351,273.153,263.104,266.428,253.917z M176,416.001c-52.936,0-96.001-43.065-96.001-96.001\r\n\tc0-43.852,29.555-80.931,69.792-92.364c11.732,34.983,40.265,62.257,76.014,72.243c-1.185,6.527-1.806,13.252-1.806,20.121\r\n\tc0,24.717,8.013,47.559,21.573,66.084C228.069,404.501,203.353,416.001,176,416.001z M336,416.001\r\n\tc-27.354,0-52.069-11.5-69.572-29.918c13.561-18.524,21.573-41.366,21.573-66.083c0-6.869-0.621-13.594-1.806-20.121\r\n\tc35.749-9.986,64.281-37.26,76.014-72.243c40.237,11.434,69.792,48.513,69.792,92.364C432.001,372.936,388.936,416.001,336,416.001z\r\n\t"},"children":[]}]};exports.iosColorFilterOutline=iosColorFilterOutline;var iosColorFilter={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M366.194,212.122c1.185-6.528,1.807-13.252,1.807-20.122c0-61.856-50.146-112-112.001-112\r\n\t\tc-61.857,0-112.001,50.144-112.001,112c0,6.87,0.622,13.594,1.806,20.122C98.618,225.302,64,268.606,64,320\r\n\t\tc0,61.855,50.144,112,112,112c31.341,0,59.67-12.879,80-33.627C276.328,419.121,304.658,432,335.999,432\r\n\t\tC397.854,432,448,381.855,448,320C448,268.606,413.381,225.303,366.194,212.122z M255.998,395.373\r\n\t\tc-0.484,0.495-0.979,0.982-1.475,1.469c-3.201-3.394-6.189-6.987-8.951-10.759c-13.561-18.525-21.574-41.366-21.574-66.083\r\n\t\tc0-6.869,0.622-13.594,1.807-20.121c-35.749-9.986-64.281-37.26-76.014-72.243c-1.594-4.752-2.872-9.647-3.822-14.659\r\n\t\tc0.942-0.29,1.882-0.589,2.835-0.854c-0.046-0.252-0.085-0.507-0.129-0.759c4.186-1.049,8.463-1.867,12.82-2.43\r\n\t\tC166.243,208.319,171.084,208,176,208c31.341,0,59.67,12.878,80,33.626C276.328,220.878,304.658,208,335.999,208\r\n\t\tc4.916,0,9.757,0.319,14.506,0.934c4.355,0.563,8.633,1.38,12.816,2.429c-0.043,0.253-0.082,0.507-0.129,0.76\r\n\t\tc0.955,0.267,1.895,0.564,2.838,0.855c-0.949,5.012-2.229,9.907-3.822,14.658c-11.732,34.983-40.266,62.257-76.013,72.242\r\n\t\tc1.185,6.528,1.807,13.253,1.807,20.122c0,24.717-8.014,47.558-21.574,66.083c-2.762,3.772-5.752,7.367-8.953,10.76\r\n\t\tC256.979,396.356,256.484,395.869,255.998,395.373z"},"children":[{"name":"path","attribs":{"d":"M366.194,212.122c1.185-6.528,1.807-13.252,1.807-20.122c0-61.856-50.146-112-112.001-112\r\n\t\tc-61.857,0-112.001,50.144-112.001,112c0,6.87,0.622,13.594,1.806,20.122C98.618,225.302,64,268.606,64,320\r\n\t\tc0,61.855,50.144,112,112,112c31.341,0,59.67-12.879,80-33.627C276.328,419.121,304.658,432,335.999,432\r\n\t\tC397.854,432,448,381.855,448,320C448,268.606,413.381,225.303,366.194,212.122z M255.998,395.373\r\n\t\tc-0.484,0.495-0.979,0.982-1.475,1.469c-3.201-3.394-6.189-6.987-8.951-10.759c-13.561-18.525-21.574-41.366-21.574-66.083\r\n\t\tc0-6.869,0.622-13.594,1.807-20.121c-35.749-9.986-64.281-37.26-76.014-72.243c-1.594-4.752-2.872-9.647-3.822-14.659\r\n\t\tc0.942-0.29,1.882-0.589,2.835-0.854c-0.046-0.252-0.085-0.507-0.129-0.759c4.186-1.049,8.463-1.867,12.82-2.43\r\n\t\tC166.243,208.319,171.084,208,176,208c31.341,0,59.67,12.878,80,33.626C276.328,220.878,304.658,208,335.999,208\r\n\t\tc4.916,0,9.757,0.319,14.506,0.934c4.355,0.563,8.633,1.38,12.816,2.429c-0.043,0.253-0.082,0.507-0.129,0.76\r\n\t\tc0.955,0.267,1.895,0.564,2.838,0.855c-0.949,5.012-2.229,9.907-3.822,14.658c-11.732,34.983-40.266,62.257-76.013,72.242\r\n\t\tc1.185,6.528,1.807,13.253,1.807,20.122c0,24.717-8.014,47.558-21.574,66.083c-2.762,3.772-5.752,7.367-8.953,10.76\r\n\t\tC256.979,396.356,256.484,395.869,255.998,395.373z"},"children":[]}]},{"name":"path","attribs":{"d":"M270.506,303.067c-4.749,0.614-9.59,0.934-14.506,0.934s-9.758-0.319-14.506-0.934c-0.982,5.498-1.496,11.156-1.496,16.933\r\n\t\tc0,19.58,5.898,37.806,16.002,53.005c10.104-15.199,16.002-33.425,16.002-53.005C272.002,314.224,271.488,308.565,270.506,303.067z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M270.506,303.067c-4.749,0.614-9.59,0.934-14.506,0.934s-9.758-0.319-14.506-0.934c-0.982,5.498-1.496,11.156-1.496,16.933\r\n\t\tc0,19.58,5.898,37.806,16.002,53.005c10.104-15.199,16.002-33.425,16.002-53.005C272.002,314.224,271.488,308.565,270.506,303.067z\r\n\t\t"},"children":[]}]},{"name":"path","attribs":{"d":"M346.313,224.555c-3.39-0.364-6.83-0.556-10.314-0.556c-27.354,0-52.069,11.5-69.571,29.917\r\n\t\tc6.725,9.188,12.088,19.434,15.781,30.448C311.964,275.909,335.874,253.428,346.313,224.555z"},"children":[{"name":"path","attribs":{"d":"M346.313,224.555c-3.39-0.364-6.83-0.556-10.314-0.556c-27.354,0-52.069,11.5-69.571,29.917\r\n\t\tc6.725,9.188,12.088,19.434,15.781,30.448C311.964,275.909,335.874,253.428,346.313,224.555z"},"children":[]}]},{"name":"path","attribs":{"d":"M266.314,287.445c-2.625-7.262-6.105-14.119-10.314-20.451c-4.209,6.332-7.689,13.189-10.314,20.451\r\n\t\tc3.389,0.364,6.83,0.556,10.314,0.556S262.925,287.81,266.314,287.445z"},"children":[{"name":"path","attribs":{"d":"M266.314,287.445c-2.625-7.262-6.105-14.119-10.314-20.451c-4.209,6.332-7.689,13.189-10.314,20.451\r\n\t\tc3.389,0.364,6.83,0.556,10.314,0.556S262.925,287.81,266.314,287.445z"},"children":[]}]},{"name":"path","attribs":{"d":"M176,223.999c-3.484,0-6.925,0.191-10.314,0.556c10.439,28.873,34.349,51.354,64.106,59.81\r\n\t\tc3.693-11.015,9.055-21.261,15.781-30.448C228.07,235.499,203.353,223.999,176,223.999z"},"children":[{"name":"path","attribs":{"d":"M176,223.999c-3.484,0-6.925,0.191-10.314,0.556c10.439,28.873,34.349,51.354,64.106,59.81\r\n\t\tc3.693-11.015,9.055-21.261,15.781-30.448C228.07,235.499,203.353,223.999,176,223.999z"},"children":[]}]}]}]};exports.iosColorFilter=iosColorFilter;var iosColorWandOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M192.011,149.661l-34.043,34.041l256.097,256.096L448,405.757L192.011,149.661z M212.596,215.702l11.415-11.414\r\n\t\tl201.468,201.469l-11.414,11.414L212.596,215.702z"},"children":[{"name":"path","attribs":{"d":"M192.011,149.661l-34.043,34.041l256.097,256.096L448,405.757L192.011,149.661z M212.596,215.702l11.415-11.414\r\n\t\tl201.468,201.469l-11.414,11.414L212.596,215.702z"},"children":[]}]},{"name":"rect","attribs":{"x":"184","y":"64","width":"16","height":"40"},"children":[{"name":"rect","attribs":{"x":"184","y":"64","width":"16","height":"40"},"children":[]}]},{"name":"rect","attribs":{"x":"184","y":"268","width":"16","height":"40"},"children":[{"name":"rect","attribs":{"x":"184","y":"268","width":"16","height":"40"},"children":[]}]},{"name":"rect","attribs":{"x":"280","y":"176","width":"40","height":"16"},"children":[{"name":"rect","attribs":{"x":"280","y":"176","width":"40","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"64","y":"176","width":"40","height":"16"},"children":[{"name":"rect","attribs":{"x":"64","y":"176","width":"40","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"111.875","y":"94.077","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 285.3039 109.9734)","width":"16","height":"40"},"children":[{"name":"rect","attribs":{"x":"111.875","y":"94.077","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 285.3039 109.9734)","width":"16","height":"40"},"children":[]}]},{"name":"rect","attribs":{"x":"111.877","y":"238.327","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 21.9762 525.7571)","width":"15.998","height":"40"},"children":[{"name":"rect","attribs":{"x":"111.877","y":"238.327","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 21.9762 525.7571)","width":"15.998","height":"40"},"children":[]}]},{"name":"rect","attribs":{"x":"256.126","y":"94.077","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 370.226 381.506)","width":"16","height":"39.999"},"children":[{"name":"rect","attribs":{"x":"256.126","y":"94.077","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 370.226 381.506)","width":"16","height":"39.999"},"children":[]}]}]}]};exports.iosColorWandOutline=iosColorWandOutline;var iosColorWand={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"198.011,159.22 163.968,193.337 420.064,450 454,415.883 \t"},"children":[{"name":"polygon","attribs":{"points":"198.011,159.22 163.968,193.337 420.064,450 454,415.883 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"182","y":"62","width":"32","height":"64"},"children":[{"name":"rect","attribs":{"x":"182","y":"62","width":"32","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"182","y":"266","width":"32","height":"64"},"children":[{"name":"rect","attribs":{"x":"182","y":"266","width":"32","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"274","y":"178","width":"64","height":"32"},"children":[{"name":"rect","attribs":{"x":"274","y":"178","width":"64","height":"32"},"children":[]}]},{"name":"polygon","attribs":{"points":"303.941,112.143 281.314,89.465 236.06,134.82 258.687,157.498 \t"},"children":[{"name":"polygon","attribs":{"points":"303.941,112.143 281.314,89.465 236.06,134.82 258.687,157.498 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"92.06,112.143 137.314,157.498 159.941,134.82 114.687,89.465 \t"},"children":[{"name":"polygon","attribs":{"points":"92.06,112.143 137.314,157.498 159.941,134.82 114.687,89.465 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"92.06,279.141 114.687,301.816 159.941,256.462 137.314,233.784 \t"},"children":[{"name":"polygon","attribs":{"points":"92.06,279.141 114.687,301.816 159.941,256.462 137.314,233.784 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"58","y":"178","width":"64","height":"32"},"children":[{"name":"rect","attribs":{"x":"58","y":"178","width":"64","height":"32"},"children":[]}]}]}]};exports.iosColorWand=iosColorWand;var iosComposeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"368,416 80,416 80,144 304.117,144 320.117,128 64,128 64,432 384,432 384,191.883 368,207.883 \t"},"children":[{"name":"polygon","attribs":{"points":"368,416 80,416 80,144 304.117,144 320.117,128 64,128 64,432 384,432 384,191.883 368,207.883 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"237.623,284.084 227.917,274.377 399.24,103.054 387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \r\n\t\t408.947,112.73 \t"},"children":[{"name":"polygon","attribs":{"points":"237.623,284.084 227.917,274.377 399.24,103.054 387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \r\n\t\t408.947,112.73 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"},"children":[]}]}]}]};exports.iosComposeOutline=iosComposeOutline;var iosCompose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,320 192,320 192,256 320,128 64,128 64,432 384,432 384,192 \t"},"children":[{"name":"polygon","attribs":{"points":"256,320 192,320 192,256 320,128 64,128 64,432 384,432 384,192 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \t"},"children":[{"name":"polygon","attribs":{"points":"387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"},"children":[]}]}]}]};exports.iosCompose=iosCompose;var iosContactOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,65.3\r\n\tc105.1,0,190.7,85.5,190.7,190.7c0,46.5-16.7,89.1-44.4,122.2c-20-8.2-65.9-24.1-92.9-32.1c-2.4-0.7-2.7-0.9-2.7-10.7\r\n\tc0-8.1,3.3-16.3,6.6-23.3c3.6-7.5,7.7-20.2,9.2-31.6c4.2-4.9,10-14.5,13.6-32.9c3.2-16.2,1.7-22.1-0.4-27.6\r\n\tc-0.2-0.6-0.5-1.2-0.6-1.7c-0.8-3.8,0.3-23.5,3.1-38.8c1.9-10.5-0.5-32.8-14.9-51.3c-9.1-11.7-26.6-26-58.5-28l-17.5,0\r\n\tc-31.4,2-48.8,16.3-58,28c-14.5,18.5-16.9,40.8-15,51.3c2.8,15.3,3.9,35,3.1,38.8c-0.2,0.7-0.4,1.2-0.6,1.8\r\n\tc-2.1,5.5-3.7,11.4-0.4,27.6c3.7,18.4,9.4,28,13.6,32.9c1.5,11.4,5.7,24,9.2,31.6c2.6,5.5,3.8,13,3.8,23.6c0,9.9-0.4,10-2.6,10.7\r\n\tc-28.1,8.3-72.6,24.3-90.4,32C82.1,345.3,65.3,302.6,65.3,256C65.3,150.9,150.9,65.3,256,65.3z"},"children":[]}]};exports.iosContactOutline=iosContactOutline;var iosContact={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t M256,446.7c-58.6,0-111.1-26.6-146.1-68.3c17.8-7.7,62.2-23.7,90.3-31.9c2.2-0.7,2.6-0.8,2.6-10.7c0-10.6-1.2-18.1-3.8-23.6\r\n\tc-3.5-7.5-7.7-20.2-9.2-31.6c-4.2-4.9-9.9-14.5-13.6-32.9c-3.2-16.2-1.7-22.1,0.4-27.6c0.2-0.6,0.5-1.2,0.6-1.8\r\n\tc0.8-3.7-0.3-23.5-3.1-38.8c-1.9-10.5,0.5-32.8,15-51.3c9.1-11.7,26.6-26,58-28l17.5,0c31.9,2,49.4,16.3,58.5,28\r\n\tc14.5,18.5,16.9,40.8,14.9,51.3c-2.8,15.3-3.9,35-3.1,38.8c0.1,0.6,0.4,1.2,0.6,1.7c2.1,5.5,3.7,11.4,0.4,27.6\r\n\tc-3.7,18.4-9.4,28-13.6,32.9c-1.5,11.4-5.7,24-9.2,31.6c-3.3,6.9-6.6,15.1-6.6,23.3c0,9.9,0.4,10,2.7,10.7\r\n\tc26.7,7.9,72.7,23.8,93,32.1C367.2,420,314.7,446.7,256,446.7z"},"children":[]}]};exports.iosContact=iosContact;var iosCopyOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"304,96 288,96 288,176 368,176 368,160 304,160 \t"},"children":[{"name":"polygon","attribs":{"points":"304,96 288,96 288,176 368,176 368,160 304,160 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M325.3,64H160v48h-48v336h240v-48h48V139L325.3,64z M336,432H128V128h32v272h176V432z M384,384H176V80h142.7l65.3,65.6V384\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M325.3,64H160v48h-48v336h240v-48h48V139L325.3,64z M336,432H128V128h32v272h176V432z M384,384H176V80h142.7l65.3,65.6V384\r\n\t\tz"},"children":[]}]}]}]};exports.iosCopyOutline=iosCopyOutline;var iosCopy={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"144,416 144,400 144,112 112,112 112,448 352,448 352,416 160,416 \t"},"children":[{"name":"polygon","attribs":{"points":"144,416 144,400 144,112 112,112 112,448 352,448 352,416 160,416 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M325.3,64H160v48v288h192h48V139L325.3,64z M368,176h-80V96h16v64h64V176z"},"children":[{"name":"path","attribs":{"d":"M325.3,64H160v48v288h192h48V139L325.3,64z M368,176h-80V96h16v64h64V176z"},"children":[]}]}]}]}]}]};exports.iosCopy=iosCopy;var iosCropStrong={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"64","width":"32","height":"48"},"children":[{"name":"rect","attribs":{"x":"128","y":"64","width":"32","height":"48"},"children":[]}]},{"name":"polygon","attribs":{"points":"160,352 160,176 128,176 128,384 336,384 336,352 \t"},"children":[{"name":"polygon","attribs":{"points":"160,352 160,176 128,176 128,384 336,384 336,352 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"400","y":"352","width":"48","height":"32"},"children":[{"name":"rect","attribs":{"x":"400","y":"352","width":"48","height":"32"},"children":[]}]},{"name":"polygon","attribs":{"points":"64,128 64,160 352,160 352,448 384,448 384,128 \t"},"children":[{"name":"polygon","attribs":{"points":"64,128 64,160 352,160 352,448 384,448 384,128 \t"},"children":[]}]}]}]};exports.iosCropStrong=iosCropStrong;var iosCrop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"64","width":"16","height":"48"},"children":[{"name":"rect","attribs":{"x":"128","y":"64","width":"16","height":"48"},"children":[]}]},{"name":"polygon","attribs":{"points":"144,368 144,160 128,160 128,384 352,384 352,368 \t"},"children":[{"name":"polygon","attribs":{"points":"144,368 144,160 128,160 128,384 352,384 352,368 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"400","y":"368","width":"48","height":"16"},"children":[{"name":"rect","attribs":{"x":"400","y":"368","width":"48","height":"16"},"children":[]}]},{"name":"polygon","attribs":{"points":"64,128 64,144 368,144 368,448 384,448 384,128 \t"},"children":[{"name":"polygon","attribs":{"points":"64,128 64,144 368,144 368,448 384,448 384,128 \t"},"children":[]}]}]}]};exports.iosCrop=iosCrop;var iosDownloadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"},"children":[{"name":"polygon","attribs":{"points":"288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"193.1,252.3 181.5,263.9 256,338.4 330.5,263.9 318.9,252.3 264.2,307 264.2,64 247.8,64 247.8,307 \t\t"},"children":[{"name":"polygon","attribs":{"points":"193.1,252.3 181.5,263.9 256,338.4 330.5,263.9 318.9,252.3 264.2,307 264.2,64 247.8,64 247.8,307 \t\t"},"children":[]}]}]}]}]}]};exports.iosDownloadOutline=iosDownloadOutline;var iosDownload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"264,144 264,307 318.8,252.3 330.4,263.9 256,338.4 181.5,263.9 193.2,252.3 248,307 248,144 96,144 96,448 \r\n\t\t416,448 416,144 \t"},"children":[{"name":"polygon","attribs":{"points":"264,144 264,307 318.8,252.3 330.4,263.9 256,338.4 181.5,263.9 193.2,252.3 248,307 248,144 96,144 96,448 \r\n\t\t416,448 416,144 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"248","y":"64","width":"16","height":"80"},"children":[{"name":"rect","attribs":{"x":"248","y":"64","width":"16","height":"80"},"children":[]}]}]}]};exports.iosDownload=iosDownload;var iosDrag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"80","y":"304","width":"352","height":"16"},"children":[{"name":"rect","attribs":{"x":"80","y":"304","width":"352","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"80","y":"248","width":"352","height":"16"},"children":[{"name":"rect","attribs":{"x":"80","y":"248","width":"352","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"80","y":"192","width":"352","height":"16"},"children":[{"name":"rect","attribs":{"x":"80","y":"192","width":"352","height":"16"},"children":[]}]}]}]};exports.iosDrag=iosDrag;var iosEmailOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M64,128v256h384V128H64z M256,267.9L93.2,144h325.6L256,267.9z M80,368V154.1l115.1,87.6L127,319l2,2l78.9-69.6L256,288\r\n\tl48.1-36.6L383,321l2-2l-68.1-77.4L432,154.1V368H80z"},"children":[]}]};exports.iosEmailOutline=iosEmailOutline;var iosEmail={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"448,384 448,141.8 316.9,241.6 385,319 383,321 304.1,251.4 256,288 207.9,251.4 129,321 127,319 195,241.6 \r\n\t\t64,142 64,384 \t"},"children":[{"name":"polygon","attribs":{"points":"448,384 448,141.8 316.9,241.6 385,319 383,321 304.1,251.4 256,288 207.9,251.4 129,321 127,319 195,241.6 \r\n\t\t64,142 64,384 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"439.7,128 72,128 256,267.9 \t"},"children":[{"name":"polygon","attribs":{"points":"439.7,128 72,128 256,267.9 \t"},"children":[]}]}]}]};exports.iosEmail=iosEmail;var iosEyeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,160\r\n\t\t\tc33.1,0,64.9,9.5,97.2,30.6c23.9,15.6,47.4,36.7,73.7,66.1C388.6,295.4,331.1,352,256,352c-34.2,0-64.2-8.4-94.2-28.2\r\n\t\t\tc-27.5-18.1-52.3-43.3-76.2-67.8C144.7,196.3,194,160,256,160z"},"children":[{"name":"path","attribs":{"d":"M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,160\r\n\t\t\tc33.1,0,64.9,9.5,97.2,30.6c23.9,15.6,47.4,36.7,73.7,66.1C388.6,295.4,331.1,352,256,352c-34.2,0-64.2-8.4-94.2-28.2\r\n\t\t\tc-27.5-18.1-52.3-43.3-76.2-67.8C144.7,196.3,194,160,256,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,336c44.1,0,80-35.9,80-80c0-44.1-35.9-80-80-80c-44.1,0-80,35.9-80,80C176,300.1,211.9,336,256,336z M256,192.3\r\n\t\t\tc35.2,0,64,28.6,64,63.7c0,35.1-28.8,63.7-64,63.7c-35.2,0-63.9-28.6-63.9-63.7C192.1,220.9,220.8,192.3,256,192.3z"},"children":[{"name":"path","attribs":{"d":"M256,336c44.1,0,80-35.9,80-80c0-44.1-35.9-80-80-80c-44.1,0-80,35.9-80,80C176,300.1,211.9,336,256,336z M256,192.3\r\n\t\t\tc35.2,0,64,28.6,64,63.7c0,35.1-28.8,63.7-64,63.7c-35.2,0-63.9-28.6-63.9-63.7C192.1,220.9,220.8,192.3,256,192.3z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M288,256L288,256c0,17.5-14.4,32-31.8,32S224,272.8,224,255.3s15.8-31.3,32-31.3l0-16c-26.5,0-47.9,21.6-47.9,48.2\r\n\t\tc0,26.6,21.5,48.1,47.9,48.1s48-21.6,48-48.1V256H288z"},"children":[{"name":"path","attribs":{"d":"M288,256L288,256c0,17.5-14.4,32-31.8,32S224,272.8,224,255.3s15.8-31.3,32-31.3l0-16c-26.5,0-47.9,21.6-47.9,48.2\r\n\t\tc0,26.6,21.5,48.1,47.9,48.1s48-21.6,48-48.1V256H288z"},"children":[]}]}]}]};exports.iosEyeOutline=iosEyeOutline;var iosEye={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,336\r\n\t\tc-44.1,0-80-35.9-80-80c0-44.1,35.9-80,80-80c44.1,0,80,35.9,80,80C336,300.1,300.1,336,256,336z"},"children":[{"name":"path","attribs":{"d":"M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,336\r\n\t\tc-44.1,0-80-35.9-80-80c0-44.1,35.9-80,80-80c44.1,0,80,35.9,80,80C336,300.1,300.1,336,256,336z"},"children":[]}]},{"name":"path","attribs":{"d":"M250.4,226.8c0-6.9,2-13.4,5.5-18.8c-26.5,0-47.9,21.6-47.9,48.2c0,26.6,21.5,48.1,47.9,48.1s48-21.5,48-48.1v0\r\n\t\tc-5.4,3.5-11.9,5.5-18.8,5.5C266,261.6,250.4,246,250.4,226.8z"},"children":[{"name":"path","attribs":{"d":"M250.4,226.8c0-6.9,2-13.4,5.5-18.8c-26.5,0-47.9,21.6-47.9,48.2c0,26.6,21.5,48.1,47.9,48.1s48-21.5,48-48.1v0\r\n\t\tc-5.4,3.5-11.9,5.5-18.8,5.5C266,261.6,250.4,246,250.4,226.8z"},"children":[]}]}]}]};exports.iosEye=iosEye;var iosFastforwardOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M48,155l183.5,101L48,356.9V155 M272,155.8L448,256L272,356.4v-95.6v-27.1V156 M256,128v123.2L32,128v256l224-123.2V384\r\n\tl224-128L256,128L256,128z"},"children":[]}]};exports.iosFastforwardOutline=iosFastforwardOutline;var iosFastforward={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,128v123.2L32,128v256l224-123.2V384l224-128L256,128L256,128z"},"children":[]}]};exports.iosFastforward=iosFastforward;var iosFilingOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M368.5,128h-225L80,224v160h176h176V224L368.5,128z M413.4,224H368v-68L413.4,224z M160,144h192v80h-48\r\n\tc0,26.5-21.5,48-48,48s-48-21.5-48-48h-48V144z M144,156v68H98.6L144,156z M416,368H256H96V240h98c7.1,27.6,32.2,48,62,48\r\n\ts54.9-20.4,62-48h98V368z"},"children":[]}]};exports.iosFilingOutline=iosFilingOutline;var iosFiling={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,288c-29.8,0-54.9-20.4-62-48H80v144h176h176V240H318C310.9,267.6,285.8,288,256,288z"},"children":[{"name":"path","attribs":{"d":"M256,288c-29.8,0-54.9-20.4-62-48H80v144h176h176V240H318C310.9,267.6,285.8,288,256,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M144,224h16h9h39c0,26.5,21.5,48,48,48s48-21.5,48-48h40h8h16h8h56l-63.5-96H368v80h-16v-80H160v80h-16v-80h-0.5L80,224h57\r\n\t\tH144z"},"children":[{"name":"path","attribs":{"d":"M144,224h16h9h39c0,26.5,21.5,48,48,48s48-21.5,48-48h40h8h16h8h56l-63.5-96H368v80h-16v-80H160v80h-16v-80h-0.5L80,224h57\r\n\t\tH144z"},"children":[]}]}]}]};exports.iosFiling=iosFiling;var iosFilmOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t M128,152H72v-48h56V152z M368,408H144V264h224V408z M368,248H144V104h224V248z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z\r\n\t M440,280h-56v-48h56V280z M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z"},"children":[]}]};exports.iosFilmOutline=iosFilmOutline;var iosFilm={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t\t M128,152H72v-48h56V152z M368,264H144v-16h224V264z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z M440,280h-56v-48h56V280z\r\n\t\t M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z"},"children":[{"name":"path","attribs":{"d":"M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t\t M128,152H72v-48h56V152z M368,264H144v-16h224V264z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z M440,280h-56v-48h56V280z\r\n\t\t M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z"},"children":[]}]}]}]};exports.iosFilm=iosFilm;var iosFlagOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z M368,269c-11,1.4-23.9,3.5-38.7,3.5\r\n\t\tc-23.1,0-45-4.7-66.2-9.2c-21.5-4.6-43.6-13.3-67.1-13.3c-25.7,0-41.9,3-51.9,6V118.7c6-2.5,21.9-6.8,51.9-6.8\r\n\t\tc21.8,0,42.2,4.3,63.9,9c22,4.7,43.8,10.6,68.5,10.6c14.7,0,28.7-2,39.7-3.3L368,269L368,269z"},"children":[{"name":"path","attribs":{"d":"M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z M368,269c-11,1.4-23.9,3.5-38.7,3.5\r\n\t\tc-23.1,0-45-4.7-66.2-9.2c-21.5-4.6-43.6-13.3-67.1-13.3c-25.7,0-41.9,3-51.9,6V118.7c6-2.5,21.9-6.8,51.9-6.8\r\n\t\tc21.8,0,42.2,4.3,63.9,9c22,4.7,43.8,10.6,68.5,10.6c14.7,0,28.7-2,39.7-3.3L368,269L368,269z"},"children":[]}]}]}]};exports.iosFlagOutline=iosFlagOutline;var iosFlag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z"},"children":[{"name":"path","attribs":{"d":"M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z"},"children":[]}]}]}]};exports.iosFlag=iosFlag;var iosFlameOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z M367.153,318.449c-2.823,28.988-9.704,54.523-20.45,75.894\r\n\tc-8.749,17.397-20.084,32.114-33.692,43.743c-6.522,5.575-13.255,10.115-19.771,13.749c10.039-15.938,19.093-36.72,19.093-59.835\r\n\tc0-50.788-43.842-90.307-45.708-91.963l-10.594-9.41l-10.621,9.381c-1.877,1.657-45.963,41.178-45.963,91.992\r\n\tc0,21.842,8.168,41.594,17.636,57.152c-7.381-4.326-15.215-9.748-22.986-16.451c-14.688-12.67-26.365-27.608-34.708-44.402\r\n\tc-10.063-20.255-15.239-43.265-15.383-68.391c-0.367-63.986,24.09-95.746,49.983-129.369c24.568-31.903,49.829-64.7,49.458-122.113\r\n\tc32.513,28.827,61.257,63.03,82.822,98.877C357.576,219.35,371.715,271.615,367.153,318.449z"},"children":[]}]};exports.iosFlameOutline=iosFlameOutline;var iosFlame={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\t\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\t\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z"},"children":[{"name":"path","attribs":{"d":"M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\t\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\t\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z"},"children":[]}]}]}]};exports.iosFlame=iosFlame;var iosFlaskOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M436.912,370.441L320,175V48h16V32h-16.009H304v16v131.418l2.514,3.791l116.575,194.834\r\n\t\tc6.75,12.818,9.314,25.95,9.001,37.957c-0.243,9.339-1.958,17.938-6.545,25.569C417.076,455.666,402.33,464,384.981,464H129.093\r\n\t\tc-17.504,0-32.461-8.435-41.035-22.705c-11.897-19.801-10.889-38.145,2.275-63.139L181.821,224H240v-16h-48.683l14.687-24.756\r\n\t\tL208,179.4V176h48v-16h-48v-32h32v-16h-32V80h48V64h-48V48V32h-15.989H176v16h16v127L76.126,370.441\r\n\t\tC67.714,386.268,63.615,401.814,64.027,416c1.061,36.511,28.702,64,65.065,64h255.889c36.291,0,62.131-27.598,62.992-64\r\n\t\tC448.311,401.756,445.367,386.349,436.912,370.441z"},"children":[{"name":"path","attribs":{"d":"M436.912,370.441L320,175V48h16V32h-16.009H304v16v131.418l2.514,3.791l116.575,194.834\r\n\t\tc6.75,12.818,9.314,25.95,9.001,37.957c-0.243,9.339-1.958,17.938-6.545,25.569C417.076,455.666,402.33,464,384.981,464H129.093\r\n\t\tc-17.504,0-32.461-8.435-41.035-22.705c-11.897-19.801-10.889-38.145,2.275-63.139L181.821,224H240v-16h-48.683l14.687-24.756\r\n\t\tL208,179.4V176h48v-16h-48v-32h32v-16h-32V80h48V64h-48V48V32h-15.989H176v16h16v127L76.126,370.441\r\n\t\tC67.714,386.268,63.615,401.814,64.027,416c1.061,36.511,28.702,64,65.065,64h255.889c36.291,0,62.131-27.598,62.992-64\r\n\t\tC448.311,401.756,445.367,386.349,436.912,370.441z"},"children":[]}]},{"name":"path","attribs":{"d":"M108.292,374.616c-6.907,10.542-10.936,24.095-10.936,33.55c0,27.584,15.82,39.834,45.682,39.834h225.932\r\n\t\tc29.804,0,44.975-15.711,45.681-39.959c0.277-9.488-3.143-22.729-10.086-33.324L332.729,256H179.5L108.292,374.616z M323.705,272\r\n\t\tl67.168,110.87l0.151,0.124l0.159,0.182c5.382,8.212,7.647,18.275,7.476,24.18c-0.229,7.839-2.477,13.98-6.683,17.795\r\n\t\tc-4.774,4.328-12.729,6.85-23.008,6.85H143.037c-11.064,0-19.27-2.236-23.73-5.996c-1.472-1.24-5.954-5.143-5.954-18.088\r\n\t\tc0-5.943,2.857-16.383,8.319-24.717l0.177-0.302l0.166-0.042L188.564,272H323.705z"},"children":[{"name":"path","attribs":{"d":"M108.292,374.616c-6.907,10.542-10.936,24.095-10.936,33.55c0,27.584,15.82,39.834,45.682,39.834h225.932\r\n\t\tc29.804,0,44.975-15.711,45.681-39.959c0.277-9.488-3.143-22.729-10.086-33.324L332.729,256H179.5L108.292,374.616z M323.705,272\r\n\t\tl67.168,110.87l0.151,0.124l0.159,0.182c5.382,8.212,7.647,18.275,7.476,24.18c-0.229,7.839-2.477,13.98-6.683,17.795\r\n\t\tc-4.774,4.328-12.729,6.85-23.008,6.85H143.037c-11.064,0-19.27-2.236-23.73-5.996c-1.472-1.24-5.954-5.143-5.954-18.088\r\n\t\tc0-5.943,2.857-16.383,8.319-24.717l0.177-0.302l0.166-0.042L188.564,272H323.705z"},"children":[]}]}]}]};exports.iosFlaskOutline=iosFlaskOutline;var iosFlask={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M391.016,382.994l-0.15-0.124L323.7,272H188.554l-66.549,110.855l-0.166,0.042l-0.177,0.302\r\n\t\tc-5.461,8.334-8.319,18.773-8.319,24.717c0,12.945,4.481,16.848,5.954,18.088c4.46,3.76,12.667,5.996,23.731,5.996H368.96\r\n\t\tc10.278,0,18.232-2.521,23.007-6.85c4.205-3.814,6.454-9.956,6.683-17.795c0.172-5.904-2.093-15.968-7.476-24.18L391.016,382.994z"},"children":[{"name":"path","attribs":{"d":"M391.016,382.994l-0.15-0.124L323.7,272H188.554l-66.549,110.855l-0.166,0.042l-0.177,0.302\r\n\t\tc-5.461,8.334-8.319,18.773-8.319,24.717c0,12.945,4.481,16.848,5.954,18.088c4.46,3.76,12.667,5.996,23.731,5.996H368.96\r\n\t\tc10.278,0,18.232-2.521,23.007-6.85c4.205-3.814,6.454-9.956,6.683-17.795c0.172-5.904-2.093-15.968-7.476-24.18L391.016,382.994z"},"children":[]}]},{"name":"path","attribs":{"d":"M436.912,370.441L320,175V48h16V32H176v16h16v127L76.125,370.441C67.715,386.268,63.616,401.814,64.028,416\r\n\t\tc1.061,36.511,28.701,64,65.065,64h255.888c36.292,0,62.132-27.598,62.993-64C448.312,401.756,445.367,386.349,436.912,370.441z\r\n\t\t M208,64h48v16h-48V64z M208,112h32v16h-32V112z M208,160h48v16h-48V160z M191.261,208H240v16h-58.179L191.261,208z\r\n\t\t M414.64,408.041C413.934,432.289,398.763,448,368.96,448H143.027c-29.862,0-45.682-12.25-45.682-39.834\r\n\t\tc0-9.455,4.029-23.008,10.937-33.55L179.49,256h153.228l71.836,118.717C411.497,385.312,414.916,398.553,414.64,408.041z"},"children":[{"name":"path","attribs":{"d":"M436.912,370.441L320,175V48h16V32H176v16h16v127L76.125,370.441C67.715,386.268,63.616,401.814,64.028,416\r\n\t\tc1.061,36.511,28.701,64,65.065,64h255.888c36.292,0,62.132-27.598,62.993-64C448.312,401.756,445.367,386.349,436.912,370.441z\r\n\t\t M208,64h48v16h-48V64z M208,112h32v16h-32V112z M208,160h48v16h-48V160z M191.261,208H240v16h-58.179L191.261,208z\r\n\t\t M414.64,408.041C413.934,432.289,398.763,448,368.96,448H143.027c-29.862,0-45.682-12.25-45.682-39.834\r\n\t\tc0-9.455,4.029-23.008,10.937-33.55L179.49,256h153.228l71.836,118.717C411.497,385.312,414.916,398.553,414.64,408.041z"},"children":[]}]}]}]};exports.iosFlask=iosFlask;var iosFlowerOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M395.057,284.252c55.929,0,84.943-11.62,84.943-28.002s-29.016-28.003-84.943-28.003c-28.732,0-64.708,7.391-92.902,14.578\r\n\t\tc-0.975-3.419-2.305-6.688-3.973-9.75c25.009-14.852,55.645-35.05,75.947-55.353c39.547-39.547,52.023-68.458,40.44-80.042\r\n\t\tc-2.747-2.748-6.472-4.142-11.079-4.142c-14.818,0-38.796,14.415-68.963,44.582c-20.282,20.282-40.459,50.873-55.307,75.869\r\n\t\tc-3.062-1.696-6.33-3.062-9.755-4.062c7.175-28.17,14.535-64.059,14.535-92.735C284.002,61.266,272.382,32,256,32\r\n\t\ts-28.002,29.266-28.002,85.194c0,28.676,7.362,64.565,14.536,92.735c-3.425,1-6.693,2.365-9.755,4.062\r\n\t\tc-14.847-24.996-35.023-55.587-55.305-75.869C147.309,107.957,123.33,93.54,108.51,93.54c-4.609,0-8.331,1.394-11.079,4.142\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.303,20.303,50.938,40.501,75.947,55.353c-1.668,3.062-2.999,6.331-3.974,9.75\r\n\t\tc-28.194-7.188-64.169-14.578-92.901-14.578C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.777,0,64.82-7.413,93.034-14.611c1.003,3.392,2.368,6.625,4.055,9.656c-25.048,14.863-55.801,35.119-76.161,55.479\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c2.748,2.748,6.471,4.142,11.078,4.142c14.819,0,38.796-14.415,68.963-44.583\r\n\t\tc20.382-20.381,40.659-51.177,55.526-76.238c3.032,1.657,6.267,2.988,9.651,3.967c-7.211,28.238-14.654,64.367-14.654,93.201\r\n\t\tC227.998,451.234,239.618,480,256,480s28.002-28.766,28.002-84.693c0-28.834-7.441-64.963-14.652-93.201\r\n\t\tc3.385-0.979,6.618-2.31,9.65-3.967c14.867,25.062,35.145,55.857,55.527,76.239c30.164,30.165,54.144,44.582,68.963,44.582\r\n\t\tc4.608,0,8.33-1.394,11.078-4.142c11.584-11.584-0.894-40.495-40.439-80.043c-20.361-20.359-51.114-40.615-76.162-55.479\r\n\t\tc1.688-3.031,3.053-6.266,4.055-9.656C330.237,276.839,366.28,284.252,395.057,284.252z M319.992,254.941\r\n\t\tc30.144-7.014,55.893-10.694,75.064-10.694c21.329,0,39.453,1.806,52.41,5.222c9.705,2.559,14.005,5.317,15.736,6.781\r\n\t\tc-1.731,1.463-6.031,4.221-15.736,6.779c-12.958,3.416-31.081,5.223-52.41,5.223c-19.176,0-44.927-3.68-75.075-10.695\r\n\t\tL319.992,254.941z M345.841,149.436c35.382-35.383,52.682-39.412,56.818-39.846c-0.211,2.305-1.343,7.326-6.404,15.991\r\n\t\tc-6.786,11.62-18.35,25.738-33.439,40.828c-13.533,13.534-34.3,29.111-60.513,45.438c-0.619-0.648-1.25-1.283-1.895-1.904\r\n\t\tC316.732,183.729,332.309,162.968,345.841,149.436z M209.698,211.846c-26.213-16.326-46.979-31.904-60.512-45.437\r\n\t\tc-15.09-15.091-26.653-29.208-33.439-40.828c-5.061-8.665-6.194-13.687-6.404-15.992c4.138,0.435,21.436,4.463,56.818,39.845\r\n\t\tc13.533,13.533,29.108,34.295,45.433,60.507C210.948,210.563,210.316,211.198,209.698,211.846z M116.944,268.252\r\n\t\tc-21.339,0-39.483-1.845-52.471-5.335c-9.689-2.604-13.961-5.394-15.675-6.87c1.75-1.451,6.077-4.177,15.796-6.689\r\n\t\tc12.927-3.343,31.029-5.11,52.351-5.11c19.172,0,44.922,3.68,75.064,10.694l0.01,2.615\r\n\t\tC161.87,264.572,136.12,268.252,116.944,268.252z M166.16,363.064c-35.383,35.382-52.68,39.41-56.818,39.846\r\n\t\tc0.21-2.305,1.343-7.326,6.404-15.992c6.786-11.619,18.349-25.736,33.439-40.828c13.587-13.586,34.457-29.229,60.815-45.625\r\n\t\tc0.584,0.604,1.181,1.197,1.789,1.779C195.394,328.604,179.749,349.475,166.16,363.064z M302,300.465\r\n\t\tc26.356,16.395,47.227,32.037,60.814,45.625c15.091,15.092,26.653,29.209,33.439,40.828c5.062,8.666,6.193,13.688,6.403,15.992\r\n\t\tc-4.138-0.436-21.436-4.464-56.817-39.846c-13.589-13.59-29.234-34.463-45.63-60.82C300.818,301.663,301.415,301.068,302,300.465z\r\n\t\t M249.222,64.678c2.548-9.703,5.297-14.055,6.778-15.834c1.48,1.78,4.23,6.131,6.777,15.834\r\n\t\tc3.418,13.015,5.225,31.174,5.225,52.516c0,19.117-3.66,44.781-10.637,74.821h-2.73c-6.977-30.04-10.638-55.704-10.638-74.821\r\n\t\tC243.998,95.853,245.804,77.693,249.222,64.678z M262.782,447.612c-2.569,9.707-5.339,13.954-6.782,15.636\r\n\t\tc-1.444-1.682-4.212-5.929-6.782-15.636c-3.415-12.901-5.22-30.988-5.22-52.308c0-19.228,3.701-45.066,10.752-75.316h2.5\r\n\t\tc7.052,30.25,10.752,56.089,10.752,75.316C268.002,416.624,266.197,434.711,262.782,447.612z M256,288c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S273.673,288,256,288z"},"children":[{"name":"path","attribs":{"d":"M395.057,284.252c55.929,0,84.943-11.62,84.943-28.002s-29.016-28.003-84.943-28.003c-28.732,0-64.708,7.391-92.902,14.578\r\n\t\tc-0.975-3.419-2.305-6.688-3.973-9.75c25.009-14.852,55.645-35.05,75.947-55.353c39.547-39.547,52.023-68.458,40.44-80.042\r\n\t\tc-2.747-2.748-6.472-4.142-11.079-4.142c-14.818,0-38.796,14.415-68.963,44.582c-20.282,20.282-40.459,50.873-55.307,75.869\r\n\t\tc-3.062-1.696-6.33-3.062-9.755-4.062c7.175-28.17,14.535-64.059,14.535-92.735C284.002,61.266,272.382,32,256,32\r\n\t\ts-28.002,29.266-28.002,85.194c0,28.676,7.362,64.565,14.536,92.735c-3.425,1-6.693,2.365-9.755,4.062\r\n\t\tc-14.847-24.996-35.023-55.587-55.305-75.869C147.309,107.957,123.33,93.54,108.51,93.54c-4.609,0-8.331,1.394-11.079,4.142\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.303,20.303,50.938,40.501,75.947,55.353c-1.668,3.062-2.999,6.331-3.974,9.75\r\n\t\tc-28.194-7.188-64.169-14.578-92.901-14.578C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.777,0,64.82-7.413,93.034-14.611c1.003,3.392,2.368,6.625,4.055,9.656c-25.048,14.863-55.801,35.119-76.161,55.479\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c2.748,2.748,6.471,4.142,11.078,4.142c14.819,0,38.796-14.415,68.963-44.583\r\n\t\tc20.382-20.381,40.659-51.177,55.526-76.238c3.032,1.657,6.267,2.988,9.651,3.967c-7.211,28.238-14.654,64.367-14.654,93.201\r\n\t\tC227.998,451.234,239.618,480,256,480s28.002-28.766,28.002-84.693c0-28.834-7.441-64.963-14.652-93.201\r\n\t\tc3.385-0.979,6.618-2.31,9.65-3.967c14.867,25.062,35.145,55.857,55.527,76.239c30.164,30.165,54.144,44.582,68.963,44.582\r\n\t\tc4.608,0,8.33-1.394,11.078-4.142c11.584-11.584-0.894-40.495-40.439-80.043c-20.361-20.359-51.114-40.615-76.162-55.479\r\n\t\tc1.688-3.031,3.053-6.266,4.055-9.656C330.237,276.839,366.28,284.252,395.057,284.252z M319.992,254.941\r\n\t\tc30.144-7.014,55.893-10.694,75.064-10.694c21.329,0,39.453,1.806,52.41,5.222c9.705,2.559,14.005,5.317,15.736,6.781\r\n\t\tc-1.731,1.463-6.031,4.221-15.736,6.779c-12.958,3.416-31.081,5.223-52.41,5.223c-19.176,0-44.927-3.68-75.075-10.695\r\n\t\tL319.992,254.941z M345.841,149.436c35.382-35.383,52.682-39.412,56.818-39.846c-0.211,2.305-1.343,7.326-6.404,15.991\r\n\t\tc-6.786,11.62-18.35,25.738-33.439,40.828c-13.533,13.534-34.3,29.111-60.513,45.438c-0.619-0.648-1.25-1.283-1.895-1.904\r\n\t\tC316.732,183.729,332.309,162.968,345.841,149.436z M209.698,211.846c-26.213-16.326-46.979-31.904-60.512-45.437\r\n\t\tc-15.09-15.091-26.653-29.208-33.439-40.828c-5.061-8.665-6.194-13.687-6.404-15.992c4.138,0.435,21.436,4.463,56.818,39.845\r\n\t\tc13.533,13.533,29.108,34.295,45.433,60.507C210.948,210.563,210.316,211.198,209.698,211.846z M116.944,268.252\r\n\t\tc-21.339,0-39.483-1.845-52.471-5.335c-9.689-2.604-13.961-5.394-15.675-6.87c1.75-1.451,6.077-4.177,15.796-6.689\r\n\t\tc12.927-3.343,31.029-5.11,52.351-5.11c19.172,0,44.922,3.68,75.064,10.694l0.01,2.615\r\n\t\tC161.87,264.572,136.12,268.252,116.944,268.252z M166.16,363.064c-35.383,35.382-52.68,39.41-56.818,39.846\r\n\t\tc0.21-2.305,1.343-7.326,6.404-15.992c6.786-11.619,18.349-25.736,33.439-40.828c13.587-13.586,34.457-29.229,60.815-45.625\r\n\t\tc0.584,0.604,1.181,1.197,1.789,1.779C195.394,328.604,179.749,349.475,166.16,363.064z M302,300.465\r\n\t\tc26.356,16.395,47.227,32.037,60.814,45.625c15.091,15.092,26.653,29.209,33.439,40.828c5.062,8.666,6.193,13.688,6.403,15.992\r\n\t\tc-4.138-0.436-21.436-4.464-56.817-39.846c-13.589-13.59-29.234-34.463-45.63-60.82C300.818,301.663,301.415,301.068,302,300.465z\r\n\t\t M249.222,64.678c2.548-9.703,5.297-14.055,6.778-15.834c1.48,1.78,4.23,6.131,6.777,15.834\r\n\t\tc3.418,13.015,5.225,31.174,5.225,52.516c0,19.117-3.66,44.781-10.637,74.821h-2.73c-6.977-30.04-10.638-55.704-10.638-74.821\r\n\t\tC243.998,95.853,245.804,77.693,249.222,64.678z M262.782,447.612c-2.569,9.707-5.339,13.954-6.782,15.636\r\n\t\tc-1.444-1.682-4.212-5.929-6.782-15.636c-3.415-12.901-5.22-30.988-5.22-52.308c0-19.228,3.701-45.066,10.752-75.316h2.5\r\n\t\tc7.052,30.25,10.752,56.089,10.752,75.316C268.002,416.624,266.197,434.711,262.782,447.612z M256,288c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S273.673,288,256,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M344.86,405.678c-24.529-17.674-48.394-51.732-48.394-51.732s7.031,41.059,1.854,75.946\r\n\t\tc11.678,21.779,26.139,35.253,36.643,35.253c1.749,0,3.432-0.324,5.042-0.976C351.879,459.372,354.39,439.185,344.86,405.678z\r\n\t\t M333.738,448.566c-2.738-1.46-9.407-6.369-18.992-22.27c0.688-7.872,1.098-16.337,1.219-25.282\r\n\t\tc5.012,4.88,9.947,9.437,14.747,13.613C335.816,434.408,334.954,444.779,333.738,448.566z"},"children":[{"name":"path","attribs":{"d":"M344.86,405.678c-24.529-17.674-48.394-51.732-48.394-51.732s7.031,41.059,1.854,75.946\r\n\t\tc11.678,21.779,26.139,35.253,36.643,35.253c1.749,0,3.432-0.324,5.042-0.976C351.879,459.372,354.39,439.185,344.86,405.678z\r\n\t\t M333.738,448.566c-2.738-1.46-9.407-6.369-18.992-22.27c0.688-7.872,1.098-16.337,1.219-25.282\r\n\t\tc5.012,4.88,9.947,9.437,14.747,13.613C335.816,434.408,334.954,444.779,333.738,448.566z"},"children":[]}]},{"name":"path","attribs":{"d":"M213.679,82.608c-13.292-23.51-26.139-35.255-36.644-35.255c-1.749,0-3.431,0.325-5.042,0.976\r\n\t\tc-11.868,4.795-14.497,23.211-4.87,58.441c21.252,15.98,48.374,51.55,48.374,51.55S207.75,117.5,213.679,82.608z M196.038,111.369\r\n\t\tc-5.001-4.856-9.943-9.398-14.769-13.574c-5.084-19.731-4.223-30.082-3.008-33.863c2.737,1.459,9.407,6.369,18.994,22.27\r\n\t\tC196.568,94.04,196.161,102.466,196.038,111.369z"},"children":[{"name":"path","attribs":{"d":"M213.679,82.608c-13.292-23.51-26.139-35.255-36.644-35.255c-1.749,0-3.431,0.325-5.042,0.976\r\n\t\tc-11.868,4.795-14.497,23.211-4.87,58.441c21.252,15.98,48.374,51.55,48.374,51.55S207.75,117.5,213.679,82.608z M196.038,111.369\r\n\t\tc-5.001-4.856-9.943-9.398-14.769-13.574c-5.084-19.731-4.223-30.082-3.008-33.863c2.737,1.459,9.407,6.369,18.994,22.27\r\n\t\tC196.568,94.04,196.161,102.466,196.038,111.369z"},"children":[]}]},{"name":"path","attribs":{"d":"M82.357,298.568c-27.422,15.505-38.836,30.402-34.277,41.687c2.806,6.944,10.913,10.675,23.842,10.675\r\n\t\tc9.182,0,22.434-1.559,34.672-5.826c17.405-23.934,51.712-48.387,51.712-48.387S116.999,302.836,82.357,298.568z M97.637,330.956\r\n\t\tc-10.088,2.606-18.909,3.974-25.716,3.974c-4.092,0-6.733-0.502-8.223-0.97c1.477-2.755,6.407-9.411,22.253-18.966\r\n\t\tc7.872,0.689,16.338,1.099,25.284,1.22C106.365,321.218,101.815,326.15,97.637,330.956z"},"children":[{"name":"path","attribs":{"d":"M82.357,298.568c-27.422,15.505-38.836,30.402-34.277,41.687c2.806,6.944,10.913,10.675,23.842,10.675\r\n\t\tc9.182,0,22.434-1.559,34.672-5.826c17.405-23.934,51.712-48.387,51.712-48.387S116.999,302.836,82.357,298.568z M97.637,330.956\r\n\t\tc-10.088,2.606-18.909,3.974-25.716,3.974c-4.092,0-6.733-0.502-8.223-0.97c1.477-2.755,6.407-9.411,22.253-18.966\r\n\t\tc7.872,0.689,16.338,1.099,25.284,1.22C106.365,321.218,101.815,326.15,97.637,330.956z"},"children":[]}]},{"name":"path","attribs":{"d":"M463.92,172.245c-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822\r\n\t\tc-18.088,23.774-51.699,48.387-51.699,48.387s40.778-7.28,75.918-1.849C457.064,198.426,468.479,183.528,463.92,172.245z\r\n\t\t M426.047,197.504c-7.867-0.689-16.327-1.097-25.267-1.218c4.869-5.004,9.42-9.939,13.6-14.749\r\n\t\tc10.081-2.602,18.895-3.968,25.697-3.968c4.093,0,6.733,0.502,8.225,0.97C446.824,181.294,441.893,187.951,426.047,197.504z"},"children":[{"name":"path","attribs":{"d":"M463.92,172.245c-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822\r\n\t\tc-18.088,23.774-51.699,48.387-51.699,48.387s40.778-7.28,75.918-1.849C457.064,198.426,468.479,183.528,463.92,172.245z\r\n\t\t M426.047,197.504c-7.867-0.689-16.327-1.097-25.267-1.218c4.869-5.004,9.42-9.939,13.6-14.749\r\n\t\tc10.081-2.602,18.895-3.968,25.697-3.968c4.093,0,6.733,0.502,8.225,0.97C446.824,181.294,441.893,187.951,426.047,197.504z"},"children":[]}]},{"name":"path","attribs":{"d":"M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z M174.981,447.207\r\n\t\tc-0.904-2.966-2.147-11.15,2.312-29.159c6.048-5.079,12.323-10.782,18.743-17.032c0.095,6.979,0.366,13.687,0.81,20.039\r\n\t\tC186.466,438.66,178.52,445.39,174.981,447.207z"},"children":[{"name":"path","attribs":{"d":"M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z M174.981,447.207\r\n\t\tc-0.904-2.966-2.147-11.15,2.312-29.159c6.048-5.079,12.323-10.782,18.743-17.032c0.095,6.979,0.366,13.687,0.81,20.039\r\n\t\tC186.466,438.66,178.52,445.39,174.981,447.207z"},"children":[]}]},{"name":"path","attribs":{"d":"M343.622,49.826c-1.674-0.71-3.438-1.066-5.274-1.066c-11.105,0-26.207,14.287-39.527,39.013\r\n\t\tc4.514,22.894-2.393,71.053-2.393,71.053s23.239-34.326,52.342-54.956C357.167,72,354.865,54.599,343.622,49.826z M334.627,94.781\r\n\t\tc-6.029,5.051-12.277,10.72-18.66,16.931c-0.092-7.062-0.364-13.846-0.812-20.269c10.379-17.607,18.327-24.336,21.864-26.153\r\n\t\tC337.93,68.274,339.186,76.541,334.627,94.781z"},"children":[{"name":"path","attribs":{"d":"M343.622,49.826c-1.674-0.71-3.438-1.066-5.274-1.066c-11.105,0-26.207,14.287-39.527,39.013\r\n\t\tc4.514,22.894-2.393,71.053-2.393,71.053s23.239-34.326,52.342-54.956C357.167,72,354.865,54.599,343.622,49.826z M334.627,94.781\r\n\t\tc-6.029,5.051-12.277,10.72-18.66,16.931c-0.092-7.062-0.364-13.846-0.812-20.269c10.379-17.607,18.327-24.336,21.864-26.153\r\n\t\tC337.93,68.274,339.186,76.541,334.627,94.781z"},"children":[]}]},{"name":"path","attribs":{"d":"M103.209,163.367C93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261\r\n\t\tc-5.004,11.792,9.97,29.985,37.948,44.805c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367z M65.034,175.215\r\n\t\tc1.381-0.414,3.775-0.848,7.424-0.848c5.815,0,13.242,1.088,21.687,3.165c5.077,6.049,10.781,12.33,17.034,18.754\r\n\t\tc-6.959,0.096-13.648,0.367-19.984,0.81C73.563,186.7,66.84,178.745,65.034,175.215z"},"children":[{"name":"path","attribs":{"d":"M103.209,163.367C93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261\r\n\t\tc-5.004,11.792,9.97,29.985,37.948,44.805c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367z M65.034,175.215\r\n\t\tc1.381-0.414,3.775-0.848,7.424-0.848c5.815,0,13.242,1.088,21.687,3.165c5.077,6.049,10.781,12.33,17.034,18.754\r\n\t\tc-6.959,0.096-13.648,0.367-19.984,0.81C73.563,186.7,66.84,178.745,65.034,175.215z"},"children":[]}]},{"name":"path","attribs":{"d":"M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z M439.542,338.132\r\n\t\tc-5.833,0-13.287-1.095-21.765-3.185c-5.078-6.053-10.774-12.326-17.013-18.734c6.98-0.095,13.688-0.365,20.041-0.811\r\n\t\tc17.631,10.396,24.354,18.352,26.158,21.882C445.585,337.697,443.19,338.132,439.542,338.132z"},"children":[{"name":"path","attribs":{"d":"M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z M439.542,338.132\r\n\t\tc-5.833,0-13.287-1.095-21.765-3.185c-5.078-6.053-10.774-12.326-17.013-18.734c6.98-0.095,13.688-0.365,20.041-0.811\r\n\t\tc17.631,10.396,24.354,18.352,26.158,21.882C445.585,337.697,443.19,338.132,439.542,338.132z"},"children":[]}]}]}]};exports.iosFlowerOutline=iosFlowerOutline;var iosFlower={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M395.057,228.247c-28.651,0-64.502,7.35-92.66,14.518c-0.98-3.443-2.321-6.734-4.001-9.817\r\n\t\tc24.97-14.84,55.487-34.98,75.733-55.224c39.547-39.547,52.023-68.458,40.44-80.042c-11.584-11.583-40.495,0.893-80.042,40.44\r\n\t\tc-20.225,20.225-40.343,50.698-55.178,75.654c-3.082-1.708-6.373-3.083-9.822-4.089c7.156-28.133,14.475-63.897,14.475-92.492\r\n\t\tC284.002,61.266,272.382,32,256,32s-28.002,29.266-28.002,85.194c0,28.595,7.319,64.359,14.475,92.492\r\n\t\tc-3.449,1.006-6.74,2.381-9.822,4.089c-14.835-24.956-34.953-55.43-55.176-75.653c-39.548-39.547-68.458-52.024-80.042-40.44\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.246,20.244,50.762,40.384,75.732,55.224c-1.68,3.083-3.021,6.374-4.001,9.817\r\n\t\tc-28.158-7.168-64.008-14.518-92.659-14.518C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.697,0,64.613-7.371,92.792-14.551c1.01,3.414,2.384,6.671,4.083,9.724c-25.009,14.852-55.645,35.049-75.946,55.351\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c11.584,11.584,40.495-0.895,80.042-40.441c20.323-20.323,40.542-51.001,55.398-76.024\r\n\t\tc3.053,1.671,6.31,3.01,9.718,3.995c-7.192,28.203-14.592,64.207-14.592,92.959c0,55.929,11.62,84.693,28.002,84.693\r\n\t\ts28.002-28.766,28.002-84.693c0-28.752-7.4-64.756-14.592-92.959c3.408-0.985,6.665-2.324,9.718-3.995\r\n\t\tc14.855,25.023,35.073,55.701,55.399,76.025c39.547,39.547,68.457,52.024,80.041,40.44s-0.894-40.495-40.439-80.043\r\n\t\tc-20.304-20.302-50.938-40.499-75.947-55.351c1.699-3.053,3.073-6.31,4.083-9.724c28.18,7.18,64.096,14.551,92.792,14.551\r\n\t\tc55.929,0,84.943-11.62,84.943-28.002S450.984,228.247,395.057,228.247z"},"children":[{"name":"path","attribs":{"d":"M395.057,228.247c-28.651,0-64.502,7.35-92.66,14.518c-0.98-3.443-2.321-6.734-4.001-9.817\r\n\t\tc24.97-14.84,55.487-34.98,75.733-55.224c39.547-39.547,52.023-68.458,40.44-80.042c-11.584-11.583-40.495,0.893-80.042,40.44\r\n\t\tc-20.225,20.225-40.343,50.698-55.178,75.654c-3.082-1.708-6.373-3.083-9.822-4.089c7.156-28.133,14.475-63.897,14.475-92.492\r\n\t\tC284.002,61.266,272.382,32,256,32s-28.002,29.266-28.002,85.194c0,28.595,7.319,64.359,14.475,92.492\r\n\t\tc-3.449,1.006-6.74,2.381-9.822,4.089c-14.835-24.956-34.953-55.43-55.176-75.653c-39.548-39.547-68.458-52.024-80.042-40.44\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.246,20.244,50.762,40.384,75.732,55.224c-1.68,3.083-3.021,6.374-4.001,9.817\r\n\t\tc-28.158-7.168-64.008-14.518-92.659-14.518C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.697,0,64.613-7.371,92.792-14.551c1.01,3.414,2.384,6.671,4.083,9.724c-25.009,14.852-55.645,35.049-75.946,55.351\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c11.584,11.584,40.495-0.895,80.042-40.441c20.323-20.323,40.542-51.001,55.398-76.024\r\n\t\tc3.053,1.671,6.31,3.01,9.718,3.995c-7.192,28.203-14.592,64.207-14.592,92.959c0,55.929,11.62,84.693,28.002,84.693\r\n\t\ts28.002-28.766,28.002-84.693c0-28.752-7.4-64.756-14.592-92.959c3.408-0.985,6.665-2.324,9.718-3.995\r\n\t\tc14.855,25.023,35.073,55.701,55.399,76.025c39.547,39.547,68.457,52.024,80.041,40.44s-0.894-40.495-40.439-80.043\r\n\t\tc-20.304-20.302-50.938-40.499-75.947-55.351c1.699-3.053,3.073-6.31,4.083-9.724c28.18,7.18,64.096,14.551,92.792,14.551\r\n\t\tc55.929,0,84.943-11.62,84.943-28.002S450.984,228.247,395.057,228.247z"},"children":[]}]},{"name":"path","attribs":{"d":"M296.467,353.945c0,0,7.031,41.059,1.854,75.946c11.678,21.779,26.139,35.253,36.643,35.253\r\n\t\tc1.749,0,3.432-0.324,5.042-0.976c11.874-4.797,14.385-24.984,4.855-58.491C320.331,388.004,296.467,353.945,296.467,353.945z"},"children":[{"name":"path","attribs":{"d":"M296.467,353.945c0,0,7.031,41.059,1.854,75.946c11.678,21.779,26.139,35.253,36.643,35.253\r\n\t\tc1.749,0,3.432-0.324,5.042-0.976c11.874-4.797,14.385-24.984,4.855-58.491C320.331,388.004,296.467,353.945,296.467,353.945z"},"children":[]}]},{"name":"path","attribs":{"d":"M215.497,158.32c0,0-7.747-40.82-1.818-75.712c-13.292-23.51-26.139-35.255-36.644-35.255\r\n\t\tc-1.749,0-3.431,0.325-5.042,0.976c-11.868,4.795-14.497,23.211-4.87,58.441C188.375,122.75,215.497,158.32,215.497,158.32z"},"children":[{"name":"path","attribs":{"d":"M215.497,158.32c0,0-7.747-40.82-1.818-75.712c-13.292-23.51-26.139-35.255-36.644-35.255\r\n\t\tc-1.749,0-3.431,0.325-5.042,0.976c-11.868,4.795-14.497,23.211-4.87,58.441C188.375,122.75,215.497,158.32,215.497,158.32z"},"children":[]}]},{"name":"path","attribs":{"d":"M158.306,296.717c0,0-41.308,6.119-75.949,1.852c-27.422,15.505-38.836,30.402-34.277,41.687\r\n\t\tc2.806,6.944,10.913,10.675,23.842,10.675c9.182,0,22.434-1.559,34.672-5.826C123.999,321.17,158.306,296.717,158.306,296.717z"},"children":[{"name":"path","attribs":{"d":"M158.306,296.717c0,0-41.308,6.119-75.949,1.852c-27.422,15.505-38.836,30.402-34.277,41.687\r\n\t\tc2.806,6.944,10.913,10.675,23.842,10.675c9.182,0,22.434-1.559,34.672-5.826C123.999,321.17,158.306,296.717,158.306,296.717z"},"children":[]}]},{"name":"path","attribs":{"d":"M353.723,215.779c0,0,40.778-7.28,75.918-1.849c27.424-15.504,38.838-30.402,34.279-41.685\r\n\t\tc-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822C387.334,191.166,353.723,215.779,353.723,215.779z"},"children":[{"name":"path","attribs":{"d":"M353.723,215.779c0,0,40.778-7.28,75.918-1.849c27.424-15.504,38.838-30.402,34.279-41.685\r\n\t\tc-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822C387.334,191.166,353.723,215.779,353.723,215.779z"},"children":[]}]},{"name":"path","attribs":{"d":"M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z"},"children":[{"name":"path","attribs":{"d":"M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z"},"children":[]}]},{"name":"path","attribs":{"d":"M348.77,103.87c8.397-31.87,6.096-49.271-5.147-54.044c-1.674-0.71-3.438-1.066-5.274-1.066\r\n\t\tc-11.105,0-26.207,14.287-39.527,39.013c4.514,22.894-2.393,71.053-2.393,71.053S319.667,124.5,348.77,103.87z"},"children":[{"name":"path","attribs":{"d":"M348.77,103.87c8.397-31.87,6.096-49.271-5.147-54.044c-1.674-0.71-3.438-1.066-5.274-1.066\r\n\t\tc-11.105,0-26.207,14.287-39.527,39.013c4.514,22.894-2.393,71.053-2.393,71.053S319.667,124.5,348.77,103.87z"},"children":[]}]},{"name":"path","attribs":{"d":"M87.524,213.432c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367\r\n\t\tC93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261C44.572,180.419,59.546,198.612,87.524,213.432z"},"children":[{"name":"path","attribs":{"d":"M87.524,213.432c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367\r\n\t\tC93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261C44.572,180.419,59.546,198.612,87.524,213.432z"},"children":[]}]},{"name":"path","attribs":{"d":"M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z"},"children":[{"name":"path","attribs":{"d":"M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z"},"children":[]}]}]}]};exports.iosFlower=iosFlower;var iosFolderOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\tc-13.785,0-25,10.317-25,23v336c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V119C480,105.673,470.327,96,457,96z M57,80\r\n\th112c3.497,0,3.737,0.189,6.175,2.488l22.417,22.418c4.84,4.84,10.372,7.094,17.408,7.094h242c4.448,0,7,2.552,7,7v42.376\r\n\tc-2.504-0.888-5.195-1.376-8-1.376H56c-2.805,0-5.496,0.488-8,1.376V87C48,82.677,52.672,80,57,80z M464,423c0,4.328-2.677,9-7,9H57\r\n\tc-4.458,0-9-4.542-9-9V184c0-4.411,3.589-8,8-8h400c4.411,0,8,3.589,8,8V423z"},"children":[]}]};exports.iosFolderOutline=iosFolderOutline;var iosFolder={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M472,176H40c-4.411,0-8,3.589-8,8v239c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V184\r\n\t\tC480,179.589,476.411,176,472,176z"},"children":[{"name":"path","attribs":{"d":"M472,176H40c-4.411,0-8,3.589-8,8v239c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V184\r\n\t\tC480,179.589,476.411,176,472,176z"},"children":[]}]},{"name":"path","attribs":{"d":"M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\t\tc-13.785,0-25,10.317-25,23v74.376c2.504-0.888,5.195-1.376,8-1.376h432c2.805,0,5.496,0.488,8,1.376V119\r\n\t\tC480,105.673,470.327,96,457,96z"},"children":[{"name":"path","attribs":{"d":"M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\t\tc-13.785,0-25,10.317-25,23v74.376c2.504-0.888,5.195-1.376,8-1.376h432c2.805,0,5.496,0.488,8,1.376V119\r\n\t\tC480,105.673,470.327,96,457,96z"},"children":[]}]}]}]};exports.iosFolder=iosFolder;var iosFootballOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.137,48,48,141.136,48,256c0,114.864,93.137,208,208,208c114.872,0,208-93.138,208-208\r\n\tC464,141.138,370.87,48,256,48z M297.151,442.179c-13.514,2.657-30.327,4.187-44,4.45c-13.198-0.195-26.074-1.735-38.5-4.493\r\n\tc-2.144-0.549-4.383-1.138-6.805-1.777l-24.417-65.435L203.074,336h105.854l0.57,1.076l19.34,38.852L305.22,440.21\r\n\tC302.553,440.924,299.862,441.579,297.151,442.179z M89.317,163.522l18.188,52.284l0.175,0.504L65.376,252.92\r\n\tC65.892,220.535,74.52,190.088,89.317,163.522z M189.578,77.28L247,116.576v58.147l-70.997,60.067L126.6,212.28l-4.167-1.899\r\n\tl-22.332-64.019C122.11,115.158,153.239,90.83,189.578,77.28z M325.025,247.206l0.921,0.765L307.569,320H204.431l-18.485-72.453\r\n\tl0.445-0.376l68.873-58.27L325.025,247.206z M446.626,252.921l-42.454-36.738l0.127-0.364l18.298-52.451\r\n\tC437.447,189.972,446.109,220.473,446.626,252.921z M411.564,146.067l-22.432,64.483l-53.992,24.388L264,174.723v-58.147\r\n\tl57.596-39.415C357.958,90.644,389.501,114.913,411.564,146.067z M66.144,273.414l53.756-46.518l49.539,22.599l0.559,0.255\r\n\tl19.718,77.287l-20.433,38.529l-69.86-0.915C81.075,338.291,69.209,307.105,66.144,273.414z M342.719,365.565l-20.434-38.529\r\n\tl19.752-77.416l49.997-22.781l53.822,46.575c-3.065,33.691-14.932,64.877-33.277,91.236L342.719,365.565z M255.257,102.67\r\n\tl-46.126-31.498c15-3.806,30.701-5.836,46.869-5.835c15.961,0,31.466,1.982,46.293,5.694L255.257,102.67z M166.423,381.529\r\n\tl0.848,2.511l19.946,49.781c-29.239-11.351-55.011-29.704-75.232-53.006L166.423,381.529z M324.563,433.904l17.934-48.608\r\n\tl1.627-3.748l55.892-0.732C379.744,404.175,353.893,422.562,324.563,433.904z"},"children":[]}]};exports.iosFootballOutline=iosFootballOutline;var iosFootball={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.137,48,48,141.136,48,256c0,114.864,93.137,208,208,208c114.872,0,208-93.138,208-208\r\n\tC464,141.138,370.87,48,256,48z M297.151,442.179c-13.514,2.657-30.327,4.187-44,4.45c-13.198-0.195-26.074-1.735-38.5-4.493\r\n\tc-2.144-0.549-4.383-1.138-6.805-1.777l-24.417-65.435L203.074,336h105.854l0.57,1.076l19.34,38.852L305.22,440.21\r\n\tC302.553,440.924,299.862,441.579,297.151,442.179z M189.578,77.28L247,116.576v58.147l-70.997,60.067L126.6,212.28l-4.167-1.899\r\n\tl-22.332-64.019C122.11,115.158,153.239,90.83,189.578,77.28z M411.564,146.067l-22.432,64.483l-53.992,24.388L264,174.723v-58.147\r\n\tl57.596-39.415C357.958,90.644,389.501,114.913,411.564,146.067z M66.144,273.414l53.756-46.518l49.539,22.599l0.559,0.255\r\n\tl19.718,77.287l-20.433,38.529l-69.86-0.915C81.075,338.291,69.209,307.105,66.144,273.414z M342.719,365.565l-20.434-38.529\r\n\tl19.752-77.416l49.997-22.781l53.822,46.575c-3.065,33.691-14.932,64.877-33.277,91.236L342.719,365.565z"},"children":[]}]};exports.iosFootball=iosFootball;var iosGameControllerAOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M194.822,240H160v-34.762c0-2.817-2.604-5.238-5.303-5.238h-22.145c-2.698,0-4.552,2.372-4.552,5.178V240H92.533\r\n\t\t\tc-2.615,0-4.533,2.143-4.533,4.771v21.427c0,2.698,2.031,5.803,4.861,5.803H128v35.467c0,2.615,2.143,4.533,4.771,4.533h21.427\r\n\t\t\tc2.698,0,5.803-2.031,5.803-4.861V272h34.762c2.817,0,5.238-2.604,5.238-5.303v-22.145C200,241.854,197.628,240,194.822,240z"},"children":[{"name":"path","attribs":{"d":"M194.822,240H160v-34.762c0-2.817-2.604-5.238-5.303-5.238h-22.145c-2.698,0-4.552,2.372-4.552,5.178V240H92.533\r\n\t\t\tc-2.615,0-4.533,2.143-4.533,4.771v21.427c0,2.698,2.031,5.803,4.861,5.803H128v35.467c0,2.615,2.143,4.533,4.771,4.533h21.427\r\n\t\t\tc2.698,0,5.803-2.031,5.803-4.861V272h34.762c2.817,0,5.238-2.604,5.238-5.303v-22.145C200,241.854,197.628,240,194.822,240z"},"children":[]}]},{"name":"path","attribs":{"d":"M362.314,279.063c-10.736,0-19.451,8.515-19.451,19.153c0,10.555,8.715,19.084,19.451,19.084\r\n\t\t\tc10.783,0,19.498-8.529,19.498-19.084C381.812,287.578,373.098,279.063,362.314,279.063z"},"children":[{"name":"path","attribs":{"d":"M362.314,279.063c-10.736,0-19.451,8.515-19.451,19.153c0,10.555,8.715,19.084,19.451,19.084\r\n\t\t\tc10.783,0,19.498-8.529,19.498-19.084C381.812,287.578,373.098,279.063,362.314,279.063z"},"children":[]}]},{"name":"path","attribs":{"d":"M319.766,237.165c-10.736,0-19.451,8.603-19.451,19.168c0,10.566,8.715,19.153,19.451,19.153\r\n\t\t\tc10.783,0,19.498-8.587,19.498-19.153C339.264,245.768,330.549,237.165,319.766,237.165z"},"children":[{"name":"path","attribs":{"d":"M319.766,237.165c-10.736,0-19.451,8.603-19.451,19.168c0,10.566,8.715,19.153,19.451,19.153\r\n\t\t\tc10.783,0,19.498-8.587,19.498-19.153C339.264,245.768,330.549,237.165,319.766,237.165z"},"children":[]}]},{"name":"path","attribs":{"d":"M404.862,237.165c-10.729,0-19.442,8.603-19.442,19.168c0,10.566,8.714,19.153,19.442,19.153\r\n\t\t\tc10.737,0,19.452-8.587,19.452-19.153C424.314,245.768,415.6,237.165,404.862,237.165z"},"children":[{"name":"path","attribs":{"d":"M404.862,237.165c-10.729,0-19.442,8.603-19.442,19.168c0,10.566,8.714,19.153,19.442,19.153\r\n\t\t\tc10.737,0,19.452-8.587,19.452-19.153C424.314,245.768,415.6,237.165,404.862,237.165z"},"children":[]}]},{"name":"path","attribs":{"d":"M362.314,195.301c-10.736,0-19.451,8.602-19.451,19.169c0,10.566,8.715,19.146,19.451,19.146\r\n\t\t\tc10.783,0,19.498-8.579,19.498-19.146C381.812,203.902,373.098,195.301,362.314,195.301z"},"children":[{"name":"path","attribs":{"d":"M362.314,195.301c-10.736,0-19.451,8.602-19.451,19.169c0,10.566,8.715,19.146,19.451,19.146\r\n\t\t\tc10.783,0,19.498-8.579,19.498-19.146C381.812,203.902,373.098,195.301,362.314,195.301z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M369.269,162c25.838,0,49.704,9.314,67.204,26.229C454.225,205.386,464,229.247,464,255.418\r\n\t\tc0,26.303-9.806,50.405-27.611,67.869c-17.563,17.226-41.4,26.713-67.12,26.713H142.739c-25.712,0-49.548-9.487-67.117-26.715\r\n\t\tC57.81,305.818,48,281.717,48,255.418c0-26.167,9.78-50.028,27.539-67.188C93.043,171.315,116.909,162,142.739,162H369.269\r\n\t\t M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146L369.269,146z"},"children":[{"name":"path","attribs":{"d":"M369.269,162c25.838,0,49.704,9.314,67.204,26.229C454.225,205.386,464,229.247,464,255.418\r\n\t\tc0,26.303-9.806,50.405-27.611,67.869c-17.563,17.226-41.4,26.713-67.12,26.713H142.739c-25.712,0-49.548-9.487-67.117-26.715\r\n\t\tC57.81,305.818,48,281.717,48,255.418c0-26.167,9.78-50.028,27.539-67.188C93.043,171.315,116.909,162,142.739,162H369.269\r\n\t\t M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146L369.269,146z"},"children":[]}]}]}]};exports.iosGameControllerAOutline=iosGameControllerAOutline;var iosGameControllerA={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146z M200,266.697c0,2.698-2.421,5.303-5.238,5.303H160\r\n\t\tv35.139c0,2.83-3.104,4.861-5.803,4.861h-21.427c-2.628,0-4.771-1.918-4.771-4.533V272H92.861c-2.83,0-4.861-3.104-4.861-5.803\r\n\t\tv-21.427c0-2.628,1.918-4.771,4.533-4.771H128v-34.822c0-2.806,1.854-5.178,4.553-5.178h22.145c2.698,0,5.303,2.421,5.303,5.238\r\n\t\tV240h34.822c2.806,0,5.178,1.854,5.178,4.553V266.697z M319.766,275.486c-10.736,0-19.451-8.587-19.451-19.153\r\n\t\tc0-10.565,8.715-19.168,19.451-19.168c10.783,0,19.498,8.603,19.498,19.168C339.264,266.899,330.549,275.486,319.766,275.486z\r\n\t\t M362.314,317.301c-10.736,0-19.451-8.529-19.451-19.084c0-10.639,8.715-19.153,19.451-19.153c10.783,0,19.498,8.515,19.498,19.153\r\n\t\tC381.812,308.771,373.098,317.301,362.314,317.301z M362.314,233.615c-10.736,0-19.451-8.579-19.451-19.146\r\n\t\tc0-10.567,8.715-19.169,19.451-19.169c10.783,0,19.498,8.602,19.498,19.169C381.812,225.036,373.098,233.615,362.314,233.615z\r\n\t\t M404.862,275.486c-10.729,0-19.442-8.587-19.442-19.153c0-10.565,8.714-19.168,19.442-19.168c10.737,0,19.452,8.603,19.452,19.168\r\n\t\tC424.314,266.899,415.6,275.486,404.862,275.486z"},"children":[{"name":"path","attribs":{"d":"M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146z M200,266.697c0,2.698-2.421,5.303-5.238,5.303H160\r\n\t\tv35.139c0,2.83-3.104,4.861-5.803,4.861h-21.427c-2.628,0-4.771-1.918-4.771-4.533V272H92.861c-2.83,0-4.861-3.104-4.861-5.803\r\n\t\tv-21.427c0-2.628,1.918-4.771,4.533-4.771H128v-34.822c0-2.806,1.854-5.178,4.553-5.178h22.145c2.698,0,5.303,2.421,5.303,5.238\r\n\t\tV240h34.822c2.806,0,5.178,1.854,5.178,4.553V266.697z M319.766,275.486c-10.736,0-19.451-8.587-19.451-19.153\r\n\t\tc0-10.565,8.715-19.168,19.451-19.168c10.783,0,19.498,8.603,19.498,19.168C339.264,266.899,330.549,275.486,319.766,275.486z\r\n\t\t M362.314,317.301c-10.736,0-19.451-8.529-19.451-19.084c0-10.639,8.715-19.153,19.451-19.153c10.783,0,19.498,8.515,19.498,19.153\r\n\t\tC381.812,308.771,373.098,317.301,362.314,317.301z M362.314,233.615c-10.736,0-19.451-8.579-19.451-19.146\r\n\t\tc0-10.567,8.715-19.169,19.451-19.169c10.783,0,19.498,8.602,19.498,19.169C381.812,225.036,373.098,233.615,362.314,233.615z\r\n\t\t M404.862,275.486c-10.729,0-19.442-8.587-19.442-19.153c0-10.565,8.714-19.168,19.442-19.168c10.737,0,19.452,8.603,19.452,19.168\r\n\t\tC424.314,266.899,415.6,275.486,404.862,275.486z"},"children":[]}]}]}]};exports.iosGameControllerA=iosGameControllerA;var iosGameControllerBOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M308.076,203.929c-11.058,0-20.076,9.014-20.076,20.104c0,11.089,9.019,20.107,20.076,20.107\r\n\t\t\tc11.131,0,20.148-9.019,20.148-20.107C328.225,212.942,319.207,203.929,308.076,203.929z"},"children":[{"name":"path","attribs":{"d":"M308.076,203.929c-11.058,0-20.076,9.014-20.076,20.104c0,11.089,9.019,20.107,20.076,20.107\r\n\t\t\tc11.131,0,20.148-9.019,20.148-20.107C328.225,212.942,319.207,203.929,308.076,203.929z"},"children":[]}]},{"name":"path","attribs":{"d":"M351.988,247.878c-11.058,0-20.053,8.949-20.053,20.106c0,11.064,8.995,20.016,20.053,20.016\r\n\t\t\tc11.146,0,20.148-8.951,20.148-20.016C372.137,256.827,363.134,247.878,351.988,247.878z"},"children":[{"name":"path","attribs":{"d":"M351.988,247.878c-11.058,0-20.053,8.949-20.053,20.106c0,11.064,8.995,20.016,20.053,20.016\r\n\t\t\tc11.146,0,20.148-8.951,20.148-20.016C372.137,256.827,363.134,247.878,351.988,247.878z"},"children":[]}]},{"name":"path","attribs":{"d":"M135.234,184.367C113.594,184.367,96,202.17,96,224.01c0,21.865,17.594,39.623,39.234,39.623\r\n\t\t\tc21.655,0,39.249-17.758,39.249-39.623C174.483,202.17,156.89,184.367,135.234,184.367z M135.123,243.457\r\n\t\t\tc-10.688,0-19.343-8.721-19.343-19.447c0-10.725,8.655-19.441,19.343-19.441c10.641,0,19.297,8.717,19.297,19.441\r\n\t\t\tC154.42,234.736,145.764,243.457,135.123,243.457z"},"children":[{"name":"path","attribs":{"d":"M135.234,184.367C113.594,184.367,96,202.17,96,224.01c0,21.865,17.594,39.623,39.234,39.623\r\n\t\t\tc21.655,0,39.249-17.758,39.249-39.623C174.483,202.17,156.89,184.367,135.234,184.367z M135.123,243.457\r\n\t\t\tc-10.688,0-19.343-8.721-19.343-19.447c0-10.725,8.655-19.441,19.343-19.441c10.641,0,19.297,8.717,19.297,19.441\r\n\t\t\tC154.42,234.736,145.764,243.457,135.123,243.457z"},"children":[]}]},{"name":"path","attribs":{"d":"M351.988,160c-11.058,0-20.053,9.014-20.053,20.107c0,11.09,8.995,20.083,20.053,20.083\r\n\t\t\tc11.146,0,20.148-8.993,20.148-20.083C372.137,169.014,363.134,160,351.988,160z"},"children":[{"name":"path","attribs":{"d":"M351.988,160c-11.058,0-20.053,9.014-20.053,20.107c0,11.09,8.995,20.083,20.053,20.083\r\n\t\t\tc11.146,0,20.148-8.993,20.148-20.083C372.137,169.014,363.134,160,351.988,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M395.947,203.929c-11.105,0-20.101,9.014-20.101,20.104c0,11.089,8.995,20.107,20.101,20.107\r\n\t\t\tc11.059,0,20.053-9.019,20.053-20.107C416,212.942,407.006,203.929,395.947,203.929z"},"children":[{"name":"path","attribs":{"d":"M395.947,203.929c-11.105,0-20.101,9.014-20.101,20.104c0,11.089,8.995,20.107,20.101,20.107\r\n\t\t\tc11.059,0,20.053-9.019,20.053-20.107C416,212.942,407.006,203.929,395.947,203.929z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M451.677,398.716c-1.835,0.876-3.604,1.284-5.564,1.284c-6.022,0-14.077-4.049-23.295-11.708\r\n\t\tc-9.181-7.63-19.307-18.509-31.87-34.239c-12.959-16.22-23.667-28.229-43.528-33.949c-16.647-4.793-38.624-5.104-79.254-5.104\r\n\t\th-24.343c-40.633,0-62.611,0.311-79.259,5.105c-19.853,5.719-30.56,17.685-43.523,33.908\r\n\t\tc-12.556,15.727-22.68,26.627-31.862,34.258c-9.216,7.658-17.27,11.718-23.293,11.718c-1.932,0-3.751-0.415-5.568-1.282\r\n\t\tc-9.556-4.557-22.572-47.673,0.998-146.129c21.387-89.591,42.381-126.777,77.459-137.207c7.633-2.27,14.554-3.372,21.159-3.372\r\n\t\tc9.742,0,18.599,2.317,29.812,5.249c16.07,4.203,36.072,9.435,66.252,9.435c30.148,0,50.146-5.228,66.215-9.429\r\n\t\tc11.229-2.936,20.1-5.254,29.865-5.254c6.618,0,13.551,1.104,21.185,3.371c35.037,10.428,56.03,47.617,77.456,137.214\r\n\t\tC474.244,351.041,461.23,394.16,451.677,398.716z"},"children":[{"name":"path","attribs":{"d":"M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M451.677,398.716c-1.835,0.876-3.604,1.284-5.564,1.284c-6.022,0-14.077-4.049-23.295-11.708\r\n\t\tc-9.181-7.63-19.307-18.509-31.87-34.239c-12.959-16.22-23.667-28.229-43.528-33.949c-16.647-4.793-38.624-5.104-79.254-5.104\r\n\t\th-24.343c-40.633,0-62.611,0.311-79.259,5.105c-19.853,5.719-30.56,17.685-43.523,33.908\r\n\t\tc-12.556,15.727-22.68,26.627-31.862,34.258c-9.216,7.658-17.27,11.718-23.293,11.718c-1.932,0-3.751-0.415-5.568-1.282\r\n\t\tc-9.556-4.557-22.572-47.673,0.998-146.129c21.387-89.591,42.381-126.777,77.459-137.207c7.633-2.27,14.554-3.372,21.159-3.372\r\n\t\tc9.742,0,18.599,2.317,29.812,5.249c16.07,4.203,36.072,9.435,66.252,9.435c30.148,0,50.146-5.228,66.215-9.429\r\n\t\tc11.229-2.936,20.1-5.254,29.865-5.254c6.618,0,13.551,1.104,21.185,3.371c35.037,10.428,56.03,47.617,77.456,137.214\r\n\t\tC474.244,351.041,461.23,394.16,451.677,398.716z"},"children":[]}]}]}]};exports.iosGameControllerBOutline=iosGameControllerBOutline;var iosGameControllerB={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M135.123,204.568c-10.688,0-19.343,8.717-19.343,19.441c0,10.727,8.655,19.447,19.343,19.447\r\n\t\tc10.641,0,19.297-8.721,19.297-19.447C154.42,213.285,145.764,204.568,135.123,204.568z"},"children":[{"name":"path","attribs":{"d":"M135.123,204.568c-10.688,0-19.343,8.717-19.343,19.441c0,10.727,8.655,19.447,19.343,19.447\r\n\t\tc10.641,0,19.297-8.721,19.297-19.447C154.42,213.285,145.764,204.568,135.123,204.568z"},"children":[]}]},{"name":"path","attribs":{"d":"M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M135.234,263.633C113.594,263.633,96,245.875,96,224.01c0-21.84,17.594-39.643,39.234-39.643\r\n\t\tc21.655,0,39.249,17.803,39.249,39.643C174.483,245.875,156.89,263.633,135.234,263.633z M308.076,244.14\r\n\t\tc-11.058,0-20.076-9.019-20.076-20.107c0-11.09,9.019-20.104,20.076-20.104c11.131,0,20.148,9.014,20.148,20.104\r\n\t\tC328.225,235.121,319.207,244.14,308.076,244.14z M351.988,288c-11.058,0-20.053-8.951-20.053-20.016\r\n\t\tc0-11.157,8.995-20.106,20.053-20.106c11.146,0,20.148,8.949,20.148,20.106C372.137,279.049,363.134,288,351.988,288z\r\n\t\t M351.988,200.19c-11.058,0-20.053-8.993-20.053-20.083c0-11.094,8.995-20.107,20.053-20.107c11.146,0,20.148,9.014,20.148,20.107\r\n\t\tC372.137,191.197,363.134,200.19,351.988,200.19z M395.947,244.14c-11.105,0-20.101-9.019-20.101-20.107\r\n\t\tc0-11.09,8.995-20.104,20.101-20.104c11.059,0,20.053,9.014,20.053,20.104C416,235.121,407.006,244.14,395.947,244.14z"},"children":[{"name":"path","attribs":{"d":"M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M135.234,263.633C113.594,263.633,96,245.875,96,224.01c0-21.84,17.594-39.643,39.234-39.643\r\n\t\tc21.655,0,39.249,17.803,39.249,39.643C174.483,245.875,156.89,263.633,135.234,263.633z M308.076,244.14\r\n\t\tc-11.058,0-20.076-9.019-20.076-20.107c0-11.09,9.019-20.104,20.076-20.104c11.131,0,20.148,9.014,20.148,20.104\r\n\t\tC328.225,235.121,319.207,244.14,308.076,244.14z M351.988,288c-11.058,0-20.053-8.951-20.053-20.016\r\n\t\tc0-11.157,8.995-20.106,20.053-20.106c11.146,0,20.148,8.949,20.148,20.106C372.137,279.049,363.134,288,351.988,288z\r\n\t\t M351.988,200.19c-11.058,0-20.053-8.993-20.053-20.083c0-11.094,8.995-20.107,20.053-20.107c11.146,0,20.148,9.014,20.148,20.107\r\n\t\tC372.137,191.197,363.134,200.19,351.988,200.19z M395.947,244.14c-11.105,0-20.101-9.019-20.101-20.107\r\n\t\tc0-11.09,8.995-20.104,20.101-20.104c11.059,0,20.053,9.014,20.053,20.104C416,235.121,407.006,244.14,395.947,244.14z"},"children":[]}]}]}]};exports.iosGameControllerB=iosGameControllerB;var iosGearOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.9,159.9c-25.701,0-49.801,10-67.9,28.1s-28.1,42.199-28.1,67.9c0,25.699,10,49.699,28.1,67.9\r\n\t\t\tc18.1,18.1,42.301,28.1,67.9,28.1c25.699,0,49.799-10,67.9-28.1c18.1-18.102,28.1-42.201,28.1-67.9c0-25.701-10-49.701-28.1-67.9\r\n\t\t\tC306.699,169.9,282.6,159.9,256.9,159.9z M256.9,335.9c-44.301,0-80-35.9-80-80c0-44.101,35.699-80,80-80\r\n\t\t\tc44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z"},"children":[{"name":"path","attribs":{"d":"M256.9,159.9c-25.701,0-49.801,10-67.9,28.1s-28.1,42.199-28.1,67.9c0,25.699,10,49.699,28.1,67.9\r\n\t\t\tc18.1,18.1,42.301,28.1,67.9,28.1c25.699,0,49.799-10,67.9-28.1c18.1-18.102,28.1-42.201,28.1-67.9c0-25.701-10-49.701-28.1-67.9\r\n\t\t\tC306.699,169.9,282.6,159.9,256.9,159.9z M256.9,335.9c-44.301,0-80-35.9-80-80c0-44.101,35.699-80,80-80\r\n\t\t\tc44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M201.787,82.828c4.458,6.628,10.119,12.406,16.775,17.069c11.012,7.715,23.957,11.793,37.438,11.793\r\n\t\t\tc13.481,0,26.428-4.078,37.439-11.793c6.654-4.663,12.316-10.441,16.773-17.068c10.326,3.228,20.334,7.378,29.927,12.411\r\n\t\t\tc-1.532,7.84-1.614,15.93-0.203,23.933c2.333,13.235,8.604,25.269,18.133,34.798c12.335,12.336,28.737,19.129,46.185,19.129\r\n\t\t\tc4.242,0,8.424-0.399,12.52-1.195c5.032,9.6,9.181,19.613,12.405,29.947c-6.622,4.46-12.396,10.121-17.054,16.776\r\n\t\t\tc-7.705,11.008-11.777,23.946-11.776,37.418c0,13.467,4.069,26.401,11.768,37.406c4.653,6.651,10.421,12.312,17.036,16.771\r\n\t\t\tc-3.232,10.34-7.387,20.354-12.428,29.957c-4.081-0.789-8.246-1.187-12.472-1.187c-17.448,0-33.85,6.795-46.183,19.131\r\n\t\t\tc-9.515,9.514-15.781,21.527-18.123,34.74c-1.415,7.988-1.343,16.065,0.176,23.895c-9.607,5.04-19.627,9.192-29.967,12.421\r\n\t\t\tc-4.461-6.61-10.121-12.374-16.771-17.022c-11-7.689-23.928-11.754-37.386-11.754c-13.457,0-26.385,4.064-37.385,11.755\r\n\t\t\tc-6.649,4.648-12.31,10.412-16.771,17.021c-10.339-3.228-20.359-7.381-29.966-12.42c1.519-7.829,1.591-15.906,0.176-23.895\r\n\t\t\tc-2.342-13.214-8.608-25.228-18.123-34.741c-12.335-12.336-28.737-19.13-46.185-19.13c-4.226,0-8.39,0.396-12.471,1.187\r\n\t\t\tc-5.04-9.602-9.195-19.618-12.428-29.958c6.615-4.46,12.383-10.119,17.036-16.771c7.699-11.004,11.769-23.939,11.769-37.408\r\n\t\t\tc0-13.471-4.072-26.41-11.777-37.418c-4.658-6.654-10.432-12.316-17.054-16.776c3.225-10.333,7.372-20.346,12.405-29.946\r\n\t\t\tc4.096,0.796,8.277,1.196,12.521,1.196c17.446,0,33.849-6.794,46.185-19.13c9.529-9.53,15.799-21.563,18.133-34.799\r\n\t\t\tc1.411-8.003,1.33-16.093-0.203-23.932C181.455,90.207,191.461,86.057,201.787,82.828 M302.074,64\r\n\t\t\tC294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69c-20.466,4.895-39.692,12.973-57.128,23.688\r\n\t\t\tc8.068,18.122,4.682,40.104-10.182,54.97c-9.631,9.631-22.25,14.443-34.87,14.443c-6.854,0-13.706-1.419-20.083-4.255\r\n\t\t\tC76.958,170.284,68.887,189.517,64,209.984c18.51,7.112,31.652,25.049,31.652,46.062c0,21.008-13.133,38.936-31.631,46.054\r\n\t\t\tc4.898,20.466,12.977,39.692,23.693,57.128c6.36-2.821,13.197-4.232,20.031-4.232c12.621,0,25.238,4.812,34.871,14.443\r\n\t\t\tc14.841,14.841,18.238,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.131,23.673c7.127-18.479,25.046-31.596,46.037-31.596\r\n\t\t\tc20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675c-8.023-18.106-4.626-40.046,10.216-54.887\r\n\t\t\tc9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233c10.716-17.436,18.794-36.662,23.692-57.128\r\n\t\t\tc-18.498-7.118-31.63-25.048-31.63-46.054c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\t\t\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\t\t\tC341.768,76.973,322.54,68.895,302.074,64L302.074,64z"},"children":[{"name":"path","attribs":{"d":"M201.787,82.828c4.458,6.628,10.119,12.406,16.775,17.069c11.012,7.715,23.957,11.793,37.438,11.793\r\n\t\t\tc13.481,0,26.428-4.078,37.439-11.793c6.654-4.663,12.316-10.441,16.773-17.068c10.326,3.228,20.334,7.378,29.927,12.411\r\n\t\t\tc-1.532,7.84-1.614,15.93-0.203,23.933c2.333,13.235,8.604,25.269,18.133,34.798c12.335,12.336,28.737,19.129,46.185,19.129\r\n\t\t\tc4.242,0,8.424-0.399,12.52-1.195c5.032,9.6,9.181,19.613,12.405,29.947c-6.622,4.46-12.396,10.121-17.054,16.776\r\n\t\t\tc-7.705,11.008-11.777,23.946-11.776,37.418c0,13.467,4.069,26.401,11.768,37.406c4.653,6.651,10.421,12.312,17.036,16.771\r\n\t\t\tc-3.232,10.34-7.387,20.354-12.428,29.957c-4.081-0.789-8.246-1.187-12.472-1.187c-17.448,0-33.85,6.795-46.183,19.131\r\n\t\t\tc-9.515,9.514-15.781,21.527-18.123,34.74c-1.415,7.988-1.343,16.065,0.176,23.895c-9.607,5.04-19.627,9.192-29.967,12.421\r\n\t\t\tc-4.461-6.61-10.121-12.374-16.771-17.022c-11-7.689-23.928-11.754-37.386-11.754c-13.457,0-26.385,4.064-37.385,11.755\r\n\t\t\tc-6.649,4.648-12.31,10.412-16.771,17.021c-10.339-3.228-20.359-7.381-29.966-12.42c1.519-7.829,1.591-15.906,0.176-23.895\r\n\t\t\tc-2.342-13.214-8.608-25.228-18.123-34.741c-12.335-12.336-28.737-19.13-46.185-19.13c-4.226,0-8.39,0.396-12.471,1.187\r\n\t\t\tc-5.04-9.602-9.195-19.618-12.428-29.958c6.615-4.46,12.383-10.119,17.036-16.771c7.699-11.004,11.769-23.939,11.769-37.408\r\n\t\t\tc0-13.471-4.072-26.41-11.777-37.418c-4.658-6.654-10.432-12.316-17.054-16.776c3.225-10.333,7.372-20.346,12.405-29.946\r\n\t\t\tc4.096,0.796,8.277,1.196,12.521,1.196c17.446,0,33.849-6.794,46.185-19.13c9.529-9.53,15.799-21.563,18.133-34.799\r\n\t\t\tc1.411-8.003,1.33-16.093-0.203-23.932C181.455,90.207,191.461,86.057,201.787,82.828 M302.074,64\r\n\t\t\tC294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69c-20.466,4.895-39.692,12.973-57.128,23.688\r\n\t\t\tc8.068,18.122,4.682,40.104-10.182,54.97c-9.631,9.631-22.25,14.443-34.87,14.443c-6.854,0-13.706-1.419-20.083-4.255\r\n\t\t\tC76.958,170.284,68.887,189.517,64,209.984c18.51,7.112,31.652,25.049,31.652,46.062c0,21.008-13.133,38.936-31.631,46.054\r\n\t\t\tc4.898,20.466,12.977,39.692,23.693,57.128c6.36-2.821,13.197-4.232,20.031-4.232c12.621,0,25.238,4.812,34.871,14.443\r\n\t\t\tc14.841,14.841,18.238,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.131,23.673c7.127-18.479,25.046-31.596,46.037-31.596\r\n\t\t\tc20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675c-8.023-18.106-4.626-40.046,10.216-54.887\r\n\t\t\tc9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233c10.716-17.436,18.794-36.662,23.692-57.128\r\n\t\t\tc-18.498-7.118-31.63-25.048-31.63-46.054c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\t\t\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\t\t\tC341.768,76.973,322.54,68.895,302.074,64L302.074,64z"},"children":[]}]}]}]}]}]};exports.iosGearOutline=iosGearOutline;var iosGear={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M416.349,256.046c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\tC341.768,76.973,322.54,68.895,302.074,64C294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69\r\n\tc-20.466,4.895-39.693,12.973-57.128,23.688c8.068,18.122,4.683,40.104-10.181,54.97c-9.631,9.631-22.25,14.443-34.871,14.443\r\n\tc-6.854,0-13.706-1.419-20.083-4.255C76.958,170.284,68.886,189.517,64,209.984c18.509,7.112,31.652,25.049,31.652,46.062\r\n\tc0,21.008-13.132,38.936-31.63,46.054c4.898,20.466,12.976,39.692,23.692,57.128c6.361-2.821,13.198-4.232,20.032-4.232\r\n\tc12.622,0,25.239,4.812,34.871,14.443c14.841,14.841,18.239,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.13,23.673\r\n\tc7.128-18.479,25.046-31.596,46.038-31.596c20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675\r\n\tc-8.023-18.106-4.626-40.046,10.216-54.887c9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233\r\n\tc10.716-17.436,18.794-36.662,23.692-57.128C429.48,294.981,416.349,277.052,416.349,256.046z M256.9,335.9c-44.3,0-80-35.9-80-80\r\n\tc0-44.101,35.7-80,80-80c44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z"},"children":[]}]};exports.iosGear=iosGear;var iosGlassesOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M465.4,247c-2.2-22-12.4-43-28.9-58.4c-17.1-15.9-39.3-24.7-62.7-24.7c-41.5,0-77.3,27.4-88.5,67c-7-7-18.5-11.7-29.3-11.7\r\n\tc-10.8,0-22.3,4.7-29.3,11.7c-11.2-39.6-47-67-88.5-67c-23.3,0-45.6,8.7-62.7,24.6C59,204,48.8,225,46.6,247H32v18h14.6\r\n\tc2.2,22,12.4,43,28.9,58.4c17.1,15.9,39.3,24.7,62.7,24.7c50.8,0,92.1-41.2,92.1-92c0-0.1,0-0.1,0-0.1h0c0-9.9,11.5-21.6,25.7-21.6\r\n\ts25.7,11.7,25.7,21.6h0c0,0,0,0,0,0.1c0,50.8,41.3,92,92.1,92c23.3,0,45.6-8.7,62.7-24.7c16.5-15.4,26.7-36.5,28.9-58.5H480v-18\r\n\tH465.4z M373.8,333c-42.5,0-77-34.6-77-77c0-42.5,34.6-77,77-77c42.5,0,77,34.6,77,77C450.8,298.5,416.3,333,373.8,333z M138.2,333\r\n\tc-42.5,0-77-34.6-77-77c0-42.5,34.6-77,77-77c42.5,0,77,34.6,77,77C215.2,298.5,180.7,333,138.2,333z"},"children":[]}]};exports.iosGlassesOutline=iosGlassesOutline;var iosGlasses={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M465.4,247c-2.2-22-12.4-43-28.9-58.4c-17.1-15.9-39.3-24.7-62.7-24.7c-41.5,0-77.3,27.4-88.5,67c-7-7-18.5-11.7-29.3-11.7\r\n\tc-10.8,0-22.3,4.7-29.3,11.7c-11.2-39.6-47-67-88.5-67c-23.3,0-45.6,8.7-62.7,24.6C59,204,48.8,225,46.6,247H32v18h14.6\r\n\tc2.2,22,12.4,43,28.9,58.4c17.1,15.9,39.3,24.7,62.7,24.7c50.8,0,92.1-41.2,92.1-92c0-0.1,0-0.1,0-0.1h0c0-9.9,11.5-21.6,25.7-21.6\r\n\ts25.7,11.7,25.7,21.6h0c0,0,0,0,0,0.1c0,50.8,41.3,92,92.1,92c23.3,0,45.6-8.7,62.7-24.7c16.5-15.4,26.7-36.5,28.9-58.5H480v-18\r\n\tH465.4z"},"children":[]}]};exports.iosGlasses=iosGlasses;var iosGridViewOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,192v-16H336V64h-16v112H192V64h-16v112H64v16h112v128H64v16h112v112h16V336h128v112h16V336h112v-16H336V192H448z\r\n\t M320,320H192V192h128V320z"},"children":[]}]};exports.iosGridViewOutline=iosGridViewOutline;var iosGridView={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"192","y":"192","width":"128","height":"128"},"children":[{"name":"rect","attribs":{"x":"192","y":"192","width":"128","height":"128"},"children":[]}]},{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M416,192h-80v128h80v16h-80v80h-16v-80H192v80h-16v-80H96v-16h80V192H96v-16h80V96h16v80h128V96h16\r\n\t\tv80h80V192z"},"children":[{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M416,192h-80v128h80v16h-80v80h-16v-80H192v80h-16v-80H96v-16h80V192H96v-16h80V96h16v80h128V96h16\r\n\t\tv80h80V192z"},"children":[]}]}]}]};exports.iosGridView=iosGridView;var iosHeartOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M359.385,80C319.966,80,277.171,97.599,256,132.8C234.83,97.599,192.034,80,152.615,80C83.647,80,32,123.238,32,195.779\r\n\tc0,31.288,12.562,71.924,40.923,105.657c28.359,33.735,45.229,51.7,100.153,88C228,425.738,256,432,256,432s28-6.262,82.924-42.564\r\n\tc54.923-36.3,71.794-54.265,100.153-88C467.438,267.703,480,227.067,480,195.779C480,123.238,428.353,80,359.385,80z\r\n\t M426.83,291.141c-26.852,31.94-42.18,48.895-96.729,84.947c-40.237,26.596-65.252,36.301-74.102,39.233\r\n\tc-8.85-2.933-33.864-12.639-74.102-39.233c-54.548-36.052-69.876-53.006-96.729-84.948c-12.065-14.351-21.857-31.274-28.316-48.943\r\n\tC51.062,226.355,48,210.304,48,195.779c0-30.284,10.131-55.643,29.297-73.335c9.14-8.437,20.158-14.992,32.752-19.484\r\n\tC122.994,98.341,137.315,96,152.615,96c38.018,0,73.217,17.682,89.674,45.046L256,163.844l13.711-22.798\r\n\tC286.169,113.682,321.368,96,359.385,96c15.3,0,29.621,2.341,42.566,6.959c12.594,4.493,23.612,11.048,32.752,19.484\r\n\tC453.869,140.136,464,165.495,464,195.779c0,14.525-3.062,30.576-8.854,46.418C448.688,259.865,438.896,276.789,426.83,291.141z"},"children":[]}]};exports.iosHeartOutline=iosHeartOutline;var iosHeart={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M359.385,80C319.966,80,277.171,97.599,256,132.8C234.83,97.599,192.034,80,152.615,80C83.647,80,32,123.238,32,195.779\r\n\tc0,31.288,12.562,71.924,40.923,105.657c28.359,33.735,45.229,51.7,100.153,88C228,425.738,256,432,256,432s28-6.262,82.924-42.564\r\n\tc54.923-36.3,71.794-54.265,100.153-88C467.438,267.703,480,227.067,480,195.779C480,123.238,428.353,80,359.385,80z"},"children":[]}]};exports.iosHeart=iosHeart;var iosHelpEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z\r\n\t\t M294.1,250.7c-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1\r\n\t\tc0-23.6-19.4-39.9-42.6-39.9c-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6\r\n\t\tC320,222.3,309.3,236.6,294.1,250.7z"},"children":[{"name":"path","attribs":{"d":"M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z\r\n\t\t M294.1,250.7c-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1\r\n\t\tc0-23.6-19.4-39.9-42.6-39.9c-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6\r\n\t\tC320,222.3,309.3,236.6,294.1,250.7z"},"children":[]}]}]}]};exports.iosHelpEmpty=iosHelpEmpty;var iosHelpOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M259.6,146c-43.2,0-67.3,20.3-67.6,62.2h18.8c-0.6-30.4,15.5-46.5,47.9-46.5c23.2,0,42.6,16.2,42.6,39.8\r\n\t\t\tc0,15.3-8.3,27.7-19.4,38.1c-22.6,20.8-29,36-30.1,64.5h19c1.1-25.8,0.5-30.7,23.3-53.3c15.2-14.2,25.9-28.3,25.9-50.2\r\n\t\t\tC320,166.4,292.6,146,259.6,146z"},"children":[{"name":"path","attribs":{"d":"M259.6,146c-43.2,0-67.3,20.3-67.6,62.2h18.8c-0.6-30.4,15.5-46.5,47.9-46.5c23.2,0,42.6,16.2,42.6,39.8\r\n\t\t\tc0,15.3-8.3,27.7-19.4,38.1c-22.6,20.8-29,36-30.1,64.5h19c1.1-25.8,0.5-30.7,23.3-53.3c15.2-14.2,25.9-28.3,25.9-50.2\r\n\t\t\tC320,166.4,292.6,146,259.6,146z"},"children":[]}]},{"name":"path","attribs":{"d":"M260.3,332.3c-9.4,0-17,7.5-17,16.8c0,9.3,7.6,16.9,17,16.9c9.4,0,17-7.5,17-16.9C277.3,339.8,269.7,332.3,260.3,332.3z"},"children":[{"name":"path","attribs":{"d":"M260.3,332.3c-9.4,0-17,7.5-17,16.8c0,9.3,7.6,16.9,17,16.9c9.4,0,17-7.5,17-16.9C277.3,339.8,269.7,332.3,260.3,332.3z"},"children":[]}]}]}]}]}]};exports.iosHelpOutline=iosHelpOutline;var iosHelp={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z M294.1,250.7\r\n\t\tc-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1c0-23.6-19.4-39.9-42.6-39.9\r\n\t\tc-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6C320,222.3,309.3,236.6,294.1,250.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z M294.1,250.7\r\n\t\tc-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1c0-23.6-19.4-39.9-42.6-39.9\r\n\t\tc-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6C320,222.3,309.3,236.6,294.1,250.7z"},"children":[]}]}]}]};exports.iosHelp=iosHelp;var iosHomeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,112L96,240v208h112V320h96v128h112V240L256,112z M400,432h-80V304H192v128h-80V247.69l144-115.2l144,115.2V432z"},"children":[{"name":"path","attribs":{"d":"M256,112L96,240v208h112V320h96v128h112V240L256,112z M400,432h-80V304H192v128h-80V247.69l144-115.2l144,115.2V432z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z M144,153.599\r\n\t\tl-32,25.6V112h32V153.599z"},"children":[{"name":"path","attribs":{"d":"M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z M144,153.599\r\n\t\tl-32,25.6V112h32V153.599z"},"children":[]}]}]}]};exports.iosHomeOutline=iosHomeOutline;var iosHome={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,112L96,240v208h112V320h96v128h112V240L256,112z"},"children":[{"name":"path","attribs":{"d":"M256,112L96,240v208h112V320h96v128h112V240L256,112z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z"},"children":[{"name":"path","attribs":{"d":"M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z"},"children":[]}]}]}]};exports.iosHome=iosHome;var iosInfiniteOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M451.229,188.098C432.682,169.967,407.95,160,381.585,160c-26.363,0-51.095,9.967-69.642,28.098l-42.229,41.187\r\n\t\tl13.649,13.447l42.229-41.306c14.933-14.529,34.764-22.573,55.878-22.573c21.113,0,40.946,8.044,55.878,22.573\r\n\t\tc30.797,30.139,30.797,79.13,0,109.148c-14.932,14.529-34.765,22.573-55.878,22.573c-21.114,0-40.945-8.044-55.878-22.573\r\n\t\tL200.071,188.098C181.406,169.967,156.675,160,130.427,160c-26.363,0-51.095,9.967-69.643,28.098\r\n\t\tC41.615,206.809,32.021,231.441,32,256c-0.021,24.611,9.573,49.149,28.784,67.902C79.332,342.032,104.063,352,130.427,352\r\n\t\tc26.365,0,51.095-9.968,69.645-28.098l42.111-41.186l-13.647-13.329l-42.229,41.187c-14.932,14.529-34.764,22.573-55.879,22.573\r\n\t\tc-21.113,0-40.944-8.044-55.876-22.573c-30.799-30.14-30.799-79.13,0-109.148c14.932-14.529,34.763-22.573,55.876-22.573\r\n\t\tc21.115,0,40.947,8.044,55.879,22.573l125.52,122.477C330.49,342.032,355.222,352,381.47,352c26.363,0,51.095-9.968,69.643-28.098\r\n\t\tC470.361,305.23,479.985,280.6,480,256C480.015,231.399,470.42,206.83,451.229,188.098z"},"children":[{"name":"path","attribs":{"d":"M451.229,188.098C432.682,169.967,407.95,160,381.585,160c-26.363,0-51.095,9.967-69.642,28.098l-42.229,41.187\r\n\t\tl13.649,13.447l42.229-41.306c14.933-14.529,34.764-22.573,55.878-22.573c21.113,0,40.946,8.044,55.878,22.573\r\n\t\tc30.797,30.139,30.797,79.13,0,109.148c-14.932,14.529-34.765,22.573-55.878,22.573c-21.114,0-40.945-8.044-55.878-22.573\r\n\t\tL200.071,188.098C181.406,169.967,156.675,160,130.427,160c-26.363,0-51.095,9.967-69.643,28.098\r\n\t\tC41.615,206.809,32.021,231.441,32,256c-0.021,24.611,9.573,49.149,28.784,67.902C79.332,342.032,104.063,352,130.427,352\r\n\t\tc26.365,0,51.095-9.968,69.645-28.098l42.111-41.186l-13.647-13.329l-42.229,41.187c-14.932,14.529-34.764,22.573-55.879,22.573\r\n\t\tc-21.113,0-40.944-8.044-55.876-22.573c-30.799-30.14-30.799-79.13,0-109.148c14.932-14.529,34.763-22.573,55.876-22.573\r\n\t\tc21.115,0,40.947,8.044,55.879,22.573l125.52,122.477C330.49,342.032,355.222,352,381.47,352c26.363,0,51.095-9.968,69.643-28.098\r\n\t\tC470.361,305.23,479.985,280.6,480,256C480.015,231.399,470.42,206.83,451.229,188.098z"},"children":[]}]}]}]};exports.iosInfiniteOutline=iosInfiniteOutline;var iosInfinite={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M456.821,182.377C436.782,162.788,410.062,152,381.585,152c-28.477,0-55.195,10.788-75.21,30.354l-39.106,37.885\r\n\tl25.06,24.689l38.843-37.769c13.458-13.095,31.321-20.307,50.299-20.307c18.979,0,36.841,7.212,50.282,20.291\r\n\tc13.363,13.077,20.712,30.468,20.693,48.97c-0.019,18.443-7.363,35.75-20.677,48.728c-13.458,13.095-31.32,20.307-50.299,20.307\r\n\tc-18.978,0-36.841-7.212-50.291-20.299L205.646,182.359C185.491,162.782,158.778,152,130.427,152\r\n\tc-28.477,0-55.195,10.788-75.23,30.373C35.103,201.986,24.023,228.132,24,255.993c-0.024,27.822,11.055,53.973,31.192,73.63\r\n\tC75.232,349.212,101.951,360,130.427,360c28.475,0,55.194-10.788,75.223-30.363l38.994-37.909l-25.088-24.502l-38.829,37.615\r\n\tc-13.458,13.095-31.321,20.307-50.3,20.307c-18.977,0-36.839-7.212-50.28-20.291c-13.364-13.077-20.714-30.469-20.694-48.971\r\n\tc0.019-18.443,7.363-35.749,20.678-48.727c13.458-13.095,31.32-20.307,50.297-20.307c18.979,0,36.842,7.212,50.292,20.299\r\n\tl125.532,122.489C326.406,349.218,353.119,360,381.47,360c28.476,0,55.194-10.788,75.213-30.355\r\n\tc20.179-19.573,31.301-45.727,31.317-73.64C488.017,228.167,476.942,202.018,456.821,182.377z"},"children":[]}]};exports.iosInfinite=iosInfinite;var iosInformationEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"251.5","cy":"172","r":"20"},"children":[{"name":"circle","attribs":{"cx":"251.5","cy":"172","r":"20"},"children":[]}]},{"name":"polygon","attribs":{"points":"272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"},"children":[{"name":"polygon","attribs":{"points":"272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"},"children":[]}]}]}]}]}]};exports.iosInformationEmpty=iosInformationEmpty;var iosInformationOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"251.5","cy":"172","r":"20"},"children":[{"name":"circle","attribs":{"cx":"251.5","cy":"172","r":"20"},"children":[]}]},{"name":"polygon","attribs":{"points":"272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"},"children":[{"name":"polygon","attribs":{"points":"272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]};exports.iosInformationOutline=iosInformationOutline;var iosInformation={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M251.5,152c11.1,0,20,9,20,20s-9,20-20,20c-11,0-20-9-20-20S240.4,152,251.5,152z M288,352h-64v-8h16V224h-16v-8h48v128h16V352z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M251.5,152c11.1,0,20,9,20,20s-9,20-20,20c-11,0-20-9-20-20S240.4,152,251.5,152z M288,352h-64v-8h16V224h-16v-8h48v128h16V352z"},"children":[]}]}]}]};exports.iosInformation=iosInformation;var iosIonicOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M425.5,134.8c4.7-5.9,7.5-13.5,7.5-21.6c0-19.2-15.6-34.9-34.8-34.9c-8.2,0-15.7,2.8-21.6,7.5c-34-24.2-75-37.8-119.9-37.8\r\n\t\tC141.8,48,48,140.5,48,255.6C48,370.7,141.7,464,256.6,464C371.5,464,464,370.7,464,255.6C464,210.6,449.7,168.9,425.5,134.8z\r\n\t\t M398,91.3c12.2,0,22,9.9,22,22c0,12.2-9.9,22-22,22c-12.2,0-22-9.9-22-22C376,101.2,385.8,91.3,398,91.3z M391.8,391.7\r\n\t\tc-17.6,17.6-38.2,31.6-61.1,41.3c-23.7,10-48.2,15.2-74.2,15.2c-25.9,0-51.7-5.1-75.4-15.2c-22.9-9.7-43.4-23.5-61.1-41.3\r\n\t\tc-17.6-17.6-31.5-38.3-41.2-61.2c-10-23.7-15.1-48.9-15.1-74.9c0-25.9,5.1-51.2,15.1-74.9c9.7-22.9,23.5-43.5,41.2-61.2\r\n\t\ts38.2-31.6,61.1-41.3c23.7-10,49.4-14.1,75.4-14.1c25.9,0,50.5,4,74.2,14.1c12.7,5.4,24.7,12.1,35.9,20c-2.1,4.5-3.3,9.5-3.3,14.9\r\n\t\tc0,19.2,15.6,34.9,34.8,34.9c5.3,0,10.3-1.2,14.9-3.3c7.9,11.2,14.6,23.2,20,36c10,23.7,15.1,48.9,15.1,74.9\r\n\t\tc0,25.9-5.1,51.2-15.1,74.9C423.3,353.4,409.5,374,391.8,391.7z"},"children":[{"name":"path","attribs":{"d":"M425.5,134.8c4.7-5.9,7.5-13.5,7.5-21.6c0-19.2-15.6-34.9-34.8-34.9c-8.2,0-15.7,2.8-21.6,7.5c-34-24.2-75-37.8-119.9-37.8\r\n\t\tC141.8,48,48,140.5,48,255.6C48,370.7,141.7,464,256.6,464C371.5,464,464,370.7,464,255.6C464,210.6,449.7,168.9,425.5,134.8z\r\n\t\t M398,91.3c12.2,0,22,9.9,22,22c0,12.2-9.9,22-22,22c-12.2,0-22-9.9-22-22C376,101.2,385.8,91.3,398,91.3z M391.8,391.7\r\n\t\tc-17.6,17.6-38.2,31.6-61.1,41.3c-23.7,10-48.2,15.2-74.2,15.2c-25.9,0-51.7-5.1-75.4-15.2c-22.9-9.7-43.4-23.5-61.1-41.3\r\n\t\tc-17.6-17.6-31.5-38.3-41.2-61.2c-10-23.7-15.1-48.9-15.1-74.9c0-25.9,5.1-51.2,15.1-74.9c9.7-22.9,23.5-43.5,41.2-61.2\r\n\t\ts38.2-31.6,61.1-41.3c23.7-10,49.4-14.1,75.4-14.1c25.9,0,50.5,4,74.2,14.1c12.7,5.4,24.7,12.1,35.9,20c-2.1,4.5-3.3,9.5-3.3,14.9\r\n\t\tc0,19.2,15.6,34.9,34.8,34.9c5.3,0,10.3-1.2,14.9-3.3c7.9,11.2,14.6,23.2,20,36c10,23.7,15.1,48.9,15.1,74.9\r\n\t\tc0,25.9-5.1,51.2-15.1,74.9C423.3,353.4,409.5,374,391.8,391.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.5,160.1c-53,0-96,42.8-96,95.9s42.9,96.1,96,96.1c53,0,96-43,96-96.1S309.5,160.1,256.5,160.1z M256.5,335.8\r\n\t\tc-44.1,0-79.7-35.8-79.7-79.8c0-44.1,35.6-79.6,79.7-79.6s79.7,35.6,79.7,79.6C336.2,300.1,300.5,335.8,256.5,335.8z"},"children":[{"name":"path","attribs":{"d":"M256.5,160.1c-53,0-96,42.8-96,95.9s42.9,96.1,96,96.1c53,0,96-43,96-96.1S309.5,160.1,256.5,160.1z M256.5,335.8\r\n\t\tc-44.1,0-79.7-35.8-79.7-79.8c0-44.1,35.6-79.6,79.7-79.6s79.7,35.6,79.7,79.6C336.2,300.1,300.5,335.8,256.5,335.8z"},"children":[]}]}]}]};exports.iosIonicOutline=iosIonicOutline;var iosKeypadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z\r\n\t\t M394.6,432c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C432,415.2,415.2,432,394.6,432z"},"children":[{"name":"path","attribs":{"d":"M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z\r\n\t\t M394.6,432c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C432,415.2,415.2,432,394.6,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z M256,432\r\n\t\tc-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,415.2,276.6,432,256,432z"},"children":[{"name":"path","attribs":{"d":"M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z M256,432\r\n\t\tc-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,415.2,276.6,432,256,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z\r\n\t\t M117.4,432C96.8,432,80,415.2,80,394.6c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,415.2,138.1,432,117.4,432z"},"children":[{"name":"path","attribs":{"d":"M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z\r\n\t\t M117.4,432C96.8,432,80,415.2,80,394.6c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,415.2,138.1,432,117.4,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z\r\n\t\t M394.6,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4S432,235.4,432,256C432,276.6,415.2,293.4,394.6,293.4z"},"children":[{"name":"path","attribs":{"d":"M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z\r\n\t\t M394.6,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4S432,235.4,432,256C432,276.6,415.2,293.4,394.6,293.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z\r\n\t\t M256,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,276.6,276.6,293.4,256,293.4z"},"children":[{"name":"path","attribs":{"d":"M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z\r\n\t\t M256,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,276.6,276.6,293.4,256,293.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z\r\n\t\t M117.4,293.4C96.8,293.4,80,276.6,80,256c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,276.6,138.1,293.4,117.4,293.4z"},"children":[{"name":"path","attribs":{"d":"M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z\r\n\t\t M117.4,293.4C96.8,293.4,80,276.6,80,256c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,276.6,138.1,293.4,117.4,293.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z M394.6,80c20.6,0,37.4,16.8,37.4,37.4c0,20.6-16.8,37.4-37.4,37.4s-37.4-16.8-37.4-37.4\r\n\t\tC357.2,96.8,373.9,80,394.6,80z"},"children":[{"name":"path","attribs":{"d":"M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z M394.6,80c20.6,0,37.4,16.8,37.4,37.4c0,20.6-16.8,37.4-37.4,37.4s-37.4-16.8-37.4-37.4\r\n\t\tC357.2,96.8,373.9,80,394.6,80z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z\r\n\t\t M256,154.8c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,138,276.6,154.8,256,154.8z"},"children":[{"name":"path","attribs":{"d":"M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z\r\n\t\t M256,154.8c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,138,276.6,154.8,256,154.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t M117.4,154.8C96.8,154.8,80,138,80,117.4C80,96.8,96.8,80,117.4,80s37.4,16.8,37.4,37.4C154.8,138,138.1,154.8,117.4,154.8z"},"children":[{"name":"path","attribs":{"d":"M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t M117.4,154.8C96.8,154.8,80,138,80,117.4C80,96.8,96.8,80,117.4,80s37.4,16.8,37.4,37.4C154.8,138,138.1,154.8,117.4,154.8z"},"children":[]}]}]}]};exports.iosKeypadOutline=iosKeypadOutline;var iosKeypad={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z"},"children":[{"name":"path","attribs":{"d":"M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z"},"children":[{"name":"path","attribs":{"d":"M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z"},"children":[{"name":"path","attribs":{"d":"M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z"},"children":[{"name":"path","attribs":{"d":"M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z"},"children":[{"name":"path","attribs":{"d":"M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z"},"children":[{"name":"path","attribs":{"d":"M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z"},"children":[{"name":"path","attribs":{"d":"M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z"},"children":[{"name":"path","attribs":{"d":"M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t"},"children":[]}]}]}]};exports.iosKeypad=iosKeypad;var iosLightbulbOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h128v-1.4c0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z\r\n\t\t M351,254.4c-0.6,0.8-1.1,1.5-1.7,2.3c-8.1,10.9-16.5,22.2-24.7,36.1c-17.3,29.7-20.4,57.9-20.8,75.1H288V256l32-64h-16.6L272,256\r\n\t\tv112h-32V256l-31.4-64H192l32,64v112h-15.9c-0.5-17.2-3.9-45.7-20.9-75c-4.5-7.7-9.1-15-13.7-21h0.2l-18.6-25.6\r\n\t\tc-15.8-21.6-27.1-47.1-27.1-73.6c0-33.4,16-64.8,39.6-88.4s55-36.7,88.4-36.7c33.4,0,64.8,13.1,88.4,36.7\r\n\t\tc23.6,23.6,39.6,55,39.6,88.4c0,26.5-11.3,51.9-27.1,73.5L351,254.4z"},"children":[{"name":"path","attribs":{"d":"M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h128v-1.4c0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z\r\n\t\t M351,254.4c-0.6,0.8-1.1,1.5-1.7,2.3c-8.1,10.9-16.5,22.2-24.7,36.1c-17.3,29.7-20.4,57.9-20.8,75.1H288V256l32-64h-16.6L272,256\r\n\t\tv112h-32V256l-31.4-64H192l32,64v112h-15.9c-0.5-17.2-3.9-45.7-20.9-75c-4.5-7.7-9.1-15-13.7-21h0.2l-18.6-25.6\r\n\t\tc-15.8-21.6-27.1-47.1-27.1-73.6c0-33.4,16-64.8,39.6-88.4s55-36.7,88.4-36.7c33.4,0,64.8,13.1,88.4,36.7\r\n\t\tc23.6,23.6,39.6,55,39.6,88.4c0,26.5-11.3,51.9-27.1,73.5L351,254.4z"},"children":[]}]},{"name":"rect","attribs":{"x":"224","y":"464","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"224","y":"464","width":"64","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"432","width":"96","height":"16"},"children":[{"name":"rect","attribs":{"x":"208","y":"432","width":"96","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"400","width":"96","height":"16"},"children":[{"name":"rect","attribs":{"x":"208","y":"400","width":"96","height":"16"},"children":[]}]}]}]};exports.iosLightbulbOutline=iosLightbulbOutline;var iosLightbulb={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h32V256l-32-64h16.6l31.4,64v128h32V256l31.4-64H320l-32,64v128h32v-1.4\r\n\t\t\tc0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z"},"children":[{"name":"path","attribs":{"d":"M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h32V256l-32-64h16.6l31.4,64v128h32V256l31.4-64H320l-32,64v128h32v-1.4\r\n\t\t\tc0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z"},"children":[]}]}]}]},{"name":"rect","attribs":{"x":"224","y":"464","width":"64","height":"16"},"children":[{"name":"rect","attribs":{"x":"224","y":"464","width":"64","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"432","width":"96","height":"16"},"children":[{"name":"rect","attribs":{"x":"208","y":"432","width":"96","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"400","width":"96","height":"16"},"children":[{"name":"rect","attribs":{"x":"208","y":"400","width":"96","height":"16"},"children":[]}]}]}]};exports.iosLightbulb=iosLightbulb;var iosListOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M432,80v352H80V80H432 M448,64H64v384h384V64L448,64z"},"children":[{"name":"path","attribs":{"d":"M432,80v352H80V80H432 M448,64H64v384h384V64L448,64z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"192","y":"152","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"152","width":"192","height":"16"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"192","y":"248","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"248","width":"192","height":"16"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"192","y":"344","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"192","y":"344","width":"192","height":"16"},"children":[]}]}]}]}]}]},{"name":"circle","attribs":{"cx":"144","cy":"160","r":"16"},"children":[{"name":"circle","attribs":{"cx":"144","cy":"160","r":"16"},"children":[]}]},{"name":"circle","attribs":{"cx":"144","cy":"256","r":"16"},"children":[{"name":"circle","attribs":{"cx":"144","cy":"256","r":"16"},"children":[]}]},{"name":"circle","attribs":{"cx":"144","cy":"352","r":"16"},"children":[{"name":"circle","attribs":{"cx":"144","cy":"352","r":"16"},"children":[]}]}]}]};exports.iosListOutline=iosListOutline;var iosList={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M144,368c-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,368,144,368z M144,272\r\n\t\tc-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,272,144,272z M144,176c-8.836,0-16-7.164-16-16s7.164-16,16-16\r\n\t\ts16,7.164,16,16S152.836,176,144,176z M384,360H192v-16h192V360z M384,264H192v-16h192V264z M384,168H192v-16h192V168z"},"children":[{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M144,368c-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,368,144,368z M144,272\r\n\t\tc-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,272,144,272z M144,176c-8.836,0-16-7.164-16-16s7.164-16,16-16\r\n\t\ts16,7.164,16,16S152.836,176,144,176z M384,360H192v-16h192V360z M384,264H192v-16h192V264z M384,168H192v-16h192V168z"},"children":[]}]}]}]};exports.iosList=iosList;var iosLocationOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48c34.19,0,66.334,13.314,90.51,37.49S384,141.81,384,176c0,42.92-24.092,107.127-69.67,185.68\r\n\t\tc-22.279,38.396-44.771,71.634-58.332,90.931c-13.518-19.232-35.912-52.327-58.161-90.645C152.149,283.281,128,218.976,128,176\r\n\t\tc0-34.19,13.314-66.334,37.49-90.51S221.81,48,256,48 M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304\r\n\t\tC400,96.471,335.529,32,256,32L256,32z"},"children":[{"name":"path","attribs":{"d":"M256,48c34.19,0,66.334,13.314,90.51,37.49S384,141.81,384,176c0,42.92-24.092,107.127-69.67,185.68\r\n\t\tc-22.279,38.396-44.771,71.634-58.332,90.931c-13.518-19.232-35.912-52.327-58.161-90.645C152.149,283.281,128,218.976,128,176\r\n\t\tc0-34.19,13.314-66.334,37.49-90.51S221.81,48,256,48 M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304\r\n\t\tC400,96.471,335.529,32,256,32L256,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,112c-35.3,0-64,28.7-64,64s28.7,64,64,64s64-28.7,64-64S291.3,112,256,112z M256,222.9c-25.9,0-46.9-21-46.9-46.9\r\n\t\ts21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z"},"children":[{"name":"path","attribs":{"d":"M256,112c-35.3,0-64,28.7-64,64s28.7,64,64,64s64-28.7,64-64S291.3,112,256,112z M256,222.9c-25.9,0-46.9-21-46.9-46.9\r\n\t\ts21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z"},"children":[]}]}]}]};exports.iosLocationOutline=iosLocationOutline;var iosLocation={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304C400,96.471,335.529,32,256,32z M256,222.9\r\n\tc-25.9,0-46.9-21-46.9-46.9s21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z"},"children":[]}]};exports.iosLocation=iosLocation;var iosLockedOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M168,152\r\n\t\t\tc0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v72H168V152z M400,448H112V240h288V448z"},"children":[{"name":"path","attribs":{"d":"M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M168,152\r\n\t\t\tc0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v72H168V152z M400,448H112V240h288V448z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"},"children":[{"name":"path","attribs":{"d":"M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"},"children":[]}]}]}]};exports.iosLockedOutline=iosLockedOutline;var iosLocked={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M264,350.992V384h-16\r\n\t\tv-33.008c-13.802-3.553-24-16.082-24-30.992c0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z\r\n\t\t M344,224H168v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152V224z"},"children":[{"name":"path","attribs":{"d":"M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M264,350.992V384h-16\r\n\t\tv-33.008c-13.802-3.553-24-16.082-24-30.992c0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z\r\n\t\t M344,224H168v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152V224z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"},"children":[{"name":"path","attribs":{"d":"M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"},"children":[]}]}]}]};exports.iosLocked=iosLocked;var iosLoopStrong={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48c-75.033,0-144.531,40.658-181.373,106.107l-1.963,3.485l20.915,11.771l1.962-3.485\r\n\t\t\tC128.138,107.973,189.621,72,256,72c101.458,0,184,82.542,184,184c0,12.509-1.262,25.007-3.749,37.147l-0.803,3.918l23.511,4.819\r\n\t\t\tl0.804-3.919C462.574,284.244,464,270.125,464,256C464,141.309,370.691,48,256,48z"},"children":[{"name":"path","attribs":{"d":"M256,48c-75.033,0-144.531,40.658-181.373,106.107l-1.963,3.485l20.915,11.771l1.962-3.485\r\n\t\t\tC128.138,107.973,189.621,72,256,72c101.458,0,184,82.542,184,184c0,12.509-1.262,25.007-3.749,37.147l-0.803,3.918l23.511,4.819\r\n\t\t\tl0.804-3.919C462.574,284.244,464,270.125,464,256C464,141.309,370.691,48,256,48z"},"children":[]}]},{"name":"path","attribs":{"d":"M416.459,346.119C383.862,404.027,322.379,440,256,440c-101.458,0-184-82.542-184-184c0-12.512,1.262-25.011,3.75-37.15\r\n\t\t\tl0.803-3.918l-23.511-4.819l-0.804,3.918C49.426,227.75,48,241.87,48,256c0,114.691,93.309,208,208,208\r\n\t\t\tc75.033,0,144.531-40.658,181.373-106.109l1.963-3.485l-20.915-11.771L416.459,346.119z"},"children":[{"name":"path","attribs":{"d":"M416.459,346.119C383.862,404.027,322.379,440,256,440c-101.458,0-184-82.542-184-184c0-12.512,1.262-25.011,3.75-37.15\r\n\t\t\tl0.803-3.918l-23.511-4.819l-0.804,3.918C49.426,227.75,48,241.87,48,256c0,114.691,93.309,208,208,208\r\n\t\t\tc75.033,0,144.531-40.658,181.373-106.109l1.963-3.485l-20.915-11.771L416.459,346.119z"},"children":[]}]}]}]},{"name":"polygon","attribs":{"points":"384,256 448,320 512,256 \t"},"children":[{"name":"polygon","attribs":{"points":"384,256 448,320 512,256 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"0,256 64,192 128,256 \t"},"children":[{"name":"polygon","attribs":{"points":"0,256 64,192 128,256 \t"},"children":[]}]}]}]};exports.iosLoopStrong=iosLoopStrong;var iosLoop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"489.373,256 448,297.373 405.627,256 394.813,266.813 448,320 500.687,267.313 \t"},"children":[{"name":"polygon","attribs":{"points":"489.373,256 448,297.373 405.627,256 394.813,266.813 448,320 500.687,267.313 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M459.994,255.509c-0.002-0.577,0.013-1.157,0.007-1.733l-0.029-0.003C458.771,142.311,367.742,52,256,52\r\n\t\t\tc-73.59,0-141.753,39.878-177.888,104.071l13.943,7.848C125.359,104.754,188.18,68,256,68\r\n\t\t\tc103.273,0,187.355,83.708,187.985,186.836c0.038,6.882-0.281,13.83-1.017,20.831l15.912,1.674\r\n\t\t\tc0.755-7.168,1.105-14.286,1.111-21.341H460C460,255.836,459.994,255.673,459.994,255.509z"},"children":[{"name":"path","attribs":{"d":"M459.994,255.509c-0.002-0.577,0.013-1.157,0.007-1.733l-0.029-0.003C458.771,142.311,367.742,52,256,52\r\n\t\t\tc-73.59,0-141.753,39.878-177.888,104.071l13.943,7.848C125.359,104.754,188.18,68,256,68\r\n\t\t\tc103.273,0,187.355,83.708,187.985,186.836c0.038,6.882-0.281,13.83-1.017,20.831l15.912,1.674\r\n\t\t\tc0.755-7.168,1.105-14.286,1.111-21.341H460C460,255.836,459.994,255.673,459.994,255.509z"},"children":[]}]},{"name":"path","attribs":{"d":"M419.944,348.081C386.641,407.246,323.82,444,256,444c-103.475,0-187.688-84.032-187.993-187.437\r\n\t\t\tc-0.015-6.686,0.31-13.434,1.024-20.23l-15.912-1.674c-0.754,7.168-1.104,14.286-1.108,21.341H52c0,0.472,0.015,0.939,0.018,1.41\r\n\t\t\tc0.006,0.975-0.006,1.952,0.015,2.924l0.022-0.003C54.369,370.825,144.962,460,256,460c73.59,0,141.753-39.878,177.888-104.071\r\n\t\t\tL419.944,348.081z"},"children":[{"name":"path","attribs":{"d":"M419.944,348.081C386.641,407.246,323.82,444,256,444c-103.475,0-187.688-84.032-187.993-187.437\r\n\t\t\tc-0.015-6.686,0.31-13.434,1.024-20.23l-15.912-1.674c-0.754,7.168-1.104,14.286-1.108,21.341H52c0,0.472,0.015,0.939,0.018,1.41\r\n\t\t\tc0.006,0.975-0.006,1.952,0.015,2.924l0.022-0.003C54.369,370.825,144.962,460,256,460c73.59,0,141.753-39.878,177.888-104.071\r\n\t\t\tL419.944,348.081z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"64,192 11.313,244.687 22.627,256 64,214.627 105.373,256 116.687,244.687 \t\t\t"},"children":[{"name":"polygon","attribs":{"points":"64,192 11.313,244.687 22.627,256 64,214.627 105.373,256 116.687,244.687 \t\t\t"},"children":[]}]}]}]}]}]}]}]};exports.iosLoop=iosLoop;var iosMedicalOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M438,187.713l-31.927-55.426L288,200.574V64h-64v136.574l-118.073-68.287l-31.938,55.426L192.092,256L73.998,324.287\r\n\tl31.928,55.426L224,311.426V448h64V311.426l118.072,68.287l31.939-55.426L319.908,256L438,187.713z M416.176,330.125l-15.963,27.866\r\n\tL272,284v148h-32V284l-128.213,74l-15.969-27.785l128.228-74.197L95.822,181.861l15.964-27.859L240,228V80h32v148l128.213-74\r\n\tl15.969,27.785l-128.228,74.179L416.176,330.125z"},"children":[]}]};exports.iosMedicalOutline=iosMedicalOutline;var iosMedical={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M438,187.713l-31.927-55.426L288,200.574V64h-64v136.574l-118.073-68.287l-31.938,55.426L192.092,256L73.998,324.287\r\n\tl31.928,55.426L224,311.426V448h64V311.426l118.072,68.287l31.939-55.426L319.908,256L438,187.713z"},"children":[]}]};exports.iosMedical=iosMedical;var iosMedkitOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M272,208v48v16h16h48v32h-48h-16v16v48h-32v-48v-16h-16h-48v-32h48h16v-16v-48H272 M288,192h-64v64h-64v64h64v64h64v-64\r\n\t\t\th64v-64h-64V192L288,192z"},"children":[{"name":"path","attribs":{"d":"M272,208v48v16h16h48v32h-48h-16v16v48h-32v-48v-16h-16h-48v-32h48h16v-16v-48H272 M288,192h-64v64h-64v64h64v64h64v-64\r\n\t\t\th64v-64h-64V192L288,192z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M448,432H64V144h384V432z"},"children":[{"name":"path","attribs":{"d":"M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M448,432H64V144h384V432z"},"children":[]}]}]}]};exports.iosMedkitOutline=iosMedkitOutline;var iosMedkit={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"272,272 272,256 272,208 240,208 240,256 240,272 224,272 176,272 176,304 224,304 240,304 240,320 240,368 \r\n\t\t272,368 272,320 272,304 288,304 336,304 336,272 288,272 \t"},"children":[{"name":"polygon","attribs":{"points":"272,272 272,256 272,208 240,208 240,256 240,272 224,272 176,272 176,304 224,304 240,304 240,320 240,368 \r\n\t\t272,368 272,320 272,304 288,304 336,304 336,272 288,272 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M352,320h-64v64h-64v-64h-64v-64h64v-64h64v64h64V320z"},"children":[{"name":"path","attribs":{"d":"M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M352,320h-64v64h-64v-64h-64v-64h64v-64h64v64h64V320z"},"children":[]}]}]}]};exports.iosMedkit=iosMedkit;var iosMicOff={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"264.2","y":"1.1","transform":"matrix(0.8629 -0.5053 0.5053 0.8629 -92.0515 172.66)","width":"16","height":"509.8"},"children":[{"name":"rect","attribs":{"x":"264.2","y":"1.1","transform":"matrix(0.8629 -0.5053 0.5053 0.8629 -92.0515 172.66)","width":"16","height":"509.8"},"children":[]}]},{"name":"path","attribs":{"d":"M256.2,353.4c12.3,0,23.8-2.9,34.2-8.2L177,152.4V270C177,316,212.4,353.4,256.2,353.4z"},"children":[{"name":"path","attribs":{"d":"M256.2,353.4c12.3,0,23.8-2.9,34.2-8.2L177,152.4V270C177,316,212.4,353.4,256.2,353.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M335,270V115.5c0-46-35.2-83.5-79-83.5c-25.4,0-47.8,12.6-62.3,32.2l136.9,233.3C333.5,288.9,335,279.6,335,270z"},"children":[{"name":"path","attribs":{"d":"M335,270V115.5c0-46-35.2-83.5-79-83.5c-25.4,0-47.8,12.6-62.3,32.2l136.9,233.3C333.5,288.9,335,279.6,335,270z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,271.7V192h-17v79.7c0,21.5-6.2,41.6-17.1,58.5l9.9,17C375.1,326,384,299.9,384,271.7z"},"children":[{"name":"path","attribs":{"d":"M384,271.7V192h-17v79.7c0,21.5-6.2,41.6-17.1,58.5l9.9,17C375.1,326,384,299.9,384,271.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M267,399.2c17-1.2,33-5.8,47.3-13l-9.4-16.1c-14.5,7-30.7,10.9-47.7,10.9c-60.3,0-110.1-49-110.1-109.1V192h-19v79.7\r\n\t\tc0,67.2,53,122.6,120,127.4V462h-73v18h161v-18h-69V399.2z"},"children":[{"name":"path","attribs":{"d":"M267,399.2c17-1.2,33-5.8,47.3-13l-9.4-16.1c-14.5,7-30.7,10.9-47.7,10.9c-60.3,0-110.1-49-110.1-109.1V192h-19v79.7\r\n\t\tc0,67.2,53,122.6,120,127.4V462h-73v18h161v-18h-69V399.2z"},"children":[]}]}]}]};exports.iosMicOff=iosMicOff;var iosMicOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32c-43.7,0-79,37.5-79,83.5V270c0,46,35.3,83.5,79,83.5c43.7,0,79-37.5,79-83.5V115.5C335,69.5,299.7,32,256,32z\r\n\t\t M319,270c0,37.2-28.3,67.5-63,67.5c-34.7,0-63-30.3-63-67.5V115.5c0-37.2,28.3-67.5,63-67.5c34.7,0,63,30.3,63,67.5V270z"},"children":[{"name":"path","attribs":{"d":"M256,32c-43.7,0-79,37.5-79,83.5V270c0,46,35.3,83.5,79,83.5c43.7,0,79-37.5,79-83.5V115.5C335,69.5,299.7,32,256,32z\r\n\t\t M319,270c0,37.2-28.3,67.5-63,67.5c-34.7,0-63-30.3-63-67.5V115.5c0-37.2,28.3-67.5,63-67.5c34.7,0,63,30.3,63,67.5V270z"},"children":[]}]},{"name":"path","attribs":{"d":"M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"},"children":[{"name":"path","attribs":{"d":"M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"},"children":[]}]}]}]};exports.iosMicOutline=iosMicOutline;var iosMic={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,353.5c43.7,0,79-37.5,79-83.5V115.5c0-46-35.3-83.5-79-83.5c-43.7,0-79,37.5-79,83.5V270\r\n\t\tC177,316,212.3,353.5,256,353.5z"},"children":[{"name":"path","attribs":{"d":"M256,353.5c43.7,0,79-37.5,79-83.5V115.5c0-46-35.3-83.5-79-83.5c-43.7,0-79,37.5-79,83.5V270\r\n\t\tC177,316,212.3,353.5,256,353.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"},"children":[{"name":"path","attribs":{"d":"M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"},"children":[]}]}]}]};exports.iosMic=iosMic;var iosMinusEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M384,265H128v-17h256V265z"},"children":[{"name":"path","attribs":{"d":"M384,265H128v-17h256V265z"},"children":[]}]}]}]};exports.iosMinusEmpty=iosMinusEmpty;var iosMinusOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]},{"name":"rect","attribs":{"x":"128","y":"248","width":"256","height":"17"},"children":[{"name":"rect","attribs":{"x":"128","y":"248","width":"256","height":"17"},"children":[]}]}]}]};exports.iosMinusOutline=iosMinusOutline;var iosMinus={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H128v-17h256V265z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H128v-17h256V265z"},"children":[]}]}]}]};exports.iosMinus=iosMinus;var iosMonitorOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M496,384V96H16v288h175v16h-64v16h257v-16h-64v-16H496z M32,112h448v256H32V112z"},"children":[]}]};exports.iosMonitorOutline=iosMonitorOutline;var iosMonitor={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M496,384V96H16v288h175v16h-64v16h257v-16h-64v-16H496z M32,112h448v256H32V112z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"48","y":"128","width":"416","height":"224"},"children":[{"name":"rect","attribs":{"x":"48","y":"128","width":"416","height":"224"},"children":[]}]}]}]};exports.iosMonitor=iosMonitor;var iosMoonOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z\r\n\t\t\t M263.3,355.1c-54.9,0-99.5-44.6-99.5-99.5c0-39.1,22.6-72.9,55.4-89.2c-4.2,12.5-6.4,25.8-6.4,39.7c0,65.9,51,119.9,115.6,124.7\r\n\t\t\tC311,346,288.2,355.1,263.3,355.1z"},"children":[{"name":"path","attribs":{"d":"M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z\r\n\t\t\t M263.3,355.1c-54.9,0-99.5-44.6-99.5-99.5c0-39.1,22.6-72.9,55.4-89.2c-4.2,12.5-6.4,25.8-6.4,39.7c0,65.9,51,119.9,115.6,124.7\r\n\t\t\tC311,346,288.2,355.1,263.3,355.1z"},"children":[]}]}]}]}]}]};exports.iosMoonOutline=iosMoonOutline;var iosMoon={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z"},"children":[{"name":"path","attribs":{"d":"M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z"},"children":[]}]}]}]}]}]};exports.iosMoon=iosMoon;var iosMoreOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S246.1,238,256,238 M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\tc17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"},"children":[{"name":"path","attribs":{"d":"M256,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S246.1,238,256,238 M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\tc17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M128.4,238c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S118.5,238,128.4,238 M128.4,224c-17.7,0-32,14.3-32,32\r\n\t\ts14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"},"children":[{"name":"path","attribs":{"d":"M128.4,238c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S118.5,238,128.4,238 M128.4,224c-17.7,0-32,14.3-32,32\r\n\t\ts14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S374.1,238,384,238 M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\ts32-14.3,32-32S401.7,224,384,224L384,224z"},"children":[{"name":"path","attribs":{"d":"M384,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S374.1,238,384,238 M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\ts32-14.3,32-32S401.7,224,384,224L384,224z"},"children":[]}]}]}]};exports.iosMoreOutline=iosMoreOutline;var iosMore={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"},"children":[{"name":"path","attribs":{"d":"M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M128.4,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"},"children":[{"name":"path","attribs":{"d":"M128.4,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32s32-14.3,32-32S401.7,224,384,224L384,224z"},"children":[{"name":"path","attribs":{"d":"M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32s32-14.3,32-32S401.7,224,384,224L384,224z"},"children":[]}]}]}]};exports.iosMore=iosMore;var iosMusicalNote={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M352.1,102.3c0-0.1,0-0.2,0-0.2c-0.1-0.3-0.1-0.5-0.2-0.8c0,0,0-0.1,0-0.1c-0.6-1.5-1.8-3-3.5-3.4l-2-0.4L256,78v272.6\r\n\tc-8,0-22.4,0.4-44.5,1.3c-41.8,1.6-51.4,21.6-51.4,40.9c0,24.6,13.2,43.1,61.5,41c51.8-2.3,51.4-48.5,51.4-81.7V159.6l73.6,13.5l0,0\r\n\tc3,0.6,5.4-2.3,5.4-5.3v-64.4C352,103,352.1,102.6,352.1,102.3z"},"children":[]}]};exports.iosMusicalNote=iosMusicalNote;var iosMusicalNotes={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M416,319.9V78l-224,34.6v237.2c-9,0-20.9,0.4-43.5,1.3c-42.6,1.6-52.5,21.8-52.5,41.3c0,24.9,13.5,43.5,62.6,41.4\r\n\tc52.8-2.3,50.3-49,50.3-82.5V189.8l191-32v160.6c-9,0-19.9,0.4-42.6,1.3c-42.6,1.6-52.5,21.8-52.5,41.3c0,24.9,13,43.5,62.2,41.4\r\n\tC420,400.1,416,353.4,416,319.9z"},"children":[]}]};exports.iosMusicalNotes=iosMusicalNotes;var iosNavigateOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,64.5c51.1,0,99.2,19.9,135.4,56.1s56.1,84.2,56.1,135.4s-19.9,99.2-56.1,135.4s-84.2,56.1-135.4,56.1\r\n\t\ts-99.2-19.9-135.4-56.1C84.5,355.2,64.5,307.1,64.5,256s19.9-99.2,56.1-135.4C156.8,84.5,204.9,64.5,256,64.5 M256,48\r\n\t\tC141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48L256,48z"},"children":[{"name":"path","attribs":{"d":"M256,64.5c51.1,0,99.2,19.9,135.4,56.1s56.1,84.2,56.1,135.4s-19.9,99.2-56.1,135.4s-84.2,56.1-135.4,56.1\r\n\t\ts-99.2-19.9-135.4-56.1C84.5,355.2,64.5,307.1,64.5,256s19.9-99.2,56.1-135.4C156.8,84.5,204.9,64.5,256,64.5 M256,48\r\n\t\tC141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48L256,48z"},"children":[]}]},{"name":"polygon","attribs":{"points":"352,160 128.3,256 256,256 256,384 \t"},"children":[{"name":"polygon","attribs":{"points":"352,160 128.3,256 256,256 256,384 \t"},"children":[]}]}]}]};exports.iosNavigateOutline=iosNavigateOutline;var iosNavigate={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,384\r\n\t\tV256H128.3L352,160L256,384z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,384\r\n\t\tV256H128.3L352,160L256,384z"},"children":[]}]}]}]};exports.iosNavigate=iosNavigate;var iosNutritionOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M358,233.855l0.413-0.039c-0.137-0.137-0.046-0.101-0.185-0.237L279.798,155h-0.004c-5.833-6-14.193-10.154-23.485-10.154\r\n\t\tc-11.811,0-22.115,6.154-27.635,16.154h-0.007c0,0-7.09,10.994-18.27,28.874l32.531,39.637c2.939,3.769,3.296,7.801,1.411,9.689\r\n\t\tl-0.114,0.071c-0.909,0.909-2.021,1.33-3.274,1.33c-1.908,0-4.142-0.99-6.485-2.768l-35.872-29.418\r\n\t\tc-23.546,37.655-56.677,90.634-83.45,133.451l19.072,23.337c2.939,3.77,3.296,7.884,1.41,9.772l-0.114,0.114\r\n\t\tc-0.911,0.913-2.028,1.342-3.287,1.342c-1.905,0-4.136-0.981-6.472-2.755l-21.067-16.533C84.734,389.051,70,412.464,68,414.366\r\n\t\tv0.003c-3,5.062-4.085,11.132-4.085,17.664c0,17.655,14.657,31.967,32.285,31.967c7.821,0,14.57-3.395,20.799-7.5l114.651-84.109\r\n\t\tl-28.838-35.358c-2.94-3.769-3.268-7.887-1.382-9.775l0.128-0.114c0.912-0.912,2.034-1.341,3.294-1.341\r\n\t\tc1.905,0,4.14,0.981,6.476,2.755l37.864,31.59C304.03,319.902,355.082,283,355.082,283h0.005c7.839-6,12.473-15.711,12.473-26.238\r\n\t\tc0-8.704-3.56-17.14-9.56-22.904V233.855z M345.531,269.834c-2.664,1.934-46.692,33.932-95.764,69.899l-28.272-23.483l-0.26-0.223\r\n\t\tl-0.274-0.211c-5.245-3.981-10.663-5.998-16.108-5.998c-5.465,0-10.592,2.097-14.458,5.909l-0.064,0.062l-0.083,0.082l-0.083,0.083\r\n\t\tc-7.808,7.821-7.761,20.823,0.111,30.917l0.11,0.143l0.113,0.138l18.223,22.312l-100.656,73.896\r\n\t\tc-5.066,3.304-8.427,4.657-11.542,4.657c-8.822,0-16-7.171-16-15.983c0-3.086,0.694-6.045,2.017-8.623\r\n\t\tc2.391-3.161,6.6-9.876,18.655-29.351c2.543-4.108,5.252-8.487,8.134-13.129l6.39,5.176l0.195,0.156l0.2,0.152\r\n\t\tc5.245,3.981,10.665,6,16.111,6c5.517,0,10.692-2.139,14.571-6.023l0.114-0.113c7.806-7.817,7.756-20.82-0.118-30.916l-0.113-0.144\r\n\t\tl-0.115-0.142l-11.814-14.455l43.693-69.872l24.059-38.474l21.855,17.922l0.231,0.19l0.24,0.181\r\n\t\tc5.254,3.988,10.678,6.01,16.123,6.01c4.954,0,9.631-1.725,13.339-4.89l0.461-0.337l0.871-0.874\r\n\t\tc7.79-7.803,7.74-20.778-0.118-30.854l-0.12-0.153l-0.124-0.15l-25.239-30.539c2.957-4.703,5.457-8.491,7.405-11.488l5.209-8.494\r\n\t\tc2.777-5.025,7.761-8.157,13.673-8.157c4.367,0,8.76,2.042,12.057,5.43l4.701,4.928h0.122L342,240.286v0.376l5.186,4.716\r\n\t\tc2.793,2.69,4.539,6.782,4.539,11.227C351.725,261.801,349.467,266.728,345.531,269.834z"},"children":[{"name":"path","attribs":{"d":"M358,233.855l0.413-0.039c-0.137-0.137-0.046-0.101-0.185-0.237L279.798,155h-0.004c-5.833-6-14.193-10.154-23.485-10.154\r\n\t\tc-11.811,0-22.115,6.154-27.635,16.154h-0.007c0,0-7.09,10.994-18.27,28.874l32.531,39.637c2.939,3.769,3.296,7.801,1.411,9.689\r\n\t\tl-0.114,0.071c-0.909,0.909-2.021,1.33-3.274,1.33c-1.908,0-4.142-0.99-6.485-2.768l-35.872-29.418\r\n\t\tc-23.546,37.655-56.677,90.634-83.45,133.451l19.072,23.337c2.939,3.77,3.296,7.884,1.41,9.772l-0.114,0.114\r\n\t\tc-0.911,0.913-2.028,1.342-3.287,1.342c-1.905,0-4.136-0.981-6.472-2.755l-21.067-16.533C84.734,389.051,70,412.464,68,414.366\r\n\t\tv0.003c-3,5.062-4.085,11.132-4.085,17.664c0,17.655,14.657,31.967,32.285,31.967c7.821,0,14.57-3.395,20.799-7.5l114.651-84.109\r\n\t\tl-28.838-35.358c-2.94-3.769-3.268-7.887-1.382-9.775l0.128-0.114c0.912-0.912,2.034-1.341,3.294-1.341\r\n\t\tc1.905,0,4.14,0.981,6.476,2.755l37.864,31.59C304.03,319.902,355.082,283,355.082,283h0.005c7.839-6,12.473-15.711,12.473-26.238\r\n\t\tc0-8.704-3.56-17.14-9.56-22.904V233.855z M345.531,269.834c-2.664,1.934-46.692,33.932-95.764,69.899l-28.272-23.483l-0.26-0.223\r\n\t\tl-0.274-0.211c-5.245-3.981-10.663-5.998-16.108-5.998c-5.465,0-10.592,2.097-14.458,5.909l-0.064,0.062l-0.083,0.082l-0.083,0.083\r\n\t\tc-7.808,7.821-7.761,20.823,0.111,30.917l0.11,0.143l0.113,0.138l18.223,22.312l-100.656,73.896\r\n\t\tc-5.066,3.304-8.427,4.657-11.542,4.657c-8.822,0-16-7.171-16-15.983c0-3.086,0.694-6.045,2.017-8.623\r\n\t\tc2.391-3.161,6.6-9.876,18.655-29.351c2.543-4.108,5.252-8.487,8.134-13.129l6.39,5.176l0.195,0.156l0.2,0.152\r\n\t\tc5.245,3.981,10.665,6,16.111,6c5.517,0,10.692-2.139,14.571-6.023l0.114-0.113c7.806-7.817,7.756-20.82-0.118-30.916l-0.113-0.144\r\n\t\tl-0.115-0.142l-11.814-14.455l43.693-69.872l24.059-38.474l21.855,17.922l0.231,0.19l0.24,0.181\r\n\t\tc5.254,3.988,10.678,6.01,16.123,6.01c4.954,0,9.631-1.725,13.339-4.89l0.461-0.337l0.871-0.874\r\n\t\tc7.79-7.803,7.74-20.778-0.118-30.854l-0.12-0.153l-0.124-0.15l-25.239-30.539c2.957-4.703,5.457-8.491,7.405-11.488l5.209-8.494\r\n\t\tc2.777-5.025,7.761-8.157,13.673-8.157c4.367,0,8.76,2.042,12.057,5.43l4.701,4.928h0.122L342,240.286v0.376l5.186,4.716\r\n\t\tc2.793,2.69,4.539,6.782,4.539,11.227C351.725,261.801,349.467,266.728,345.531,269.834z"},"children":[]}]},{"name":"polygon","attribs":{"points":"439.994,115.175 435.216,117.938 343.578,170.93 407.313,60.358 409.83,55.992 396.011,48 393.523,52.313 \r\n\t\t322.748,175.098 339.418,191.794 443.38,131.674 447.974,129.018 \t"},"children":[{"name":"polygon","attribs":{"points":"439.994,115.175 435.216,117.938 343.578,170.93 407.313,60.358 409.83,55.992 396.011,48 393.523,52.313 \r\n\t\t322.748,175.098 339.418,191.794 443.38,131.674 447.974,129.018 \t"},"children":[]}]}]}]};exports.iosNutritionOutline=iosNutritionOutline;var iosNutrition={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M359,233.62l-0.106-0.039c-0.136-0.138-0.306-0.443-0.444-0.579L279.551,154h-0.004c-5.848-6-14.23-10.168-23.547-10.168\r\n\t\tc-11.842,0-22.174,6.168-27.708,16.168h-0.007c0,0-7.109,11.351-18.318,29.249l32.617,39.85c2.947,3.772,3.305,7.895,1.414,9.785\r\n\t\tl-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-35.967-29.439c-23.608,37.693-56.827,90.731-83.671,133.592l19.123,23.362\r\n\t\tc2.947,3.772,3.305,7.895,1.414,9.785l-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-20.22-16.55\r\n\t\tC84.874,388.974,70.194,412.411,69,414.315v0.003c-3,5.066-5,11.144-5,17.682c0,17.674,14.244,32,31.918,32\r\n\t\tc7.842,0,14.383-3.398,20.628-7.508l114.842-84.195l-28.971-35.395c-2.947-3.772-3.305-7.895-1.414-9.785l0.114-0.114\r\n\t\tc2.296-2.296,5.894-1.534,9.785,1.415l37.963,31.215C303.85,319.348,355.035,282,355.035,282h0.005\r\n\t\tc7.859-6,13.024-15.319,13.024-25.857c0-8.713-3.064-16.75-9.064-22.521V233.62z"},"children":[{"name":"path","attribs":{"d":"M359,233.62l-0.106-0.039c-0.136-0.138-0.306-0.443-0.444-0.579L279.551,154h-0.004c-5.848-6-14.23-10.168-23.547-10.168\r\n\t\tc-11.842,0-22.174,6.168-27.708,16.168h-0.007c0,0-7.109,11.351-18.318,29.249l32.617,39.85c2.947,3.772,3.305,7.895,1.414,9.785\r\n\t\tl-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-35.967-29.439c-23.608,37.693-56.827,90.731-83.671,133.592l19.123,23.362\r\n\t\tc2.947,3.772,3.305,7.895,1.414,9.785l-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-20.22-16.55\r\n\t\tC84.874,388.974,70.194,412.411,69,414.315v0.003c-3,5.066-5,11.144-5,17.682c0,17.674,14.244,32,31.918,32\r\n\t\tc7.842,0,14.383-3.398,20.628-7.508l114.842-84.195l-28.971-35.395c-2.947-3.772-3.305-7.895-1.414-9.785l0.114-0.114\r\n\t\tc2.296-2.296,5.894-1.534,9.785,1.415l37.963,31.215C303.85,319.348,355.035,282,355.035,282h0.005\r\n\t\tc7.859-6,13.024-15.319,13.024-25.857c0-8.713-3.064-16.75-9.064-22.521V233.62z"},"children":[]}]},{"name":"polygon","attribs":{"points":"448,138.781 431.514,111.087 365.284,149.299 414.515,64.086 386.896,48 316.897,169.084 345.485,197.672 \t"},"children":[{"name":"polygon","attribs":{"points":"448,138.781 431.514,111.087 365.284,149.299 414.515,64.086 386.896,48 316.897,169.084 345.485,197.672 \t"},"children":[]}]}]}]};exports.iosNutrition=iosNutrition;var iosPaperOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M112,64v16v320h16V80h304v337.143c0,8.205-6.652,14.857-14.857,14.857H94.857C86.652,432,80,425.348,80,417.143V128h16v-16\r\n\t\tH64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112z"},"children":[{"name":"path","attribs":{"d":"M112,64v16v320h16V80h304v337.143c0,8.205-6.652,14.857-14.857,14.857H94.857C86.652,432,80,425.348,80,417.143V128h16v-16\r\n\t\tH64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112z"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"112","width":"128","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"112","width":"128","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"192","width":"240","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"192","width":"240","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"272","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"272","width":"192","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"352","width":"240","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"352","width":"240","height":"16"},"children":[]}]}]}]};exports.iosPaperOutline=iosPaperOutline;var iosPaper={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M112,64v16v32v288H96V112H64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112\r\n\tz M160,112h128v16H160V112z M160,272h192v16H160V272z M400,368H160v-16h240V368z M400,208H160v-16h240V208z"},"children":[]}]};exports.iosPaper=iosPaper;var iosPaperplaneOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M96,249.6l116.6,51.3L269.8,416L416,96L96,249.6z M228.1,296.5l155.7-166.2L269.2,379.2L228.1,296.5z M381.8,128.3\r\n\tL216.8,285.4L134,249L381.8,128.3z"},"children":[]}]};exports.iosPaperplaneOutline=iosPaperplaneOutline;var iosPaperplane={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"96,249.6 202,296.3 416,96 \t"},"children":[{"name":"polygon","attribs":{"points":"96,249.6 202,296.3 416,96 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"416,96 217.9,311.7 269.8,416 \t"},"children":[{"name":"polygon","attribs":{"points":"416,96 217.9,311.7 269.8,416 \t"},"children":[]}]}]}]};exports.iosPaperplane=iosPaperplane;var iosPartlysunnyOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"208","y":"96","class":"st0","width":"16","height":"54"},"children":[{"name":"rect","attribs":{"x":"208","y":"96","class":"st0","width":"16","height":"54"},"children":[]}]},{"name":"rect","attribs":{"x":"64","y":"240","class":"st0","width":"55","height":"16"},"children":[{"name":"rect","attribs":{"x":"64","y":"240","class":"st0","width":"55","height":"16"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M192.6,294.9c-20.2-8.1-34.6-27.9-34.6-51.1c0-30.3,24.5-55,54.7-55c15.6,0,29.7,6.6,39.6,17.2\r\n\t\t\t\tc4.8-3.5,9.5-6.2,13.6-8.2c-12.9-15.1-32-24.7-53.3-24.7c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\t\t\tC184.3,301.5,188.5,297.7,192.6,294.9z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M192.6,294.9c-20.2-8.1-34.6-27.9-34.6-51.1c0-30.3,24.5-55,54.7-55c15.6,0,29.7,6.6,39.6,17.2\r\n\t\t\t\tc4.8-3.5,9.5-6.2,13.6-8.2c-12.9-15.1-32-24.7-53.3-24.7c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\t\t\tC184.3,301.5,188.5,297.7,192.6,294.9z"},"children":[]}]}]}]}]}]},{"name":"path","attribs":{"class":"st0","d":"M299,239.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H225.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC236.5,268,264.5,239.8,299,239.8 M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC367.5,250.3,336.3,224,299,224L299,224z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M299,239.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H225.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC236.5,268,264.5,239.8,299,239.8 M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC367.5,250.3,336.3,224,299,224L299,224z"},"children":[]}]}]}]};exports.iosPartlysunnyOutline=iosPartlysunnyOutline;var iosPartlysunny={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"208","y":"96","class":"st0","width":"16","height":"54"},"children":[{"name":"rect","attribs":{"x":"208","y":"96","class":"st0","width":"16","height":"54"},"children":[]}]},{"name":"rect","attribs":{"x":"64","y":"240","class":"st0","width":"55","height":"16"},"children":[{"name":"rect","attribs":{"x":"64","y":"240","class":"st0","width":"55","height":"16"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"},"children":[]}]}]}]},{"name":"path","attribs":{"class":"st0","d":"M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\t\tC367.5,250.3,336.3,224,299,224L299,224z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\t\tC367.5,250.3,336.3,224,299,224L299,224z"},"children":[]}]}]}]},{"name":"path","attribs":{"class":"st0","d":"M264.7,196.3c-12.9-14.3-31.4-23.3-52-23.3c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\tc0,0,0-0.1,0-0.1c0,0,0.1,0.1,0.1,0.1c4.5-12.1,11.4-19.8,22.6-25.6c0.2-0.1,0.4-0.2,0.7-0.4c0.2-0.1,0.5-0.2,0.7-0.3\r\n\t\tc-0.2-2.3-0.3-4.7-0.3-7c-0.3-31.9,30.2-70.5,61-75.4c0.1-0.1,0.3-0.1,0.4-0.2C265.5,197.3,265.1,196.8,264.7,196.3z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M264.7,196.3c-12.9-14.3-31.4-23.3-52-23.3c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\tc0,0,0-0.1,0-0.1c0,0,0.1,0.1,0.1,0.1c4.5-12.1,11.4-19.8,22.6-25.6c0.2-0.1,0.4-0.2,0.7-0.4c0.2-0.1,0.5-0.2,0.7-0.3\r\n\t\tc-0.2-2.3-0.3-4.7-0.3-7c-0.3-31.9,30.2-70.5,61-75.4c0.1-0.1,0.3-0.1,0.4-0.2C265.5,197.3,265.1,196.8,264.7,196.3z"},"children":[]}]}]}]};exports.iosPartlysunny=iosPartlysunny;var iosPauseOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M191,112v288h-47V112H191 M207,96h-79v320h79V96L207,96z"},"children":[{"name":"path","attribs":{"d":"M191,112v288h-47V112H191 M207,96h-79v320h79V96L207,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,112v288h-47V112H368 M384,96h-79v320h79V96L384,96z"},"children":[{"name":"path","attribs":{"d":"M368,112v288h-47V112H368 M384,96h-79v320h79V96L384,96z"},"children":[]}]}]}]};exports.iosPauseOutline=iosPauseOutline;var iosPause={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"96","width":"79","height":"320"},"children":[{"name":"rect","attribs":{"x":"128","y":"96","width":"79","height":"320"},"children":[]}]},{"name":"rect","attribs":{"x":"305","y":"96","width":"79","height":"320"},"children":[{"name":"rect","attribs":{"x":"305","y":"96","width":"79","height":"320"},"children":[]}]}]}]};exports.iosPause=iosPause;var iosPawOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z M426.214,246.295\r\n\t\tc-7.836,18.898-22.994,32.098-36.862,32.098c-2.809,0-5.488-0.569-7.968-1.694c-14.121-6.394-17.862-31.059-8.518-56.152\r\n\t\tc7.775-20.817,22.448-35.355,35.683-35.355c2.51,0,4.979,0.533,7.34,1.588c6.88,3.067,10.622,9.712,12.551,14.745\r\n\t\tC433.35,214.332,432.518,231.068,426.214,246.295z"},"children":[{"name":"path","attribs":{"d":"M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z M426.214,246.295\r\n\t\tc-7.836,18.898-22.994,32.098-36.862,32.098c-2.809,0-5.488-0.569-7.968-1.694c-14.121-6.394-17.862-31.059-8.518-56.152\r\n\t\tc7.775-20.817,22.448-35.355,35.683-35.355c2.51,0,4.979,0.533,7.34,1.588c6.88,3.067,10.622,9.712,12.551,14.745\r\n\t\tC433.35,214.332,432.518,231.068,426.214,246.295z"},"children":[]}]},{"name":"path","attribs":{"d":"M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z M130.616,276.698\r\n\t\tc-2.479,1.125-5.16,1.694-7.968,1.694c-13.868,0-29.026-13.199-36.862-32.098c-6.304-15.227-7.136-31.963-2.226-44.771\r\n\t\tc1.929-5.033,5.671-11.678,12.551-14.745c2.361-1.055,4.83-1.588,7.34-1.588c13.234,0,27.907,14.538,35.683,35.355\r\n\t\tC148.479,245.64,144.737,270.305,130.616,276.698z"},"children":[{"name":"path","attribs":{"d":"M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z M130.616,276.698\r\n\t\tc-2.479,1.125-5.16,1.694-7.968,1.694c-13.868,0-29.026-13.199-36.862-32.098c-6.304-15.227-7.136-31.963-2.226-44.771\r\n\t\tc1.929-5.033,5.671-11.678,12.551-14.745c2.361-1.055,4.83-1.588,7.34-1.588c13.234,0,27.907,14.538,35.683,35.355\r\n\t\tC148.479,245.64,144.737,270.305,130.616,276.698z"},"children":[]}]},{"name":"path","attribs":{"d":"M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z M171.047,91.831c3.923-4.739,10.51-10.577,19.62-11.476\r\n\t\tc1.143-0.113,2.288-0.146,3.404-0.098c18.207,0.792,31.859,23.271,34.936,52.428c2.146,20.15-0.148,40.055-9.845,51.779\r\n\t\tc-4.874,5.898-10.556,9.204-16.881,9.825c-1.081,0.104-2.167,0.133-3.229,0.087c-19.257-0.838-37.414-25.091-40.473-54.067\r\n\t\tC156.611,121.779,161.273,103.656,171.047,91.831z"},"children":[{"name":"path","attribs":{"d":"M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z M171.047,91.831c3.923-4.739,10.51-10.577,19.62-11.476\r\n\t\tc1.143-0.113,2.288-0.146,3.404-0.098c18.207,0.792,31.859,23.271,34.936,52.428c2.146,20.15-0.148,40.055-9.845,51.779\r\n\t\tc-4.874,5.898-10.556,9.204-16.881,9.825c-1.081,0.104-2.167,0.133-3.229,0.087c-19.257-0.838-37.414-25.091-40.473-54.067\r\n\t\tC156.611,121.779,161.273,103.656,171.047,91.831z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z M353.963,420.776c-10.964,7.337-17.366,9.778-33.666,9.778c-14.225,0-18.624-3.201-25.911-8.51\r\n\t\tc-1.848-1.344-3.759-2.736-5.946-4.177c-8.619-5.682-18.39-12.123-32.439-12.123s-23.82,6.441-32.438,12.121\r\n\t\tc-2.189,1.442-4.1,2.835-5.947,4.179c-7.287,5.309-11.686,8.51-25.911,8.51c-16.3,0-22.703-2.441-33.667-9.778\r\n\t\tC152.395,417,144,405.456,144,389.128c0-30.277,13.377-64.231,35.783-90.823c10.886-12.921,23.517-23.6,36.526-30.885\r\n\t\tC229.713,259.917,243.067,256,256,256c12.934,0,26.287,3.917,39.691,11.42c13.01,7.285,25.64,17.964,36.525,30.885\r\n\t\tC354.623,324.896,368,358.851,368,389.128C368,405.456,359.605,417,353.963,420.776z"},"children":[{"name":"path","attribs":{"d":"M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z M353.963,420.776c-10.964,7.337-17.366,9.778-33.666,9.778c-14.225,0-18.624-3.201-25.911-8.51\r\n\t\tc-1.848-1.344-3.759-2.736-5.946-4.177c-8.619-5.682-18.39-12.123-32.439-12.123s-23.82,6.441-32.438,12.121\r\n\t\tc-2.189,1.442-4.1,2.835-5.947,4.179c-7.287,5.309-11.686,8.51-25.911,8.51c-16.3,0-22.703-2.441-33.667-9.778\r\n\t\tC152.395,417,144,405.456,144,389.128c0-30.277,13.377-64.231,35.783-90.823c10.886-12.921,23.517-23.6,36.526-30.885\r\n\t\tC229.713,259.917,243.067,256,256,256c12.934,0,26.287,3.917,39.691,11.42c13.01,7.285,25.64,17.964,36.525,30.885\r\n\t\tC354.623,324.896,368,358.851,368,389.128C368,405.456,359.605,417,353.963,420.776z"},"children":[]}]},{"name":"path","attribs":{"d":"M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z M283.186,132.501c3.076-29.156,16.729-51.636,34.936-52.428\r\n\t\tc1.115-0.048,2.261-0.016,3.404,0.098c9.109,0.898,15.696,6.736,19.619,11.476c9.774,11.825,14.436,29.948,12.468,48.479\r\n\t\tc-3.06,28.977-21.216,53.229-40.474,54.067c-1.061,0.046-2.146,0.017-3.229-0.087c-6.324-0.621-12.007-3.927-16.881-9.825\r\n\t\tC283.334,172.556,281.039,152.651,283.186,132.501z"},"children":[{"name":"path","attribs":{"d":"M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z M283.186,132.501c3.076-29.156,16.729-51.636,34.936-52.428\r\n\t\tc1.115-0.048,2.261-0.016,3.404,0.098c9.109,0.898,15.696,6.736,19.619,11.476c9.774,11.825,14.436,29.948,12.468,48.479\r\n\t\tc-3.06,28.977-21.216,53.229-40.474,54.067c-1.061,0.046-2.146,0.017-3.229-0.087c-6.324-0.621-12.007-3.927-16.881-9.825\r\n\t\tC283.334,172.556,281.039,152.651,283.186,132.501z"},"children":[]}]}]}]};exports.iosPawOutline=iosPawOutline;var iosPaw={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z"},"children":[{"name":"path","attribs":{"d":"M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z"},"children":[{"name":"path","attribs":{"d":"M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z"},"children":[]}]},{"name":"path","attribs":{"d":"M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z"},"children":[{"name":"path","attribs":{"d":"M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z"},"children":[{"name":"path","attribs":{"d":"M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z"},"children":[]}]},{"name":"path","attribs":{"d":"M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z"},"children":[{"name":"path","attribs":{"d":"M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z"},"children":[]}]}]}]};exports.iosPaw=iosPaw;var iosPeopleOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,112L256,112L256,112z"},"children":[{"name":"path","attribs":{"d":"M256,112L256,112L256,112z"},"children":[]}]},{"name":"path","attribs":{"d":"M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\t\tC395,370.5,377.2,344.5,349.2,334.8C338,330.9,360.5,338.7,349.2,334.8z M147.1,363.6c5.6-5.9,12.7-11.1,20.4-14\r\n\t\t\tc10.5-4,22.4-3.8,33.3-6.6c9-2.3,20.2-5.9,27.2-12.4c6.4-6,7.1-15.2,7.7-23.5c0.5-7,0.4-13.9,0.4-20.9c0-4.9-5.7-7.7-8.5-11.6\r\n\t\t\tc-4.5-6.1-4.7-15.2-5.6-22.5c-0.4-3.2-0.5-7.3-3.2-9.5c-3-2.4-5.2-3.7-6.7-7.5c-2-5.2-2.7-10.8-4.3-16.2c-1-3.5,2.5-6.8,3.9-9.7\r\n\t\t\tc2.6-5.3-1.9-13.5-2.8-19c-2.8-16.4-2.7-34.3,9.1-47.3c23.7-26.2,78-17.9,85.8,18.9c2.4,11.5,0.9,24.9-2.3,36.1\r\n\t\t\tc-1.4,4.8-3,8.3-0.2,13c4.2,6.8,2.4,11.2,0.4,18.8c-1.6,6.3-3.6,9.1-8.4,13c-4,3.2-3.4,11.2-4.1,15.8c-0.8,5.6-1.3,11.5-4.7,16.2\r\n\t\t\tc-1.3,1.8-8.4,7.4-8.4,9.3c0,11-0.5,22.2,1.4,33.1c2.6,15.5,15.6,19.2,28.6,24.5c13.2,5.1,28.5,3.2,41.3,9.5\r\n\t\t\tc13.2,6.5,25.9,18.4,29.7,33.1c-79.3,0-158.6,0-237.9,0c-1.4,0-2.8,0-4.2,0C136.9,375.9,141.5,369.6,147.1,363.6\r\n\t\t\tC156.3,353.9,141.2,369.9,147.1,363.6z"},"children":[{"name":"path","attribs":{"d":"M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\t\tC395,370.5,377.2,344.5,349.2,334.8C338,330.9,360.5,338.7,349.2,334.8z M147.1,363.6c5.6-5.9,12.7-11.1,20.4-14\r\n\t\t\tc10.5-4,22.4-3.8,33.3-6.6c9-2.3,20.2-5.9,27.2-12.4c6.4-6,7.1-15.2,7.7-23.5c0.5-7,0.4-13.9,0.4-20.9c0-4.9-5.7-7.7-8.5-11.6\r\n\t\t\tc-4.5-6.1-4.7-15.2-5.6-22.5c-0.4-3.2-0.5-7.3-3.2-9.5c-3-2.4-5.2-3.7-6.7-7.5c-2-5.2-2.7-10.8-4.3-16.2c-1-3.5,2.5-6.8,3.9-9.7\r\n\t\t\tc2.6-5.3-1.9-13.5-2.8-19c-2.8-16.4-2.7-34.3,9.1-47.3c23.7-26.2,78-17.9,85.8,18.9c2.4,11.5,0.9,24.9-2.3,36.1\r\n\t\t\tc-1.4,4.8-3,8.3-0.2,13c4.2,6.8,2.4,11.2,0.4,18.8c-1.6,6.3-3.6,9.1-8.4,13c-4,3.2-3.4,11.2-4.1,15.8c-0.8,5.6-1.3,11.5-4.7,16.2\r\n\t\t\tc-1.3,1.8-8.4,7.4-8.4,9.3c0,11-0.5,22.2,1.4,33.1c2.6,15.5,15.6,19.2,28.6,24.5c13.2,5.1,28.5,3.2,41.3,9.5\r\n\t\t\tc13.2,6.5,25.9,18.4,29.7,33.1c-79.3,0-158.6,0-237.9,0c-1.4,0-2.8,0-4.2,0C136.9,375.9,141.5,369.6,147.1,363.6\r\n\t\t\tC156.3,353.9,141.2,369.9,147.1,363.6z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M144.1,322c7-3.5,14.6-4.3,22.3-5.1c2.8-0.3,4.1-2.2,2-4.9c-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7\r\n\t\tc-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4c2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6\r\n\t\tc-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3c-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1\r\n\t\tc-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28c-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6\r\n\t\tc8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8c-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332.5,32,352c18.3,0,36.5,0,54.8,0\r\n\t\tc8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8C126.2,333.4,134.8,326.7,144.1,322C153.1,317.5,129.5,329.4,144.1,322z M102.8,336\r\n\t\tc-16.3,0-32.6,0-48.9,0c7.1-11.8,24.9-11,36.6-15.2c10.8-3.9,17.7-10.5,18.8-22c0.1-1.3,0.2-29.2-0.9-29.2\r\n\t\tc-8.7-0.3-17.8-0.1-26.5-1.4c6.9-22.3,0.3-45.3,4-67.8c2.7-16.3,13.1-25.3,29.7-25.3c15.9,0,27.7,7.4,31.1,23.4\r\n\t\tc4.8,23.2-2,46.9,5.4,69.9c-5.5,1.4-11.3,1.6-17,1.8c-2.8,0.1-5.7,0.2-8.5,0.3c-1.8,0.1-1.2,3.2-1.3,4.7c-1,10.9-5,28.1,3.7,36.9\r\n\t\tC119.4,318.1,109,326.4,102.8,336z"},"children":[{"name":"path","attribs":{"d":"M144.1,322c7-3.5,14.6-4.3,22.3-5.1c2.8-0.3,4.1-2.2,2-4.9c-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7\r\n\t\tc-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4c2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6\r\n\t\tc-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3c-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1\r\n\t\tc-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28c-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6\r\n\t\tc8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8c-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332.5,32,352c18.3,0,36.5,0,54.8,0\r\n\t\tc8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8C126.2,333.4,134.8,326.7,144.1,322C153.1,317.5,129.5,329.4,144.1,322z M102.8,336\r\n\t\tc-16.3,0-32.6,0-48.9,0c7.1-11.8,24.9-11,36.6-15.2c10.8-3.9,17.7-10.5,18.8-22c0.1-1.3,0.2-29.2-0.9-29.2\r\n\t\tc-8.7-0.3-17.8-0.1-26.5-1.4c6.9-22.3,0.3-45.3,4-67.8c2.7-16.3,13.1-25.3,29.7-25.3c15.9,0,27.7,7.4,31.1,23.4\r\n\t\tc4.8,23.2-2,46.9,5.4,69.9c-5.5,1.4-11.3,1.6-17,1.8c-2.8,0.1-5.7,0.2-8.5,0.3c-1.8,0.1-1.2,3.2-1.3,4.7c-1,10.9-5,28.1,3.7,36.9\r\n\t\tC119.4,318.1,109,326.4,102.8,336z"},"children":[]}]},{"name":"path","attribs":{"d":"M399.8,352c26.7,0,53.5,0,80.2,0c0-19.5-13.1-34.3-30.7-40.1c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6\r\n\t\tc4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8c1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6\r\n\t\tc-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8c-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5\r\n\t\tc3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9c-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7\r\n\t\tc-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1C389.6,337.4,397.6,344.2,399.8,352z M399.4,324.9c-5.1-4.7-10.4-9.3-16.3-13\r\n\t\tc8.8-8.8,4.7-25.9,3.7-36.9c-0.6-6.3-2-4.7-8.3-4.9c-6-0.2-12.8,0.1-18.5-1.8c7.2-22.3,1.3-45.2,5-67.9\r\n\t\tc2.8-17.1,14.5-25.5,31.5-25.5c15.4,0,26,7.7,29.2,23c4.9,23.1-2.6,47,4.5,70c-8.5,1.3-17.3,1-25.9,1.3c-2.1,0.1-1.9,25.1-1.7,27.3\r\n\t\tc0.7,11.7,6.1,18.8,17.2,23.3c12.1,4.9,31,3.6,38.4,15.9c-9.3,0-18.5,0-27.8,0c-5.6,0-11.2,0-16.9,0\r\n\t\tC406.4,335.8,404.6,329.6,399.4,324.9C394.4,320.3,403.4,328.5,399.4,324.9z"},"children":[{"name":"path","attribs":{"d":"M399.8,352c26.7,0,53.5,0,80.2,0c0-19.5-13.1-34.3-30.7-40.1c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6\r\n\t\tc4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8c1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6\r\n\t\tc-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8c-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5\r\n\t\tc3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9c-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7\r\n\t\tc-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1C389.6,337.4,397.6,344.2,399.8,352z M399.4,324.9c-5.1-4.7-10.4-9.3-16.3-13\r\n\t\tc8.8-8.8,4.7-25.9,3.7-36.9c-0.6-6.3-2-4.7-8.3-4.9c-6-0.2-12.8,0.1-18.5-1.8c7.2-22.3,1.3-45.2,5-67.9\r\n\t\tc2.8-17.1,14.5-25.5,31.5-25.5c15.4,0,26,7.7,29.2,23c4.9,23.1-2.6,47,4.5,70c-8.5,1.3-17.3,1-25.9,1.3c-2.1,0.1-1.9,25.1-1.7,27.3\r\n\t\tc0.7,11.7,6.1,18.8,17.2,23.3c12.1,4.9,31,3.6,38.4,15.9c-9.3,0-18.5,0-27.8,0c-5.6,0-11.2,0-16.9,0\r\n\t\tC406.4,335.8,404.6,329.6,399.4,324.9C394.4,320.3,403.4,328.5,399.4,324.9z"},"children":[]}]}]}]};exports.iosPeopleOutline=iosPeopleOutline;var iosPeople={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M349.2,334.8C360.5,338.7,338,330.9,349.2,334.8L349.2,334.8z"},"children":[{"name":"path","attribs":{"d":"M349.2,334.8C360.5,338.7,338,330.9,349.2,334.8L349.2,334.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\tC395,370.5,377.2,344.5,349.2,334.8z"},"children":[{"name":"path","attribs":{"d":"M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\tC395,370.5,377.2,344.5,349.2,334.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M143.3,322.5c0.6-0.3,1.2-0.6,1.6-0.8c-0.3,0.1-0.6,0.3-0.8,0.4C143.8,322.2,143.6,322.3,143.3,322.5z"},"children":[{"name":"path","attribs":{"d":"M143.3,322.5c0.6-0.3,1.2-0.6,1.6-0.8c-0.3,0.1-0.6,0.3-0.8,0.4C143.8,322.2,143.6,322.3,143.3,322.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M143.3,322.5c-3.4,1.7-7.5,3.8,0.8-0.4c3-1.5,2.4-1.2,0.8-0.4c6.8-3.2,14.1-4,21.4-4.7c2.8-0.3,4.1-2.2,2-4.9\r\n\t\tc-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7c-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4\r\n\t\tc2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6c-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3\r\n\t\tc-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1c-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28\r\n\t\tc-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6c8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8\r\n\t\tc-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332,32,352c18.3,0,36.5,0,54.8,0c8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8\r\n\t\tC126,333.7,134.3,327.2,143.3,322.5z"},"children":[{"name":"path","attribs":{"d":"M143.3,322.5c-3.4,1.7-7.5,3.8,0.8-0.4c3-1.5,2.4-1.2,0.8-0.4c6.8-3.2,14.1-4,21.4-4.7c2.8-0.3,4.1-2.2,2-4.9\r\n\t\tc-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7c-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4\r\n\t\tc2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6c-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3\r\n\t\tc-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1c-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28\r\n\t\tc-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6c8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8\r\n\t\tc-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332,32,352c18.3,0,36.5,0,54.8,0c8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8\r\n\t\tC126,333.7,134.3,327.2,143.3,322.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M449.3,311.9c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6c4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8\r\n\t\tc1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6c-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8\r\n\t\tc-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5c3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9\r\n\t\tc-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7c-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1\r\n\t\tc6,4.9,14.1,11.5,16.3,19.5c26.7,0,53.5,0,80.2,0C480,332,466.9,317.7,449.3,311.9z"},"children":[{"name":"path","attribs":{"d":"M449.3,311.9c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6c4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8\r\n\t\tc1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6c-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8\r\n\t\tc-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5c3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9\r\n\t\tc-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7c-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1\r\n\t\tc6,4.9,14.1,11.5,16.3,19.5c26.7,0,53.5,0,80.2,0C480,332,466.9,317.7,449.3,311.9z"},"children":[]}]}]}]};exports.iosPeople=iosPeople;var iosPersonOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M202.4,201.7L202.4,201.7L202.4,201.7z"},"children":[{"name":"path","attribs":{"d":"M202.4,201.7L202.4,201.7L202.4,201.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z M256,400H118.7\r\n\t\tc2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8c3.4-0.8,20.8-5,28.8-14.6\r\n\t\tc4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3c-1.8-4.7-4.6-19.2-6-28.1\r\n\t\tc0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2c0.6-3.1,0-5.7,0-5.8l0,0\r\n\t\tc-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5c19,0,34,5.7,44.6,16.5\r\n\t\tc9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7l0,0c0,0.1-0.6,1.7-0.4,5.2c0.2,5.4,6.8,5.5,4.3,16.8\r\n\t\tc-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8c-0.9,4.7-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1c-2.3,5.8-6.6,13-8,15.3\r\n\t\tl-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6c4.8,1.1,10.2,1.9,15.9,2.8\r\n\t\tc8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6L256,400L256,400z"},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z M256,400H118.7\r\n\t\tc2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8c3.4-0.8,20.8-5,28.8-14.6\r\n\t\tc4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3c-1.8-4.7-4.6-19.2-6-28.1\r\n\t\tc0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2c0.6-3.1,0-5.7,0-5.8l0,0\r\n\t\tc-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5c19,0,34,5.7,44.6,16.5\r\n\t\tc9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7l0,0c0,0.1-0.6,1.7-0.4,5.2c0.2,5.4,6.8,5.5,4.3,16.8\r\n\t\tc-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8c-0.9,4.7-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1c-2.3,5.8-6.6,13-8,15.3\r\n\t\tl-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6c4.8,1.1,10.2,1.9,15.9,2.8\r\n\t\tc8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6L256,400L256,400z"},"children":[]}]}]}]};exports.iosPersonOutline=iosPersonOutline;var iosPerson={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"},"children":[]}]}]}]};exports.iosPerson=iosPerson;var iosPersonaddOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"},"children":[{"name":"polygon","attribs":{"points":"416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M202.4,201.7C202.4,201.7,202.4,201.7,202.4,201.7L202.4,201.7z"},"children":[{"name":"path","attribs":{"d":"M202.4,201.7C202.4,201.7,202.4,201.7,202.4,201.7L202.4,201.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z\r\n\t\t\t M256,400H118.7c2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8\r\n\t\t\tc3.4-0.8,20.8-5,28.8-14.6c4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3\r\n\t\t\tc-1.8-4.7-4.6-19.2-6-28.1c0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2\r\n\t\t\tc0.6-3.1,0-5.7,0-5.8c0,0,0,0,0,0c-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5\r\n\t\t\tc19,0,34,5.7,44.6,16.5c9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7c0,0,0,0,0,0c0,0.1-0.6,1.7-0.4,5.2\r\n\t\t\tc0.2,5.4,6.8,5.5,4.3,16.8c-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8s-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1\r\n\t\t\tc-2.3,5.8-6.6,13-8,15.3l-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6\r\n\t\t\tc4.8,1.1,10.2,1.9,15.9,2.8c8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6H256z"},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z\r\n\t\t\t M256,400H118.7c2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8\r\n\t\t\tc3.4-0.8,20.8-5,28.8-14.6c4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3\r\n\t\t\tc-1.8-4.7-4.6-19.2-6-28.1c0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2\r\n\t\t\tc0.6-3.1,0-5.7,0-5.8c0,0,0,0,0,0c-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5\r\n\t\t\tc19,0,34,5.7,44.6,16.5c9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7c0,0,0,0,0,0c0,0.1-0.6,1.7-0.4,5.2\r\n\t\t\tc0.2,5.4,6.8,5.5,4.3,16.8c-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8s-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1\r\n\t\t\tc-2.3,5.8-6.6,13-8,15.3l-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6\r\n\t\t\tc4.8,1.1,10.2,1.9,15.9,2.8c8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6H256z"},"children":[]}]}]}]}]}]};exports.iosPersonaddOutline=iosPersonaddOutline;var iosPersonadd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"},"children":[{"name":"polygon","attribs":{"points":"416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"},"children":[{"name":"path","attribs":{"d":"M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"},"children":[]}]}]}]}]}]};exports.iosPersonadd=iosPersonadd;var iosPhotosOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M96,128v320h384V128H96z M464,432H112V144h352V432z"},"children":[{"name":"path","attribs":{"d":"M96,128v320h384V128H96z M464,432H112V144h352V432z"},"children":[]}]},{"name":"polygon","attribs":{"points":"32,64 32,384 80,384 80,368 48,368 48,80 400,80 400,112 416,112 416,64 \t"},"children":[{"name":"polygon","attribs":{"points":"32,64 32,384 80,384 80,368 48,368 48,80 400,80 400,112 416,112 416,64 \t"},"children":[]}]}]}]};exports.iosPhotosOutline=iosPhotosOutline;var iosPhotos={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M96,128v320h384V128H96z"},"children":[{"name":"path","attribs":{"d":"M96,128v320h384V128H96z"},"children":[]}]},{"name":"polygon","attribs":{"points":"416,64 32,64 32,384 80,384 80,112 416,112 \t"},"children":[{"name":"polygon","attribs":{"points":"416,64 32,64 32,384 80,384 80,112 416,112 \t"},"children":[]}]}]}]};exports.iosPhotos=iosPhotos;var iosPieOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,80.826c45.293,3.705,87.354,23.024,119.809,55.494C444.044,172.57,464,220.744,464,272.043\r\n\t\tc0,25.924-5.08,51.042-15.099,74.703c-9.68,22.859-23.54,43.384-41.194,61.024c-17.654,17.639-38.204,31.481-61.08,41.151\r\n\t\tc-23.673,10.01-48.823,15.081-74.752,15.081c-41.193,0-80.47-12.847-113.584-37.146c-15.95-11.705-29.957-25.733-41.633-41.692\r\n\t\tc-8.378-11.453-15.422-23.724-21.041-36.634l180.259-45.008L288,300.496V288V81 M272,64v224L74.245,337.376\r\n\t\tC101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64z"},"children":[{"name":"path","attribs":{"d":"M288,80.826c45.293,3.705,87.354,23.024,119.809,55.494C444.044,172.57,464,220.744,464,272.043\r\n\t\tc0,25.924-5.08,51.042-15.099,74.703c-9.68,22.859-23.54,43.384-41.194,61.024c-17.654,17.639-38.204,31.481-61.08,41.151\r\n\t\tc-23.673,10.01-48.823,15.081-74.752,15.081c-41.193,0-80.47-12.847-113.584-37.146c-15.95-11.705-29.957-25.733-41.633-41.692\r\n\t\tc-8.378-11.453-15.422-23.724-21.041-36.634l180.259-45.008L288,300.496V288V81 M272,64v224L74.245,337.376\r\n\t\tC101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M240,48.181v214.943L59.658,308.854c-9.117-23.568-11.197-56.973-11.158-69.496v-0.036v-0.035\r\n\t\tc0-47.311,16.465-93.746,45.173-127.398c16.735-19.618,37.502-34.981,61.721-45.663C180.099,55.331,208.519,49.274,240,48.181\r\n\t\t M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"},"children":[{"name":"path","attribs":{"d":"M240,48.181v214.943L59.658,308.854c-9.117-23.568-11.197-56.973-11.158-69.496v-0.036v-0.035\r\n\t\tc0-47.311,16.465-93.746,45.173-127.398c16.735-19.618,37.502-34.981,61.721-45.663C180.099,55.331,208.519,49.274,240,48.181\r\n\t\t M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"},"children":[]}]}]}]};exports.iosPieOutline=iosPieOutline;var iosPie={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M272,64v224L74.245,337.376C101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M272,64v224L74.245,337.376C101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64\r\n\t\tz"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"},"children":[{"name":"path","attribs":{"d":"M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"},"children":[]}]}]}]};exports.iosPie=iosPie;var iosPintOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M368,170.085c0-21.022-0.973-88.554-19.308-125.013C344.244,36.228,336.25,32,316.999,32H195.001\r\n\tc-19.25,0-27.246,4.197-31.693,13.041C144.973,81.5,144,149.25,144,170.272c0,98,32,100.353,32,180.853c0,39.5-16,71.402-16,99.402\r\n\tc0,27,9,29.473,32,29.473h128c23,0,32-2.535,32-29.535c0-28-16-59.715-16-99.215C336,270.75,368,268.085,368,170.085z\r\n\t M177.602,51.983c0.778-1.546,1.339-1.763,2.53-2.295c1.977-0.884,6.161-1.688,14.869-1.688h121.998\r\n\tc8.708,0,12.893,0.803,14.869,1.687c1.19,0.532,1.752,0.872,2.53,2.418c8.029,15.967,13.601,42.611,16.105,75.896H161.496\r\n\tC164.001,94.653,169.572,67.951,177.602,51.983z M334.631,462.636C332.76,463.377,327.844,464,320,464H192\r\n\tc-7.844,0-12.761-0.623-14.639-1.359c-0.394-0.93-1.361-4.166-1.361-12.27c0-10.856,3.016-23.16,6.508-37.334\r\n\tc4.449-18.059,9.492-38.557,9.492-61.943c0-40.997-7.993-63.802-15.724-85.842C168.274,242.438,160,218.838,160,170.155\r\n\tc0-9.025,0.191-17.756,0.558-26.155h190.886c0.365,8.376,0.557,17.083,0.557,26.085c0,48.688-8.276,72.302-16.28,95.169\r\n\tc-7.728,22.079-15.72,44.895-15.72,85.887c0,23.39,5.043,43.822,9.493,61.856c3.491,14.15,6.507,26.368,6.507,37.222\r\n\tC336,458.355,335.024,461.713,334.631,462.636z"},"children":[]}]};exports.iosPintOutline=iosPintOutline;var iosPint={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M368,170.085c0-21.022-0.973-88.554-19.308-125.013C344.244,36.228,336.25,32,316.999,32H195.001\r\n\tc-19.25,0-27.246,4.197-31.693,13.041C144.973,81.5,144,149.25,144,170.272c0,98,32,100.353,32,180.853c0,39.5-16,71.402-16,99.402\r\n\tc0,27,9,29.473,32,29.473h128c23,0,32-2.535,32-29.535c0-28-16-59.715-16-99.215C336,270.75,368,268.085,368,170.085z\r\n\t M177.602,51.983c0.778-1.546,1.339-1.763,2.53-2.295c1.977-0.884,6.161-1.688,14.869-1.688h121.998\r\n\tc8.708,0,12.893,0.803,14.869,1.687c1.19,0.532,1.752,0.872,2.53,2.418c8.029,15.967,13.601,42.611,16.105,75.896H161.496\r\n\tC164.001,94.653,169.572,67.951,177.602,51.983z"},"children":[]}]};exports.iosPint=iosPint;var iosPlayOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,124.9L353.8,256L144,387.1V124.9 M128,96v320l256-160L128,96L128,96z"},"children":[{"name":"path","attribs":{"d":"M144,124.9L353.8,256L144,387.1V124.9 M128,96v320l256-160L128,96L128,96z"},"children":[]}]}]}]};exports.iosPlayOutline=iosPlayOutline;var iosPlay={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,96v320l256-160L128,96L128,96z"},"children":[{"name":"path","attribs":{"d":"M128,96v320l256-160L128,96L128,96z"},"children":[]}]}]}]};exports.iosPlay=iosPlay;var iosPlusEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M384,265H264v119h-17V265H128v-17h119V128h17v120h120V265z"},"children":[{"name":"path","attribs":{"d":"M384,265H264v119h-17V265H128v-17h119V128h17v120h120V265z"},"children":[]}]}]}]};exports.iosPlusEmpty=iosPlusEmpty;var iosPlusOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7S150.9,65.3,256,65.3S446.7,150.9,446.7,256S361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7S150.9,65.3,256,65.3S446.7,150.9,446.7,256S361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"264.1,128 247.3,128 247.3,247.9 128,247.9 128,264.7 247.3,264.7 247.3,384 264.1,384 264.1,264.7 384,264.7 \r\n\t\t\t384,247.9 264.1,247.9 \t\t"},"children":[{"name":"polygon","attribs":{"points":"264.1,128 247.3,128 247.3,247.9 128,247.9 128,264.7 247.3,264.7 247.3,384 264.1,384 264.1,264.7 384,264.7 \r\n\t\t\t384,247.9 264.1,247.9 \t\t"},"children":[]}]}]}]}]}]};exports.iosPlusOutline=iosPlusOutline;var iosPlus={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H264v119h-17V265\r\n\t\tH128v-17h119V128h17v120h120V265z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H264v119h-17V265\r\n\t\tH128v-17h119V128h17v120h120V265z"},"children":[]}]}]}]};exports.iosPlus=iosPlus;var iosPricetagOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M464,32H304L48,320l160,160l256-288V32z M448,184L208.125,456L72.062,320L311.587,48H448V184z"},"children":[{"name":"path","attribs":{"d":"M464,32H304L48,320l160,160l256-288V32z M448,184L208.125,456L72.062,320L311.587,48H448V184z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S350.355,160,368,160z M368,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S359.164,112,368,112z"},"children":[{"name":"path","attribs":{"d":"M368,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S350.355,160,368,160z M368,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S359.164,112,368,112z"},"children":[]}]}]}]};exports.iosPricetagOutline=iosPricetagOutline;var iosPricetag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"368","cy":"128","r":"16"},"children":[{"name":"circle","attribs":{"cx":"368","cy":"128","r":"16"},"children":[]}]},{"name":"path","attribs":{"d":"M304,32L48,320l160,160l256-288V32H304z M368,160c-17.645,0-32-14.355-32-32s14.355-32,32-32s32,14.355,32,32\r\n\t\tS385.645,160,368,160z"},"children":[{"name":"path","attribs":{"d":"M304,32L48,320l160,160l256-288V32H304z M368,160c-17.645,0-32-14.355-32-32s14.355-32,32-32s32,14.355,32,32\r\n\t\tS385.645,160,368,160z"},"children":[]}]}]}]};exports.iosPricetag=iosPricetag;var iosPricetagsOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,64V32H288L32,320l160,160l23.471-23.904L240,480l240-272V64H448z M192,457.371L54.39,320L294.621,48H432v16v16\r\n\t\tv105.377l-216.555,247.99l-11.34,11.363L192,457.371z M464,201.377L240,457.371l-13.182-12.65L448,192V80h16V201.377z"},"children":[{"name":"path","attribs":{"d":"M448,64V32H288L32,320l160,160l23.471-23.904L240,480l240-272V64H448z M192,457.371L54.39,320L294.621,48H432v16v16\r\n\t\tv105.377l-216.555,247.99l-11.34,11.363L192,457.371z M464,201.377L240,457.371l-13.182-12.65L448,192V80h16V201.377z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S334.355,160,352,160z M352,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S343.164,112,352,112z"},"children":[{"name":"path","attribs":{"d":"M352,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S334.355,160,352,160z M352,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S343.164,112,352,112z"},"children":[]}]}]}]};exports.iosPricetagsOutline=iosPricetagsOutline;var iosPricetags={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"464,64 464,201.377 227.153,467.48 240,480 480,208 480,64 \t\t"},"children":[{"name":"polygon","attribs":{"points":"464,64 464,201.377 227.153,467.48 240,480 480,208 480,64 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,32L32,320l160,160l23.471-23.904l11.348-11.375L448,192V80V64V32H288z M352,160c-17.645,0-32-14.355-32-32\r\n\t\t\ts14.355-32,32-32s32,14.355,32,32S369.645,160,352,160z"},"children":[{"name":"path","attribs":{"d":"M288,32L32,320l160,160l23.471-23.904l11.348-11.375L448,192V80V64V32H288z M352,160c-17.645,0-32-14.355-32-32\r\n\t\t\ts14.355-32,32-32s32,14.355,32,32S369.645,160,352,160z"},"children":[]}]},{"name":"circle","attribs":{"cx":"352","cy":"128","r":"16"},"children":[{"name":"circle","attribs":{"cx":"352","cy":"128","r":"16"},"children":[]}]}]}]}]}]};exports.iosPricetags=iosPricetags;var iosPrinterOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M432.5,112H400V64H112v48H80.5C62.9,112,48,125.8,48,143.3v158.4c0,17.5,14.9,32.3,32.5,32.3H128v114h256V334h48.5\r\n\t\tc17.6,0,31.5-14.8,31.5-32.3V143.3C464,125.8,450.1,112,432.5,112z M128,80h256v32H128V80z M368,432H144V240h224V432z M448,301.7\r\n\t\tc0,8.7-6.7,16.3-15.5,16.3H384v-94H128v94H80.5c-8.8,0-16.5-7.6-16.5-16.3V143.3c0-8.7,7.7-15.3,16.5-15.3H432h0.5\r\n\t\tc8.8,0,15.5,6.6,15.5,15.3V301.7z"},"children":[{"name":"path","attribs":{"d":"M432.5,112H400V64H112v48H80.5C62.9,112,48,125.8,48,143.3v158.4c0,17.5,14.9,32.3,32.5,32.3H128v114h256V334h48.5\r\n\t\tc17.6,0,31.5-14.8,31.5-32.3V143.3C464,125.8,450.1,112,432.5,112z M128,80h256v32H128V80z M368,432H144V240h224V432z M448,301.7\r\n\t\tc0,8.7-6.7,16.3-15.5,16.3H384v-94H128v94H80.5c-8.8,0-16.5-7.6-16.5-16.3V143.3c0-8.7,7.7-15.3,16.5-15.3H432h0.5\r\n\t\tc8.8,0,15.5,6.6,15.5,15.3V301.7z"},"children":[]}]}]}]};exports.iosPrinterOutline=iosPrinterOutline;var iosPrinter={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"128","y":"224","width":"256","height":"224"},"children":[{"name":"rect","attribs":{"x":"128","y":"224","width":"256","height":"224"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"127.5","y":"224.5","width":"256","height":"224"},"children":[{"name":"rect","attribs":{"x":"127.5","y":"224.5","width":"256","height":"224"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"111.5","y":"64.5","width":"288","height":"32"},"children":[{"name":"rect","attribs":{"x":"111.5","y":"64.5","width":"288","height":"32"},"children":[]}]},{"name":"path","attribs":{"d":"M432.5,112.5h-352c-17.645,0-33,12.842-33,30.309v158.393c0,17.468,15.355,33.299,33,33.299h31v-126h288v126h33\r\n\t\t\tc17.645,0,31-15.831,31-33.299V142.809C463.5,125.342,450.145,112.5,432.5,112.5z"},"children":[{"name":"path","attribs":{"d":"M432.5,112.5h-352c-17.645,0-33,12.842-33,30.309v158.393c0,17.468,15.355,33.299,33,33.299h31v-126h288v126h33\r\n\t\t\tc17.645,0,31-15.831,31-33.299V142.809C463.5,125.342,450.145,112.5,432.5,112.5z"},"children":[]}]}]}]}]}]};exports.iosPrinter=iosPrinter;var iosPulseStrong={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,273.001c-21.27,0-39.296,13.999-45.596,32.999h-38.857l-28.361-85.417c-2.176-6.553-8.303-10.956-15.183-10.956\r\n\tc-0.112,0-0.224,0-0.335,0.004c-7.016,0.145-13.117,4.844-15.049,11.588l-44.484,155.262L207.782,62.373\r\n\tC206.535,54.893,200.333,48,192,48s-13.693,5.776-15.525,13.135L115.496,306H16v31.999h112c7.348,0,13.75-5.003,15.525-12.134\r\n\tl45.368-182.177l51.324,307.94c1.229,7.377,7.397,11.92,14.864,12.344C255.389,463.99,255.695,464,256,464\r\n\tc7.097,0,13.406-3.701,15.381-10.594l49.744-173.617l15.689,47.252c2.173,6.543,8.292,10.958,15.186,10.958h51.108\r\n\tC409.973,355.999,427.477,369,448,369c26.511,0,48-22.492,48-49C496,293.491,474.511,273.001,448,273.001z"},"children":[]}]};exports.iosPulseStrong=iosPulseStrong;var iosPulse={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,288c-15.268,0-28.029,10.695-31.223,25h-59.004l-30.181-90.896c-1.105-3.329-4.246-5.543-7.759-5.478\r\n\tc-3.508,0.072-6.559,2.422-7.524,5.795L258.067,411.74L199.892,62.685c-0.624-3.74-3.787-6.528-7.576-6.679\r\n\tc-3.809-0.139-7.161,2.382-8.078,6.061L121.748,313H32v16h96c3.674,0,6.875-2.502,7.763-6.066l54.685-219.591l57.661,345.973\r\n\tc0.615,3.688,3.703,6.459,7.437,6.672c0.153,0.009,0.307,0.013,0.459,0.013c3.549,0,6.699-2.35,7.687-5.797l56.872-198.496\r\n\tl23.845,71.813c1.087,3.271,4.146,5.479,7.593,5.479h65.292c3.89,13.289,16.161,23,30.708,23c17.674,0,32-14.327,32-32\r\n\tS465.674,288,448,288z"},"children":[]}]};exports.iosPulse=iosPulse;var iosRainyOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M332.1,179.4c-2.8,0-5.7-0.1-8.4,0.3c-8.3-36.8-35.2-67.6-80.3-67.6c-50.9,0-82.3,38-82.3,83.6\r\n\tc0,2.8,0.1,5.5,0.4,8.2c-27.7,2.5-49.5,31.3-49.5,59.8c0,29.2,22.9,54.6,51.6,56.2l-24.5,34.4c-1.1,1.6-2,3.4-2,5.5\r\n\tc0,4.6,3.7,8.3,8.3,8.3c3,0,5.6-1.6,7.1-4l31-43.8h36.1l-46.1,65.8c-1.2,1.6-2.1,3.6-2.1,5.6c0,4.6,3.7,8.3,8.3,8.3\r\n\tc3,0,5.6-1.8,7.2-4.3l52.6-75.5h37.9l-24.9,34.4c-1.2,1.6-2.2,3.8-2.2,5.6c0,4.6,3.7,8.3,8.3,8.3c3.1,0,5.4-1.7,7.2-4.1l31.6-44.3\r\n\th34.7c0.1,0,0.3-0.1,0.4-0.1l-46.1,65.9c-1.3,1.7-2.3,3.6-2.3,5.8c0,4.6,3.7,8.3,8.3,8.3c3.2,0,5.5-2,7.4-4.5l55.5-79.8\r\n\tc26-9.9,44.6-35.8,44.6-65.2C400,212.8,369.6,179.4,332.1,179.4z M332.1,302.1H290l-0.1-0.1l-0.1,0.1H166.4\r\n\tc-10,0-19.5-4.6-26.7-11.9c-7.2-7.3-11.1-17.2-11.1-27.4c0-19.6,15.2-39.8,34.9-43c1.7-0.3,9.2-1.4,15-1.9c0,0-0.5-5.6-0.7-10.2\r\n\tc-0.1-4.6-0.1-9.9-0.1-12.1c0-36.4,29.5-66.9,65.8-66.9c15.2,0,29.5,5.1,41.3,14.7c11.5,9.3,19.6,25.4,22.8,39.7l3.3,14.7l14.9-1.9\r\n\tc2.2-0.3,4.3-0.4,6.4-0.4c28.3,0,51.3,25.9,51.3,54.4C383.4,278.3,360.4,302.1,332.1,302.1z"},"children":[]}]};exports.iosRainyOutline=iosRainyOutline;var iosRainy={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M332.1,179.4c-2.8,0-5.7-0.1-8.4,0.3c-8.3-36.8-35.2-67.6-80.3-67.6c-50.9,0-82.3,38-82.3,83.6\r\n\tc0,2.8,0.1,5.5,0.4,8.2c-27.7,2.5-49.5,31.3-49.5,59.8c0,29.2,22.9,54.6,51.6,56.2l-24.5,34.4c-1.1,1.6-2,3.4-2,5.5\r\n\tc0,4.6,3.7,8.3,8.3,8.3c3,0,5.6-1.6,7.1-4l31-43.8h36.1l-46.1,65.8c-1.2,1.6-2.1,3.6-2.1,5.6c0,4.6,3.7,8.3,8.3,8.3\r\n\tc3,0,5.6-1.8,7.2-4.3l52.6-75.5h37.9l-24.9,34.4c-1.2,1.6-2.2,3.8-2.2,5.6c0,4.6,3.7,8.3,8.3,8.3c3.1,0,5.4-1.7,7.2-4.1l31.6-44.3\r\n\th34.7c0.1,0,0.3-0.1,0.4-0.1l-46.1,65.9c-1.3,1.7-2.3,3.6-2.3,5.8c0,4.6,3.7,8.3,8.3,8.3c3.2,0,5.5-2,7.4-4.5l55.5-79.8\r\n\tc26-9.9,44.6-35.8,44.6-65.2C400,212.8,369.6,179.4,332.1,179.4z"},"children":[]}]};exports.iosRainy=iosRainy;var iosRecordingOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M386.2,144c-60.6,0-109.8,50.1-109.8,112c0,40.4,21,75.7,52.5,95.4H183.1c31.5-19.7,52.5-55,52.5-95.4\r\n\tc0-61.9-49.2-112-109.8-112C65.2,144,16,194.1,16,256c0,61.9,49.2,112,109.8,112h260.4c60.6,0,109.8-50.1,109.8-112\r\n\tC496,194.1,446.8,144,386.2,144z M32.3,256c0-52.6,42-95.4,93.5-95.4c51.6,0,93.5,42.8,93.5,95.4s-42,95.4-93.5,95.4\r\n\tC74.2,351.4,32.3,308.6,32.3,256z M386.2,351.4c-51.6,0-93.5-42.8-93.5-95.4s42-95.4,93.5-95.4s93.5,42.8,93.5,95.4\r\n\tS437.8,351.4,386.2,351.4z"},"children":[]},{"name":"path","attribs":{"d":"M384,208c26.5,0,48,21.5,48,48c0,26.5-21.5,48-48,48s-48-21.5-48-48C336,229.5,357.5,208,384,208 M384,192\r\n\tc-35.3,0-64,28.7-64,64c0,35.3,28.7,64,64,64s64-28.7,64-64C448,220.7,419.3,192,384,192L384,192z"},"children":[]},{"name":"path","attribs":{"d":"M128,208c26.5,0,48,21.5,48,48c0,26.5-21.5,48-48,48s-48-21.5-48-48C80,229.5,101.5,208,128,208 M128,192\r\n\tc-35.3,0-64,28.7-64,64c0,35.3,28.7,64,64,64s64-28.7,64-64C192,220.7,163.3,192,128,192L128,192z"},"children":[]}]};exports.iosRecordingOutline=iosRecordingOutline;var iosRecording={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M386.2,144c-60.6,0-109.8,49.9-109.8,111.8c0,40.4,21,76.2,52.5,95.2H183.1c31.5-19,52.5-54.8,52.5-95.2\r\n\t\tc0-61.9-49.2-111.9-109.8-111.9C65.2,143.9,16,194.1,16,255.9C16,317.8,65.2,368,125.8,368h260.4c60.6,0,109.8-50.1,109.8-112\r\n\t\tC496,194.1,446.8,144,386.2,144z M128,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C192,291.3,163.3,320,128,320z\r\n\t\t M384,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C448,291.3,419.3,320,384,320z"},"children":[{"name":"path","attribs":{"d":"M386.2,144c-60.6,0-109.8,49.9-109.8,111.8c0,40.4,21,76.2,52.5,95.2H183.1c31.5-19,52.5-54.8,52.5-95.2\r\n\t\tc0-61.9-49.2-111.9-109.8-111.9C65.2,143.9,16,194.1,16,255.9C16,317.8,65.2,368,125.8,368h260.4c60.6,0,109.8-50.1,109.8-112\r\n\t\tC496,194.1,446.8,144,386.2,144z M128,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C192,291.3,163.3,320,128,320z\r\n\t\t M384,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C448,291.3,419.3,320,384,320z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C432,229.5,410.5,208,384,208z"},"children":[{"name":"path","attribs":{"d":"M384,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C432,229.5,410.5,208,384,208z"},"children":[]}]},{"name":"path","attribs":{"d":"M128,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C176,229.5,154.5,208,128,208z"},"children":[{"name":"path","attribs":{"d":"M128,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C176,229.5,154.5,208,128,208z"},"children":[]}]}]}]};exports.iosRecording=iosRecording;var iosRedoOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z M272,192v-64.7l148.1,96.8L272,320.8\r\n\t\tV256c-91,0-144.6,24.6-192.2,105.4C79.8,361.4,71,192,272,192z"},"children":[{"name":"path","attribs":{"d":"M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z M272,192v-64.7l148.1,96.8L272,320.8\r\n\t\tV256c-91,0-144.6,24.6-192.2,105.4C79.8,361.4,71,192,272,192z"},"children":[]}]}]}]};exports.iosRedoOutline=iosRedoOutline;var iosRedo={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z"},"children":[{"name":"path","attribs":{"d":"M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z"},"children":[]}]}]}]};exports.iosRedo=iosRedo;var iosRefreshEmpty={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,384.1c-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8\r\n\t\tc-59.6,0-108.1,48.5-108.1,108.1c0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"},"children":[{"name":"path","attribs":{"d":"M256,384.1c-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8\r\n\t\tc-59.6,0-108.1,48.5-108.1,108.1c0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"},"children":[]}]}]}]};exports.iosRefreshEmpty=iosRefreshEmpty;var iosRefreshOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M364.1,256c0,60-48.5,108.2-108.1,108.2S147.9,315.7,147.9,256c0-59.6,48.5-108.1,108.1-108.1v55.8l96-55.7l-96-64v44\r\n\tc-70.7,0-128,57.4-128,128.1c0,70.8,57.3,128.1,128,128.1c70.7,0,128-57.1,128-128.1H364.1z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"},"children":[]}]}]}]}]}]};exports.iosRefreshOutline=iosRefreshOutline;var iosRefresh={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,384.1\r\n\t\tc-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8c-59.6,0-108.1,48.5-108.1,108.1\r\n\t\tc0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"},"children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,384.1\r\n\t\tc-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8c-59.6,0-108.1,48.5-108.1,108.1\r\n\t\tc0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"},"children":[]}]}]}]};exports.iosRefresh=iosRefresh;var iosReload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"PL_x5F_Reset_1_"},"children":[{"name":"path","attribs":{"d":"M256,64c105.9,0,191.7,85.7,191.9,191.5l55-52.5l9,9.1L441.6,280L375,212.1l9-9.1l51.1,52.4\r\n\t\tC434.8,156.9,354.6,76.8,256,76.8c-98.8,0-179.2,80.4-179.2,179.2c0,98.8,80.4,179.2,179.2,179.2c78.6,0,145.5-51,169.5-121.6\r\n\t\tl12.4,3.5C412.3,393.2,340.6,448,256,448c-106,0-192-86-192-192S150,64,256,64z"},"children":[{"name":"path","attribs":{"d":"M256,64c105.9,0,191.7,85.7,191.9,191.5l55-52.5l9,9.1L441.6,280L375,212.1l9-9.1l51.1,52.4\r\n\t\tC434.8,156.9,354.6,76.8,256,76.8c-98.8,0-179.2,80.4-179.2,179.2c0,98.8,80.4,179.2,179.2,179.2c78.6,0,145.5-51,169.5-121.6\r\n\t\tl12.4,3.5C412.3,393.2,340.6,448,256,448c-106,0-192-86-192-192S150,64,256,64z"},"children":[]}]}]}]};exports.iosReload=iosReload;var iosReverseCameraOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M301.815,318.608c-13.114,11.029-28.956,17.356-45.815,17.356c-36.36,0-66.286-28.965-70.89-61.965h30.61l-38.87-50\r\n\t\tl-37.534,50h29.479c4.696,42,41.717,78,87.205,78c20.9,0,41.17-7.566,57.076-21.218l2.37-2.159l-11.599-11.662L301.815,318.608z"},"children":[{"name":"path","attribs":{"d":"M301.815,318.608c-13.114,11.029-28.956,17.356-45.815,17.356c-36.36,0-66.286-28.965-70.89-61.965h30.61l-38.87-50\r\n\t\tl-37.534,50h29.479c4.696,42,41.717,78,87.205,78c20.9,0,41.17-7.566,57.076-21.218l2.37-2.159l-11.599-11.662L301.815,318.608z"},"children":[]}]},{"name":"path","attribs":{"d":"M315.736,198.885c-16.188-14.775-37.402-22.839-59.736-22.839c-20.9,0-41.169,7.556-57.075,21.206l-2.371,2.052\r\n\t\tl11.599,11.61l2.033-1.706c12.927-10.872,29.197-17.005,45.814-17.005c36.343,0,66.274,28.797,70.891,63.797h-30.644l38.846,51.225\r\n\t\tL372.719,256h-29.512C340.966,236,331.275,213.064,315.736,198.885z"},"children":[{"name":"path","attribs":{"d":"M315.736,198.885c-16.188-14.775-37.402-22.839-59.736-22.839c-20.9,0-41.169,7.556-57.075,21.206l-2.371,2.052\r\n\t\tl11.599,11.61l2.033-1.706c12.927-10.872,29.197-17.005,45.814-17.005c36.343,0,66.274,28.797,70.891,63.797h-30.644l38.846,51.225\r\n\t\tL372.719,256h-29.512C340.966,236,331.275,213.064,315.736,198.885z"},"children":[]}]},{"name":"path","attribs":{"d":"M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M432,366.701c0,9.263-6.229,17.299-14.5,17.299h-320c-8.738,0-17.5-8.664-17.5-17.299V190.684\r\n\t\tC80,182.518,88.126,176,97.5,176h60.729c0,0,4.124,0,6.133,0s3.225-0.199,5.768-3.2s7.702-10.008,11.08-13.795\r\n\t\tc11.296-12.666,19.457-21.915,25.316-27.132c4.746-4.225,6.211-3.873,6.225-3.873h88.5c0.016,0,1.611-0.363,6.709,4.219\r\n\t\tc6.141,5.521,14.705,16.84,26.558,30.198c2.888,3.255,7.214,8.11,9.317,10.44s4.252,3.143,5.771,3.143s6.17,0,6.17,0H417.5\r\n\t\tc8.832,0,14.5,5.965,14.5,14.684V366.701z"},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M432,366.701c0,9.263-6.229,17.299-14.5,17.299h-320c-8.738,0-17.5-8.664-17.5-17.299V190.684\r\n\t\tC80,182.518,88.126,176,97.5,176h60.729c0,0,4.124,0,6.133,0s3.225-0.199,5.768-3.2s7.702-10.008,11.08-13.795\r\n\t\tc11.296-12.666,19.457-21.915,25.316-27.132c4.746-4.225,6.211-3.873,6.225-3.873h88.5c0.016,0,1.611-0.363,6.709,4.219\r\n\t\tc6.141,5.521,14.705,16.84,26.558,30.198c2.888,3.255,7.214,8.11,9.317,10.44s4.252,3.143,5.771,3.143s6.17,0,6.17,0H417.5\r\n\t\tc8.832,0,14.5,5.965,14.5,14.684V366.701z"},"children":[]}]}]}]};exports.iosReverseCameraOutline=iosReverseCameraOutline;var iosReverseCamera={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M313.076,330.782C297.17,344.434,276.9,352,256,352c-45.487,0-82.509-36-87.205-78h-29.479\r\n\t\tl37.534-50l38.87,50h-30.61c4.604,33,34.53,61.965,70.89,61.965c16.859,0,32.701-6.327,45.815-17.356l2.032-1.647l11.599,11.662\r\n\t\tL313.076,330.782z M335.094,307.225L296.248,256h30.644c-4.617-35-34.548-63.797-70.891-63.797\r\n\t\tc-16.618,0-32.888,6.133-45.814,17.005l-2.033,1.706l-11.599-11.61l2.371-2.052c15.905-13.65,36.175-21.206,57.075-21.206\r\n\t\tc22.333,0,43.548,8.063,59.736,22.839C331.275,213.064,340.966,236,343.207,256h29.512L335.094,307.225z"},"children":[{"name":"path","attribs":{"d":"M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M313.076,330.782C297.17,344.434,276.9,352,256,352c-45.487,0-82.509-36-87.205-78h-29.479\r\n\t\tl37.534-50l38.87,50h-30.61c4.604,33,34.53,61.965,70.89,61.965c16.859,0,32.701-6.327,45.815-17.356l2.032-1.647l11.599,11.662\r\n\t\tL313.076,330.782z M335.094,307.225L296.248,256h30.644c-4.617-35-34.548-63.797-70.891-63.797\r\n\t\tc-16.618,0-32.888,6.133-45.814,17.005l-2.033,1.706l-11.599-11.61l2.371-2.052c15.905-13.65,36.175-21.206,57.075-21.206\r\n\t\tc22.333,0,43.548,8.063,59.736,22.839C331.275,213.064,340.966,236,343.207,256h29.512L335.094,307.225z"},"children":[]}]}]}]};exports.iosReverseCamera=iosReverseCamera;var iosRewindOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M464,155v201.9L280.5,256L464,155 M240,156v77.7v27.1v95.6L64,256l176-100.2 M256,128L32,256l224,128V260.8L480,384V128\r\n\tL256,251.2V128L256,128z"},"children":[]}]};exports.iosRewindOutline=iosRewindOutline;var iosRewind={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,128L32,256l224,128V260.8L480,384V128L256,251.2V128L256,128z"},"children":[]}]};exports.iosRewind=iosRewind;var iosRoseOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M379.769,153.431c-29.777,55.586-17.604,99.504-6.645,139.039C378.717,312.648,384,331.708,384,351.889\r\n\t\tc0,15.897-2.956,30.873-8.785,44.51c-5.727,13.396-14.104,25.212-24.898,35.12C327.169,452.768,294.555,464,256,464\r\n\t\ts-71.169-11.232-94.316-32.481c-10.795-9.908-19.172-21.725-24.898-35.12c-5.829-13.637-8.785-28.612-8.785-44.51\r\n\t\tc0-31.65,6.92-55.999,21.775-76.626c13.061-18.134,32.646-34.094,63.505-51.749l6.506-3.725\r\n\t\tc20.197-11.57,27.001-15.467,43.976-23.588c31.845-15.234,66.513-28.387,103.041-39.094\r\n\t\tC371.088,155.851,375.412,154.625,379.769,153.431 M416,128c-18.863,4.163-36.75,8.786-53.697,13.753\r\n\t\tc-40.457,11.858-75.509,25.693-105.445,40.015c-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889\r\n\t\tS167.635,480,256,480s144-55.148,144-128.111S338.999,224,416,128L416,128z"},"children":[{"name":"path","attribs":{"d":"M379.769,153.431c-29.777,55.586-17.604,99.504-6.645,139.039C378.717,312.648,384,331.708,384,351.889\r\n\t\tc0,15.897-2.956,30.873-8.785,44.51c-5.727,13.396-14.104,25.212-24.898,35.12C327.169,452.768,294.555,464,256,464\r\n\t\ts-71.169-11.232-94.316-32.481c-10.795-9.908-19.172-21.725-24.898-35.12c-5.829-13.637-8.785-28.612-8.785-44.51\r\n\t\tc0-31.65,6.92-55.999,21.775-76.626c13.061-18.134,32.646-34.094,63.505-51.749l6.506-3.725\r\n\t\tc20.197-11.57,27.001-15.467,43.976-23.588c31.845-15.234,66.513-28.387,103.041-39.094\r\n\t\tC371.088,155.851,375.412,154.625,379.769,153.431 M416,128c-18.863,4.163-36.75,8.786-53.697,13.753\r\n\t\tc-40.457,11.858-75.509,25.693-105.445,40.015c-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889\r\n\t\tS167.635,480,256,480s144-55.148,144-128.111S338.999,224,416,128L416,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M133.516,123.147c21.432,6.955,47.724,16.977,69.799,29.846c6.385,3.723,12.092,7.493,17.092,11.291\r\n\t\tc-5.504,2.905-10.895,5.855-16.138,8.833c-7.212,4.096-14.359,8.362-21.243,12.679c-10.484,6.574-20.435,13.308-29.789,20.156\r\n\t\tC152.637,180.034,147.555,151.15,133.516,123.147 M96,96c41.475,47.079,44.624,103.891,39.382,144.741\r\n\t\tc12.772-11.274,31.177-25.734,56.144-41.389c6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765\r\n\t\tc-9.113-10.898-22.07-20.606-36.631-29.095C162.631,110.756,96,96,96,96L96,96z"},"children":[{"name":"path","attribs":{"d":"M133.516,123.147c21.432,6.955,47.724,16.977,69.799,29.846c6.385,3.723,12.092,7.493,17.092,11.291\r\n\t\tc-5.504,2.905-10.895,5.855-16.138,8.833c-7.212,4.096-14.359,8.362-21.243,12.679c-10.484,6.574-20.435,13.308-29.789,20.156\r\n\t\tC152.637,180.034,147.555,151.15,133.516,123.147 M96,96c41.475,47.079,44.624,103.891,39.382,144.741\r\n\t\tc12.772-11.274,31.177-25.734,56.144-41.389c6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765\r\n\t\tc-9.113-10.898-22.07-20.606-36.631-29.095C162.631,110.756,96,96,96,96L96,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M344.629,80.697c5.309,7.227,12.393,17.661,17.66,27.726c-29.863,8.433-65.994,21.145-94.967,33.476\r\n\t\tc-5.963-6.235-12.982-12.294-21.006-18.135c17.437-15.757,38.773-27.668,63.652-35.506\r\n\t\tC324.518,83.675,337.016,81.612,344.629,80.697 M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533\r\n\t\tl2.724,3.257c37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"},"children":[{"name":"path","attribs":{"d":"M344.629,80.697c5.309,7.227,12.393,17.661,17.66,27.726c-29.863,8.433-65.994,21.145-94.967,33.476\r\n\t\tc-5.963-6.235-12.982-12.294-21.006-18.135c17.437-15.757,38.773-27.668,63.652-35.506\r\n\t\tC324.518,83.675,337.016,81.612,344.629,80.697 M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533\r\n\t\tl2.724,3.257c37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M181.229,53.532c9.241,6.122,22.68,16.481,35.999,31.924c-4.851,4.201-9.487,8.623-13.888,13.247\r\n\t\tc-14.024-7.088-24.951-12.192-36.826-16.602C170.174,73.63,175.095,63.788,181.229,53.532 M176,32\r\n\t\tc-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574c9.505-11.4,20.415-21.626,32.605-30.543\r\n\t\tC210.342,47.655,176,32,176,32L176,32z"},"children":[{"name":"path","attribs":{"d":"M181.229,53.532c9.241,6.122,22.68,16.481,35.999,31.924c-4.851,4.201-9.487,8.623-13.888,13.247\r\n\t\tc-14.024-7.088-24.951-12.192-36.826-16.602C170.174,73.63,175.095,63.788,181.229,53.532 M176,32\r\n\t\tc-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574c9.505-11.4,20.415-21.626,32.605-30.543\r\n\t\tC210.342,47.655,176,32,176,32L176,32z"},"children":[]}]}]}]};exports.iosRoseOutline=iosRoseOutline;var iosRose={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,128c-18.863,4.163-36.75,8.786-53.697,13.753c-40.457,11.858-75.509,25.693-105.445,40.015\r\n\t\tc-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889S167.635,480,256,480s144-55.148,144-128.111\r\n\t\tS338.999,224,416,128L416,128z"},"children":[{"name":"path","attribs":{"d":"M416,128c-18.863,4.163-36.75,8.786-53.697,13.753c-40.457,11.858-75.509,25.693-105.445,40.015\r\n\t\tc-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889S167.635,480,256,480s144-55.148,144-128.111\r\n\t\tS338.999,224,416,128L416,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M96,96c41.475,47.079,44.624,103.891,39.382,144.741c12.772-11.274,31.177-25.734,56.144-41.389\r\n\t\tc6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765c-9.113-10.898-22.07-20.606-36.631-29.095\r\n\t\tC162.631,110.756,96,96,96,96L96,96z"},"children":[{"name":"path","attribs":{"d":"M96,96c41.475,47.079,44.624,103.891,39.382,144.741c12.772-11.274,31.177-25.734,56.144-41.389\r\n\t\tc6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765c-9.113-10.898-22.07-20.606-36.631-29.095\r\n\t\tC162.631,110.756,96,96,96,96L96,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533l2.724,3.257\r\n\t\tc37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"},"children":[{"name":"path","attribs":{"d":"M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533l2.724,3.257\r\n\t\tc37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M176,32c-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574\r\n\t\tc9.505-11.4,20.415-21.626,32.605-30.543C210.342,47.655,176,32,176,32L176,32z"},"children":[{"name":"path","attribs":{"d":"M176,32c-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574\r\n\t\tc9.505-11.4,20.415-21.626,32.605-30.543C210.342,47.655,176,32,176,32L176,32z"},"children":[]}]}]}]};exports.iosRose=iosRose;var iosSearchStrong={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M344.5,298c15-23.6,23.8-51.6,23.8-81.7c0-84.1-68.1-152.3-152.1-152.3C132.1,64,64,132.2,64,216.3\r\n\tc0,84.1,68.1,152.3,152.1,152.3c30.5,0,58.9-9,82.7-24.4l6.9-4.8L414.3,448l33.7-34.3L339.5,305.1L344.5,298z M301.4,131.2\r\n\tc22.7,22.7,35.2,52.9,35.2,85c0,32.1-12.5,62.3-35.2,85c-22.7,22.7-52.9,35.2-85,35.2c-32.1,0-62.3-12.5-85-35.2\r\n\tc-22.7-22.7-35.2-52.9-35.2-85c0-32.1,12.5-62.3,35.2-85c22.7-22.7,52.9-35.2,85-35.2C248.5,96,278.7,108.5,301.4,131.2z"},"children":[]}]};exports.iosSearchStrong=iosSearchStrong;var iosSearch={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448.3,424.7L335,311.3c20.8-26,33.3-59.1,33.3-95.1c0-84.1-68.1-152.2-152-152.2c-84,0-152,68.2-152,152.2\r\n\ts68.1,152.2,152,152.2c36.2,0,69.4-12.7,95.5-33.8L425,448L448.3,424.7z M120.1,312.6c-25.7-25.7-39.8-59.9-39.8-96.3\r\n\ts14.2-70.6,39.8-96.3S180,80,216.3,80c36.3,0,70.5,14.2,96.2,39.9s39.8,59.9,39.8,96.3s-14.2,70.6-39.8,96.3\r\n\tc-25.7,25.7-59.9,39.9-96.2,39.9C180,352.5,145.8,338.3,120.1,312.6z"},"children":[]}]};exports.iosSearch=iosSearch;var iosSettingsStrong={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32,376h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[{"name":"path","attribs":{"d":"M32,376h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[]}]},{"name":"path","attribs":{"d":"M32,240h91.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32H196.65c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[{"name":"path","attribs":{"d":"M32,240h91.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32H196.65c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[]}]},{"name":"path","attribs":{"d":"M32,104h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[{"name":"path","attribs":{"d":"M32,104h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"},"children":[]}]}]}]};exports.iosSettingsStrong=iosSettingsStrong;var iosSettings={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,104c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,104,352,104 M352,88c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,88,352,88L352,88z"},"children":[{"name":"path","attribs":{"d":"M352,104c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,104,352,104 M352,88c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,88,352,88L352,88z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,376c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,376,352,376 M352,360c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,360,352,360L352,360z"},"children":[{"name":"path","attribs":{"d":"M352,376c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,376,352,376 M352,360c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,360,352,360L352,360z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M160,240c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S151.163,240,160,240 M160,224\r\n\t\t\tc-17.645,0-32,14.355-32,32s14.355,32,32,32s32-14.355,32-32S177.645,224,160,224L160,224z"},"children":[{"name":"path","attribs":{"d":"M160,240c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S151.163,240,160,240 M160,224\r\n\t\t\tc-17.645,0-32,14.355-32,32s14.355,32,32,32s32-14.355,32-32S177.645,224,160,224L160,224z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M207.32,248H480v16H207.32c0.439-2.604,0.68-5.273,0.68-8S207.76,250.604,207.32,248z"},"children":[{"name":"path","attribs":{"d":"M207.32,248H480v16H207.32c0.439-2.604,0.68-5.273,0.68-8S207.76,250.604,207.32,248z"},"children":[]}]},{"name":"path","attribs":{"d":"M112,256c0,2.727,0.24,5.396,0.68,8H32v-16h80.68C112.24,250.604,112,253.273,112,256z"},"children":[{"name":"path","attribs":{"d":"M112,256c0,2.727,0.24,5.396,0.68,8H32v-16h80.68C112.24,250.604,112,253.273,112,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M399.32,384H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,386.604,399.32,384z"},"children":[{"name":"path","attribs":{"d":"M399.32,384H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,386.604,399.32,384z"},"children":[]}]},{"name":"path","attribs":{"d":"M304,392c0,2.727,0.24,5.396,0.68,8H32v-16h272.68C304.24,386.604,304,389.273,304,392z"},"children":[{"name":"path","attribs":{"d":"M304,392c0,2.727,0.24,5.396,0.68,8H32v-16h272.68C304.24,386.604,304,389.273,304,392z"},"children":[]}]},{"name":"path","attribs":{"d":"M399.32,112H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,114.604,399.32,112z"},"children":[{"name":"path","attribs":{"d":"M399.32,112H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,114.604,399.32,112z"},"children":[]}]},{"name":"path","attribs":{"d":"M304.68,112c-0.439,2.604-0.68,5.273-0.68,8s0.24,5.396,0.68,8H32v-16H304.68z"},"children":[{"name":"path","attribs":{"d":"M304.68,112c-0.439,2.604-0.68,5.273-0.68,8s0.24,5.396,0.68,8H32v-16H304.68z"},"children":[]}]}]}]}]}]}]}]};exports.iosSettings=iosSettings;var iosShuffleStrong={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M365.419,152h13.81l-50.738,41.584l20.308,24.572L448,136l-99.136-84l-20.368,24.978L379.679,120h-14.26\r\n\t\tc-103.727,0-146.494,79.62-180.857,143.727c-1.362,2.542-2.715,4.99-4.06,7.488l-0.059,0.095c-1.591,2.953-3.176,6.114-4.76,9.038\r\n\t\tc-35.562,65.63-66.893,83.214-111.684,83.641V396c37.625,0,57.563-9.451,72.236-18.178c24.935-14.831,47.042-44.559,67.583-82.467\r\n\t\tc1.541-2.844,3.083-5.752,4.632-8.626l0.225-0.438c1.459-2.711,2.922-5.273,4.39-8.014C246.369,216.113,280.808,152,365.419,152z"},"children":[{"name":"path","attribs":{"d":"M365.419,152h13.81l-50.738,41.584l20.308,24.572L448,136l-99.136-84l-20.368,24.978L379.679,120h-14.26\r\n\t\tc-103.727,0-146.494,79.62-180.857,143.727c-1.362,2.542-2.715,4.99-4.06,7.488l-0.059,0.095c-1.591,2.953-3.176,6.114-4.76,9.038\r\n\t\tc-35.562,65.63-66.893,83.214-111.684,83.641V396c37.625,0,57.563-9.451,72.236-18.178c24.935-14.831,47.042-44.559,67.583-82.467\r\n\t\tc1.541-2.844,3.083-5.752,4.632-8.626l0.225-0.438c1.459-2.711,2.922-5.273,4.39-8.014C246.369,216.113,280.808,152,365.419,152z"},"children":[]}]},{"name":"path","attribs":{"d":"M348.798,293.844l-20.308,24.572L379.229,360h-13.81c-70.728,0-106.396-44.801-135.649-95.812l-17.648,32.618\r\n\t\tC243.556,346.626,287.116,392,365.419,392h14.26l-51.183,43.022L348.864,460L448,376L348.798,293.844z"},"children":[{"name":"path","attribs":{"d":"M348.798,293.844l-20.308,24.572L379.229,360h-13.81c-70.728,0-106.396-44.801-135.649-95.812l-17.648,32.618\r\n\t\tC243.556,346.626,287.116,392,365.419,392h14.26l-51.183,43.022L348.864,460L448,376L348.798,293.844z"},"children":[]}]},{"name":"path","attribs":{"d":"M175.684,231.652c1.584,2.924,3.169,6.085,4.76,9.038l0.059,0.095c1.218,2.262,2.442,4.49,3.675,6.777\r\n\t\tc5.82-10.73,11.98-21.748,18.695-32.649c-20.273-37.079-42.083-66.132-66.636-80.735C121.563,125.451,101.625,116,64,116v32.011\r\n\t\tC108.791,148.438,140.122,166.022,175.684,231.652z"},"children":[{"name":"path","attribs":{"d":"M175.684,231.652c1.584,2.924,3.169,6.085,4.76,9.038l0.059,0.095c1.218,2.262,2.442,4.49,3.675,6.777\r\n\t\tc5.82-10.73,11.98-21.748,18.695-32.649c-20.273-37.079-42.083-66.132-66.636-80.735C121.563,125.451,101.625,116,64,116v32.011\r\n\t\tC108.791,148.438,140.122,166.022,175.684,231.652z"},"children":[]}]}]}]};exports.iosShuffleStrong=iosShuffleStrong;var iosShuffle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M362.121,207.146L352,194.854L413.784,144h-46.117c-93.327,0-129.147,74.511-163.787,138.832\r\n\t\tc-1.62,3.008-3.233,6.004-4.846,8.979c-19.836,36.607-40.979,61.242-64.64,75.314C120.573,375.346,101.401,384,64,384v-16.25\r\n\t\tc47.937,0,83.098-13.673,120.966-83.561c1.606-2.965,3.214-5.949,4.827-8.944C224.943,209.977,264.784,128,367.667,128h46.28\r\n\t\tL352,76.146L362.121,64L448,136L362.121,207.146z"},"children":[{"name":"path","attribs":{"d":"M362.121,207.146L352,194.854L413.784,144h-46.117c-93.327,0-129.147,74.511-163.787,138.832\r\n\t\tc-1.62,3.008-3.233,6.004-4.846,8.979c-19.836,36.607-40.979,61.242-64.64,75.314C120.573,375.346,101.401,384,64,384v-16.25\r\n\t\tc47.937,0,83.098-13.673,120.966-83.561c1.606-2.965,3.214-5.949,4.827-8.944C224.943,209.977,264.784,128,367.667,128h46.28\r\n\t\tL352,76.146L362.121,64L448,136L362.121,207.146z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M199.034,220.189c-19.836-36.607-40.979-61.242-64.64-75.314C120.573,136.654,101.401,128,64,128v16.25\r\n\t\t\tc47.937,0,83.098,13.673,120.966,83.561c1.606,2.964,3.214,5.948,4.827,8.944c0.438,0.812,0.875,1.627,1.314,2.444\r\n\t\t\tc3.01-5.438,6.107-10.917,9.339-16.394C199.977,221.935,199.504,221.056,199.034,220.189z"},"children":[{"name":"path","attribs":{"d":"M199.034,220.189c-19.836-36.607-40.979-61.242-64.64-75.314C120.573,136.654,101.401,128,64,128v16.25\r\n\t\t\tc47.937,0,83.098,13.673,120.966,83.561c1.606,2.964,3.214,5.948,4.827,8.944c0.438,0.812,0.875,1.627,1.314,2.444\r\n\t\t\tc3.01-5.438,6.107-10.917,9.339-16.394C199.977,221.935,199.504,221.056,199.034,220.189z"},"children":[]}]},{"name":"path","attribs":{"d":"M362.121,304.854L352,317.146L413.784,368h-46.117c-72.693,0-110.496-45.207-140.028-95.592\r\n\t\t\tc-1.768,3.275-3.525,6.551-5.273,9.814c-1.175,2.192-2.344,4.37-3.513,6.545C249.621,338.777,291.254,384,367.667,384h46.28\r\n\t\t\tL352,435.854L362.121,448L448,376L362.121,304.854z"},"children":[{"name":"path","attribs":{"d":"M362.121,304.854L352,317.146L413.784,368h-46.117c-72.693,0-110.496-45.207-140.028-95.592\r\n\t\t\tc-1.768,3.275-3.525,6.551-5.273,9.814c-1.175,2.192-2.344,4.37-3.513,6.545C249.621,338.777,291.254,384,367.667,384h46.28\r\n\t\t\tL352,435.854L362.121,448L448,376L362.121,304.854z"},"children":[]}]}]}]}]}]};exports.iosShuffle=iosShuffle;var iosSkipbackwardOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M96,96v320h79V274.2L416,416V96L175,237.8V96H96z M175.6,256l7.6-4.4L400,124v0v264L183.1,260.4L175.6,256z M112,112h47\r\n\tv125.8v28v8.5V400h-47V112z"},"children":[]}]};exports.iosSkipbackwardOutline=iosSkipbackwardOutline;var iosSkipbackward={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M96,96v320h79V274.2L416,416V96L175,237.8V96H96z"},"children":[]}]};exports.iosSkipbackward=iosSkipbackward;var iosSkipforwardOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M337,96v141.8L96,96v320l241-141.8V416h79V96H337z M328.9,260.4L112,388V124v0l216.9,127.6l7.6,4.4L328.9,260.4z M400,400\r\n\th-47V274.2v-8.5v-28V112h47V400z"},"children":[]}]};exports.iosSkipforwardOutline=iosSkipforwardOutline;var iosSkipforward={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M337,96v141.8L96,96v320l241-141.8V416h79V96H337z"},"children":[]}]};exports.iosSkipforward=iosSkipforward;var iosSnowy={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M379.9,317l-28.7-16.3c6.1-5.8,13-9.7,20.7-12.3c4.3-1.4,6.5-5.9,5.1-10.1c-1.4-4.2-6-6.5-10.3-5.1\r\n\tc-11.6,3.8-22.2,11-30.1,19.2L272.3,256l64.2-36.4c8.4,9.1,18.6,15.4,30.2,19.2c4.3,1.4,8.9-0.8,10.3-5c1.4-4.2-0.8-8.7-5.1-10.1\r\n\tc-7.8-2.6-14.8-6.5-20.9-12.3l28.8-16.3c3.9-2.2,5.2-7.1,3-10.9s-7.2-5.1-11.1-2.9L343,197.3c-2-8.1-2.1-15.9-0.5-23.8\r\n\tc0.9-4.3-2-8.5-6.4-9.4c-4.4-0.9-8.7,1.9-9.6,6.2c-2.4,11.8-1.4,24.4,1.8,35.2L264,242.2v-73c11-2.7,22.4-8.1,31.5-16.1\r\n\tc3.3-2.9,3.6-8,0.7-11.3c-2.9-3.3-7.9-3.6-11.3-0.7c-6,5.3-12.9,9.2-20.9,11.5V120c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v32.7\r\n\tc-8-2.3-14.8-6.2-20.9-11.6c-3.3-2.9-8.4-2.6-11.3,0.7c-2.9,3.3-2.6,8.4,0.7,11.3c9.1,8,19.5,13.5,31.5,16.1v73l-64.5-36.6\r\n\tc3.2-10.9,4.2-23.5,1.9-35.2c-0.9-4.3-5.2-7.1-9.6-6.2c-4.4,0.9-7.2,5-6.4,9.4c1.6,7.9,1.6,15.7-0.5,23.8L140.3,181\r\n\tc-3.9-2.2-8.9-0.9-11.1,2.9c-2.2,3.8-0.9,8.7,3,10.9l28.8,16.3c-6.1,5.8-13,9.7-20.8,12.3c-4.3,1.4-6.5,6-5.1,10.1\r\n\tc1.4,4.2,6.1,6.4,10.3,5c11.6-3.9,21.8-10.1,30.2-19.2l64.3,36.5l-64.4,36.5c-7.9-8.2-18.6-15.3-30.1-19.2\r\n\tc-4.3-1.4-8.8,0.9-10.3,5.1c-1.4,4.2,0.8,8.7,5.1,10.1c7.7,2.6,14.6,6.5,20.7,12.3l-28.7,16.3c-3.9,2.2-5.2,7.1-3,10.9\r\n\ts7.2,5.1,11.1,2.9l28.8-16.3c2.1,8.1,2.1,15.9,0.4,23.9c-0.9,4.3,2,8.5,6.4,9.4c4.4,0.9,8.7-1.9,9.6-6.3c2.4-11.8,1.9-23.6-1.9-35.3\r\n\tl64.5-36.6v73.1c-12,2.6-22.4,8.1-31.5,16.1c-3.3,2.9-3.6,8-0.7,11.3c2.9,3.3,7.9,3.6,11.3,0.7c6.1-5.4,12.9-9.3,20.9-11.6V392\r\n\tc0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8v-32.6c8,2.3,14.8,6.2,20.9,11.5c3.3,2.9,8.3,2.6,11.3-0.7c2.9-3.3,2.6-8.4-0.7-11.3\r\n\tc-9-7.9-20.4-13.4-31.4-16.1v-73.1l64.4,36.5c-3.8,11.7-4.2,23.5-1.8,35.3c0.9,4.3,5.2,7.1,9.6,6.3c4.4-0.9,7.3-5.1,6.4-9.4\r\n\tc-1.6-8-1.6-15.8,0.4-23.9l28.8,16.3c3.9,2.2,8.9,0.9,11.1-2.9C385.2,324.1,383.8,319.2,379.9,317z"},"children":[]}]};exports.iosSnowy=iosSnowy;var iosSpeedometerOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\tc3.059-3.49,6.232-6.834,9.539-10.141c0.48-0.48,0.972-0.947,1.456-1.422c18.78-18.426,40.521-32.949,64.664-43.161\r\n\t\tc25.633-10.842,52.871-16.339,80.958-16.339s55.325,5.497,80.958,16.339c24.144,10.212,45.884,24.735,64.664,43.161\r\n\t\tc0.484,0.475,0.976,0.941,1.456,1.422c3.307,3.307,6.48,6.65,9.539,10.141c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M447.661,369.177\r\n\t\tc-8.663,20.481-20.429,39.092-35.044,55.776c-40.39-39.51-95.653-63.945-156.617-63.945s-116.228,24.33-156.617,63.84\r\n\t\tc-14.615-16.685-26.381-35.172-35.044-55.653c-9.81-23.19-15.228-47.694-16.173-72.694H79.5v-16H48.166\r\n\t\tc0.945-25,6.363-50.048,16.173-73.239c9.372-22.157,22.376-42.431,38.692-60.11l26.932,26.893l5.496-5.538l5.277-5.264l-0.02-0.027\r\n\t\tl0.547-0.552l-26.951-26.984c17.862-16.647,38.004-29.894,60.479-39.4c23.191-9.81,47.708-15.229,72.708-16.174V117.5h16V80.104\r\n\t\tc26,0.945,50.017,6.363,73.208,16.173c22.437,9.49,42.921,22.706,60.762,39.312l-26.975,27.069l0.577,0.547l-0.004,0.019\r\n\t\tl5.285,5.246l5.5,5.503l27.026-27.057c16.356,17.703,29.392,38.148,38.78,60.345c9.81,23.191,15.229,48.239,16.174,73.239H431.5v16\r\n\t\th32.334C462.889,321.5,457.471,345.986,447.661,369.177z"},"children":[{"name":"path","attribs":{"d":"M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\tc3.059-3.49,6.232-6.834,9.539-10.141c0.48-0.48,0.972-0.947,1.456-1.422c18.78-18.426,40.521-32.949,64.664-43.161\r\n\t\tc25.633-10.842,52.871-16.339,80.958-16.339s55.325,5.497,80.958,16.339c24.144,10.212,45.884,24.735,64.664,43.161\r\n\t\tc0.484,0.475,0.976,0.941,1.456,1.422c3.307,3.307,6.48,6.65,9.539,10.141c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M447.661,369.177\r\n\t\tc-8.663,20.481-20.429,39.092-35.044,55.776c-40.39-39.51-95.653-63.945-156.617-63.945s-116.228,24.33-156.617,63.84\r\n\t\tc-14.615-16.685-26.381-35.172-35.044-55.653c-9.81-23.19-15.228-47.694-16.173-72.694H79.5v-16H48.166\r\n\t\tc0.945-25,6.363-50.048,16.173-73.239c9.372-22.157,22.376-42.431,38.692-60.11l26.932,26.893l5.496-5.538l5.277-5.264l-0.02-0.027\r\n\t\tl0.547-0.552l-26.951-26.984c17.862-16.647,38.004-29.894,60.479-39.4c23.191-9.81,47.708-15.229,72.708-16.174V117.5h16V80.104\r\n\t\tc26,0.945,50.017,6.363,73.208,16.173c22.437,9.49,42.921,22.706,60.762,39.312l-26.975,27.069l0.577,0.547l-0.004,0.019\r\n\t\tl5.285,5.246l5.5,5.503l27.026-27.057c16.356,17.703,29.392,38.148,38.78,60.345c9.81,23.191,15.229,48.239,16.174,73.239H431.5v16\r\n\t\th32.334C462.889,321.5,457.471,345.986,447.661,369.177z"},"children":[]}]},{"name":"path","attribs":{"d":"M368.479,174.545l-85.484,73.727c-7.697-5.255-16.992-8.334-26.994-8.334c-26.467,0-48,21.533-48,48\r\n\t\tc0,10.479,3.385,20.178,9.106,28.08l-11.948,11.948l11.312,11.313l12.033-12.033c7.795,5.469,17.273,8.691,27.496,8.691\r\n\t\tc26.467,0,48-21.533,48-48c0-10.387-3.327-20.005-8.956-27.868l74.849-84.11L368.479,174.545z M256,319.938\r\n\t\tc-17.673,0-32-14.326-32-32c0-17.673,14.327-32,32-32s32,14.327,32,32C288,305.611,273.673,319.938,256,319.938z"},"children":[{"name":"path","attribs":{"d":"M368.479,174.545l-85.484,73.727c-7.697-5.255-16.992-8.334-26.994-8.334c-26.467,0-48,21.533-48,48\r\n\t\tc0,10.479,3.385,20.178,9.106,28.08l-11.948,11.948l11.312,11.313l12.033-12.033c7.795,5.469,17.273,8.691,27.496,8.691\r\n\t\tc26.467,0,48-21.533,48-48c0-10.387-3.327-20.005-8.956-27.868l74.849-84.11L368.479,174.545z M256,319.938\r\n\t\tc-17.673,0-32-14.326-32-32c0-17.673,14.327-32,32-32s32,14.327,32,32C288,305.611,273.673,319.938,256,319.938z"},"children":[]}]}]}]};exports.iosSpeedometerOutline=iosSpeedometerOutline;var iosSpeedometer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417,278.742V278h29.814c-0.931-23-6.056-45.609-14.831-66.151c-8.643-20.228-20.503-38.665-35.257-54.562l-24.867,24.646\r\n\t\tl-11.229-10.992l24.788-24.679c-16.187-14.836-34.86-26.742-55.515-35.392C308.479,101.897,286,97.092,263,96.186V130h-1.008H248\r\n\t\tV96.186c-23,0.894-44.95,5.699-66.404,14.685c-20.353,8.523-38.958,20.457-55.315,35.471l24.796,24.583l-0.549,0.549l0.001,0.006\r\n\t\tl-0.29,0.335l-10.27,10.203l-24.779-24.479c-14.77,15.932-26.604,34.243-35.176,54.309C71.241,232.388,66.117,255,65.187,278H94v16\r\n\t\th-0.776H65.187c0.926,22,5.915,44.432,14.829,65.297c7.689,18.001,18.398,34.664,31.831,49.926\r\n\t\tc38.785-37.377,89.958-57.928,144.154-57.928c54.113,0,105.286,20.676,144.154,58.135c13.354-15.175,24.061-31.979,31.83-50.166\r\n\t\tC440.9,338.396,445.889,316,446.814,294H417V278.742z M304,287.938c0,26.467-21.533,48-48,48c-10.223,0-19.701-3.223-27.496-8.691\r\n\t\tl-12.033,12.033l-11.312-11.313l11.948-11.948c-5.722-7.902-9.106-17.602-9.106-28.08c0-26.467,21.533-48,48-48\r\n\t\tc10.002,0,19.297,3.079,26.994,8.334l73.484-65.727l1.414,1.414l-62.849,76.11C300.673,267.933,304,277.551,304,287.938z"},"children":[{"name":"path","attribs":{"d":"M417,278.742V278h29.814c-0.931-23-6.056-45.609-14.831-66.151c-8.643-20.228-20.503-38.665-35.257-54.562l-24.867,24.646\r\n\t\tl-11.229-10.992l24.788-24.679c-16.187-14.836-34.86-26.742-55.515-35.392C308.479,101.897,286,97.092,263,96.186V130h-1.008H248\r\n\t\tV96.186c-23,0.894-44.95,5.699-66.404,14.685c-20.353,8.523-38.958,20.457-55.315,35.471l24.796,24.583l-0.549,0.549l0.001,0.006\r\n\t\tl-0.29,0.335l-10.27,10.203l-24.779-24.479c-14.77,15.932-26.604,34.243-35.176,54.309C71.241,232.388,66.117,255,65.187,278H94v16\r\n\t\th-0.776H65.187c0.926,22,5.915,44.432,14.829,65.297c7.689,18.001,18.398,34.664,31.831,49.926\r\n\t\tc38.785-37.377,89.958-57.928,144.154-57.928c54.113,0,105.286,20.676,144.154,58.135c13.354-15.175,24.061-31.979,31.83-50.166\r\n\t\tC440.9,338.396,445.889,316,446.814,294H417V278.742z M304,287.938c0,26.467-21.533,48-48,48c-10.223,0-19.701-3.223-27.496-8.691\r\n\t\tl-12.033,12.033l-11.312-11.313l11.948-11.948c-5.722-7.902-9.106-17.602-9.106-28.08c0-26.467,21.533-48,48-48\r\n\t\tc10.002,0,19.297,3.079,26.994,8.334l73.484-65.727l1.414,1.414l-62.849,76.11C300.673,267.933,304,277.551,304,287.938z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\th22.193c31.713-39.103,80.144-64.096,134.424-64.096S358.711,408.897,390.424,448h22.193c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M410.744,420.797\r\n\t\tc-3.051,3.408-6.392,6.863-10.213,10.564l-0.376,0.365l-0.348-0.393c-2.629-2.97-5.493-5.985-8.759-9.22\r\n\t\tc-0.275-0.271-0.555-0.539-0.834-0.807l-0.504-0.485c-17.258-16.766-37.234-29.967-59.375-39.238\r\n\t\tc-23.535-9.856-48.545-14.854-74.336-14.854c-25.791,0-50.801,4.998-74.336,14.854c-22.14,9.271-42.117,22.473-59.375,39.238\r\n\t\tl-0.504,0.485c-0.279,0.268-0.558,0.535-0.833,0.807c-3.266,3.234-6.13,6.25-8.759,9.22l-0.348,0.393l-0.377-0.365\r\n\t\tc-3.821-3.701-7.162-7.156-10.212-10.564c-33.514-37.441-51.971-85.629-51.971-135.685c0-54.666,21.502-106.053,60.545-144.694\r\n\t\tC148.87,101.779,200.781,80.5,256,80.5c55.22,0,107.13,21.279,146.17,59.918c39.043,38.642,60.545,90.029,60.545,144.694\r\n\t\tC462.715,335.168,444.259,383.355,410.744,420.797z"},"children":[{"name":"path","attribs":{"d":"M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\th22.193c31.713-39.103,80.144-64.096,134.424-64.096S358.711,408.897,390.424,448h22.193c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M410.744,420.797\r\n\t\tc-3.051,3.408-6.392,6.863-10.213,10.564l-0.376,0.365l-0.348-0.393c-2.629-2.97-5.493-5.985-8.759-9.22\r\n\t\tc-0.275-0.271-0.555-0.539-0.834-0.807l-0.504-0.485c-17.258-16.766-37.234-29.967-59.375-39.238\r\n\t\tc-23.535-9.856-48.545-14.854-74.336-14.854c-25.791,0-50.801,4.998-74.336,14.854c-22.14,9.271-42.117,22.473-59.375,39.238\r\n\t\tl-0.504,0.485c-0.279,0.268-0.558,0.535-0.833,0.807c-3.266,3.234-6.13,6.25-8.759,9.22l-0.348,0.393l-0.377-0.365\r\n\t\tc-3.821-3.701-7.162-7.156-10.212-10.564c-33.514-37.441-51.971-85.629-51.971-135.685c0-54.666,21.502-106.053,60.545-144.694\r\n\t\tC148.87,101.779,200.781,80.5,256,80.5c55.22,0,107.13,21.279,146.17,59.918c39.043,38.642,60.545,90.029,60.545,144.694\r\n\t\tC462.715,335.168,444.259,383.355,410.744,420.797z"},"children":[]}]},{"name":"circle","attribs":{"cx":"256","cy":"287.938","r":"32"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"287.938","r":"32"},"children":[]}]}]}]};exports.iosSpeedometer=iosSpeedometer;var iosStarHalf={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M172.248,304.931l-54.677,159.073L256,365.37l138.445,98.634L339.76,304.937L480,207H308.613L256,48.005L203.402,207H32\r\n\tL172.248,304.931z M256,100.75L297,224h131l-108,74.711l42.623,122.481L256,345.257V100.75z"},"children":[]}]};exports.iosStarHalf=iosStarHalf;var iosStarOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M480,207H308.6L256,47.9L203.4,207H32l140.2,97.9L117.6,464L256,365.4L394.4,464l-54.7-159.1L480,207z M362.6,421.2\r\n\tl-106.6-76l-106.6,76L192,298.7L84,224h131l41-123.3L297,224h131l-108,74.6L362.6,421.2z"},"children":[]}]};exports.iosStarOutline=iosStarOutline;var iosStar={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M480,207H308.6L256,47.9L203.4,207H32l140.2,97.9L117.6,464L256,365.4L394.4,464l-54.7-159.1L480,207z"},"children":[]}]};exports.iosStar=iosStar;var iosStopwatchOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M256.3,445.7c-95.5,0-173.1-76.7-173.1-170.9c0-94.3,77.7-170.9,173.1-170.9c95.5,0,173.1,76.7,173.1,170.9\r\n\t\tC429.5,369,351.8,445.7,256.3,445.7z"},"children":[{"name":"path","attribs":{"d":"M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M256.3,445.7c-95.5,0-173.1-76.7-173.1-170.9c0-94.3,77.7-170.9,173.1-170.9c95.5,0,173.1,76.7,173.1,170.9\r\n\t\tC429.5,369,351.8,445.7,256.3,445.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M264,257.3V128h-16v129.4c-12.5,4.3-24,16.5-24,30.3c0,14.7,10,27,24,30.5l8,17.8l0,0l8-17.8c14-3.5,24-15.8,24-30.5\r\n\t\tC288,273.2,277.5,261,264,257.3z"},"children":[{"name":"path","attribs":{"d":"M264,257.3V128h-16v129.4c-12.5,4.3-24,16.5-24,30.3c0,14.7,10,27,24,30.5l8,17.8l0,0l8-17.8c14-3.5,24-15.8,24-30.5\r\n\t\tC288,273.2,277.5,261,264,257.3z"},"children":[]}]}]}]};exports.iosStopwatchOutline=iosStopwatchOutline;var iosStopwatch={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M264,318.2l-8,17.8l-8-17.8c-14-3.5-24-15.8-24-30.5c0-13.8,11.5-26,24-30.3V128h16v129.3c13.5,3.7,24,15.9,24,30.4\r\n\t\tC288,302.4,278,314.7,264,318.2z"},"children":[{"name":"path","attribs":{"d":"M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M264,318.2l-8,17.8l-8-17.8c-14-3.5-24-15.8-24-30.5c0-13.8,11.5-26,24-30.3V128h16v129.3c13.5,3.7,24,15.9,24,30.4\r\n\t\tC288,302.4,278,314.7,264,318.2z"},"children":[]}]}]}]};exports.iosStopwatch=iosStopwatch;var iosSunnyOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"247","y":"96","class":"st0","width":"18","height":"56"},"children":[{"name":"rect","attribs":{"x":"247","y":"96","class":"st0","width":"18","height":"56"},"children":[]}]},{"name":"rect","attribs":{"x":"247","y":"356","class":"st0","width":"18","height":"60"},"children":[{"name":"rect","attribs":{"x":"247","y":"356","class":"st0","width":"18","height":"60"},"children":[]}]},{"name":"rect","attribs":{"x":"360","y":"247","class":"st0","width":"56","height":"18"},"children":[{"name":"rect","attribs":{"x":"360","y":"247","class":"st0","width":"56","height":"18"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"247","class":"st0","width":"60","height":"18"},"children":[{"name":"rect","attribs":{"x":"96","y":"247","class":"st0","width":"60","height":"18"},"children":[]}]},{"name":"rect","attribs":{"x":"339","y":"317.4","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)","class":"st0","width":"16.8","height":"47.8"},"children":[{"name":"rect","attribs":{"x":"339","y":"317.4","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)","class":"st0","width":"16.8","height":"47.8"},"children":[]}]},{"name":"rect","attribs":{"x":"162.2","y":"140.7","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)","class":"st0","width":"16.8","height":"47.9"},"children":[{"name":"rect","attribs":{"x":"162.2","y":"140.7","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)","class":"st0","width":"16.8","height":"47.9"},"children":[]}]},{"name":"rect","attribs":{"x":"339","y":"140.7","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)","class":"st0","width":"16.8","height":"47.8"},"children":[{"name":"rect","attribs":{"x":"339","y":"140.7","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)","class":"st0","width":"16.8","height":"47.8"},"children":[]}]},{"name":"rect","attribs":{"x":"162.2","y":"317.4","transform":"matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)","class":"st0","width":"16.8","height":"47.9"},"children":[{"name":"rect","attribs":{"x":"162.2","y":"317.4","transform":"matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)","class":"st0","width":"16.8","height":"47.9"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z\r\n\t\t M256,197.1c-32.5,0-58.9,26.4-58.9,58.9s26.4,58.9,58.9,58.9c32.5,0,58.9-26.4,58.9-58.9S288.5,197.1,256,197.1z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z\r\n\t\t M256,197.1c-32.5,0-58.9,26.4-58.9,58.9s26.4,58.9,58.9,58.9c32.5,0,58.9-26.4,58.9-58.9S288.5,197.1,256,197.1z"},"children":[]}]}]}]};exports.iosSunnyOutline=iosSunnyOutline;var iosSunny={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"247","y":"96","class":"st0","width":"18","height":"56"},"children":[{"name":"rect","attribs":{"x":"247","y":"96","class":"st0","width":"18","height":"56"},"children":[]}]},{"name":"rect","attribs":{"x":"247","y":"356","class":"st0","width":"18","height":"60"},"children":[{"name":"rect","attribs":{"x":"247","y":"356","class":"st0","width":"18","height":"60"},"children":[]}]},{"name":"rect","attribs":{"x":"360","y":"247","class":"st0","width":"56","height":"18"},"children":[{"name":"rect","attribs":{"x":"360","y":"247","class":"st0","width":"56","height":"18"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"247","class":"st0","width":"60","height":"18"},"children":[{"name":"rect","attribs":{"x":"96","y":"247","class":"st0","width":"60","height":"18"},"children":[]}]},{"name":"rect","attribs":{"x":"339","y":"317.4","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)","class":"st0","width":"16.8","height":"47.8"},"children":[{"name":"rect","attribs":{"x":"339","y":"317.4","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)","class":"st0","width":"16.8","height":"47.8"},"children":[]}]},{"name":"rect","attribs":{"x":"162.2","y":"140.7","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)","class":"st0","width":"16.8","height":"47.9"},"children":[{"name":"rect","attribs":{"x":"162.2","y":"140.7","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)","class":"st0","width":"16.8","height":"47.9"},"children":[]}]},{"name":"rect","attribs":{"x":"339","y":"140.7","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)","class":"st0","width":"16.8","height":"47.8"},"children":[{"name":"rect","attribs":{"x":"339","y":"140.7","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)","class":"st0","width":"16.8","height":"47.8"},"children":[]}]},{"name":"rect","attribs":{"x":"162.2","y":"317.4","transform":"matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)","class":"st0","width":"16.8","height":"47.9"},"children":[{"name":"rect","attribs":{"x":"162.2","y":"317.4","transform":"matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)","class":"st0","width":"16.8","height":"47.9"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z"},"children":[]}]}]}]};exports.iosSunny=iosSunny;var iosTelephoneOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M415.9,335.5c-14.6-15-56.1-43.1-83.3-43.1c-6.3,0-11.8,1.4-16.3,4.3c-13.3,8.5-23.9,15.1-29,15.1c-2.8,0-5.8-2.5-12.4-8.2\r\n\tl-1.1-1c-18.3-15.9-22.2-20-29.3-27.4l-1.8-1.9c-1.3-1.3-2.4-2.5-3.5-3.6c-6.2-6.4-10.7-11-26.6-29l-0.7-0.8\r\n\tc-7.6-8.6-12.6-14.2-12.9-18.3c-0.3-4,3.2-10.5,12.1-22.6c10.8-14.6,11.2-32.6,1.3-53.5c-7.9-16.5-20.8-32.3-32.2-46.2l-1-1.2\r\n\tc-9.8-12-21.2-18-33.9-18c-14.1,0-25.8,7.6-32,11.6c-0.5,0.3-1,0.7-1.5,1c-13.9,8.8-24,20.9-27.8,33.2c-5.7,18.5-9.5,42.5,17.8,92.4\r\n\tc23.6,43.2,45,72.2,79,107.1c32,32.8,46.2,43.4,78,66.4c35.4,25.6,69.4,40.3,93.2,40.3c22.1,0,39.5,0,64.3-29.9\r\n\tC442.3,370.8,431.5,351.6,415.9,335.5z M404.4,391.4c-20,24.2-31.5,24.2-52.3,24.2c-20.3,0-51.8-14-84.2-37.3\r\n\tc-31-22.4-44.8-32.7-75.9-64.6c-32.9-33.7-53.6-61.8-76.4-103.5c-24.1-44.1-21.4-63.4-16.5-79.3c2.6-8.5,10.4-17.6,21-24.2\r\n\tc0.5-0.3,1-0.7,1.6-1c5.3-3.4,14.1-9.1,23.7-9.1c8,0,15.1,4,21.9,12.3l1,1.2c25.5,31.2,45.4,58.8,30.4,79.2\r\n\tc-10.6,14.3-16.2,24-15.3,34c0.8,9.7,7.3,17,17.1,28l0.7,0.8c16.1,18.2,20.7,23,27.1,29.5c1.1,1.1,2.2,2.3,3.5,3.6l1.8,1.9\r\n\tc7.4,7.7,11.5,11.9,30.3,28.4l1.1,1c8,7,13.9,12.1,22.5,12.1c8.9,0,18.7-5.6,37.3-17.5c1.9-1.2,4.6-1.9,8-1.9\r\n\tc21.7,0,59.1,24.8,72.2,38.3C417,359.7,423,368.9,404.4,391.4z"},"children":[]}]};exports.iosTelephoneOutline=iosTelephoneOutline;var iosTelephone={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M415.9,335.5c-14.6-15-56.1-43.1-83.3-43.1c-6.3,0-11.8,1.4-16.3,4.3c-13.3,8.5-23.9,15.1-29,15.1c-2.8,0-5.8-2.5-12.4-8.2\r\n\tl-1.1-1c-18.3-15.9-22.2-20-29.3-27.4l-1.8-1.9c-1.3-1.3-2.4-2.5-3.5-3.6c-6.2-6.4-10.7-11-26.6-29l-0.7-0.8\r\n\tc-7.6-8.6-12.6-14.2-12.9-18.3c-0.3-4,3.2-10.5,12.1-22.6c10.8-14.6,11.2-32.6,1.3-53.5c-7.9-16.5-20.8-32.3-32.2-46.2l-1-1.2\r\n\tc-9.8-12-21.2-18-33.9-18c-14.1,0-25.8,7.6-32,11.6c-0.5,0.3-1,0.7-1.5,1c-13.9,8.8-24,20.9-27.8,33.2c-5.7,18.5-9.5,42.5,17.8,92.4\r\n\tc23.6,43.2,45,72.2,79,107.1c32,32.8,46.2,43.4,78,66.4c35.4,25.6,69.4,40.3,93.2,40.3c22.1,0,39.5,0,64.3-29.9\r\n\tC442.3,370.8,431.5,351.6,415.9,335.5z"},"children":[]}]};exports.iosTelephone=iosTelephone;var iosTennisballOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M464,256c0-114.863-93.13-208-208-208C141.137,48,48,141.136,48,256c0,114.863,93.137,208,208,208\r\n\tc2.541,0,5.068-0.062,7.587-0.152c0.479-0.017,0.957-0.034,1.435-0.055c0.942-0.04,1.884-0.083,2.823-0.136\r\n\tc0.85-0.047,1.698-0.104,2.547-0.161c0.639-0.044,1.279-0.08,1.917-0.13c1.354-0.104,2.705-0.221,4.055-0.352\r\n\tc0-0.003,0-0.006,0-0.009c97.47-9.474,175.229-86.229,186.274-183.223c0.02-0.001,0.038,0,0.057-0.001\r\n\tc0.604-5.315,1.002-10.667,1.196-16.05c-0.016,0.001-0.032,0.001-0.049,0.001C463.937,261.166,464,258.591,464,256z M446.665,256\r\n\tc0,2.568-0.066,5.121-0.167,7.664c-23.639-1.076-46.677-6.106-68.616-15.005c-25.791-10.458-48.938-25.831-68.797-45.691\r\n\tc-19.86-19.86-35.233-43.007-45.692-68.797c-8.903-21.956-13.935-45.014-15.006-68.67c2.527-0.1,5.063-0.165,7.614-0.165\r\n\tC361.13,65.335,446.665,150.869,446.665,256z M65.337,256c0-1.318,0.023-2.631,0.05-3.942c22.476,1.379,44.388,6.337,65.3,14.817\r\n\tc25.791,10.458,48.938,25.831,68.798,45.691c19.86,19.859,35.232,43.007,45.691,68.798c8.474,20.896,13.43,42.792,14.814,65.249\r\n\tc-1.328,0.027-2.656,0.051-3.99,0.051C150.87,446.664,65.336,361.13,65.337,256z M275.943,445.623\r\n\tc-3.273-52.566-24.974-104.198-65.145-144.369c-40.186-40.186-91.84-61.889-144.427-65.15\r\n\tc9.172-88.053,78.52-158.478,166.074-169.313c2.595,53.64,24.36,106.525,65.326,147.49c40.949,40.952,93.811,62.713,147.433,65.322\r\n\tC434.351,367.118,363.957,436.432,275.943,445.623z"},"children":[]}]};exports.iosTennisballOutline=iosTennisballOutline;var iosTennisball={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M48.05,251.556c-0.001,0.039-0.003,0.077-0.004,0.116c0,0,0.002,0,0.003,0C48.049,251.634,48.049,251.595,48.05,251.556z"},"children":[{"name":"path","attribs":{"d":"M48.05,251.556c-0.001,0.039-0.003,0.077-0.004,0.116c0,0,0.002,0,0.003,0C48.049,251.634,48.049,251.595,48.05,251.556z"},"children":[]}]},{"name":"path","attribs":{"d":"M260.311,463.915c0.066-0.002,0.133-0.006,0.199-0.007c-0.066,0.001-0.133,0.001-0.199,0.004\r\n\t\tC260.311,463.912,260.311,463.913,260.311,463.915z"},"children":[{"name":"path","attribs":{"d":"M260.311,463.915c0.066-0.002,0.133-0.006,0.199-0.007c-0.066,0.001-0.133,0.001-0.199,0.004\r\n\t\tC260.311,463.912,260.311,463.913,260.311,463.915z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,48.001c-2.586,0-5.29,0.064-7.852,0.158L248,48.153c0,0.003,0,0.004,0,0.006c-5,0.199-10,0.602-16,1.205\r\n\t\tc0-0.002,0-0.004,0-0.008c0,0.005,0.083,0.008,0.072,0.012c-96.974,11.061-173.654,88.975-183.13,186.41\r\n\t\tc-0.004,0.018,0.045,0.222,0.042,0.222c0.003,0,0.004,0,0.007,0c-0.513,5-0.826,10-0.936,16c-0.001,0-0.003,0-0.004,0l0.003-0.152\r\n\t\tc-0.028,1.43-0.054,2.777-0.054,4.215c0,114.852,92.977,207.938,207.841,207.938c6.856,0,14.159-0.383,20.159-1.031\r\n\t\tc0,0.002,0,0.006,0,0.006c0-0.004,0.213-0.008,0.24-0.014c97.436-9.486,175.247-86.086,186.312-183.036\r\n\t\tc0.004-0.014,0.088,0.074,0.092,0.074c-0.002,0-0.006,0-0.008,0c0.889-8,1.363-15.859,1.363-23.904\r\n\t\tC464,141.245,370.87,48.001,256,48.001z M130.63,266.853c-20.895-8.474-42.788-13.43-65.244-14.816\r\n\t\tc0.11-5.374,0.438-10.695,0.986-15.952c52.568,3.275,104.203,24.977,144.375,65.146c40.172,40.169,61.876,91.797,65.152,144.359\r\n\t\tc-5.257,0.548-10.579,0.876-15.954,0.985c-1.385-22.453-6.342-44.344-14.816-65.236c-10.459-25.79-25.834-48.937-45.696-68.795\r\n\t\tC179.572,292.684,156.423,277.311,130.63,266.853z M297.722,214.265c-40.964-40.959-62.731-93.835-65.332-147.467\r\n\t\tc5.25-0.652,10.568-1.08,15.941-1.293c1.073,23.65,6.105,46.702,15.007,68.654c10.461,25.79,25.835,48.936,45.696,68.795\r\n\t\tc19.862,19.859,43.01,35.232,68.803,45.691c21.954,8.901,45.008,13.933,68.66,15.007c-0.213,5.37-0.643,10.689-1.293,15.939\r\n\t\tC391.564,276.989,338.686,255.225,297.722,214.265z"},"children":[{"name":"path","attribs":{"d":"M256,48.001c-2.586,0-5.29,0.064-7.852,0.158L248,48.153c0,0.003,0,0.004,0,0.006c-5,0.199-10,0.602-16,1.205\r\n\t\tc0-0.002,0-0.004,0-0.008c0,0.005,0.083,0.008,0.072,0.012c-96.974,11.061-173.654,88.975-183.13,186.41\r\n\t\tc-0.004,0.018,0.045,0.222,0.042,0.222c0.003,0,0.004,0,0.007,0c-0.513,5-0.826,10-0.936,16c-0.001,0-0.003,0-0.004,0l0.003-0.152\r\n\t\tc-0.028,1.43-0.054,2.777-0.054,4.215c0,114.852,92.977,207.938,207.841,207.938c6.856,0,14.159-0.383,20.159-1.031\r\n\t\tc0,0.002,0,0.006,0,0.006c0-0.004,0.213-0.008,0.24-0.014c97.436-9.486,175.247-86.086,186.312-183.036\r\n\t\tc0.004-0.014,0.088,0.074,0.092,0.074c-0.002,0-0.006,0-0.008,0c0.889-8,1.363-15.859,1.363-23.904\r\n\t\tC464,141.245,370.87,48.001,256,48.001z M130.63,266.853c-20.895-8.474-42.788-13.43-65.244-14.816\r\n\t\tc0.11-5.374,0.438-10.695,0.986-15.952c52.568,3.275,104.203,24.977,144.375,65.146c40.172,40.169,61.876,91.797,65.152,144.359\r\n\t\tc-5.257,0.548-10.579,0.876-15.954,0.985c-1.385-22.453-6.342-44.344-14.816-65.236c-10.459-25.79-25.834-48.937-45.696-68.795\r\n\t\tC179.572,292.684,156.423,277.311,130.63,266.853z M297.722,214.265c-40.964-40.959-62.731-93.835-65.332-147.467\r\n\t\tc5.25-0.652,10.568-1.08,15.941-1.293c1.073,23.65,6.105,46.702,15.007,68.654c10.461,25.79,25.835,48.936,45.696,68.795\r\n\t\tc19.862,19.859,43.01,35.232,68.803,45.691c21.954,8.901,45.008,13.933,68.66,15.007c-0.213,5.37-0.643,10.689-1.293,15.939\r\n\t\tC391.564,276.989,338.686,255.225,297.722,214.265z"},"children":[]}]}]}]};exports.iosTennisball=iosTennisball;var iosThunderstormOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"class":"st0","points":"312,272 272,272 288,224 216,224 201,304 253.3,304 224,400 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"312,272 272,272 288,224 216,224 201,304 253.3,304 224,400 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M328.4,172.7c-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5\r\n\t\t\tc0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3H182v-17h-11.3c-9.5,0-18.5-4.1-25.4-11\r\n\t\t\tc-6.8-7-10.6-16.3-10.6-26c0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.3,14.2-1.8c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\t\tc0-34.6,28.1-62.7,62.6-62.7c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\t\tc26.9,0,48.8,22.3,48.8,49.4c0,27.1-21.9,49.4-48.8,49.4H320v17h8.4c35.7,0,64.6-30.1,64.6-65.9\r\n\t\t\tC393,202.4,364.1,172.7,328.4,172.7z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M328.4,172.7c-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5\r\n\t\t\tc0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3H182v-17h-11.3c-9.5,0-18.5-4.1-25.4-11\r\n\t\t\tc-6.8-7-10.6-16.3-10.6-26c0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.3,14.2-1.8c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\t\tc0-34.6,28.1-62.7,62.6-62.7c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\t\tc26.9,0,48.8,22.3,48.8,49.4c0,27.1-21.9,49.4-48.8,49.4H320v17h8.4c35.7,0,64.6-30.1,64.6-65.9\r\n\t\t\tC393,202.4,364.1,172.7,328.4,172.7z"},"children":[]}]}]}]}]}]};exports.iosThunderstormOutline=iosThunderstormOutline;var iosThunderstorm={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"class":"st0","points":"272,272 288,224 216,224 201,304 253.3,304 224,400 290,304 312,272 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"272,272 288,224 216,224 201,304 253.3,304 224,400 290,304 312,272 \t"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M202.7,208l107.5,0l-16,48H312h30.4l-33,48h19c35.7,0,64.6-30.1,64.6-65.9c0-35.8-28.9-65.5-64.6-65.5\r\n\t\tc-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8\r\n\t\tc-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3h14"},"children":[{"name":"path","attribs":{"class":"st0","d":"M202.7,208l107.5,0l-16,48H312h30.4l-33,48h19c35.7,0,64.6-30.1,64.6-65.9c0-35.8-28.9-65.5-64.6-65.5\r\n\t\tc-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8\r\n\t\tc-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3h14"},"children":[]}]}]}]};exports.iosThunderstorm=iosThunderstorm;var iosTimeOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\t\tC480,132.3,379.7,32,256,32z M403.1,403.1c-19.1,19.1-41.4,34.1-66.1,44.6c-25.6,10.8-52.9,16.3-81,16.3c-28.1,0-55.3-5.5-81-16.3\r\n\t\t\tc-24.8-10.5-47-25.5-66.1-44.6C89.8,384,74.8,361.7,64.3,337C53.5,311.3,48,284.1,48,256c0-28.1,5.5-55.3,16.3-81\r\n\t\t\tc10.5-24.8,25.5-47,44.6-66.1C128,89.8,150.3,74.8,175,64.3C200.7,53.5,227.9,48,256,48c28.1,0,55.3,5.5,81,16.3\r\n\t\t\tc24.8,10.5,47,25.5,66.1,44.6c19.1,19.1,34.1,41.4,44.6,66.1c10.8,25.6,16.3,52.9,16.3,81c0,28.1-5.5,55.3-16.3,81\r\n\t\t\tC437.2,361.7,422.2,384,403.1,403.1z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\t\tC480,132.3,379.7,32,256,32z M403.1,403.1c-19.1,19.1-41.4,34.1-66.1,44.6c-25.6,10.8-52.9,16.3-81,16.3c-28.1,0-55.3-5.5-81-16.3\r\n\t\t\tc-24.8-10.5-47-25.5-66.1-44.6C89.8,384,74.8,361.7,64.3,337C53.5,311.3,48,284.1,48,256c0-28.1,5.5-55.3,16.3-81\r\n\t\t\tc10.5-24.8,25.5-47,44.6-66.1C128,89.8,150.3,74.8,175,64.3C200.7,53.5,227.9,48,256,48c28.1,0,55.3,5.5,81,16.3\r\n\t\t\tc24.8,10.5,47,25.5,66.1,44.6c19.1,19.1,34.1,41.4,44.6,66.1c10.8,25.6,16.3,52.9,16.3,81c0,28.1-5.5,55.3-16.3,81\r\n\t\t\tC437.2,361.7,422.2,384,403.1,403.1z"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"256","cy":"80","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"256","cy":"80","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"256","cy":"432","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"256","cy":"432","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"432","cy":"256","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"432","cy":"256","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"80","cy":"256","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"80","cy":"256","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"168","cy":"103.6","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"168","cy":"103.6","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"344","cy":"408.4","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"344","cy":"408.4","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"408.4","cy":"168","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"408.4","cy":"168","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"103.6","cy":"344","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"103.6","cy":"344","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"103.6","cy":"168","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"103.6","cy":"168","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"408.4","cy":"344","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"408.4","cy":"344","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"344","cy":"103.6","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"344","cy":"103.6","r":"8"},"children":[]}]},{"name":"circle","attribs":{"class":"st0","cx":"168","cy":"408.4","r":"8"},"children":[{"name":"circle","attribs":{"class":"st0","cx":"168","cy":"408.4","r":"8"},"children":[]}]}]}]},{"name":"path","attribs":{"class":"st0","d":"M269.9,248c-2.9-5-8.1-7.8-13.4-8l-38-63.4c-2.3-3.8-7.2-5-11-2.7c-3.8,2.3-5,7.2-2.7,11l37.6,62.9\r\n\t\tc-2.9,4.8-3.2,11.1-0.2,16.3c1.5,2.5,3.5,4.5,5.9,5.8V392c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8V269.9\r\n\t\tC271.7,265.4,274.3,255.7,269.9,248z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M269.9,248c-2.9-5-8.1-7.8-13.4-8l-38-63.4c-2.3-3.8-7.2-5-11-2.7c-3.8,2.3-5,7.2-2.7,11l37.6,62.9\r\n\t\tc-2.9,4.8-3.2,11.1-0.2,16.3c1.5,2.5,3.5,4.5,5.9,5.8V392c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8V269.9\r\n\t\tC271.7,265.4,274.3,255.7,269.9,248z"},"children":[]}]}]}]};exports.iosTimeOutline=iosTimeOutline;var iosTime={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,132.3,379.7,32,256,32z M256,72c4.4,0,8,3.6,8,8s-3.6,8-8,8s-8-3.6-8-8S251.6,72,256,72z M80,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C88,260.4,84.4,264,80,264z M107.6,350.9c-3.8,2.2-8.7,0.9-10.9-2.9c-2.2-3.8-0.9-8.7,2.9-10.9\r\n\t\tc3.8-2.2,8.7-0.9,10.9,2.9C112.7,343.8,111.4,348.7,107.6,350.9z M110.5,172c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\ts7.1-5.1,10.9-2.9C111.4,163.3,112.7,168.2,110.5,172z M164,96.7c3.8-2.2,8.7-0.9,10.9,2.9c2.2,3.8,0.9,8.7-2.9,10.9\r\n\t\tc-3.8,2.2-8.7,0.9-10.9-2.9C158.9,103.8,160.2,98.9,164,96.7z M174.9,412.4c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\tc2.2-3.8,7.1-5.1,10.9-2.9S177.1,408.6,174.9,412.4z M256,440c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S260.4,440,256,440z M264,269.9\r\n\t\tV392c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V269.8c-2.4-1.4-4.4-3.3-5.9-5.8c-3-5.2-2.7-11.5,0.2-16.3l-37.6-62.9c-2.3-3.8-1-8.7,2.7-11\r\n\t\tc3.8-2.3,8.7-1,11,2.7l38,63.4c5.4,0.1,10.6,3,13.4,8C274.3,255.7,271.7,265.4,264,269.9z M348,415.3c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C353.1,408.2,351.8,413.1,348,415.3z M350.9,107.6c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C351.8,98.9,353.1,103.8,350.9,107.6z M415.3,348c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C416.2,339.3,417.6,344.2,415.3,348z M412.4,174.9c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C417.6,167.8,416.2,172.7,412.4,174.9z M432,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C440,260.4,436.4,264,432,264z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,132.3,379.7,32,256,32z M256,72c4.4,0,8,3.6,8,8s-3.6,8-8,8s-8-3.6-8-8S251.6,72,256,72z M80,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C88,260.4,84.4,264,80,264z M107.6,350.9c-3.8,2.2-8.7,0.9-10.9-2.9c-2.2-3.8-0.9-8.7,2.9-10.9\r\n\t\tc3.8-2.2,8.7-0.9,10.9,2.9C112.7,343.8,111.4,348.7,107.6,350.9z M110.5,172c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\ts7.1-5.1,10.9-2.9C111.4,163.3,112.7,168.2,110.5,172z M164,96.7c3.8-2.2,8.7-0.9,10.9,2.9c2.2,3.8,0.9,8.7-2.9,10.9\r\n\t\tc-3.8,2.2-8.7,0.9-10.9-2.9C158.9,103.8,160.2,98.9,164,96.7z M174.9,412.4c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\tc2.2-3.8,7.1-5.1,10.9-2.9S177.1,408.6,174.9,412.4z M256,440c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S260.4,440,256,440z M264,269.9\r\n\t\tV392c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V269.8c-2.4-1.4-4.4-3.3-5.9-5.8c-3-5.2-2.7-11.5,0.2-16.3l-37.6-62.9c-2.3-3.8-1-8.7,2.7-11\r\n\t\tc3.8-2.3,8.7-1,11,2.7l38,63.4c5.4,0.1,10.6,3,13.4,8C274.3,255.7,271.7,265.4,264,269.9z M348,415.3c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C353.1,408.2,351.8,413.1,348,415.3z M350.9,107.6c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C351.8,98.9,353.1,103.8,350.9,107.6z M415.3,348c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C416.2,339.3,417.6,344.2,415.3,348z M412.4,174.9c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C417.6,167.8,416.2,172.7,412.4,174.9z M432,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C440,260.4,436.4,264,432,264z"},"children":[]}]}]}]};exports.iosTime=iosTime;var iosTimerOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M236.6,271.6c4.6,5.7,11.5,9.4,19.4,9.4c13.8,0,25-11.2,25-25c0-7.3-3.2-13.8-8.2-18.4c-0.6-0.7-1.3-1.5-2.2-2.2\r\n\tc0,0-117.7-87.5-120.3-85.2c-2.6,2.3,85.3,120.2,85.3,120.2C235.8,270.8,236.3,271.2,236.6,271.6z"},"children":[]},{"name":"path","attribs":{"d":"M256.2,48L256.2,48H256v112h16V65.3c97.8,8.3,175.3,90.5,175.3,190.5c0,105.5-85.7,191.4-191.2,191.4\r\n\tc-105.5,0-191.3-85.8-191.3-191.3c0-52.8,21.5-100.6,56.1-135.2L109,108.9C71.3,146.6,48,198.6,48,256c0,114.9,93.1,208,208,208\r\n\tc114.9,0,208-93.1,208-208C464,141.1,371,48,256.2,48z"},"children":[]}]};exports.iosTimerOutline=iosTimerOutline;var iosTimer={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t M150.5,150.5c2.6-2.3,119.9,84.9,119.9,84.9c1,0.7,1.6,1.5,2.2,2.2c5,4.6,8.2,11,8.2,18.3c0,13.7-11.1,24.9-24.9,24.9\r\n\tc-7.8,0-14.7-3.7-19.3-9.4c-0.4-0.4-0.8-0.7-1.1-1.1C235.6,270.4,148,152.9,150.5,150.5z M256.1,447.2\r\n\tc-105.7,0-191.4-85.7-191.4-191.4c0-52.8,21.4-100.7,56-135.3l11.8,11.8c-31.6,31.6-51.2,75.3-51.2,123.5\r\n\tc0,96.3,78.4,174.7,174.7,174.7s174.5-78.4,174.5-174.7c0-90.3-70.5-165.1-158.5-174V160h-16V64.4c105.7,0,191.5,85.7,191.5,191.4\r\n\tC447.5,361.5,361.7,447.2,256.1,447.2z"},"children":[]}]};exports.iosTimer=iosTimer;var iosToggleOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,320c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S101.533,320,128,320 M128,304\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C192,332.654,163.346,304,128,304L128,304z"},"children":[{"name":"path","attribs":{"d":"M128,320c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S101.533,320,128,320 M128,304\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C192,332.654,163.346,304,128,304L128,304z"},"children":[]}]},{"name":"path","attribs":{"d":"M383.25,288c44.388,0,80.625,36.112,80.625,80.5S427.888,448,383.5,448h-255C84.112,448,48,412.888,48,368.5\r\n\t\t\tS84.112,288,128.5,288H383 M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255\r\n\t\t\tc53.295,0,96.5-42.205,96.5-95.5S436.795,272,383.5,272L383.5,272z"},"children":[{"name":"path","attribs":{"d":"M383.25,288c44.388,0,80.625,36.112,80.625,80.5S427.888,448,383.5,448h-255C84.112,448,48,412.888,48,368.5\r\n\t\t\tS84.112,288,128.5,288H383 M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255\r\n\t\t\tc53.295,0,96.5-42.205,96.5-95.5S436.795,272,383.5,272L383.5,272z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M384,96c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S357.533,96,384,96 M384,80\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C448,108.654,419.346,80,384,80L384,80z"},"children":[{"name":"path","attribs":{"d":"M384,96c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S357.533,96,384,96 M384,80\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C448,108.654,419.346,80,384,80L384,80z"},"children":[]}]},{"name":"path","attribs":{"d":"M129,64h254.5c44.388,0,80.5,36.112,80.5,80.5S427.888,224,383.5,224h-255c-44.388,0-80.375-35.112-80.375-79.5\r\n\t\t\tS84.362,64,128.75,64 M128.5,48C75.205,48,32,91.205,32,144.5S75.205,240,128.5,240h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\t\tS436.795,48,383.5,48H128.5L128.5,48z"},"children":[{"name":"path","attribs":{"d":"M129,64h254.5c44.388,0,80.5,36.112,80.5,80.5S427.888,224,383.5,224h-255c-44.388,0-80.375-35.112-80.375-79.5\r\n\t\t\tS84.362,64,128.75,64 M128.5,48C75.205,48,32,91.205,32,144.5S75.205,240,128.5,240h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\t\tS436.795,48,383.5,48H128.5L128.5,48z"},"children":[]}]}]}]}]}]};exports.iosToggleOutline=iosToggleOutline;var iosToggle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,320c-26.467,0-48,21.533-48,48s21.533,48,48,48s48-21.533,48-48S154.467,320,128,320z"},"children":[{"name":"path","attribs":{"d":"M128,320c-26.467,0-48,21.533-48,48s21.533,48,48,48s48-21.533,48-48S154.467,320,128,320z"},"children":[]}]},{"name":"path","attribs":{"d":"M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\tS436.795,272,383.5,272z M128,432c-35.346,0-64-28.653-64-64c0-35.346,28.654-64,64-64s64,28.654,64,64\r\n\t\tC192,403.347,163.346,432,128,432z"},"children":[{"name":"path","attribs":{"d":"M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\tS436.795,272,383.5,272z M128,432c-35.346,0-64-28.653-64-64c0-35.346,28.654-64,64-64s64,28.654,64,64\r\n\t\tC192,403.347,163.346,432,128,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,192c26.467,0,48-21.533,48-48s-21.533-48-48-48s-48,21.533-48,48S357.533,192,384,192z"},"children":[{"name":"path","attribs":{"d":"M384,192c26.467,0,48-21.533,48-48s-21.533-48-48-48s-48,21.533-48,48S357.533,192,384,192z"},"children":[]}]},{"name":"path","attribs":{"d":"M128.5,240h255c53.295,0,96.5-42.205,96.5-95.5S436.795,48,383.5,48h-255C75.205,48,32,91.205,32,144.5\r\n\t\tS75.205,240,128.5,240z M384,80c35.346,0,64,28.654,64,64c0,35.347-28.654,64-64,64s-64-28.653-64-64\r\n\t\tC320,108.654,348.654,80,384,80z"},"children":[{"name":"path","attribs":{"d":"M128.5,240h255c53.295,0,96.5-42.205,96.5-95.5S436.795,48,383.5,48h-255C75.205,48,32,91.205,32,144.5\r\n\t\tS75.205,240,128.5,240z M384,80c35.346,0,64,28.654,64,64c0,35.347-28.654,64-64,64s-64-28.653-64-64\r\n\t\tC320,108.654,348.654,80,384,80z"},"children":[]}]}]}]};exports.iosToggle=iosToggle;var iosTrashOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M400,113.3h-80v-20c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3v20h-80V128h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400V113.3z M206.6,93.3c0-8.1,6.6-14.7,14.6-14.7h69.5\r\n\t\tc8.1,0,14.6,6.6,14.6,14.7v20h-98.7V93.3z M341.6,417.9l0,0.4v0.4c0,8.1-6.6,14.7-14.6,14.7H186c-8.1,0-14.6-6.6-14.6-14.7v-0.4\r\n\t\tl0-0.4L147.7,128h217.2L341.6,417.9z"},"children":[{"name":"path","attribs":{"d":"M400,113.3h-80v-20c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3v20h-80V128h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400V113.3z M206.6,93.3c0-8.1,6.6-14.7,14.6-14.7h69.5\r\n\t\tc8.1,0,14.6,6.6,14.6,14.7v20h-98.7V93.3z M341.6,417.9l0,0.4v0.4c0,8.1-6.6,14.7-14.6,14.7H186c-8.1,0-14.6-6.6-14.6-14.7v-0.4\r\n\t\tl0-0.4L147.7,128h217.2L341.6,417.9z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"249","y":"160","width":"14","height":"241"},"children":[{"name":"rect","attribs":{"x":"249","y":"160","width":"14","height":"241"},"children":[]}]},{"name":"polygon","attribs":{"points":"320,160 305.4,160 294.7,401 309.3,401 \t\t"},"children":[{"name":"polygon","attribs":{"points":"320,160 305.4,160 294.7,401 309.3,401 \t\t"},"children":[]}]},{"name":"polygon","attribs":{"points":"206.5,160 192,160 202.7,401 217.3,401 \t\t"},"children":[{"name":"polygon","attribs":{"points":"206.5,160 192,160 202.7,401 217.3,401 \t\t"},"children":[]}]}]}]}]}]};exports.iosTrashOutline=iosTrashOutline;var iosTrash={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M320,113V93.3c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3V113h-80v15h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400v-15H320z M207,93.3c0-8.1,6.2-14.3,14.3-14.3h69.5\r\n\t\tc8.1,0,14.3,6.2,14.3,14.3V113h-98V93.3H207z M202.7,401L192,160h14.5l10.9,241H202.7z M263,401h-14V160h14V401z M309.3,401h-14.6\r\n\t\tl10.8-241H320L309.3,401z"},"children":[{"name":"path","attribs":{"d":"M320,113V93.3c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3V113h-80v15h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400v-15H320z M207,93.3c0-8.1,6.2-14.3,14.3-14.3h69.5\r\n\t\tc8.1,0,14.3,6.2,14.3,14.3V113h-98V93.3H207z M202.7,401L192,160h14.5l10.9,241H202.7z M263,401h-14V160h14V401z M309.3,401h-14.6\r\n\t\tl10.8-241H320L309.3,401z"},"children":[]}]}]}]};exports.iosTrash=iosTrash;var iosUndoOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z M432.2,361.4\r\n\t\tC384.6,280.6,331,256,240,256v64.8L91.9,224.1L240,127.3V192C441,192,432.2,361.4,432.2,361.4z"},"children":[{"name":"path","attribs":{"d":"M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z M432.2,361.4\r\n\t\tC384.6,280.6,331,256,240,256v64.8L91.9,224.1L240,127.3V192C441,192,432.2,361.4,432.2,361.4z"},"children":[]}]}]}]};exports.iosUndoOutline=iosUndoOutline;var iosUndo={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z"},"children":[{"name":"path","attribs":{"d":"M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z"},"children":[]}]}]}]};exports.iosUndo=iosUndo;var iosUnlockedOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"},"children":[{"name":"path","attribs":{"d":"M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M400,448H112V240h288V448z"},"children":[{"name":"path","attribs":{"d":"M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M400,448H112V240h288V448z"},"children":[]}]}]}]}]}]};exports.iosUnlockedOutline=iosUnlockedOutline;var iosUnlocked={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"},"children":[{"name":"path","attribs":{"d":"M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"},"children":[]}]},{"name":"path","attribs":{"d":"M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M264,350.992V384h-16v-33.008c-13.802-3.553-24-16.082-24-30.992\r\n\t\tc0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z"},"children":[{"name":"path","attribs":{"d":"M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M264,350.992V384h-16v-33.008c-13.802-3.553-24-16.082-24-30.992\r\n\t\tc0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z"},"children":[]}]}]}]};exports.iosUnlocked=iosUnlocked;var iosUploadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"},"children":[{"name":"polygon","attribs":{"points":"288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"193.1,118.1 181.5,106.5 256,32 330.5,106.5 318.9,118.1 264.2,63.4 264.2,306.4 247.8,306.4 247.8,63.4 \t\t"},"children":[{"name":"polygon","attribs":{"points":"193.1,118.1 181.5,106.5 256,32 330.5,106.5 318.9,118.1 264.2,63.4 264.2,306.4 247.8,306.4 247.8,63.4 \t\t"},"children":[]}]}]}]}]}]};exports.iosUploadOutline=iosUploadOutline;var iosUpload={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"264,144 264,306 248,306 248,144 96,144 96,448 416,448 416,144 \t"},"children":[{"name":"polygon","attribs":{"points":"264,144 264,306 248,306 248,144 96,144 96,448 416,448 416,144 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"264,63.4 318.8,118.1 330.4,106.5 256,32 181.5,106.5 193.2,118.1 248,63.4 248,144 264,144 \t"},"children":[{"name":"polygon","attribs":{"points":"264,63.4 318.8,118.1 330.4,106.5 256,32 181.5,106.5 193.2,118.1 248,63.4 248,144 264,144 \t"},"children":[]}]}]}]};exports.iosUpload=iosUpload;var iosVideocamOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z M320,348.6c0,9.3-6.9,18.4-16.3,18.4h-221c-9.4,0-18.7-9.1-18.7-18.4V160.7\r\n\t\tc0-9.3,9-15.5,18.4-15.5l221,0.1c9.4,0,16.6,6.1,16.6,15.4V348.6z"},"children":[{"name":"path","attribs":{"d":"M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z M320,348.6c0,9.3-6.9,18.4-16.3,18.4h-221c-9.4,0-18.7-9.1-18.7-18.4V160.7\r\n\t\tc0-9.3,9-15.5,18.4-15.5l221,0.1c9.4,0,16.6,6.1,16.6,15.4V348.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M367,213v85.6l98,53.4V160L367,213z M448,190v132.3l-64-33.5v-65.6l64.1-33.6L448,190z"},"children":[{"name":"path","attribs":{"d":"M367,213v85.6l98,53.4V160L367,213z M448,190v132.3l-64-33.5v-65.6l64.1-33.6L448,190z"},"children":[]}]}]}]};exports.iosVideocamOutline=iosVideocamOutline;var iosVideocam={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z"},"children":[{"name":"path","attribs":{"d":"M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M367,213v85.6l98,53.4V160L367,213z"},"children":[{"name":"path","attribs":{"d":"M367,213v85.6l98,53.4V160L367,213z"},"children":[]}]}]}]};exports.iosVideocam=iosVideocam;var iosVolumeHigh={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M374.1,128l-13.6,10.3C384.6,171.2,399,211.9,399,256c0,44.1-14.4,84.8-38.6,117.7l13.6,10.3c26.3-35.7,41.9-80,41.9-128\r\n\t\t\t\tC415.9,208,400.4,163.7,374.1,128z"},"children":[{"name":"path","attribs":{"d":"M374.1,128l-13.6,10.3C384.6,171.2,399,211.9,399,256c0,44.1-14.4,84.8-38.6,117.7l13.6,10.3c26.3-35.7,41.9-80,41.9-128\r\n\t\t\t\tC415.9,208,400.4,163.7,374.1,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M320,351.8c20-26.8,32-59.9,32-95.8s-12-69-32-95.8l-13.6,10.1c17.9,24,28.6,53.6,28.6,85.7s-10.7,61.7-28.6,85.7\r\n\t\t\t\tL320,351.8z"},"children":[{"name":"path","attribs":{"d":"M320,351.8c20-26.8,32-59.9,32-95.8s-12-69-32-95.8l-13.6,10.1c17.9,24,28.6,53.6,28.6,85.7s-10.7,61.7-28.6,85.7\r\n\t\t\t\tL320,351.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M273.1,319.9c13.7-17.9,21.9-39.9,21.9-63.9c0-24-8.2-46-21.9-63.9l-13.5,9.8c11.6,15.1,18.5,33.8,18.5,54.1\r\n\t\t\t\ts-6.9,38.9-18.5,54.1L273.1,319.9z"},"children":[{"name":"path","attribs":{"d":"M273.1,319.9c13.7-17.9,21.9-39.9,21.9-63.9c0-24-8.2-46-21.9-63.9l-13.5,9.8c11.6,15.1,18.5,33.8,18.5,54.1\r\n\t\t\t\ts-6.9,38.9-18.5,54.1L273.1,319.9z"},"children":[]}]}]}]}]}]},{"name":"polygon","attribs":{"points":"153.9,216 96,216 96,296 153.9,296 224,352 224,160 \t"},"children":[{"name":"polygon","attribs":{"points":"153.9,216 96,216 96,296 153.9,296 224,352 224,160 \t"},"children":[]}]}]}]};exports.iosVolumeHigh=iosVolumeHigh;var iosVolumeLow={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"249.9,216 192,216 192,296 249.9,296 320,352 320,160 "},"children":[]}]};exports.iosVolumeLow=iosVolumeLow;var iosWineglassOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M264,308.988c0-21.975,20.458-38.674,40.247-54.824c7.907-6.453,15.37-12.547,21.519-18.962\r\n\tC352.313,207.505,352,183.458,352,164.144V160c0-44.25-30.816-124.558-32.02-128H256h-64c-1.203,3.442-32,83.5-32,128v4.144\r\n\tc0,19.273-0.323,43.361,26.225,71.059c6.148,6.415,13.617,12.509,21.523,18.962c19.789,16.15,40.252,32.85,40.252,54.824V464h-72v16\r\n\th80h80v-16h-72V308.988z M202.729,48H256h53.251c5.359,15.99,19.509,62.712,24.836,96H177.894\r\n\tC183.221,110.712,197.37,63.99,202.729,48z M256,273.416c-2.968,0-5.248-0.92-7.17-2.754c0.001,0.009,0.003,0.018,0.005,0.026\r\n\tc-8.804-10.807-20.234-20.158-30.971-28.92c-7.517-6.135-14.617-11.929-20.089-17.637c-22.054-23.008-21.928-40.916-21.795-59.875\r\n\tc0.01-1.428-0.068-2.849,0.02-4.255h159.98c0.088,1.406,0.01,2.828,0.021,4.255c0.133,18.959,0.259,36.867-21.795,59.875\r\n\tc-5.472,5.708-12.57,11.502-20.087,17.637c-10.737,8.762-22.165,18.114-30.969,28.92c0.002-0.009,0.009-0.018,0.01-0.026\r\n\tC261.238,272.496,259,273.416,256,273.416z"},"children":[]}]};exports.iosWineglassOutline=iosWineglassOutline;var iosWineglass={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M264,308.988c0-21.975,20.458-38.674,40.247-54.824c7.907-6.453,15.37-12.547,21.519-18.962\r\n\tC352.313,207.505,352,183.458,352,164.144V160c0-44.25-30.816-124.558-32.02-128H256h-64c-1.203,3.442-32,83.5-32,128v4.144\r\n\tc0,19.273-0.323,43.361,26.225,71.059c6.148,6.415,13.617,12.509,21.523,18.962c19.789,16.15,40.252,32.85,40.252,54.824V464h-72v16\r\n\th80h80v-16h-72V308.988z M202.729,48H256h53.251c5.359,15.99,19.509,62.712,24.836,96H177.894\r\n\tC183.221,110.712,197.37,63.99,202.729,48z"},"children":[]}]};exports.iosWineglass=iosWineglass;var iosWorldOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M264.3,172.5\r\n\tc22.1-0.6,43.5-3.5,64.2-8.5c6.2,24.5,10.1,52.8,10.7,83.8h-74.9V172.5z M264.3,155.8V66c22.4,6.2,45.2,36.1,59.6,82\r\n\tC304.7,152.6,284.8,155.2,264.3,155.8z M247.7,65.8v90.1c-20.7-0.6-40.8-3.3-60.1-8C202.2,101.7,225.1,71.6,247.7,65.8z\r\n\t M247.7,172.5v75.2h-75.4c0.6-31,4.5-59.3,10.7-83.8C203.8,168.9,225.5,171.9,247.7,172.5z M155.5,247.7H64.9\r\n\tc1.8-42.8,17.8-82,43.3-113c18.5,10.2,38.2,18.6,58.8,24.8C160.2,186,156.2,215.9,155.5,247.7z M155.5,264.3\r\n\tc0.6,31.7,4.6,61.7,11.4,88.2c-20.6,6.3-40.2,14.6-58.8,24.8c-25.5-31-41.4-70.2-43.3-113H155.5z M172.3,264.3h75.4v75.1\r\n\tc-22.2,0.6-43.9,3.6-64.7,8.7C176.8,323.6,172.9,295.3,172.3,264.3z M247.7,356.1v90.2c-22.6-5.9-45.5-35.9-60.1-82.1\r\n\tC206.9,359.4,227,356.7,247.7,356.1z M264.3,446v-90c20.5,0.6,40.4,3.3,59.7,7.9C309.5,409.9,286.8,439.8,264.3,446z M264.3,339.4\r\n\tv-75.1h74.9c-0.6,30.9-4.5,59.2-10.7,83.7C307.8,343,286.4,340,264.3,339.4z M355.9,264.3h91.2c-1.8,42.8-17.8,81.9-43.3,113\r\n\tc-18.7-10.3-38.5-18.7-59.3-25C351.3,325.8,355.3,296,355.9,264.3z M355.9,247.7c-0.6-31.7-4.6-61.6-11.3-88.1\r\n\tc20.8-6.3,40.6-14.7,59.2-24.9c25.5,31,41.5,70.2,43.3,113.1H355.9z M392.4,121.9c-16.6,8.8-34,16.1-52.3,21.6\r\n\tc-9.7-31.3-23.4-56.8-39.5-73.6C336,78.4,367.6,96.8,392.4,121.9z M210.8,70.1c-16.1,16.7-29.7,42.2-39.3,73.3\r\n\tc-18.1-5.5-35.4-12.7-51.8-21.5C144.2,96.9,175.6,78.6,210.8,70.1z M119.6,390c16.4-8.8,33.8-16,51.8-21.5\r\n\tc9.7,31.2,23.3,56.6,39.4,73.4C175.6,433.4,144.2,415.1,119.6,390z M300.6,442.1c16.2-16.8,29.8-42.3,39.6-73.7\r\n\tc18.3,5.5,35.7,12.8,52.3,21.6C367.7,415.2,336,433.6,300.6,442.1z"},"children":[]}]};exports.iosWorldOutline=iosWorldOutline;var iosWorld={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\t\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,447.4\r\n\t\tc-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C150.1,447.1,64.6,361.5,64.6,256c0-105.5,85.4-191.1,190.9-191.3\r\n\t\tc0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c105.7,0,191.4,85.7,191.4,191.4C447.4,361.7,361.7,447.4,256,447.4z"},"children":[{"name":"path","attribs":{"d":"M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\t\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,447.4\r\n\t\tc-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C150.1,447.1,64.6,361.5,64.6,256c0-105.5,85.4-191.1,190.9-191.3\r\n\t\tc0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c105.7,0,191.4,85.7,191.4,191.4C447.4,361.7,361.7,447.4,256,447.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M322.3,171.8c-18.7,4.5-38,7.2-57.9,7.8v68.1H332C331.4,219.6,327.9,194.1,322.3,171.8z"},"children":[{"name":"path","attribs":{"d":"M322.3,171.8c-18.7,4.5-38,7.2-57.9,7.8v68.1H332C331.4,219.6,327.9,194.1,322.3,171.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M264.3,82.5v81.9c18.5-0.6,36.5-3,53.8-7.2C305,115.8,284.6,88.6,264.3,82.5z"},"children":[{"name":"path","attribs":{"d":"M264.3,82.5v81.9c18.5-0.6,36.5-3,53.8-7.2C305,115.8,284.6,88.6,264.3,82.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M193.4,157.1c17.5,4.2,35.6,6.7,54.2,7.3V82.3C227.3,88.2,206.6,115.4,193.4,157.1z"},"children":[{"name":"path","attribs":{"d":"M193.4,157.1c17.5,4.2,35.6,6.7,54.2,7.3V82.3C227.3,88.2,206.6,115.4,193.4,157.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M380.6,133.4c-22.6-23-51.5-39.8-83.9-47.5c14.8,15.3,27.2,38.7,36.1,67.3C349.5,148.1,365.5,141.5,380.6,133.4z"},"children":[{"name":"path","attribs":{"d":"M380.6,133.4c-22.6-23-51.5-39.8-83.9-47.5c14.8,15.3,27.2,38.7,36.1,67.3C349.5,148.1,365.5,141.5,380.6,133.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M347.3,247.7h83.3c-1.8-38.8-16.3-74.4-39.5-102.6c-17.1,9.4-35.2,17.1-54.1,22.8C343.1,191.9,346.7,219,347.3,247.7z"},"children":[{"name":"path","attribs":{"d":"M347.3,247.7h83.3c-1.8-38.8-16.3-74.4-39.5-102.6c-17.1,9.4-35.2,17.1-54.1,22.8C343.1,191.9,346.7,219,347.3,247.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M179.5,247.7h68.2v-68.1c-20.1-0.6-39.6-3.3-58.4-7.9C183.6,194,180.1,219.6,179.5,247.7z"},"children":[{"name":"path","attribs":{"d":"M179.5,247.7h68.2v-68.1c-20.1-0.6-39.6-3.3-58.4-7.9C183.6,194,180.1,219.6,179.5,247.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M332,264.3h-67.7v68c19.9,0.6,39.3,3.2,58,7.8C327.9,317.9,331.4,292.3,332,264.3z"},"children":[{"name":"path","attribs":{"d":"M332,264.3h-67.7v68c19.9,0.6,39.3,3.2,58,7.8C327.9,317.9,331.4,292.3,332,264.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M189.3,340.2c18.8-4.6,38.3-7.3,58.4-7.9v-68h-68.2C180.1,292.4,183.6,318,189.3,340.2z"},"children":[{"name":"path","attribs":{"d":"M189.3,340.2c18.8-4.6,38.3-7.3,58.4-7.9v-68h-68.2C180.1,292.4,183.6,318,189.3,340.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M247.7,429.6v-82.1c-18.6,0.6-36.8,3.1-54.3,7.3C206.6,396.5,227.3,423.8,247.7,429.6z"},"children":[{"name":"path","attribs":{"d":"M247.7,429.6v-82.1c-18.6,0.6-36.8,3.1-54.3,7.3C206.6,396.5,227.3,423.8,247.7,429.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M296.7,426.1c32.4-7.8,61.3-24.5,84-47.6c-15.1-8.1-31.1-14.7-47.8-19.8C324,387.4,311.5,410.7,296.7,426.1z"},"children":[{"name":"path","attribs":{"d":"M296.7,426.1c32.4-7.8,61.3-24.5,84-47.6c-15.1-8.1-31.1-14.7-47.8-19.8C324,387.4,311.5,410.7,296.7,426.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M214.7,86.1c-32.1,7.8-60.8,24.5-83.3,47.4c15,8,30.8,14.6,47.3,19.6C187.6,124.6,200,101.4,214.7,86.1z"},"children":[{"name":"path","attribs":{"d":"M214.7,86.1c-32.1,7.8-60.8,24.5-83.3,47.4c15,8,30.8,14.6,47.3,19.6C187.6,124.6,200,101.4,214.7,86.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M337,344.1c19,5.7,37.1,13.4,54.2,22.8c23.2-28.2,37.7-63.8,39.5-102.6h-83.3C346.7,293,343.1,320,337,344.1z"},"children":[{"name":"path","attribs":{"d":"M337,344.1c19,5.7,37.1,13.4,54.2,22.8c23.2-28.2,37.7-63.8,39.5-102.6h-83.3C346.7,293,343.1,320,337,344.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M264.3,347.5v82c20.3-6.1,40.7-33.3,53.8-74.8C300.8,350.5,282.8,348.1,264.3,347.5z"},"children":[{"name":"path","attribs":{"d":"M264.3,347.5v82c20.3-6.1,40.7-33.3,53.8-74.8C300.8,350.5,282.8,348.1,264.3,347.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M174.6,167.8c-18.8-5.7-36.8-13.3-53.7-22.7c-23.2,28.2-37.7,63.8-39.5,102.6h82.9C164.8,218.9,168.5,191.8,174.6,167.8z"},"children":[{"name":"path","attribs":{"d":"M174.6,167.8c-18.8-5.7-36.8-13.3-53.7-22.7c-23.2,28.2-37.7,63.8-39.5,102.6h82.9C164.8,218.9,168.5,191.8,174.6,167.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M164.2,264.3H81.3c1.8,38.8,16.3,74.4,39.5,102.6c16.9-9.3,34.9-17,53.7-22.7C168.5,320.2,164.8,293.1,164.2,264.3z"},"children":[{"name":"path","attribs":{"d":"M164.2,264.3H81.3c1.8,38.8,16.3,74.4,39.5,102.6c16.9-9.3,34.9-17,53.7-22.7C168.5,320.2,164.8,293.1,164.2,264.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M131.3,378.5c22.5,22.9,51.2,39.6,83.4,47.4c-14.7-15.3-27.1-38.6-36-67.1C162.2,363.9,146.3,370.5,131.3,378.5z"},"children":[{"name":"path","attribs":{"d":"M131.3,378.5c22.5,22.9,51.2,39.6,83.4,47.4c-14.7-15.3-27.1-38.6-36-67.1C162.2,363.9,146.3,370.5,131.3,378.5z"},"children":[]}]}]}]};exports.iosWorld=iosWorld;var ipad={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M112,72.8v366.4c0,4.9,3.9,8.8,8.8,8.8h270.4c4.9,0,8.8-3.9,8.8-8.8V72.8c0-4.9-3.9-8.8-8.8-8.8H120.8\r\n\tC115.9,64,112,67.9,112,72.8z M256,437.6c-7.5,0-13.6-6-13.6-13.5c0-7.5,6.1-13.6,13.6-13.6c7.4,0,13.5,6.1,13.5,13.6\r\n\tC269.6,431.6,263.5,437.6,256,437.6z M144,118.6c0-3.5,2.7-6.6,6-6.6h211.2c3.4,0,6.8,3.1,6.8,6.6v275.2c0,3.5-3.4,6.3-6.8,6.3H150\r\n\tc-3.4,0-6-2.8-6-6.3V118.6z"},"children":[]}]};exports.ipad=ipad;var iphone={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M328.2,64H183.8C170.7,64,160,74.7,160,87.9v336.3c0,13.1,10.7,23.8,23.8,23.8h144.3c13.1,0,23.8-10.7,23.8-23.8V87.9\r\n\t\tC352,74.7,341.3,64,328.2,64z M240,99.9c0-2.1,1.7-3.9,3.9-3.9h24.3c2.1,0,3.9,1.7,3.9,3.9v0.3c0,2.1-1.7,3.9-3.9,3.9h-24.3\r\n\t\tc-2.1,0-3.9-1.7-3.9-3.9V99.9z M228,96c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4s-4-1.8-4-4C224,97.8,225.8,96,228,96z M256,432.1\r\n\t\tc-8.9,0-16.1-7.2-16.1-16.1c0-8.9,7.2-16.1,16.1-16.1c8.9,0,16.1,7.2,16.1,16.1C272.1,424.9,264.8,432.1,256,432.1z M336,384H176\r\n\t\tV128h160V384z"},"children":[{"name":"path","attribs":{"d":"M328.2,64H183.8C170.7,64,160,74.7,160,87.9v336.3c0,13.1,10.7,23.8,23.8,23.8h144.3c13.1,0,23.8-10.7,23.8-23.8V87.9\r\n\t\tC352,74.7,341.3,64,328.2,64z M240,99.9c0-2.1,1.7-3.9,3.9-3.9h24.3c2.1,0,3.9,1.7,3.9,3.9v0.3c0,2.1-1.7,3.9-3.9,3.9h-24.3\r\n\t\tc-2.1,0-3.9-1.7-3.9-3.9V99.9z M228,96c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4s-4-1.8-4-4C224,97.8,225.8,96,228,96z M256,432.1\r\n\t\tc-8.9,0-16.1-7.2-16.1-16.1c0-8.9,7.2-16.1,16.1-16.1c8.9,0,16.1,7.2,16.1,16.1C272.1,424.9,264.8,432.1,256,432.1z M336,384H176\r\n\t\tV128h160V384z"},"children":[]}]}]}]};exports.iphone=iphone;var ipod={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,311c-17.7,0-32,14.3-32,32c0,17.6,14.3,32,32,32c17.6,0,32-14.3,32-32C288,325.3,273.7,311,256,311z"},"children":[{"name":"path","attribs":{"d":"M256,311c-17.7,0-32,14.3-32,32c0,17.6,14.3,32,32,32c17.6,0,32-14.3,32-32C288,325.3,273.7,311,256,311z"},"children":[]}]},{"name":"path","attribs":{"d":"M340.4,64H171.6C156.4,64,144,76.2,144,91.7v328.7c0,15.5,12.4,27.7,27.6,27.7h168.8c15.2,0,27.6-12.2,27.6-27.7V91.7\r\n\t\tC368,76.2,355.6,64,340.4,64z M256.1,416.1c-39.8,0-72.1-32.2-72.1-72c0-39.7,32.3-72,72.1-72c39.7,0,71.9,32.3,71.9,72\r\n\t\tC328,383.9,295.8,416.1,256.1,416.1z M335.9,226.8c-0.8,7.6-7,13.2-14.7,13.2h-131c-8.2,0-14.2-6.2-14.2-14.6V110.9\r\n\t\tc0-7.5,5-13.7,12-14.9l135.8,0c6.5,1.2,11.5,6.6,12.2,13.3L335.9,226.8z"},"children":[{"name":"path","attribs":{"d":"M340.4,64H171.6C156.4,64,144,76.2,144,91.7v328.7c0,15.5,12.4,27.7,27.6,27.7h168.8c15.2,0,27.6-12.2,27.6-27.7V91.7\r\n\t\tC368,76.2,355.6,64,340.4,64z M256.1,416.1c-39.8,0-72.1-32.2-72.1-72c0-39.7,32.3-72,72.1-72c39.7,0,71.9,32.3,71.9,72\r\n\t\tC328,383.9,295.8,416.1,256.1,416.1z M335.9,226.8c-0.8,7.6-7,13.2-14.7,13.2h-131c-8.2,0-14.2-6.2-14.2-14.6V110.9\r\n\t\tc0-7.5,5-13.7,12-14.9l135.8,0c6.5,1.2,11.5,6.6,12.2,13.3L335.9,226.8z"},"children":[]}]}]}]};exports.ipod=ipod;var jet={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M314.8,368.5L419,403l-3-52.7L302,247c0,0-25.9-173.7-28.2-192.3C268.5,14.4,255.9,0,255.9,0\r\n\ts-12.5,14.4-17.6,54.6C235.9,73.3,210,247,210,247L96,350.3L93,403l104.2-34.5l1.4,12.3l-52.7,58.3l18.3,27.4l73.3-9.1l18.3,54.6\r\n\tl18.5-54.6l73.4,9.1l18.3-27.4l-52.7-58.3L314.8,368.5z"},"children":[]}]};exports.jet=jet;var key={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M304.3,301c0,0-5.4-28-7.3-90c-1.9-62-9-142.5-9-142.5c-2.5-28-11.8-36.5-32-36.5c-9.4,0-20.5,2.3-23.3,3.3\r\n\tc-9.4,3.6-8.7,11.6-8.7,22.5l0,17.8c0,3.2,1.2,6,3.2,8.2l0.8,0.8l4.1,4.1c0.4,0.3,0.1,0.7,0.4,1c1.9,2.2,3.1,5,3.1,8.1l0,24.5\r\n\tc0,3.2-1.2,3.2-3.2,5.3c-0.2,0.3-0.5,0.6-0.8,0.8l-4.4,4.4c-0.1,0.1-0.3,0.3-0.4,0.4c-2.1,2.2-3.4,5.2-3.4,8.4l0,7.2\r\n\tc0,3.1,1.1,5.9,3.1,8.1c0,0,0.1,0.1,0.1,0.1l0.8,0.8c0,0,0.1,0.1,0.1,0.1l4,4c0.4,0.3,0.7,0.7,1,1c1.9,2.2,3.1,5,3.1,8.1\r\n\tc0,0.7-0.1,8.1-0.2,8.8c-0.4,2.3-1.5,4.4-3,6.1c-0.2,0.3-0.5,0.6-0.8,0.8l-3.9,3.9l-1.4,1.5c-0.5,0.6-0.7,1.3-1.1,2.1\r\n\tc-0.9,1.7-1.2,3.7-1.2,5.9v7.8c0,2.9-0.1,5.7-0.2,8.6c0.2,2.4,7.2,5.7,7.2,10.5v20.4c0,6.2-10.5,7-11,11.3\r\n\tc-4.7,25.4-11.9,41.8-11.9,41.8c-28.7,16.6-48,47.6-48,83.2c0,53,43,96,96,96s96-43,96-96C352,348.6,332.8,317.7,304.3,301z\r\n\t M256,448c-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,448,256,448z"},"children":[]}]};exports.key=key;var knife={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M285.7,32c-3.3,0-6,1.4-8,3.8C259,58.7,224,116.1,224,250.1c0,39.2,33,39.2,32,69.4c0,0.1,0,0.3,0,0.4\r\n\tc-2,47.1-14.9,111.1-16,130.3c-0.4,15.2,9.7,29.8,24.1,29.8c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.2,0c14.4,0,23.5-14.4,23.5-29.6V38.3\r\n\tC288,33.3,287.5,32,285.7,32z"},"children":[]}]};exports.knife=knife;var laptop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,106.3c0-5.6-4.1-10.3-9.6-10.3H42.2c-5.5,0-10.2,4.6-10.2,10.3V368h448V106.3z M448,336H64V128h384V336z"},"children":[{"name":"path","attribs":{"d":"M480,106.3c0-5.6-4.1-10.3-9.6-10.3H42.2c-5.5,0-10.2,4.6-10.2,10.3V368h448V106.3z M448,336H64V128h384V336z"},"children":[]}]},{"name":"path","attribs":{"d":"M0,388.7C70.2,408.6,115.8,416,256,416c140.2,0,185.8-7.3,256-27.3V384H0V388.7z"},"children":[{"name":"path","attribs":{"d":"M0,388.7C70.2,408.6,115.8,416,256,416c140.2,0,185.8-7.3,256-27.3V384H0V388.7z"},"children":[]}]}]}]};exports.laptop=laptop;var leaf={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M456.7,378.7c-52.5-8-56.5-15.7-56.5-15.7c10.8-64.9-22.7-147.1-77.4-191.6c-72.8-59.2-183.5-16.2-269.7-106.2\r\n\t\tc-20.1-21-8.4,235.5,99.5,332.7c78.9,71,171.8,49.2,197.3,37.6c23.1-10.6,39.3-29.9,39.3-29.9c42.1,13,62.9,12.2,62.9,12.2\r\n\t\tC466.9,419.6,474.4,381.4,456.7,378.7z M360.6,383.1c-138.2-40.9-242.1-184.5-242.1-184.5s91.2,107.7,252,160.2\r\n\t\tC370.7,366.9,365.9,378.5,360.6,383.1z"},"children":[{"name":"path","attribs":{"d":"M456.7,378.7c-52.5-8-56.5-15.7-56.5-15.7c10.8-64.9-22.7-147.1-77.4-191.6c-72.8-59.2-183.5-16.2-269.7-106.2\r\n\t\tc-20.1-21-8.4,235.5,99.5,332.7c78.9,71,171.8,49.2,197.3,37.6c23.1-10.6,39.3-29.9,39.3-29.9c42.1,13,62.9,12.2,62.9,12.2\r\n\t\tC466.9,419.6,474.4,381.4,456.7,378.7z M360.6,383.1c-138.2-40.9-242.1-184.5-242.1-184.5s91.2,107.7,252,160.2\r\n\t\tC370.7,366.9,365.9,378.5,360.6,383.1z"},"children":[]}]}]}]};exports.leaf=leaf;var levels={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M127,99.2V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v21.5c-8.5,5.8-14,15.5-14,26.5s5.5,20.7,14,26.5V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V156.8c10.7-5.2,18-16.1,18-28.8S137.7,104.4,127,99.2z"},"children":[{"name":"path","attribs":{"d":"M127,99.2V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v21.5c-8.5,5.8-14,15.5-14,26.5s5.5,20.7,14,26.5V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V156.8c10.7-5.2,18-16.1,18-28.8S137.7,104.4,127,99.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M223,292.9V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v211.7c-10.1,5.4-17,16-17,28.3s6.9,22.9,17,28.3V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16v-84.9c9-5.7,15-15.7,15-27.1S232,298.6,223,292.9z"},"children":[{"name":"path","attribs":{"d":"M223,292.9V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v211.7c-10.1,5.4-17,16-17,28.3s6.9,22.9,17,28.3V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16v-84.9c9-5.7,15-15.7,15-27.1S232,298.6,223,292.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M319,163.3V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v83.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V218.7c9.6-5.5,16-15.9,16-27.7S328.6,168.8,319,163.3z"},"children":[{"name":"path","attribs":{"d":"M319,163.3V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v83.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V218.7c9.6-5.5,16-15.9,16-27.7S328.6,168.8,319,163.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M431,383c0-11.8-6.4-22.2-16-27.7V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v275.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7\r\n\t\tV432c0,8.8,7.2,16,16,16s16-7.2,16-16v-21.3C424.6,405.2,431,394.8,431,383z"},"children":[{"name":"path","attribs":{"d":"M431,383c0-11.8-6.4-22.2-16-27.7V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v275.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7\r\n\t\tV432c0,8.8,7.2,16,16,16s16-7.2,16-16v-21.3C424.6,405.2,431,394.8,431,383z"},"children":[]}]}]}]};exports.levels=levels;var lightbulb={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32c-70.7,0-128,55.4-128,123.8c0,4.9,0.3,9.7,0.9,14.5c0.6,5.4,1.6,10.6,3,15.7c0.1,0.5,0.3,1.1,0.4,1.6\r\n\t\tc16.6,62.8,45.3,71.5,58.9,167.6c0,0.2,0.1,0.4,0.1,0.5c1.5,9.2,9.8,12.3,19.8,12.3H301c10,0,18.2-3.1,19.7-12.3\r\n\t\tc0-0.2,0.1-0.4,0.1-0.5c13.6-96.1,42.3-104.7,58.9-167.6c0.2-0.5,0.3-1,0.4-1.6c1.3-5.1,2.3-10.4,3-15.7c0.6-4.7,0.9-9.6,0.9-14.5\r\n\t\tC384,87.4,326.7,32,256,32z"},"children":[{"name":"path","attribs":{"d":"M256,32c-70.7,0-128,55.4-128,123.8c0,4.9,0.3,9.7,0.9,14.5c0.6,5.4,1.6,10.6,3,15.7c0.1,0.5,0.3,1.1,0.4,1.6\r\n\t\tc16.6,62.8,45.3,71.5,58.9,167.6c0,0.2,0.1,0.4,0.1,0.5c1.5,9.2,9.8,12.3,19.8,12.3H301c10,0,18.2-3.1,19.7-12.3\r\n\t\tc0-0.2,0.1-0.4,0.1-0.5c13.6-96.1,42.3-104.7,58.9-167.6c0.2-0.5,0.3-1,0.4-1.6c1.3-5.1,2.3-10.4,3-15.7c0.6-4.7,0.9-9.6,0.9-14.5\r\n\t\tC384,87.4,326.7,32,256,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M317.8,396.5c0.1-0.2,0.3-0.4,0.4-0.6c1.1-1.7,1.7-3.6,1.7-5.7c0-3.5,1.6-6.2-6.5-6.2H198.6c-8.1,0-6.5,2.1-6.5,6.2\r\n\t\tc0,2.1,0.6,4,1.7,5.7c0.1,0.2,0.3,0.4,0.5,0.6c0,0.1,0.1,0.1,0.1,0.2c1.7,2.6,2.7,4.4,2.7,7.6c0,3.1-0.9,4.9-2.6,7.5\r\n\t\tc-0.3,0.4-0.5,0.7-0.7,1c-1,1.7-1.6,3.6-1.6,5.6c0,2.1,0.6,4,1.7,5.8c0.1,0.2,0.3,0.4,0.4,0.6c1.8,2.7,2.8,4.5,2.8,7.8\r\n\t\tc0,3.1-0.9,4.9-2.6,7.4c-0.2,0.4-0.5,0.7-0.8,1.1c-1,1.7-1.6,3.6-1.6,5.6c0,5.4,4.3,10.1,10.2,11.6c0.3,0.1,0.6,0.1,0.9,0.2\r\n\t\tc6,1.4,12.2,1.6,18.5,2.5c0.7,0.1,1.4,0.2,2.2,0.3c5.6,1,10.3,3.9,13.4,7.7l0,0c3.8,5.3,10.8,11,18.8,11c7.6,0,14.3-5.4,18.2-10.4\r\n\t\th0c3-4.2,8-7.3,13.9-8.4c0.7-0.1,1.4-0.3,2.2-0.3c6.3-0.9,12.5-1.1,18.5-2.5c0.3-0.1,0.6-0.1,0.9-0.2c5.9-1.6,10.2-6.2,10.2-11.6\r\n\t\tc0-2-0.6-3.9-1.6-5.6c-0.3-0.4-0.5-0.7-0.8-1.1c-1.6-2.6-2.6-4.3-2.6-7.4c0-3.2,1-5.1,2.8-7.8c0.1-0.2,0.3-0.4,0.4-0.6\r\n\t\tc1.1-1.7,1.7-3.7,1.7-5.8c0-2-0.6-3.9-1.6-5.6c-0.3-0.3-0.5-0.7-0.7-1c-1.6-2.6-2.6-4.3-2.6-7.5c0-3.2,1-5,2.7-7.6\r\n\t\tC317.7,396.7,317.7,396.6,317.8,396.5z"},"children":[{"name":"path","attribs":{"d":"M317.8,396.5c0.1-0.2,0.3-0.4,0.4-0.6c1.1-1.7,1.7-3.6,1.7-5.7c0-3.5,1.6-6.2-6.5-6.2H198.6c-8.1,0-6.5,2.1-6.5,6.2\r\n\t\tc0,2.1,0.6,4,1.7,5.7c0.1,0.2,0.3,0.4,0.5,0.6c0,0.1,0.1,0.1,0.1,0.2c1.7,2.6,2.7,4.4,2.7,7.6c0,3.1-0.9,4.9-2.6,7.5\r\n\t\tc-0.3,0.4-0.5,0.7-0.7,1c-1,1.7-1.6,3.6-1.6,5.6c0,2.1,0.6,4,1.7,5.8c0.1,0.2,0.3,0.4,0.4,0.6c1.8,2.7,2.8,4.5,2.8,7.8\r\n\t\tc0,3.1-0.9,4.9-2.6,7.4c-0.2,0.4-0.5,0.7-0.8,1.1c-1,1.7-1.6,3.6-1.6,5.6c0,5.4,4.3,10.1,10.2,11.6c0.3,0.1,0.6,0.1,0.9,0.2\r\n\t\tc6,1.4,12.2,1.6,18.5,2.5c0.7,0.1,1.4,0.2,2.2,0.3c5.6,1,10.3,3.9,13.4,7.7l0,0c3.8,5.3,10.8,11,18.8,11c7.6,0,14.3-5.4,18.2-10.4\r\n\t\th0c3-4.2,8-7.3,13.9-8.4c0.7-0.1,1.4-0.3,2.2-0.3c6.3-0.9,12.5-1.1,18.5-2.5c0.3-0.1,0.6-0.1,0.9-0.2c5.9-1.6,10.2-6.2,10.2-11.6\r\n\t\tc0-2-0.6-3.9-1.6-5.6c-0.3-0.4-0.5-0.7-0.8-1.1c-1.6-2.6-2.6-4.3-2.6-7.4c0-3.2,1-5.1,2.8-7.8c0.1-0.2,0.3-0.4,0.4-0.6\r\n\t\tc1.1-1.7,1.7-3.7,1.7-5.8c0-2-0.6-3.9-1.6-5.6c-0.3-0.3-0.5-0.7-0.7-1c-1.6-2.6-2.6-4.3-2.6-7.5c0-3.2,1-5,2.7-7.6\r\n\t\tC317.7,396.7,317.7,396.6,317.8,396.5z"},"children":[]}]}]}]};exports.lightbulb=lightbulb;var link={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.5,208H256v0C256.2,208,256.3,208,256.5,208z"},"children":[{"name":"path","attribs":{"d":"M256.5,208H256v0C256.2,208,256.3,208,256.5,208z"},"children":[]}]},{"name":"path","attribs":{"d":"M368.5,160H320c0,0,26,17,31.6,48H368h0.5c17.6,0,31.5,13.9,31.5,31.5v32c0,17.6-13.9,32.5-31.5,32.5h-112\r\n\t\tc-17.6,0-32.5-14.9-32.5-32.5V240h-48v31.5c0,11.5,2.5,22.5,6.9,32.5c12.6,28.2,40.9,48,73.6,48h112c44.2,0,79.5-36.3,79.5-80.5\r\n\t\tv-32C448,195.3,412.7,160,368.5,160z"},"children":[{"name":"path","attribs":{"d":"M368.5,160H320c0,0,26,17,31.6,48H368h0.5c17.6,0,31.5,13.9,31.5,31.5v32c0,17.6-13.9,32.5-31.5,32.5h-112\r\n\t\tc-17.6,0-32.5-14.9-32.5-32.5V240h-48v31.5c0,11.5,2.5,22.5,6.9,32.5c12.6,28.2,40.9,48,73.6,48h112c44.2,0,79.5-36.3,79.5-80.5\r\n\t\tv-32C448,195.3,412.7,160,368.5,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M329.6,208c-12.1-28.3-40.1-48-73.1-48h-112c-44.2,0-80.5,35.3-80.5,79.5v32c0,44.2,36.3,80.5,80.5,80.5H192\r\n\t\tc0,0-25.8-17-32.1-48h-15.4c-17.6,0-32.5-14.9-32.5-32.5v-32c0-17.6,14.9-31.5,32.5-31.5H256h0.5c17.6,0,31.5,13.9,31.5,31.5v32\r\n\t\tc0,0.2,0,0.3,0,0.5h48c0-0.2,0-0.3,0-0.5v-32C336,228.3,333.7,217.6,329.6,208z"},"children":[{"name":"path","attribs":{"d":"M329.6,208c-12.1-28.3-40.1-48-73.1-48h-112c-44.2,0-80.5,35.3-80.5,79.5v32c0,44.2,36.3,80.5,80.5,80.5H192\r\n\t\tc0,0-25.8-17-32.1-48h-15.4c-17.6,0-32.5-14.9-32.5-32.5v-32c0-17.6,14.9-31.5,32.5-31.5H256h0.5c17.6,0,31.5,13.9,31.5,31.5v32\r\n\t\tc0,0.2,0,0.3,0,0.5h48c0-0.2,0-0.3,0-0.5v-32C336,228.3,333.7,217.6,329.6,208z"},"children":[]}]}]}]};exports.link=link;var loadA={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"96","r":"64"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"96","r":"64"},"children":[]}]},{"name":"circle","attribs":{"cx":"96","cy":"256","r":"48"},"children":[{"name":"circle","attribs":{"cx":"96","cy":"256","r":"48"},"children":[]}]},{"name":"circle","attribs":{"cx":"368","cy":"144","r":"8"},"children":[{"name":"circle","attribs":{"cx":"368","cy":"144","r":"8"},"children":[]}]},{"name":"path","attribs":{"d":"M180.1,107.6c-19.9-20.1-52.2-20.1-72.1,0c-19.9,20.1-19.9,52.7,0,72.8c19.9,20.1,52.2,20.1,72.1,0\r\n\t\tC200,160.3,200,127.7,180.1,107.6z"},"children":[{"name":"path","attribs":{"d":"M180.1,107.6c-19.9-20.1-52.2-20.1-72.1,0c-19.9,20.1-19.9,52.7,0,72.8c19.9,20.1,52.2,20.1,72.1,0\r\n\t\tC200,160.3,200,127.7,180.1,107.6z"},"children":[]}]},{"name":"circle","attribs":{"cx":"416","cy":"256","r":"16"},"children":[{"name":"circle","attribs":{"cx":"416","cy":"256","r":"16"},"children":[]}]},{"name":"circle","attribs":{"cx":"369","cy":"369","r":"24"},"children":[{"name":"circle","attribs":{"cx":"369","cy":"369","r":"24"},"children":[]}]},{"name":"circle","attribs":{"cx":"256","cy":"416","r":"32"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"416","r":"32"},"children":[]}]},{"name":"circle","attribs":{"cx":"144","cy":"368","r":"40"},"children":[{"name":"circle","attribs":{"cx":"144","cy":"368","r":"40"},"children":[]}]}]}]};exports.loadA=loadA;var loadB={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M288,160c0,17.7-14.3,32-32,32l0,0c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32l0,0c17.7,0,32,14.3,32,32V160z"},"children":[{"name":"path","attribs":{"d":"M288,160c0,17.7-14.3,32-32,32l0,0c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32l0,0c17.7,0,32,14.3,32,32V160z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,320c-17.7,0-32,14.3-32,32v96c0,17.7,14.3,32,32,32s32-14.3,32-32v-96C288,334.3,273.7,320,256,320L256,320z"},"children":[{"name":"path","attribs":{"d":"M256,320c-17.7,0-32,14.3-32,32v96c0,17.7,14.3,32,32,32s32-14.3,32-32v-96C288,334.3,273.7,320,256,320L256,320z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,224h-96c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S465.7,224,448,224L448,224z"},"children":[{"name":"path","attribs":{"d":"M448,224h-96c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S465.7,224,448,224L448,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,224H64c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S177.7,224,160,224L160,224z"},"children":[{"name":"path","attribs":{"d":"M160,224H64c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S177.7,224,160,224L160,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M346.5,210.7c-12.5,12.5-32.8,12.5-45.3,0l0,0c-12.5-12.5-12.5-32.8,0-45.3l67.9-67.9c12.5-12.5,32.8-12.5,45.3,0l0,0\r\n\t\tc12.5,12.5,12.5,32.8,0,45.3L346.5,210.7z"},"children":[{"name":"path","attribs":{"d":"M346.5,210.7c-12.5,12.5-32.8,12.5-45.3,0l0,0c-12.5-12.5-12.5-32.8,0-45.3l67.9-67.9c12.5-12.5,32.8-12.5,45.3,0l0,0\r\n\t\tc12.5,12.5,12.5,32.8,0,45.3L346.5,210.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M210.7,301.3c-12.5-12.5-32.8-12.5-45.3,0l-67.9,67.9c-12.5,12.5-12.5,32.8,0,45.3c12.5,12.5,32.8,12.5,45.3,0l67.9-67.9\r\n\t\tC223.2,334,223.2,313.8,210.7,301.3L210.7,301.3z"},"children":[{"name":"path","attribs":{"d":"M210.7,301.3c-12.5-12.5-32.8-12.5-45.3,0l-67.9,67.9c-12.5,12.5-12.5,32.8,0,45.3c12.5,12.5,32.8,12.5,45.3,0l67.9-67.9\r\n\t\tC223.2,334,223.2,313.8,210.7,301.3L210.7,301.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M414.4,369.1l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tC426.9,401.9,426.9,381.6,414.4,369.1L414.4,369.1z"},"children":[{"name":"path","attribs":{"d":"M414.4,369.1l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tC426.9,401.9,426.9,381.6,414.4,369.1L414.4,369.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M210.7,165.5l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tS223.2,178,210.7,165.5L210.7,165.5z"},"children":[{"name":"path","attribs":{"d":"M210.7,165.5l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tS223.2,178,210.7,165.5L210.7,165.5z"},"children":[]}]}]}]};exports.loadB=loadB;var loadC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M479.8,226.1c-1.4-8.7-3.1-17.3-5.3-25.8c-2.8-10.8-6.4-21.5-10.8-31.8c-8.9-21.2-21.1-41-35.9-58.6\r\n\tc-16-18.9-35.3-35.2-56.7-47.7C350,49.8,327,41,303,36.1c-12.4-2.5-24.9-4-37.6-4.1c-9.9-0.1-19.8,0.3-29.6,1.2\r\n\tc-25.5,2.5-50.7,9.6-73.9,20.5c-19.9,9.4-38.4,21.6-54.8,36.2c-16.4,14.6-30.7,31.6-42.2,50.3c-12.7,20.8-22.2,43.5-27.4,67.3\r\n\tc-4.2,19-6.2,38.6-5.2,58.1c0.9,18.9,3.8,37.8,9.5,55.9c3.6,11.5,7.9,22.7,13.3,33.6c5.3,10.7,11.5,21,18.4,30.7\r\n\tc13.8,19.3,30.6,36.4,49.8,50.5c19.6,14.5,41.7,25.7,64.9,33.1c24.2,7.7,49.9,11.3,75.3,10.4c24.8-0.8,49.4-5.6,72.6-14.5\r\n\tc22.3-8.6,43.2-20.9,61.5-36.3c9.2-7.8,17.4-16.6,25.1-25.9c7.8-9.4,14.8-19.3,20.6-30c5-9.2,9.2-18.8,12.8-28.5\r\n\tc1.8-4.8,3.5-9.6,4.9-14.6c1.5-5.3,2.6-10.8,3.6-16.2c1.5-8.5,2.1-17.3,1.3-25.9c-0.7,3.8-1.3,7.5-2.2,11.2\r\n\tc-1.1,4.3-2.5,8.5-4.1,12.6c-3.2,8.7-7.2,17.1-11,25.5c-4.9,10.7-10.6,20.9-16.8,30.8c-3.2,5.1-6.5,10.1-10.1,14.9\r\n\tc-3.6,4.8-7.7,9.4-11.8,13.9c-8.2,9.1-17.1,17.2-27,24.4c-10.1,7.4-20.8,13.9-32.1,19.3c-22.6,11-47.3,17.6-72.3,19.8\r\n\tc-25.6,2.2-51.7-0.3-76.3-7.6c-23.4-6.9-45.6-18.1-65.1-32.8c-18.9-14.3-35.3-31.9-48.2-51.8C75.4,347.8,66.1,324.9,61,301\r\n\tc-1.3-6.2-2.3-12.6-3-18.9c-0.6-5.4-1.1-10.9-1.3-16.4c-0.3-11.3,0.4-23,2.1-34.2c3.7-24.6,11.7-48.3,24.1-69.9\r\n\tc11-19.3,25.3-36.7,42.1-51.4c16.8-14.8,36-26.7,56.8-35.1c12-4.9,24.6-8.5,37.4-10.9c6.5-1.2,13-2.2,19.5-2.7\r\n\tc3.2-0.3,6.3-0.3,9.5-0.6c1.3,0,2.6,0.1,3.9,0.1c21.7-0.4,43.5,2.4,64.2,8.9c22.3,7,43.3,18.3,61.5,33c19.1,15.4,35,34.4,47,55.8\r\n\tc10.2,18.2,17.5,37.8,21.9,58.2c1,4.7,1.8,9.4,2.6,14.1c0.7,4.3,3.1,8.3,6.8,10.7c7.8,5.2,18.7,1.7,22.5-6.7\r\n\tC479.9,232.1,480.3,229,479.8,226.1z"},"children":[]}]};exports.loadC=loadC;var loadD={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M432,240h-80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80c8.8,0,16-7.2,16-16S440.8,240,432,240z"},"children":[{"name":"path","attribs":{"d":"M432,240h-80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80c8.8,0,16-7.2,16-16S440.8,240,432,240z"},"children":[]}]},{"name":"path","attribs":{"d":"M176,256c0-8.8-7.2-16-16-16H80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80C168.8,272,176,264.8,176,256z"},"children":[{"name":"path","attribs":{"d":"M176,256c0-8.8-7.2-16-16-16H80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80C168.8,272,176,264.8,176,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,336c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16v-80C272,343.2,264.8,336,256,336z"},"children":[{"name":"path","attribs":{"d":"M256,336c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16v-80C272,343.2,264.8,336,256,336z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16V80C272,71.2,264.8,64,256,64z"},"children":[{"name":"path","attribs":{"d":"M256,64c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16V80C272,71.2,264.8,64,256,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M325.3,216c4.4,7.7,14.2,10.3,21.9,5.9l69.3-40c7.7-4.4,10.3-14.2,5.9-21.9s-14.2-10.3-21.9-5.9l-69.3,40\r\n\t\tC323.5,198.6,320.9,208.3,325.3,216z"},"children":[{"name":"path","attribs":{"d":"M325.3,216c4.4,7.7,14.2,10.3,21.9,5.9l69.3-40c7.7-4.4,10.3-14.2,5.9-21.9s-14.2-10.3-21.9-5.9l-69.3,40\r\n\t\tC323.5,198.6,320.9,208.3,325.3,216z"},"children":[]}]},{"name":"path","attribs":{"d":"M186.7,296c-4.4-7.7-14.2-10.3-21.9-5.9l-69.3,40c-7.7,4.4-10.3,14.2-5.9,21.9s14.2,10.3,21.9,5.9l69.3-40\r\n\t\tC188.5,313.4,191.1,303.7,186.7,296z"},"children":[{"name":"path","attribs":{"d":"M186.7,296c-4.4-7.7-14.2-10.3-21.9-5.9l-69.3,40c-7.7,4.4-10.3,14.2-5.9,21.9s14.2,10.3,21.9,5.9l69.3-40\r\n\t\tC188.5,313.4,191.1,303.7,186.7,296z"},"children":[]}]},{"name":"path","attribs":{"d":"M317.9,331.1c-4.4-7.7-14.2-10.3-21.9-5.9s-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\tc7.7-4.4,10.3-14.2,5.9-21.9L317.9,331.1z"},"children":[{"name":"path","attribs":{"d":"M317.9,331.1c-4.4-7.7-14.2-10.3-21.9-5.9s-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\tc7.7-4.4,10.3-14.2,5.9-21.9L317.9,331.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M181.9,95.6c-4.4-7.7-14.2-10.3-21.9-5.9c-7.7,4.4-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\ts10.3-14.2,5.9-21.9L181.9,95.6z"},"children":[{"name":"path","attribs":{"d":"M181.9,95.6c-4.4-7.7-14.2-10.3-21.9-5.9c-7.7,4.4-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\ts10.3-14.2,5.9-21.9L181.9,95.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M296,186.7c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3c4.4-7.7,1.8-17.4-5.9-21.9c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3\r\n\t\tC285.7,172.5,288.3,182.3,296,186.7z"},"children":[{"name":"path","attribs":{"d":"M296,186.7c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3c4.4-7.7,1.8-17.4-5.9-21.9c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3\r\n\t\tC285.7,172.5,288.3,182.3,296,186.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M216,325.3c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3c-4.4,7.7-1.8,17.4,5.9,21.9c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3\r\n\t\tC226.3,339.5,223.7,329.7,216,325.3z"},"children":[{"name":"path","attribs":{"d":"M216,325.3c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3c-4.4,7.7-1.8,17.4,5.9,21.9c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3\r\n\t\tC226.3,339.5,223.7,329.7,216,325.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M416.4,330.1l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9c-4.4,7.7-1.8,17.4,5.9,21.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9\r\n\t\tC426.7,344.3,424.1,334.6,416.4,330.1z"},"children":[{"name":"path","attribs":{"d":"M416.4,330.1l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9c-4.4,7.7-1.8,17.4,5.9,21.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9\r\n\t\tC426.7,344.3,424.1,334.6,416.4,330.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M95.6,181.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9s1.8-17.4-5.9-21.9l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9\r\n\t\tC85.3,167.7,87.9,177.4,95.6,181.9z"},"children":[{"name":"path","attribs":{"d":"M95.6,181.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9s1.8-17.4-5.9-21.9l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9\r\n\t\tC85.3,167.7,87.9,177.4,95.6,181.9z"},"children":[]}]}]}]};exports.loadD=loadD;var location={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,64c-65.9,0-119.3,53.7-119.3,120c0,114.6,119.3,264,119.3,264s119.3-149.4,119.3-264C375.3,117.7,321.9,64,256,64z\r\n\t\t M256,242.2c-31.2,0-56.4-25.4-56.4-56.7c0-31.3,25.3-56.8,56.4-56.8c31.2,0,56.4,25.4,56.4,56.8\r\n\t\tC312.4,216.8,287.2,242.2,256,242.2z"},"children":[{"name":"path","attribs":{"d":"M256,64c-65.9,0-119.3,53.7-119.3,120c0,114.6,119.3,264,119.3,264s119.3-149.4,119.3-264C375.3,117.7,321.9,64,256,64z\r\n\t\t M256,242.2c-31.2,0-56.4-25.4-56.4-56.7c0-31.3,25.3-56.8,56.4-56.8c31.2,0,56.4,25.4,56.4,56.8\r\n\t\tC312.4,216.8,287.2,242.2,256,242.2z"},"children":[]}]}]}]};exports.location=location;var lockCombination={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M384,176.905V128C384,57.308,326.692,0,256,0S128,57.308,128,128v48.906C88.725,212.062,64,263.141,64,320\r\n\t\tc0,106.039,85.962,192,192,192c106.039,0,192-85.961,192-192C448,263.141,423.275,212.062,384,176.905z M160,128\r\n\t\tc0-52.935,43.065-96,96-96s96,43.065,96,96v25.692C323.759,137.355,290.973,128,256,128s-67.759,9.355-96,25.693V128z M256,480\r\n\t\tc-88.366,0-160-71.634-160-160s71.634-160,160-160s160,71.634,160,160S344.366,480,256,480z"},"children":[{"name":"path","attribs":{"d":"M384,176.905V128C384,57.308,326.692,0,256,0S128,57.308,128,128v48.906C88.725,212.062,64,263.141,64,320\r\n\t\tc0,106.039,85.962,192,192,192c106.039,0,192-85.961,192-192C448,263.141,423.275,212.062,384,176.905z M160,128\r\n\t\tc0-52.935,43.065-96,96-96s96,43.065,96,96v25.692C323.759,137.355,290.973,128,256,128s-67.759,9.355-96,25.693V128z M256,480\r\n\t\tc-88.366,0-160-71.634-160-160s71.634-160,160-160s160,71.634,160,160S344.366,480,256,480z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,176c-79.529,0-144,64.472-144,144s64.471,144,144,144s144-64.472,144-144S335.529,176,256,176z M378.533,353.487\r\n\t\tl-24.12-7.896l-3.926,12.19l24.161,7.912c-3.661,9.776-8.462,18.965-14.252,27.409l-10.56-7.737l-3.74,5.184l10.555,7.734\r\n\t\tc-6.129,8.047-13.189,15.324-21.028,21.682l-14.982-20.787l-10.284,7.532l14.976,20.776c-8.479,5.556-17.657,10.12-27.398,13.532\r\n\t\tl-3.96-12.294l-6.049,1.982l4.924,12.262C283.335,445.77,273,447.497,264,448v-12.659V429h-16v6.341V448\r\n\t\tc-11-0.506-19.705-2.244-29.243-5.065l3.948-11.206l-6.25-2.106l-3.539,11.224c-9.557-3.393-18.531-7.895-26.864-13.359\r\n\t\tl14.997-20.774l-10.27-7.534l-14.977,20.787c-7.809-6.333-14.841-13.575-20.953-21.583l9.556-6.998l-3.971-5.507l-9.562,7\r\n\t\tc-5.718-8.381-10.469-17.497-14.093-27.186l24.162-7.914l-3.926-12.188l-24.121,7.897c-2.49-9.431-3.954-18.488-4.258-29.487H134\r\n\t\tv-6.805l-5.993-0.002c0.223-10.606,0.672-20.88,3.266-30.682l24.921,7.9l4.347-12.188l-23.966-7.914\r\n\t\tc3.585-9.57,8.36-18.583,13.985-26.879l10.339,7.533l3.759-5.184l-10.292-7.545c6.221-8.253,13.424-15.707,21.434-22.197\r\n\t\tl14.984,20.787l10.284-7.536l-14.975-20.774c8.405-5.514,17.512-10.05,27.16-13.449l3.955,12.247l6.044-1.98l-4.62-12.231\r\n\t\tC228.21,194.258,237,192.508,248,192v12.66V211h16v-6.34V192c9,0.498,19.159,2.198,28.585,4.951l-4.761,13.28l6.182,2.106\r\n\t\tl4.174-13.312c9.696,3.408,18.778,7.957,27.208,13.491l-15.002,20.775l10.267,7.535l14.975-20.787\r\n\t\tc7.935,6.432,15.069,13.812,21.255,21.977l-11.299,8.268l3.975,5.512l11.276-8.26c5.595,8.271,10.247,17.243,13.816,26.775\r\n\t\tl-24.165,7.914l3.928,12.188l24.12-7.9c2.586,9.802,5.251,20.075,5.47,30.683L376,317.192V324h6.789\r\n\t\tC382.486,334.999,381.02,344.057,378.533,353.487z"},"children":[{"name":"path","attribs":{"d":"M256,176c-79.529,0-144,64.472-144,144s64.471,144,144,144s144-64.472,144-144S335.529,176,256,176z M378.533,353.487\r\n\t\tl-24.12-7.896l-3.926,12.19l24.161,7.912c-3.661,9.776-8.462,18.965-14.252,27.409l-10.56-7.737l-3.74,5.184l10.555,7.734\r\n\t\tc-6.129,8.047-13.189,15.324-21.028,21.682l-14.982-20.787l-10.284,7.532l14.976,20.776c-8.479,5.556-17.657,10.12-27.398,13.532\r\n\t\tl-3.96-12.294l-6.049,1.982l4.924,12.262C283.335,445.77,273,447.497,264,448v-12.659V429h-16v6.341V448\r\n\t\tc-11-0.506-19.705-2.244-29.243-5.065l3.948-11.206l-6.25-2.106l-3.539,11.224c-9.557-3.393-18.531-7.895-26.864-13.359\r\n\t\tl14.997-20.774l-10.27-7.534l-14.977,20.787c-7.809-6.333-14.841-13.575-20.953-21.583l9.556-6.998l-3.971-5.507l-9.562,7\r\n\t\tc-5.718-8.381-10.469-17.497-14.093-27.186l24.162-7.914l-3.926-12.188l-24.121,7.897c-2.49-9.431-3.954-18.488-4.258-29.487H134\r\n\t\tv-6.805l-5.993-0.002c0.223-10.606,0.672-20.88,3.266-30.682l24.921,7.9l4.347-12.188l-23.966-7.914\r\n\t\tc3.585-9.57,8.36-18.583,13.985-26.879l10.339,7.533l3.759-5.184l-10.292-7.545c6.221-8.253,13.424-15.707,21.434-22.197\r\n\t\tl14.984,20.787l10.284-7.536l-14.975-20.774c8.405-5.514,17.512-10.05,27.16-13.449l3.955,12.247l6.044-1.98l-4.62-12.231\r\n\t\tC228.21,194.258,237,192.508,248,192v12.66V211h16v-6.34V192c9,0.498,19.159,2.198,28.585,4.951l-4.761,13.28l6.182,2.106\r\n\t\tl4.174-13.312c9.696,3.408,18.778,7.957,27.208,13.491l-15.002,20.775l10.267,7.535l14.975-20.787\r\n\t\tc7.935,6.432,15.069,13.812,21.255,21.977l-11.299,8.268l3.975,5.512l11.276-8.26c5.595,8.271,10.247,17.243,13.816,26.775\r\n\t\tl-24.165,7.914l3.928,12.188l24.12-7.9c2.586,9.802,5.251,20.075,5.47,30.683L376,317.192V324h6.789\r\n\t\tC382.486,334.999,381.02,344.057,378.533,353.487z"},"children":[]}]},{"name":"circle","attribs":{"cx":"256","cy":"320","r":"81"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"320","r":"81"},"children":[]}]}]}]};exports.lockCombination=lockCombination;var locked={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M86.4,480h339.2c12.3,0,22.4-9.9,22.4-22.1V246c0-12.2-10-22-22.4-22H404v-30.9c0-41.5-16.2-87.6-42.6-115.4\r\n\tC335.1,49.9,297.4,32,256.1,32c-0.1,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-41.3,0-79,17.9-105.3,45.6c-26.4,27.8-42.6,73.9-42.6,115.4V224\r\n\tH89h-2.6C74,224,64,233.9,64,246v211.9C64,470.1,74,480,86.4,480z M161,193.1c0-27.3,9.9-61.1,28.1-80.3l0,0l0-0.3\r\n\tC206.7,93.9,231,83,255.9,83h0.1h0.1c24.9,0,49.2,10.9,66.8,29.5l0,0.2l-0.1,0.1c18.3,19.2,28.1,53,28.1,80.3V224h-17.5h-155H161\r\n\tV193.1z"},"children":[]}]};exports.locked=locked;var logIn={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255.988,32C160.473,32,78.934,91.804,46.727,176h34.639c9.396-20.484,22.457-39.35,38.868-55.762\r\n\t\tC156.497,83.973,204.709,64,255.988,64c51.286,0,99.504,19.973,135.771,56.239C428.027,156.505,448,204.719,448,256\r\n\t\tc0,51.285-19.973,99.501-56.239,135.765C355.494,428.029,307.275,448,255.988,448c-51.281,0-99.493-19.971-135.755-56.234\r\n\t\tC103.821,375.354,90.76,356.486,81.362,336H46.725c32.206,84.201,113.746,144,209.264,144C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z"},"children":[{"name":"path","attribs":{"d":"M255.988,32C160.473,32,78.934,91.804,46.727,176h34.639c9.396-20.484,22.457-39.35,38.868-55.762\r\n\t\tC156.497,83.973,204.709,64,255.988,64c51.286,0,99.504,19.973,135.771,56.239C428.027,156.505,448,204.719,448,256\r\n\t\tc0,51.285-19.973,99.501-56.239,135.765C355.494,428.029,307.275,448,255.988,448c-51.281,0-99.493-19.971-135.755-56.234\r\n\t\tC103.821,375.354,90.76,356.486,81.362,336H46.725c32.206,84.201,113.746,144,209.264,144C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z"},"children":[]}]},{"name":"polygon","attribs":{"points":"206.863,323.883 229.49,346.51 320,256 229.49,165.49 206.862,188.118 258.745,240 32,240 32,272 258.745,272 \t"},"children":[{"name":"polygon","attribs":{"points":"206.863,323.883 229.49,346.51 320,256 229.49,165.49 206.862,188.118 258.745,240 32,240 32,272 258.745,272 \t"},"children":[]}]}]}]};exports.logIn=logIn;var logOut={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"366.863,323.883 389.49,346.51 480,256 389.49,165.49 366.862,188.118 418.745,240 192,240 192,272 418.745,272 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"points":"366.863,323.883 389.49,346.51 480,256 389.49,165.49 366.862,188.118 418.745,240 192,240 192,272 418.745,272 \t\r\n\t\t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M391.491,391.766C355.229,428.029,307.018,448,255.736,448c-51.287,0-99.506-19.971-135.772-56.235\r\n\t\t\tC83.697,355.501,64,307.285,64,256c0-51.281,19.697-99.495,55.965-135.761C156.232,83.973,204.45,64,255.736,64\r\n\t\t\tc51.279,0,99.491,19.973,135.755,56.238c2.527,2.528,4.966,5.121,7.333,7.762h40.731c-40.474-58.028-107.709-96-183.819-96\r\n\t\t\tC132.021,32,32,132.298,32,256c0,123.715,100.021,224,223.736,224c76.112,0,143.35-37.97,183.822-96h-40.73\r\n\t\t\tC396.46,386.643,394.021,389.236,391.491,391.766z"},"children":[{"name":"path","attribs":{"d":"M391.491,391.766C355.229,428.029,307.018,448,255.736,448c-51.287,0-99.506-19.971-135.772-56.235\r\n\t\t\tC83.697,355.501,64,307.285,64,256c0-51.281,19.697-99.495,55.965-135.761C156.232,83.973,204.45,64,255.736,64\r\n\t\t\tc51.279,0,99.491,19.973,135.755,56.238c2.527,2.528,4.966,5.121,7.333,7.762h40.731c-40.474-58.028-107.709-96-183.819-96\r\n\t\t\tC132.021,32,32,132.298,32,256c0,123.715,100.021,224,223.736,224c76.112,0,143.35-37.97,183.822-96h-40.73\r\n\t\t\tC396.46,386.643,394.021,389.236,391.491,391.766z"},"children":[]}]}]}]}]}]};exports.logOut=logOut;var loop={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M273.4,300.5l-0.3,58c48.9-8.2,86.3-51,86.3-102.5c0-15.9-3.6-31-10-44.5c-2.8-5.8-6-11.3-9.8-16.5l47.1-43.5\r\n\t\tc1.1,1.3,2.1,2.7,3.1,4c20.9,28,33.2,62.8,33.2,100.5c0,1.2,0,2.5,0,3.7c-1.5,71.5-47.6,132-111.4,154.6\r\n\t\tc-12.3,4.3-25.2,7.3-38.5,8.7l-0.1,57l-76.2-67L170.6,390l44.4-38.7L273.4,300.5z"},"children":[{"name":"path","attribs":{"d":"M273.4,300.5l-0.3,58c48.9-8.2,86.3-51,86.3-102.5c0-15.9-3.6-31-10-44.5c-2.8-5.8-6-11.3-9.8-16.5l47.1-43.5\r\n\t\tc1.1,1.3,2.1,2.7,3.1,4c20.9,28,33.2,62.8,33.2,100.5c0,1.2,0,2.5,0,3.7c-1.5,71.5-47.6,132-111.4,154.6\r\n\t\tc-12.3,4.3-25.2,7.3-38.5,8.7l-0.1,57l-76.2-67L170.6,390l44.4-38.7L273.4,300.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M89,252.3c1.6-72.1,48.3-133,112.9-155.2c11.7-4,24-6.8,36.8-8.1l0.1-57l76.1,66.9l26.2,23.1l-44.3,38.6l-58.4,50.9\r\n\t\tl0.2-57.9c-48.8,8.3-86,51.1-86,102.4c0,16,3.6,31.1,10.1,44.7c2.7,5.8,6,11.2,9.7,16.3l-47,43.6c-1.3-1.6-2.6-3.3-3.8-5\r\n\t\tC101.1,327.7,89,293.3,89,256C89,254.8,89,253.5,89,252.3z"},"children":[{"name":"path","attribs":{"d":"M89,252.3c1.6-72.1,48.3-133,112.9-155.2c11.7-4,24-6.8,36.8-8.1l0.1-57l76.1,66.9l26.2,23.1l-44.3,38.6l-58.4,50.9\r\n\t\tl0.2-57.9c-48.8,8.3-86,51.1-86,102.4c0,16,3.6,31.1,10.1,44.7c2.7,5.8,6,11.2,9.7,16.3l-47,43.6c-1.3-1.6-2.6-3.3-3.8-5\r\n\t\tC101.1,327.7,89,293.3,89,256C89,254.8,89,253.5,89,252.3z"},"children":[]}]}]}]};exports.loop=loop;var magnet={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C141,32.5,64,109.6,64,231.8c0,48.8,2.1,76.8,14.5,127.8c15.9,65.7,39.1,113.3,39.1,113.3l0.6,1.3\r\n\tc1.9,3.4,5.5,5.8,9.8,5.8c1.4,0,2.7-0.2,4-0.7l1.7-0.8l50.3-20.7l1.8-0.8c3.3-1.9,5.5-5.3,5.5-9.3c-0.2-1.4-0.4-2.8-1-4\r\n\tc-0.1-0.1-0.1-0.2-0.2-0.4c-7-16-27.2-59.2-37-101.1c-9.9-41.9-13.5-62.4-13.5-107.7C139.6,163.4,192,112,256,112\r\n\tc64,0,116.4,51.4,116.4,122.5c0,45.3-3.7,65.8-13.6,107.7c-9.9,41.9-30,85.2-37,101.1c-0.1,0.2-0.1,0.3-0.2,0.4\r\n\tc-0.6,1.2-0.8,2.6-1,4c0,4,2.2,7.4,5.5,9.3l1.8,0.8l50.3,20.7l1.7,0.8c1.3,0.5,2.6,0.7,4,0.7c4.3,0,7.9-2.4,9.8-5.8l0.6-1.3\r\n\tc0,0,23.2-47.6,39.1-113.3c12.4-51,14.5-79,14.5-127.8C448,109.6,371,32.5,256,32z M173,444.2c0.1,0.2,0.2,0.5,0.3,0.7l-42.8,17.6\r\n\tc-5.4-11.8-22.7-51-35.7-104.4l42.5-12.3C146.5,385,164.4,425,173,444.2z M381.4,462.5l-42.8-17.6c0.1-0.2,0.2-0.4,0.3-0.7\r\n\tc8.6-19.2,26.4-59.2,35.6-98.4l42.5,12.3C404.1,411.5,386.8,450.7,381.4,462.5z"},"children":[]}]};exports.magnet=magnet;var male={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M480,192V32H320l63,63l-68.7,68.7C284.8,141.3,247.9,128,208,128c-97.2,0-176,78.8-176,176s78.8,176,176,176\r\n\ts176-78.8,176-176c0-39.9-13.3-76.8-35.7-106.3L417,129L480,192z M298.5,394.5C274.3,418.7,242.2,432,208,432s-66.3-13.3-90.5-37.5\r\n\tC93.3,370.3,80,338.2,80,304s13.3-66.3,37.5-90.5c24.2-24.2,56.3-37.5,90.5-37.5s66.3,13.3,90.5,37.5S336,269.8,336,304\r\n\tS322.7,370.3,298.5,394.5z"},"children":[]}]};exports.male=male;var man={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,106.6c20.6,0.1,37.3-16.6,37.3-37.3c0-20.6-16.7-37.3-37.3-37.3c-20.6,0-37.3,16.7-37.3,37.3\r\n\tC218.7,89.9,235.4,106.6,256,106.6z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M293.4,115H256h-37.4c-28.2,0-46.6,24.8-46.6,48.4V277c0,22,31,22,31,0V172h6v285.6c0,30.4,42,29.4,43,0V293h7h1v164.7\r\n\t\tc1.7,31.2,43,28.2,43-0.1V172h5v105c0,22,32,22,32,0V163.4C340,139.9,321.5,115,293.4,115z"},"children":[{"name":"path","attribs":{"d":"M293.4,115H256h-37.4c-28.2,0-46.6,24.8-46.6,48.4V277c0,22,31,22,31,0V172h6v285.6c0,30.4,42,29.4,43,0V293h7h1v164.7\r\n\t\tc1.7,31.2,43,28.2,43-0.1V172h5v105c0,22,32,22,32,0V163.4C340,139.9,321.5,115,293.4,115z"},"children":[]}]}]}]};exports.man=man;var map={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M473.152,136.58L368.594,66.307c-4.644-3.076-10.365-3.076-15.031,0l-97.094,65.195l-97.109-65.195\r\n\t\tc-4.643-3.076-10.444-3.076-15.062,0L39.344,136.58c-4.399,2.949-7.344,8.272-7.344,14.05V431.6c0,5.904,3.07,11.347,7.663,14.271\r\n\t\tc4.62,2.877,10.382,2.829,14.904-0.223l97.188-65.197l97.181,65.197c4.666,3.1,10.44,3.1,15.084,0l97.158-65.197l97.151,65.197\r\n\t\tc2.311,1.55,4.912,2.353,7.538,2.353c2.455,0,4.709-0.747,6.969-2.13c4.594-2.924,7.165-8.366,7.165-14.271v-280.97\r\n\t\tC480,144.852,477.575,139.529,473.152,136.58z M135,353.248l-71,49.404v-241.75l71-49.428V353.248z M167,352.766v-122.7\r\n\t\tc1.167,0.756,2.31,1.526,3.389,2.301l9.333-12.996c-3.904-2.804-8.292-5.501-12.722-7.705V110.992l73,48.992v108.574\r\n\t\tc-5.372-1.855-10.586-4.37-15.893-7.682l-8.471,13.574c6.848,4.273,13.621,7.467,20.704,9.765l3.66-11.286v128.806L167,352.766z\r\n\t\t M272,401.734V288.369c0.349-0.021,0.693-0.03,1.043-0.054c2.91-0.198,5.777-0.517,8.518-0.946l-2.479-15.807\r\n\t\tc-2.268,0.355-4.65,0.619-7.082,0.786V159.984l73-48.992V229.78l-4.844-4.372c-2.997,3.319-5.833,6.575-8.575,9.725\r\n\t\tc-1.806,2.073-3.578,4.108-5.339,6.095l11.974,10.613c1.791-2.021,3.595-4.091,5.431-6.2c0.443-0.509,0.905-1.035,1.354-1.549\r\n\t\tv108.675L272,401.734z M448,401.652l-71-48.438v-136.91c3.785-1.715,7.679-2.992,11.639-3.792l-3.166-15.683\r\n\t\tc-2.858,0.577-5.687,1.339-8.473,2.281v-87.671l71,48.461V401.652z"},"children":[{"name":"path","attribs":{"d":"M473.152,136.58L368.594,66.307c-4.644-3.076-10.365-3.076-15.031,0l-97.094,65.195l-97.109-65.195\r\n\t\tc-4.643-3.076-10.444-3.076-15.062,0L39.344,136.58c-4.399,2.949-7.344,8.272-7.344,14.05V431.6c0,5.904,3.07,11.347,7.663,14.271\r\n\t\tc4.62,2.877,10.382,2.829,14.904-0.223l97.188-65.197l97.181,65.197c4.666,3.1,10.44,3.1,15.084,0l97.158-65.197l97.151,65.197\r\n\t\tc2.311,1.55,4.912,2.353,7.538,2.353c2.455,0,4.709-0.747,6.969-2.13c4.594-2.924,7.165-8.366,7.165-14.271v-280.97\r\n\t\tC480,144.852,477.575,139.529,473.152,136.58z M135,353.248l-71,49.404v-241.75l71-49.428V353.248z M167,352.766v-122.7\r\n\t\tc1.167,0.756,2.31,1.526,3.389,2.301l9.333-12.996c-3.904-2.804-8.292-5.501-12.722-7.705V110.992l73,48.992v108.574\r\n\t\tc-5.372-1.855-10.586-4.37-15.893-7.682l-8.471,13.574c6.848,4.273,13.621,7.467,20.704,9.765l3.66-11.286v128.806L167,352.766z\r\n\t\t M272,401.734V288.369c0.349-0.021,0.693-0.03,1.043-0.054c2.91-0.198,5.777-0.517,8.518-0.946l-2.479-15.807\r\n\t\tc-2.268,0.355-4.65,0.619-7.082,0.786V159.984l73-48.992V229.78l-4.844-4.372c-2.997,3.319-5.833,6.575-8.575,9.725\r\n\t\tc-1.806,2.073-3.578,4.108-5.339,6.095l11.974,10.613c1.791-2.021,3.595-4.091,5.431-6.2c0.443-0.509,0.905-1.035,1.354-1.549\r\n\t\tv108.675L272,401.734z M448,401.652l-71-48.438v-136.91c3.785-1.715,7.679-2.992,11.639-3.792l-3.166-15.683\r\n\t\tc-2.858,0.577-5.687,1.339-8.473,2.281v-87.671l71,48.461V401.652z"},"children":[]}]},{"name":"path","attribs":{"d":"M129.285,221.111c2.218-1.195-1.353-1.071,1.012-1.837l-4.928-15.222c-3.282,1.062-6.502,2.439-9.571,4.093\r\n\t\tc-3.824,2.062-7.745,4.916-11.339,8.253l10.888,11.724C117.963,225.694,126.639,222.538,129.285,221.111z"},"children":[{"name":"path","attribs":{"d":"M129.285,221.111c2.218-1.195-1.353-1.071,1.012-1.837l-4.928-15.222c-3.282,1.062-6.502,2.439-9.571,4.093\r\n\t\tc-3.824,2.062-7.745,4.916-11.339,8.253l10.888,11.724C117.963,225.694,126.639,222.538,129.285,221.111z"},"children":[]}]},{"name":"path","attribs":{"d":"M296.802,266.127l6.985,14.395c6.596-3.201,12.842-7.445,19.095-12.974l-10.599-11.987\r\n\t\tC307.135,260.113,302.071,263.569,296.802,266.127z"},"children":[{"name":"path","attribs":{"d":"M296.802,266.127l6.985,14.395c6.596-3.201,12.842-7.445,19.095-12.974l-10.599-11.987\r\n\t\tC307.135,260.113,302.071,263.569,296.802,266.127z"},"children":[]}]},{"name":"path","attribs":{"d":"M99.364,256.006c1.893-5.926,3.528-11.044,7.129-16.304l-13.204-9.037c-4.924,7.194-7.081,13.944-9.167,20.471\r\n\t\tl-0.242,0.758l15.238,4.879L99.364,256.006z"},"children":[{"name":"path","attribs":{"d":"M99.364,256.006c1.893-5.926,3.528-11.044,7.129-16.304l-13.204-9.037c-4.924,7.194-7.081,13.944-9.167,20.471\r\n\t\tl-0.242,0.758l15.238,4.879L99.364,256.006z"},"children":[]}]},{"name":"path","attribs":{"d":"M198.311,237.753c-1.007-1.204-2.014-2.408-3.032-3.603l-12.178,10.379c0.986,1.156,1.961,2.322,2.936,3.488\r\n\t\tc3.593,4.296,7.308,8.739,11.61,12.809l10.996-11.624C205.02,245.775,201.761,241.878,198.311,237.753z"},"children":[{"name":"path","attribs":{"d":"M198.311,237.753c-1.007-1.204-2.014-2.408-3.032-3.603l-12.178,10.379c0.986,1.156,1.961,2.322,2.936,3.488\r\n\t\tc3.593,4.296,7.308,8.739,11.61,12.809l10.996-11.624C205.02,245.775,201.761,241.878,198.311,237.753z"},"children":[]}]},{"name":"polygon","attribs":{"points":"408.156,229.657 418.5,219.314 428.844,229.657 440.156,218.342 429.814,208 440.156,197.657 428.844,186.342 \r\n\t\t418.5,196.685 408.156,186.342 396.844,197.657 407.186,208 396.844,218.342 \t"},"children":[{"name":"polygon","attribs":{"points":"408.156,229.657 418.5,219.314 428.844,229.657 440.156,218.342 429.814,208 440.156,197.657 428.844,186.342 \r\n\t\t418.5,196.685 408.156,186.342 396.844,197.657 407.186,208 396.844,218.342 \t"},"children":[]}]}]}]};exports.map=map;var medkit={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64H256h-44.8c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8\r\n\t\tv288c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.8-3.6,7.8-8V152C480,147.6,476.7,144,472.2,144z M192,117.2c0-0.4,0-0.7,0-1s0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.3,18.8-19.3H256h45.2c10.1,0,18.8,9.5,18.8,19.3c0,0.3,0,0.6,0,1s0,0.6,0,1V144H192V117.2z M352,320h-64v64h-64v-64\r\n\t\th-64v-64h64v-64h64v64h64V320z"},"children":[{"name":"path","attribs":{"d":"M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64H256h-44.8c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8\r\n\t\tv288c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.8-3.6,7.8-8V152C480,147.6,476.7,144,472.2,144z M192,117.2c0-0.4,0-0.7,0-1s0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.3,18.8-19.3H256h45.2c10.1,0,18.8,9.5,18.8,19.3c0,0.3,0,0.6,0,1s0,0.6,0,1V144H192V117.2z M352,320h-64v64h-64v-64\r\n\t\th-64v-64h64v-64h64v64h64V320z"},"children":[]}]}]}]};exports.medkit=medkit;var merge={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M384,224c-23.637,0-44.307,12.89-55.391,32H319c-42.464,0-79.99-17.904-111.535-53.214\r\n\tc-20.356-22.787-33.493-48.869-37.856-58.218C183.301,132.822,192,115.413,192,96c0-35.29-28.71-64-64-64S64,60.71,64,96\r\n\tc0,23.637,12.89,44.307,32,55.391v209.219C76.89,371.693,64,392.363,64,416c0,35.29,28.71,64,64,64s64-28.71,64-64\r\n\tc0-23.637-12.89-44.307-32-55.391V245.692C203.553,294.307,258.468,320,319,320h9.609c11.084,19.11,31.754,32,55.391,32\r\n\tc35.29,0,64-28.71,64-64S419.29,224,384,224z M128,64c17.673,0,32,14.327,32,32s-14.327,32-32,32s-32-14.327-32-32\r\n\tS110.327,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M384,320\r\n\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S401.673,320,384,320z"},"children":[]}]};exports.merge=merge;var micA={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M112.1,238.1l-0.1,13.6c0.1,65.6,46,120.6,108.1,136.2c1.3,0.1,2.6,0.5,3.8,0.9c5.9,2,10.1,6.9,12.1,12.8v58.7\r\n\t\tc0,10.9,8.9,19.7,20,19.7h0.1c11.1,0,19.9-8.8,19.9-19.7v-58.8c2-5.9,6.1-10.7,12-12.7c1.2-0.4,2.5-0.8,3.9-0.9\r\n\t\tC354,372.3,400,317.3,400,251.7v-13.6c0-10.4-8.9-18.9-19.5-18.9c-10.6,0-19.5,8.4-19.5,18.9v13.6c0,28.5-11.5,54.1-30.6,72.8\r\n\t\tc-19.2,18.6-45.3,30.2-74.5,30.2c-29.2,0-55.1-11.5-74.2-30.2c-19.1-18.7-30.7-44.4-30.7-72.8v-13.6c0-10.4-8.8-18.9-19.5-18.9\r\n\t\tC120.9,219.2,112.1,227.7,112.1,238.1z"},"children":[{"name":"path","attribs":{"d":"M112.1,238.1l-0.1,13.6c0.1,65.6,46,120.6,108.1,136.2c1.3,0.1,2.6,0.5,3.8,0.9c5.9,2,10.1,6.9,12.1,12.8v58.7\r\n\t\tc0,10.9,8.9,19.7,20,19.7h0.1c11.1,0,19.9-8.8,19.9-19.7v-58.8c2-5.9,6.1-10.7,12-12.7c1.2-0.4,2.5-0.8,3.9-0.9\r\n\t\tC354,372.3,400,317.3,400,251.7v-13.6c0-10.4-8.9-18.9-19.5-18.9c-10.6,0-19.5,8.4-19.5,18.9v13.6c0,28.5-11.5,54.1-30.6,72.8\r\n\t\tc-19.2,18.6-45.3,30.2-74.5,30.2c-29.2,0-55.1-11.5-74.2-30.2c-19.1-18.7-30.7-44.4-30.7-72.8v-13.6c0-10.4-8.8-18.9-19.5-18.9\r\n\t\tC120.9,219.2,112.1,227.7,112.1,238.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M179,107.7v143.8c0,41.8,34.7,75.7,77.5,75.7c42.8,0,77.5-33.9,77.5-75.7V107.7c0-41.8-34.7-75.7-77.5-75.7\r\n\t\tC213.7,32,179,65.9,179,107.7z"},"children":[{"name":"path","attribs":{"d":"M179,107.7v143.8c0,41.8,34.7,75.7,77.5,75.7c42.8,0,77.5-33.9,77.5-75.7V107.7c0-41.8-34.7-75.7-77.5-75.7\r\n\t\tC213.7,32,179,65.9,179,107.7z"},"children":[]}]}]}]};exports.micA=micA;var micB={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.4,32c-35.1,0.1-65.8,23.2-76.8,59.3c-5.6,18.5-3.5,44.8-1.2,54.5c2.3,9.7,7.3,19.9,13.2,28.3\r\n\t\tc2.8,4.2,6.7,7.4,11.2,9.2c0.6,0.3,1.3,0.5,2,0.8c3.3,1.1,6.5,2.2,10.1,3.1c11.8,3,27.1,4.7,41.1,4.8v0c0,0,0.6,0,0.7,0\r\n\t\tc0.3,0,0.3,0,1.3,0v-0.1c14-0.1,27.3-1.7,39.1-4.8c3.6-0.9,6.9-2,10.2-3.1c0.7-0.2,1.3-0.5,1.9-0.8c4.5-1.8,8.4-5,11.2-9.2\r\n\t\tc5.9-8.4,10.8-18.6,13.2-28.3c2.3-9.7,4.4-36-1.2-54.5C321.4,55.2,291.6,32.1,256.4,32z"},"children":[{"name":"path","attribs":{"d":"M256.4,32c-35.1,0.1-65.8,23.2-76.8,59.3c-5.6,18.5-3.5,44.8-1.2,54.5c2.3,9.7,7.3,19.9,13.2,28.3\r\n\t\tc2.8,4.2,6.7,7.4,11.2,9.2c0.6,0.3,1.3,0.5,2,0.8c3.3,1.1,6.5,2.2,10.1,3.1c11.8,3,27.1,4.7,41.1,4.8v0c0,0,0.6,0,0.7,0\r\n\t\tc0.3,0,0.3,0,1.3,0v-0.1c14-0.1,27.3-1.7,39.1-4.8c3.6-0.9,6.9-2,10.2-3.1c0.7-0.2,1.3-0.5,1.9-0.8c4.5-1.8,8.4-5,11.2-9.2\r\n\t\tc5.9-8.4,10.8-18.6,13.2-28.3c2.3-9.7,4.4-36-1.2-54.5C321.4,55.2,291.6,32.1,256.4,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M295.3,201.1c-0.4,0-0.7,0-1.1,0.1c-0.6,0.1-1.3,0.3-1.9,0.4c-2,0.4-4.1,0.8-6.1,1.2c-9.2,1.5-18.9,2.3-29,2.4\r\n\t\tc-10.1-0.1-22.3-0.9-31-2.4c-2.1-0.4-4.2-0.8-6.2-1.2c-0.6-0.1-1.3-0.3-1.9-0.4c-0.4-0.1-0.8-0.1-1.1-0.1c-6.1,0-11,5.3-11.2,11.9\r\n\t\tc0.1,0.8,0.2,1.6,0.2,2.4c4.8,67.2,16.8,240.7,18.2,252c0,0,2.8,12.7,32.1,12.6c0,0,0,0,0,0c29.2,0.1,32.1-12.6,32.1-12.6\r\n\t\tc1.4-11.3,13.4-184.8,18.2-252c0-0.8,0.1-1.6,0.2-2.4C306.3,206.4,301.4,201.1,295.3,201.1z M266,281.7c0,6-4.5,10.9-10,10.9\r\n\t\tc-5.5,0-10-4.9-10-10.9V249c0-6,4.5-10.9,10-10.9c5.5,0,10,4.9,10,10.9V281.7z"},"children":[{"name":"path","attribs":{"d":"M295.3,201.1c-0.4,0-0.7,0-1.1,0.1c-0.6,0.1-1.3,0.3-1.9,0.4c-2,0.4-4.1,0.8-6.1,1.2c-9.2,1.5-18.9,2.3-29,2.4\r\n\t\tc-10.1-0.1-22.3-0.9-31-2.4c-2.1-0.4-4.2-0.8-6.2-1.2c-0.6-0.1-1.3-0.3-1.9-0.4c-0.4-0.1-0.8-0.1-1.1-0.1c-6.1,0-11,5.3-11.2,11.9\r\n\t\tc0.1,0.8,0.2,1.6,0.2,2.4c4.8,67.2,16.8,240.7,18.2,252c0,0,2.8,12.7,32.1,12.6c0,0,0,0,0,0c29.2,0.1,32.1-12.6,32.1-12.6\r\n\t\tc1.4-11.3,13.4-184.8,18.2-252c0-0.8,0.1-1.6,0.2-2.4C306.3,206.4,301.4,201.1,295.3,201.1z M266,281.7c0,6-4.5,10.9-10,10.9\r\n\t\tc-5.5,0-10-4.9-10-10.9V249c0-6,4.5-10.9,10-10.9c5.5,0,10,4.9,10,10.9V281.7z"},"children":[]}]}]}]};exports.micB=micB;var micC={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M329.2,32H182.9C152.5,32,128,55.4,128,84.4V112h152v37H128v43h152v37H128v43h152v37H128v41.8c0,29,24.5,52.2,54.9,52.2H213\r\n\tv77h86v-77h30.2c30.3,0,54.8-23.2,54.8-52.2V309h-59v-37h59v-43h-59v-37h59v-43h-59v-37h59V84.4C384,55.4,359.5,32,329.2,32z"},"children":[]}]};exports.micC=micC;var minusCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H128v-32h256V272z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H128v-32h256V272z"},"children":[]}]}]}]};exports.minusCircled=minusCircled;var minusRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\tC448,238.3,434.3,224,417.4,224z"},"children":[]}]};exports.minusRound=minusRound;var minus={"viewBox":"0 0 512 512","children":[{"name":"rect","attribs":{"x":"64","y":"224","width":"384","height":"64"},"children":[]}]};exports.minus=minus;var modelS={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M508.8,390.9c-0.6,4.1-1.6,8.1-3.1,11.2c-2.7,5.5-5.3,6-15.5,5.5c-13.2-0.6-32.1,0-52.1,0.8c0,5.5,0.2,8.1,0.2,8.1\r\n\t\tc1.3,15.1,8.1,15.6,10.8,15.6c3,0,39.2,0,43,0s7.3,0,10-1.8c3.5-2.3,5-9,6.3-20.7c0.2-1.7,0.3-3.9,0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8,0.1-1.8,0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C508.9,396.3,508.9,393.3,508.8,390.9z"},"children":[{"name":"path","attribs":{"d":"M508.8,390.9c-0.6,4.1-1.6,8.1-3.1,11.2c-2.7,5.5-5.3,6-15.5,5.5c-13.2-0.6-32.1,0-52.1,0.8c0,5.5,0.2,8.1,0.2,8.1\r\n\t\tc1.3,15.1,8.1,15.6,10.8,15.6c3,0,39.2,0,43,0s7.3,0,10-1.8c3.5-2.3,5-9,6.3-20.7c0.2-1.7,0.3-3.9,0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8,0.1-1.8,0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C508.9,396.3,508.9,393.3,508.8,390.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M3,390.9c0.6,4.1,1.6,8.1,3.1,11.2c2.7,5.5,5.3,6,15.5,5.5c13.2-0.6,32.1,0,52.1,0.8c0,5.5-0.2,8.1-0.2,8.1\r\n\t\tc-1.3,15.1-8.1,15.6-10.8,15.6c-3,0-39.2,0-43,0s-7,0-10-1.8c-3.6-2.1-5-9-6.3-20.7c-0.2-1.7-0.3-3.9-0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8-0.1-1.8-0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C3,396.3,3,393.3,3,390.9z"},"children":[{"name":"path","attribs":{"d":"M3,390.9c0.6,4.1,1.6,8.1,3.1,11.2c2.7,5.5,5.3,6,15.5,5.5c13.2-0.6,32.1,0,52.1,0.8c0,5.5-0.2,8.1-0.2,8.1\r\n\t\tc-1.3,15.1-8.1,15.6-10.8,15.6c-3,0-39.2,0-43,0s-7,0-10-1.8c-3.6-2.1-5-9-6.3-20.7c-0.2-1.7-0.3-3.9-0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8-0.1-1.8-0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C3,396.3,3,393.3,3,390.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M512,296.6c0-30.7-4-60.7-5.6-64c-1.2-2.4-8.9-8.7-26.4-20.6c-17.7-12.1-17.3-10.3-20.5-18.2c2.9-0.9,5.7-2.6,7.4-2.8\r\n\t\tc3.8-0.4,4,3.2,11.9,3.2s25-2.1,28.5-5.6c3.5-3.5,4.6-4.7,4.6-7.8s-1.8-9.5-5.2-13.3s-17.9-5.7-26.4-6.8s-9.7,0-11.9,1.4\r\n\t\tc-3.5,2.2-3.7,22.3-3.7,22.3l-8.3,0.2c-5.4-13.3-12.9-40.1-24.6-61.2c-12.8-23-26.2-30.2-31.8-32c-5.5-1.7-10.5-2.9-48-6.7\r\n\t\tc-38.3-4-68.8-4.5-96-4.5s-57.7,0.6-96,4.5c-37.5,3.9-42.5,5-48,6.7c-5.5,1.7-19,9-31.8,32c-11.7,21.1-19.2,47.9-24.6,61.2\r\n\t\tl-8.3-0.2c0,0-0.1-20.1-3.7-22.3c-2.2-1.4-3.4-2.6-11.9-1.4s-23,3-26.4,6.8s-5.2,10.2-5.2,13.3s1.1,4.4,4.6,7.8\r\n\t\tc3.5,3.5,20.6,5.6,28.5,5.6s8.1-3.6,11.9-3.2c1.7,0.2,4.6,1.9,7.4,2.8c-3.3,7.9-2.8,6.1-20.5,18.2c-17.5,12-25.3,18.2-26.4,20.6\r\n\t\tC4,235.9,0,265.9,0,296.6s2.2,58.3,2.2,68.1c0,4.1,0,11.3,0.9,18.2c0.6,4.1,1.5,8.1,3.1,11.2c2.7,5.5,5.2,6,15.5,5.5\r\n\t\tc13.2-0.6,32.3,0,52,0.8c13.2,0.5,26.7,1,38.7,1.3c30,0.6,21.2-4.4,34-4.2c12.8,0.2,63.3,2.3,109.5,2.3s96.8-2.1,109.5-2.3\r\n\t\tc12.8-0.2,4,4.8,34,4.2c12-0.2,25.5-0.8,38.7-1.3c19.7-0.7,38.9-1.4,52-0.8c10.3,0.5,12.8,0,15.5-5.5c1.5-3.1,2.5-7.1,3.1-11.2\r\n\t\tc1-6.9,0.9-14.1,0.9-18.2C509.8,355,512,327.3,512,296.6z M86.2,145.2c4.8-11.2,19.2-33.7,26.2-37.7c1.7-1,16.6-5.7,53.9-8.2\r\n\t\tc34.3-2.3,72.2-3.2,89.8-3.2s55.5,0.9,89.8,3.2c37.2,2.5,52.3,7.1,53.9,8.2c9,6.2,21.4,26.5,26.2,37.7c4.8,11.2,11.2,33.2,10,36.2\r\n\t\tc-1.2,3,1.2,4.5-15,3.2c-16.1-1.2-117.2-2.5-164.8-2.5c-47.5,0-148.6,1.3-164.8,2.5c-16.2,1.2-13.8-0.2-15-3.2\r\n\t\tC75,178.4,81.4,156.5,86.2,145.2z M123,270.4c-7.2,1.8-11.5,5.7-20.5,5.6c-9,0-33.3-4.1-38.5-4.3c-5.2-0.2-9.8,3.5-12.5,4.2\r\n\t\ts-8-1.2-16-3.7s-12.7-1.8-15.3-12.7c-2.7-10.8,0-26.3,0-26.3c17.3-0.8,34,0.8,65.3,9.6c31.3,8.8,48.7,25.7,48.7,25.7\r\n\t\tS130.2,268.6,123,270.4z M358.2,349.2c-14.3,1.9-74.2,2.4-102.2,2.4c-28,0-87.9-0.6-102.2-2.4c-14.6-1.9-33.6-19.4-20.5-33.3\r\n\t\tc17.7-18.9,14.4-18.3,54.6-23.5c34.8-4.5,61.2-4.7,68.1-4.7c6.8,0,33.3,0.3,68.1,4.7c40.2,5.2,36.9,4.6,54.6,23.5\r\n\t\tC391.8,329.8,372.8,347.3,358.2,349.2z M491.8,259.6c-2.7,10.8-7.3,10.2-15.3,12.7s-13.3,4.3-16,3.7s-7.3-4.3-12.5-4.2\r\n\t\tc-5.2,0.2-29.5,4.3-38.5,4.3c-9,0-13.3-3.8-20.5-5.6c-7.2-1.8-11.2-1.8-11.2-1.8s17.3-17,48.7-25.7c31.3-8.8,48-10.4,65.3-9.6\r\n\t\tC491.8,233.2,494.5,248.7,491.8,259.6z"},"children":[{"name":"path","attribs":{"d":"M512,296.6c0-30.7-4-60.7-5.6-64c-1.2-2.4-8.9-8.7-26.4-20.6c-17.7-12.1-17.3-10.3-20.5-18.2c2.9-0.9,5.7-2.6,7.4-2.8\r\n\t\tc3.8-0.4,4,3.2,11.9,3.2s25-2.1,28.5-5.6c3.5-3.5,4.6-4.7,4.6-7.8s-1.8-9.5-5.2-13.3s-17.9-5.7-26.4-6.8s-9.7,0-11.9,1.4\r\n\t\tc-3.5,2.2-3.7,22.3-3.7,22.3l-8.3,0.2c-5.4-13.3-12.9-40.1-24.6-61.2c-12.8-23-26.2-30.2-31.8-32c-5.5-1.7-10.5-2.9-48-6.7\r\n\t\tc-38.3-4-68.8-4.5-96-4.5s-57.7,0.6-96,4.5c-37.5,3.9-42.5,5-48,6.7c-5.5,1.7-19,9-31.8,32c-11.7,21.1-19.2,47.9-24.6,61.2\r\n\t\tl-8.3-0.2c0,0-0.1-20.1-3.7-22.3c-2.2-1.4-3.4-2.6-11.9-1.4s-23,3-26.4,6.8s-5.2,10.2-5.2,13.3s1.1,4.4,4.6,7.8\r\n\t\tc3.5,3.5,20.6,5.6,28.5,5.6s8.1-3.6,11.9-3.2c1.7,0.2,4.6,1.9,7.4,2.8c-3.3,7.9-2.8,6.1-20.5,18.2c-17.5,12-25.3,18.2-26.4,20.6\r\n\t\tC4,235.9,0,265.9,0,296.6s2.2,58.3,2.2,68.1c0,4.1,0,11.3,0.9,18.2c0.6,4.1,1.5,8.1,3.1,11.2c2.7,5.5,5.2,6,15.5,5.5\r\n\t\tc13.2-0.6,32.3,0,52,0.8c13.2,0.5,26.7,1,38.7,1.3c30,0.6,21.2-4.4,34-4.2c12.8,0.2,63.3,2.3,109.5,2.3s96.8-2.1,109.5-2.3\r\n\t\tc12.8-0.2,4,4.8,34,4.2c12-0.2,25.5-0.8,38.7-1.3c19.7-0.7,38.9-1.4,52-0.8c10.3,0.5,12.8,0,15.5-5.5c1.5-3.1,2.5-7.1,3.1-11.2\r\n\t\tc1-6.9,0.9-14.1,0.9-18.2C509.8,355,512,327.3,512,296.6z M86.2,145.2c4.8-11.2,19.2-33.7,26.2-37.7c1.7-1,16.6-5.7,53.9-8.2\r\n\t\tc34.3-2.3,72.2-3.2,89.8-3.2s55.5,0.9,89.8,3.2c37.2,2.5,52.3,7.1,53.9,8.2c9,6.2,21.4,26.5,26.2,37.7c4.8,11.2,11.2,33.2,10,36.2\r\n\t\tc-1.2,3,1.2,4.5-15,3.2c-16.1-1.2-117.2-2.5-164.8-2.5c-47.5,0-148.6,1.3-164.8,2.5c-16.2,1.2-13.8-0.2-15-3.2\r\n\t\tC75,178.4,81.4,156.5,86.2,145.2z M123,270.4c-7.2,1.8-11.5,5.7-20.5,5.6c-9,0-33.3-4.1-38.5-4.3c-5.2-0.2-9.8,3.5-12.5,4.2\r\n\t\ts-8-1.2-16-3.7s-12.7-1.8-15.3-12.7c-2.7-10.8,0-26.3,0-26.3c17.3-0.8,34,0.8,65.3,9.6c31.3,8.8,48.7,25.7,48.7,25.7\r\n\t\tS130.2,268.6,123,270.4z M358.2,349.2c-14.3,1.9-74.2,2.4-102.2,2.4c-28,0-87.9-0.6-102.2-2.4c-14.6-1.9-33.6-19.4-20.5-33.3\r\n\t\tc17.7-18.9,14.4-18.3,54.6-23.5c34.8-4.5,61.2-4.7,68.1-4.7c6.8,0,33.3,0.3,68.1,4.7c40.2,5.2,36.9,4.6,54.6,23.5\r\n\t\tC391.8,329.8,372.8,347.3,358.2,349.2z M491.8,259.6c-2.7,10.8-7.3,10.2-15.3,12.7s-13.3,4.3-16,3.7s-7.3-4.3-12.5-4.2\r\n\t\tc-5.2,0.2-29.5,4.3-38.5,4.3c-9,0-13.3-3.8-20.5-5.6c-7.2-1.8-11.2-1.8-11.2-1.8s17.3-17,48.7-25.7c31.3-8.8,48-10.4,65.3-9.6\r\n\t\tC491.8,233.2,494.5,248.7,491.8,259.6z"},"children":[]}]}]}]};exports.modelS=modelS;var monitor={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M468.7,64H43.3c-6,0-11.3,5-11.3,11.1v265.7c0,6.2,5.2,11.1,11.3,11.1h425.4c6,0,11.3-5,11.3-11.1V75.1\r\n\t\tC480,69,474.8,64,468.7,64z M448,320H64V96h384V320z"},"children":[{"name":"path","attribs":{"d":"M468.7,64H43.3c-6,0-11.3,5-11.3,11.1v265.7c0,6.2,5.2,11.1,11.3,11.1h425.4c6,0,11.3-5,11.3-11.1V75.1\r\n\t\tC480,69,474.8,64,468.7,64z M448,320H64V96h384V320z"},"children":[]}]},{"name":"path","attribs":{"d":"M302.5,448c28-0.5,41.5-3.9,29-12.5c-12.5-8.7-28.5-15.3-29-22.5c-0.3-3.7-1.7-45-1.7-45H256h-44.8c0,0-1.5,41.3-1.7,45\r\n\t\tc-0.5,7.1-16.5,13.8-29,22.5c-12.5,8.7,1,12,29,12.5H302.5z"},"children":[{"name":"path","attribs":{"d":"M302.5,448c28-0.5,41.5-3.9,29-12.5c-12.5-8.7-28.5-15.3-29-22.5c-0.3-3.7-1.7-45-1.7-45H256h-44.8c0,0-1.5,41.3-1.7,45\r\n\t\tc-0.5,7.1-16.5,13.8-29,22.5c-12.5,8.7,1,12,29,12.5H302.5z"},"children":[]}]}]}]};exports.monitor=monitor;var more={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M113.7,304C86.2,304,64,282.6,64,256c0-26.5,22.2-48,49.7-48c27.6,0,49.8,21.5,49.8,48C163.5,282.6,141.3,304,113.7,304z"},"children":[{"name":"path","attribs":{"d":"M113.7,304C86.2,304,64,282.6,64,256c0-26.5,22.2-48,49.7-48c27.6,0,49.8,21.5,49.8,48C163.5,282.6,141.3,304,113.7,304z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.3-48,49.8-48c27.5,0,49.7,21.5,49.7,48C305.7,282.6,283.5,304,256,304z"},"children":[{"name":"path","attribs":{"d":"M256,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.3-48,49.8-48c27.5,0,49.7,21.5,49.7,48C305.7,282.6,283.5,304,256,304z"},"children":[]}]},{"name":"path","attribs":{"d":"M398.2,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.2-48,49.8-48c27.5,0,49.8,21.5,49.8,48C448,282.6,425.8,304,398.2,304z"},"children":[{"name":"path","attribs":{"d":"M398.2,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.2-48,49.8-48c27.5,0,49.8,21.5,49.8,48C448,282.6,425.8,304,398.2,304z"},"children":[]}]}]}]};exports.more=more;var mouse={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32c-0.46,0-0.917,0.011-1.376,0.015l5.747,0.057C258.92,32.029,257.464,32,256,32z"},"children":[{"name":"path","attribs":{"d":"M256,32c-0.46,0-0.917,0.011-1.376,0.015l5.747,0.057C258.92,32.029,257.464,32,256,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M378.553,193.211c-0.195,0.064-0.414,0.16-0.619,0.269c-34.234,13.289-76.337,22.52-121.886,22.475\r\n\t\tc-45.52-0.076-87.626-9.398-121.81-22.772c-0.19-0.104-0.429-0.192-0.647-0.265c-1.531-0.554-3.146-0.897-4.841-0.917\r\n\t\tc-0.254-0.001-0.5-0.013-0.75,0v176.012C128,429.892,185.308,480,256,480c21.992,0,42.687-4.803,60.766-13.355\r\n\t\tc0.095-0.045,0.191-0.087,0.286-0.133c0.026-0.013,0.054-0.026,0.08-0.039c4.87-2.344,9.581-4.963,14.122-7.828\r\n\t\tC363.219,438.275,384,405.271,384,368.012V192c-0.191-0.008-0.496,0-0.689,0C381.584,192.014,380.092,192.651,378.553,193.211z\r\n\t\t M317.132,466.424c-0.026,0.013-0.054,0.026-0.08,0.039c-0.095,0.045-0.191,0.088-0.286,0.133c0.095-0.045,0.191-0.088,0.286-0.133\r\n\t\tC317.078,466.45,317.105,466.437,317.132,466.424c4.87-2.342,9.581-4.961,14.122-7.825\r\n\t\tC326.758,461.463,322.044,464.083,317.132,466.424z"},"children":[{"name":"path","attribs":{"d":"M378.553,193.211c-0.195,0.064-0.414,0.16-0.619,0.269c-34.234,13.289-76.337,22.52-121.886,22.475\r\n\t\tc-45.52-0.076-87.626-9.398-121.81-22.772c-0.19-0.104-0.429-0.192-0.647-0.265c-1.531-0.554-3.146-0.897-4.841-0.917\r\n\t\tc-0.254-0.001-0.5-0.013-0.75,0v176.012C128,429.892,185.308,480,256,480c21.992,0,42.687-4.803,60.766-13.355\r\n\t\tc0.095-0.045,0.191-0.087,0.286-0.133c0.026-0.013,0.054-0.026,0.08-0.039c4.87-2.344,9.581-4.963,14.122-7.828\r\n\t\tC363.219,438.275,384,405.271,384,368.012V192c-0.191-0.008-0.496,0-0.689,0C381.584,192.014,380.092,192.651,378.553,193.211z\r\n\t\t M317.132,466.424c-0.026,0.013-0.054,0.026-0.08,0.039c-0.095,0.045-0.191,0.088-0.286,0.133c0.095-0.045,0.191-0.088,0.286-0.133\r\n\t\tC317.078,466.45,317.105,466.437,317.132,466.424c4.87-2.342,9.581-4.961,14.122-7.825\r\n\t\tC326.758,461.463,322.044,464.083,317.132,466.424z"},"children":[]}]},{"name":"path","attribs":{"d":"M331.254,458.599c-4.541,2.864-9.252,5.483-14.122,7.825C322.044,464.083,326.758,461.463,331.254,458.599z"},"children":[{"name":"path","attribs":{"d":"M331.254,458.599c-4.541,2.864-9.252,5.483-14.122,7.825C322.044,464.083,326.758,461.463,331.254,458.599z"},"children":[]}]},{"name":"path","attribs":{"d":"M260.371,32.072l-5.747-0.057C184.566,32.662,128,82.547,128,144v22.708c2.158,2.024,4.593,3.755,7.251,5.115\r\n\t\tc0.673,0.337,1.386,0.659,2.059,0.996c0.032,0.027,0.077,0.01,0.109,0.036c22.757,10.35,51.429,15.801,83.415,19.006\r\n\t\tc0.694,0.078,1.397,0.107,2.148,0.12C234.24,191.997,239.996,192,240,181.411V96c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\tv86.328c-0.088,9.672,5.926,9.72,17.2,9.749c0.717-0.016,1.415-0.045,2.081-0.105c0.062-0.003,0.141,0.005,0.244-0.02\r\n\t\tc31.682-3.119,60.143-8.405,82.808-18.59c1.162-0.545,2.291-1.056,3.407-1.581c2.271-1.232,4.365-2.743,6.26-4.466V144\r\n\t\tC384,83.425,329.039,34.09,260.371,32.072z"},"children":[{"name":"path","attribs":{"d":"M260.371,32.072l-5.747-0.057C184.566,32.662,128,82.547,128,144v22.708c2.158,2.024,4.593,3.755,7.251,5.115\r\n\t\tc0.673,0.337,1.386,0.659,2.059,0.996c0.032,0.027,0.077,0.01,0.109,0.036c22.757,10.35,51.429,15.801,83.415,19.006\r\n\t\tc0.694,0.078,1.397,0.107,2.148,0.12C234.24,191.997,239.996,192,240,181.411V96c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\tv86.328c-0.088,9.672,5.926,9.72,17.2,9.749c0.717-0.016,1.415-0.045,2.081-0.105c0.062-0.003,0.141,0.005,0.244-0.02\r\n\t\tc31.682-3.119,60.143-8.405,82.808-18.59c1.162-0.545,2.291-1.056,3.407-1.581c2.271-1.232,4.365-2.743,6.26-4.466V144\r\n\t\tC384,83.425,329.039,34.09,260.371,32.072z"},"children":[]}]}]}]};exports.mouse=mouse;var musicNote={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M426,32.1c-2.2,0-5.1,0.6-5.1,0.6L203.3,65.9C189.5,69.6,177,83,176,97.5V384h-61v-0.1c-28,0-51.1,20-51.1,48\r\n\ts23.1,48,51.3,48h36.2c15.3,0,28.9-6.9,38.3-17.5c0.1-0.1,0.3-0.1,0.4-0.2c0.6-0.6,1-1.5,1.5-2.1c1.3-1.6,2.4-3.2,3.4-5\r\n\tC204.6,441,208,422.3,208,414V182l208-38c0,0,0,136,0,192h-60.5c-28.3,0-51.2,19.9-51.2,48s22.9,48,51.2,48h37.2\r\n\tc18.2,0,34.1-6,43.2-21c0,0,0.1,0,0.2,0c9-12,12-30.2,12-54.9c0-24.8,0-302.8,0-302.8C448,41.6,438.1,32.1,426,32.1z"},"children":[]}]};exports.musicNote=musicNote;var naviconRound={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,238.3,434.3,224,417.4,224z"},"children":[{"name":"path","attribs":{"d":"M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,238.3,434.3,224,417.4,224z"},"children":[]}]},{"name":"path","attribs":{"d":"M417.4,96H94.6C77.7,96,64,110.3,64,128c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,110.3,434.3,96,417.4,96z"},"children":[{"name":"path","attribs":{"d":"M417.4,96H94.6C77.7,96,64,110.3,64,128c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,110.3,434.3,96,417.4,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M417.4,352H94.6C77.7,352,64,366.3,64,384c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,366.3,434.3,352,417.4,352z"},"children":[{"name":"path","attribs":{"d":"M417.4,352H94.6C77.7,352,64,366.3,64,384c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,366.3,434.3,352,417.4,352z"},"children":[]}]}]}]};exports.naviconRound=naviconRound;var navicon={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"96","y":"241","width":"320","height":"32"},"children":[{"name":"rect","attribs":{"x":"96","y":"241","width":"320","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"145","width":"320","height":"32"},"children":[{"name":"rect","attribs":{"x":"96","y":"145","width":"320","height":"32"},"children":[]}]},{"name":"rect","attribs":{"x":"96","y":"337","width":"320","height":"32"},"children":[{"name":"rect","attribs":{"x":"96","y":"337","width":"320","height":"32"},"children":[]}]}]}]};exports.navicon=navicon;var navigate={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"480,32 32,224 288,224 288,480 "},"children":[]}]};exports.navigate=navigate;var network={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,96c0-35.29-28.71-64-64-64s-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v52.832l-96,48l-96-48v-52.832\r\n\tc19.11-11.084,32-31.754,32-55.391c0-35.29-28.71-64-64-64S64,60.71,64,96c0,23.637,12.89,44.307,32,55.391v92.387l128,64v52.832\r\n\tc-19.11,11.084-32,31.754-32,55.391c0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391v-52.832l128-64v-92.387\r\n\tC435.11,140.307,448,119.637,448,96z M128,64c17.673,0,32,14.327,32,32s-14.327,32-32,32s-32-14.327-32-32S110.327,64,128,64z\r\n\t M256,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S273.673,448,256,448z M384,128c-17.673,0-32-14.327-32-32\r\n\ts14.327-32,32-32s32,14.327,32,32S401.673,128,384,128z"},"children":[]}]};exports.network=network;var noSmoking={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"360","y":"256","class":"st0","width":"16","height":"48"},"children":[{"name":"rect","attribs":{"x":"360","y":"256","class":"st0","width":"16","height":"48"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"112,304 249.6,304 201.6,256 112,256 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"112,304 249.6,304 201.6,256 112,256 \t"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M364.5,60.1c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8c-1.8-0.6-3.6-1.2-5.4-1.8\r\n\t\tC302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.8c0.4,0.2,0.7,0.5,1.1,0.7\r\n\t\tc10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9c123.7,0,224-100.3,224-224\r\n\t\tC480,171.7,433.4,98.3,364.5,60.1z M256,426.4c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l237.2,237.2\r\n\t\tC327.4,414,293.2,426.4,256,426.4z M393.8,355.4L156.6,118.2c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4\r\n\t\tc9.8,1.6,19.3,4.1,28.5,7.3c1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8\r\n\t\tC426.4,293.3,414,327.4,393.8,355.4z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M364.5,60.1c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8c-1.8-0.6-3.6-1.2-5.4-1.8\r\n\t\tC302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.8c0.4,0.2,0.7,0.5,1.1,0.7\r\n\t\tc10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9c123.7,0,224-100.3,224-224\r\n\t\tC480,171.7,433.4,98.3,364.5,60.1z M256,426.4c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l237.2,237.2\r\n\t\tC327.4,414,293.2,426.4,256,426.4z M393.8,355.4L156.6,118.2c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4\r\n\t\tc9.8,1.6,19.3,4.1,28.5,7.3c1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8\r\n\t\tC426.4,293.3,414,327.4,393.8,355.4z"},"children":[]}]},{"name":"polygon","attribs":{"class":"st0","points":"352,298 352,256 310,256 \t"},"children":[{"name":"polygon","attribs":{"class":"st0","points":"352,298 352,256 310,256 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"384","y":"256","class":"st0","width":"16","height":"48"},"children":[{"name":"rect","attribs":{"x":"384","y":"256","class":"st0","width":"16","height":"48"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M360.1,212.7c-8.8-4.1-22-5.7-45.6-5.7c-1.2,0-2.4,0-3.6,0c-12.7,0.1-15.9-0.1-20-6.1\r\n\t\tc-2.8-4.2-1-14.8,3.7-21.9c1.6-2.4,1.8-5.6,0.4-8.2c-1.4-2.6-4.1-4.2-7-4.3c-0.1,0-9.4-0.1-18.3-3.9c-10.6-4.5-15.6-12.1-15.6-23.1\r\n\t\tc0-25.8,21.8-27.7,22.8-27.7v-16c-12,0-38.8,11-38.8,43.7c0,17.5,9,31,25.7,38c4.2,1.7,8.4,2.9,12,3.6c-3.3,9.8-3.6,20.9,1.7,28.7\r\n\t\tc9,13.3,20.3,13.2,33.3,13.1c1.1,0,2.3,0,3.5,0c26.3,0,34.6,2.3,38.9,4.3c5.7,2.6,6.8,11.5,6.6,19.7c0,0.7,0,0.4,0,1h16\r\n\t\tc0-0.4,0-0.4,0-1C375.8,239.8,376.1,220.1,360.1,212.7z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M360.1,212.7c-8.8-4.1-22-5.7-45.6-5.7c-1.2,0-2.4,0-3.6,0c-12.7,0.1-15.9-0.1-20-6.1\r\n\t\tc-2.8-4.2-1-14.8,3.7-21.9c1.6-2.4,1.8-5.6,0.4-8.2c-1.4-2.6-4.1-4.2-7-4.3c-0.1,0-9.4-0.1-18.3-3.9c-10.6-4.5-15.6-12.1-15.6-23.1\r\n\t\tc0-25.8,21.8-27.7,22.8-27.7v-16c-12,0-38.8,11-38.8,43.7c0,17.5,9,31,25.7,38c4.2,1.7,8.4,2.9,12,3.6c-3.3,9.8-3.6,20.9,1.7,28.7\r\n\t\tc9,13.3,20.3,13.2,33.3,13.1c1.1,0,2.3,0,3.5,0c26.3,0,34.6,2.3,38.9,4.3c5.7,2.6,6.8,11.5,6.6,19.7c0,0.7,0,0.4,0,1h16\r\n\t\tc0-0.4,0-0.4,0-1C375.8,239.8,376.1,220.1,360.1,212.7z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M400,248c0-25.7-3-43.2-9.1-53.6C382.3,180,368.5,172,352,172h-17.4c2.9-8.3,5.4-19.8,3.5-30.9\r\n\t\tc-3.2-18.8-19.1-30-43.1-30v16c21,0,26.1,9.1,27.4,16.7c2.5,14.5-6.8,32.1-6.9,32.3c-1.4,2.5-1.3,5.5,0.1,7.9\r\n\t\tc1.4,2.4,4.1,3.9,6.9,3.9H352c10.9,0,19.4,4.9,25.1,14.6c3.1,5.3,6.9,17.5,6.9,45.4H400z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M400,248c0-25.7-3-43.2-9.1-53.6C382.3,180,368.5,172,352,172h-17.4c2.9-8.3,5.4-19.8,3.5-30.9\r\n\t\tc-3.2-18.8-19.1-30-43.1-30v16c21,0,26.1,9.1,27.4,16.7c2.5,14.5-6.8,32.1-6.9,32.3c-1.4,2.5-1.3,5.5,0.1,7.9\r\n\t\tc1.4,2.4,4.1,3.9,6.9,3.9H352c10.9,0,19.4,4.9,25.1,14.6c3.1,5.3,6.9,17.5,6.9,45.4H400z"},"children":[]}]}]}]};exports.noSmoking=noSmoking;var nuclear={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"272","r":"48"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"272","r":"48"},"children":[]}]},{"name":"circle","attribs":{"cx":"256","cy":"272","r":"48"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"272","r":"48"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480,272H320c0,23.9-13.1,44.7-32.6,55.7L365.6,464C433.1,425.4,480,355.3,480,272z"},"children":[{"name":"path","attribs":{"d":"M480,272H320c0,23.9-13.1,44.7-32.6,55.7L365.6,464C433.1,425.4,480,355.3,480,272z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,208c11.7,0,22.7,3.2,32.1,8.7l80.6-138.3C335.6,59.1,297.1,48,256,48c-41.2,0-79.9,11.2-113.1,30.6l79.8,138.8\r\n\t\t\tC232.4,211.4,243.8,208,256,208z"},"children":[{"name":"path","attribs":{"d":"M256,208c11.7,0,22.7,3.2,32.1,8.7l80.6-138.3C335.6,59.1,297.1,48,256,48c-41.2,0-79.9,11.2-113.1,30.6l79.8,138.8\r\n\t\t\tC232.4,211.4,243.8,208,256,208z"},"children":[]}]},{"name":"path","attribs":{"d":"M192,272H32c0,83.3,46.9,153.4,114.4,192l78.2-136.3C205.1,316.7,192,295.9,192,272z"},"children":[{"name":"path","attribs":{"d":"M192,272H32c0,83.3,46.9,153.4,114.4,192l78.2-136.3C205.1,316.7,192,295.9,192,272z"},"children":[]}]}]}]}]}]};exports.nuclear=nuclear;var outlet={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M369.541,32H142.359C81.521,32,32,82.574,32,144.604v222.79C32,429.426,81.521,480,142.359,480h227.182\r\n\t\tC430.479,480,480,429.426,480,367.395v-222.79C480,82.574,430.479,32,369.541,32z M175,250.954v0.67\r\n\t\tc0,10.882-9.09,20.376-19.875,20.376h-23.27C121.073,272,112,262.506,112,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.193-20.161,19.855-20.161h23.27c10.886,0,19.875,9.847,19.875,20.831V250.954z M297,395.74v2.68\r\n\t\tc0,11.439-8.872,17.58-20.1,17.58H256h-20.898C223.872,416,215,407.859,215,396.42v-0.68v-28.637\r\n\t\tc0-23.33,18.118-42.287,40.999-42.287c22.883,0,41.001,18.957,41.001,42.287V395.74z M400,250.954v0.67\r\n\t\tc0,10.882-9.071,20.376-19.855,20.376h-24.27C345.093,272,336,262.506,336,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.215-20.161,19.875-20.161h24.27c10.784,0,19.855,9.847,19.855,20.831V250.954z"},"children":[{"name":"path","attribs":{"d":"M369.541,32H142.359C81.521,32,32,82.574,32,144.604v222.79C32,429.426,81.521,480,142.359,480h227.182\r\n\t\tC430.479,480,480,429.426,480,367.395v-222.79C480,82.574,430.479,32,369.541,32z M175,250.954v0.67\r\n\t\tc0,10.882-9.09,20.376-19.875,20.376h-23.27C121.073,272,112,262.506,112,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.193-20.161,19.855-20.161h23.27c10.886,0,19.875,9.847,19.875,20.831V250.954z M297,395.74v2.68\r\n\t\tc0,11.439-8.872,17.58-20.1,17.58H256h-20.898C223.872,416,215,407.859,215,396.42v-0.68v-28.637\r\n\t\tc0-23.33,18.118-42.287,40.999-42.287c22.883,0,41.001,18.957,41.001,42.287V395.74z M400,250.954v0.67\r\n\t\tc0,10.882-9.071,20.376-19.855,20.376h-24.27C345.093,272,336,262.506,336,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.215-20.161,19.875-20.161h24.27c10.784,0,19.855,9.847,19.855,20.831V250.954z"},"children":[]}]}]}]};exports.outlet=outlet;var paintbrush={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M149.515,283.349c-51.921,0-83.939,45.661-83.939,95.085c0,22.691-10.071,39.153-33.575,48.104\r\n\t\tc17.907,34.678,87.777,41.157,117.515,35.797c35.642-6.426,80.077-24.873,90.654-76.969\r\n\t\tC252.48,324.739,201.434,283.349,149.515,283.349z"},"children":[{"name":"path","attribs":{"d":"M149.515,283.349c-51.921,0-83.939,45.661-83.939,95.085c0,22.691-10.071,39.153-33.575,48.104\r\n\t\tc17.907,34.678,87.777,41.157,117.515,35.797c35.642-6.426,80.077-24.873,90.654-76.969\r\n\t\tC252.48,324.739,201.434,283.349,149.515,283.349z"},"children":[]}]},{"name":"path","attribs":{"d":"M467.638,60.356c-12.955-12.948-29.964-17.292-44.92-5.35L247.598,209.1c-8.648-2.371-16.525-1.869-22.909,2.346\r\n\t\tL165.896,260.4c-1.611,1.611-1.545,4.304,0.066,5.914c0.499,0.501,1.064,0.79,1.697,0.98c0.642,0.034,1.264,0.059,1.899,0.103\r\n\t\tc0.019-0.002,0.036-0.01,0.054-0.014c47.938,3.432,91.034,36.754,89.3,89.506c-0.016,0.505-0.029,1.007-0.054,1.516\r\n\t\tc0.123,0.848,0.5,1.664,1.149,2.315c1.595,1.593,4.168,1.605,5.781,0.044c0.018-0.018,0.037-0.027,0.055-0.044\r\n\t\tc0.063-0.063,0.106-0.137,0.164-0.2l50.457-57.342c4.216-6.374,4.72-14.24,2.355-22.875l154.169-175.047\r\n\t\tC484.939,90.308,480.592,73.308,467.638,60.356z"},"children":[{"name":"path","attribs":{"d":"M467.638,60.356c-12.955-12.948-29.964-17.292-44.92-5.35L247.598,209.1c-8.648-2.371-16.525-1.869-22.909,2.346\r\n\t\tL165.896,260.4c-1.611,1.611-1.545,4.304,0.066,5.914c0.499,0.501,1.064,0.79,1.697,0.98c0.642,0.034,1.264,0.059,1.899,0.103\r\n\t\tc0.019-0.002,0.036-0.01,0.054-0.014c47.938,3.432,91.034,36.754,89.3,89.506c-0.016,0.505-0.029,1.007-0.054,1.516\r\n\t\tc0.123,0.848,0.5,1.664,1.149,2.315c1.595,1.593,4.168,1.605,5.781,0.044c0.018-0.018,0.037-0.027,0.055-0.044\r\n\t\tc0.063-0.063,0.106-0.137,0.164-0.2l50.457-57.342c4.216-6.374,4.72-14.24,2.355-22.875l154.169-175.047\r\n\t\tC484.939,90.308,480.592,73.308,467.638,60.356z"},"children":[]}]},{"name":"polygon","attribs":{"points":"165.887,260.409 165.896,260.4 165.888,260.407 \t"},"children":[{"name":"polygon","attribs":{"points":"165.887,260.409 165.896,260.4 165.888,260.407 \t"},"children":[]}]}]}]};exports.paintbrush=paintbrush;var paintbucket={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,64l39.667,72.102L16,288l197.604,192l163.328-160l58.33-12.307L160,32L128,64z M325.131,288H104.857L215,177.863\r\n\t\tL325.131,288z"},"children":[{"name":"path","attribs":{"d":"M128,64l39.667,72.102L16,288l197.604,192l163.328-160l58.33-12.307L160,32L128,64z M325.131,288H104.857L215,177.863\r\n\t\tL325.131,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M435.262,307.693c0,0-60.734,66.179-60.732,99.207c0,33.028,27.192,59.803,60.731,59.801\r\n\t\tc33.548,0.002,60.74-26.772,60.739-59.801C496.001,373.872,435.262,307.693,435.262,307.693z"},"children":[{"name":"path","attribs":{"d":"M435.262,307.693c0,0-60.734,66.179-60.732,99.207c0,33.028,27.192,59.803,60.731,59.801\r\n\t\tc33.548,0.002,60.74-26.772,60.739-59.801C496.001,373.872,435.262,307.693,435.262,307.693z"},"children":[]}]}]}]};exports.paintbucket=paintbucket;var paperAirplane={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M32,272l128,48l16,160l80-112l112,112L480,32L32,272z M350.7,417.4L256,320l128-176L192,297.8l-82.6-31\r\n\tl322-172.5L350.7,417.4z"},"children":[]}]};exports.paperAirplane=paperAirplane;var paperclip={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M324.6,154.9c-6.3-0.1-11.4,5.1-11.4,11.6L313,361.3c-0.1,43.8-29.7,63.4-57.2,63.2c-27.5-0.3-57.1-20.4-57-64.1\r\n\tc0-33.5,0.2-167.7,0.3-234.8c0-15.4,6-27.4,16.8-33.7c10.6-6.2,24.4-6.1,35,0.3c10.8,6.5,16.7,18.6,16.7,34l-0.3,224.5\r\n\tc0,7.3-1.7,13.3-4.7,17.1c-1.9,2.4-4.4,3.8-6.9,3.8c-5.6-0.1-11.4-7.3-11.3-20.8c0,0,0.2-166.3,0.3-172.7c0-6.5-5.1-11.8-11.4-11.8\r\n\tc-6.3,0-11.4,5.2-11.4,11.7l-0.3,172.7c0,29,17.2,44.3,34.2,44.5c9.4,0.1,18.3-4.4,24.6-12.4c6.3-8,9.7-19,9.7-31.8l0.3-224.5\r\n\tc0-23.8-10.2-43.6-28.1-54.3c-17.5-10.6-40.3-10.8-57.9-0.5c-17.9,10.5-28.2,30.1-28.3,53.9c-0.1,67-0.2,201.2-0.3,234.8\r\n\tc-0.1,57.2,40.1,87.4,79.8,87.8c20.5,0.2,41.1-7.7,56.3-23.1c14.2-14.5,23.7-35.7,23.7-63.4l0.1-194.9\r\n\tC336,160.2,330.9,154.9,324.6,154.9z"},"children":[]}]};exports.paperclip=paperclip;var pause={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M224,435.8V76.1c0-6.7-5.4-12.1-12.2-12.1h-71.6c-6.8,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6\r\n\t\tC218.6,448,224,442.6,224,435.8z"},"children":[{"name":"path","attribs":{"d":"M224,435.8V76.1c0-6.7-5.4-12.1-12.2-12.1h-71.6c-6.8,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6\r\n\t\tC218.6,448,224,442.6,224,435.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M371.8,64h-71.6c-6.7,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6c6.7,0,12.2-5.4,12.2-12.2V76.1\r\n\t\tC384,69.4,378.6,64,371.8,64z"},"children":[{"name":"path","attribs":{"d":"M371.8,64h-71.6c-6.7,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6c6.7,0,12.2-5.4,12.2-12.2V76.1\r\n\t\tC384,69.4,378.6,64,371.8,64z"},"children":[]}]}]}]};exports.pause=pause;var personAdd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"429,328 429,277 480,277 480,235 429,235 429,184 387,184 387,235 336,235 336,277 387,277 387,328 \t"},"children":[{"name":"polygon","attribs":{"points":"429,328 429,277 480,277 480,235 429,235 429,184 387,184 387,235 336,235 336,277 387,277 387,328 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M416,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\t\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C313.4,119.3,293.9,64,224,64\r\n\t\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\t\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C32,421.6,32,448,32,448h192H416z"},"children":[{"name":"path","attribs":{"d":"M416,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\t\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C313.4,119.3,293.9,64,224,64\r\n\t\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\t\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C32,421.6,32,448,32,448h192H416z"},"children":[]}]}]}]};exports.personAdd=personAdd;var personStalker={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M425.3,324.8c-41.4-15.7-38.9-9.4-38.9-38.5c0-18.8,9.3-11.9,15.2-47.7c2.3-14.1,4.2-4.7,9.1-27.3\r\n\t\tc2.6-11.8-1.8-12.7-1.2-18.3c0.5-5.6,1-10.7,2-22.2c1.2-14.4-11.6-52-57.4-52c-45.8,0-58.6,37.6-57.4,52c0.9,11.6,1.5,16.6,2,22.2\r\n\t\tc0.5,5.6-3.8,6.5-1.2,18.3c4.9,22.6,6.8,13.1,9.1,27.3c5.9,35.8,15.1,29,15.1,47.7c0,13.4,3.1,19-14.9,27.5\r\n\t\tc5.4,1.9,11.7,4.2,19.3,7.1c54.4,20.7,53.1,40.8,54.5,50.3c1,6.5,1.5,58.3,1.7,76.8H480c0,0,0-80.5-1.5-89.9\r\n\t\tC477.4,350.7,467.5,340.9,425.3,324.8z"},"children":[{"name":"path","attribs":{"d":"M425.3,324.8c-41.4-15.7-38.9-9.4-38.9-38.5c0-18.8,9.3-11.9,15.2-47.7c2.3-14.1,4.2-4.7,9.1-27.3\r\n\t\tc2.6-11.8-1.8-12.7-1.2-18.3c0.5-5.6,1-10.7,2-22.2c1.2-14.4-11.6-52-57.4-52c-45.8,0-58.6,37.6-57.4,52c0.9,11.6,1.5,16.6,2,22.2\r\n\t\tc0.5,5.6-3.8,6.5-1.2,18.3c4.9,22.6,6.8,13.1,9.1,27.3c5.9,35.8,15.1,29,15.1,47.7c0,13.4,3.1,19-14.9,27.5\r\n\t\tc5.4,1.9,11.7,4.2,19.3,7.1c54.4,20.7,53.1,40.8,54.5,50.3c1,6.5,1.5,58.3,1.7,76.8H480c0,0,0-80.5-1.5-89.9\r\n\t\tC477.4,350.7,467.5,340.9,425.3,324.8z"},"children":[]}]},{"name":"path","attribs":{"d":"M357,448c0,0,0-14.1-0.2-30.4c-0.2-18.6-0.7-40-1.7-46.4c-1.5-9.5-14.3-22.2-68.6-42.9c-7.5-2.8-13.8-5.1-19.3-7.1\r\n\t\tc-33.3-11.8-30.9-15.7-30.9-48c0-24.3,12-8.5,19.6-54.6c3-18.2,5.4-6.1,11.7-35.2c3.4-15.2-2.3-16.4-1.6-23.7\r\n\t\tc0.7-7.3,1.4-13.8,2.6-28.7c1.6-18.5-14.9-67.1-74.1-67.1c-59.2,0-75.6,48.5-74.1,67.1c1.2,14.9,1.9,21.4,2.7,28.7\r\n\t\tc0.7,7.3-5,8.4-1.6,23.7c6.4,29.1,8.8,17,11.8,35.2c7.6,46.1,19.5,30.3,19.5,54.6c0,37.6,3.3,34.8-50.2,55.1\r\n\t\tc-54.3,20.7-67.1,33.4-68.6,42.9C32,383.3,32,448,32,448h162.5H357z"},"children":[{"name":"path","attribs":{"d":"M357,448c0,0,0-14.1-0.2-30.4c-0.2-18.6-0.7-40-1.7-46.4c-1.5-9.5-14.3-22.2-68.6-42.9c-7.5-2.8-13.8-5.1-19.3-7.1\r\n\t\tc-33.3-11.8-30.9-15.7-30.9-48c0-24.3,12-8.5,19.6-54.6c3-18.2,5.4-6.1,11.7-35.2c3.4-15.2-2.3-16.4-1.6-23.7\r\n\t\tc0.7-7.3,1.4-13.8,2.6-28.7c1.6-18.5-14.9-67.1-74.1-67.1c-59.2,0-75.6,48.5-74.1,67.1c1.2,14.9,1.9,21.4,2.7,28.7\r\n\t\tc0.7,7.3-5,8.4-1.6,23.7c6.4,29.1,8.8,17,11.8,35.2c7.6,46.1,19.5,30.3,19.5,54.6c0,37.6,3.3,34.8-50.2,55.1\r\n\t\tc-54.3,20.7-67.1,33.4-68.6,42.9C32,383.3,32,448,32,448h162.5H357z"},"children":[]}]}]}]};exports.personStalker=personStalker;var person={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C345.4,119.3,325.9,64,256,64\r\n\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C64,421.6,64,448,64,448h192H448z"},"children":[]}]};exports.person=person;var pieGraph={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32.6,256h32H256V64.6v-32c-5-0.4-10.6-0.6-16-0.6C125.1,32,32,125.1,32,240C32,245.4,32.2,251,32.6,256z"},"children":[{"name":"path","attribs":{"d":"M32.6,256h32H256V64.6v-32c-5-0.4-10.6-0.6-16-0.6C125.1,32,32,125.1,32,240C32,245.4,32.2,251,32.6,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M109.8,402.2C147.9,449.6,206.4,480,272,480c114.9,0,208-93.1,208-208c0-65.6-30.4-124.1-77.8-162.2\r\n\t\tC370.5,84.3,331,67.9,288,64.6V288H64.6C67.9,331,84.3,370.5,109.8,402.2z"},"children":[{"name":"path","attribs":{"d":"M109.8,402.2C147.9,449.6,206.4,480,272,480c114.9,0,208-93.1,208-208c0-65.6-30.4-124.1-77.8-162.2\r\n\t\tC370.5,84.3,331,67.9,288,64.6V288H64.6C67.9,331,84.3,370.5,109.8,402.2z"},"children":[]}]}]}]};exports.pieGraph=pieGraph;var pin={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M331.8,228C331.8,228,331.8,228,331.8,228c-1.2-0.5-2.4-1-3.5-1.7c-7-4-12.2-10.9-13.9-19.2L295.9,89.4l-0.2-5.8\r\n\tc0-7.1,4.1-10.2,10-13l0,0c0.7-0.3,1.4-0.6,2.1-0.9c7.2-3.4,12.1-7.8,12.1-16.3c0-20.1-6.5-21.4-18.2-21.4h-91.3\r\n\tc-11.7,0-18.2,1.2-18.2,21.4c0,8.5,4.9,12.9,12.1,16.3c0.7,0.3,1.4,0.5,2.1,0.9c0,0,0,0,0,0c5.9,2.9,10,6,10,13l-0.2,5.8\r\n\tl-18.5,117.7c-1.7,8.3-6.9,15.2-13.9,19.2c-1.1,0.7-2.3,1.2-3.5,1.7c0,0,0,0,0,0c-19.7,10.2-36.2,30.8-36.2,54.7\r\n\tc0,15.9,3.5,21.3,15.2,21.3H240l12,176h8l12-176h80.8c11.7,0,15.2-4.7,15.2-21.3C368,258.8,351.5,238.2,331.8,228z"},"children":[]}]};exports.pin=pin;var pinpoint={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t M391.8,391.8c-32.5,32.5-74.6,51.9-119.8,55.6L264,384h-16l-7.9,63.3c-45.3-3.7-87.4-23.1-119.8-55.6\r\n\tc-32.5-32.5-51.9-74.6-55.6-119.8L128,264v-16l-63.3-7.9c3.7-45.3,23.1-87.4,55.6-119.8c32.5-32.5,74.6-51.9,119.8-55.6L248,128h16\r\n\tl7.9-63.3c45.3,3.7,87.4,23.1,119.8,55.6c32.5,32.5,51.9,74.6,55.6,119.8L384,248v16l63.3,7.9C443.6,317.2,424.2,359.3,391.8,391.8z\r\n\t"},"children":[]}]};exports.pinpoint=pinpoint;var pizza={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M394.619,130.445c-42.658-18.924-89.266-28.472-138.649-28.425c-49.373-0.047-99.27,10.262-138.641,27.979\r\n\t\tc-7.396,3.312-14.004,8.957-9.296,19.479S255.941,480,255.941,480l147.621-329.874C406.452,143.25,404.318,134.748,394.619,130.445\r\n\t\tz M191.983,192.015c-17.67,0-31.995-14.323-31.995-31.993c0-17.669,14.325-31.992,31.995-31.992\r\n\t\tc17.671,0,31.996,14.323,31.996,31.992C223.979,177.691,209.654,192.015,191.983,192.015z M255.975,338.981\r\n\t\tc-17.671,0-31.995-14.323-31.995-31.993s14.324-31.992,31.995-31.992c17.67,0,31.995,14.322,31.995,31.992\r\n\t\tS273.645,338.981,255.975,338.981z M319.965,224.007c-17.67,0-31.995-14.322-31.995-31.992s14.325-31.993,31.995-31.993\r\n\t\tc17.671,0,31.996,14.323,31.996,31.993S337.636,224.007,319.965,224.007z"},"children":[{"name":"path","attribs":{"d":"M394.619,130.445c-42.658-18.924-89.266-28.472-138.649-28.425c-49.373-0.047-99.27,10.262-138.641,27.979\r\n\t\tc-7.396,3.312-14.004,8.957-9.296,19.479S255.941,480,255.941,480l147.621-329.874C406.452,143.25,404.318,134.748,394.619,130.445\r\n\t\tz M191.983,192.015c-17.67,0-31.995-14.323-31.995-31.993c0-17.669,14.325-31.992,31.995-31.992\r\n\t\tc17.671,0,31.996,14.323,31.996,31.992C223.979,177.691,209.654,192.015,191.983,192.015z M255.975,338.981\r\n\t\tc-17.671,0-31.995-14.323-31.995-31.993s14.324-31.992,31.995-31.992c17.67,0,31.995,14.322,31.995,31.992\r\n\t\tS273.645,338.981,255.975,338.981z M319.965,224.007c-17.67,0-31.995-14.322-31.995-31.992s14.325-31.993,31.995-31.993\r\n\t\tc17.671,0,31.996,14.323,31.996,31.993S337.636,224.007,319.965,224.007z"},"children":[]}]},{"name":"path","attribs":{"d":"M421.79,66c-47.808-20.603-106.867-33.977-165.811-34c-58.931,0-116.944,12.136-165.82,33.446\r\n\t\tC85.83,67.334,80,71.016,80,79.227c0,2.523,0.907,4.922,0.907,4.922l7.98,19.194c2.531,4.865,7.944,8.18,13.798,8.18\r\n\t\tc1.645,0,3.936-0.331,6.65-1.476c44.9-18.929,94.471-29.588,146.644-29.564c52.175-0.023,105.63,11.64,146.634,29.561\r\n\t\tc3.296,1.44,5.173,1.472,6.663,1.472c6.009,0,11.158-3.274,13.727-8.053l8.04-19.342c0.577-1.558,0.957-3.287,0.957-4.768\r\n\t\tC432,72,427.614,68.51,421.79,66z"},"children":[{"name":"path","attribs":{"d":"M421.79,66c-47.808-20.603-106.867-33.977-165.811-34c-58.931,0-116.944,12.136-165.82,33.446\r\n\t\tC85.83,67.334,80,71.016,80,79.227c0,2.523,0.907,4.922,0.907,4.922l7.98,19.194c2.531,4.865,7.944,8.18,13.798,8.18\r\n\t\tc1.645,0,3.936-0.331,6.65-1.476c44.9-18.929,94.471-29.588,146.644-29.564c52.175-0.023,105.63,11.64,146.634,29.561\r\n\t\tc3.296,1.44,5.173,1.472,6.663,1.472c6.009,0,11.158-3.274,13.727-8.053l8.04-19.342c0.577-1.558,0.957-3.287,0.957-4.768\r\n\t\tC432,72,427.614,68.51,421.79,66z"},"children":[]}]}]}]};exports.pizza=pizza;var plane={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M281.7,311.9c0.4-6.9,8.3-4.5,8.3-4.5l62,12.6l128,48.7c0-24-3.8-26.5-9.4-30.7L288,207c0,0-4.9-60-4.9-112.9\r\n\tc0-24.5-11.8-78.1-27.1-78.1s-27.1,54.4-27.1,78.1c0,50.2-4.9,112.9-4.9,112.9L41.4,338c-7.1,5-9.4,7.7-9.4,30.7L160,320l61.9-12.6\r\n\tc0,0,7.9-2.4,8.3,4.5c0.4,6.9-1.2,69.1,5.9,102.1c0.9,4.4-2.5,4.7-4.8,7.4l-51.9,32.8c-1.7,1.9-2.5,7.3-2.5,7.3l-1,18.5l68-16l12,32\r\n\tl12-32l68,16l-1-18.5c0.1,0-0.7-5.4-2.4-7.3l-51.9-32.8c-2.3-2.7-5.7-3-4.8-7.4C282.7,381,281.3,318.8,281.7,311.9z"},"children":[]}]};exports.plane=plane;var planet={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M96.298,265.705C101.315,349.55,170.887,416,255.988,416c37.957,0,72.818-13.227,100.25-35.311\r\n\t\tC317.23,369.554,274,353.922,229.562,334.617C180.731,313.404,134.957,289.677,96.298,265.705z"},"children":[{"name":"path","attribs":{"d":"M96.298,265.705C101.315,349.55,170.887,416,255.988,416c37.957,0,72.818-13.227,100.25-35.311\r\n\t\tC317.23,369.554,274,353.922,229.562,334.617C180.731,313.404,134.957,289.677,96.298,265.705z"},"children":[]}]},{"name":"path","attribs":{"d":"M107.381,196.629c39.911,27.11,92.07,55.13,147.679,79.287c43.591,18.938,87.113,34.555,125.859,45.164\r\n\t\tc6.496,1.779,12.834,3.406,18.988,4.883c1.685-3.462,3.249-6.994,4.688-10.591c7.341-18.358,11.386-38.393,11.386-59.372\r\n\t\tc0-3.26-0.109-6.493-0.301-9.705C410.661,162.45,341.09,96,255.988,96c-37.956,0-72.817,13.227-100.248,35.311\r\n\t\tc-18.296,14.729-33.284,33.398-43.67,54.726C110.383,189.499,108.819,193.032,107.381,196.629z"},"children":[{"name":"path","attribs":{"d":"M107.381,196.629c39.911,27.11,92.07,55.13,147.679,79.287c43.591,18.938,87.113,34.555,125.859,45.164\r\n\t\tc6.496,1.779,12.834,3.406,18.988,4.883c1.685-3.462,3.249-6.994,4.688-10.591c7.341-18.358,11.386-38.393,11.386-59.372\r\n\t\tc0-3.26-0.109-6.493-0.301-9.705C410.661,162.45,341.09,96,255.988,96c-37.956,0-72.817,13.227-100.248,35.311\r\n\t\tc-18.296,14.729-33.284,33.398-43.67,54.726C110.383,189.499,108.819,193.032,107.381,196.629z"},"children":[]}]},{"name":"path","attribs":{"d":"M429.667,284.531c-1.256,11.562-2.377,13.627-5.891,24.695c16.878,12.039,31.032,23.706,41.137,33.938\r\n\t\tc3.285,3.328,5.875,6.225,7.912,8.702c-1.684,0.084-3.557,0.133-5.631,0.133c-21.886,0-54.026-5.5-90.501-15.488\r\n\t\tc-39.467-10.806-83.73-26.685-128.008-45.92c-58.931-25.6-114.158-55.541-155.51-84.307c-19.081-13.275-35.027-26.226-46.113-37.45\r\n\t\tc-3.285-3.328-5.875-6.225-7.912-8.702c1.683-0.084,3.556-0.133,5.632-0.133c15.308,0,35.637,2.694,58.952,7.729\r\n\t\tc5.825-10.004,6.979-12.701,14.663-21.409C92.663,137,66.625,130.522,44.784,128c-24.403-2.818-40.34,5.521-43.984,17.14\r\n\t\tC-10.274,180.457,95,258.718,235.936,319.942C330.498,361.022,417.104,384,467.194,384c24.565,0,40.338-5.521,43.982-17.141\r\n\t\tC517.516,346.643,486.965,320,429.667,284.531z"},"children":[{"name":"path","attribs":{"d":"M429.667,284.531c-1.256,11.562-2.377,13.627-5.891,24.695c16.878,12.039,31.032,23.706,41.137,33.938\r\n\t\tc3.285,3.328,5.875,6.225,7.912,8.702c-1.684,0.084-3.557,0.133-5.631,0.133c-21.886,0-54.026-5.5-90.501-15.488\r\n\t\tc-39.467-10.806-83.73-26.685-128.008-45.92c-58.931-25.6-114.158-55.541-155.51-84.307c-19.081-13.275-35.027-26.226-46.113-37.45\r\n\t\tc-3.285-3.328-5.875-6.225-7.912-8.702c1.683-0.084,3.556-0.133,5.632-0.133c15.308,0,35.637,2.694,58.952,7.729\r\n\t\tc5.825-10.004,6.979-12.701,14.663-21.409C92.663,137,66.625,130.522,44.784,128c-24.403-2.818-40.34,5.521-43.984,17.14\r\n\t\tC-10.274,180.457,95,258.718,235.936,319.942C330.498,361.022,417.104,384,467.194,384c24.565,0,40.338-5.521,43.982-17.141\r\n\t\tC517.516,346.643,486.965,320,429.667,284.531z"},"children":[]}]}]}]};exports.planet=planet;var play={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M405.2,232.9L126.8,67.2c-3.4-2-6.9-3.2-10.9-3.2c-10.9,0-19.8,9-19.8,20H96v344h0.1c0,11,8.9,20,19.8,20\r\n\tc4.1,0,7.5-1.4,11.2-3.4l278.1-165.5c6.6-5.5,10.8-13.8,10.8-23.1C416,246.7,411.8,238.5,405.2,232.9z"},"children":[]}]};exports.play=play;var playstation={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M399.8,203c-0.8-17.1-3.3-34.5-10.8-50.1c-4.1-8.6-9.7-16.5-16.5-23.2c-6.3-6.4-13.6-11.7-21.3-16.3\r\n\t\tc-17.1-10.2-37.5-17-84.4-31S192,64,192,64v358.3l79.9,25.7c0,0,0.1-198.8,0.1-299.5v-3.8c0-9.3,7.5-16.8,16.1-16.8h0.5\r\n\t\tc8.5,0,15.5,7.5,15.5,16.8v2.2v131.1c11,5.3,29.2,9.3,41.8,9.1c8.3,0.2,16.7-1.7,24-5.7c7.6-4.1,13.9-10.4,18.4-17.8\r\n\t\tc5.1-8.3,8.2-17.8,9.9-27.3C400.1,225.5,400.2,214.2,399.8,203z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M399.8,203c-0.8-17.1-3.3-34.5-10.8-50.1c-4.1-8.6-9.7-16.5-16.5-23.2c-6.3-6.4-13.6-11.7-21.3-16.3\r\n\t\tc-17.1-10.2-37.5-17-84.4-31S192,64,192,64v358.3l79.9,25.7c0,0,0.1-198.8,0.1-299.5v-3.8c0-9.3,7.5-16.8,16.1-16.8h0.5\r\n\t\tc8.5,0,15.5,7.5,15.5,16.8v2.2v131.1c11,5.3,29.2,9.3,41.8,9.1c8.3,0.2,16.7-1.7,24-5.7c7.6-4.1,13.9-10.4,18.4-17.8\r\n\t\tc5.1-8.3,8.2-17.8,9.9-27.3C400.1,225.5,400.2,214.2,399.8,203z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M86.7,357.8c27.4-9.8,89.3-29.5,89.3-29.5v-47.2c0,0-76.5,24.8-111.3,37.1c-8.6,3.1-17.3,5.9-25.7,9.5\r\n\t\tc-9.8,4.1-19.4,8.7-28.1,14.8c-3.8,2.6-7.2,5.9-9.2,10.1c-2,4.2-2.2,9.2-0.5,13.6c2,5.1,5.8,9.3,10.1,12.6\r\n\t\tc7.8,5.9,17.1,9.5,26.4,12.2c28.4,9.4,58.4,14,88.4,13.3c14.5-0.2,36-1.9,50-4.4v-42c0,0-11,2.5-41.3,12.5c-4.6,1.5-9.2,3.3-14,4.3\r\n\t\tc-7.1,1.6-14.4,2.1-21.6,2.2c-6.5-0.3-13.2-0.7-19.3-3.1c-2.2-1-4.6-2.2-5.5-4.6c-0.8-2,0.3-4,1.7-5.4\r\n\t\tC78.9,360.9,82.9,359.3,86.7,357.8z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M86.7,357.8c27.4-9.8,89.3-29.5,89.3-29.5v-47.2c0,0-76.5,24.8-111.3,37.1c-8.6,3.1-17.3,5.9-25.7,9.5\r\n\t\tc-9.8,4.1-19.4,8.7-28.1,14.8c-3.8,2.6-7.2,5.9-9.2,10.1c-2,4.2-2.2,9.2-0.5,13.6c2,5.1,5.8,9.3,10.1,12.6\r\n\t\tc7.8,5.9,17.1,9.5,26.4,12.2c28.4,9.4,58.4,14,88.4,13.3c14.5-0.2,36-1.9,50-4.4v-42c0,0-11,2.5-41.3,12.5c-4.6,1.5-9.2,3.3-14,4.3\r\n\t\tc-7.1,1.6-14.4,2.1-21.6,2.2c-6.5-0.3-13.2-0.7-19.3-3.1c-2.2-1-4.6-2.2-5.5-4.6c-0.8-2,0.3-4,1.7-5.4\r\n\t\tC78.9,360.9,82.9,359.3,86.7,357.8z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M512,345.9c-0.1-6-3.7-11.2-7.9-15c-7.1-6.3-15.9-10.3-24.7-13.5c-5.5-1.9-9.3-3.3-14.7-5\r\n\t\tc-25.2-8.2-51.9-11.2-78.3-11.3c-8,0.3-23.1,0.5-31,1.4c-21.9,2.5-67.3,15.4-67.3,15.4v48.8c0,0,67.5-21.6,96.5-31.8\r\n\t\tc9.7-3.3,20.1-4.6,30.3-4.6c6.5,0.2,13.2,0.7,19.4,3.1c2.2,0.9,4.5,2.2,5.5,4.5c0.9,2.6-0.9,5-2.9,6.5c-4.7,3.8-10.7,5.3-16.2,7.4\r\n\t\tC379.7,366.3,288,396.5,288,396.5v47c0,0,117.2-39.6,170.8-58.8c8.9-3.3,17.9-6.1,26.4-10.4c7.9-4,15.8-8.6,21.8-15.3\r\n\t\tC510.1,355.4,512,351,512,345.9z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M512,345.9c-0.1-6-3.7-11.2-7.9-15c-7.1-6.3-15.9-10.3-24.7-13.5c-5.5-1.9-9.3-3.3-14.7-5\r\n\t\tc-25.2-8.2-51.9-11.2-78.3-11.3c-8,0.3-23.1,0.5-31,1.4c-21.9,2.5-67.3,15.4-67.3,15.4v48.8c0,0,67.5-21.6,96.5-31.8\r\n\t\tc9.7-3.3,20.1-4.6,30.3-4.6c6.5,0.2,13.2,0.7,19.4,3.1c2.2,0.9,4.5,2.2,5.5,4.5c0.9,2.6-0.9,5-2.9,6.5c-4.7,3.8-10.7,5.3-16.2,7.4\r\n\t\tC379.7,366.3,288,396.5,288,396.5v47c0,0,117.2-39.6,170.8-58.8c8.9-3.3,17.9-6.1,26.4-10.4c7.9-4,15.8-8.6,21.8-15.3\r\n\t\tC510.1,355.4,512,351,512,345.9z"},"children":[]}]}]}]};exports.playstation=playstation;var plusCircled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H272v112h-32V272H128v-32\r\n\t\th112V128h32v112h112V272z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H272v112h-32V272H128v-32\r\n\t\th112V128h32v112h112V272z"},"children":[]}]}]}]};exports.plusCircled=plusCircled;var plusRound={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256\r\n\tc0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32\r\n\tC448,238.3,434.3,224,417.4,224z"},"children":[]}]};exports.plusRound=plusRound;var plus={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"448,224 288,224 288,64 224,64 224,224 64,224 64,288 224,288 224,448 288,448 288,288 448,288 "},"children":[]}]};exports.plus=plus;var podium={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"32","y":"256","width":"128","height":"192"},"children":[{"name":"rect","attribs":{"x":"32","y":"256","width":"128","height":"192"},"children":[]}]},{"name":"rect","attribs":{"x":"192","y":"160","width":"128","height":"288"},"children":[{"name":"rect","attribs":{"x":"192","y":"160","width":"128","height":"288"},"children":[]}]},{"name":"rect","attribs":{"x":"352","y":"320","width":"128","height":"128"},"children":[{"name":"rect","attribs":{"x":"352","y":"320","width":"128","height":"128"},"children":[]}]}]}]};exports.podium=podium;var pound={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M125.2,352.3H32v-54.6h101.2l13.1-83.3H47v-54.6h107.2L176,32h63.9l-21.8,127.7h105.6L345.5,32h63.1l-21.8,127.7H480v54.6\r\n\t\tH378.1l-12.3,83.3H465v54.6H358.5L336,480h-63.1l21.8-127.7H188.3L166.5,480h-63.1L125.2,352.3z M209.4,214.3L197,297.7h105.6\r\n\t\tl12.3-83.3H209.4z"},"children":[{"name":"path","attribs":{"d":"M125.2,352.3H32v-54.6h101.2l13.1-83.3H47v-54.6h107.2L176,32h63.9l-21.8,127.7h105.6L345.5,32h63.1l-21.8,127.7H480v54.6\r\n\t\tH378.1l-12.3,83.3H465v54.6H358.5L336,480h-63.1l21.8-127.7H188.3L166.5,480h-63.1L125.2,352.3z M209.4,214.3L197,297.7h105.6\r\n\t\tl12.3-83.3H209.4z"},"children":[]}]}]}]};exports.pound=pound;var power={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,256c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32s32,14.3,32,32v160C288,241.7,273.7,256,256,256z"},"children":[{"name":"path","attribs":{"d":"M256,256c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32s32,14.3,32,32v160C288,241.7,273.7,256,256,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M379,68.8L379,68.8c-5-3-10.8-4.8-17-4.8c-17.7,0-32,14.3-32,32c0,6.2,1.8,12,4.8,16.9c2,3.2,4.6,6.1,7.6,8.4\r\n\t\tc1.2,0.9,2.4,1.7,3.7,2.5c8.1,5.6,15.8,11.9,23,19.1C399.4,173.1,416,213.3,416,256c0,42.7-16.6,82.9-46.9,113.1\r\n\t\tC338.9,399.4,298.7,416,256,416c-42.7,0-82.9-16.6-113.1-46.9C112.6,338.9,96,298.7,96,256c0-42.7,16.6-82.9,46.9-113.1\r\n\t\tc7.1-7.1,14.8-13.5,22.9-19c1.4-0.8,2.6-1.6,3.9-2.6c3-2.3,5.5-5.1,7.5-8.3c3.1-4.9,4.8-10.7,4.8-16.9c0-17.7-14.3-32-32-32\r\n\t\tc-6.2,0-12,1.8-16.9,4.8l-0.1-0.1C72.2,108.8,32,177.7,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,177.7,439.8,108.8,379,68.8z"},"children":[{"name":"path","attribs":{"d":"M379,68.8L379,68.8c-5-3-10.8-4.8-17-4.8c-17.7,0-32,14.3-32,32c0,6.2,1.8,12,4.8,16.9c2,3.2,4.6,6.1,7.6,8.4\r\n\t\tc1.2,0.9,2.4,1.7,3.7,2.5c8.1,5.6,15.8,11.9,23,19.1C399.4,173.1,416,213.3,416,256c0,42.7-16.6,82.9-46.9,113.1\r\n\t\tC338.9,399.4,298.7,416,256,416c-42.7,0-82.9-16.6-113.1-46.9C112.6,338.9,96,298.7,96,256c0-42.7,16.6-82.9,46.9-113.1\r\n\t\tc7.1-7.1,14.8-13.5,22.9-19c1.4-0.8,2.6-1.6,3.9-2.6c3-2.3,5.5-5.1,7.5-8.3c3.1-4.9,4.8-10.7,4.8-16.9c0-17.7-14.3-32-32-32\r\n\t\tc-6.2,0-12,1.8-16.9,4.8l-0.1-0.1C72.2,108.8,32,177.7,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,177.7,439.8,108.8,379,68.8z"},"children":[]}]}]}]};exports.power=power;var pricetag={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M471,261.4L471,261.4C471,261.4,471,261.4,471,261.4L260.9,49.8c0,0,0,0,0,0l-1.5-1.5c0,0-0.4,0-0.4,0\r\n\t\tc-8.3-7.9-17.9-12-29.9-12.3v0l-99.7-3.7l-4.4-0.2c-11.2,0.2-22.2,4.5-30.7,13.1L45.1,94.3c-9,9-13.1,20.9-13.1,32.7c0,0,0,0,0,0.1\r\n\t\tl0.3,4.2l6.7,97.3c0,0.1,0,0.2,0,0.2v1.9c0,0,0,0,0,0c1,8.7,4.5,17.3,10.4,24.4l5.5,5.4l206.3,208.8l3.1,3.1\r\n\t\tc11.9,10.5,30,10,41.3-1.4l165.4-166.6C482.8,292.6,483,273.3,471,261.4z M144,192c-26.5,0-48-21.5-48-48s21.5-48,48-48\r\n\t\ts48,21.5,48,48S170.5,192,144,192z"},"children":[{"name":"path","attribs":{"d":"M471,261.4L471,261.4C471,261.4,471,261.4,471,261.4L260.9,49.8c0,0,0,0,0,0l-1.5-1.5c0,0-0.4,0-0.4,0\r\n\t\tc-8.3-7.9-17.9-12-29.9-12.3v0l-99.7-3.7l-4.4-0.2c-11.2,0.2-22.2,4.5-30.7,13.1L45.1,94.3c-9,9-13.1,20.9-13.1,32.7c0,0,0,0,0,0.1\r\n\t\tl0.3,4.2l6.7,97.3c0,0.1,0,0.2,0,0.2v1.9c0,0,0,0,0,0c1,8.7,4.5,17.3,10.4,24.4l5.5,5.4l206.3,208.8l3.1,3.1\r\n\t\tc11.9,10.5,30,10,41.3-1.4l165.4-166.6C482.8,292.6,483,273.3,471,261.4z M144,192c-26.5,0-48-21.5-48-48s21.5-48,48-48\r\n\t\ts48,21.5,48,48S170.5,192,144,192z"},"children":[]}]}]}]};exports.pricetag=pricetag;var pricetags={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M472,239.2L472,239.2C472,239.2,471.9,239.2,472,239.2L282.1,48.1c0,0,0,0,0,0l-1.4-1.4c0,0-0.5,0-0.5,0\r\n\t\tc-7.5-7.2-16.1-10.9-27.1-11.1v0l-89.9-3.3l-3.9-0.1c-10.1,0.1-20,4.1-27.7,11.8l-27.1,27.2c7.4-6.6,16.6-10,26-10.1l3.8,0.1\r\n\t\tl89.8,3.3v0c11,0.2,19.7,3.9,27.2,11.1c0,0,0.4,0,0.5,0l1.4,1.4c0,0,0,0,0,0L443,268.1c0,0,0,0,0,0v0c10,10.8,10.7,28.2,0,38.9\r\n\t\tl29-28.9C482.6,267.4,482,250,472,239.2z"},"children":[{"name":"path","attribs":{"d":"M472,239.2L472,239.2C472,239.2,471.9,239.2,472,239.2L282.1,48.1c0,0,0,0,0,0l-1.4-1.4c0,0-0.5,0-0.5,0\r\n\t\tc-7.5-7.2-16.1-10.9-27.1-11.1v0l-89.9-3.3l-3.9-0.1c-10.1,0.1-20,4.1-27.7,11.8l-27.1,27.2c7.4-6.6,16.6-10,26-10.1l3.8,0.1\r\n\t\tl89.8,3.3v0c11,0.2,19.7,3.9,27.2,11.1c0,0,0.4,0,0.5,0l1.4,1.4c0,0,0,0,0,0L443,268.1c0,0,0,0,0,0v0c10,10.8,10.7,28.2,0,38.9\r\n\t\tl29-28.9C482.6,267.4,482,250,472,239.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M428,282.5c0,0,0.3,0,0.3,0L238.6,91.4c0,0,0,0,0,0l-1.3-1.4c0,0-0.3,0-0.3,0c-7.5-7.2-15.9-10.9-26.9-11.1v0l-90.1-3.3\r\n\t\tl-4-0.1c-9.2,0.1-18.2,3.4-25.6,9.8c-0.3,0.3-0.7,0.6-1,0.9c-0.4,0.4-0.8,0.8-1.2,1.2l-44.3,44.5c-8.1,8.1-11.9,18.9-11.9,29.5\r\n\t\tc0,0,0,0,0,0.1l0.1,3.8l5.9,87.9c0,0.1,0,0.1,0,0.2v1.7c0,0,0,0,0,0c1,7.9,4.2,15.6,9.6,22l5.1,4.9L239,470.4l2.8,2.8\r\n\t\tc10.7,9.4,27.1,9,37.3-1.3l13.1-13.2c0.5-0.4,0.9-0.8,1.4-1.3l26.9-27c-0.2,0.1-0.3,0.2-0.5,0.4l108.3-109.3\r\n\t\tC438.9,310.8,439,293.3,428,282.5L428,282.5z M110.6,139.5c6.6-4,14.3-6.3,22.6-6.3c23.9,0,43.4,19.4,43.4,43.4\r\n\t\tc0,8.3-2.3,16-6.3,22.6c-7.6,12.5-21.3,20.8-37,20.8c-23.9,0-43.4-19.4-43.4-43.4C89.8,160.8,98.1,147.1,110.6,139.5z"},"children":[{"name":"path","attribs":{"d":"M428,282.5c0,0,0.3,0,0.3,0L238.6,91.4c0,0,0,0,0,0l-1.3-1.4c0,0-0.3,0-0.3,0c-7.5-7.2-15.9-10.9-26.9-11.1v0l-90.1-3.3\r\n\t\tl-4-0.1c-9.2,0.1-18.2,3.4-25.6,9.8c-0.3,0.3-0.7,0.6-1,0.9c-0.4,0.4-0.8,0.8-1.2,1.2l-44.3,44.5c-8.1,8.1-11.9,18.9-11.9,29.5\r\n\t\tc0,0,0,0,0,0.1l0.1,3.8l5.9,87.9c0,0.1,0,0.1,0,0.2v1.7c0,0,0,0,0,0c1,7.9,4.2,15.6,9.6,22l5.1,4.9L239,470.4l2.8,2.8\r\n\t\tc10.7,9.4,27.1,9,37.3-1.3l13.1-13.2c0.5-0.4,0.9-0.8,1.4-1.3l26.9-27c-0.2,0.1-0.3,0.2-0.5,0.4l108.3-109.3\r\n\t\tC438.9,310.8,439,293.3,428,282.5L428,282.5z M110.6,139.5c6.6-4,14.3-6.3,22.6-6.3c23.9,0,43.4,19.4,43.4,43.4\r\n\t\tc0,8.3-2.3,16-6.3,22.6c-7.6,12.5-21.3,20.8-37,20.8c-23.9,0-43.4-19.4-43.4-43.4C89.8,160.8,98.1,147.1,110.6,139.5z"},"children":[]}]}]}]};exports.pricetags=pricetags;var printer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M423.8,128H384V64H128v64H88.2C60.3,128,32,144.9,32,182.6v123.8c0,38,28.3,61.6,56.2,61.6c0,0,30.4,0,39.8,0v112h5h11h224\r\n\t\th8h8V368c10.3,0,39.8,0,39.8,0c27.9,0,56.2-22.6,56.2-53.6V182.6C480,146.9,451.8,128,423.8,128z M368,464H144V288h224V464z\r\n\t\t M368,128H144V80h224V128z M416,192h-17v-16h17V192z"},"children":[{"name":"path","attribs":{"d":"M423.8,128H384V64H128v64H88.2C60.3,128,32,144.9,32,182.6v123.8c0,38,28.3,61.6,56.2,61.6c0,0,30.4,0,39.8,0v112h5h11h224\r\n\t\th8h8V368c10.3,0,39.8,0,39.8,0c27.9,0,56.2-22.6,56.2-53.6V182.6C480,146.9,451.8,128,423.8,128z M368,464H144V288h224V464z\r\n\t\t M368,128H144V80h224V128z M416,192h-17v-16h17V192z"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"320","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"320","width":"192","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"368","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"368","width":"192","height":"16"},"children":[]}]},{"name":"rect","attribs":{"x":"160","y":"416","width":"192","height":"16"},"children":[{"name":"rect","attribs":{"x":"160","y":"416","width":"192","height":"16"},"children":[]}]}]}]};exports.printer=printer;var pullRequest={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M128,64c-35.29,0-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v177.219C76.89,371.693,64,392.363,64,416\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391V183.391c19.11-11.084,32-31.754,32-55.391\r\n\t\tC192,92.71,163.29,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M128,160\r\n\t\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,160,128,160z"},"children":[{"name":"path","attribs":{"d":"M128,64c-35.29,0-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v177.219C76.89,371.693,64,392.363,64,416\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391V183.391c19.11-11.084,32-31.754,32-55.391\r\n\t\tC192,92.71,163.29,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M128,160\r\n\t\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,160,128,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M415,360.034V204.989c0-33.987-10.49-61.002-31.18-80.294c-22.111-20.618-54.314-30.388-95.82-29.106V32l-96,96l96,96v-64\r\n\t\tc26.5,0,42.67,2.642,52.175,11.504c7.183,6.698,10.825,17.964,10.825,33.485v156.196c-18.562,11.217-31,31.589-31,54.814\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64C448,391.951,434.662,370.969,415,360.034z M384,448c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S401.673,448,384,448z"},"children":[{"name":"path","attribs":{"d":"M415,360.034V204.989c0-33.987-10.49-61.002-31.18-80.294c-22.111-20.618-54.314-30.388-95.82-29.106V32l-96,96l96,96v-64\r\n\t\tc26.5,0,42.67,2.642,52.175,11.504c7.183,6.698,10.825,17.964,10.825,33.485v156.196c-18.562,11.217-31,31.589-31,54.814\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64C448,391.951,434.662,370.969,415,360.034z M384,448c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S401.673,448,384,448z"},"children":[]}]}]}]};exports.pullRequest=pullRequest;var qrScanner={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M96,124.171c0-6.938,5.232-12.171,12.171-12.171H176V64h-66.829C75.717,64,48,90.717,48,124.171V192h48V124.171z"},"children":[{"name":"path","attribs":{"d":"M96,124.171c0-6.938,5.232-12.171,12.171-12.171H176V64h-66.829C75.717,64,48,90.717,48,124.171V192h48V124.171z"},"children":[]}]},{"name":"path","attribs":{"d":"M403.579,64H336v48h67.219c6.938,0,12.781,5.232,12.781,12.171V192h48v-67.829C464,90.717,437.033,64,403.579,64z"},"children":[{"name":"path","attribs":{"d":"M403.579,64H336v48h67.219c6.938,0,12.781,5.232,12.781,12.171V192h48v-67.829C464,90.717,437.033,64,403.579,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M416,386.829c0,6.938-5.232,12.171-12.171,12.171H336v49h67.829C437.283,448,464,420.283,464,386.829V320h-48V386.829z"},"children":[{"name":"path","attribs":{"d":"M416,386.829c0,6.938-5.232,12.171-12.171,12.171H336v49h67.829C437.283,448,464,420.283,464,386.829V320h-48V386.829z"},"children":[]}]},{"name":"path","attribs":{"d":"M108.171,399C101.232,399,96,393.768,96,386.829V320H48v66.829C48,420.283,75.717,448,109.171,448H176v-49H108.171z"},"children":[{"name":"path","attribs":{"d":"M108.171,399C101.232,399,96,393.768,96,386.829V320H48v66.829C48,420.283,75.717,448,109.171,448H176v-49H108.171z"},"children":[]}]}]}]};exports.qrScanner=qrScanner;var quote={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M192,64c-40.646,0-72.483,11.229-94.627,33.373C75.229,119.517,64,151.354,64,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C152.334,132.922,168.944,128,192,128"},"children":[{"name":"path","attribs":{"d":"M192,64c-40.646,0-72.483,11.229-94.627,33.373C75.229,119.517,64,151.354,64,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C152.334,132.922,168.944,128,192,128"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,64c-40.646,0-72.483,11.229-94.627,33.373C299.229,119.517,288,151.354,288,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C376.334,132.922,392.944,128,416,128"},"children":[{"name":"path","attribs":{"d":"M416,64c-40.646,0-72.483,11.229-94.627,33.373C299.229,119.517,288,151.354,288,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C376.334,132.922,392.944,128,416,128"},"children":[]}]}]}]}]}]};exports.quote=quote;var radioWaves={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"256","r":"64"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"256","r":"64"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,256c0-36.9,18.553-69.208,46.314-87.034l-23.141-24.512c-6.26,4.608-12.18,9.833-17.684,15.663\r\n\t\t\tC125.314,185.729,112,219.781,112,256c0,36.219,13.314,70.271,37.49,95.883c5.504,5.829,11.424,11.055,17.684,15.662\r\n\t\t\tl23.141-24.511C162.553,325.208,144,292.9,144,256z"},"children":[{"name":"path","attribs":{"d":"M144,256c0-36.9,18.553-69.208,46.314-87.034l-23.141-24.512c-6.26,4.608-12.18,9.833-17.684,15.663\r\n\t\t\tC125.314,185.729,112,219.781,112,256c0,36.219,13.314,70.271,37.49,95.883c5.504,5.829,11.424,11.055,17.684,15.662\r\n\t\t\tl23.141-24.511C162.553,325.208,144,292.9,144,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M368,256c0,36.9-18.553,69.208-46.314,87.034l23.141,24.511c6.26-4.607,12.18-9.833,17.684-15.662\r\n\t\t\tC386.686,326.271,400,292.219,400,256c0-36.219-13.314-70.271-37.49-95.882c-5.504-5.83-11.424-11.055-17.684-15.663\r\n\t\t\tl-23.141,24.512C349.447,186.792,368,219.1,368,256z"},"children":[{"name":"path","attribs":{"d":"M368,256c0,36.9-18.553,69.208-46.314,87.034l23.141,24.511c6.26-4.607,12.18-9.833,17.684-15.662\r\n\t\t\tC386.686,326.271,400,292.219,400,256c0-36.219-13.314-70.271-37.49-95.882c-5.504-5.83-11.424-11.055-17.684-15.663\r\n\t\t\tl-23.141,24.512C349.447,186.792,368,219.1,368,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,256c0-55.578,25.251-104.907,64.263-135.817L105.433,96c-5.999,5-11.739,10.396-17.197,16.178\r\n\t\t\tc-17.622,18.669-31.462,40.417-41.134,64.641C37.081,201.917,32,228.556,32,256c0,27.443,5.081,54.084,15.102,79.181\r\n\t\t\tc9.672,24.226,23.512,45.973,41.134,64.642c5.458,5.781,11.198,11.177,17.197,16.178l22.829-24.183\r\n\t\t\tC89.251,360.907,64,311.578,64,256z"},"children":[{"name":"path","attribs":{"d":"M64,256c0-55.578,25.251-104.907,64.263-135.817L105.433,96c-5.999,5-11.739,10.396-17.197,16.178\r\n\t\t\tc-17.622,18.669-31.462,40.417-41.134,64.641C37.081,201.917,32,228.556,32,256c0,27.443,5.081,54.084,15.102,79.181\r\n\t\t\tc9.672,24.226,23.512,45.973,41.134,64.642c5.458,5.781,11.198,11.177,17.197,16.178l22.829-24.183\r\n\t\t\tC89.251,360.907,64,311.578,64,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,256c0,55.578-25.251,104.907-64.262,135.817l22.828,23.848c6-5.001,11.74-10.062,17.198-15.843\r\n\t\t\tc17.622-18.669,31.462-40.416,41.134-64.642C474.918,310.084,480,283.443,480,256c0-27.444-5.082-54.083-15.102-79.181\r\n\t\t\tc-9.672-24.225-23.512-45.972-41.134-64.641C418.307,106.396,412.566,101,406.566,96l-22.829,24.183\r\n\t\t\tC422.749,151.093,448,200.422,448,256z"},"children":[{"name":"path","attribs":{"d":"M448,256c0,55.578-25.251,104.907-64.262,135.817l22.828,23.848c6-5.001,11.74-10.062,17.198-15.843\r\n\t\t\tc17.622-18.669,31.462-40.416,41.134-64.642C474.918,310.084,480,283.443,480,256c0-27.444-5.082-54.083-15.102-79.181\r\n\t\t\tc-9.672-24.225-23.512-45.972-41.134-64.641C418.307,106.396,412.566,101,406.566,96l-22.829,24.183\r\n\t\t\tC422.749,151.093,448,200.422,448,256z"},"children":[]}]}]}]}]}]};exports.radioWaves=radioWaves;var record={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,464c114.9,0,208-93.1,208-208c0-114.9-93.1-208-208-208C141.1,48,48,141.1,48,256C48,370.9,141.1,464,256,464z"},"children":[]}]};exports.record=record;var refresh={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M416,352l96-111.9h-64.7c-2.3-27.9-10.5-54-23.5-77.3c-27.4-49.2-75.8-85.1-133-95.6c-0.7-0.1-1.5-0.3-2.2-0.4\r\n\tc-0.5-0.1-0.9-0.2-1.4-0.2C277.1,64.9,266.6,64,256,64c-0.1,0-0.3,0-0.4,0c0,0,0,0,0,0c-90.9,0.2-167,63.6-186.7,148.6\r\n\tc0,0,0,0.1,0,0.1c-0.3,1.1-0.5,2.2-0.7,3.3c-0.1,0.5-0.2,0.9-0.3,1.4c-0.1,0.7-0.3,1.4-0.4,2.1c-0.2,0.9-0.3,1.7-0.5,2.6\r\n\tc-0.1,0.4-0.1,0.7-0.2,1.1c-0.2,1.2-0.4,2.4-0.6,3.6c0,0.1,0,0.1,0,0.2c-1,6.3-1.6,12.7-1.9,19.1c0,0.3,0,0.6,0,0.8\r\n\tc-0.1,1.4-0.1,2.7-0.2,4.1c0,1.6-0.1,3.3-0.1,5c0,1.7,0,3.3,0.1,5c0,1.4,0.1,2.7,0.2,4.1c0,0.3,0,0.6,0,0.9c0.3,6.5,1,12.9,1.9,19.1\r\n\tc0,0.1,0,0.1,0,0.2c0.2,1.2,0.4,2.4,0.6,3.6c0.1,0.4,0.1,0.7,0.2,1.1c0.2,0.9,0.3,1.8,0.5,2.6c0.1,0.7,0.3,1.4,0.4,2.1\r\n\tc0.1,0.5,0.2,1,0.3,1.4c0.2,1.1,0.5,2.2,0.7,3.2c0,0,0,0.1,0,0.1c19.7,85,96.1,148.4,187.1,148.6c42.9-0.1,83.1-14.2,116.9-40.7\r\n\tl7.5-5.9l-43.2-46.2l-6.2,4.6c-22.1,16.3-47.5,24.2-75,24.2c-70.6,0-128-57-128-128c0-71,57.4-128,128-128\r\n\tc66.4,0,122.8,46.6,129.5,112H312L416,352z"},"children":[]}]};exports.refresh=refresh;var replyAll={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M304.5,192v-80L152.7,255.8L304.5,390v-91.9c68,0,107.9,8.9,159.1,101.9C463.6,400,457.5,192,304.5,192z"},"children":[{"name":"path","attribs":{"d":"M304.5,192v-80L152.7,255.8L304.5,390v-91.9c68,0,107.9,8.9,159.1,101.9C463.6,400,457.5,192,304.5,192z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"47.5,256 191.5,382.5 191.5,324 109.3,256 191.5,177.4 191.5,120.4 \t\t"},"children":[{"name":"polygon","attribs":{"points":"47.5,256 191.5,382.5 191.5,324 109.3,256 191.5,177.4 191.5,120.4 \t\t"},"children":[]}]}]}]}]}]};exports.replyAll=replyAll;var reply={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M448,400c0,0-36.8-208-224-208v-80L64,256l160,134.4v-92.3C325.6,298.1,395,307,448,400z"},"children":[{"name":"path","attribs":{"d":"M448,400c0,0-36.8-208-224-208v-80L64,256l160,134.4v-92.3C325.6,298.1,395,307,448,400z"},"children":[]}]}]}]};exports.reply=reply;var ribbonA={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,32l-82.9,176.612c39.996,3.608,75.273,23.554,99.096,53.128L432,128L352,32z"},"children":[{"name":"path","attribs":{"d":"M352,32l-82.9,176.612c39.996,3.608,75.273,23.554,99.096,53.128L432,128L352,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,32l82.9,176.612c-39.996,3.608-75.273,23.554-99.096,53.128L80,128L160,32z"},"children":[{"name":"path","attribs":{"d":"M160,32l82.9,176.612c-39.996,3.608-75.273,23.554-99.096,53.128L80,128L160,32z"},"children":[]}]},{"name":"polygon","attribs":{"points":"269.092,32 256,32 176,32 228.572,144 256,144 283.428,144 336,32 \t"},"children":[{"name":"polygon","attribs":{"points":"269.092,32 256,32 176,32 228.572,144 256,144 283.428,144 336,32 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,224c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,224,256,224z M256,448\r\n\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,448,256,448z"},"children":[{"name":"path","attribs":{"d":"M256,224c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,224,256,224z M256,448\r\n\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,448,256,448z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,264c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,264,256,264z"},"children":[{"name":"path","attribs":{"d":"M256,264c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,264,256,264z"},"children":[]}]}]}]};exports.ribbonA=ribbonA;var ribbonB={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,72c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,72,256,72z"},"children":[{"name":"path","attribs":{"d":"M256,72c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,72,256,72z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,32,256,32z M256,256\r\n\t\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,256,256,256z"},"children":[{"name":"path","attribs":{"d":"M256,32c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,32,256,32z M256,256\r\n\t\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,256,256,256z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M147.092,254.21L64,400h96l48,80l48-105.807l33.641-74.154C278.848,302.623,267.585,304,256,304\r\n\t\t\tC212.495,304,173.497,284.707,147.092,254.21z"},"children":[{"name":"path","attribs":{"d":"M147.092,254.21L64,400h96l48,80l48-105.807l33.641-74.154C278.848,302.623,267.585,304,256,304\r\n\t\t\tC212.495,304,173.497,284.707,147.092,254.21z"},"children":[]}]},{"name":"path","attribs":{"d":"M364.908,254.211c-15.077,17.412-34.26,31.172-56.043,39.774l-44.752,98.092L304,480l48-80h96L364.908,254.211z"},"children":[{"name":"path","attribs":{"d":"M364.908,254.211c-15.077,17.412-34.26,31.172-56.043,39.774l-44.752,98.092L304,480l48-80h96L364.908,254.211z"},"children":[]}]}]}]}]}]};exports.ribbonB=ribbonB;var sadOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M399.283,283.797c-5.1-16.379-14.22-29.995-33.802-37.263s-35.265-2.877-49.868,6.15\r\n\t\t\t\tc-7.615,4.707-10.029,14.019-4.214,22.123c2.049,2.854,5.019,4.717,8.376,5.963c5.059,1.876,10.584,1.678,14.965-1.036\r\n\t\t\t\tc4.778-2.957,10.644-6.526,19.607-3.199c9.01,3.343,11.103,9.839,12.752,15.161c1.551,4.952,5.62,8.724,10.693,10.606\r\n\t\t\t\tc3.357,1.246,6.816,1.774,10.236,0.938C396.895,301.056,401.944,292.333,399.283,283.797z"},"children":[{"name":"path","attribs":{"d":"M399.283,283.797c-5.1-16.379-14.22-29.995-33.802-37.263s-35.265-2.877-49.868,6.15\r\n\t\t\t\tc-7.615,4.707-10.029,14.019-4.214,22.123c2.049,2.854,5.019,4.717,8.376,5.963c5.059,1.876,10.584,1.678,14.965-1.036\r\n\t\t\t\tc4.778-2.957,10.644-6.526,19.607-3.199c9.01,3.343,11.103,9.839,12.752,15.161c1.551,4.952,5.62,8.724,10.693,10.606\r\n\t\t\t\tc3.357,1.246,6.816,1.774,10.236,0.938C396.895,301.056,401.944,292.333,399.283,283.797z"},"children":[]}]},{"name":"path","attribs":{"d":"M196.549,252.685c-14.603-9.027-30.286-13.418-49.868-6.15s-28.702,20.884-33.802,37.263\r\n\t\t\t\tc-2.661,8.536,2.389,17.259,11.255,19.443c3.42,0.837,6.878,0.309,10.236-0.938c5.073-1.883,9.143-5.654,10.693-10.606\r\n\t\t\t\tc1.649-5.322,3.743-11.818,12.752-15.161c8.964-3.327,14.829,0.242,19.607,3.199c4.381,2.714,9.907,2.912,14.965,1.036\r\n\t\t\t\tc3.357-1.246,6.327-3.108,8.376-5.963C206.578,266.703,204.164,257.392,196.549,252.685z"},"children":[{"name":"path","attribs":{"d":"M196.549,252.685c-14.603-9.027-30.286-13.418-49.868-6.15s-28.702,20.884-33.802,37.263\r\n\t\t\t\tc-2.661,8.536,2.389,17.259,11.255,19.443c3.42,0.837,6.878,0.309,10.236-0.938c5.073-1.883,9.143-5.654,10.693-10.606\r\n\t\t\t\tc1.649-5.322,3.743-11.818,12.752-15.161c8.964-3.327,14.829,0.242,19.607,3.199c4.381,2.714,9.907,2.912,14.965,1.036\r\n\t\t\t\tc3.357-1.246,6.327-3.108,8.376-5.963C206.578,266.703,204.164,257.392,196.549,252.685z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M349.119,359.176C348.013,357.59,321,320,256,320c-65.261,0-92.014,37.59-93.121,39.176\r\n\t\tc-5.057,7.247-3.283,17.221,3.963,22.278c2.789,1.946,5.982,2.881,9.143,2.881c5.052,0,10.024-2.388,13.135-6.845\r\n\t\tC189.296,377.239,208.02,352,256,352c48,0,66.703,25.239,66.879,25.49c3.11,4.457,8.081,6.845,13.134,6.845\r\n\t\tc3.161,0,6.354-0.935,9.144-2.881C352.402,376.396,354.177,366.423,349.119,359.176z"},"children":[{"name":"path","attribs":{"d":"M349.119,359.176C348.013,357.59,321,320,256,320c-65.261,0-92.014,37.59-93.121,39.176\r\n\t\tc-5.057,7.247-3.283,17.221,3.963,22.278c2.789,1.946,5.982,2.881,9.143,2.881c5.052,0,10.024-2.388,13.135-6.845\r\n\t\tC189.296,377.239,208.02,352,256,352c48,0,66.703,25.239,66.879,25.49c3.11,4.457,8.081,6.845,13.134,6.845\r\n\t\tc3.161,0,6.354-0.935,9.144-2.881C352.402,376.396,354.177,366.423,349.119,359.176z"},"children":[]}]}]}]};exports.sadOutline=sadOutline;var sad={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M145.062,291.696\r\n\t\tc-1.551,4.952-5.62,8.724-10.693,10.606c-3.358,1.246-6.816,1.774-10.236,0.938c-8.866-2.185-13.916-10.907-11.255-19.443\r\n\t\tc5.101-16.379,14.22-29.995,33.802-37.263s35.265-2.877,49.868,6.15c7.615,4.707,10.029,14.019,4.214,22.123\r\n\t\tc-2.049,2.854-5.019,4.717-8.376,5.963c-5.059,1.876-10.584,1.678-14.965-1.036c-4.778-2.957-10.643-6.526-19.607-3.199\r\n\t\tC148.805,279.878,146.712,286.374,145.062,291.696z M345.156,381.454c-2.789,1.946-5.982,2.881-9.144,2.881\r\n\t\tc-5.053,0-10.023-2.388-13.134-6.845C322.703,377.239,304,352,256,352c-47.98,0-66.704,25.239-66.879,25.49\r\n\t\tc-3.111,4.457-8.083,6.845-13.135,6.845c-3.161,0-6.354-0.935-9.143-2.881c-7.246-5.058-9.021-15.031-3.963-22.278\r\n\t\tC163.986,357.59,190.739,320,256,320c65,0,92.013,37.59,93.119,39.176C354.177,366.423,352.402,376.396,345.156,381.454z\r\n\t\t M388.029,303.24c-3.42,0.837-6.879,0.309-10.236-0.938c-5.073-1.883-9.143-5.654-10.693-10.606\r\n\t\tc-1.649-5.322-3.742-11.818-12.752-15.161c-8.964-3.327-14.829,0.242-19.607,3.199c-4.381,2.714-9.906,2.912-14.965,1.036\r\n\t\tc-3.357-1.246-6.327-3.108-8.376-5.963c-5.815-8.104-3.401-17.416,4.214-22.123c14.604-9.027,30.286-13.418,49.868-6.15\r\n\t\ts28.702,20.884,33.802,37.263C401.944,292.333,396.895,301.056,388.029,303.24z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M145.062,291.696\r\n\t\tc-1.551,4.952-5.62,8.724-10.693,10.606c-3.358,1.246-6.816,1.774-10.236,0.938c-8.866-2.185-13.916-10.907-11.255-19.443\r\n\t\tc5.101-16.379,14.22-29.995,33.802-37.263s35.265-2.877,49.868,6.15c7.615,4.707,10.029,14.019,4.214,22.123\r\n\t\tc-2.049,2.854-5.019,4.717-8.376,5.963c-5.059,1.876-10.584,1.678-14.965-1.036c-4.778-2.957-10.643-6.526-19.607-3.199\r\n\t\tC148.805,279.878,146.712,286.374,145.062,291.696z M345.156,381.454c-2.789,1.946-5.982,2.881-9.144,2.881\r\n\t\tc-5.053,0-10.023-2.388-13.134-6.845C322.703,377.239,304,352,256,352c-47.98,0-66.704,25.239-66.879,25.49\r\n\t\tc-3.111,4.457-8.083,6.845-13.135,6.845c-3.161,0-6.354-0.935-9.143-2.881c-7.246-5.058-9.021-15.031-3.963-22.278\r\n\t\tC163.986,357.59,190.739,320,256,320c65,0,92.013,37.59,93.119,39.176C354.177,366.423,352.402,376.396,345.156,381.454z\r\n\t\t M388.029,303.24c-3.42,0.837-6.879,0.309-10.236-0.938c-5.073-1.883-9.143-5.654-10.693-10.606\r\n\t\tc-1.649-5.322-3.742-11.818-12.752-15.161c-8.964-3.327-14.829,0.242-19.607,3.199c-4.381,2.714-9.906,2.912-14.965,1.036\r\n\t\tc-3.357-1.246-6.327-3.108-8.376-5.963c-5.815-8.104-3.401-17.416,4.214-22.123c14.604-9.027,30.286-13.418,49.868-6.15\r\n\t\ts28.702,20.884,33.802,37.263C401.944,292.333,396.895,301.056,388.029,303.24z"},"children":[]}]}]}]};exports.sad=sad;var scissors={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M405.178,115.667c13.314-32.667,17.309-64-5.326-83.667L255.726,224l-16.976,23c0,0-27.627,40.011-37.28,58.667\r\n\t\ts-19.306,39.333-27.294,54c-7.01,12.871-10.438,15.221-14.322,11.548c-0.506-0.591-1.026-1.168-1.553-1.736\r\n\t\tc-0.037-0.047-0.073-0.09-0.11-0.138c-1.143-1.472-2.75-3.002-4.635-4.467C144.195,356.795,132.548,352,119.92,352\r\n\t\tC89.037,352,64,380.653,64,416s25.037,64,55.92,64c25.282,0,46.635-19.205,53.553-45.561l-0.004,0.043\r\n\t\tc0,0,13.355-41.482,32.661-71.482c19.306-30,49.596-43,49.596-43l31.954-32C287.68,288,391.863,148.334,405.178,115.667z\r\n\t\t M119.92,448c-15.418,0-27.918-14.353-27.918-32s12.5-32,27.918-32c15.419,0,27.918,14.353,27.918,32S135.339,448,119.92,448z\r\n\t\t M256,288c-8.836,0-16-7.163-16-16c0-8.836,7.164-16,16-16c8.837,0,16,7.164,16,16C272,280.837,264.837,288,256,288z"},"children":[{"name":"path","attribs":{"d":"M405.178,115.667c13.314-32.667,17.309-64-5.326-83.667L255.726,224l-16.976,23c0,0-27.627,40.011-37.28,58.667\r\n\t\ts-19.306,39.333-27.294,54c-7.01,12.871-10.438,15.221-14.322,11.548c-0.506-0.591-1.026-1.168-1.553-1.736\r\n\t\tc-0.037-0.047-0.073-0.09-0.11-0.138c-1.143-1.472-2.75-3.002-4.635-4.467C144.195,356.795,132.548,352,119.92,352\r\n\t\tC89.037,352,64,380.653,64,416s25.037,64,55.92,64c25.282,0,46.635-19.205,53.553-45.561l-0.004,0.043\r\n\t\tc0,0,13.355-41.482,32.661-71.482c19.306-30,49.596-43,49.596-43l31.954-32C287.68,288,391.863,148.334,405.178,115.667z\r\n\t\t M119.92,448c-15.418,0-27.918-14.353-27.918-32s12.5-32,27.918-32c15.419,0,27.918,14.353,27.918,32S135.339,448,119.92,448z\r\n\t\t M256,288c-8.836,0-16-7.163-16-16c0-8.836,7.164-16,16-16c8.837,0,16,7.164,16,16C272,280.837,264.837,288,256,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M207.28,265.255c9.18-14.114,17.671-26.43,18.304-27.346l0.143-0.208l0.15-0.203l16.976-23l0.038-0.052l0.039-0.052\r\n\t\tl2.941-3.918L111.896,32c-22.634,19.667-18.64,51-5.326,83.667C116.523,140.087,177.249,224.29,207.28,265.255z"},"children":[{"name":"path","attribs":{"d":"M207.28,265.255c9.18-14.114,17.671-26.43,18.304-27.346l0.143-0.208l0.15-0.203l16.976-23l0.038-0.052l0.039-0.052\r\n\t\tl2.941-3.918L111.896,32c-22.634,19.667-18.64,51-5.326,83.667C116.523,140.087,177.249,224.29,207.28,265.255z"},"children":[]}]},{"name":"path","attribs":{"d":"M391.828,352c-12.628,0-24.275,4.795-33.637,12.874c-1.885,1.465-3.492,2.995-4.635,4.467\r\n\t\tc-0.037,0.048-0.072,0.091-0.109,0.138c-0.526,0.568-1.047,1.146-1.553,1.736c-3.884,3.673-7.312,1.323-14.322-11.548\r\n\t\tc-7.988-14.667-17.641-35.344-27.294-54c-1.77-3.421-4.146-7.561-6.843-12.038c-1.272,1.712-2.264,3.043-2.932,3.938l-0.688,0.924\r\n\t\tl-0.813,0.815l-28.688,28.729c10.433,6.855,24.565,18.276,35.306,34.965c19.305,30,32.66,71.482,32.66,71.482l-0.004-0.043\r\n\t\tC345.193,460.795,366.546,480,391.828,480C422.711,480,448,451.347,448,416S422.711,352,391.828,352z M391.828,448\r\n\t\tc-15.42,0-27.918-14.353-27.918-32s12.498-32,27.918-32c15.418,0,27.918,14.353,27.918,32S407.246,448,391.828,448z"},"children":[{"name":"path","attribs":{"d":"M391.828,352c-12.628,0-24.275,4.795-33.637,12.874c-1.885,1.465-3.492,2.995-4.635,4.467\r\n\t\tc-0.037,0.048-0.072,0.091-0.109,0.138c-0.526,0.568-1.047,1.146-1.553,1.736c-3.884,3.673-7.312,1.323-14.322-11.548\r\n\t\tc-7.988-14.667-17.641-35.344-27.294-54c-1.77-3.421-4.146-7.561-6.843-12.038c-1.272,1.712-2.264,3.043-2.932,3.938l-0.688,0.924\r\n\t\tl-0.813,0.815l-28.688,28.729c10.433,6.855,24.565,18.276,35.306,34.965c19.305,30,32.66,71.482,32.66,71.482l-0.004-0.043\r\n\t\tC345.193,460.795,366.546,480,391.828,480C422.711,480,448,451.347,448,416S422.711,352,391.828,352z M391.828,448\r\n\t\tc-15.42,0-27.918-14.353-27.918-32s12.498-32,27.918-32c15.418,0,27.918,14.353,27.918,32S407.246,448,391.828,448z"},"children":[]}]}]}]};exports.scissors=scissors;var search={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M445,386.7l-84.8-85.9c13.8-24.1,21-50.9,21-77.9c0-87.6-71.2-158.9-158.6-158.9C135.2,64,64,135.3,64,222.9\r\n\tc0,87.6,71.2,158.9,158.6,158.9c27.9,0,55.5-7.7,80.1-22.4l84.4,85.6c1.9,1.9,4.6,3.1,7.3,3.1c2.7,0,5.4-1.1,7.3-3.1l43.3-43.8\r\n\tC449,397.1,449,390.7,445,386.7z M222.6,125.9c53.4,0,96.8,43.5,96.8,97c0,53.5-43.4,97-96.8,97c-53.4,0-96.8-43.5-96.8-97\r\n\tC125.8,169.4,169.2,125.9,222.6,125.9z"},"children":[]}]};exports.search=search;var settings={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M450,138.3l-47.7,48.5l-2.7,2.8l-1.6,1.7c-1.1,0.8-2.4,1.2-3.9,1.2c-1.6,0-3.1-0.6-4.3-1.6l-0.9-0.9l-2.7-2.7l-41.3-42.1\r\n\tl-2.2-2.2l-1.7-1.7c-1-1.5-1.6-3.4-1.6-5.3c0-1.7,0.6-3.2,1.6-4.4l0.7-0.8l2.6-2.6l47.9-48.7c-5.1-10.1-24.7-14.9-35.1-14.1\r\n\tc-17.1,1.3-34.7,7-52.8,25.5c-0.7,0.8-1.5,1.6-2.2,2.3C277.5,120,272.6,156,282.6,189c0.7,1.4,1.3,3.1,1.6,4.6\r\n\tc1.1,5.5-0.4,10.2-4,13.5l-37.9,36.4c-11.8-12-13.5-13.6-13.5-13.6c-2-2-6-3.3-9.5-1.2l-5.9,3.6c-22.7-23.1-32.3-32.4-35.4-43.6\r\n\tc-3.2-11.7-0.3-27.3,2.7-33.1c2.5-4.6,10.3-8.9,16.9-9.4l8.6,8.8c2,2,5.1,2,7.1,0l30.9-31.4c2-2,2-5.3,0-7.3l-49.9-50.7\r\n\tc-2-2-5.2-2-7.1,0l-30.9,31.4c-2,2-2,5.3,0,7.3l3.3,3.4c0,4.9-0.7,12.5-4.7,16.6c-6.2,6.3-18.5-1-26.5,4.7\r\n\tc-7.9,5.6-17.9,14.6-24.3,21c-6.3,6.4-30.5,31.8-47.8,74.6c-17.3,42.8-4,82.5,5.4,92.9c5,5.5,14.1,11.1,12.5,0.7\r\n\tc-1.6-10.5-4.2-46.9,7.7-61.8c11.9-14.9,27.6-27.1,48-28.1c19.6-1,30.9,5.7,56.3,31.5l-2.8,5.2c-1.8,3.4-0.8,7.7,1.2,9.7\r\n\tc0,0,1.5,1.6,12.1,12.4l-97.2,93.2c-16.2,14.3-15.3,40.5-0.3,56c15.2,15.2,41.1,16.3,55.2-0.2l91.4-98.6\r\n\tc49.1,52.3,93.3,107.4,93.3,107.4c2,2,5.2,2,7.1,0l49.9-50.7c2-2,2-5.2,0-7.3c0,0-55.2-45.7-107-96.2l35.5-38.3\r\n\tc3.3-3.7,7.9-5.2,13.3-4.1c1.5,0.3,3.1,1,4.5,1.7c32.4,10.2,67.8,5.2,94-19.8c0.8-0.7,1.5-1.5,2.3-2.3c18.1-18.4,23.7-36.4,25-53.8\r\n\tC464.7,163.5,460.2,143.8,450,138.3z"},"children":[]}]};exports.settings=settings;var share={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,377.9H102.4V198.2h57.5c0,0,14.1-19.7,42.7-38.2H83.2c-10.6,0-19.2,8.5-19.2,19.1v217.9c0,10.5,8.6,19.1,19.2,19.1\r\n\t\th288c10.6,0,19.2-8.5,19.2-19.1V288L352,319.4V377.9z M320,224v63.9l128-95.5L320,96v59.7C165.2,155.7,160,320,160,320\r\n\t\tC203.8,248.5,236,224,320,224z"},"children":[{"name":"path","attribs":{"d":"M352,377.9H102.4V198.2h57.5c0,0,14.1-19.7,42.7-38.2H83.2c-10.6,0-19.2,8.5-19.2,19.1v217.9c0,10.5,8.6,19.1,19.2,19.1\r\n\t\th288c10.6,0,19.2-8.5,19.2-19.1V288L352,319.4V377.9z M320,224v63.9l128-95.5L320,96v59.7C165.2,155.7,160,320,160,320\r\n\t\tC203.8,248.5,236,224,320,224z"},"children":[]}]}]}]};exports.share=share;var shuffle={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M370.1,181.3H399v47.3l81-83.2L399,64v54h-28.9c-82.7,0-129.4,61.9-170.6,116.5c-37,49.1-69,95.4-120.6,95.4H32v63.3h46.9\r\n\tc82.7,0,129.4-65.8,170.6-120.4C286.5,223.7,318.4,181.3,370.1,181.3z M153.2,217.5c3.5-4.6,7.1-9.3,10.7-14.1\r\n\tc8.8-11.6,18-23.9,28-36.1c-29.6-27.9-65.3-48.5-113-48.5H32v63.3c0,0,13.3-0.6,46.9,0C111.4,182.8,131.8,196.2,153.2,217.5z\r\n\t M399,330.4h-28.9c-31.5,0-55.7-15.8-78.2-39.3c-2.2,3-4.5,6-6.8,9c-9.9,13.1-20.5,27.2-32.2,41.1c30.4,29.9,67.2,52.5,117.2,52.5\r\n\tH399V448l81-81.4l-81-83.2V330.4z"},"children":[]}]};exports.shuffle=shuffle;var skipBackward={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M75.7,96h8.1c6.7,0,12.2,5,12.2,11.7v113.5L283.1,98.7c2.5-1.7,5.1-2.3,8.1-2.3c8.3,0,15.4,7,15.4,17v63.1\r\n\tl118.5-78.2c2.5-1.7,5-2.3,8.1-2.3c8.3,0,14.9,7.4,14.9,17.4v286c0,10-6.7,16.5-15,16.5c-3.1,0-5.4-1.2-8.2-2.9l-118.3-77.6v64\r\n\tc0,10-7.2,16.5-15.5,16.5c-3.1,0-5.5-1.2-8.2-2.9L96,290.8v113c0,6.7-5.4,12.2-12.2,12.2h-8.1c-6.7,0-11.7-5.5-11.7-12.2V107.7\r\n\tC64,101,68.9,96,75.7,96z"},"children":[]}]};exports.skipBackward=skipBackward;var skipForward={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M436.3,96h-8.1c-6.7,0-12.2,5-12.2,11.7v113.5L228.9,98.7c-2.5-1.7-5.1-2.3-8.1-2.3c-8.3,0-15.4,7-15.4,17v63.1\r\n\tL86.9,98.3c-2.5-1.7-5.1-2.3-8.1-2.3c-8.3,0-14.9,7.4-14.9,17.4v286c0,10,6.7,16.5,15,16.5c3.1,0,5.4-1.2,8.2-2.9l118.3-77.6v64\r\n\tc0,10,7.2,16.5,15.5,16.5c3.1,0,5.5-1.2,8.2-2.9L416,290.8v113c0,6.7,5.4,12.2,12.2,12.2h8.1c6.7,0,11.7-5.5,11.7-12.2V107.7\r\n\tC448,101,443.1,96,436.3,96z"},"children":[]}]};exports.skipForward=skipForward;var socialAndroidOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,208v60.5V357h-22.5H313v15.5V424c0,4.4-3,7.9-7.3,8l0,0l-0.1,0c-0.1,0-0.2,0-0.3,0c-1.6,0-3.1-0.6-4.3-1.6l-0.1-0.1\r\n\t\t\tl-0.4-0.1c-2-1.6-3.4-4-3.4-6.2v-51.5V357h-15.5h-49H216v15.5V424c0,4.4-3.6,8-8,8s-8-3.6-8-8v-51.5V357h-15.5H160v-88.6V208H352\r\n\t\t\t M368,192H144v76.4V358c0,6.9,5.5,15,12.4,15H184v51c0,13.3,10.7,24,24,24s24-10.7,24-24v-51h49v51c0,7.5,3.9,14.2,9.3,18.6\r\n\t\t\tc3.9,3.4,9.3,5.4,15,5.4c0.1,0,0.3,0,0.4,0c0.1,0-0.3,0-0.2,0c13.3,0,23.6-10.7,23.6-24v-51h28.6c7,0,10.4-8.1,10.4-14.9v-89.6\r\n\t\t\tV192L368,192z"},"children":[{"name":"path","attribs":{"d":"M352,208v60.5V357h-22.5H313v15.5V424c0,4.4-3,7.9-7.3,8l0,0l-0.1,0c-0.1,0-0.2,0-0.3,0c-1.6,0-3.1-0.6-4.3-1.6l-0.1-0.1\r\n\t\t\tl-0.4-0.1c-2-1.6-3.4-4-3.4-6.2v-51.5V357h-15.5h-49H216v15.5V424c0,4.4-3.6,8-8,8s-8-3.6-8-8v-51.5V357h-15.5H160v-88.6V208H352\r\n\t\t\t M368,192H144v76.4V358c0,6.9,5.5,15,12.4,15H184v51c0,13.3,10.7,24,24,24s24-10.7,24-24v-51h49v51c0,7.5,3.9,14.2,9.3,18.6\r\n\t\t\tc3.9,3.4,9.3,5.4,15,5.4c0.1,0,0.3,0,0.4,0c0.1,0-0.3,0-0.2,0c13.3,0,23.6-10.7,23.6-24v-51h28.6c7,0,10.4-8.1,10.4-14.9v-89.6\r\n\t\t\tV192L368,192z"},"children":[]}]},{"name":"path","attribs":{"d":"M408,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C400,195.6,403.6,192,408,192 M408,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176L408,176z"},"children":[{"name":"path","attribs":{"d":"M408,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C400,195.6,403.6,192,408,192 M408,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176L408,176z"},"children":[]}]},{"name":"path","attribs":{"d":"M104,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C96,195.6,99.6,192,104,192 M104,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176L104,176z"},"children":[{"name":"path","attribs":{"d":"M104,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C96,195.6,99.6,192,104,192 M104,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176L104,176z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255,94.3l0.9,0h0h0c14.2,0,27.3,1.9,38.8,5.6l10,4.4c28.7,12.6,39.9,37.4,44.4,55.7H162.8c4.4-18.6,15.6-43.6,44.1-56\r\n\t\t\tl10.3-4.5C228.5,96.1,241.2,94.3,255,94.3 M185.4,64c-0.5,0-1.2,0.2-1.8,0.8c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,22.1\r\n\t\t\tc-48.2,20.9-55.4,71.7-56.4,86.7h223.6c-1.1-15-8.2-65.1-56.6-86.4l18.5-22.2c0.4-0.5-0.2-1.7-1.3-2.6c-0.7-0.5-1.5-0.8-2-0.8\r\n\t\t\tc-0.3,0-0.5,0.1-0.7,0.3l-19.2,22.7c-13.6-5.4-30.2-8.8-50.6-8.8c-0.3,0-0.6,0-1,0c-20,0-36.4,3.3-49.8,8.5l-19-22.5\r\n\t\t\tC186.1,64.1,185.8,64,185.4,64L185.4,64z"},"children":[{"name":"path","attribs":{"d":"M255,94.3l0.9,0h0h0c14.2,0,27.3,1.9,38.8,5.6l10,4.4c28.7,12.6,39.9,37.4,44.4,55.7H162.8c4.4-18.6,15.6-43.6,44.1-56\r\n\t\t\tl10.3-4.5C228.5,96.1,241.2,94.3,255,94.3 M185.4,64c-0.5,0-1.2,0.2-1.8,0.8c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,22.1\r\n\t\t\tc-48.2,20.9-55.4,71.7-56.4,86.7h223.6c-1.1-15-8.2-65.1-56.6-86.4l18.5-22.2c0.4-0.5-0.2-1.7-1.3-2.6c-0.7-0.5-1.5-0.8-2-0.8\r\n\t\t\tc-0.3,0-0.5,0.1-0.7,0.3l-19.2,22.7c-13.6-5.4-30.2-8.8-50.6-8.8c-0.3,0-0.6,0-1,0c-20,0-36.4,3.3-49.8,8.5l-19-22.5\r\n\t\t\tC186.1,64.1,185.8,64,185.4,64L185.4,64z"},"children":[]}]}]}]}]},{"name":"path","attribs":{"d":"M206.6,138.9c-7.4,0-13.5-6-13.5-13.3c0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.1,132.9,214.1,138.9,206.6,138.9z\r\n\t"},"children":[]},{"name":"path","attribs":{"d":"M305,138.9c-7.4,0-13.5-6-13.5-13.3c0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.5,132.9,312.4,138.9,305,138.9z"},"children":[]}]};exports.socialAndroidOutline=socialAndroidOutline;var socialAndroid={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,268.4V358c0,6.9,4.5,14,11.4,14H184v52c0,13.3,10.7,24,24,24s24-10.7,24-24v-52h49v52c0,7.5,3.4,14.2,8.8,18.6\r\n\t\t\tc3.9,3.4,9.1,5.4,14.7,5.4c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c13.3,0,24-10.7,24-24v-52h27.6c7,0,11.4-7.1,11.4-13.9v-89.6V192\r\n\t\t\tH144V268.4z"},"children":[{"name":"path","attribs":{"d":"M144,268.4V358c0,6.9,4.5,14,11.4,14H184v52c0,13.3,10.7,24,24,24s24-10.7,24-24v-52h49v52c0,7.5,3.4,14.2,8.8,18.6\r\n\t\t\tc3.9,3.4,9.1,5.4,14.7,5.4c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c13.3,0,24-10.7,24-24v-52h27.6c7,0,11.4-7.1,11.4-13.9v-89.6V192\r\n\t\t\tH144V268.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M408,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176z"},"children":[{"name":"path","attribs":{"d":"M408,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176z"},"children":[]}]},{"name":"path","attribs":{"d":"M104,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176z"},"children":[{"name":"path","attribs":{"d":"M104,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M311.2,89.1l18.5-21.9c0.4-0.5-0.2-1.6-1.3-2.5c-1.1-0.8-2.4-1-2.7-0.4l-19.2,22.8c-13.6-5.4-30.2-8.8-50.6-8.8\r\n\t\t\tc-20.5-0.1-37.2,3.2-50.8,8.5l-19-22.4c-0.4-0.5-1.6-0.4-2.7,0.4c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,21.6\r\n\t\t\tc-48.2,20.9-55.4,72.2-56.4,87.2h223.6C366.7,161,359.6,110.4,311.2,89.1z M206.8,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.3,132.9,214.3,138.9,206.8,138.9z M305.2,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.7,132.9,312.6,138.9,305.2,138.9z"},"children":[{"name":"path","attribs":{"d":"M311.2,89.1l18.5-21.9c0.4-0.5-0.2-1.6-1.3-2.5c-1.1-0.8-2.4-1-2.7-0.4l-19.2,22.8c-13.6-5.4-30.2-8.8-50.6-8.8\r\n\t\t\tc-20.5-0.1-37.2,3.2-50.8,8.5l-19-22.4c-0.4-0.5-1.6-0.4-2.7,0.4c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,21.6\r\n\t\t\tc-48.2,20.9-55.4,72.2-56.4,87.2h223.6C366.7,161,359.6,110.4,311.2,89.1z M206.8,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.3,132.9,214.3,138.9,206.8,138.9z M305.2,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.7,132.9,312.6,138.9,305.2,138.9z"},"children":[]}]}]}]}]}]};exports.socialAndroid=socialAndroid;var socialAngularOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255.982,64l187.967,69.105l-39.17,230.389l-148.881,79.949l-148.812-80.051L68.031,133.11L255.982,64 M255.981,32L32,112\r\n\t\tl46.12,272L256,480l177.75-96L480,112L255.981,32L255.981,32z"},"children":[{"name":"path","attribs":{"d":"M255.982,64l187.967,69.105l-39.17,230.389l-148.881,79.949l-148.812-80.051L68.031,133.11L255.982,64 M255.981,32L32,112\r\n\t\tl46.12,272L256,480l177.75-96L480,112L255.981,32L255.981,32z"},"children":[]}]},{"name":"path","attribs":{"d":"M344,352h40L256,72L128,352h40l26.584-56h122.827L344,352z M213.573,256l42.419-89.356L298.419,256H213.573z"},"children":[{"name":"path","attribs":{"d":"M344,352h40L256,72L128,352h40l26.584-56h122.827L344,352z M213.573,256l42.419-89.356L298.419,256H213.573z"},"children":[]}]}]}]};exports.socialAngularOutline=socialAngularOutline;var socialAngular={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"213.573,256 298.419,256 255.992,166.644 \t"},"children":[{"name":"polygon","attribs":{"points":"213.573,256 298.419,256 255.992,166.644 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M255.981,32L32,112l46.12,272L256,480l177.75-96L480,112L255.981,32z M344,352l-26.589-56H194.584L168,352h-40L256,72\r\n\t\tl128,280H344z"},"children":[{"name":"path","attribs":{"d":"M255.981,32L32,112l46.12,272L256,480l177.75-96L480,112L255.981,32z M344,352l-26.589-56H194.584L168,352h-40L256,72\r\n\t\tl128,280H344z"},"children":[]}]}]}]};exports.socialAngular=socialAngular;var socialAppleOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M333.6,169.9c16.3,0,33.2,7.4,47.4,20.4c-9.9,8.5-17.9,18.7-23.7,30.2c-8,16-11.6,34.3-10.2,52.7\r\n\t\tc1.3,18.7,7.6,36.6,18,51.8c8,11.6,18.2,21.2,30,28.3c-5,10.7-9.2,18.4-16.8,30.5c-8.4,13.1-30.5,48-52,48.2l-0.4,0\r\n\t\tc-7.4,0-12.2-2.2-19.3-5.6c-10-4.7-22.3-10.6-43.4-10.6l-0.6,0c-21.1,0.1-33.8,5.9-43.9,10.6c-7.4,3.4-12.3,5.7-19.9,5.7l-0.4,0\r\n\t\tc-19.6-0.2-37.5-24.3-50.8-45.2c-19.3-30.4-31.7-65.6-34.9-99.1c-2.9-30.5,2-58.5,13.5-76.7c8-12.7,18.5-23.3,30.4-30.6\r\n\t\tc11.2-6.8,23-10.4,34.2-10.4c12.4,0,22.7,3.8,33.7,7.8c11.5,4.2,23.5,8.6,37.7,8.6c13.6,0,24.3-4.2,34.6-8.2\r\n\t\tC308,173.9,318.2,169.9,333.6,169.9 M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4\r\n\t\tc-28.5,0-58.9,17.9-78.2,48.4c-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0\r\n\t\tc23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0c32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6\r\n\t\tc11.3-17.7,15.5-26.6,24.2-46.6c-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"},"children":[{"name":"path","attribs":{"d":"M333.6,169.9c16.3,0,33.2,7.4,47.4,20.4c-9.9,8.5-17.9,18.7-23.7,30.2c-8,16-11.6,34.3-10.2,52.7\r\n\t\tc1.3,18.7,7.6,36.6,18,51.8c8,11.6,18.2,21.2,30,28.3c-5,10.7-9.2,18.4-16.8,30.5c-8.4,13.1-30.5,48-52,48.2l-0.4,0\r\n\t\tc-7.4,0-12.2-2.2-19.3-5.6c-10-4.7-22.3-10.6-43.4-10.6l-0.6,0c-21.1,0.1-33.8,5.9-43.9,10.6c-7.4,3.4-12.3,5.7-19.9,5.7l-0.4,0\r\n\t\tc-19.6-0.2-37.5-24.3-50.8-45.2c-19.3-30.4-31.7-65.6-34.9-99.1c-2.9-30.5,2-58.5,13.5-76.7c8-12.7,18.5-23.3,30.4-30.6\r\n\t\tc11.2-6.8,23-10.4,34.2-10.4c12.4,0,22.7,3.8,33.7,7.8c11.5,4.2,23.5,8.6,37.7,8.6c13.6,0,24.3-4.2,34.6-8.2\r\n\t\tC308,173.9,318.2,169.9,333.6,169.9 M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4\r\n\t\tc-28.5,0-58.9,17.9-78.2,48.4c-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0\r\n\t\tc23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0c32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6\r\n\t\tc11.3-17.7,15.5-26.6,24.2-46.6c-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M309.9,84.5c-2.7,14.9-10.5,26.8-14.6,32.2c-7.4,9.8-18,17.4-28.8,21.1c0.5-3,1.3-6.1,2.4-9.2c3.5-10.2,8.9-18.2,12.8-23.1\r\n\t\tC288.8,96.7,299.3,89.1,309.9,84.5 M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0\r\n\t\tc21.3,0,43.1-13.2,55.8-30.1C320.3,110.2,329.6,87.4,326.2,64L326.2,64z"},"children":[{"name":"path","attribs":{"d":"M309.9,84.5c-2.7,14.9-10.5,26.8-14.6,32.2c-7.4,9.8-18,17.4-28.8,21.1c0.5-3,1.3-6.1,2.4-9.2c3.5-10.2,8.9-18.2,12.8-23.1\r\n\t\tC288.8,96.7,299.3,89.1,309.9,84.5 M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0\r\n\t\tc21.3,0,43.1-13.2,55.8-30.1C320.3,110.2,329.6,87.4,326.2,64L326.2,64z"},"children":[]}]}]}]};exports.socialAppleOutline=socialAppleOutline;var socialApple={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4c-28.5,0-58.9,17.9-78.2,48.4\r\n\t\tc-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0c23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0\r\n\t\tc32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6c11.3-17.7,15.5-26.6,24.2-46.6\r\n\t\tc-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"},"children":[{"name":"path","attribs":{"d":"M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4c-28.5,0-58.9,17.9-78.2,48.4\r\n\t\tc-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0c23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0\r\n\t\tc32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6c11.3-17.7,15.5-26.6,24.2-46.6\r\n\t\tc-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0c21.3,0,43.1-13.2,55.8-30.1\r\n\t\tC320.3,110.2,329.6,87.4,326.2,64L326.2,64z"},"children":[{"name":"path","attribs":{"d":"M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0c21.3,0,43.1-13.2,55.8-30.1\r\n\t\tC320.3,110.2,329.6,87.4,326.2,64L326.2,64z"},"children":[]}]}]}]};exports.socialApple=socialApple;var socialBitcoinOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M279.7,48v47v15.1l15.1,0.8c16.9,0.9,28.8,3.3,40.7,7.9c13.8,5.3,24.2,12.6,31.1,21.7c5.7,7.6,9,19.4,10,36.2\r\n\t\tc0.6,8.8-1,17.1-2.6,22c-1.5,4.4-5.3,11.3-11.1,16.4c-5.4,4.8-8.6,6.7-12.3,8.4l-42.1,19.3l45,10.8c7.4,1.8,14,4.4,21.4,8.5\r\n\t\tc13.2,7.3,18,15.1,21.2,22.5c2.9,6.7,4.6,22.2,3.9,36.2c-0.7,13.4-4.4,31.5-12.6,42.3c-8.6,11.2-21.3,20.1-37.8,26.3\r\n\t\tc-13.6,5.1-31.1,8.1-54.5,9.3l-15.2,0.7v15.2V464h-8v-48v-16h-16H224h-16v16v48h-9v-48v-16h-16h-67.2l3-16h12.8\r\n\t\tc8.6,0,12.1-0.4,17.5-3c0.2-0.1,0.4-0.2,0.7-0.3c8.1-3.7,11-10.6,12.2-13.6c0.1-0.3,0.3-0.7,0.3-0.8c2.9-5.9,3-13.1,3-24.4v-178\r\n\t\tc0-11.7-0.1-13.6-3.1-19.5c-2.9-5.8-7.3-10.1-13.4-13c-5.9-2.8-13.2-3.4-24.5-3.4h-12.9v-16h71.6h16V96V48h9v48v16h16h31.8h16V96\r\n\t\tV48H279.7 M295.7,32h-39.9v64H224V32h-40.9v64H96v48h28.4c8.7,0,14.5,0.3,17.6,1.8c3.1,1.5,4.7,3.3,6,5.8c1.3,2.5,1.4,3.1,1.4,12.3\r\n\t\tv178c0,9-0.1,14.7-0.9,17.6c-1.2,2.7-2.2,5.2-5.3,6.6c-3.1,1.4-2.9,1.9-11.6,1.9h-27.4L96,416h87.1v64H224v-64h31.8v64h39.9v-65.4\r\n\t\tc26-1.3,44.4-4.7,59.3-10.3c19.3-7.2,34.3-17.7,44.9-31.5c10.5-13.8,15-34.9,15.9-51.2c0.8-14.5-0.7-33.2-5.2-43.4\r\n\t\tc-5-11.5-12.7-21.6-28.1-30.1c-8.1-4.5-16.1-7.8-25.4-10c5.4-2.5,9.9-5.4,16.3-11c7.5-6.6,13-15.7,15.6-23.3\r\n\t\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.7-20.7-38.1-27c-12.6-4.8-25.5-7.8-45.5-8.9V32L295.7,32z"},"children":[{"name":"path","attribs":{"d":"M279.7,48v47v15.1l15.1,0.8c16.9,0.9,28.8,3.3,40.7,7.9c13.8,5.3,24.2,12.6,31.1,21.7c5.7,7.6,9,19.4,10,36.2\r\n\t\tc0.6,8.8-1,17.1-2.6,22c-1.5,4.4-5.3,11.3-11.1,16.4c-5.4,4.8-8.6,6.7-12.3,8.4l-42.1,19.3l45,10.8c7.4,1.8,14,4.4,21.4,8.5\r\n\t\tc13.2,7.3,18,15.1,21.2,22.5c2.9,6.7,4.6,22.2,3.9,36.2c-0.7,13.4-4.4,31.5-12.6,42.3c-8.6,11.2-21.3,20.1-37.8,26.3\r\n\t\tc-13.6,5.1-31.1,8.1-54.5,9.3l-15.2,0.7v15.2V464h-8v-48v-16h-16H224h-16v16v48h-9v-48v-16h-16h-67.2l3-16h12.8\r\n\t\tc8.6,0,12.1-0.4,17.5-3c0.2-0.1,0.4-0.2,0.7-0.3c8.1-3.7,11-10.6,12.2-13.6c0.1-0.3,0.3-0.7,0.3-0.8c2.9-5.9,3-13.1,3-24.4v-178\r\n\t\tc0-11.7-0.1-13.6-3.1-19.5c-2.9-5.8-7.3-10.1-13.4-13c-5.9-2.8-13.2-3.4-24.5-3.4h-12.9v-16h71.6h16V96V48h9v48v16h16h31.8h16V96\r\n\t\tV48H279.7 M295.7,32h-39.9v64H224V32h-40.9v64H96v48h28.4c8.7,0,14.5,0.3,17.6,1.8c3.1,1.5,4.7,3.3,6,5.8c1.3,2.5,1.4,3.1,1.4,12.3\r\n\t\tv178c0,9-0.1,14.7-0.9,17.6c-1.2,2.7-2.2,5.2-5.3,6.6c-3.1,1.4-2.9,1.9-11.6,1.9h-27.4L96,416h87.1v64H224v-64h31.8v64h39.9v-65.4\r\n\t\tc26-1.3,44.4-4.7,59.3-10.3c19.3-7.2,34.3-17.7,44.9-31.5c10.5-13.8,15-34.9,15.9-51.2c0.8-14.5-0.7-33.2-5.2-43.4\r\n\t\tc-5-11.5-12.7-21.6-28.1-30.1c-8.1-4.5-16.1-7.8-25.4-10c5.4-2.5,9.9-5.4,16.3-11c7.5-6.6,13-15.7,15.6-23.3\r\n\t\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.7-20.7-38.1-27c-12.6-4.8-25.5-7.8-45.5-8.9V32L295.7,32z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,150 224,150 224,224 256,224 256,150 \t\t"},"children":[{"name":"polygon","attribs":{"points":"256,150 224,150 224,224 256,224 256,150 \t\t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,272h-32v90h32V272L256,272z"},"children":[{"name":"path","attribs":{"d":"M256,272h-32v90h32V272L256,272z"},"children":[]}]},{"name":"path","attribs":{"d":"M296,153.9v65.6c6-2.9,9.5-6.8,13.3-11.7c4.6-6,7-12.9,7-20.7c0-8.1-2.4-15-6.7-20.8C305.7,161.2,302,156.4,296,153.9\r\n\t\t\tL296,153.9z"},"children":[{"name":"path","attribs":{"d":"M296,153.9v65.6c6-2.9,9.5-6.8,13.3-11.7c4.6-6,7-12.9,7-20.7c0-8.1-2.4-15-6.7-20.8C305.7,161.2,302,156.4,296,153.9\r\n\t\t\tL296,153.9z"},"children":[]}]},{"name":"path","attribs":{"d":"M296,273.6v82.8c2-0.6,3.8-0.8,5.8-1.6c9.8-3.8,15.8-7.9,23.6-14.7c7.5-6.6,9.7-15.9,9.7-26.6c0-9.1-3.3-16.9-7.9-23.2\r\n\t\t\tc-4.6-6.3-11.7-9.9-19.4-13.2C304.1,275.4,301,274.4,296,273.6L296,273.6z"},"children":[{"name":"path","attribs":{"d":"M296,273.6v82.8c2-0.6,3.8-0.8,5.8-1.6c9.8-3.8,15.8-7.9,23.6-14.7c7.5-6.6,9.7-15.9,9.7-26.6c0-9.1-3.3-16.9-7.9-23.2\r\n\t\t\tc-4.6-6.3-11.7-9.9-19.4-13.2C304.1,275.4,301,274.4,296,273.6L296,273.6z"},"children":[]}]}]}]}]}]};exports.socialBitcoinOutline=socialBitcoinOutline;var socialBitcoin={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M410.5,279.2c-5-11.5-12.7-21.6-28.1-30.1c-8.2-4.5-16.1-7.8-25.4-10c5.4-2.5,10-5.4,16.3-11c7.5-6.6,13.1-15.7,15.6-23.3\r\n\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.2-20.7-37.6-27c-12.6-4.8-25.5-7.8-45.5-8.9V32h-40v64h-32V32\r\n\th-41v64H96v48h27.9c8.7,0,14.6,0.8,17.6,2.3c3.1,1.5,5.3,3.5,6.5,6c1.3,2.5,1.9,8.4,1.9,17.5V343c0,9-0.6,14.8-1.9,17.4\r\n\tc-1.3,2.6-2,4.9-5.1,6.3c-3.1,1.4-3.2,1.3-11.8,1.3h-26.4L96,416h87v64h41v-64h32v64h40v-64.4c26-1.3,44.5-4.7,59.4-10.3\r\n\tc19.3-7.2,34.1-17.7,44.7-31.5c10.6-13.8,14.9-34.9,15.8-51.2C416.6,308.1,415,289.4,410.5,279.2z M224,150h32v74h-32V150z M224,362\r\n\tv-90h32v90H224z M296,153.9c6,2.5,9.9,7.5,13.8,12.7c4.3,5.7,6.5,13.3,6.5,21.4c0,7.8-2.9,14.5-7.5,20.5c-3.8,4.9-6.8,8.3-12.8,11.1\r\n\tV153.9z M324.8,340.6c-7.8,6.9-12.3,10.1-22.1,13.8c-2,0.8-4.7,1.4-6.7,1.9v-82.8c5,0.8,7.6,1.8,11.3,3.4\r\n\tc7.8,3.3,15.2,6.9,19.8,13.2c4.6,6.3,8,15.6,8,24.7C335.1,325.7,332.3,334,324.8,340.6z"},"children":[]}]};exports.socialBitcoin=socialBitcoin;var socialBufferOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z M246.8,81.6\r\n\t\t\tc1.6-0.8,4.9-1.6,9.2-1.6c4.3,0,7.5,0.8,9.2,1.6l155.5,75.1l-155.5,75.1c-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6\r\n\t\t\tL91.3,156.7L246.8,81.6z"},"children":[{"name":"path","attribs":{"d":"M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z M246.8,81.6\r\n\t\t\tc1.6-0.8,4.9-1.6,9.2-1.6c4.3,0,7.5,0.8,9.2,1.6l155.5,75.1l-155.5,75.1c-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6\r\n\t\t\tL91.3,156.7L246.8,81.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z M265.2,331.1\r\n\t\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,256l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\t\tl122.7-59.3l18.9,9.1L265.2,331.1z"},"children":[{"name":"path","attribs":{"d":"M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z M265.2,331.1\r\n\t\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,256l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\t\tl122.7-59.3l18.9,9.1L265.2,331.1z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z M265.2,430.4\r\n\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,355.3l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\tl122.7-59.3l18.9,9.1L265.2,430.4z"},"children":[{"name":"path","attribs":{"d":"M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z M265.2,430.4\r\n\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,355.3l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\tl122.7-59.3l18.9,9.1L265.2,430.4z"},"children":[]}]}]}]};exports.socialBufferOutline=socialBufferOutline;var socialBuffer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z"},"children":[{"name":"path","attribs":{"d":"M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z"},"children":[{"name":"path","attribs":{"d":"M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z"},"children":[{"name":"path","attribs":{"d":"M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z"},"children":[]}]}]}]};exports.socialBuffer=socialBuffer;var socialChromeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"id":"Icon"},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z M256,76.799\r\n\t\t\tc66.084,0,124.315,35.843,154.558,89.602H256c-43.685,0-79.517,31.358-87.358,71.684l-53.758-92.969\r\n\t\t\tC147.358,103.685,198.884,76.799,256,76.799z M323.2,256c0,36.957-30.243,67.2-67.2,67.2s-67.2-30.243-67.2-67.2\r\n\t\t\ts30.243-67.2,67.2-67.2S323.2,219.043,323.2,256z M76.799,256c0-32.484,8.958-62.716,24.644-89.6L178.715,300.8l0,0\r\n\t\t\tc15.685,26.885,43.685,44.8,77.285,44.8c10.085,0,20.157-2.241,29.116-5.6l-53.758,92.958C144,421.758,76.799,346.715,76.799,256z\r\n\t\t\t M256,435.201L333.285,300.8l0,0c7.831-13.442,12.314-28,12.314-44.8c0-26.885-12.314-50.399-31.358-67.2h107.517\r\n\t\t\tc8.957,21.284,13.443,43.685,13.443,67.2C435.201,354.557,354.557,435.201,256,435.201z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z M256,76.799\r\n\t\t\tc66.084,0,124.315,35.843,154.558,89.602H256c-43.685,0-79.517,31.358-87.358,71.684l-53.758-92.969\r\n\t\t\tC147.358,103.685,198.884,76.799,256,76.799z M323.2,256c0,36.957-30.243,67.2-67.2,67.2s-67.2-30.243-67.2-67.2\r\n\t\t\ts30.243-67.2,67.2-67.2S323.2,219.043,323.2,256z M76.799,256c0-32.484,8.958-62.716,24.644-89.6L178.715,300.8l0,0\r\n\t\t\tc15.685,26.885,43.685,44.8,77.285,44.8c10.085,0,20.157-2.241,29.116-5.6l-53.758,92.958C144,421.758,76.799,346.715,76.799,256z\r\n\t\t\t M256,435.201L333.285,300.8l0,0c7.831-13.442,12.314-28,12.314-44.8c0-26.885-12.314-50.399-31.358-67.2h107.517\r\n\t\t\tc8.957,21.284,13.443,43.685,13.443,67.2C435.201,354.557,354.557,435.201,256,435.201z"},"children":[]}]}]}]}]}]};exports.socialChromeOutline=socialChromeOutline;var socialChrome={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M188.8,255.925c0,36.946,30.243,67.178,67.2,67.178s67.199-30.231,67.199-67.178c0-36.945-30.242-67.179-67.199-67.179\r\n\t\tS188.8,218.98,188.8,255.925z"},"children":[{"name":"path","attribs":{"d":"M188.8,255.925c0,36.946,30.243,67.178,67.2,67.178s67.199-30.231,67.199-67.178c0-36.945-30.242-67.179-67.199-67.179\r\n\t\tS188.8,218.98,188.8,255.925z"},"children":[]}]},{"name":"path","attribs":{"d":"M476.752,217.795c-0.009,0.005-0.016,0.038-0.024,0.042c-1.701-9.877-4.04-19.838-6.989-28.838h-0.107\r\n\t\tc2.983,9,5.352,19,7.072,29h-0.002c-1.719-10-4.088-20-7.07-29h-155.39c19.044,17,31.358,40.175,31.358,67.052\r\n\t\tc0,16.796-4.484,31.284-12.314,44.724L231.044,478.452c0,0-0.009,0.264-0.014,0.264l-0.01,0.284c0.005,0,0.009,0,0.015,0\r\n\t\tl-0.005-0.262c8.203,0.92,16.531,1.262,24.97,1.262c6.842,0,13.609-0.393,20.299-1.002c10.135-0.911,20.077-2.519,29.777-4.733\r\n\t\tC405.68,451.525,480,362.404,480,255.941C480,242.942,478.879,230.188,476.752,217.795z"},"children":[{"name":"path","attribs":{"d":"M476.752,217.795c-0.009,0.005-0.016,0.038-0.024,0.042c-1.701-9.877-4.04-19.838-6.989-28.838h-0.107\r\n\t\tc2.983,9,5.352,19,7.072,29h-0.002c-1.719-10-4.088-20-7.07-29h-155.39c19.044,17,31.358,40.175,31.358,67.052\r\n\t\tc0,16.796-4.484,31.284-12.314,44.724L231.044,478.452c0,0-0.009,0.264-0.014,0.264l-0.01,0.284c0.005,0,0.009,0,0.015,0\r\n\t\tl-0.005-0.262c8.203,0.92,16.531,1.262,24.97,1.262c6.842,0,13.609-0.393,20.299-1.002c10.135-0.911,20.077-2.519,29.777-4.733\r\n\t\tC405.68,451.525,480,362.404,480,255.941C480,242.942,478.879,230.188,476.752,217.795z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,345.496c-33.601,0-61.601-17.91-77.285-44.785L76.006,123.047l-0.137-0.236\r\n\t\tc-10.293,13.896-19.015,29.022-25.903,45.123C38.407,194.945,32,224.686,32,255.925c0,62.695,25.784,119.36,67.316,160.009\r\n\t\tc29.342,28.719,66.545,49.433,108.088,58.619l0.029-0.051l77.683-134.604C276.157,343.256,266.085,345.496,256,345.496z"},"children":[{"name":"path","attribs":{"d":"M256,345.496c-33.601,0-61.601-17.91-77.285-44.785L76.006,123.047l-0.137-0.236\r\n\t\tc-10.293,13.896-19.015,29.022-25.903,45.123C38.407,194.945,32,224.686,32,255.925c0,62.695,25.784,119.36,67.316,160.009\r\n\t\tc29.342,28.719,66.545,49.433,108.088,58.619l0.029-0.051l77.683-134.604C276.157,343.256,266.085,345.496,256,345.496z"},"children":[]}]},{"name":"path","attribs":{"d":"M91.292,104.575l77.35,133.25C176.483,197.513,212.315,166,256,166h205.172c-6.921-15-15.594-30.324-25.779-43.938\r\n\t\tc0.039,0.021,0.078,0.053,0.117,0.074C445.644,135.712,454.278,151,461.172,166h0.172c-6.884-15-15.514-30.38-25.668-43.99\r\n\t\tc-0.115-0.06-0.229-0.168-0.342-0.257C394.475,67.267,329.359,32,256,32c-26.372,0-51.673,4.569-75.172,12.936\r\n\t\tc-34.615,12.327-65.303,32.917-89.687,59.406l0.142,0.243C91.286,104.581,91.289,104.578,91.292,104.575z"},"children":[{"name":"path","attribs":{"d":"M91.292,104.575l77.35,133.25C176.483,197.513,212.315,166,256,166h205.172c-6.921-15-15.594-30.324-25.779-43.938\r\n\t\tc0.039,0.021,0.078,0.053,0.117,0.074C445.644,135.712,454.278,151,461.172,166h0.172c-6.884-15-15.514-30.38-25.668-43.99\r\n\t\tc-0.115-0.06-0.229-0.168-0.342-0.257C394.475,67.267,329.359,32,256,32c-26.372,0-51.673,4.569-75.172,12.936\r\n\t\tc-34.615,12.327-65.303,32.917-89.687,59.406l0.142,0.243C91.286,104.581,91.289,104.578,91.292,104.575z"},"children":[]}]}]}]};exports.socialChrome=socialChrome;var socialCodepenOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M387.547,203.724c-41.135-27.326-82.225-54.721-123.261-82.195\r\n\t\tc-5.844-3.912-11.12-3.802-16.938,0.095c-40.785,27.313-81.818,54.546-122.724,81.676c-5.103,3.384-7.624,7.575-7.624,13.716\r\n\t\tv79.729c0,6.174,2.484,10.342,7.594,13.73c40.906,27.13,81.841,54.361,122.625,81.676c5.81,3.891,11.131,4.055,16.984,0.137\r\n\t\tc41.035-27.474,82.145-54.873,123.286-82.188c4.858-3.226,7.511-7.309,7.511-13.094v-80.623\r\n\t\tC395,210.667,392.225,206.83,387.547,203.724z M268,152.484l93.055,62.218l-39.751,26.467c-0.919,0.603-2.923,0.604-3.839,0\r\n\t\tc-15.944-10.501-31.816-21.113-47.627-31.815c-1.033-0.699-1.828-2.319-1.838-3.52V152.484z M244,152.765v51.706\r\n\t\tc-0.024,1.825-1.313,4.316-2.799,5.334c-15.258,10.451-30.655,20.701-46.109,30.86c-1.17,0.77-3.547,1.148-4.566,0.485\r\n\t\tc-13.116-8.531-26.087-17.284-39.787-26.443C181.967,193.889,244,152.765,244,152.765z M141,237.116l29.622,19.771L141,276.725\r\n\t\tV237.116z M244,361.317c0,0-62.034-41.412-93.196-62.187l38.871-26.154c2.072-1.442,3.473-1.344,5.502,0.029\r\n\t\tc15.32,10.36,30.74,20.572,46.062,30.93c1.208,0.815,2.749,2.371,2.761,3.596V361.317z M258.949,282.892\r\n\t\tc-1.824,1.108-4.512,1.046-6.26-0.111l-38.842-25.865c0,0,17.108-11.493,25.356-17.023c4.701-3.152,9.346-6.393,14.164-9.355\r\n\t\tc1.132-0.696,3.532-0.97,4.743-0.168c5.773,3.829,39.854,26.53,39.854,26.53L258.949,282.892z M268,361.102v-51.346\r\n\t\tc-0.026-2.871,0.449-4.602,2.861-6.189c15.198-10.006,30.332-20.11,45.386-30.332c2.335-1.586,3.92-1.623,6.265-0.019\r\n\t\tl38.527,25.882L268,361.102z M370,276.676l-29.59-19.743L370,237.06V276.676z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M387.547,203.724c-41.135-27.326-82.225-54.721-123.261-82.195\r\n\t\tc-5.844-3.912-11.12-3.802-16.938,0.095c-40.785,27.313-81.818,54.546-122.724,81.676c-5.103,3.384-7.624,7.575-7.624,13.716\r\n\t\tv79.729c0,6.174,2.484,10.342,7.594,13.73c40.906,27.13,81.841,54.361,122.625,81.676c5.81,3.891,11.131,4.055,16.984,0.137\r\n\t\tc41.035-27.474,82.145-54.873,123.286-82.188c4.858-3.226,7.511-7.309,7.511-13.094v-80.623\r\n\t\tC395,210.667,392.225,206.83,387.547,203.724z M268,152.484l93.055,62.218l-39.751,26.467c-0.919,0.603-2.923,0.604-3.839,0\r\n\t\tc-15.944-10.501-31.816-21.113-47.627-31.815c-1.033-0.699-1.828-2.319-1.838-3.52V152.484z M244,152.765v51.706\r\n\t\tc-0.024,1.825-1.313,4.316-2.799,5.334c-15.258,10.451-30.655,20.701-46.109,30.86c-1.17,0.77-3.547,1.148-4.566,0.485\r\n\t\tc-13.116-8.531-26.087-17.284-39.787-26.443C181.967,193.889,244,152.765,244,152.765z M141,237.116l29.622,19.771L141,276.725\r\n\t\tV237.116z M244,361.317c0,0-62.034-41.412-93.196-62.187l38.871-26.154c2.072-1.442,3.473-1.344,5.502,0.029\r\n\t\tc15.32,10.36,30.74,20.572,46.062,30.93c1.208,0.815,2.749,2.371,2.761,3.596V361.317z M258.949,282.892\r\n\t\tc-1.824,1.108-4.512,1.046-6.26-0.111l-38.842-25.865c0,0,17.108-11.493,25.356-17.023c4.701-3.152,9.346-6.393,14.164-9.355\r\n\t\tc1.132-0.696,3.532-0.97,4.743-0.168c5.773,3.829,39.854,26.53,39.854,26.53L258.949,282.892z M268,361.102v-51.346\r\n\t\tc-0.026-2.871,0.449-4.602,2.861-6.189c15.198-10.006,30.332-20.11,45.386-30.332c2.335-1.586,3.92-1.623,6.265-0.019\r\n\t\tl38.527,25.882L268,361.102z M370,276.676l-29.59-19.743L370,237.06V276.676z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,64c51.285,0,99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256s-19.972,99.5-56.235,135.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32\r\n\t\tL256,32z"},"children":[{"name":"path","attribs":{"d":"M256,64c51.285,0,99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256s-19.972,99.5-56.235,135.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32\r\n\t\tL256,32z"},"children":[]}]}]}]};exports.socialCodepenOutline=socialCodepenOutline;var socialCodepen={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M241.239,303.936c-15.322-10.357-30.742-20.569-46.062-30.93c-2.03-1.373-3.43-1.472-5.502-0.029l-38.871,26.154\r\n\t\tC181.966,319.905,244,361.317,244,361.317v-53.786C243.988,306.307,242.447,304.751,241.239,303.936z"},"children":[{"name":"path","attribs":{"d":"M241.239,303.936c-15.322-10.357-30.742-20.569-46.062-30.93c-2.03-1.373-3.43-1.472-5.502-0.029l-38.871,26.154\r\n\t\tC181.966,319.905,244,361.317,244,361.317v-53.786C243.988,306.307,242.447,304.751,241.239,303.936z"},"children":[]}]},{"name":"path","attribs":{"d":"M195.092,240.666c15.454-10.16,30.851-20.409,46.109-30.86c1.486-1.018,2.775-3.509,2.799-5.334v-51.706\r\n\t\tc0,0-62.033,41.124-93.262,61.942c13.7,9.159,26.671,17.913,39.787,26.443C191.545,241.813,193.921,241.435,195.092,240.666z"},"children":[{"name":"path","attribs":{"d":"M195.092,240.666c15.454-10.16,30.851-20.409,46.109-30.86c1.486-1.018,2.775-3.509,2.799-5.334v-51.706\r\n\t\tc0,0-62.033,41.124-93.262,61.942c13.7,9.159,26.671,17.913,39.787,26.443C191.545,241.813,193.921,241.435,195.092,240.666z"},"children":[]}]},{"name":"path","attribs":{"d":"M269.838,209.354c15.811,10.703,31.683,21.314,47.627,31.815c0.916,0.604,2.92,0.602,3.839,0l39.751-26.467L268,152.484\r\n\t\tv53.35C268.01,207.035,268.805,208.655,269.838,209.354z"},"children":[{"name":"path","attribs":{"d":"M269.838,209.354c15.811,10.703,31.683,21.314,47.627,31.815c0.916,0.604,2.92,0.602,3.839,0l39.751-26.467L268,152.484\r\n\t\tv53.35C268.01,207.035,268.805,208.655,269.838,209.354z"},"children":[]}]},{"name":"path","attribs":{"d":"M258.109,230.369c-1.21-0.802-3.611-0.528-4.743,0.168c-4.817,2.962-9.463,6.203-14.164,9.355\r\n\t\tc-8.248,5.53-25.356,17.023-25.356,17.023l38.842,25.865c1.748,1.157,4.436,1.22,6.26,0.111l39.014-25.993\r\n\t\tC297.963,256.898,263.883,234.197,258.109,230.369z"},"children":[{"name":"path","attribs":{"d":"M258.109,230.369c-1.21-0.802-3.611-0.528-4.743,0.168c-4.817,2.962-9.463,6.203-14.164,9.355\r\n\t\tc-8.248,5.53-25.356,17.023-25.356,17.023l38.842,25.865c1.748,1.157,4.436,1.22,6.26,0.111l39.014-25.993\r\n\t\tC297.963,256.898,263.883,234.197,258.109,230.369z"},"children":[]}]},{"name":"polygon","attribs":{"points":"141,237.116 141,276.725 170.622,256.887 \t"},"children":[{"name":"polygon","attribs":{"points":"141,237.116 141,276.725 170.622,256.887 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M395,297.006\r\n\t\tc0,5.785-2.652,9.868-7.511,13.094c-41.142,27.314-82.251,54.714-123.286,82.188c-5.854,3.918-11.174,3.754-16.984-0.137\r\n\t\tc-40.783-27.314-81.719-54.546-122.625-81.676c-5.11-3.389-7.594-7.557-7.594-13.73v-79.729c0-6.141,2.521-10.332,7.624-13.716\r\n\t\tc40.906-27.13,81.939-54.363,122.724-81.676c5.818-3.896,11.094-4.007,16.938-0.095c41.036,27.474,82.126,54.869,123.261,82.195\r\n\t\tc4.678,3.106,7.453,6.943,7.453,12.66V297.006z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M395,297.006\r\n\t\tc0,5.785-2.652,9.868-7.511,13.094c-41.142,27.314-82.251,54.714-123.286,82.188c-5.854,3.918-11.174,3.754-16.984-0.137\r\n\t\tc-40.783-27.314-81.719-54.546-122.625-81.676c-5.11-3.389-7.594-7.557-7.594-13.73v-79.729c0-6.141,2.521-10.332,7.624-13.716\r\n\t\tc40.906-27.13,81.939-54.363,122.724-81.676c5.818-3.896,11.094-4.007,16.938-0.095c41.036,27.474,82.126,54.869,123.261,82.195\r\n\t\tc4.678,3.106,7.453,6.943,7.453,12.66V297.006z"},"children":[]}]},{"name":"path","attribs":{"d":"M316.247,273.234c-15.054,10.222-30.188,20.326-45.386,30.332c-2.412,1.588-2.888,3.318-2.861,6.189v51.346l93.039-62.004\r\n\t\tl-38.527-25.882C320.167,271.611,318.582,271.648,316.247,273.234z"},"children":[{"name":"path","attribs":{"d":"M316.247,273.234c-15.054,10.222-30.188,20.326-45.386,30.332c-2.412,1.588-2.888,3.318-2.861,6.189v51.346l93.039-62.004\r\n\t\tl-38.527-25.882C320.167,271.611,318.582,271.648,316.247,273.234z"},"children":[]}]},{"name":"polygon","attribs":{"points":"370,276.676 370,237.06 340.41,256.933 \t"},"children":[{"name":"polygon","attribs":{"points":"370,276.676 370,237.06 340.41,256.933 \t"},"children":[]}]}]}]};exports.socialCodepen=socialCodepen;var socialCss3Outline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M354.676,366.898l-98.608,28.125l-98.458-28.248L150.864,289h48.253l3.433,39.563l53.586,15.163l0.132,0.273h0.034\r\n\t\tl53.467-14.852L315.381,265H203l-4-50h120.646l4.396-51H140l-4-49h240.58L354.676,366.898z"},"children":[{"name":"path","attribs":{"d":"M354.676,366.898l-98.608,28.125l-98.458-28.248L150.864,289h48.253l3.433,39.563l53.586,15.163l0.132,0.273h0.034\r\n\t\tl53.467-14.852L315.381,265H203l-4-50h120.646l4.396-51H140l-4-49h240.58L354.676,366.898z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"},"children":[{"name":"path","attribs":{"d":"M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"},"children":[]}]}]}]};exports.socialCss3Outline=socialCss3Outline;var socialCss3={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"transform":"translate(336 96)"},"children":[{"name":"g","attribs":{"id":"icon-css3"},"children":[{"name":"g","attribs":{"id":"icon-css3"},"children":[{"name":"path","attribs":{"d":"M-79.718,243.488L-79.718,243.488z"},"children":[{"name":"path","attribs":{"d":"M-79.718,243.488L-79.718,243.488z"},"children":[]}]},{"name":"path","attribs":{"d":"M-272-64l34.946,403.219L-80.233,384l157.259-44.85L112-64H-272z M18.676,270.898l-98.607,28.125l-98.458-28.248\r\n\t\t\tL-185.136,193h48.253l3.433,39.562l53.586,15.163l0.132,0.273h0.034l53.467-14.852L-20.619,169H-133l-4-50h120.646l4.396-51H-196\r\n\t\t\tl-4-49H40.58L18.676,270.898z"},"children":[{"name":"path","attribs":{"d":"M-272-64l34.946,403.219L-80.233,384l157.259-44.85L112-64H-272z M18.676,270.898l-98.607,28.125l-98.458-28.248\r\n\t\t\tL-185.136,193h48.253l3.433,39.562l53.586,15.163l0.132,0.273h0.034l53.467-14.852L-20.619,169H-133l-4-50h120.646l4.396-51H-196\r\n\t\t\tl-4-49H40.58L18.676,270.898z"},"children":[]}]}]}]}]}]};exports.socialCss3=socialCss3;var socialDesignernewsOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"290.9,145.9 226.5,96 291.1,198.8 \t"},"children":[{"name":"polygon","attribs":{"points":"290.9,145.9 226.5,96 291.1,198.8 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M32.5,260"},"children":[{"name":"path","attribs":{"d":"M32.5,260"},"children":[]}]},{"name":"path","attribs":{"d":"M329,96v80.3V260h-35.9l-63.2-98l1.7,98H191V152.9l-37.1-29.1c1,1.2,2.1,2.4,3,3.6c10,13.8,15,30.7,15,50.5\r\n\t\t\tc0,48.9-30.5,82-76.8,82H32l200.1,156H480V214.7L329,96z M464,400H237.7L78.6,276h16.5c13.5,0,26.2-2.7,37.7-7.4\r\n\t\t\tc11.5-4.7,21.4-11.8,29.8-20.7c4.8-5.1,9.4-11,12.4-17.1v28.7V276h16.2h40.4H248l-0.3-16.5l-0.7-41.9l32.6,50.7l4.7,7.6h8.8h36.8\r\n\t\t\tH345v-16.5v-83.1v-47l0.2,0.3L464,222.4V400z"},"children":[{"name":"path","attribs":{"d":"M329,96v80.3V260h-35.9l-63.2-98l1.7,98H191V152.9l-37.1-29.1c1,1.2,2.1,2.4,3,3.6c10,13.8,15,30.7,15,50.5\r\n\t\t\tc0,48.9-30.5,82-76.8,82H32l200.1,156H480V214.7L329,96z M464,400H237.7L78.6,276h16.5c13.5,0,26.2-2.7,37.7-7.4\r\n\t\t\tc11.5-4.7,21.4-11.8,29.8-20.7c4.8-5.1,9.4-11,12.4-17.1v28.7V276h16.2h40.4H248l-0.3-16.5l-0.7-41.9l32.6,50.7l4.7,7.6h8.8h36.8\r\n\t\t\tH345v-16.5v-83.1v-47l0.2,0.3L464,222.4V400z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M90.6,150.4c11,0,23.7,3.2,23.7,28.8c0,6.9-1,16.3-6,21.8c-3.6,3.9-9.6,6-17.7,6H87v-57h3 M90.7,134H71v89h19.5\r\n\t\tc26,0,39.9-15.6,39.9-43.9C130.4,150.3,116.1,134,90.7,134L90.7,134z"},"children":[{"name":"path","attribs":{"d":"M90.6,150.4c11,0,23.7,3.2,23.7,28.8c0,6.9-1,16.3-6,21.8c-3.6,3.9-9.6,6-17.7,6H87v-57h3 M90.7,134H71v89h19.5\r\n\t\tc26,0,39.9-15.6,39.9-43.9C130.4,150.3,116.1,134,90.7,134L90.7,134z"},"children":[]}]}]}]};exports.socialDesignernewsOutline=socialDesignernewsOutline;var socialDesignernews={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"290.4,145 227,96 290.6,198.2 \t\t"},"children":[{"name":"polygon","attribs":{"points":"290.4,145 227,96 290.6,198.2 \t\t"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M329,96v79.6V259h-36.4l-63.2-98.6l1.7,98.6H191V152l-37.3-29.3c1,1.2,2,2.4,2.9,3.7c10,13.9,15,30.5,15,50.5\r\n\t\t\tc0,49.2-30.6,82.1-76.9,82.1H32v0.4L231.6,416H480V214.1L329,96z"},"children":[{"name":"path","attribs":{"d":"M329,96v79.6V259h-36.4l-63.2-98.6l1.7,98.6H191V152l-37.3-29.3c1,1.2,2,2.4,2.9,3.7c10,13.9,15,30.5,15,50.5\r\n\t\t\tc0,49.2-30.6,82.1-76.9,82.1H32v0.4L231.6,416H480V214.1L329,96z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M129.9,178.1c0-29-14.2-45.1-39.7-45.1H71v89h19C116,222,129.9,206.6,129.9,178.1z"},"children":[{"name":"path","attribs":{"d":"M129.9,178.1c0-29-14.2-45.1-39.7-45.1H71v89h19C116,222,129.9,206.6,129.9,178.1z"},"children":[]}]}]}]}]}]};exports.socialDesignernews=socialDesignernews;var socialDribbbleOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M377.9,152.5\r\n\tc21.6,25.4,35.3,57.6,37.7,92.9c-34.6-1.8-76-1.8-109.2,1.3c-4.2-10.6-8.5-21-13.2-31C331.5,199.1,361,177.3,377.9,152.5z M256,96\r\n\tc38.8,0,74.4,13.8,102.1,36.8c-17.4,22-44.7,41.1-78.7,55.6c-18.6-34.4-40-64-62.8-87.3C229.3,97.9,242.4,96,256,96z M183.6,113.5\r\n\tc23.1,23,44.8,52.3,63.8,86.6c-36.1,11-77.5,17.3-121.7,17.3c-8.4,0-16.6-0.3-24.7-0.8C112.5,171.5,143,134.1,183.6,113.5z\r\n\t M96.3,248.4c9.1,0.4,18.3,0.6,27.6,0.5c50.4-0.6,97.3-8.5,137.6-21.4c3.8,7.9,7.4,16,10.8,24.3c-5.5,1.3-10.4,2.7-14.3,4.3\r\n\tc-55.1,23.1-98.5,60.4-122,105.5c-24.8-28.2-40-65.1-40-105.6C96,253.4,96.1,250.9,96.3,248.4z M256,416c-37,0-71-12.6-98.1-33.7\r\n\tc21.3-42.2,59.3-77.1,107.2-98.8c4.5-2.1,10.5-3.8,17.4-5.3c5.7,15.8,10.8,32.2,15.3,49.2c6.9,26.5,11.8,52.7,14.8,78.1\r\n\tC295,412.2,276,416,256,416z M342.5,390.5c-3-25.7-7.9-52.1-14.9-78.9c-3.4-13-7.3-25.6-11.5-37.9c31.4-2.6,69-2.2,98.9,0\r\n\tC409.6,322.8,382,365,342.5,390.5z"},"children":[]}]};exports.socialDribbbleOutline=socialDribbbleOutline;var socialDribbble={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M256,415.5\r\n\t\t\tc-88.1,0-159.5-71.4-159.5-159.5c0-88.1,71.4-159.5,159.5-159.5c88.1,0,159.5,71.4,159.5,159.5C415.5,344.1,344.1,415.5,256,415.5\r\n\t\t\tz"},"children":[{"name":"path","attribs":{"d":"M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M256,415.5\r\n\t\t\tc-88.1,0-159.5-71.4-159.5-159.5c0-88.1,71.4-159.5,159.5-159.5c88.1,0,159.5,71.4,159.5,159.5C415.5,344.1,344.1,415.5,256,415.5\r\n\t\t\tz"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M306.3,246.7c23.4-2.2,50.9-2.9,77.2-2.4c-2.3-25.4-12-48.7-27-67.6c-16.5,14.9-38,28.1-63.3,39\r\n\t\t\tC297.8,225.7,302.1,236.1,306.3,246.7z"},"children":[{"name":"path","attribs":{"d":"M306.3,246.7c23.4-2.2,50.9-2.9,77.2-2.4c-2.3-25.4-12-48.7-27-67.6c-16.5,14.9-38,28.1-63.3,39\r\n\t\t\tC297.8,225.7,302.1,236.1,306.3,246.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M335.4,155.6C313.6,138.3,286,128,256,128c-5.1,0-10.2,0.3-15.2,0.9c13.8,17.7,26.7,37.6,38.6,59.5\r\n\t\t\tC301.1,179.2,320,168.1,335.4,155.6z"},"children":[{"name":"path","attribs":{"d":"M335.4,155.6C313.6,138.3,286,128,256,128c-5.1,0-10.2,0.3-15.2,0.9c13.8,17.7,26.7,37.6,38.6,59.5\r\n\t\t\tC301.1,179.2,320,168.1,335.4,155.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M205.9,138.2c-34.1,14.5-60.7,43.4-72,79.1c41.1-0.7,79.6-7,113.4-17.3C234.7,177,220.7,156.3,205.9,138.2z"},"children":[{"name":"path","attribs":{"d":"M205.9,138.2c-34.1,14.5-60.7,43.4-72,79.1c41.1-0.7,79.6-7,113.4-17.3C234.7,177,220.7,156.3,205.9,138.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M383,272.2c-22.3-0.6-46-0.2-66.9,1.5c4.1,12.3,8.1,24.9,11.5,37.9c3.8,14.6,7,29.1,9.6,43.4\r\n\t\t\tC361.8,334.7,378.8,305.4,383,272.2z"},"children":[{"name":"path","attribs":{"d":"M383,272.2c-22.3-0.6-46-0.2-66.9,1.5c4.1,12.3,8.1,24.9,11.5,37.9c3.8,14.6,7,29.1,9.6,43.4\r\n\t\t\tC361.8,334.7,378.8,305.4,383,272.2z"},"children":[]}]},{"name":"path","attribs":{"d":"M258,256.1c3.9-1.6,8.8-3,14.3-4.3c-3.4-8.3-7.1-16.4-10.8-24.3c-39.1,12.6-84.6,20.3-133.3,21.3\r\n\t\t\tc-0.1,2.4-0.2,4.8-0.2,7.3c0,29.1,9.7,55.9,26,77.4C178.9,301,214.9,274.2,258,256.1z"},"children":[{"name":"path","attribs":{"d":"M258,256.1c3.9-1.6,8.8-3,14.3-4.3c-3.4-8.3-7.1-16.4-10.8-24.3c-39.1,12.6-84.6,20.3-133.3,21.3\r\n\t\t\tc-0.1,2.4-0.2,4.8-0.2,7.3c0,29.1,9.7,55.9,26,77.4C178.9,301,214.9,274.2,258,256.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M282.6,278.2c-6.9,1.5-12.9,3.2-17.4,5.3c-37.1,16.8-68.3,41.6-90.4,71.5c22.1,18.2,50.4,29,81.2,29\r\n\t\t\tc18.5,0,36-3.9,51.8-10.9c-2.7-15.1-6-30.3-10-45.7C293.4,310.5,288.2,294,282.6,278.2z"},"children":[{"name":"path","attribs":{"d":"M282.6,278.2c-6.9,1.5-12.9,3.2-17.4,5.3c-37.1,16.8-68.3,41.6-90.4,71.5c22.1,18.2,50.4,29,81.2,29\r\n\t\t\tc18.5,0,36-3.9,51.8-10.9c-2.7-15.1-6-30.3-10-45.7C293.4,310.5,288.2,294,282.6,278.2z"},"children":[]}]}]}]}]}]};exports.socialDribbble=socialDribbble;var socialDropboxOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M177,77.1L64,151l78.3,63L256,143.2L177,77.1z M91.4,153.3l84.5-56.8l52.9,46L143.4,195L91.4,153.3z"},"children":[{"name":"path","attribs":{"d":"M177,77.1L64,151l78.3,63L256,143.2L177,77.1z M91.4,153.3l84.5-56.8l52.9,46L143.4,195L91.4,153.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M369.8,213L256,284.1l79,66.1l19-12.6v20.2L256,417l-98-58.5V338l19,12.2l79-66.1L142.2,213L64,276.3l78,51.5v39.4\r\n\t\tl114,67.8l114-68.5v-39.2l78-51.2L369.8,213z M143.4,230.9l85.4,55.4l-52.9,44.1l-84.5-55.8L143.4,230.9z M283.2,286.3l85.4-55.4\r\n\t\tl52.1,43.6l-84.5,55.8L283.2,286.3z"},"children":[{"name":"path","attribs":{"d":"M369.8,213L256,284.1l79,66.1l19-12.6v20.2L256,417l-98-58.5V338l19,12.2l79-66.1L142.2,213L64,276.3l78,51.5v39.4\r\n\t\tl114,67.8l114-68.5v-39.2l78-51.2L369.8,213z M143.4,230.9l85.4,55.4l-52.9,44.1l-84.5-55.8L143.4,230.9z M283.2,286.3l85.4-55.4\r\n\t\tl52.1,43.6l-84.5,55.8L283.2,286.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M448,151L335,77.1l-79,66.1l113.8,70.8L448,151z M283.2,142.6l52.9-46l84.5,56.8L368.6,195L283.2,142.6z"},"children":[{"name":"path","attribs":{"d":"M448,151L335,77.1l-79,66.1l113.8,70.8L448,151z M283.2,142.6l52.9-46l84.5,56.8L368.6,195L283.2,142.6z"},"children":[]}]}]}]};exports.socialDropboxOutline=socialDropboxOutline;var socialDropbox={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"177,77 64,150.9 142.1,213.6 256,143.1 \t"},"children":[{"name":"polygon","attribs":{"points":"177,77 64,150.9 142.1,213.6 256,143.1 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"64,276.3 177,350.2 256,284.1 142.1,213.6 \t"},"children":[{"name":"polygon","attribs":{"points":"64,276.3 177,350.2 256,284.1 142.1,213.6 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"256,284.1 335,350.2 448,276.3 369.9,213.6 \t"},"children":[{"name":"polygon","attribs":{"points":"256,284.1 335,350.2 448,276.3 369.9,213.6 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"448,150.9 335,77 256,143.1 369.9,213.6 \t"},"children":[{"name":"polygon","attribs":{"points":"448,150.9 335,77 256,143.1 369.9,213.6 \t"},"children":[]}]},{"name":"polygon","attribs":{"points":"256.2,298.3 176.4,364.3 142,342.1 142,367 256,435 370,367 370,342.1 335.8,364.3 \t"},"children":[{"name":"polygon","attribs":{"points":"256.2,298.3 176.4,364.3 142,342.1 142,367 256,435 370,367 370,342.1 335.8,364.3 \t"},"children":[]}]}]}]};exports.socialDropbox=socialDropbox;var socialEuroOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M310.143,64c31.337,0,59.096,2.607,88.137,8.364l-5.06,34.148c-29.405-4.319-55.659-6.429-79.853-6.429\r\n\t\tc-35.025,0-58.535,6.153-74.129,19.365C220.142,135.627,218,158.428,218,174.17v2.33V193h15.867h120.184l-2.383,16H233.867H218\r\n\t\tv15.5v48V289h15.867h105.885l-2.384,16H233.867H218v15.5v12.33c0,19.546,2.338,44.061,21.084,60.274\r\n\t\tc15.042,13.01,37.921,18.812,74.258,18.812c24.534,0,50.197-2.055,79.771-6.42l5.014,34.138\r\n\t\tc-29.031,5.759-56.741,8.366-87.977,8.366c-52.591,0-91.43-9.08-115.565-26.987C172.615,404.711,162,380.361,162,346.57V320.5V305\r\n\t\th-16.133H112v-16h33.867H162v-16.5v-48V209h-16.133H112v-16h33.867H162v-16.5v-11.07c0-33.791,10.613-58.142,32.582-74.442\r\n\t\tC218.715,73.08,257.552,64,310.143,64 M310.209,48C195.479,48,146,89.225,146,165.43V177H96v48h50v48H96v48h50v25.57\r\n\t\tC146,422.774,195.481,464,310.211,464c35.25,0,67.777-3.123,105.789-11.866l-9.411-64.96c-37.323,6.244-66.942,8.742-93.206,8.742\r\n\t\tc-64.275,0-79.383-18.739-79.383-63.086V321h117.162l7.148-48H234v-48h131.461l7.149-48H234v-2.83\r\n\t\tc0-35.92,15.159-58.086,79.434-58.086c26.264,0,55.959,2.498,93.281,8.742L416,60C377.988,51.257,345.458,48,310.209,48L310.209,48\r\n\t\tz"},"children":[{"name":"path","attribs":{"d":"M310.143,64c31.337,0,59.096,2.607,88.137,8.364l-5.06,34.148c-29.405-4.319-55.659-6.429-79.853-6.429\r\n\t\tc-35.025,0-58.535,6.153-74.129,19.365C220.142,135.627,218,158.428,218,174.17v2.33V193h15.867h120.184l-2.383,16H233.867H218\r\n\t\tv15.5v48V289h15.867h105.885l-2.384,16H233.867H218v15.5v12.33c0,19.546,2.338,44.061,21.084,60.274\r\n\t\tc15.042,13.01,37.921,18.812,74.258,18.812c24.534,0,50.197-2.055,79.771-6.42l5.014,34.138\r\n\t\tc-29.031,5.759-56.741,8.366-87.977,8.366c-52.591,0-91.43-9.08-115.565-26.987C172.615,404.711,162,380.361,162,346.57V320.5V305\r\n\t\th-16.133H112v-16h33.867H162v-16.5v-48V209h-16.133H112v-16h33.867H162v-16.5v-11.07c0-33.791,10.613-58.142,32.582-74.442\r\n\t\tC218.715,73.08,257.552,64,310.143,64 M310.209,48C195.479,48,146,89.225,146,165.43V177H96v48h50v48H96v48h50v25.57\r\n\t\tC146,422.774,195.481,464,310.211,464c35.25,0,67.777-3.123,105.789-11.866l-9.411-64.96c-37.323,6.244-66.942,8.742-93.206,8.742\r\n\t\tc-64.275,0-79.383-18.739-79.383-63.086V321h117.162l7.148-48H234v-48h131.461l7.149-48H234v-2.83\r\n\t\tc0-35.92,15.159-58.086,79.434-58.086c26.264,0,55.959,2.498,93.281,8.742L416,60C377.988,51.257,345.458,48,310.209,48L310.209,48\r\n\t\tz"},"children":[]}]}]}]};exports.socialEuroOutline=socialEuroOutline;var socialEuro={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M234,272v-48h131.094l7.149-48H234v-1.83c0-35.92,14.975-58.086,79.25-58.086c26.264,0,55.867,2.498,93.189,8.742\r\n\t\tL416,59.866C377.988,51.123,345.306,48,310.057,48C195.326,48,146,89.225,146,165.43V176H96v48h50v48H96v48h50v26.57\r\n\t\tC146,422.774,195.297,464,310.027,464c35.25,0,67.848-3.123,105.859-11.866l-9.619-64.96c-37.322,6.244-66.781,8.742-93.045,8.742\r\n\t\tc-64.276,0-79.223-18.739-79.223-63.086V320h116.795l7.148-48H234z"},"children":[{"name":"path","attribs":{"d":"M234,272v-48h131.094l7.149-48H234v-1.83c0-35.92,14.975-58.086,79.25-58.086c26.264,0,55.867,2.498,93.189,8.742\r\n\t\tL416,59.866C377.988,51.123,345.306,48,310.057,48C195.326,48,146,89.225,146,165.43V176H96v48h50v48H96v48h50v26.57\r\n\t\tC146,422.774,195.297,464,310.027,464c35.25,0,67.848-3.123,105.859-11.866l-9.619-64.96c-37.322,6.244-66.781,8.742-93.045,8.742\r\n\t\tc-64.276,0-79.223-18.739-79.223-63.086V320h116.795l7.148-48H234z"},"children":[]}]}]}]};exports.socialEuro=socialEuro;var socialFacebookOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M288,192v-38.1c0-17.2,3.8-25.9,30.5-25.9H352V64h-55.9c-68.5,0-91.1,31.4-91.1,85.3V192h-45v64h45v192h83V256h56.4l7.6-64\r\n\tH288z M330.2,240h-41.1H272v15.5V432h-51V255.5V240h-14.9H176v-32h30.1H221v-16.5v-42.2c0-24.5,5.4-41.2,15.5-51.8\r\n\tC247.7,85.5,267.6,80,296.1,80H336v32h-17.5c-12,0-27.5,1.1-37.1,11.7c-8.1,9-9.4,20.1-9.4,30.1v37.6V208h17.1H334L330.2,240z"},"children":[]}]};exports.socialFacebookOutline=socialFacebookOutline;var socialFacebook={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M288,192v-38.1c0-17.2,3.8-25.9,30.5-25.9H352V64h-55.9c-68.5,0-91.1,31.4-91.1,85.3V192h-45v64h45v192h83V256h56.4l7.6-64\r\n\tH288z"},"children":[]}]};exports.socialFacebook=socialFacebook;var socialFoursquareOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M398.484,164.452l-27.399,137.185C372.848,294.486,386.545,224.793,398.484,164.452z"},"children":[{"name":"path","attribs":{"d":"M398.484,164.452l-27.399,137.185C372.848,294.486,386.545,224.793,398.484,164.452z"},"children":[]}]},{"name":"path","attribs":{"d":"M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-131.09,114.4-133.027\r\n\t\tc2.921-2.931,2.921-3.125,5.844-3.125c5.843,0,49.192,0,72.766,0c30.575,0,35.49-21.676,38.684-34.559l27.399-137.087\r\n\t\tc6.074-30.702,11.693-58.938,15.053-75.325C421.143,51.944,411.744,32,376.764,32z M376.426,96c0,0-31.575,156.209-36.034,176.834\r\n\t\tC335,297.771,332.75,304,307,304c-17.605,0-62.375,0-62.375,0c-2.747,0-3.868-0.147-6.049,2.041\r\n\t\tc-1.443,1.447-78.168,89.562-78.168,89.562c-19.034,23.396-26.909,31.795-29.033,31.795s-3.375,0-3.375-38.408V91.708\r\n\t\tC128,67.034,128.3,64,157.198,64C181.748,64,352,64,352,64C382,64,382.834,64.833,376.426,96z"},"children":[{"name":"path","attribs":{"d":"M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-131.09,114.4-133.027\r\n\t\tc2.921-2.931,2.921-3.125,5.844-3.125c5.843,0,49.192,0,72.766,0c30.575,0,35.49-21.676,38.684-34.559l27.399-137.087\r\n\t\tc6.074-30.702,11.693-58.938,15.053-75.325C421.143,51.944,411.744,32,376.764,32z M376.426,96c0,0-31.575,156.209-36.034,176.834\r\n\t\tC335,297.771,332.75,304,307,304c-17.605,0-62.375,0-62.375,0c-2.747,0-3.868-0.147-6.049,2.041\r\n\t\tc-1.443,1.447-78.168,89.562-78.168,89.562c-19.034,23.396-26.909,31.795-29.033,31.795s-3.375,0-3.375-38.408V91.708\r\n\t\tC128,67.034,128.3,64,157.198,64C181.748,64,352,64,352,64C382,64,382.834,64.833,376.426,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M398.484,164.452l15.053-75.374C410.178,105.466,404.559,133.75,398.484,164.452z"},"children":[{"name":"path","attribs":{"d":"M398.484,164.452l15.053-75.374C410.178,105.466,404.559,133.75,398.484,164.452z"},"children":[]}]},{"name":"path","attribs":{"d":"M328.573,96c-5.571,0-157.995,0-157.995,0C164.091,96,160,101.594,160,106.586v231.255c0,0.67,0.402,0.975,0.935,0.36\r\n\t\tc0,0,48.202-55.725,54.056-63.021c5.848-7.289,8.491-8.182,17.233-8.182c0,0,56.695,0,62.212,0c6.549,0,10.24-5.75,10.913-8.982\r\n\t\tc0.671-3.228,10.536-48.213,11.732-54.119c1.191-5.897-4.214-11.898-9.722-11.898c-5.5,0-64.805,0-64.805,0\r\n\t\tc-7.803,0-7.554-5.653-7.554-13.476v-5.512c0-7.815-0.282-13.012,7.516-13.012c0,0,70.403,0,75.313,0\r\n\t\tc4.911,0,10.208-4.442,11.102-8.662l8.468-44.042C338.739,100.823,333.828,96,328.573,96z"},"children":[{"name":"path","attribs":{"d":"M328.573,96c-5.571,0-157.995,0-157.995,0C164.091,96,160,101.594,160,106.586v231.255c0,0.67,0.402,0.975,0.935,0.36\r\n\t\tc0,0,48.202-55.725,54.056-63.021c5.848-7.289,8.491-8.182,17.233-8.182c0,0,56.695,0,62.212,0c6.549,0,10.24-5.75,10.913-8.982\r\n\t\tc0.671-3.228,10.536-48.213,11.732-54.119c1.191-5.897-4.214-11.898-9.722-11.898c-5.5,0-64.805,0-64.805,0\r\n\t\tc-7.803,0-7.554-5.653-7.554-13.476v-5.512c0-7.815-0.282-13.012,7.516-13.012c0,0,70.403,0,75.313,0\r\n\t\tc4.911,0,10.208-4.442,11.102-8.662l8.468-44.042C338.739,100.823,333.828,96,328.573,96z"},"children":[]}]}]}]};exports.socialFoursquareOutline=socialFoursquareOutline;var socialFoursquare={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-130.895,114.4-132.834\r\n\t\t\tc2.921-2.93,2.921-2.93,5.844-2.93c5.844,0,49.192,0,72.767,0c30.574,0,35.49-21.869,38.684-34.752\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559C421.143,51.993,411.745,32,376.764,32z M371.086,301.637\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559 M362.692,96.67l-9.999,51.734c-1.195,5.65-8.287,11.595-14.863,11.595\r\n\t\t\tc-6.575,0-95.917,0-95.917,0C231.473,160,224,166.138,224,176.602v13.448c0,10.473,7.519,17.894,17.965,17.894\r\n\t\t\tc0,0,74.482,0,81.848,0c7.374,0,14.61,8.109,13.016,16.005c-1.602,7.908-9.086,46.569-9.984,50.89\r\n\t\t\tc-0.902,4.328-5.845,11.725-14.611,11.725c-7.388,0-64.269,0-64.269,0c-11.705,0-15.244,1.533-23.074,11.293\r\n\t\t\tc-7.837,9.77-78.256,94.592-78.256,94.592c-0.713,0.822-1.41,0.584-1.41-0.312V95.896c0-6.684,5.793-14.523,14.479-14.523\r\n\t\t\tc0,0,183.713,0,191.173,0C357.912,81.372,364.488,88.004,362.692,96.67z"},"children":[{"name":"path","attribs":{"d":"M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-130.895,114.4-132.834\r\n\t\t\tc2.921-2.93,2.921-2.93,5.844-2.93c5.844,0,49.192,0,72.767,0c30.574,0,35.49-21.869,38.684-34.752\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559C421.143,51.993,411.745,32,376.764,32z M371.086,301.637\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559 M362.692,96.67l-9.999,51.734c-1.195,5.65-8.287,11.595-14.863,11.595\r\n\t\t\tc-6.575,0-95.917,0-95.917,0C231.473,160,224,166.138,224,176.602v13.448c0,10.473,7.519,17.894,17.965,17.894\r\n\t\t\tc0,0,74.482,0,81.848,0c7.374,0,14.61,8.109,13.016,16.005c-1.602,7.908-9.086,46.569-9.984,50.89\r\n\t\t\tc-0.902,4.328-5.845,11.725-14.611,11.725c-7.388,0-64.269,0-64.269,0c-11.705,0-15.244,1.533-23.074,11.293\r\n\t\t\tc-7.837,9.77-78.256,94.592-78.256,94.592c-0.713,0.822-1.41,0.584-1.41-0.312V95.896c0-6.684,5.793-14.523,14.479-14.523\r\n\t\t\tc0,0,183.713,0,191.173,0C357.912,81.372,364.488,88.004,362.692,96.67z"},"children":[]}]}]}]}]}]};exports.socialFoursquare=socialFoursquare;var socialFreebsdDevil={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M502.6,115c-22.5-43.7-58-51-58-51s15.5,32,16,51c0.4,16.1-5.5,28-27.2,33.5s-30.8-2-47.8-17.5\r\n\tS344,104.5,313,103c-40-2-77,9-77,9c-20-25,20-80,20-80c-74.5,29.5-93.7,83.3-96,113.7c-1.9,24.1,8.5,40.8,8.5,40.8s-0.5,27.8-5,42\r\n\tc-3.1,9.8-16.9,25-26,34.5c-12.2,12.7-12.5,38.5,0,57s44,27.5,67,39.5s31.5,21,31.5,21s1,8.3,0.5,15.3s-3.2,14-9,18.2\r\n\tc-5.5,3.9-15.5,0.5-20.5-2s-5-6.2-10.5-8s-7.3-4-6.5-11s2-9-3.5-18.5s-18.5-9.5-29.5-8s-17.3,6.8-17.3,6.8l-16.3-10\r\n\tc0,0,8.5-15.6,5.2-35.6c-7.3-43.8-50-62.8-50-62.8l10.4,44.4c0,0,1.1-2.6,6.4-6.4s8.1-3.6,8.1-3.6s6.6,7.6,9.1,25.3\r\n\tc2.5,18-6.7,27.2-6.7,27.2l-28.3-18l1-14.5L39.8,309L56,345.7l15-4l24,22.7c0,0-15.7,11.7-33,11.7c-11,0-22-6-22-6s-1.4-1-0.8-5.5\r\n\tc0.7-5,6.8-12.5,6.8-12.5H0c0,0,27.3,38.7,65,38.7c31,0,44.2-12.5,44.2-12.5L128,397c0,0,3,5.5,0,7s-7,3.5-9,15s18,29,18,29\r\n\tc21.8,17.8,7,32,7,32h272c-9-13-22.5-18-32-32c0,0-44.8-58.4-1.8-90.4c57.4-42.7,42.8-69.4,41.2-101.4c0,0,31.8-6.6,59.3-33.6\r\n\tS521.6,151.8,502.6,115z M195,203c-16.9,4.5-22.5,35.5-22.5,35.5c1.5-63,57.5-93,65-89s-6.5,39-21,64\r\n\tC216.5,213.5,208.5,199.4,195,203z M232,218c0,0,18-56,37.5-59.5s41.5,21,41.5,62s-26,65.4-42.8,69.2c-16.5,3.8-23,2-23,2\r\n\ts27.5-21.6,23.5-56.8C265.9,210.2,237.3,210.7,232,218z"},"children":[]}]};exports.socialFreebsdDevil=socialFreebsdDevil;var socialGithubOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,134.9,32,261.7c0,101.5,64.2,187.5,153.2,217.9c1.4,0.3,2.6,0.4,3.8,0.4c8.3,0,11.5-6.1,11.5-11.4\r\n\tc0-5.5-0.2-19.9-0.3-39.1c-8.4,1.9-15.9,2.7-22.6,2.7c-43.1,0-52.9-33.5-52.9-33.5c-10.2-26.5-24.9-33.6-24.9-33.6\r\n\tc-19.5-13.7-0.1-14.1,1.4-14.1c0.1,0,0.1,0,0.1,0c22.5,2,34.3,23.8,34.3,23.8c11.2,19.6,26.2,25.1,39.6,25.1c10.5,0,20-3.4,25.6-6\r\n\tc2-14.8,7.8-24.9,14.2-30.7c-49.7-5.8-102-25.5-102-113.5c0-25.1,8.7-45.6,23-61.6c-2.3-5.8-10-29.2,2.2-60.8c0,0,1.6-0.5,5-0.5\r\n\tc8.1,0,26.4,3.1,56.6,24.1c17.9-5.1,37-7.6,56.1-7.7c19,0.1,38.2,2.6,56.1,7.7c30.2-21,48.5-24.1,56.6-24.1c3.4,0,5,0.5,5,0.5\r\n\tc12.2,31.6,4.5,55,2.2,60.8c14.3,16.1,23,36.6,23,61.6c0,88.2-52.4,107.6-102.3,113.3c8,7.1,15.2,21.1,15.2,42.5\r\n\tc0,30.7-0.3,55.5-0.3,63c0,5.4,3.1,11.5,11.4,11.5c1.2,0,2.6-0.1,4-0.4C415.9,449.2,480,363.1,480,261.7C480,134.9,379.7,32,256,32z\r\n\t M177.6,448.1c2.2,0,4.4-0.1,6.7-0.2c0,2.8,0,5.5,0.1,7.9c0,2.4,0,4.6,0.1,6.5c-15.6-5.8-30.3-13.5-44.1-23\r\n\tC150.2,444.6,162.5,448.1,177.6,448.1z M189,375.2c-0.8,2.2-1.5,4.5-2.1,6.9c-3.4,1-7.5,1.8-11.7,1.8c-10.9,0-19-5.4-25.6-16.9\r\n\tc-2.4-4.6-6.8-10.7-12.9-16.3C153.5,364.8,173,371.6,189,375.2z M379,434.1c-15.8,11.9-33,21.3-51,28.2c0-1.9,0-4.1,0-6.5\r\n\tc0-11.9,0-29.8,0-50.4c0-12.4-2.1-22.5-5-30.5c37.2-8.3,92-33.7,92-125.4c0-24.6-7.1-46.5-21.2-65.1c3.1-12.9,5.5-35.6-5.1-63\r\n\tl-2.7-7.1l-7.2-2.4c-1.5-0.5-4.8-1.3-10-1.3c-11.5,0-30.9,4.1-59.5,22.8c-17-4.2-34.8-6.4-53.1-6.4H256h-0.1\r\n\tc-18.3,0-36.2,2.2-53.1,6.4c-28.6-18.7-48-22.8-59.5-22.8c-5.2,0-8.5,0.9-10,1.4l-7.2,2.4l-2.7,7.1c-10.6,27.5-8.2,50.2-5.1,63\r\n\tc-14.1,18.7-21.2,40.6-21.2,65.1c0,49.6,16,79.9,36.6,98.5c-8.1-6.6-18.6-12.1-31.2-13H102h-0.5h-0.3c-13.1,0-22.3,5.4-25.2,14.7\r\n\tc-4.7,14.8,9.8,25,14.6,28.4l0.5,0.6l1.5,0.6c1.6,1,10.1,7,16.9,24.5c2,6.2,6.3,14.5,13.6,22.2c-13.1-11.2-24.8-24-34.9-38.1\r\n\tC61.9,351.2,48,307.5,48,261.7c0-28.9,5.5-56.9,16.4-83.3c10.5-25.5,25.5-48.3,44.7-67.9c19.1-19.6,41.4-35,66.1-45.7\r\n\tC200.8,53.7,228,48,256,48s55.2,5.6,80.8,16.7c24.8,10.7,47,26.1,66.1,45.7c19.1,19.6,34.2,42.5,44.7,67.9\r\n\tc10.9,26.4,16.4,54.4,16.4,83.3c0,45.8-13.8,89.5-40.1,126.3C411.3,405.6,396.2,421.1,379,434.1z"},"children":[]}]};exports.socialGithubOutline=socialGithubOutline;var socialGithub={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,134.9,32,261.7c0,101.5,64.2,187.5,153.2,217.9c1.4,0.3,2.6,0.4,3.8,0.4c8.3,0,11.5-6.1,11.5-11.4\r\n\tc0-5.5-0.2-19.9-0.3-39.1c-8.4,1.9-15.9,2.7-22.6,2.7c-43.1,0-52.9-33.5-52.9-33.5c-10.2-26.5-24.9-33.6-24.9-33.6\r\n\tc-19.5-13.7-0.1-14.1,1.4-14.1c0.1,0,0.1,0,0.1,0c22.5,2,34.3,23.8,34.3,23.8c11.2,19.6,26.2,25.1,39.6,25.1c10.5,0,20-3.4,25.6-6\r\n\tc2-14.8,7.8-24.9,14.2-30.7c-49.7-5.8-102-25.5-102-113.5c0-25.1,8.7-45.6,23-61.6c-2.3-5.8-10-29.2,2.2-60.8c0,0,1.6-0.5,5-0.5\r\n\tc8.1,0,26.4,3.1,56.6,24.1c17.9-5.1,37-7.6,56.1-7.7c19,0.1,38.2,2.6,56.1,7.7c30.2-21,48.5-24.1,56.6-24.1c3.4,0,5,0.5,5,0.5\r\n\tc12.2,31.6,4.5,55,2.2,60.8c14.3,16.1,23,36.6,23,61.6c0,88.2-52.4,107.6-102.3,113.3c8,7.1,15.2,21.1,15.2,42.5\r\n\tc0,30.7-0.3,55.5-0.3,63c0,5.4,3.1,11.5,11.4,11.5c1.2,0,2.6-0.1,4-0.4C415.9,449.2,480,363.1,480,261.7C480,134.9,379.7,32,256,32z\r\n\t"},"children":[]}]};exports.socialGithub=socialGithub;var socialGoogleOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M319.408,82.141c11.779,9.576,36.43,29.718,36.43,68.043c0,37.295-21.547,54.934-43.094,71.545\r\n\t\tc-6.695,6.561-14.385,13.608-14.385,24.701c0,11.092,7.689,17.153,13.336,21.671l18.473,14.108\r\n\t\tc22.598,18.641,43.125,35.795,43.125,70.559c0,47.373-46.721,95.232-135.003,95.232c-74.428,0-110.343-34.766-110.343-72.061\r\n\t\tc0-18.139,9.245-43.827,39.525-61.48c31.798-19.142,74.952-21.657,98.023-23.172c-7.178-9.078-15.382-18.67-15.382-34.265\r\n\t\tc0-8.577,2.557-13.609,5.12-19.655c-5.648,0.5-11.283,1-16.42,1c-54.408,0-85.214-39.811-85.214-79.107\r\n\t\tc0-23.186,10.802-48.902,32.856-67.543C215.724,68.031,250.637,64,278.328,64h105.725l-32.846,18.141H319.408z M282.955,305.896\r\n\t\tc-4.137-0.501-6.684-0.501-11.793-0.501c-4.629,0-32.348,1.002-53.895,8.049c-11.3,4.046-44.146,16.125-44.146,51.918\r\n\t\tc0,35.78,35.393,61.467,90.339,61.467c49.283,0,75.432-23.156,75.432-54.404C338.893,346.707,321.971,333.113,282.955,305.896\r\n\t\t M297.834,210.148c11.824-11.592,12.844-27.73,12.844-36.793c0-36.281-22.086-92.73-64.671-92.73\r\n\t\tc-13.339,0-27.724,6.547-35.948,16.639c-8.722,10.593-11.284,24.188-11.284,37.281c0,33.764,20.005,89.727,64.163,89.727\r\n\t\tC275.764,224.271,289.594,218.212,297.834,210.148"},"children":[{"name":"path","attribs":{"d":"M319.408,82.141c11.779,9.576,36.43,29.718,36.43,68.043c0,37.295-21.547,54.934-43.094,71.545\r\n\t\tc-6.695,6.561-14.385,13.608-14.385,24.701c0,11.092,7.689,17.153,13.336,21.671l18.473,14.108\r\n\t\tc22.598,18.641,43.125,35.795,43.125,70.559c0,47.373-46.721,95.232-135.003,95.232c-74.428,0-110.343-34.766-110.343-72.061\r\n\t\tc0-18.139,9.245-43.827,39.525-61.48c31.798-19.142,74.952-21.657,98.023-23.172c-7.178-9.078-15.382-18.67-15.382-34.265\r\n\t\tc0-8.577,2.557-13.609,5.12-19.655c-5.648,0.5-11.283,1-16.42,1c-54.408,0-85.214-39.811-85.214-79.107\r\n\t\tc0-23.186,10.802-48.902,32.856-67.543C215.724,68.031,250.637,64,278.328,64h105.725l-32.846,18.141H319.408z M282.955,305.896\r\n\t\tc-4.137-0.501-6.684-0.501-11.793-0.501c-4.629,0-32.348,1.002-53.895,8.049c-11.3,4.046-44.146,16.125-44.146,51.918\r\n\t\tc0,35.78,35.393,61.467,90.339,61.467c49.283,0,75.432-23.156,75.432-54.404C338.893,346.707,321.971,333.113,282.955,305.896\r\n\t\t M297.834,210.148c11.824-11.592,12.844-27.73,12.844-36.793c0-36.281-22.086-92.73-64.671-92.73\r\n\t\tc-13.339,0-27.724,6.547-35.948,16.639c-8.722,10.593-11.284,24.188-11.284,37.281c0,33.764,20.005,89.727,64.163,89.727\r\n\t\tC275.764,224.271,289.594,218.212,297.834,210.148"},"children":[]}]}]}]};exports.socialGoogleOutline=socialGoogleOutline;var socialGoogle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M325.862,275.558l-18.187-13.653l-0.063-0.051c-5.827-4.579-9.952-8.313-9.952-14.685c0-6.979,5.049-11.824,10.896-17.436\r\n\t\tl0.466-0.449c20.025-15.171,44.726-34.286,44.726-74.556c0-26.934-11.916-44.729-23.28-57.729h12.969l60.322-33H270.308\r\n\t\tc-25.324,0-62.68,3.225-94.561,28.576l-0.128,0.25c-21.809,18.111-34.828,44.584-34.828,70.691\r\n\t\tc0,21.197,8.706,42.159,23.885,57.447c21.428,21.579,48.302,26.127,67.074,26.127c1.462,0,2.956-0.028,4.47-0.093\r\n\t\tc-0.759,2.969-1.25,6.321-1.25,10.321c0,10.926,3.628,19.301,8.083,26.195c-23.963,1.932-58.148,6.477-84.897,22.278\r\n\t\tc-39.335,22.562-42.396,55.875-42.396,65.551c0,38.207,35.707,76.762,115.479,76.762c91.611,0,139.543-49.792,139.543-98.979\r\n\t\tC370.781,311.966,347.945,293.457,325.862,275.558z M200.485,139.894c0-13.359,3.02-23.457,9.255-30.9\r\n\t\tc6.514-7.852,18.18-13.129,29.028-13.129c19.881,0,32.938,15.008,40.388,27.598c9.199,15.539,14.913,36.095,14.913,53.643\r\n\t\tc0,4.942,0,19.983-10.188,29.796c-6.951,6.686-18.707,11.353-28.59,11.353c-20.503,0-33.453-14.705-40.707-27.041\r\n\t\tC204.189,173.53,200.485,153.109,200.485,139.894z M321.6,367.974c0,27.444-25.212,44.493-65.799,44.493\r\n\t\tc-48.058,0-80.347-20.603-80.347-51.265c0-26.14,21.54-36.789,37.8-42.521c18.944-6.064,44.297-7.305,50.062-7.305\r\n\t\tc3.907,0,6.087,0,8.683,0.229C308.7,336.816,321.6,347.733,321.6,367.974z"},"children":[{"name":"path","attribs":{"d":"M325.862,275.558l-18.187-13.653l-0.063-0.051c-5.827-4.579-9.952-8.313-9.952-14.685c0-6.979,5.049-11.824,10.896-17.436\r\n\t\tl0.466-0.449c20.025-15.171,44.726-34.286,44.726-74.556c0-26.934-11.916-44.729-23.28-57.729h12.969l60.322-33H270.308\r\n\t\tc-25.324,0-62.68,3.225-94.561,28.576l-0.128,0.25c-21.809,18.111-34.828,44.584-34.828,70.691\r\n\t\tc0,21.197,8.706,42.159,23.885,57.447c21.428,21.579,48.302,26.127,67.074,26.127c1.462,0,2.956-0.028,4.47-0.093\r\n\t\tc-0.759,2.969-1.25,6.321-1.25,10.321c0,10.926,3.628,19.301,8.083,26.195c-23.963,1.932-58.148,6.477-84.897,22.278\r\n\t\tc-39.335,22.562-42.396,55.875-42.396,65.551c0,38.207,35.707,76.762,115.479,76.762c91.611,0,139.543-49.792,139.543-98.979\r\n\t\tC370.781,311.966,347.945,293.457,325.862,275.558z M200.485,139.894c0-13.359,3.02-23.457,9.255-30.9\r\n\t\tc6.514-7.852,18.18-13.129,29.028-13.129c19.881,0,32.938,15.008,40.388,27.598c9.199,15.539,14.913,36.095,14.913,53.643\r\n\t\tc0,4.942,0,19.983-10.188,29.796c-6.951,6.686-18.707,11.353-28.59,11.353c-20.503,0-33.453-14.705-40.707-27.041\r\n\t\tC204.189,173.53,200.485,153.109,200.485,139.894z M321.6,367.974c0,27.444-25.212,44.493-65.799,44.493\r\n\t\tc-48.058,0-80.347-20.603-80.347-51.265c0-26.14,21.54-36.789,37.8-42.521c18.944-6.064,44.297-7.305,50.062-7.305\r\n\t\tc3.907,0,6.087,0,8.683,0.229C308.7,336.816,321.6,347.733,321.6,367.974z"},"children":[]}]}]}]};exports.socialGoogle=socialGoogle;var socialGoogleplusOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M223.5,82.1c11.8,9.6,36.4,29.7,36.4,68c0,37.3-21.5,54.9-43.1,71.5c-6.7,6.6-14.4,13.6-14.4,24.7\r\n\t\tc0,11.1,7.7,17.2,13.3,21.7l18.5,14.1c22.6,18.6,43.1,35.8,43.1,70.6c0,47.4-46.7,95.2-135,95.2C67.9,448,32,413.2,32,375.9\r\n\t\tc0-18.1,9.2-43.8,39.5-61.5c31.8-19.1,75-21.7,98-23.2c-7.2-9.1-15.4-18.7-15.4-34.3c0-8.6,2.6-13.6,5.1-19.7\r\n\t\tc-5.6,0.5-11.3,1-16.4,1c-54.4,0-85.2-39.8-85.2-79.1c0-23.2,10.8-48.9,32.9-67.5C119.8,68,154.7,64,182.4,64h105.7l-32.8,18.1\r\n\t\tH223.5z M187,305.9c-4.1-0.5-6.7-0.5-11.8-0.5c-4.6,0-32.3,1-53.9,8c-11.3,4-44.1,16.1-44.1,51.9c0,35.8,35.4,61.5,90.3,61.5\r\n\t\tc49.3,0,75.4-23.2,75.4-54.4C242.9,346.7,226,333.1,187,305.9 M201.9,210.1c11.8-11.6,12.8-27.7,12.8-36.8\r\n\t\tc0-36.3-22.1-92.7-64.7-92.7c-13.3,0-27.7,6.5-35.9,16.6c-8.7,10.6-11.3,24.2-11.3,37.3c0,33.8,20,89.7,64.2,89.7\r\n\t\tC179.8,224.3,193.6,218.2,201.9,210.1"},"children":[{"name":"path","attribs":{"d":"M223.5,82.1c11.8,9.6,36.4,29.7,36.4,68c0,37.3-21.5,54.9-43.1,71.5c-6.7,6.6-14.4,13.6-14.4,24.7\r\n\t\tc0,11.1,7.7,17.2,13.3,21.7l18.5,14.1c22.6,18.6,43.1,35.8,43.1,70.6c0,47.4-46.7,95.2-135,95.2C67.9,448,32,413.2,32,375.9\r\n\t\tc0-18.1,9.2-43.8,39.5-61.5c31.8-19.1,75-21.7,98-23.2c-7.2-9.1-15.4-18.7-15.4-34.3c0-8.6,2.6-13.6,5.1-19.7\r\n\t\tc-5.6,0.5-11.3,1-16.4,1c-54.4,0-85.2-39.8-85.2-79.1c0-23.2,10.8-48.9,32.9-67.5C119.8,68,154.7,64,182.4,64h105.7l-32.8,18.1\r\n\t\tH223.5z M187,305.9c-4.1-0.5-6.7-0.5-11.8-0.5c-4.6,0-32.3,1-53.9,8c-11.3,4-44.1,16.1-44.1,51.9c0,35.8,35.4,61.5,90.3,61.5\r\n\t\tc49.3,0,75.4-23.2,75.4-54.4C242.9,346.7,226,333.1,187,305.9 M201.9,210.1c11.8-11.6,12.8-27.7,12.8-36.8\r\n\t\tc0-36.3-22.1-92.7-64.7-92.7c-13.3,0-27.7,6.5-35.9,16.6c-8.7,10.6-11.3,24.2-11.3,37.3c0,33.8,20,89.7,64.2,89.7\r\n\t\tC179.8,224.3,193.6,218.2,201.9,210.1"},"children":[]}]},{"name":"polygon","attribs":{"points":"480,142.3 401.7,142.3 401.7,64.1 384,64.1 384,142.3 304.3,142.3 304.3,160.1 384,160.1 384,241 401.7,241 \r\n\t\t401.7,160.1 480,160.1 \t"},"children":[{"name":"polygon","attribs":{"points":"480,142.3 401.7,142.3 401.7,64.1 384,64.1 384,142.3 304.3,142.3 304.3,160.1 384,160.1 384,241 401.7,241 \r\n\t\t401.7,160.1 480,160.1 \t"},"children":[]}]}]}]};exports.socialGoogleplusOutline=socialGoogleplusOutline;var socialGoogleplus={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M242.1,275.6l-18.2-13.7l-0.1-0.1c-5.8-4.6-10-8.3-10-14.7c0-7,5-11.8,10.9-17.4l0.5-0.4c20-15.2,44.7-34.3,44.7-74.6\r\n\t\tc0-26.9-11.9-44.7-23.3-57.7h13L320,64H186.5c-25.3,0-62.7,3.2-94.6,28.6l-0.1,0.3C70,110.9,57,137.4,57,163.5\r\n\t\tc0,21.2,8.7,42.2,23.9,57.4c21.4,21.6,48.3,26.1,67.1,26.1c1.5,0,3,0,4.5-0.1c-0.8,3-1.2,6.3-1.2,10.3c0,10.9,3.6,19.3,8.1,26.2\r\n\t\tc-24,1.9-58.1,6.5-84.9,22.3C35.1,328.4,32,361.7,32,371.3c0,38.2,35.7,76.8,115.5,76.8c91.6,0,139.5-49.8,139.5-99\r\n\t\tC287,312,264.2,293.5,242.1,275.6z M116.7,139.9c0-13.4,3-23.5,9.3-30.9c6.5-7.9,18.2-13.1,29-13.1c19.9,0,32.9,15,40.4,27.6\r\n\t\tc9.2,15.5,14.9,36.1,14.9,53.6c0,4.9,0,20-10.2,29.8c-7,6.7-18.7,11.4-28.6,11.4c-20.5,0-33.5-14.7-40.7-27\r\n\t\tC120.4,173.5,116.7,153.1,116.7,139.9z M237.8,368c0,27.4-25.2,44.5-65.8,44.5c-48.1,0-80.3-20.6-80.3-51.3\r\n\t\tc0-26.1,21.5-36.8,37.8-42.5c18.9-6.1,44.3-7.3,50.1-7.3c3.9,0,6.1,0,8.7,0.2C224.9,336.8,237.8,347.7,237.8,368z"},"children":[{"name":"path","attribs":{"d":"M242.1,275.6l-18.2-13.7l-0.1-0.1c-5.8-4.6-10-8.3-10-14.7c0-7,5-11.8,10.9-17.4l0.5-0.4c20-15.2,44.7-34.3,44.7-74.6\r\n\t\tc0-26.9-11.9-44.7-23.3-57.7h13L320,64H186.5c-25.3,0-62.7,3.2-94.6,28.6l-0.1,0.3C70,110.9,57,137.4,57,163.5\r\n\t\tc0,21.2,8.7,42.2,23.9,57.4c21.4,21.6,48.3,26.1,67.1,26.1c1.5,0,3,0,4.5-0.1c-0.8,3-1.2,6.3-1.2,10.3c0,10.9,3.6,19.3,8.1,26.2\r\n\t\tc-24,1.9-58.1,6.5-84.9,22.3C35.1,328.4,32,361.7,32,371.3c0,38.2,35.7,76.8,115.5,76.8c91.6,0,139.5-49.8,139.5-99\r\n\t\tC287,312,264.2,293.5,242.1,275.6z M116.7,139.9c0-13.4,3-23.5,9.3-30.9c6.5-7.9,18.2-13.1,29-13.1c19.9,0,32.9,15,40.4,27.6\r\n\t\tc9.2,15.5,14.9,36.1,14.9,53.6c0,4.9,0,20-10.2,29.8c-7,6.7-18.7,11.4-28.6,11.4c-20.5,0-33.5-14.7-40.7-27\r\n\t\tC120.4,173.5,116.7,153.1,116.7,139.9z M237.8,368c0,27.4-25.2,44.5-65.8,44.5c-48.1,0-80.3-20.6-80.3-51.3\r\n\t\tc0-26.1,21.5-36.8,37.8-42.5c18.9-6.1,44.3-7.3,50.1-7.3c3.9,0,6.1,0,8.7,0.2C224.9,336.8,237.8,347.7,237.8,368z"},"children":[]}]},{"name":"polygon","attribs":{"points":"402,142 402,64 368,64 368,142 288,142 288,176 368,176 368,257 402,257 402,176 480,176 480,142 \t"},"children":[{"name":"polygon","attribs":{"points":"402,142 402,64 368,64 368,142 288,142 288,176 368,176 368,257 402,257 402,176 480,176 480,142 \t"},"children":[]}]}]}]};exports.socialGoogleplus=socialGoogleplus;var socialHackernewsOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M416,96v320H96V96H416 M448,64H64v384h384V64L448,64z"},"children":[{"name":"path","attribs":{"d":"M416,96v320H96V96H416 M448,64H64v384h384V64L448,64z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M296.7,159H342l-63.9,120v72h-39.9v-72L172,159h47.1l39.7,83.6L296.7,159z"},"children":[{"name":"path","attribs":{"d":"M296.7,159H342l-63.9,120v72h-39.9v-72L172,159h47.1l39.7,83.6L296.7,159z"},"children":[]}]}]}]}]}]};exports.socialHackernewsOutline=socialHackernewsOutline;var socialHackernews={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M278,279v72h-40v-72l-66-120h47.1l39.7,83.6l38-83.6H342L278,279z"},"children":[{"name":"path","attribs":{"d":"M64,64v384h384V64H64z M278,279v72h-40v-72l-66-120h47.1l39.7,83.6l38-83.6H342L278,279z"},"children":[]}]}]}]};exports.socialHackernews=socialHackernews;var socialHtml5Outline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"},"children":[{"name":"path","attribs":{"d":"M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"},"children":[]}]},{"name":"polygon","attribs":{"points":"147.991,264 314.984,264 309.411,327.986 255.991,342.734 202.225,328.064 198.801,289 150.55,289 \r\n\t\t157.313,366.336 255.991,394.146 354.486,366.163 367.991,215 191.991,215 188,164 371.991,164 376.199,114.316 135.421,114.188 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"points":"147.991,264 314.984,264 309.411,327.986 255.991,342.734 202.225,328.064 198.801,289 150.55,289 \r\n\t\t157.313,366.336 255.991,394.146 354.486,366.163 367.991,215 191.991,215 188,164 371.991,164 376.199,114.316 135.421,114.188 \t\r\n\t\t"},"children":[]}]}]}]};exports.socialHtml5Outline=socialHtml5Outline;var socialHtml5={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M64,32l34.936,403.213L255.769,480l157.245-44.854L448,32H64z M371.997,164h-184l3.991,51h176.008l-13.505,151.386\r\n\tl-98.5,28.094l-98.682-27.976L150.545,289h48.254l3.423,39.287l53.769,14.781l53.422-14.915L314.987,264H147.986l-12.571-149.589\r\n\tl240.789,0.016L371.997,164z"},"children":[]}]};exports.socialHtml5=socialHtml5;var socialInstagramOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill":"#231F20","d":"M448.5,112c0-26.233-21.267-47.5-47.5-47.5H112c-26.233,0-47.5,21.267-47.5,47.5v289\r\n\tc0,26.233,21.267,47.5,47.5,47.5h289c26.233,0,47.5-21.267,47.5-47.5V112z M257,175.833c44.182,0,80,35.816,80,80s-35.818,80-80,80\r\n\ts-80-35.816-80-80S212.818,175.833,257,175.833z M416.5,160.5c0,8.836-7.163,16-16,16h-48c-8.837,0-16-7.164-16-16v-48\r\n\tc0-8.836,7.163-16,16-16h48c8.837,0,16,7.164,16,16V160.5z M401.5,416.5h-288c-8.822,0-17-8.178-17-17v-175h53.072\r\n\tc-3.008,10-4.572,20.647-4.572,31.583C145,286,156.65,314,177.805,335.154s49.279,32.741,79.195,32.741s58.041-11.681,79.195-32.835\r\n\tS369,286.016,369,256.099c0-10.936-1.563-21.599-4.572-31.599H416.5v175C416.5,408.322,410.322,416.5,401.5,416.5z"},"children":[]}]};exports.socialInstagramOutline=socialInstagramOutline;var socialInstagram={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"256","cy":"255.833","r":"80"},"children":[{"name":"circle","attribs":{"cx":"256","cy":"255.833","r":"80"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M177.805,176.887c21.154-21.154,49.279-32.929,79.195-32.929s58.041,11.837,79.195,32.991\r\n\t\tc13.422,13.422,23.011,29.551,28.232,47.551H448.5v-113c0-26.51-20.49-47-47-47h-288c-26.51,0-49,20.49-49,47v113h85.072\r\n\t\tC154.794,206.5,164.383,190.309,177.805,176.887z M416.5,147.7c0,7.069-5.73,12.8-12.8,12.8h-38.4c-7.069,0-12.8-5.73-12.8-12.8\r\n\t\tv-38.4c0-7.069,5.73-12.8,12.8-12.8h38.4c7.069,0,12.8,5.73,12.8,12.8V147.7z"},"children":[{"name":"path","attribs":{"d":"M177.805,176.887c21.154-21.154,49.279-32.929,79.195-32.929s58.041,11.837,79.195,32.991\r\n\t\tc13.422,13.422,23.011,29.551,28.232,47.551H448.5v-113c0-26.51-20.49-47-47-47h-288c-26.51,0-49,20.49-49,47v113h85.072\r\n\t\tC154.794,206.5,164.383,190.309,177.805,176.887z M416.5,147.7c0,7.069-5.73,12.8-12.8,12.8h-38.4c-7.069,0-12.8-5.73-12.8-12.8\r\n\t\tv-38.4c0-7.069,5.73-12.8,12.8-12.8h38.4c7.069,0,12.8,5.73,12.8,12.8V147.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M336.195,335.279c-21.154,21.154-49.279,32.679-79.195,32.679s-58.041-11.462-79.195-32.616\r\n\t\tc-21.115-21.115-32.759-49.842-32.803-78.842H64.5v143c0,26.51,22.49,49,49,49h288c26.51,0,47-22.49,47-49v-143h-79.502\r\n\t\tC368.955,285.5,357.311,314.164,336.195,335.279z"},"children":[{"name":"path","attribs":{"d":"M336.195,335.279c-21.154,21.154-49.279,32.679-79.195,32.679s-58.041-11.462-79.195-32.616\r\n\t\tc-21.115-21.115-32.759-49.842-32.803-78.842H64.5v143c0,26.51,22.49,49,49,49h288c26.51,0,47-22.49,47-49v-143h-79.502\r\n\t\tC368.955,285.5,357.311,314.164,336.195,335.279z"},"children":[]}]}]}]};exports.socialInstagram=socialInstagram;var socialJavascriptOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"transform":"translate(384 48)"},"children":[{"name":"g","attribs":{"id":"icon-javascript_1_1_"},"children":[{"name":"g","attribs":{"id":"icon-javascript_1_1_"},"children":[{"name":"path","attribs":{"d":"M-192,56.001v197.017c0,41.567-9.644,71.988-28.662,90.417c-17.06,16.53-42.061,24.565-76.431,24.565\r\n\t\t\tc-12.002,0-25.78-1.496-37.185-3.886l4.09-30.505c7.146,1.269,15.465,2.149,24.774,2.149c21.92,0,37.892-6.459,48.827-19.745\r\n\t\t\tC-245.27,302.268-240,282.085-240,252.499V56.001H-192 M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261\r\n\t\t\tc-14.705,0-27.948-2.521-38.25-6.063L-352,375.904c14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02\r\n\t\t\tV40.001L-176,40.001z"},"children":[{"name":"path","attribs":{"d":"M-192,56.001v197.017c0,41.567-9.644,71.988-28.662,90.417c-17.06,16.53-42.061,24.565-76.431,24.565\r\n\t\t\tc-12.002,0-25.78-1.496-37.185-3.886l4.09-30.505c7.146,1.269,15.465,2.149,24.774,2.149c21.92,0,37.892-6.459,48.827-19.745\r\n\t\t\tC-245.27,302.268-240,282.085-240,252.499V56.001H-192 M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261\r\n\t\t\tc-14.705,0-27.948-2.521-38.25-6.063L-352,375.904c14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02\r\n\t\t\tV40.001L-176,40.001z"},"children":[]}]},{"name":"path","attribs":{"d":"M-1.537,48c24.458,0,45.898,3.146,65.1,9.585l-9.581,32.062C40.37,84.142,21.446,78.71-2.504,78.71\r\n\t\t\tc-18.607,0-34.462,4.584-45.849,13.256c-11.732,8.936-18.194,21.583-18.194,35.613c0,34.974,33.062,48.149,71.347,63.405\r\n\t\t\tl0.107,0.043l0.108,0.041c26.977,10.299,45.938,22.261,57.969,36.572C74.593,241.451,80,257.543,80,278.284\r\n\t\t\tc0,25.177-9.333,46.71-26.99,62.274C32.66,358.497,1.593,367.98-36.833,367.98c-28.052,0-54.698-6.427-72.615-13.979l7.593-31.603\r\n\t\t\tc17.579,7.248,41.882,14.382,69.438,14.382c20.28,0,36.629-4.478,48.591-13.306c12.807-9.45,19.857-23.697,19.857-40.119\r\n\t\t\tc0-15.348-6.041-27.922-18.469-38.444c-10.157-8.603-24.801-16.048-47.467-24.136c-26.86-9.904-47.359-21.947-60.934-35.795\r\n\t\t\tC-105.078,170.455-112,153.829-112,134.154c0-24.149,9.831-45.101,28.43-60.591C-63.49,56.839-35.124,48-1.537,48 M-1.537,32\r\n\t\t\tC-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665c39.7,14.158,55.392,26.808,55.392,47.539\r\n\t\t\tc0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021L-128,362.727\r\n\t\t\tc18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"},"children":[{"name":"path","attribs":{"d":"M-1.537,48c24.458,0,45.898,3.146,65.1,9.585l-9.581,32.062C40.37,84.142,21.446,78.71-2.504,78.71\r\n\t\t\tc-18.607,0-34.462,4.584-45.849,13.256c-11.732,8.936-18.194,21.583-18.194,35.613c0,34.974,33.062,48.149,71.347,63.405\r\n\t\t\tl0.107,0.043l0.108,0.041c26.977,10.299,45.938,22.261,57.969,36.572C74.593,241.451,80,257.543,80,278.284\r\n\t\t\tc0,25.177-9.333,46.71-26.99,62.274C32.66,358.497,1.593,367.98-36.833,367.98c-28.052,0-54.698-6.427-72.615-13.979l7.593-31.603\r\n\t\t\tc17.579,7.248,41.882,14.382,69.438,14.382c20.28,0,36.629-4.478,48.591-13.306c12.807-9.45,19.857-23.697,19.857-40.119\r\n\t\t\tc0-15.348-6.041-27.922-18.469-38.444c-10.157-8.603-24.801-16.048-47.467-24.136c-26.86-9.904-47.359-21.947-60.934-35.795\r\n\t\t\tC-105.078,170.455-112,153.829-112,134.154c0-24.149,9.831-45.101,28.43-60.591C-63.49,56.839-35.124,48-1.537,48 M-1.537,32\r\n\t\t\tC-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665c39.7,14.158,55.392,26.808,55.392,47.539\r\n\t\t\tc0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021L-128,362.727\r\n\t\t\tc18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"},"children":[]}]}]}]}]}]};exports.socialJavascriptOutline=socialJavascriptOutline;var socialJavascript={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"transform":"translate(384 48)"},"children":[{"name":"g","attribs":{"id":"icon-javascript_1_1_"},"children":[{"name":"g","attribs":{"id":"icon-javascript_1_1_"},"children":[{"name":"path","attribs":{"d":"M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261c-14.705,0-27.948-2.521-38.25-6.063L-352,375.904\r\n\t\t\tc14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02V40.001L-176,40.001z"},"children":[{"name":"path","attribs":{"d":"M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261c-14.705,0-27.948-2.521-38.25-6.063L-352,375.904\r\n\t\t\tc14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02V40.001L-176,40.001z"},"children":[]}]},{"name":"path","attribs":{"d":"M-1.537,32C-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665\r\n\t\t\tc39.7,14.158,55.392,26.808,55.392,47.539c0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021\r\n\t\t\tL-128,362.727c18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"},"children":[{"name":"path","attribs":{"d":"M-1.537,32C-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665\r\n\t\t\tc39.7,14.158,55.392,26.808,55.392,47.539c0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021\r\n\t\t\tL-128,362.727c18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"},"children":[]}]}]}]}]}]};exports.socialJavascript=socialJavascript;var socialLinkedinOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M182.8,384V212.9h-54.9V384H182.8L182.8,384z M157.4,187c18.3,0,29.7-13.1,29.7-29.5\r\n\t\t\tc-0.3-16.7-11.4-29.5-29.4-29.5c-18,0-29.7,12.8-29.7,29.5c0,16.4,11.4,29.5,29,29.5H157.4L157.4,187z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M182.8,384V212.9h-54.9V384H182.8L182.8,384z M157.4,187c18.3,0,29.7-13.1,29.7-29.5\r\n\t\t\tc-0.3-16.7-11.4-29.5-29.4-29.5c-18,0-29.7,12.8-29.7,29.5c0,16.4,11.4,29.5,29,29.5H157.4L157.4,187z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M320.6,209c-29.1,0-41.6,16.4-49.6,27.8V213h-55v171h55v-97.4c0-5,0.4-10,1.9-13.5c4-10,13-20.3,28.2-20.3\r\n\t\t\tc19.9,0,27.9,15.3,27.9,37.7V384h55v-99.9C384,232.8,356.8,209,320.6,209z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M320.6,209c-29.1,0-41.6,16.4-49.6,27.8V213h-55v171h55v-97.4c0-5,0.4-10,1.9-13.5c4-10,13-20.3,28.2-20.3\r\n\t\t\tc19.9,0,27.9,15.3,27.9,37.7V384h55v-99.9C384,232.8,356.8,209,320.6,209z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M414,416c-1.1,0-313.1,0-314.9,0s-3.1-1.4-3.1-3.1S96,99.1,96,98s1-2,2-2s315,0,316,0s2,1,2,2\r\n\t\tc0,23.3,0,314.9,0,316C416,414.9,415.1,416,414,416z"},"children":[{"name":"path","attribs":{"d":"M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M414,416c-1.1,0-313.1,0-314.9,0s-3.1-1.4-3.1-3.1S96,99.1,96,98s1-2,2-2s315,0,316,0s2,1,2,2\r\n\t\tc0,23.3,0,314.9,0,316C416,414.9,415.1,416,414,416z"},"children":[]}]}]}]};exports.socialLinkedinOutline=socialLinkedinOutline;var socialLinkedin={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M183,384h-55V213h55V384z M157.4,187H157c-17.6,0-29-13.1-29-29.5c0-16.7,11.7-29.5,29.7-29.5\r\n\t\tc18,0,29,12.7,29.4,29.5C187.1,173.9,175.7,187,157.4,187z M384,384h-55v-93.5c0-22.4-8-37.7-27.9-37.7\r\n\t\tc-15.2,0-24.2,10.3-28.2,20.3c-1.5,3.6-1.9,8.5-1.9,13.5V384h-55V213h55v23.8c8-11.4,20.5-27.8,49.6-27.8\r\n\t\tc36.1,0,63.4,23.8,63.4,75.1V384z"},"children":[{"name":"path","attribs":{"d":"M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M183,384h-55V213h55V384z M157.4,187H157c-17.6,0-29-13.1-29-29.5c0-16.7,11.7-29.5,29.7-29.5\r\n\t\tc18,0,29,12.7,29.4,29.5C187.1,173.9,175.7,187,157.4,187z M384,384h-55v-93.5c0-22.4-8-37.7-27.9-37.7\r\n\t\tc-15.2,0-24.2,10.3-28.2,20.3c-1.5,3.6-1.9,8.5-1.9,13.5V384h-55V213h55v23.8c8-11.4,20.5-27.8,49.6-27.8\r\n\t\tc36.1,0,63.4,23.8,63.4,75.1V384z"},"children":[]}]}]}]};exports.socialLinkedin=socialLinkedin;var socialMarkdown={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"transform":"translate(96 48)"},"children":[{"name":"g","attribs":{"id":"icon-markdown"},"children":[{"name":"g","attribs":{"id":"icon-markdown"},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M351.659,48H-31.659C-49.496,48-64,62.484-64,80.308v255.349C-64,353.493-49.496,368-31.659,368h383.318\r\n\t\t\tC369.496,368,384,353.493,384,335.656V80.308C384,62.484,369.496,48,351.659,48z M188.023,304h-56.048v-96l-42.04,53.878\r\n\t\t\tL47.913,208v96H-8.131V112h56.044l42.022,67.98l42.04-67.98h56.048V304L188.023,304z M271.68,304l-69.635-96h42v-96h56.043v96\r\n\t\t\th42.027l-70.453,96H271.68z"},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M351.659,48H-31.659C-49.496,48-64,62.484-64,80.308v255.349C-64,353.493-49.496,368-31.659,368h383.318\r\n\t\t\tC369.496,368,384,353.493,384,335.656V80.308C384,62.484,369.496,48,351.659,48z M188.023,304h-56.048v-96l-42.04,53.878\r\n\t\t\tL47.913,208v96H-8.131V112h56.044l42.022,67.98l42.04-67.98h56.048V304L188.023,304z M271.68,304l-69.635-96h42v-96h56.043v96\r\n\t\t\th42.027l-70.453,96H271.68z"},"children":[]}]}]}]}]}]};exports.socialMarkdown=socialMarkdown;var socialNodejs={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{"transform":"translate(96 96)"},"children":[{"name":"g","attribs":{"id":"icon-nodejs_small"},"children":[{"name":"g","attribs":{"id":"icon-nodejs_small"},"children":[{"name":"path","attribs":{"d":"M159.917,384c-5.77,0-11.536-1.562-16.633-4.599l-52.985-32.44c-7.914-4.562-4.023-6.203-1.443-7.141\r\n\t\t\tc10.565-3.781,13.713-5.657,24.947-12.285c1.206-0.667,2.747-0.424,3.955,0.322l39.71,23.504c1.476,0.85,3.557,0.85,4.931,0\r\n\t\t\tl155.188-92.246c1.475-0.877,2.415-2.646,2.415-4.441V67.869c0-1.85-0.94-3.592-2.449-4.528L162.433-31.331\r\n\t\t\tc-1.478-0.894-3.421-0.894-4.898,0L2.516,63.374C0.972,64.277,0,66.072,0,67.869v186.805c0,1.813,0.972,3.513,2.481,4.389\r\n\t\t\tl39.929,23.972C66.02,295.239,80,282.865,80,268.424V84.725c0-2.652,2.047-4.727,4.596-4.727h22.809\r\n\t\t\tc2.515,0,4.597,2.072,4.597,4.727v183.698c0,32.563-19.353,51.248-49.199,51.248c-9.156,0-16.397,0-36.552-10.279l-41.584-24.781\r\n\t\t\tC-25.629,278.459-32,266.965-32,254.656V65.191c0-12.316,6.371-23.784,16.665-29.917L143.35-59.59\r\n\t\t\tc10.027-5.88,23.374-5.88,33.332,0l158.65,94.864C345.63,41.423,352,52.899,352,65.191v189.465c0,12.309-6.37,23.75-16.668,29.953\r\n\t\t\tl-158.65,94.774c-5.097,3.036-10.832,4.599-16.698,4.599L159.917,384z"},"children":[{"name":"path","attribs":{"d":"M159.917,384c-5.77,0-11.536-1.562-16.633-4.599l-52.985-32.44c-7.914-4.562-4.023-6.203-1.443-7.141\r\n\t\t\tc10.565-3.781,13.713-5.657,24.947-12.285c1.206-0.667,2.747-0.424,3.955,0.322l39.71,23.504c1.476,0.85,3.557,0.85,4.931,0\r\n\t\t\tl155.188-92.246c1.475-0.877,2.415-2.646,2.415-4.441V67.869c0-1.85-0.94-3.592-2.449-4.528L162.433-31.331\r\n\t\t\tc-1.478-0.894-3.421-0.894-4.898,0L2.516,63.374C0.972,64.277,0,66.072,0,67.869v186.805c0,1.813,0.972,3.513,2.481,4.389\r\n\t\t\tl39.929,23.972C66.02,295.239,80,282.865,80,268.424V84.725c0-2.652,2.047-4.727,4.596-4.727h22.809\r\n\t\t\tc2.515,0,4.597,2.072,4.597,4.727v183.698c0,32.563-19.353,51.248-49.199,51.248c-9.156,0-16.397,0-36.552-10.279l-41.584-24.781\r\n\t\t\tC-25.629,278.459-32,266.965-32,254.656V65.191c0-12.316,6.371-23.784,16.665-29.917L143.35-59.59\r\n\t\t\tc10.027-5.88,23.374-5.88,33.332,0l158.65,94.864C345.63,41.423,352,52.899,352,65.191v189.465c0,12.309-6.37,23.75-16.668,29.953\r\n\t\t\tl-158.65,94.774c-5.097,3.036-10.832,4.599-16.698,4.599L159.917,384z"},"children":[]}]},{"name":"path","attribs":{"d":"M208.943,255.998c-64.61,0-84.006-31.61-84.006-59.271c0-2.629,2.048-4.729,4.562-4.729h20.521\r\n\t\t\tc2.282,0,4.227,1.7,4.562,4.016c3.084,21.602,16.748,31.15,54.324,31.15c33.399,0,47.091-10.346,47.091-28.684\r\n\t\t\tc0-10.592-3.463-18.424-55.407-23.697c-43.427-4.441-70.288-14.373-70.288-50.295c0-33.135,26.996-52.49,72.234-52.49\r\n\t\t\tc46.128,0,76.462,14,79.173,50.829c0.102,1.337-0.368,2.629-1.241,3.644c-0.871,0.965-2.078,1.527-3.353,1.527h-20.591\r\n\t\t\tc-2.146,0-4.024-1.562-4.459-3.713c-4.401-16.953-16.97-23.402-49.563-23.402c-36.486,0-40.746,12.753-40.746,22.607\r\n\t\t\tc0,11.963,5.031,15.441,54.294,22.172c48.761,6.663,71.933,16.117,71.933,51.552c0,35.781-28.808,58.783-79.075,58.783\r\n\t\t\tL208.943,255.998L208.943,255.998z"},"children":[{"name":"path","attribs":{"d":"M208.943,255.998c-64.61,0-84.006-31.61-84.006-59.271c0-2.629,2.048-4.729,4.562-4.729h20.521\r\n\t\t\tc2.282,0,4.227,1.7,4.562,4.016c3.084,21.602,16.748,31.15,54.324,31.15c33.399,0,47.091-10.346,47.091-28.684\r\n\t\t\tc0-10.592-3.463-18.424-55.407-23.697c-43.427-4.441-70.288-14.373-70.288-50.295c0-33.135,26.996-52.49,72.234-52.49\r\n\t\t\tc46.128,0,76.462,14,79.173,50.829c0.102,1.337-0.368,2.629-1.241,3.644c-0.871,0.965-2.078,1.527-3.353,1.527h-20.591\r\n\t\t\tc-2.146,0-4.024-1.562-4.459-3.713c-4.401-16.953-16.97-23.402-49.563-23.402c-36.486,0-40.746,12.753-40.746,22.607\r\n\t\t\tc0,11.963,5.031,15.441,54.294,22.172c48.761,6.663,71.933,16.117,71.933,51.552c0,35.781-28.808,58.783-79.075,58.783\r\n\t\t\tL208.943,255.998L208.943,255.998z"},"children":[]}]}]}]}]}]};exports.socialNodejs=socialNodejs;var socialOctocat={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M178.354,287.478c-9.123,0-16.928,4.207-23.201,12.833c-6.291,8.478-9.398,18.973-9.398,31.431\r\n\t\tc0,12.474,3.166,23.008,9.398,31.509c6.273,8.54,14.039,12.771,23.201,12.771c8.494,0,15.889-4.27,22.121-12.771\r\n\t\tc6.271-8.501,9.398-19.035,9.398-31.509c0-12.419-3.166-22.93-9.398-31.431C194.242,291.724,186.908,287.478,178.354,287.478z"},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M178.354,287.478c-9.123,0-16.928,4.207-23.201,12.833c-6.291,8.478-9.398,18.973-9.398,31.431\r\n\t\tc0,12.474,3.166,23.008,9.398,31.509c6.273,8.54,14.039,12.771,23.201,12.771c8.494,0,15.889-4.27,22.121-12.771\r\n\t\tc6.271-8.501,9.398-19.035,9.398-31.509c0-12.419-3.166-22.93-9.398-31.431C194.242,291.724,186.908,287.478,178.354,287.478z"},"children":[]}]},{"name":"path","attribs":{"fill":"#231F20","d":"M334.668,287.478c-9.045,0-16.891,4.207-23.182,12.833c-6.271,8.478-9.359,18.973-9.359,31.431\r\n\t\tc0,12.474,3.186,23.008,9.359,31.509c6.291,8.54,14.098,12.771,23.182,12.771c8.533,0,15.906-4.27,22.178-12.771\r\n\t\tc6.293-8.501,9.418-19.035,9.418-31.509c0-12.419-3.164-22.93-9.418-31.431C350.574,291.724,343.299,287.478,334.668,287.478z"},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M334.668,287.478c-9.045,0-16.891,4.207-23.182,12.833c-6.271,8.478-9.359,18.973-9.359,31.431\r\n\t\tc0,12.474,3.186,23.008,9.359,31.509c6.291,8.54,14.098,12.771,23.182,12.771c8.533,0,15.906-4.27,22.178-12.771\r\n\t\tc6.293-8.501,9.418-19.035,9.418-31.509c0-12.419-3.164-22.93-9.418-31.431C350.574,291.724,343.299,287.478,334.668,287.478z"},"children":[]}]},{"name":"path","attribs":{"fill":"#231F20","d":"M445.777,172h-0.059c0,0,2.793-14.264,0.314-39.18c-2.182-24.916-7.471-47.838-16.123-68.82\r\n\t\tc0,0-4.422,0.76-12.76,2.896s-22.08,6.299-40.938,14.768c-18.541,8.54-37.986,19.788-58.297,33.505\r\n\t\tc-13.803-3.934-34.408-5.939-61.994-5.939c-26.289,0-46.914,2.012-61.977,5.945c-44.592-30.859-81.832-47.945-112.092-51.175\r\n\t\tc-8.594,20.982-13.883,43.991-16.045,68.97c-2.398,24.939,0.432,39.329,0.432,39.329C41.979,198.551,32,236.541,32,267.793\r\n\t\tc0,24.244,0.658,46.078,6.125,65.48c5.564,19.31,12.662,35.13,21.098,47.221c8.611,12.121,19.012,22.788,31.576,31.938\r\n\t\tc12.467,9.314,23.988,15.962,34.389,20.216c10.461,4.372,22.375,7.602,35.982,9.861c13.33,2.386,23.438,3.645,30.477,3.996\r\n\t\tc0,0,28,1.494,64.354,1.494c36.354,0,64.295-1.494,64.295-1.494c7.02-0.352,17.145-1.634,30.535-3.996\r\n\t\tc13.547-2.299,25.521-5.607,35.941-9.861c10.402-4.293,21.943-10.901,34.469-20.216c12.523-9.032,22.906-19.739,31.518-31.938\r\n\t\tc8.436-12.091,15.494-27.911,21.098-47.221c5.486-19.402,6.145-41.385,6.145-65.629C480,237.389,469.982,199,445.777,172z\r\n\t\t M380.383,405.645C352.521,418.736,311.486,424,257.061,424l-2.143-0.039c-54.443,0-95.361-5.248-122.848-18.41\r\n\t\tc-27.508-13.092-41.271-40.057-41.271-80.738c0-24.33,8.572-43.99,25.482-59.107c7.354-6.515,16.438-11.019,27.645-13.717\r\n\t\tc11.129-2.558,21.354-2.762,30.969-2.465c9.398,0.415,22.551,2.196,39.344,3.464C231.029,254.285,243.535,256,256,256\r\n\t\tc11.698,0,27.213-1.957,52.104-3.959c24.99-1.971,43.494-2.971,55.467-1c12.289,2.002,22.986,6.202,32.129,14.742\r\n\t\tc17.734,15.751,26.602,35.505,26.602,59.084C422.301,365.533,408.164,392.537,380.383,405.645z"},"children":[{"name":"path","attribs":{"fill":"#231F20","d":"M445.777,172h-0.059c0,0,2.793-14.264,0.314-39.18c-2.182-24.916-7.471-47.838-16.123-68.82\r\n\t\tc0,0-4.422,0.76-12.76,2.896s-22.08,6.299-40.938,14.768c-18.541,8.54-37.986,19.788-58.297,33.505\r\n\t\tc-13.803-3.934-34.408-5.939-61.994-5.939c-26.289,0-46.914,2.012-61.977,5.945c-44.592-30.859-81.832-47.945-112.092-51.175\r\n\t\tc-8.594,20.982-13.883,43.991-16.045,68.97c-2.398,24.939,0.432,39.329,0.432,39.329C41.979,198.551,32,236.541,32,267.793\r\n\t\tc0,24.244,0.658,46.078,6.125,65.48c5.564,19.31,12.662,35.13,21.098,47.221c8.611,12.121,19.012,22.788,31.576,31.938\r\n\t\tc12.467,9.314,23.988,15.962,34.389,20.216c10.461,4.372,22.375,7.602,35.982,9.861c13.33,2.386,23.438,3.645,30.477,3.996\r\n\t\tc0,0,28,1.494,64.354,1.494c36.354,0,64.295-1.494,64.295-1.494c7.02-0.352,17.145-1.634,30.535-3.996\r\n\t\tc13.547-2.299,25.521-5.607,35.941-9.861c10.402-4.293,21.943-10.901,34.469-20.216c12.523-9.032,22.906-19.739,31.518-31.938\r\n\t\tc8.436-12.091,15.494-27.911,21.098-47.221c5.486-19.402,6.145-41.385,6.145-65.629C480,237.389,469.982,199,445.777,172z\r\n\t\t M380.383,405.645C352.521,418.736,311.486,424,257.061,424l-2.143-0.039c-54.443,0-95.361-5.248-122.848-18.41\r\n\t\tc-27.508-13.092-41.271-40.057-41.271-80.738c0-24.33,8.572-43.99,25.482-59.107c7.354-6.515,16.438-11.019,27.645-13.717\r\n\t\tc11.129-2.558,21.354-2.762,30.969-2.465c9.398,0.415,22.551,2.196,39.344,3.464C231.029,254.285,243.535,256,256,256\r\n\t\tc11.698,0,27.213-1.957,52.104-3.959c24.99-1.971,43.494-2.971,55.467-1c12.289,2.002,22.986,6.202,32.129,14.742\r\n\t\tc17.734,15.751,26.602,35.505,26.602,59.084C422.301,365.533,408.164,392.537,380.383,405.645z"},"children":[]}]}]}]};exports.socialOctocat=socialOctocat;var socialPinterestOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M391.8,391.8\r\n\tC355.5,428,307.3,448,256,448c-16.2,0-32.1-2-47.4-5.9c2.8-6.3,5.2-12.8,7-19.3c2.8-10,15.8-61.6,15.8-61.6\r\n\tc7.8,14.8,30.5,27.9,54.7,27.9c72,0,120.9-65.6,120.9-153.5c0-66.4-56.3-128.3-141.8-128.3c-106.4,0-160.1,76.3-160.1,139.9\r\n\tc0,38.5,14.6,72.8,45.9,85.6c5.1,2.1,9.7,0.1,11.2-5.6c1-3.9,3.5-13.9,4.6-18c1.5-5.6,0.9-7.6-3.2-12.5c-9-10.7-14.8-24.4-14.8-43.9\r\n\tc0-56.6,42.3-107.3,110.3-107.3c60.1,0,93.2,36.7,93.2,85.8c0,64.6-28.6,119.1-71,119.1c-23.4,0-41-19.4-35.4-43.1\r\n\tc6.7-28.4,19.8-59,19.8-79.5c0-18.3-9.8-33.6-30.2-33.6c-24,0-43.2,24.8-43.2,58c0,21.1,7.2,35.4,7.2,35.4s-24.5,103.9-28.8,122.1\r\n\tc-1.3,5.5-2.2,11.1-2.9,16.8c-17.3-9-33.3-20.6-47.4-34.8C84,355.5,64,307.3,64,256s20-99.5,56.2-135.8C156.5,84,204.7,64,256,64\r\n\ts99.5,20,135.8,56.2C428,156.5,448,204.7,448,256S428,355.5,391.8,391.8z"},"children":[]}]};exports.socialPinterestOutline=socialPinterestOutline;var socialPinterest={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,91.7,55.2,170.5,134.1,205.2c-0.6-15.6-0.1-34.4,3.9-51.4\r\n\t\tc4.3-18.2,28.8-122.1,28.8-122.1s-7.2-14.3-7.2-35.4c0-33.2,19.2-58,43.2-58c20.4,0,30.2,15.3,30.2,33.6\r\n\t\tc0,20.5-13.1,51.1-19.8,79.5c-5.6,23.8,11.9,43.1,35.4,43.1c42.4,0,71-54.5,71-119.1c0-49.1-33.1-85.8-93.2-85.8\r\n\t\tc-67.9,0-110.3,50.7-110.3,107.3c0,19.5,5.8,33.3,14.8,43.9c4.1,4.9,4.7,6.9,3.2,12.5c-1.1,4.1-3.5,14-4.6,18\r\n\t\tc-1.5,5.7-6.1,7.7-11.2,5.6c-31.3-12.8-45.9-47-45.9-85.6c0-63.6,53.7-139.9,160.1-139.9c85.5,0,141.8,61.9,141.8,128.3\r\n\t\tc0,87.9-48.9,153.5-120.9,153.5c-24.2,0-46.9-13.1-54.7-27.9c0,0-13,51.6-15.8,61.6c-4.7,17.3-14,34.5-22.5,48\r\n\t\tc20.1,5.9,41.4,9.2,63.5,9.2c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z"},"children":[{"name":"path","attribs":{"d":"M256,32C132.3,32,32,132.3,32,256c0,91.7,55.2,170.5,134.1,205.2c-0.6-15.6-0.1-34.4,3.9-51.4\r\n\t\tc4.3-18.2,28.8-122.1,28.8-122.1s-7.2-14.3-7.2-35.4c0-33.2,19.2-58,43.2-58c20.4,0,30.2,15.3,30.2,33.6\r\n\t\tc0,20.5-13.1,51.1-19.8,79.5c-5.6,23.8,11.9,43.1,35.4,43.1c42.4,0,71-54.5,71-119.1c0-49.1-33.1-85.8-93.2-85.8\r\n\t\tc-67.9,0-110.3,50.7-110.3,107.3c0,19.5,5.8,33.3,14.8,43.9c4.1,4.9,4.7,6.9,3.2,12.5c-1.1,4.1-3.5,14-4.6,18\r\n\t\tc-1.5,5.7-6.1,7.7-11.2,5.6c-31.3-12.8-45.9-47-45.9-85.6c0-63.6,53.7-139.9,160.1-139.9c85.5,0,141.8,61.9,141.8,128.3\r\n\t\tc0,87.9-48.9,153.5-120.9,153.5c-24.2,0-46.9-13.1-54.7-27.9c0,0-13,51.6-15.8,61.6c-4.7,17.3-14,34.5-22.5,48\r\n\t\tc20.1,5.9,41.4,9.2,63.5,9.2c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z"},"children":[]}]}]}]};exports.socialPinterest=socialPinterest;var socialPython={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M193.46,249.056c3.723-0.67,7.589-1.041,11.586-1.041L201.924,248h103.823c4.503,0,8.806-0.617,12.908-1.754\r\n\t\tc19.37-5.363,33.345-22.537,33.345-43.663v-30.822v-56.402c0-24.832-21.15-43.484-46.289-47.606\r\n\t\tc-15.931-2.624-39.258-3.827-55.089-3.749c-15.829,0.086-30.981,1.404-44.277,3.749C167.143,74.576,160,88.928,160,115.359V144h96\r\n\t\tv16H128.82c-35.628,0-64.538,42.571-64.813,95.242C64.005,255.495,64,255.747,64,256c0,9.523,0.94,18.72,2.685,27.404\r\n\t\tC74.648,323.07,99.451,352,128.82,352H144v-2.662v-43.273C144,279.238,164.146,254.332,193.46,249.056z M203.656,127.002\r\n\t\tc-9.592,0-17.384-7.785-17.384-17.403c0-9.664,7.774-17.52,17.384-17.52c9.574,0,17.399,7.855,17.399,17.52\r\n\t\tC221.056,119.217,213.246,127.002,203.656,127.002z"},"children":[{"name":"path","attribs":{"d":"M193.46,249.056c3.723-0.67,7.589-1.041,11.586-1.041L201.924,248h103.823c4.503,0,8.806-0.617,12.908-1.754\r\n\t\tc19.37-5.363,33.345-22.537,33.345-43.663v-30.822v-56.402c0-24.832-21.15-43.484-46.289-47.606\r\n\t\tc-15.931-2.624-39.258-3.827-55.089-3.749c-15.829,0.086-30.981,1.404-44.277,3.749C167.143,74.576,160,88.928,160,115.359V144h96\r\n\t\tv16H128.82c-35.628,0-64.538,42.571-64.813,95.242C64.005,255.495,64,255.747,64,256c0,9.523,0.94,18.72,2.685,27.404\r\n\t\tC74.648,323.07,99.451,352,128.82,352H144v-2.662v-43.273C144,279.238,164.146,254.332,193.46,249.056z M203.656,127.002\r\n\t\tc-9.592,0-17.384-7.785-17.384-17.403c0-9.664,7.774-17.52,17.384-17.52c9.574,0,17.399,7.855,17.399,17.52\r\n\t\tC221.056,119.217,213.246,127.002,203.656,127.002z"},"children":[]}]},{"name":"path","attribs":{"d":"M443.951,222.543C434.78,186.021,411.033,160,383.18,160H368v2.626v38.046c0,33.915-22.286,58.474-49.489,62.681\r\n\t\tc-2.737,0.424-5.483,0.646-8.301,0.646H206.351c-4.518,0-8.904,0.584-13.049,1.672C174.18,270.689,160,286.6,160,307.236v32.922\r\n\t\tv54.305c0,24.832,24.977,39.426,49.481,46.551c29.327,8.531,61.267,10.068,96.366,0C329.15,434.354,352,420.893,352,394.463V368\r\n\t\th-96v-16h127.18c25.24,0,47.107-21.365,57.814-52.549C445.474,286.404,448,271.641,448,256\r\n\t\tC448,244.232,446.567,232.962,443.951,222.543z M307.867,382.82c9.59,0,17.381,7.785,17.381,17.4\r\n\t\tc0,9.65-7.791,17.521-17.381,17.521c-9.577,0-17.399-7.871-17.399-17.521C290.468,390.59,298.274,382.82,307.867,382.82z"},"children":[{"name":"path","attribs":{"d":"M443.951,222.543C434.78,186.021,411.033,160,383.18,160H368v2.626v38.046c0,33.915-22.286,58.474-49.489,62.681\r\n\t\tc-2.737,0.424-5.483,0.646-8.301,0.646H206.351c-4.518,0-8.904,0.584-13.049,1.672C174.18,270.689,160,286.6,160,307.236v32.922\r\n\t\tv54.305c0,24.832,24.977,39.426,49.481,46.551c29.327,8.531,61.267,10.068,96.366,0C329.15,434.354,352,420.893,352,394.463V368\r\n\t\th-96v-16h127.18c25.24,0,47.107-21.365,57.814-52.549C445.474,286.404,448,271.641,448,256\r\n\t\tC448,244.232,446.567,232.962,443.951,222.543z M307.867,382.82c9.59,0,17.381,7.785,17.381,17.4\r\n\t\tc0,9.65-7.791,17.521-17.381,17.521c-9.577,0-17.399-7.871-17.399-17.521C290.468,390.59,298.274,382.82,307.867,382.82z"},"children":[]}]}]}]};exports.socialPython=socialPython;var socialRedditOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"cx":"322.3","cy":"288.4","r":"31.8"},"children":[{"name":"circle","attribs":{"cx":"322.3","cy":"288.4","r":"31.8"},"children":[]}]},{"name":"circle","attribs":{"cx":"190.3","cy":"288.4","r":"31.8"},"children":[{"name":"circle","attribs":{"cx":"190.3","cy":"288.4","r":"31.8"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-33.2-23.4-78.4-38.5-128.7-40.7L292,95.7l69.6,13.9\r\n\t\t\tc0.2,24.7,20.1,44.7,44.5,44.7c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64c-18.6,0-34.5,11.6-41.2,28l-85.2-17l-29.4,98.2\r\n\t\t\tl-7.1,0.2c-50.3,2.2-95.5,17.4-128.7,40.7c-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8\r\n\t\t\tc-0.8,4.9-1.2,9.8-1.2,14.8C57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8\r\n\t\t\tC469.5,287.4,480.5,270.5,480.5,251z M406.1,81.9c14.8,0,26.8,12.2,26.8,27.2c0,15-12,27.2-26.8,27.2c-14.8,0-26.8-12.2-26.8-27.2\r\n\t\t\tC379.3,94.1,391.3,81.9,406.1,81.9z M49.2,251c0-17.8,14.3-32.2,31.8-32.2c7.2,0,13.9,2.5,19.2,6.6c-17.3,15.2-30.1,33-37,52.4\r\n\t\t\tC54.8,271.9,49.2,262.1,49.2,251z M386.4,392.9c-34.6,23.9-80.9,37.1-130.4,37.1s-95.8-13.2-130.4-37.1\r\n\t\t\tc-32.5-22.5-50.4-51.8-50.4-82.4c0-3.2,0.2-6.5,0.6-9.7c0.7-6,2.2-11.9,4.3-17.7c5.6-15.6,16-30.3,30.7-43.4\r\n\t\t\tc4.4-3.9,9.2-7.7,14.4-11.3c0.1-0.1,0.3-0.2,0.4-0.3C160.2,204.2,206.5,191,256,191c49.5,0,95.8,13.2,130.4,37.1\r\n\t\t\tc0.1,0.1,0.3,0.2,0.4,0.3c5.2,3.6,10,7.4,14.4,11.3c14.7,13.1,25.1,27.8,30.7,43.4c2.1,5.8,3.5,11.7,4.3,17.7\r\n\t\t\tc0.4,3.2,0.6,6.4,0.6,9.7C436.8,341.1,418.9,370.4,386.4,392.9z M448.8,277.7c-6.9-19.4-19.7-37.2-37-52.4\r\n\t\t\tc5.3-4.1,12-6.6,19.2-6.6c17.5,0,31.8,14.5,31.8,32.2C462.8,262.1,457.2,271.9,448.8,277.7z"},"children":[{"name":"path","attribs":{"d":"M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-33.2-23.4-78.4-38.5-128.7-40.7L292,95.7l69.6,13.9\r\n\t\t\tc0.2,24.7,20.1,44.7,44.5,44.7c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64c-18.6,0-34.5,11.6-41.2,28l-85.2-17l-29.4,98.2\r\n\t\t\tl-7.1,0.2c-50.3,2.2-95.5,17.4-128.7,40.7c-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8\r\n\t\t\tc-0.8,4.9-1.2,9.8-1.2,14.8C57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8\r\n\t\t\tC469.5,287.4,480.5,270.5,480.5,251z M406.1,81.9c14.8,0,26.8,12.2,26.8,27.2c0,15-12,27.2-26.8,27.2c-14.8,0-26.8-12.2-26.8-27.2\r\n\t\t\tC379.3,94.1,391.3,81.9,406.1,81.9z M49.2,251c0-17.8,14.3-32.2,31.8-32.2c7.2,0,13.9,2.5,19.2,6.6c-17.3,15.2-30.1,33-37,52.4\r\n\t\t\tC54.8,271.9,49.2,262.1,49.2,251z M386.4,392.9c-34.6,23.9-80.9,37.1-130.4,37.1s-95.8-13.2-130.4-37.1\r\n\t\t\tc-32.5-22.5-50.4-51.8-50.4-82.4c0-3.2,0.2-6.5,0.6-9.7c0.7-6,2.2-11.9,4.3-17.7c5.6-15.6,16-30.3,30.7-43.4\r\n\t\t\tc4.4-3.9,9.2-7.7,14.4-11.3c0.1-0.1,0.3-0.2,0.4-0.3C160.2,204.2,206.5,191,256,191c49.5,0,95.8,13.2,130.4,37.1\r\n\t\t\tc0.1,0.1,0.3,0.2,0.4,0.3c5.2,3.6,10,7.4,14.4,11.3c14.7,13.1,25.1,27.8,30.7,43.4c2.1,5.8,3.5,11.7,4.3,17.7\r\n\t\t\tc0.4,3.2,0.6,6.4,0.6,9.7C436.8,341.1,418.9,370.4,386.4,392.9z M448.8,277.7c-6.9-19.4-19.7-37.2-37-52.4\r\n\t\t\tc5.3-4.1,12-6.6,19.2-6.6c17.5,0,31.8,14.5,31.8,32.2C462.8,262.1,457.2,271.9,448.8,277.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M320.5,357.9c-0.2,0.2-24.2,24.2-64.5,24.4c-40.9-0.2-64.4-24.2-64.6-24.4l-12.6,12.4c1.2,1.2,29.6,29.5,77.2,29.7\r\n\t\t\tc47.6-0.2,75.9-28.5,77.1-29.7L320.5,357.9z"},"children":[{"name":"path","attribs":{"d":"M320.5,357.9c-0.2,0.2-24.2,24.2-64.5,24.4c-40.9-0.2-64.4-24.2-64.6-24.4l-12.6,12.4c1.2,1.2,29.6,29.5,77.2,29.7\r\n\t\t\tc47.6-0.2,75.9-28.5,77.1-29.7L320.5,357.9z"},"children":[]}]}]}]}]}]};exports.socialRedditOutline=socialRedditOutline;var socialReddit={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-32.4-22.8-76.1-37.8-124.9-40.6l21.9-73.2l67.1,13.5\r\n\tc2.3,22.7,21.2,40.4,44.3,40.4c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64\r\n\tc-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c-17.2,0-32,9.8-39.5,24.3l-89.7-18l-30.8,103l-2.5,0.1c-50.3,2.2-95.5,17.4-128.7,40.7\r\n\tc-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8c-0.8,4.9-1.2,9.8-1.2,14.8\r\n\tC57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8C469.5,287.4,480.5,270.5,480.5,251z M65.8,271.1\r\n\tc-6.6-4.5-10.9-12.1-10.9-20.8c0-13.8,11.1-25.1,24.7-25.1c5.6,0,10.8,1.9,15,5.1C81.1,242.2,71.1,256,65.8,271.1z M389.3,109.1\r\n\tc0-9.2,7.4-16.8,16.5-16.8s16.5,7.5,16.5,16.8c0,9.2-7.4,16.8-16.5,16.8S389.3,118.4,389.3,109.1z M158.5,288.4\r\n\tc0-17.6,14.2-31.8,31.8-31.8s31.8,14.2,31.8,31.8c0,17.6-14.2,31.8-31.8,31.8S158.5,306,158.5,288.4z M256,400\r\n\tc-47.6-0.2-76-28.5-77.2-29.7l12.6-12.4c0.2,0.2,23.7,24.2,64.6,24.4c40.3-0.2,64.2-24.2,64.5-24.4l12.6,12.4\r\n\tC331.9,371.5,303.6,399.8,256,400z M322.3,320.2c-17.6,0-31.8-14.2-31.8-31.8c0-17.6,14.2-31.8,31.8-31.8s31.8,14.2,31.8,31.8\r\n\tC354.1,306,339.8,320.2,322.3,320.2z M446.4,271.5c-5.4-15.3-15.6-29.4-29.3-41.4c4.2-3.3,9.5-5.2,15.2-5.2\r\n\tc13.9,0,25.1,11.4,25.1,25.5C457.5,259.2,453.1,266.9,446.4,271.5z"},"children":[]}]};exports.socialReddit=socialReddit;var socialRssOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z M119.9,431.5c-22,0-39.9-17.8-39.9-39.6c0-21.9,17.9-39.8,39.9-39.8\r\n\t\tc22,0,39.9,17.9,39.9,39.8C159.8,413.7,141.9,431.5,119.9,431.5z"},"children":[{"name":"path","attribs":{"d":"M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z M119.9,431.5c-22,0-39.9-17.8-39.9-39.6c0-21.9,17.9-39.8,39.9-39.8\r\n\t\tc22,0,39.9,17.9,39.9,39.8C159.8,413.7,141.9,431.5,119.9,431.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z M303.5,432h-48\r\n\t\tc-3.1-49.7-21-92.1-52.2-123.3C172.1,277.4,130,259.5,80,256.4v-47.8c26,1.8,52.1,8,76.7,18.5c28.5,12.2,54.2,29.6,76.4,51.8\r\n\t\tc22.2,22.2,39.6,47.9,51.8,76.4C295.5,379.9,301.7,405.6,303.5,432z"},"children":[{"name":"path","attribs":{"d":"M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z M303.5,432h-48\r\n\t\tc-3.1-49.7-21-92.1-52.2-123.3C172.1,277.4,130,259.5,80,256.4v-47.8c26,1.8,52.1,8,76.7,18.5c28.5,12.2,54.2,29.6,76.4,51.8\r\n\t\tc22.2,22.2,39.6,47.9,51.8,76.4C295.5,379.9,301.7,405.6,303.5,432z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z M291.4,220.5C235.4,164.4,161,132,80,128.2V80.3\r\n\t\tC270,88.5,423.5,241.8,431.7,432h-48.2C379.7,351.1,347.3,276.5,291.4,220.5z"},"children":[{"name":"path","attribs":{"d":"M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z M291.4,220.5C235.4,164.4,161,132,80,128.2V80.3\r\n\t\tC270,88.5,423.5,241.8,431.7,432h-48.2C379.7,351.1,347.3,276.5,291.4,220.5z"},"children":[]}]}]}]};exports.socialRssOutline=socialRssOutline;var socialRss={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z"},"children":[{"name":"path","attribs":{"d":"M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z"},"children":[{"name":"path","attribs":{"d":"M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z"},"children":[]}]},{"name":"path","attribs":{"d":"M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z"},"children":[{"name":"path","attribs":{"d":"M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z"},"children":[]}]}]}]};exports.socialRss=socialRss;var socialSass={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"fill":"#231F20","d":"M511.784,329.108c-1.67-13.599-9.236-24.146-20.795-32.416c2.857,2.04,5.275,3.766-0.055-0.041\r\n\tc-7.189-5.131-3.38-2.411-0.047-0.032c-28.5-20.301-65.676-15.789-96.733-4.511c-12.447-20.295-12.987-35.783-5.816-57.937\r\n\tc0.929-2.8,0.295-4.354-2.624-5.604c-7.086-3.03-17.291-1.427-24.422,0.463c-2.462,0.646-4.254,1.9-4.8,4.381\r\n\tc-5.154,24.243-21.009,46.448-34.828,66.886c-9.731-18.652-8.96-33.087-2.414-52.516c0.798-2.366,0.431-3.624-1.937-4.879\r\n\tc-7.26-3.757-18.401-1.912-25.8,0.276c-8.509,2.482-21.29,44.594-25.372,52.946c-8.531,17.442-16.091,44.665-30.585,58.502\r\n\tc-12.3-15.807,22.526-51.517,10.882-65.851c-3.938-4.848-11.063-4.723-15.586-0.616c1.085-7.608,1.648-12.609-0.32-19.063\r\n\tc-2.081-6.79-7.361-10.687-15.09-10.49c-17.995,0.527-33.843,13.815-44.641,26.397c-10.277,12.105-37.381,19.627-51.953,26.927\r\n\tc-25.032-21.807-79.221-44.947-80.632-82.081c-1.528-41.846,48.319-70.245,81.597-87.228\r\n\tc43.28-22.104,109.961-49.608,159.138-25.436c13.049,6.414,18.299,20.171,14.707,33.348c-9.368,34.366-47.198,57.293-80.103,67.807\r\n\tc-16.189,5.175-33.969,9.027-51.1,8.026c-22.955-1.343-40.83-15.224-43.281-16.086c-2.049-0.389-1.888,2.261-1.347,3.664\r\n\tc23.816,62.433,144.417,16.681,175.956-15.371c15.189-15.421,24.413-30.365,28.351-53.894c4.616-27.583-15.634-44.842-31.004-51.957\r\n\tC213.212,56.65,105.494,103.89,46.577,152.049c-25.568,20.901-57.552,54.11-42.874,88.946c15.93,37.805,64.736,57.19,96.503,80.312\r\n\tC74.502,334.08,42.344,347.29,25.688,371.24c-9.524,13.729-12.903,28.359-5.811,43.966c12.572,27.568,58.285,15.622,77.573,3.471\r\n\tc17.67-11.13,29.563-26.07,34.7-45.228c4.455-16.609,3.541-33.866-3.856-49.512l28.585-14.458\r\n\tc-7.697,23.076-11.097,52.003,4.881,72.855c6.402,8.338,23.017,8.675,29.817,0.311c8.816-10.943,14.664-24.655,20.503-37.206\r\n\tc-0.682,9.373-1.856,19.996,1.377,28.165c3.71,9.373,12.126,11.291,20.792,5.343c26.52-18.203,43.398-68.652,56.463-98.062\r\n\tc3.552,12.829,7.473,24.548,13.957,36.376c1.602,2.903,1.407,4.774-0.796,7.195c-9.685,10.675-32.826,28.479-35.069,42.899\r\n\tc-0.524,3.371,1.713,6.599,5.686,7.37c15.573,3.108,32.838-2.531,45.482-11.078c13.188-8.922,17.446-21.087,14.245-35.515\r\n\tc-4.576-20.771,10.993-43.98,25.801-61.03c2.719,12.908,6.816,25.331,14.143,36.606c-13.075,11.483-32.58,27.764-29.779,46.939\r\n\tc0.988,6.865,7.135,11.301,14.514,9.736c15.783-3.324,29.416-10.113,39.37-22.146c9.023-10.855,5.792-22.701,1.856-34.635\r\n\tc23.872-6.815,48.022-8.177,71.831-0.027c11.495,3.91,20.755,10.5,26.248,20.818c6.726,12.644,2.939,24.292-10.05,32.604\r\n\tc-3.287,2.104-5.562,3.833-4.45,4.743c1.112,0.911,4.9,2.113,13.284-3.152c8.384-5.267,13.51-12.383,14.823-21.725\r\n\tC512.071,334.28,512.063,331.696,511.784,329.108z M112.946,354.367c-1.358,16.673-9.636,30.193-23.175,41.114\r\n\tc-7.617,6.158-17.102,11.176-26.52,12.092c-9.418,0.917-16.751-1.461-17.378-11.23c-1.764-27.493,40.923-54.424,64.625-62.533\r\n\tc2.02,6.86,3.011,13.666,2.432,20.587L112.946,354.367z M216.048,281.914c-3.903,22.309-14.83,62.347-32.314,78.336\r\n\tc-2.356,2.143-4.61,2.018-5.809-0.771c-10.345-24.059,3.671-73.669,33.082-81.328C214.464,277.262,216.609,278.733,216.048,281.914z\r\n\t M286.359,363.682c8.422-8.962,16.834-17.916,25.269-26.927C312.671,346.776,294.057,366.719,286.359,363.682z M367.073,345.986\r\n\tc-2.348,1.273-7.621,2.515-7.827,0.835c-1.482-12.085,11.816-24.874,20.067-30.867C383.766,327.297,378.495,339.788,367.073,345.986\r\n\tz"},"children":[]}]};exports.socialSass=socialSass;var socialSkypeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M170.2,96c14,0,27.7,3.9,39.6,11.3l10.3,6.4l12-2c8.5-1.5,17.2-2.2,25.9-2.2c40.5,0,78.5,15.5,107,43.7\r\n\t\tc28.4,28,44.1,65.3,44.1,104.9c0,10.7-1.2,21.4-3.5,31.8l-2.5,11.1l5.1,10.2c5.1,10.1,7.7,20.9,7.7,32.2\r\n\t\tc0,40.1-33.3,72.7-74.2,72.7c-12.5,0-24.3-2.9-35.2-8.7l-9.8-5.2l-10.9,2c-9.1,1.7-18.5,2.5-27.8,2.5c-40.5,0-78.5-15.5-107-43.7\r\n\t\tc-28.4-28-44.1-65.3-44.1-104.9c0-10,1-20.1,3-29.9l2.5-12.2l-6.4-10.7C99.5,194.2,96,181.6,96,168.7C96,128.6,129.3,96,170.2,96\r\n\t\t M170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3c0,99.8,82,180.6,183.1,180.6\r\n\t\tc11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7c0-16.7-4-32.5-11.1-46.5\r\n\t\tc2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6C210.3,69.9,191,64,170.2,64L170.2,64z"},"children":[{"name":"path","attribs":{"d":"M170.2,96c14,0,27.7,3.9,39.6,11.3l10.3,6.4l12-2c8.5-1.5,17.2-2.2,25.9-2.2c40.5,0,78.5,15.5,107,43.7\r\n\t\tc28.4,28,44.1,65.3,44.1,104.9c0,10.7-1.2,21.4-3.5,31.8l-2.5,11.1l5.1,10.2c5.1,10.1,7.7,20.9,7.7,32.2\r\n\t\tc0,40.1-33.3,72.7-74.2,72.7c-12.5,0-24.3-2.9-35.2-8.7l-9.8-5.2l-10.9,2c-9.1,1.7-18.5,2.5-27.8,2.5c-40.5,0-78.5-15.5-107-43.7\r\n\t\tc-28.4-28-44.1-65.3-44.1-104.9c0-10,1-20.1,3-29.9l2.5-12.2l-6.4-10.7C99.5,194.2,96,181.6,96,168.7C96,128.6,129.3,96,170.2,96\r\n\t\t M170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3c0,99.8,82,180.6,183.1,180.6\r\n\t\tc11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7c0-16.7-4-32.5-11.1-46.5\r\n\t\tc2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6C210.3,69.9,191,64,170.2,64L170.2,64z"},"children":[]}]},{"name":"path","attribs":{"d":"M351.9,344.1c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9c-26.3,0-48.3-4.6-65.6-13.6\r\n\t\tc-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7c6.3,0,11.7,1.8,16.1,5.5\r\n\t\tc4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7c6.7,3.1,15.6,4.7,26.6,4.7\r\n\t\tc15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1c-5-4.6-11.5-8.2-19.6-10.6\r\n\t\tc-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7C159,226.5,155,214.3,155,200\r\n\t\tc0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4c16.4,0,30.7,1.9,42.7,5.5\r\n\t\tc12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4c-5,5.1-11.3,7.8-18.8,7.8\r\n\t\tc-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7c-13.1,0-23.8,2.6-31.7,7.7\r\n\t\tc-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2c4.8,2.4,9.8,4.3,14.7,5.6\r\n\t\tc5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1c8.8,5.6,15.7,12.9,20.7,21.5\r\n\t\tc4.9,8.6,7.4,19.4,7.4,31.8C364.7,318.7,360.4,332.3,351.9,344.1z"},"children":[{"name":"path","attribs":{"d":"M351.9,344.1c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9c-26.3,0-48.3-4.6-65.6-13.6\r\n\t\tc-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7c6.3,0,11.7,1.8,16.1,5.5\r\n\t\tc4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7c6.7,3.1,15.6,4.7,26.6,4.7\r\n\t\tc15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1c-5-4.6-11.5-8.2-19.6-10.6\r\n\t\tc-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7C159,226.5,155,214.3,155,200\r\n\t\tc0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4c16.4,0,30.7,1.9,42.7,5.5\r\n\t\tc12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4c-5,5.1-11.3,7.8-18.8,7.8\r\n\t\tc-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7c-13.1,0-23.8,2.6-31.7,7.7\r\n\t\tc-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2c4.8,2.4,9.8,4.3,14.7,5.6\r\n\t\tc5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1c8.8,5.6,15.7,12.9,20.7,21.5\r\n\t\tc4.9,8.6,7.4,19.4,7.4,31.8C364.7,318.7,360.4,332.3,351.9,344.1z"},"children":[]}]}]}]};exports.socialSkypeOutline=socialSkypeOutline;var socialSkype={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M436.9,296.8c2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6\r\n\tC210.3,69.9,191,64,170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3\r\n\tc0,99.8,82,180.6,183.1,180.6c11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7\r\n\tC448,326.6,444,310.8,436.9,296.8z M351.9,344.3c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9\r\n\tc-26.3,0-48.3-4.6-65.6-13.6c-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7\r\n\tc6.3,0,11.7,1.8,16.1,5.5c4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7\r\n\tc6.7,3.1,15.6,4.7,26.6,4.7c15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1\r\n\tc-5-4.6-11.5-8.2-19.6-10.6c-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7\r\n\tc-7.9-9.7-11.8-21.9-11.8-36.2c0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4\r\n\tc16.4,0,30.7,1.9,42.7,5.5c12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4\r\n\tc-5,5.1-11.3,7.8-18.8,7.8c-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7\r\n\tc-13.1,0-23.8,2.6-31.7,7.7c-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2\r\n\tc4.8,2.4,9.8,4.3,14.7,5.6c5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1\r\n\tc8.8,5.6,15.7,12.9,20.7,21.5c4.9,8.6,7.4,19.4,7.4,31.8C364.8,318.9,360.5,332.5,351.9,344.3z"},"children":[]}]};exports.socialSkype=socialSkype;var socialSnapchatOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.283,47.553c70.693,0,128,54.682,118,128.931c-2.072,15.388-3.422,31.483-4.26,44.759c0,0,2.402,4.253,12.664,4.253\r\n\t\tc6.071,0,14.895-1.543,27.596-6.354c2.236-0.847,4.377-1.241,6.377-1.241c7.918,0,13.615,5.931,14.123,12.271\r\n\t\tc0.426,5.31-4.564,11.199-8.371,13.009c-13.766,6.542-46.991,10.063-46.991,32.638c0,22.576,22.362,46.656,40.862,63.713\r\n\t\tS480,360.602,480,360.602s0.283,21.57-31.717,29.097c-32,7.524-32.1,5.712-33.25,13.796c-2.133,14.979-1.535,21.378-11.248,21.378\r\n\t\tc-1.672,0-3.651-0.19-6.002-0.558c-8.23-1.291-19.239-3.644-31.121-3.644c-11.216,0-23.21,2.097-34.379,9.161\r\n\t\tc-23,14.549-41.283,34.114-76.283,34.114s-53-19.565-76-34.114c-11.17-7.065-23.162-9.161-34.379-9.161\r\n\t\tc-11.88,0-22.892,2.353-31.121,3.644c-2.352,0.367-4.33,0.558-6.002,0.558c-9.71,0-9.115-6.399-11.248-21.378\r\n\t\tc-1.151-8.084-1.25-6.27-33.25-13.795s-32-29.097-32-29.097s45.5-4.012,64-21.068c18.5-17.058,40.862-41.134,40.862-63.71\r\n\t\tc0-22.575-33.226-26.09-46.991-32.632c-3.807-1.81-8.796-7.687-8.371-12.997c0.507-6.336,6.196-12.251,14.107-12.25\r\n\t\tc2.004,0,4.152,0.38,6.393,1.229c12.749,4.829,21.588,6.342,27.662,6.342c10.204,0,12.598-4.273,12.598-4.273\r\n\t\tc-0.837-13.275-2.187-29.371-4.259-44.759c-10-74.249,47.307-128.931,118-128.931l0,0 M256.283,32H256\r\n\t\tc-41.093,0-79.215,16.208-104.591,45.341c-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618\r\n\t\tc-3.97-0.559-9.686-1.998-17.703-5.034c-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003\r\n\t\tc-1.027,12.818,8.235,24.393,17.47,28.783c4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703\r\n\t\tc4.147,2.639,4.147,4.168,4.147,5.182c0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311\r\n\t\tL16,360.603c0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518c6.098-9.828,6.296-18.736,6.273-20.422l-0.189-14.501l-14.398-1.278\r\n\t\tc-15.413-1.396-43.8-7.219-54.301-16.9c-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186\r\n\t\tc4.985-3.174,12.589-5.584,19.297-7.71c5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807\r\n\t\tc-1.215-15.166-14.424-27.046-30.072-27.046c-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962\r\n\t\tc0.747-9.319,1.791-20.12,3.211-30.67c5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32L256.283,32z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M256.283,47.553c70.693,0,128,54.682,118,128.931c-2.072,15.388-3.422,31.483-4.26,44.759c0,0,2.402,4.253,12.664,4.253\r\n\t\tc6.071,0,14.895-1.543,27.596-6.354c2.236-0.847,4.377-1.241,6.377-1.241c7.918,0,13.615,5.931,14.123,12.271\r\n\t\tc0.426,5.31-4.564,11.199-8.371,13.009c-13.766,6.542-46.991,10.063-46.991,32.638c0,22.576,22.362,46.656,40.862,63.713\r\n\t\tS480,360.602,480,360.602s0.283,21.57-31.717,29.097c-32,7.524-32.1,5.712-33.25,13.796c-2.133,14.979-1.535,21.378-11.248,21.378\r\n\t\tc-1.672,0-3.651-0.19-6.002-0.558c-8.23-1.291-19.239-3.644-31.121-3.644c-11.216,0-23.21,2.097-34.379,9.161\r\n\t\tc-23,14.549-41.283,34.114-76.283,34.114s-53-19.565-76-34.114c-11.17-7.065-23.162-9.161-34.379-9.161\r\n\t\tc-11.88,0-22.892,2.353-31.121,3.644c-2.352,0.367-4.33,0.558-6.002,0.558c-9.71,0-9.115-6.399-11.248-21.378\r\n\t\tc-1.151-8.084-1.25-6.27-33.25-13.795s-32-29.097-32-29.097s45.5-4.012,64-21.068c18.5-17.058,40.862-41.134,40.862-63.71\r\n\t\tc0-22.575-33.226-26.09-46.991-32.632c-3.807-1.81-8.796-7.687-8.371-12.997c0.507-6.336,6.196-12.251,14.107-12.25\r\n\t\tc2.004,0,4.152,0.38,6.393,1.229c12.749,4.829,21.588,6.342,27.662,6.342c10.204,0,12.598-4.273,12.598-4.273\r\n\t\tc-0.837-13.275-2.187-29.371-4.259-44.759c-10-74.249,47.307-128.931,118-128.931l0,0 M256.283,32H256\r\n\t\tc-41.093,0-79.215,16.208-104.591,45.341c-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618\r\n\t\tc-3.97-0.559-9.686-1.998-17.703-5.034c-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003\r\n\t\tc-1.027,12.818,8.235,24.393,17.47,28.783c4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703\r\n\t\tc4.147,2.639,4.147,4.168,4.147,5.182c0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311\r\n\t\tL16,360.603c0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518c6.098-9.828,6.296-18.736,6.273-20.422l-0.189-14.501l-14.398-1.278\r\n\t\tc-15.413-1.396-43.8-7.219-54.301-16.9c-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186\r\n\t\tc4.985-3.174,12.589-5.584,19.297-7.71c5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807\r\n\t\tc-1.215-15.166-14.424-27.046-30.072-27.046c-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962\r\n\t\tc0.747-9.319,1.791-20.12,3.211-30.67c5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32L256.283,32z\r\n\t\t"},"children":[]}]},{"name":"path","attribs":{"d":"M256,229c-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tc3.102,3.147,3.064,8.212-0.082,11.313C296.368,220.725,276.617,229,256,229z"},"children":[{"name":"path","attribs":{"d":"M256,229c-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tc3.102,3.147,3.064,8.212-0.082,11.313C296.368,220.725,276.617,229,256,229z"},"children":[]}]},{"name":"ellipse","attribs":{"cx":"208","cy":"152","rx":"16","ry":"24"},"children":[{"name":"ellipse","attribs":{"cx":"208","cy":"152","rx":"16","ry":"24"},"children":[]}]},{"name":"ellipse","attribs":{"cx":"304","cy":"152","rx":"16","ry":"24"},"children":[{"name":"ellipse","attribs":{"cx":"304","cy":"152","rx":"16","ry":"24"},"children":[]}]}]}]};exports.socialSnapchatOutline=socialSnapchatOutline;var socialSnapchat={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M495.998,360.389l-0.189-14.501l-14.398-1.278c-15.413-1.396-43.8-7.219-54.301-16.9\r\n\t\tc-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186c4.985-3.174,12.589-5.584,19.297-7.71\r\n\t\tc5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807c-1.215-15.166-14.424-27.046-30.072-27.046\r\n\t\tc-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962c0.747-9.319,1.791-20.12,3.211-30.67\r\n\t\tc5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32H256c-41.093,0-79.215,16.208-104.591,45.341\r\n\t\tc-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618c-3.97-0.559-9.686-1.998-17.703-5.034\r\n\t\tc-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003c-1.027,12.818,8.235,24.393,17.47,28.783\r\n\t\tc4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703c4.147,2.639,4.147,4.168,4.147,5.182\r\n\t\tc0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311L16,360.603\r\n\t\tc0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518C495.822,370.982,496.021,362.074,495.998,360.389z M208,128c8.836,0,16,10.745,16,24\r\n\t\ts-7.164,24-16,24s-16-10.745-16-24S199.164,128,208,128z M311.615,205.698C296.368,220.725,276.617,229,256,229\r\n\t\tc-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tC314.799,197.531,314.762,202.597,311.615,205.698z M304,176c-8.836,0-16-10.746-16-24s7.164-24,16-24s16,10.746,16,24\r\n\t\tS312.836,176,304,176z"},"children":[{"name":"path","attribs":{"d":"M495.998,360.389l-0.189-14.501l-14.398-1.278c-15.413-1.396-43.8-7.219-54.301-16.9\r\n\t\tc-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186c4.985-3.174,12.589-5.584,19.297-7.71\r\n\t\tc5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807c-1.215-15.166-14.424-27.046-30.072-27.046\r\n\t\tc-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962c0.747-9.319,1.791-20.12,3.211-30.67\r\n\t\tc5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32H256c-41.093,0-79.215,16.208-104.591,45.341\r\n\t\tc-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618c-3.97-0.559-9.686-1.998-17.703-5.034\r\n\t\tc-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003c-1.027,12.818,8.235,24.393,17.47,28.783\r\n\t\tc4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703c4.147,2.639,4.147,4.168,4.147,5.182\r\n\t\tc0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311L16,360.603\r\n\t\tc0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518C495.822,370.982,496.021,362.074,495.998,360.389z M208,128c8.836,0,16,10.745,16,24\r\n\t\ts-7.164,24-16,24s-16-10.745-16-24S199.164,128,208,128z M311.615,205.698C296.368,220.725,276.617,229,256,229\r\n\t\tc-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tC314.799,197.531,314.762,202.597,311.615,205.698z M304,176c-8.836,0-16-10.746-16-24s7.164-24,16-24s16,10.746,16,24\r\n\t\tS312.836,176,304,176z"},"children":[]}]}]}]};exports.socialSnapchat=socialSnapchat;var socialTumblrOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M321.2,396.3c-11.8,0-22.4-2.8-31.5-8.3c-6.9-4.1-11.5-9.6-14-16.4c-2.6-6.9-3.6-22.3-3.6-46.4V224h96v-64h-96V48h-61.9\r\n\tc-2.7,21.5-7.5,44.7-14.5,58.6s-14,25.8-25.6,35.7c-11.6,9.9-25.6,17.9-41.9,23.3V224h48v140.4c0,19,2,33.5,5.9,43.5\r\n\tc4,10,11.1,19.5,21.4,28.4c10.3,8.9,22.8,15.7,37.3,20.5c14.6,4.8,31.4,7.2,50.4,7.2c16.7,0,30.3-1.7,44.7-5.1\r\n\tc14.4-3.4,30.5-9.3,48.2-17.6v-65.6C363.2,389.4,342.3,396.3,321.2,396.3z M368,431c-13.1,5.7-25.1,9.9-35.9,12.4\r\n\tc-13.1,3.1-25.6,4.6-41.1,4.6c-17.2,0-32.5-2.2-45.4-6.4c-12.5-4.1-23.2-10-31.9-17.5c-8.3-7.2-14-14.6-17-22.2\r\n\tc-2.2-5.5-4.8-16.6-4.8-37.6V208H144v-31.3c13.4-5.6,25.5-13,36.3-22.2c13.2-11.2,21.6-24.9,29.6-40.7c7.1-14,11.6-34,14.1-49.8h32\r\n\tv112h96v32h-96v117.1c0,34.6,2.4,46,4.6,52c3.8,10.3,10.8,18.6,21,24.6c11.7,7,25,10.5,39.7,10.5c15.7,0,31.3-3.3,46.7-9.8V431z"},"children":[]}]};exports.socialTumblrOutline=socialTumblrOutline;var socialTumblr={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M321.2,396.3c-11.8,0-22.4-2.8-31.5-8.3c-6.9-4.1-11.5-9.6-14-16.4c-2.6-6.9-3.6-22.3-3.6-46.4V224h96v-64h-96V48h-61.9\r\n\tc-2.7,21.5-7.5,44.7-14.5,58.6c-7,13.9-14,25.8-25.6,35.7c-11.6,9.9-25.6,17.9-41.9,23.3V224h48v140.4c0,19,2,33.5,5.9,43.5\r\n\tc4,10,11.1,19.5,21.4,28.4c10.3,8.9,22.8,15.7,37.3,20.5c14.6,4.8,31.4,7.2,50.4,7.2c16.7,0,30.3-1.7,44.7-5.1\r\n\tc14.4-3.4,30.5-9.3,48.2-17.6v-65.6C363.2,389.4,342.3,396.3,321.2,396.3z"},"children":[]}]};exports.socialTumblr=socialTumblr;var socialTux={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M254.7,101.3c-0.6,1-1.2,2-1.7,3.1c1.8-3.5,4.3-6.5,7.4-8.7C258.3,97,256.3,98.8,254.7,101.3\r\n\t\tC254.1,102.3,256.3,98.8,254.7,101.3z"},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M254.7,101.3c-0.6,1-1.2,2-1.7,3.1c1.8-3.5,4.3-6.5,7.4-8.7C258.3,97,256.3,98.8,254.7,101.3\r\n\t\tC254.1,102.3,256.3,98.8,254.7,101.3z"},"children":[]}]},{"name":"path","attribs":{"fill":"#010101","d":"M426.3,396c-6.7-4-13.2-11-12-18.8c2.3-15.3,2.5-21.5-0.2-25.8c-1.899-3.2-5.5-5-8.6-5.801\r\n\t\tc2-2.5,3.1-5.399,3.8-10.899c1.842-14.168-3.239-30.67-6.61-44.243c-4.445-17.9-10.319-34.014-20.432-49.522\r\n\t\tc-16.489-25.288-37.253-46.804-51.857-73.435c-9.7-29-4.301-47.1-4.801-66.2C324.7,64,298.7,32,261,32h-14c-37.5,0-58,26.9-58,60\r\n\t\tc0.697,16.666,1.352,33.333,2,50c0.769,19.756,1.98,37.667-8,55.3c-7.033,12.488-19.571,22.43-28.592,33.478\r\n\t\tc-9.525,11.665-13.06,23.669-17.859,37.619c-5.987,17.401-21.275,30.906-24.886,48.929c-1.658,8.271,2.726,17.857-0.83,24.693\r\n\t\tc-3.698,7.109-0.813,14.469-2.833,21.682c-3.505,11.729-20.731,10.729-30.215,11.508c-17.602,1.443-11.051,17.988-7.843,29.701\r\n\t\tc5.598,20.435-19.54,42.078,11.032,50.471c13.989,3.84,28.586,5.13,42.727,8.32c13.981,3.154,26.917,8.612,40.396,13.262\r\n\t\tc10.469,3.611,20.262,4.146,30.323-1.232c10.982-5.87,18.947-15.083,31.691-17c24.707-3.716,54.829-4.169,79.373,0.63\r\n\t\tc7.507,1.468,10.075,6.525,14.905,11.766c8.145,8.838,21.514,10.125,32.794,8.22c11.89-2.01,20.846-9.466,29.686-17.112\r\n\t\tc12.526-10.835,26.137-17.996,40.791-25.547c7.439-3.833,22.178-9.388,24.159-18.903C450.151,406.573,433.642,400.383,426.3,396z\r\n\t\t M202,451.3c-1.3,13-13.9,20.3-25.4,19.3c-19.502-1.649-37.86-12.237-57.164-15.75c-9.393-1.709-47.351-3.173-46.943-17.079\r\n\t\tc0.215-7.361,5.751-11.666,7.567-18.415c2.811-10.449-5.753-19.932-6.32-30.16c-0.447-8.081,10.73-7.607,16.288-8.053\r\n\t\tc8.761-0.702,19.157-2.012,23.572-11.043c1.6-3.3-0.5-15,1.9-21.8c3.527-10.155,15.489-8.949,23.3-4.899\r\n\t\tc17.762,9.067,28.943,35.546,38.533,51.821C187.058,411.728,204.045,430.843,202,451.3z M318.3,385.7\r\n\t\tc2.289,11.787,4.224,24.387,1.7,36.3c-2.016,9.516-8.562,15.614-12.7,24c-2.2-6.8,11.3-16.7,9.8-33.7\r\n\t\tc-0.042-0.475-0.947-10.882-1.036-10.834c-1.979,1.082-3.825,5.075-5.304,6.73c-4.809,5.383-10.771,9.658-16.729,13.677\r\n\t\tc-13.797,9.306-29.221,15.058-45.83,16.627c-21,2-38-10.5-38-10.5c2.517,8.305,8.992,21,1.1,28.3\r\n\t\tc1.743-15.648-4.876-28.06-11.6-41.7c46.374-24.639-41.363-64.397-53-79.8c-10.476-13.896-5.553-31.83-2.7-43.5\r\n\t\tc-3.443,13.775-3.959,41.956,14,46.8c7.922,2.169,5.605-37.071,5.984-41.463c1.58-18.312,7.721-35.997,18.343-51.015\r\n\t\tc3.399-4.806,1.863-9.533,2.673-15.322c1.693-10.668,7.295-20.547,13.488-29.225c5.169-7.243,1.735-12.618,3.014-21.055\r\n\t\tc0.727-4.795,5.118,3.193,5.798,4.279c4,6.5,16.7,22.7,24.7,22c13.277-1.161,24.692-15.938,36.015-22.046\r\n\t\tc3.591-1.937,14.41-5.242,15.866-9.632c1.768-5.33-12.666-0.161-14.114,0.583c-10.782,5.535-31.018,21.448-43.867,15.295\r\n\t\tc-8.762-4.195-10.691-14.994-17.2-20.5c15.4,13.6,21.5,10.5,27.6,9.1c9.665-2.182,18.797-6.486,27.8-10.5\r\n\t\tc4.217-1.88,20.107-4.041,22.301-8.7c2.745-5.834-5.05-6.726-8.068-3.58c-6.251,6.515-15.853,8.981-24.097,11.787\r\n\t\tc-18.885,6.427-37.644,9.131-51.835-8.607c-8.354-10.212,15.558-22.504,22.2-28.8c0,0,1-7.2-0.6-12.7c-1.9-6.5-7.8-9.3-11.9-8.1\r\n\t\tc-4.1,1.1-8,5.5-6.8,14.8c1,8.3,7,11,7,11s-2.7,3.5-5.2,4.7c0,0-0.8-0.3-3.5-6.3c-2.7-6-6.6-19.5-0.3-31.1\r\n\t\tc6.3-11.6,19.6-5.2,23.8,3.8c3.9,8.3,2.4,22.7,2.4,22.7c3.358-0.843,6.835-1.3,10.3-1.3c4.242,0,6.814,4.563,10.6,4.8\r\n\t\tc-0.635,0-0.564-18.124-0.233-20.078c1.099-6.49,4.112-13.619,9.933-17.222c16.087-11.491,34.6,3.916,34.6,21.2\r\n\t\tc0.024,4.486-0.137,9.215-1.199,13.6c-0.659,2.637-1.582,8.469-5.114,9.177c-1.145,0.23-10.683-0.431-7.985-3.277\r\n\t\tc12.807-12.812-1.822-38.207-17.4-24.5c-5.601,4.199-5.483,13.833-4.801,20c1.098,9.141,20.51,11.541,26.852,13.78\r\n\t\tc8.224,2.903,7.943,9.626,6.679,17.116c-1.9,11.26-2.815,18.792,4.381,28.214c7.344,9.616,12.929,20.086,15.915,31.878\r\n\t\tc1.483,5.859,1.665,10.843,5.621,15.57c5.983,7.151,10.619,14.805,13.291,23.817c5.225,17.621,6.513,35.422,6.162,53.625\r\n\t\tc-0.5,8.199-2.1,15,8.3,9.699c4-2,6.5-2.899,11-3.699c3.101-6.301,4.4-18.301,4.5-24.301c0.2-13.5-0.3-41.5-27.699-71.5\r\n\t\tc0,0,28.5,21.7,33,62c2.5,22.301-2,34.4-2,34.4c5.3,1.3,10.8,5.3,13.6,9.8c-0.133-0.22,1.038,1.748,1.179,1.864\r\n\t\tc-9.811-8.171-31.708-12.859-39.679,0.236c-2,3.3-3.1,7.6-3.2,11.699c-7.1-1.199-12.399,0-16.8,4.9\r\n\t\tC313.5,358.1,316.3,375.3,318.3,385.7C320.3,396,316.3,375.3,318.3,385.7z M220.6,124.9c-0.2-4.9-2.1-9-4.7-10.8\r\n\t\tc0.3-0.3,0.8-0.7,1.7-0.4c1.4,0.4,3.5,2.7,4.3,6.3c0.7,2.9,0.4,7.7-1.4,7.7C220.498,126.766,220.531,125.833,220.6,124.9\r\n\t\tC220.4,120,220.6,125.8,220.6,124.9z M275.3,112.9c0.4-0.3,1.101-0.6,2.3-0.3c1.801,0.4,4.4,2.8,5.301,6.2\r\n\t\tc0.699,2.8,0.1,7.4-2.2,7.3c-0.005-0.903,0.062-1.803,0.2-2.7C280.8,118.8,278.6,114.8,275.3,112.9\r\n\t\tC275.7,112.6,278.6,114.8,275.3,112.9z M412.4,432.9c-17.504,7.553-31.304,19.968-47.117,30.19\r\n\t\tc-13.824,8.937-38.156,8.313-40.022-12.879c-1.565-17.776,4.184-35.288,1.84-53.357c-1.587-12.239-8.534-28.906-2.301-40.854\r\n\t\tc2.7-5.1,8.101-5.5,12.5-4c3.193,13.267,13.932,23.6,28,23.6c17.031,0,23.542-14.008,34-24.5c3.4,0.2,7.4,1.101,8.8,4.801\r\n\t\tc2.301,5.8-1.899,17.5-1.8,22.3c0.3,15.7,9,19.2,26.4,29C448,416,436.9,422.3,412.4,432.9C388.3,443.3,436.9,422.3,412.4,432.9z"},"children":[{"name":"path","attribs":{"fill":"#010101","d":"M426.3,396c-6.7-4-13.2-11-12-18.8c2.3-15.3,2.5-21.5-0.2-25.8c-1.899-3.2-5.5-5-8.6-5.801\r\n\t\tc2-2.5,3.1-5.399,3.8-10.899c1.842-14.168-3.239-30.67-6.61-44.243c-4.445-17.9-10.319-34.014-20.432-49.522\r\n\t\tc-16.489-25.288-37.253-46.804-51.857-73.435c-9.7-29-4.301-47.1-4.801-66.2C324.7,64,298.7,32,261,32h-14c-37.5,0-58,26.9-58,60\r\n\t\tc0.697,16.666,1.352,33.333,2,50c0.769,19.756,1.98,37.667-8,55.3c-7.033,12.488-19.571,22.43-28.592,33.478\r\n\t\tc-9.525,11.665-13.06,23.669-17.859,37.619c-5.987,17.401-21.275,30.906-24.886,48.929c-1.658,8.271,2.726,17.857-0.83,24.693\r\n\t\tc-3.698,7.109-0.813,14.469-2.833,21.682c-3.505,11.729-20.731,10.729-30.215,11.508c-17.602,1.443-11.051,17.988-7.843,29.701\r\n\t\tc5.598,20.435-19.54,42.078,11.032,50.471c13.989,3.84,28.586,5.13,42.727,8.32c13.981,3.154,26.917,8.612,40.396,13.262\r\n\t\tc10.469,3.611,20.262,4.146,30.323-1.232c10.982-5.87,18.947-15.083,31.691-17c24.707-3.716,54.829-4.169,79.373,0.63\r\n\t\tc7.507,1.468,10.075,6.525,14.905,11.766c8.145,8.838,21.514,10.125,32.794,8.22c11.89-2.01,20.846-9.466,29.686-17.112\r\n\t\tc12.526-10.835,26.137-17.996,40.791-25.547c7.439-3.833,22.178-9.388,24.159-18.903C450.151,406.573,433.642,400.383,426.3,396z\r\n\t\t M202,451.3c-1.3,13-13.9,20.3-25.4,19.3c-19.502-1.649-37.86-12.237-57.164-15.75c-9.393-1.709-47.351-3.173-46.943-17.079\r\n\t\tc0.215-7.361,5.751-11.666,7.567-18.415c2.811-10.449-5.753-19.932-6.32-30.16c-0.447-8.081,10.73-7.607,16.288-8.053\r\n\t\tc8.761-0.702,19.157-2.012,23.572-11.043c1.6-3.3-0.5-15,1.9-21.8c3.527-10.155,15.489-8.949,23.3-4.899\r\n\t\tc17.762,9.067,28.943,35.546,38.533,51.821C187.058,411.728,204.045,430.843,202,451.3z M318.3,385.7\r\n\t\tc2.289,11.787,4.224,24.387,1.7,36.3c-2.016,9.516-8.562,15.614-12.7,24c-2.2-6.8,11.3-16.7,9.8-33.7\r\n\t\tc-0.042-0.475-0.947-10.882-1.036-10.834c-1.979,1.082-3.825,5.075-5.304,6.73c-4.809,5.383-10.771,9.658-16.729,13.677\r\n\t\tc-13.797,9.306-29.221,15.058-45.83,16.627c-21,2-38-10.5-38-10.5c2.517,8.305,8.992,21,1.1,28.3\r\n\t\tc1.743-15.648-4.876-28.06-11.6-41.7c46.374-24.639-41.363-64.397-53-79.8c-10.476-13.896-5.553-31.83-2.7-43.5\r\n\t\tc-3.443,13.775-3.959,41.956,14,46.8c7.922,2.169,5.605-37.071,5.984-41.463c1.58-18.312,7.721-35.997,18.343-51.015\r\n\t\tc3.399-4.806,1.863-9.533,2.673-15.322c1.693-10.668,7.295-20.547,13.488-29.225c5.169-7.243,1.735-12.618,3.014-21.055\r\n\t\tc0.727-4.795,5.118,3.193,5.798,4.279c4,6.5,16.7,22.7,24.7,22c13.277-1.161,24.692-15.938,36.015-22.046\r\n\t\tc3.591-1.937,14.41-5.242,15.866-9.632c1.768-5.33-12.666-0.161-14.114,0.583c-10.782,5.535-31.018,21.448-43.867,15.295\r\n\t\tc-8.762-4.195-10.691-14.994-17.2-20.5c15.4,13.6,21.5,10.5,27.6,9.1c9.665-2.182,18.797-6.486,27.8-10.5\r\n\t\tc4.217-1.88,20.107-4.041,22.301-8.7c2.745-5.834-5.05-6.726-8.068-3.58c-6.251,6.515-15.853,8.981-24.097,11.787\r\n\t\tc-18.885,6.427-37.644,9.131-51.835-8.607c-8.354-10.212,15.558-22.504,22.2-28.8c0,0,1-7.2-0.6-12.7c-1.9-6.5-7.8-9.3-11.9-8.1\r\n\t\tc-4.1,1.1-8,5.5-6.8,14.8c1,8.3,7,11,7,11s-2.7,3.5-5.2,4.7c0,0-0.8-0.3-3.5-6.3c-2.7-6-6.6-19.5-0.3-31.1\r\n\t\tc6.3-11.6,19.6-5.2,23.8,3.8c3.9,8.3,2.4,22.7,2.4,22.7c3.358-0.843,6.835-1.3,10.3-1.3c4.242,0,6.814,4.563,10.6,4.8\r\n\t\tc-0.635,0-0.564-18.124-0.233-20.078c1.099-6.49,4.112-13.619,9.933-17.222c16.087-11.491,34.6,3.916,34.6,21.2\r\n\t\tc0.024,4.486-0.137,9.215-1.199,13.6c-0.659,2.637-1.582,8.469-5.114,9.177c-1.145,0.23-10.683-0.431-7.985-3.277\r\n\t\tc12.807-12.812-1.822-38.207-17.4-24.5c-5.601,4.199-5.483,13.833-4.801,20c1.098,9.141,20.51,11.541,26.852,13.78\r\n\t\tc8.224,2.903,7.943,9.626,6.679,17.116c-1.9,11.26-2.815,18.792,4.381,28.214c7.344,9.616,12.929,20.086,15.915,31.878\r\n\t\tc1.483,5.859,1.665,10.843,5.621,15.57c5.983,7.151,10.619,14.805,13.291,23.817c5.225,17.621,6.513,35.422,6.162,53.625\r\n\t\tc-0.5,8.199-2.1,15,8.3,9.699c4-2,6.5-2.899,11-3.699c3.101-6.301,4.4-18.301,4.5-24.301c0.2-13.5-0.3-41.5-27.699-71.5\r\n\t\tc0,0,28.5,21.7,33,62c2.5,22.301-2,34.4-2,34.4c5.3,1.3,10.8,5.3,13.6,9.8c-0.133-0.22,1.038,1.748,1.179,1.864\r\n\t\tc-9.811-8.171-31.708-12.859-39.679,0.236c-2,3.3-3.1,7.6-3.2,11.699c-7.1-1.199-12.399,0-16.8,4.9\r\n\t\tC313.5,358.1,316.3,375.3,318.3,385.7C320.3,396,316.3,375.3,318.3,385.7z M220.6,124.9c-0.2-4.9-2.1-9-4.7-10.8\r\n\t\tc0.3-0.3,0.8-0.7,1.7-0.4c1.4,0.4,3.5,2.7,4.3,6.3c0.7,2.9,0.4,7.7-1.4,7.7C220.498,126.766,220.531,125.833,220.6,124.9\r\n\t\tC220.4,120,220.6,125.8,220.6,124.9z M275.3,112.9c0.4-0.3,1.101-0.6,2.3-0.3c1.801,0.4,4.4,2.8,5.301,6.2\r\n\t\tc0.699,2.8,0.1,7.4-2.2,7.3c-0.005-0.903,0.062-1.803,0.2-2.7C280.8,118.8,278.6,114.8,275.3,112.9\r\n\t\tC275.7,112.6,278.6,114.8,275.3,112.9z M412.4,432.9c-17.504,7.553-31.304,19.968-47.117,30.19\r\n\t\tc-13.824,8.937-38.156,8.313-40.022-12.879c-1.565-17.776,4.184-35.288,1.84-53.357c-1.587-12.239-8.534-28.906-2.301-40.854\r\n\t\tc2.7-5.1,8.101-5.5,12.5-4c3.193,13.267,13.932,23.6,28,23.6c17.031,0,23.542-14.008,34-24.5c3.4,0.2,7.4,1.101,8.8,4.801\r\n\t\tc2.301,5.8-1.899,17.5-1.8,22.3c0.3,15.7,9,19.2,26.4,29C448,416,436.9,422.3,412.4,432.9C388.3,443.3,436.9,422.3,412.4,432.9z"},"children":[]}]}]}]};exports.socialTux=socialTux;var socialTwitchOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M416,288l-64,64h-96.001L192,416v-64h-80V80h304V288z"},"children":[{"name":"path","attribs":{"d":"M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M416,288l-64,64h-96.001L192,416v-64h-80V80h304V288z"},"children":[]}]}]}]},{"name":"rect","attribs":{"x":"320","y":"143","width":"48","height":"129"},"children":[{"name":"rect","attribs":{"x":"320","y":"143","width":"48","height":"129"},"children":[]}]},{"name":"rect","attribs":{"x":"208","y":"143","width":"48","height":"129"},"children":[{"name":"rect","attribs":{"x":"208","y":"143","width":"48","height":"129"},"children":[]}]}]}]};exports.socialTwitchOutline=socialTwitchOutline;var socialTwitch={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M256,272h-48V143h48V272z M368,272h-48V143h48V272z"},"children":[{"name":"path","attribs":{"d":"M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M256,272h-48V143h48V272z M368,272h-48V143h48V272z"},"children":[]}]}]}]};exports.socialTwitch=socialTwitch;var socialTwitterOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M492,109.5c-17.4,7.7-36,12.9-55.6,15.3c20-12,35.4-31,42.6-53.6c-18.7,11.1-39.4,19.2-61.5,23.5\r\n\tC399.8,75.8,374.5,64,346.8,64c-53.5,0-96.8,43.4-96.8,96.9c0,7.6,0.8,15,2.5,22.1C172,179,100.5,140.4,52.8,81.7\r\n\tc-8.3,14.3-13.1,31-13.1,48.7c0,33.6,17.1,63.3,43.1,80.7C67,210.7,52,206.3,39,199c0,0.4,0,0.8,0,1.2c0,47,33.4,86.1,77.7,95\r\n\tc-8.1,2.2-16.7,3.4-25.5,3.4c-6.2,0-12.3-0.6-18.2-1.8c12.3,38.5,48.1,66.5,90.5,67.3c-33.1,26-74.9,41.5-120.3,41.5\r\n\tc-7.8,0-15.5-0.5-23.1-1.4C62.8,432,113.7,448,168.3,448C346.5,448,444,300.3,444,172.2c0-4.2-0.1-8.4-0.3-12.5\r\n\tC462.5,146,479,129,492,109.5z M434.2,146.7l-7,5.1l0.4,8.6c0.2,3.8,0.3,7.8,0.3,11.8c0,30.2-5.9,61.8-17,91.5\r\n\tc-11.7,31.2-28.5,59.4-50,83.8c-23,26.1-50.2,46.5-81.1,60.8c-33.8,15.7-71.3,23.6-111.5,23.6c-28.9,0-57.4-4.8-84.5-14.2\r\n\tc9.9-1.9,19.6-4.6,29.1-7.9c21.7-7.6,41.9-18.7,60.1-33l35.3-27.7l-44.9-0.8c-26.1-0.5-49.7-13.4-64.3-33.9\r\n\tc7.3-0.5,14.5-1.8,21.5-3.7l60.7-20.2l-61.7-10.9c-29.6-5.9-52.8-27.9-61.3-55.8c7.8,2,15.4,2.8,23.9,3.3c0,0,31.8,1.4,55.8-0.1\r\n\tc-13-6.2-46.4-29.2-46.4-29.2c-22.5-15.1-36-40.2-36-67.4c0-6.4,0.8-12.8,2.2-19c21.9,22.4,47,41.1,75.1,55.5\r\n\tc37,19.1,76.9,29.8,118.6,31.9l21.2,1.1l-4.8-20.7c-1.4-5.9-2.1-12.1-2.1-18.5c0-44.4,36.3-80.7,80.9-80.7c22.3,0,43.8,9.3,59,25.6\r\n\tl6.1,6.5l8.7-1.7c4.5-0.9,8.9-1.9,13.3-3.1c-1,1.4-5.7,6.1-11,10.8c-4.5,4-17.8,16.5-17.8,16.5s13,4.1,21.1,5\r\n\tc8.1,0.9,17.4-0.6,18.9-0.8C442.2,141.1,437.2,144.6,434.2,146.7z"},"children":[]}]};exports.socialTwitterOutline=socialTwitterOutline;var socialTwitter={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M492,109.5c-17.4,7.7-36,12.9-55.6,15.3c20-12,35.4-31,42.6-53.6c-18.7,11.1-39.4,19.2-61.5,23.5\r\n\tC399.8,75.8,374.6,64,346.8,64c-53.5,0-96.8,43.4-96.8,96.9c0,7.6,0.8,15,2.5,22.1c-80.5-4-151.9-42.6-199.6-101.3\r\n\tc-8.3,14.3-13.1,31-13.1,48.7c0,33.6,17.2,63.3,43.2,80.7C67,210.7,52,206.3,39,199c0,0.4,0,0.8,0,1.2c0,47,33.4,86.1,77.7,95\r\n\tc-8.1,2.2-16.7,3.4-25.5,3.4c-6.2,0-12.3-0.6-18.2-1.8c12.3,38.5,48.1,66.5,90.5,67.3c-33.1,26-74.9,41.5-120.3,41.5\r\n\tc-7.8,0-15.5-0.5-23.1-1.4C62.8,432,113.7,448,168.3,448C346.6,448,444,300.3,444,172.2c0-4.2-0.1-8.4-0.3-12.5\r\n\tC462.6,146,479,129,492,109.5z"},"children":[]}]};exports.socialTwitter=socialTwitter;var socialUsdOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M220.746,102.625c-7.788,1.683-17.44,4.813-24.641,8.529c-9.018,4.649-16.411,10.965-22.604,19.295\r\n\t\tc-6.706,9.002-10.105,19.989-10.105,32.657c0,17.916,6.197,32.288,18.405,42.702c9.334,7.983,21.504,14.431,36.687,19.165\r\n\t\tL240,230.667V100.244C240,100.244,231.766,100.244,220.746,102.625z M224,209.699c-12-3.743-23.912-9.088-32.051-16.048\r\n\t\tc-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102c4.58-6.161,9.912-11.038,16.88-14.631\r\n\t\tc6.18-3.189,13.84-5.565,20.84-7.138V209.699z"},"children":[{"name":"path","attribs":{"d":"M220.746,102.625c-7.788,1.683-17.44,4.813-24.641,8.529c-9.018,4.649-16.411,10.965-22.604,19.295\r\n\t\tc-6.706,9.002-10.105,19.989-10.105,32.657c0,17.916,6.197,32.288,18.405,42.702c9.334,7.983,21.504,14.431,36.687,19.165\r\n\t\tL240,230.667V100.244C240,100.244,231.766,100.244,220.746,102.625z M224,209.699c-12-3.743-23.912-9.088-32.051-16.048\r\n\t\tc-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102c4.58-6.161,9.912-11.038,16.88-14.631\r\n\t\tc6.18-3.189,13.84-5.565,20.84-7.138V209.699z"},"children":[]}]},{"name":"path","attribs":{"d":"M348.217,296.725c-8.432-8.289-18.002-14.296-28.414-17.84c-8.949-3.075-17.441-5.848-27.465-8.477L272,265.145v145.188\r\n\t\tc0,0,12.051-0.642,18.371-1.476s10.703-1.971,16.67-3.798c12.727-3.89,23.309-9.02,31.32-15.25\r\n\t\tc8.678-6.747,15.145-14.785,19.164-23.907c3.775-8.595,5.706-17.581,5.706-26.711C363.231,320.822,358.188,306.536,348.217,296.725\r\n\t\tz M342.902,359.471c-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577\r\n\t\tc-4.5,1.378-8.223,2.444-14.223,3.236v-107.11c10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116\r\n\t\tc6.785,6.676,10.309,17.03,10.309,31.06C347.172,346.042,345.834,352.797,342.902,359.471z"},"children":[{"name":"path","attribs":{"d":"M348.217,296.725c-8.432-8.289-18.002-14.296-28.414-17.84c-8.949-3.075-17.441-5.848-27.465-8.477L272,265.145v145.188\r\n\t\tc0,0,12.051-0.642,18.371-1.476s10.703-1.971,16.67-3.798c12.727-3.89,23.309-9.02,31.32-15.25\r\n\t\tc8.678-6.747,15.145-14.785,19.164-23.907c3.775-8.595,5.706-17.581,5.706-26.711C363.231,320.822,358.188,306.536,348.217,296.725\r\n\t\tz M342.902,359.471c-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577\r\n\t\tc-4.5,1.378-8.223,2.444-14.223,3.236v-107.11c10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116\r\n\t\tc6.785,6.676,10.309,17.03,10.309,31.06C347.172,346.042,345.834,352.797,342.902,359.471z"},"children":[]}]},{"name":"path","attribs":{"d":"M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M388.904,376.218c-7.623,12.34-17.873,22.619-30.457,30.55c-13.035,8.21-28.248,14.339-45.219,18.217\r\n\t\tc-9.059,2.071-17.285,3.564-26.654,4.566L272,431.08V464h-32v-33.244l-13.508-1.943c-9.256-1.307-18.671-2.968-26.271-4.938\r\n\t\tc-17.865-4.633-32.876-11.51-46.031-21.032c-12.845-9.283-22.77-20.551-30.408-34.967c-5.004-9.437-8.418-20.876-10.268-31.876\r\n\t\th36.714c1.529,8,4.162,16.837,7.804,23.869c6.324,12.239,14.979,21.914,26.441,29.823c10.145,7.017,23.81,12.64,35.676,15.724\r\n\t\tS240,408.667,240,408.667V257.874l-11.786-3.074c-4.952-1.263-11.074-2.583-16.558-3.96c-3.395-0.854-6.814-1.729-10.37-2.626\r\n\t\tl-0.033-0.017l-0.051-0.017c-14.952-3.64-27.533-8.472-37.411-14.365c-9.487-5.657-17.021-11.92-22.399-18.611\r\n\t\tc-5.271-6.56-9.029-13.533-11.17-20.722c-2.307-7.755-3.476-15.721-3.476-23.675c0-15.66,3.274-28.636,10.002-39.665\r\n\t\tc7.097-11.622,16.187-20.973,27.786-28.585c12.201-8.003,25.666-13.764,41.155-17.611c6.334-1.571,12.865-2.901,19.926-3.954\r\n\t\tL240,78.958V48h32v31.363l13.127,1.877c7.371,0.999,14.236,2.404,22.637,4.699c16.389,4.482,30.91,11.189,43.023,19.929\r\n\t\tc11.691,8.443,21.182,19.333,28.133,31.862c3.805,6.865,6.504,14.27,8.137,22.27h-38.119c-5.078-19-15.352-33.637-30.172-43.021\r\n\t\tc-9.254-5.861-17.561-9.215-27.373-12.251C281.766,101.75,272,101.25,272,101.25v137.142l12.529,2.951\r\n\t\tc7.631,1.837,14.184,3.644,21.453,5.415l3.92,0.938l0.812,0.19c11.373,2.78,19.651,4.799,24.558,6.096\r\n\t\tc11.084,3.275,20.8,7.721,28.851,13.204c8.078,5.513,14.895,11.853,20.236,18.828c5.291,6.925,9.264,14.393,11.801,22.179\r\n\t\tc2.562,7.898,3.863,15.91,3.863,23.812C400.023,349.395,396.283,364.271,388.904,376.218z"},"children":[{"name":"path","attribs":{"d":"M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M388.904,376.218c-7.623,12.34-17.873,22.619-30.457,30.55c-13.035,8.21-28.248,14.339-45.219,18.217\r\n\t\tc-9.059,2.071-17.285,3.564-26.654,4.566L272,431.08V464h-32v-33.244l-13.508-1.943c-9.256-1.307-18.671-2.968-26.271-4.938\r\n\t\tc-17.865-4.633-32.876-11.51-46.031-21.032c-12.845-9.283-22.77-20.551-30.408-34.967c-5.004-9.437-8.418-20.876-10.268-31.876\r\n\t\th36.714c1.529,8,4.162,16.837,7.804,23.869c6.324,12.239,14.979,21.914,26.441,29.823c10.145,7.017,23.81,12.64,35.676,15.724\r\n\t\tS240,408.667,240,408.667V257.874l-11.786-3.074c-4.952-1.263-11.074-2.583-16.558-3.96c-3.395-0.854-6.814-1.729-10.37-2.626\r\n\t\tl-0.033-0.017l-0.051-0.017c-14.952-3.64-27.533-8.472-37.411-14.365c-9.487-5.657-17.021-11.92-22.399-18.611\r\n\t\tc-5.271-6.56-9.029-13.533-11.17-20.722c-2.307-7.755-3.476-15.721-3.476-23.675c0-15.66,3.274-28.636,10.002-39.665\r\n\t\tc7.097-11.622,16.187-20.973,27.786-28.585c12.201-8.003,25.666-13.764,41.155-17.611c6.334-1.571,12.865-2.901,19.926-3.954\r\n\t\tL240,78.958V48h32v31.363l13.127,1.877c7.371,0.999,14.236,2.404,22.637,4.699c16.389,4.482,30.91,11.189,43.023,19.929\r\n\t\tc11.691,8.443,21.182,19.333,28.133,31.862c3.805,6.865,6.504,14.27,8.137,22.27h-38.119c-5.078-19-15.352-33.637-30.172-43.021\r\n\t\tc-9.254-5.861-17.561-9.215-27.373-12.251C281.766,101.75,272,101.25,272,101.25v137.142l12.529,2.951\r\n\t\tc7.631,1.837,14.184,3.644,21.453,5.415l3.92,0.938l0.812,0.19c11.373,2.78,19.651,4.799,24.558,6.096\r\n\t\tc11.084,3.275,20.8,7.721,28.851,13.204c8.078,5.513,14.895,11.853,20.236,18.828c5.291,6.925,9.264,14.393,11.801,22.179\r\n\t\tc2.562,7.898,3.863,15.91,3.863,23.812C400.023,349.395,396.283,364.271,388.904,376.218z"},"children":[]}]}]}]};exports.socialUsdOutline=socialUsdOutline;var socialUsd={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M224,209.699c-12-3.743-23.912-9.088-32.051-16.048c-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102\r\n\t\tc4.58-6.161,9.912-11.038,16.88-14.631c6.18-3.189,13.84-5.565,20.84-7.138V209.699z M342.902,359.471\r\n\t\tc-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577c-4.5,1.378-8.223,2.444-14.223,3.236v-107.11\r\n\t\tc10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116c6.785,6.676,10.309,17.03,10.309,31.06\r\n\t\tC347.172,346.042,345.834,352.797,342.902,359.471z"},"children":[{"name":"path","attribs":{"d":"M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M224,209.699c-12-3.743-23.912-9.088-32.051-16.048c-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102\r\n\t\tc4.58-6.161,9.912-11.038,16.88-14.631c6.18-3.189,13.84-5.565,20.84-7.138V209.699z M342.902,359.471\r\n\t\tc-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577c-4.5,1.378-8.223,2.444-14.223,3.236v-107.11\r\n\t\tc10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116c6.785,6.676,10.309,17.03,10.309,31.06\r\n\t\tC347.172,346.042,345.834,352.797,342.902,359.471z"},"children":[]}]}]}]};exports.socialUsd=socialUsd;var socialVimeoOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M476.9,114c-5-23.4-17.5-38.8-40.6-46.3c-7.4-2.4-16.7-3.7-26.9-3.7c-21.7,0-47.4,6-67.2,20.5\r\n\tc-29.9,21.8-47.6,59.7-53.8,83.8c12.2-5.3,20.8-7.1,31.9-7.1c2.2,0,4.6,0.1,7.1,0.2c15,0.8,24.5,12,24.9,25.3\r\n\tc0.3,9.8-0.2,18.7-3.6,27.7c-10.8,28.7-27.7,56.5-47.6,80.8c-2.9,3.6-6.4,6.9-10,9.9c-4.1,3.4-8,5-11.6,5c-5.2,0-9.9-3.5-13.8-10.2\r\n\tc-5.4-9.3-9-18.9-12.2-29.1c-12.4-39.7-16.8-80.9-23.8-121.6c-3.3-19.5-7-39.8-18-56.9c-10-15.4-24-22.6-41.5-22.6\r\n\tc-2.8,0-5.6,0.2-8.6,0.5c-14.7,1.8-36.9,17.5-47.8,26.4c0,0-56,46.9-81.8,71.4l21.2,27c0,0,17.9-12.5,27.5-18.3\r\n\tc2.9-1.8,6.1-2.8,9.2-2.8c2.9,0,5.7,0.9,8,3c4.5,3.9,9.6,9,12.3,14.1c5.7,10.7,11.2,21.9,14.7,33.4c13.2,44.3,25.5,88.7,37.8,133.3\r\n\tc6.3,22.8,13.9,44.2,28,63.6c13.2,18.2,26.9,26.8,44.3,26.8c8,0,16.8-1.8,26.6-5.4c25.4-9.1,46.6-26.2,66-43.9\r\n\tc33.1-30.2,59.1-65.4,85.5-101.2c20.4-27.7,37.3-55.7,51.4-87C478.5,179.8,484,147.3,476.9,114z M450,203.9\r\n\tc-13.3,29.4-29.1,56.2-49.7,84.1l-0.3,0.4c-26.4,35.7-51.3,69.5-83.1,98.5c-17.8,16.3-37.5,32.4-60.6,40.7c-8.3,3-15.2,4.4-21.2,4.4\r\n\tc-8.2,0-18.4-2.4-31.4-20.2c-13.4-18.4-20.2-39-25.5-58.4c-12.4-45.1-24.6-89.2-37.9-133.6c-3.9-13.2-10.2-25.8-15.9-36.4\r\n\tc-3.2-5.9-8.4-12-15.9-18.6c-5.2-4.5-11.6-6.9-18.6-6.9c-5.9,0-12,1.8-17.5,5.1c-4.5,2.7-10.5,6.7-15.9,10.3l-2.8-3.6\r\n\tc26.9-24.4,68.3-59.1,70.3-60.8C138.8,96.8,155.8,87,163.5,86c2.3-0.3,4.5-0.4,6.6-0.4c12.4,0,21.3,4.9,28.1,15.3\r\n\tc9.5,14.7,12.8,33.9,15.7,50.9c1.6,9.7,3.2,19.6,4.7,29.1c4.8,31.1,9.8,63.3,19.6,94.6c3,9.7,7,21.2,13.6,32.5\r\n\tc8.8,15,19.9,18.1,27.6,18.1c7.4,0,14.7-2.9,21.7-8.6c4.6-3.7,8.7-7.8,12.3-12.2c21.9-26.8,39.3-56.3,50.2-85.3\r\n\tc4.5-12,4.9-23.3,4.6-33.8c-0.6-22.4-17.4-39.6-40-40.9c-2.9-0.2-5.5-0.2-8-0.2c-2.2,0-4.3,0.1-6.3,0.2\r\n\tc8.8-18.1,21.7-36.3,37.7-47.9c15-10.9,36.6-17.5,57.8-17.5c8.3,0,16.1,1,21.9,2.9c17,5.5,26,15.8,29.9,34.4\r\n\tC467.2,145.1,463.4,174.2,450,203.9z"},"children":[]}]};exports.socialVimeoOutline=socialVimeoOutline;var socialVimeo={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"class":"st0","d":"M476.9,114c-5-23.4-17.5-38.8-40.6-46.3c-23.1-7.5-64.9-4.5-94.1,16.8c-29.9,21.8-47.6,59.7-53.8,83.8\r\n\tc14.7-6.3,24-7.7,39-6.9c15,0.8,24.5,12,24.9,25.3c0.3,9.8-0.2,18.7-3.6,27.7c-10.8,28.7-27.7,56.5-47.6,80.8\r\n\tc-2.9,3.6-6.4,6.9-10,9.9c-10.2,8.3-18.8,6.1-25.4-5.2c-5.4-9.3-9-18.9-12.2-29.1c-12.4-39.7-16.8-80.9-23.8-121.6\r\n\tc-3.3-19.5-7-39.8-18-56.9c-11.6-17.8-28.6-24.6-50-22c-14.7,1.8-36.9,17.5-47.8,26.4c0,0-56,46.9-81.8,71.4l21.2,27\r\n\tc0,0,17.9-12.5,27.5-18.3c5.7-3.4,12.4-4.1,17.2,0.2c4.5,3.9,9.6,9,12.3,14.1c5.7,10.7,11.2,21.9,14.7,33.4\r\n\tc13.2,44.3,25.5,88.7,37.8,133.3c6.3,22.8,13.9,44.2,28,63.6c19.3,26.6,39.6,32.7,70.9,21.5c25.4-9.1,46.6-26.2,66-43.9\r\n\tc33.1-30.2,59.1-65.4,85.5-101.2c20.4-27.7,37.3-55.7,51.4-87C478.5,179.8,484,147.3,476.9,114z"},"children":[]}]};exports.socialVimeo=socialVimeo;var socialWhatsappOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M209.877,154.114c-4.258-11.323-9.176-10.515-12.45-10.639\r\n\t\tc-3.277-0.121-6.146-0.061-10.573,0.011c-3.746,0.061-9.882,1.026-15.232,6.413c-5.357,5.378-20.366,18.312-21.404,45.725\r\n\t\tc-1.031,27.408,18.08,54.643,20.749,58.455c2.667,3.826,36.494,63.236,92.719,87.67c56.231,24.427,56.525,16.981,66.84,16.435\r\n\t\tc10.325-0.54,33.726-12.246,38.899-25.073c5.172-12.827,5.588-23.979,4.271-26.358c-1.316-2.371-5-3.911-10.51-6.9\r\n\t\tc-5.516-2.995-32.595-17.498-37.673-19.55c-5.081-2.044-8.787-3.108-12.742,2.329c-3.957,5.422-15.191,17.569-18.596,21.168\r\n\t\tc-3.42,3.6-6.711,3.934-12.226,0.93c-5.5-2.988-23.373-9.548-44.098-29.317c-16.126-15.38-26.711-34.043-29.779-39.736\r\n\t\tc-3.069-5.697-0.02-8.604,2.9-11.269c2.618-2.407,5.857-6.301,8.792-9.449c2.919-3.148,3.949-5.43,5.961-9.083\r\n\t\tc2.007-3.645,1.2-6.932-0.102-9.771C224.32,193.267,214.133,165.437,209.877,154.114z"},"children":[{"name":"path","attribs":{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M209.877,154.114c-4.258-11.323-9.176-10.515-12.45-10.639\r\n\t\tc-3.277-0.121-6.146-0.061-10.573,0.011c-3.746,0.061-9.882,1.026-15.232,6.413c-5.357,5.378-20.366,18.312-21.404,45.725\r\n\t\tc-1.031,27.408,18.08,54.643,20.749,58.455c2.667,3.826,36.494,63.236,92.719,87.67c56.231,24.427,56.525,16.981,66.84,16.435\r\n\t\tc10.325-0.54,33.726-12.246,38.899-25.073c5.172-12.827,5.588-23.979,4.271-26.358c-1.316-2.371-5-3.911-10.51-6.9\r\n\t\tc-5.516-2.995-32.595-17.498-37.673-19.55c-5.081-2.044-8.787-3.108-12.742,2.329c-3.957,5.422-15.191,17.569-18.596,21.168\r\n\t\tc-3.42,3.6-6.711,3.934-12.226,0.93c-5.5-2.988-23.373-9.548-44.098-29.317c-16.126-15.38-26.711-34.043-29.779-39.736\r\n\t\tc-3.069-5.697-0.02-8.604,2.9-11.269c2.618-2.407,5.857-6.301,8.792-9.449c2.919-3.148,3.949-5.43,5.961-9.083\r\n\t\tc2.007-3.645,1.2-6.932-0.102-9.771C224.32,193.267,214.133,165.437,209.877,154.114z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M260.062,64c50.249,0,97.478,19.402,132.982,54.632C428.482,153.796,448,200.533,448,250.232\r\n\t\t\tc0,49.694-19.518,96.43-54.956,131.596c-35.507,35.232-82.735,54.637-132.982,54.637c-31.806,0-63.24-8.023-90.906-23.201\r\n\t\t\tl-12.017-6.593l-13.063,4.149l-61.452,19.522l19.375-57.149l4.798-14.151l-7.771-12.763\r\n\t\t\tc-17.593-28.898-26.892-62.111-26.892-96.047c0-49.699,19.518-96.436,54.957-131.601C162.596,83.402,209.819,64,260.062,64\r\n\t\t\t M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.229,11.532,79.791,31.559,112.687L32,480l121.764-38.682\r\n\t\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32\r\n\t\t\tL260.062,32z"},"children":[{"name":"path","attribs":{"d":"M260.062,64c50.249,0,97.478,19.402,132.982,54.632C428.482,153.796,448,200.533,448,250.232\r\n\t\t\tc0,49.694-19.518,96.43-54.956,131.596c-35.507,35.232-82.735,54.637-132.982,54.637c-31.806,0-63.24-8.023-90.906-23.201\r\n\t\t\tl-12.017-6.593l-13.063,4.149l-61.452,19.522l19.375-57.149l4.798-14.151l-7.771-12.763\r\n\t\t\tc-17.593-28.898-26.892-62.111-26.892-96.047c0-49.699,19.518-96.436,54.957-131.601C162.596,83.402,209.819,64,260.062,64\r\n\t\t\t M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.229,11.532,79.791,31.559,112.687L32,480l121.764-38.682\r\n\t\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32\r\n\t\t\tL260.062,32z"},"children":[]}]}]}]}]}]};exports.socialWhatsappOutline=socialWhatsappOutline;var socialWhatsapp={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.23,11.532,79.79,31.559,112.687L32,480l121.764-38.682\r\n\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32z\r\n\t\t M369.424,333.11c-5.174,12.827-28.574,24.533-38.899,25.072c-10.314,0.547-10.608,7.994-66.84-16.434\r\n\t\tc-56.225-24.434-90.052-83.844-92.719-87.67c-2.669-3.812-21.78-31.047-20.749-58.455c1.038-27.413,16.047-40.346,21.404-45.725\r\n\t\tc5.351-5.387,11.486-6.352,15.232-6.413c4.428-0.072,7.296-0.132,10.573-0.011c3.274,0.124,8.192-0.685,12.45,10.639\r\n\t\tc4.256,11.323,14.443,39.153,15.746,41.989c1.302,2.839,2.108,6.126,0.102,9.771c-2.012,3.653-3.042,5.935-5.961,9.083\r\n\t\tc-2.935,3.148-6.174,7.042-8.792,9.449c-2.92,2.665-5.97,5.572-2.9,11.269c3.068,5.693,13.653,24.356,29.779,39.736\r\n\t\tc20.725,19.771,38.598,26.329,44.098,29.317c5.515,3.004,8.806,2.67,12.226-0.929c3.404-3.599,14.639-15.746,18.596-21.169\r\n\t\tc3.955-5.438,7.661-4.373,12.742-2.329c5.078,2.052,32.157,16.556,37.673,19.551c5.51,2.989,9.193,4.529,10.51,6.9\r\n\t\tC375.012,309.131,374.596,320.282,369.424,333.11z"},"children":[{"name":"path","attribs":{"d":"M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.23,11.532,79.79,31.559,112.687L32,480l121.764-38.682\r\n\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32z\r\n\t\t M369.424,333.11c-5.174,12.827-28.574,24.533-38.899,25.072c-10.314,0.547-10.608,7.994-66.84-16.434\r\n\t\tc-56.225-24.434-90.052-83.844-92.719-87.67c-2.669-3.812-21.78-31.047-20.749-58.455c1.038-27.413,16.047-40.346,21.404-45.725\r\n\t\tc5.351-5.387,11.486-6.352,15.232-6.413c4.428-0.072,7.296-0.132,10.573-0.011c3.274,0.124,8.192-0.685,12.45,10.639\r\n\t\tc4.256,11.323,14.443,39.153,15.746,41.989c1.302,2.839,2.108,6.126,0.102,9.771c-2.012,3.653-3.042,5.935-5.961,9.083\r\n\t\tc-2.935,3.148-6.174,7.042-8.792,9.449c-2.92,2.665-5.97,5.572-2.9,11.269c3.068,5.693,13.653,24.356,29.779,39.736\r\n\t\tc20.725,19.771,38.598,26.329,44.098,29.317c5.515,3.004,8.806,2.67,12.226-0.929c3.404-3.599,14.639-15.746,18.596-21.169\r\n\t\tc3.955-5.438,7.661-4.373,12.742-2.329c5.078,2.052,32.157,16.556,37.673,19.551c5.51,2.989,9.193,4.529,10.51,6.9\r\n\t\tC375.012,309.131,374.596,320.282,369.424,333.11z"},"children":[]}]}]}]};exports.socialWhatsapp=socialWhatsapp;var socialWindowsOutline={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M464,281v180.5l-216-31.3V281H464 M480,265H232v179l248,36V265L480,265z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M464,281v180.5l-216-31.3V281H464 M480,265H232v179l248,36V265L480,265z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M200,281v142.2L48,401.2V281H200 M216,265H32v150l184,26.7V265L216,265z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M200,281v142.2L48,401.2V281H200 M216,265H32v150l184,26.7V265L216,265z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M464,50v183H248V81.3l216-30.9 M480,32L232,67.4V249h248V32L480,32z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M464,50v183H248V81.3l216-30.9 M480,32L232,67.4V249h248V32L480,32z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M200,88v145H48V109.9l152-21.7 M216,69.7L32,96v153h184V69.7L216,69.7z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M200,88v145H48V109.9l152-21.7 M216,69.7L32,96v153h184V69.7L216,69.7z"},"children":[]}]}]}]};exports.socialWindowsOutline=socialWindowsOutline;var socialWindows={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M480,265H232v179l248,36V265L480,265z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M480,265H232v179l248,36V265L480,265z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M216,265H32v150l184,26.7V265L216,265z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M216,265H32v150l184,26.7V265L216,265z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M480,32L232,67.4V249h248V32L480,32z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M480,32L232,67.4V249h248V32L480,32z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M216,69.7L32,96v153h184V69.7L216,69.7z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M216,69.7L32,96v153h184V69.7L216,69.7z"},"children":[]}]}]}]};exports.socialWindows=socialWindows;var socialWordpressOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M255.9,64C150.2,64,64,150.2,64,256.1C64,361.9,150.2,448,255.9,448c8.5,0,16.8-0.5,24.9-1.8\r\n\tc85.7-11,153.8-78.7,165.3-164.1c1.3-8.5,1.9-17.2,1.9-26C448,150.2,361.8,64,255.9,64z M83.4,256.1c0-25,5.4-48.8,15-70.2\r\n\tl82.3,225.5C123.1,383.4,83.4,324.3,83.4,256.1z M278.3,427.3c-7.3,0.9-14.8,1.4-22.4,1.4c-16.9,0-33.2-2.5-48.6-7.1l18.8-55h0.1\r\n\tl32.7-95.5L312,416.5c0.4,0.8,0.9,1.6,1.3,2.3C302.1,422.8,290.4,425.6,278.3,427.3z M279.8,175.1c10.4-0.5,19.7-1.6,19.7-1.6\r\n\tc9.4-1,8.2-14.8-1.1-14.2c0,0-28,2.2-46,2.2c-16.9,0-45.5-2.2-45.5-2.2c-9.2-0.6-10.4,13.7-1,14.2c0,0,8.7,1.1,18.1,1.6l26.9,73.7\r\n\tl-37.8,113.3l-62.9-187c10.5-0.5,19.8-1.6,19.8-1.6c9.2-1,8.2-14.8-1.1-14.2c0,0-27.9,2.2-46,2.2c-3.3,0-7.1-0.1-11.1-0.2\r\n\tc30.8-46.8,83.9-77.7,144.1-77.7c45,0,85.9,17.2,116.6,45.2c-0.8,0-1.5-0.1-2.3-0.1c-17,0-29,14.8-29,30.7\r\n\tc0,14.2,8.2,26.2,16.9,40.4c6.6,11.5,14.3,26.3,14.3,47.6c0,14.8-4.4,33.4-13.1,55.7l-17.3,57.6L279.8,175.1z M342.7,405.3\r\n\tl13.7-39.7l39-112.8c9.9-24.6,13.1-44.3,13.1-61.8c0-6.3-0.4-12.3-1.1-17.8c13.5,24.6,21.2,52.8,21.2,82.9c0,8-0.5,15.8-1.5,23.5\r\n\tC419.7,333.3,387.6,379.2,342.7,405.3z"},"children":[]}]};exports.socialWordpressOutline=socialWordpressOutline;var socialWordpress={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M259,271.3L226.2,367h-0.1l-25.4,73.1c1.8,0.5,3.5,0.9,5.3,1.4c0.1,0,0.2,0,0.3,0c15.8,4.2,32.4,6.5,49.5,6.5\r\n\t\tc8.5,0,16.8-0.5,24.9-1.8c11.2-1.4,22-3.8,32.5-7.1c0,0,0,0,0,0c2.6-0.8,5.2-1.7,7.8-2.6c-2.8-6-8.8-19.3-9.1-19.9L259,271.3z"},"children":[{"name":"path","attribs":{"d":"M259,271.3L226.2,367h-0.1l-25.4,73.1c1.8,0.5,3.5,0.9,5.3,1.4c0.1,0,0.2,0,0.3,0c15.8,4.2,32.4,6.5,49.5,6.5\r\n\t\tc8.5,0,16.8-0.5,24.9-1.8c11.2-1.4,22-3.8,32.5-7.1c0,0,0,0,0,0c2.6-0.8,5.2-1.7,7.8-2.6c-2.8-6-8.8-19.3-9.1-19.9L259,271.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M80.8,180.5c-10,22.6-16.8,50.4-16.8,75.5c0,6.3,0.3,12.6,0.9,18.8c6.9,71.2,52.9,131,116.1,157.9c2.6,1.1,5.3,2.2,8,3.2\r\n\t\tL96,180.6C88,180.3,86.5,180.8,80.8,180.5z"},"children":[{"name":"path","attribs":{"d":"M80.8,180.5c-10,22.6-16.8,50.4-16.8,75.5c0,6.3,0.3,12.6,0.9,18.8c6.9,71.2,52.9,131,116.1,157.9c2.6,1.1,5.3,2.2,8,3.2\r\n\t\tL96,180.6C88,180.3,86.5,180.8,80.8,180.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M430.2,175.4c-4.3-9.3-9.4-18.2-15.1-26.6c-1.6-2.4-3.4-4.8-5.1-7.2c-21.5-28.8-50.8-51.4-84.9-64.6\r\n\t\tC303.7,68.6,280.3,64,255.9,64c-60.3,0-114.2,28-149.4,71.7c-6.5,8-12.3,16.6-17.5,25.6c14.2,0.1,31.8,0.1,33.8,0.1\r\n\t\tc18.1,0,46-2.2,46-2.2c9.4-0.6,10.4,13.1,1.1,14.2c0,0-9.4,1.1-19.8,1.6l62.9,187l37.8-113.3L224,175.1c-9.4-0.5-18.1-1.6-18.1-1.6\r\n\t\tc-9.4-0.5-8.2-14.8,1-14.2c0,0,28.5,2.2,45.5,2.2c18.1,0,46-2.2,46-2.2c9.3-0.6,10.5,13.1,1.1,14.2c0,0-9.3,1.1-19.7,1.6\r\n\t\tl62.3,185.6l17.3-57.6c8.7-22.4,13.1-40.9,13.1-55.7c0-21.3-7.7-36.1-14.3-47.6c-8.7-14.3-16.9-26.3-16.9-40.4\r\n\t\tc0-15.9,12-30.7,29-30.7c0.7,0,1.5,0,2.2,0c26.2-0.7,34.8,25.3,35.9,43c0,0,0,0.4,0,0.6c0.4,7.2,0.1,12.5,0.1,18.8\r\n\t\tc0,17.4-3.3,37.1-13.1,61.8l-39,112.8l-22.3,65.7c1.8-0.8,3.5-1.6,5.3-2.5c56.7-27.4,98-82,106.7-146.7c1.3-8.5,1.9-17.2,1.9-26\r\n\t\tC448,227.3,441.6,199.9,430.2,175.4z"},"children":[{"name":"path","attribs":{"d":"M430.2,175.4c-4.3-9.3-9.4-18.2-15.1-26.6c-1.6-2.4-3.4-4.8-5.1-7.2c-21.5-28.8-50.8-51.4-84.9-64.6\r\n\t\tC303.7,68.6,280.3,64,255.9,64c-60.3,0-114.2,28-149.4,71.7c-6.5,8-12.3,16.6-17.5,25.6c14.2,0.1,31.8,0.1,33.8,0.1\r\n\t\tc18.1,0,46-2.2,46-2.2c9.4-0.6,10.4,13.1,1.1,14.2c0,0-9.4,1.1-19.8,1.6l62.9,187l37.8-113.3L224,175.1c-9.4-0.5-18.1-1.6-18.1-1.6\r\n\t\tc-9.4-0.5-8.2-14.8,1-14.2c0,0,28.5,2.2,45.5,2.2c18.1,0,46-2.2,46-2.2c9.3-0.6,10.5,13.1,1.1,14.2c0,0-9.3,1.1-19.7,1.6\r\n\t\tl62.3,185.6l17.3-57.6c8.7-22.4,13.1-40.9,13.1-55.7c0-21.3-7.7-36.1-14.3-47.6c-8.7-14.3-16.9-26.3-16.9-40.4\r\n\t\tc0-15.9,12-30.7,29-30.7c0.7,0,1.5,0,2.2,0c26.2-0.7,34.8,25.3,35.9,43c0,0,0,0.4,0,0.6c0.4,7.2,0.1,12.5,0.1,18.8\r\n\t\tc0,17.4-3.3,37.1-13.1,61.8l-39,112.8l-22.3,65.7c1.8-0.8,3.5-1.6,5.3-2.5c56.7-27.4,98-82,106.7-146.7c1.3-8.5,1.9-17.2,1.9-26\r\n\t\tC448,227.3,441.6,199.9,430.2,175.4z"},"children":[]}]}]}]};exports.socialWordpress=socialWordpress;var socialYahooOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M384.6,68.4c-11.3,0-22.5-0.8-32.6-4.4l-96,160L160,64c-10.1,3.6-20.7,4.4-32,4.4c-11.1,0-22.1-0.9-32-4.4l128,212.7V448\r\n\tc10-3.5,20.8-4.4,32-4.4s22,0.9,32,4.4V277L416,64C406.1,67.4,395.7,68.4,384.6,68.4z M274.2,268.5l-2.2,4v4.4v151.3\r\n\tc-5-0.6-11.2-0.7-16-0.7c-4.8,0-10,0.1-16,0.7V276.7v-4.4l-2.4-3.8L127,84.4c0.3,0,0.7,0,1,0c7.6,0,16-0.3,24.7-1.9l89.8,149.8\r\n\tl13.4,22.8l14-22.9l89.8-149.9c9,1.6,17.6,1.7,24.8,1.7c0.2,0,0.3,0,0.5,0L274.2,268.5z"},"children":[]}]};exports.socialYahooOutline=socialYahooOutline;var socialYahoo={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M384.6,68.4c-11.3,0-22.5-0.8-32.6-4.4l-96,160L160,64c-10.1,3.6-20.7,4.4-32,4.4c-11.1,0-22.1-0.9-32-4.4l128,212.7V448\r\n\tc10-3.5,20.8-4.4,32-4.4s22,0.9,32,4.4V277L416,64C406.1,67.4,395.7,68.4,384.6,68.4z"},"children":[]}]};exports.socialYahoo=socialYahoo;var socialYenOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,32h-80L256,253.128L144,32H64l112.368,208H128v48h73.564L216,319v17h-88v48h88v96h80v-96h88v-48h-88v-17l14.891-31H384\r\n\tv-48h-48.289L448,32z M368,256v16h-67l-21,43v37h88v16h-88v96h-48v-96h-88v-16h88v-35.75L212,272h-68v-16h59.197l-12.752-23.605\r\n\tL90.829,48H134l122,240L378,48h43h0.18l-99.548,184.399L308.891,256H368z"},"children":[]}]};exports.socialYenOutline=socialYenOutline;var socialYen={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M448,32h-80L256,253.128L144,32H64l112.368,208H128v48h73.564L216,319v17h-88v48h88v96h80v-96h88v-48h-88v-17l14.891-31H384\r\n\tv-48h-48.289L448,32z"},"children":[]}]};exports.socialYen=socialYen;var socialYoutubeOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M265,96c65.3,0,118.7,1.1,168.1,3.3l0.7,0h0.7c23.1,0,42,22,42,49.1v1.1l0.1,1.1c2.3,34,3.4,69.3,3.4,104.9v0v0\r\n\t\t\tc0.1,35.6-1.1,70.9-3.4,104.9l-0.1,1.1v1.1c0,13.8-4.7,26.6-13.4,36.1c-7.8,8.6-18,13.4-28.6,13.4h-0.8l-0.8,0\r\n\t\t\tc-52.9,2.5-108.8,3.8-166.4,3.8c-3.5,0-7.1,0-10.6,0H256h-0.1c-3.6,0-7.2,0-10.8,0c-57.8,0-113.7-1.3-166.2-3.7l-0.8,0h-0.8\r\n\t\t\tc-10.6,0-20.7-4.8-28.5-13.4c-8.6-9.5-13.4-22.3-13.4-36.1v-1.1l-0.1-1.1c-2.4-34.1-3.5-69.4-3.3-104.7v-0.1v-0.1\r\n\t\t\tc-0.1-35.3,1-70.5,3.3-104.6l0.1-1.1v-1.1c0-27.2,18.8-49.3,41.9-49.3H78l0.7,0c49.5-2.3,102.9-3.3,168.2-3.3h9H265 M265,64\r\n\t\t\tc-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,0.8-169.6,3.3c-40.8,0-73.9,36.3-73.9,81.3C1,184.4-0.1,220,0,255.7\r\n\t\t\tc-0.1,35.7,0.9,71.3,3.4,107c0,45,33.1,81.6,73.9,81.6c54.8,2.6,110.7,3.8,167.8,3.8c3.6,0,7.3,0,10.9,0c3.6,0,7.2,0,10.7,0\r\n\t\t\tc57.1,0,113-1.2,167.9-3.8c40.9,0,74-36.6,74-81.6c2.4-35.7,3.5-71.4,3.4-107.1c0.1-35.7-1-71.3-3.4-107.1c0-45-33.1-81.1-74-81.1\r\n\t\t\tC379.2,64.8,322.7,64,265,64L265,64z"},"children":[{"name":"path","attribs":{"d":"M265,96c65.3,0,118.7,1.1,168.1,3.3l0.7,0h0.7c23.1,0,42,22,42,49.1v1.1l0.1,1.1c2.3,34,3.4,69.3,3.4,104.9v0v0\r\n\t\t\tc0.1,35.6-1.1,70.9-3.4,104.9l-0.1,1.1v1.1c0,13.8-4.7,26.6-13.4,36.1c-7.8,8.6-18,13.4-28.6,13.4h-0.8l-0.8,0\r\n\t\t\tc-52.9,2.5-108.8,3.8-166.4,3.8c-3.5,0-7.1,0-10.6,0H256h-0.1c-3.6,0-7.2,0-10.8,0c-57.8,0-113.7-1.3-166.2-3.7l-0.8,0h-0.8\r\n\t\t\tc-10.6,0-20.7-4.8-28.5-13.4c-8.6-9.5-13.4-22.3-13.4-36.1v-1.1l-0.1-1.1c-2.4-34.1-3.5-69.4-3.3-104.7v-0.1v-0.1\r\n\t\t\tc-0.1-35.3,1-70.5,3.3-104.6l0.1-1.1v-1.1c0-27.2,18.8-49.3,41.9-49.3H78l0.7,0c49.5-2.3,102.9-3.3,168.2-3.3h9H265 M265,64\r\n\t\t\tc-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,0.8-169.6,3.3c-40.8,0-73.9,36.3-73.9,81.3C1,184.4-0.1,220,0,255.7\r\n\t\t\tc-0.1,35.7,0.9,71.3,3.4,107c0,45,33.1,81.6,73.9,81.6c54.8,2.6,110.7,3.8,167.8,3.8c3.6,0,7.3,0,10.9,0c3.6,0,7.2,0,10.7,0\r\n\t\t\tc57.1,0,113-1.2,167.9-3.8c40.9,0,74-36.6,74-81.6c2.4-35.7,3.5-71.4,3.4-107.1c0.1-35.7-1-71.3-3.4-107.1c0-45-33.1-81.1-74-81.1\r\n\t\t\tC379.2,64.8,322.7,64,265,64L265,64z"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M207,353.8V157.4l145,98.2L207,353.8z"},"children":[{"name":"path","attribs":{"d":"M207,353.8V157.4l145,98.2L207,353.8z"},"children":[]}]}]}]}]}]};exports.socialYoutubeOutline=socialYoutubeOutline;var socialYoutube={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M508.6,148.8c0-45-33.1-81.2-74-81.2C379.2,65,322.7,64,265,64c-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,1-169.6,3.6\r\n\t\tc-40.8,0-73.9,36.4-73.9,81.4C1,184.6-0.1,220.2,0,255.8C-0.1,291.4,1,327,3.4,362.7c0,45,33.1,81.5,73.9,81.5\r\n\t\tc58.2,2.7,117.9,3.9,178.6,3.8c60.8,0.2,120.3-1,178.6-3.8c40.9,0,74-36.5,74-81.5c2.4-35.7,3.5-71.3,3.4-107\r\n\t\tC512.1,220.1,511,184.5,508.6,148.8z M207,353.9V157.4l145,98.2L207,353.9z"},"children":[{"name":"path","attribs":{"d":"M508.6,148.8c0-45-33.1-81.2-74-81.2C379.2,65,322.7,64,265,64c-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,1-169.6,3.6\r\n\t\tc-40.8,0-73.9,36.4-73.9,81.4C1,184.6-0.1,220.2,0,255.8C-0.1,291.4,1,327,3.4,362.7c0,45,33.1,81.5,73.9,81.5\r\n\t\tc58.2,2.7,117.9,3.9,178.6,3.8c60.8,0.2,120.3-1,178.6-3.8c40.9,0,74-36.5,74-81.5c2.4-35.7,3.5-71.3,3.4-107\r\n\t\tC512.1,220.1,511,184.5,508.6,148.8z M207,353.9V157.4l145,98.2L207,353.9z"},"children":[]}]}]}]};exports.socialYoutube=socialYoutube;var soupCanOutline={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M255.82,144c88.269,0,159.824-28.654,159.824-64S344.089,16,255.82,16C167.552,16,95.997,44.654,95.997,80\r\n\t\tS167.552,144,255.82,144z M255.82,33.041c69.729,0,126.26,19.234,126.26,42.959s-56.531,42.959-126.26,42.959\r\n\t\tc-69.729,0-126.258-19.234-126.258-42.959S186.091,33.041,255.82,33.041z"},"children":[{"name":"path","attribs":{"d":"M255.82,144c88.269,0,159.824-28.654,159.824-64S344.089,16,255.82,16C167.552,16,95.997,44.654,95.997,80\r\n\t\tS167.552,144,255.82,144z M255.82,33.041c69.729,0,126.26,19.234,126.26,42.959s-56.531,42.959-126.26,42.959\r\n\t\tc-69.729,0-126.258-19.234-126.258-42.959S186.091,33.041,255.82,33.041z"},"children":[]}]},{"name":"path","attribs":{"d":"M256.57,160c-88.269,0-160.567-28.654-160.567-64c0,0-0.003,33.999,7.997,40v240c0,35.346,63.732,64,152,64\r\n\t\tc88.269,0,152-28.654,152-64V136c8-7.438,7.708-34.853,7.817-40C414.665,130.946,344.116,160,256.57,160z M376,375.588\r\n\t\tc0,2.232-7.961,10.682-29.423,18.688C322.853,403.126,290.812,408,256.273,408c-34.539,0-66.83-4.874-90.554-13.725\r\n\t\tC144.257,386.27,137,377.82,136,375.588v-79.564c18,9.721,42.742,17.115,72.156,20.979l1.588,0.237\r\n\t\tC215.487,337.308,233.936,352,255.826,352c21.89,0,40.338-14.689,46.084-34.754l1.755-0.244\r\n\t\tC333.08,313.139,358,305.744,376,296.023V375.588z M376,264.023c-18,9.831-43.476,17.284-73.325,21.11l-2.61,0.195\r\n\t\tC292.791,268.097,275.723,256,255.859,256c-19.867,0-36.919,12.102-44.19,29.34l-2.514-0.206\r\n\t\tc-29.85-3.826-55.155-11.279-73.155-21.11v-91.265C170,185.25,211.923,192,256.499,192C300.665,192,343,185.287,376,173.045\r\n\t\tV264.023z"},"children":[{"name":"path","attribs":{"d":"M256.57,160c-88.269,0-160.567-28.654-160.567-64c0,0-0.003,33.999,7.997,40v240c0,35.346,63.732,64,152,64\r\n\t\tc88.269,0,152-28.654,152-64V136c8-7.438,7.708-34.853,7.817-40C414.665,130.946,344.116,160,256.57,160z M376,375.588\r\n\t\tc0,2.232-7.961,10.682-29.423,18.688C322.853,403.126,290.812,408,256.273,408c-34.539,0-66.83-4.874-90.554-13.725\r\n\t\tC144.257,386.27,137,377.82,136,375.588v-79.564c18,9.721,42.742,17.115,72.156,20.979l1.588,0.237\r\n\t\tC215.487,337.308,233.936,352,255.826,352c21.89,0,40.338-14.689,46.084-34.754l1.755-0.244\r\n\t\tC333.08,313.139,358,305.744,376,296.023V375.588z M376,264.023c-18,9.831-43.476,17.284-73.325,21.11l-2.61,0.195\r\n\t\tC292.791,268.097,275.723,256,255.859,256c-19.867,0-36.919,12.102-44.19,29.34l-2.514-0.206\r\n\t\tc-29.85-3.826-55.155-11.279-73.155-21.11v-91.265C170,185.25,211.923,192,256.499,192C300.665,192,343,185.287,376,173.045\r\n\t\tV264.023z"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M274.002,463.58"},"children":[{"name":"path","attribs":{"d":"M274.002,463.58"},"children":[]}]},{"name":"path","attribs":{"d":"M256.272,464c0.293,0,0.583-0.006,0.876-0.007c-0.351,0.001-0.699,0.005-1.051,0.005\r\n\t\t\tC256.156,463.998,256.214,464,256.272,464z"},"children":[{"name":"path","attribs":{"d":"M256.272,464c0.293,0,0.583-0.006,0.876-0.007c-0.351,0.001-0.699,0.005-1.051,0.005\r\n\t\t\tC256.156,463.998,256.214,464,256.272,464z"},"children":[]}]},{"name":"path","attribs":{"d":"M408,415.999V400c0,36.001-63.432,64-152,64c-88.569,0-152-28.654-152-64v15.999L96.261,432\r\n\t\t\tc0,6.994,2.938,13.725,8.117,20.025C125.37,477.562,185.471,496,256.273,496c70.801,0,130.87-18.438,151.863-43.975\r\n\t\t\tc5.18-6.301,7.923-13.031,7.923-20.025L408,415.999z"},"children":[{"name":"path","attribs":{"d":"M408,415.999V400c0,36.001-63.432,64-152,64c-88.569,0-152-28.654-152-64v15.999L96.261,432\r\n\t\t\tc0,6.994,2.938,13.725,8.117,20.025C125.37,477.562,185.471,496,256.273,496c70.801,0,130.87-18.438,151.863-43.975\r\n\t\t\tc5.18-6.301,7.923-13.031,7.923-20.025L408,415.999z"},"children":[]}]}]}]}]}]};exports.soupCanOutline=soupCanOutline;var soupCan={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"ellipse","attribs":{"cx":"256","cy":"80","rx":"160","ry":"64"},"children":[{"name":"ellipse","attribs":{"cx":"256","cy":"80","rx":"160","ry":"64"},"children":[]}]},{"name":"path","attribs":{"d":"M256,440c88.365,0,152-28.654,152-64V248c0,28.581-41.612,52.783-104.26,61.002C301.238,333.16,280.82,352,256,352\r\n\t\ts-45.238-18.84-47.74-42.998C145.612,300.783,104,276.581,104,248v128C104,411.346,167.634,440,256,440z"},"children":[{"name":"path","attribs":{"d":"M256,440c88.365,0,152-28.654,152-64V248c0,28.581-41.612,52.783-104.26,61.002C301.238,333.16,280.82,352,256,352\r\n\t\ts-45.238-18.84-47.74-42.998C145.612,300.783,104,276.581,104,248v128C104,411.346,167.634,440,256,440z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,160c-88.366,0-160-28.654-160-64c0,0,0,32.834,8,40v96c0,28.732,42.049,53.042,105.25,61.134\r\n\t\tC214.176,271.861,233.229,256,256,256s41.824,15.861,46.75,37.134C365.951,285.042,408,260.732,408,232v-96c8-8.25,8-40,8-40\r\n\t\tC416,131.346,344.365,160,256,160z"},"children":[{"name":"path","attribs":{"d":"M256,160c-88.366,0-160-28.654-160-64c0,0,0,32.834,8,40v96c0,28.732,42.049,53.042,105.25,61.134\r\n\t\tC214.176,271.861,233.229,256,256,256s41.824,15.861,46.75,37.134C365.951,285.042,408,260.732,408,232v-96c8-8.25,8-40,8-40\r\n\t\tC416,131.346,344.365,160,256,160z"},"children":[]}]},{"name":"path","attribs":{"d":"M408,392c0,35.346-63.635,64-152,64c-88.366,0-152-28.654-152-64v23.999L96,432c0,6.994,2.815,13.725,8,20.025\r\n\t\tC125.016,477.562,185.121,496,256,496c70.879,0,130.984-18.438,152-43.975c5.186-6.301,8-13.031,8-20.025l-8-16.001V392z"},"children":[{"name":"path","attribs":{"d":"M408,392c0,35.346-63.635,64-152,64c-88.366,0-152-28.654-152-64v23.999L96,432c0,6.994,2.815,13.725,8,20.025\r\n\t\tC125.016,477.562,185.121,496,256,496c70.879,0,130.984-18.438,152-43.975c5.186-6.301,8-13.031,8-20.025l-8-16.001V392z"},"children":[]}]}]}]};exports.soupCan=soupCan;var speakerphone={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M70.9,181.5c0-41,25-76.5,60.6-91.5h-7.7c-41.1,0-75.1,32.8-81.1,75.2c-6,1-10.7,7.9-10.7,16.1c0,8.6,5.1,15.4,11.6,15.9\r\n\t\tc7.2,36.4,35.1,65.8,69.7,68.8c0,0,0.1,0,0.1,0c1.4,0,2.8,0.6,4.2,0.9c1.1,0.2,2.2,0.4,3.3,0.7C91,250.5,70.9,218.4,70.9,181.5z"},"children":[{"name":"path","attribs":{"d":"M70.9,181.5c0-41,25-76.5,60.6-91.5h-7.7c-41.1,0-75.1,32.8-81.1,75.2c-6,1-10.7,7.9-10.7,16.1c0,8.6,5.1,15.4,11.6,15.9\r\n\t\tc7.2,36.4,35.1,65.8,69.7,68.8c0,0,0.1,0,0.1,0c1.4,0,2.8,0.6,4.2,0.9c1.1,0.2,2.2,0.4,3.3,0.7C91,250.5,70.9,218.4,70.9,181.5z"},"children":[]}]},{"name":"path","attribs":{"d":"M465.1,91c-1.1-2.9-2.3-5.6-3.5-8.3c-6.5-14.4-14.4-26-23.4-34.6C427,37.6,414.1,32,400.8,32c-8.3,0-16.4,2.2-24.1,6.4\r\n\t\tc0,0,0,0-0.1,0c-1.2,0.7-2.4,1.3-3.6,2c-49,29-104.1,46.2-162.6,49.4c-6.5,0.4-13,0.2-19.5,0.2h-42.3c-34,15-59,50.5-59,91.5\r\n\t\tc0,36.8,19.2,69.1,47.8,86.1c13,10.9,41.7,11.7,40,23.9c-1.9,13.2-5.5,21.9-7.8,30.7c-1.3,4.8-23.6,72.9-25.3,144.7\r\n\t\tc0,2,0,3.7,0.2,6.6c0.2,2.9,2.2,6.4,8.5,6.4h76.8c6.6,0,9.7-3.3,9.3-9.3c-0.2-1.9-0.6-4.3-0.8-6.5c-2.4-23.1-4.6-49.8-3.3-81.6\r\n\t\tc1.3-34,5.2-51.9,7-61.3c2.1-10.4,7.6-22.4,12.1-30.3c30.8,0.9,92.9,19.3,115.1,28.9c0,0,7.2,3.4,10.1,5.2c7,3.4,14.2,5.1,21.6,5.1\r\n\t\tc0.9,0,1.8,0,2.7-0.1c12.3-0.7,24.2-9.7,34.7-19.5c9.1-8.5,16.9-20.2,23.4-34.6c1.2-2.8,2.4-5.6,3.5-8.6\r\n\t\tc9.6-25,14.8-55.9,14.8-88.1C480,147,474.8,116,465.1,91z M442,267.5c-7.8,18.5-18.2,33.3-29.5,33.3c-11.3,0-21.6-14.7-29.4-33.3\r\n\t\tc-9.1-21.6-14.9-53.1-14.9-88.1c0-35.2,5.8-66.8,15-88.4c7.8-18.4,18.1-29.5,29.3-29.5c11.3,0,21.5,11.2,29.4,29.5\r\n\t\tc9.2,21.6,15,53.2,15,88.4C456.9,214.4,451.1,245.9,442,267.5z"},"children":[{"name":"path","attribs":{"d":"M465.1,91c-1.1-2.9-2.3-5.6-3.5-8.3c-6.5-14.4-14.4-26-23.4-34.6C427,37.6,414.1,32,400.8,32c-8.3,0-16.4,2.2-24.1,6.4\r\n\t\tc0,0,0,0-0.1,0c-1.2,0.7-2.4,1.3-3.6,2c-49,29-104.1,46.2-162.6,49.4c-6.5,0.4-13,0.2-19.5,0.2h-42.3c-34,15-59,50.5-59,91.5\r\n\t\tc0,36.8,19.2,69.1,47.8,86.1c13,10.9,41.7,11.7,40,23.9c-1.9,13.2-5.5,21.9-7.8,30.7c-1.3,4.8-23.6,72.9-25.3,144.7\r\n\t\tc0,2,0,3.7,0.2,6.6c0.2,2.9,2.2,6.4,8.5,6.4h76.8c6.6,0,9.7-3.3,9.3-9.3c-0.2-1.9-0.6-4.3-0.8-6.5c-2.4-23.1-4.6-49.8-3.3-81.6\r\n\t\tc1.3-34,5.2-51.9,7-61.3c2.1-10.4,7.6-22.4,12.1-30.3c30.8,0.9,92.9,19.3,115.1,28.9c0,0,7.2,3.4,10.1,5.2c7,3.4,14.2,5.1,21.6,5.1\r\n\t\tc0.9,0,1.8,0,2.7-0.1c12.3-0.7,24.2-9.7,34.7-19.5c9.1-8.5,16.9-20.2,23.4-34.6c1.2-2.8,2.4-5.6,3.5-8.6\r\n\t\tc9.6-25,14.8-55.9,14.8-88.1C480,147,474.8,116,465.1,91z M442,267.5c-7.8,18.5-18.2,33.3-29.5,33.3c-11.3,0-21.6-14.7-29.4-33.3\r\n\t\tc-9.1-21.6-14.9-53.1-14.9-88.1c0-35.2,5.8-66.8,15-88.4c7.8-18.4,18.1-29.5,29.3-29.5c11.3,0,21.5,11.2,29.4,29.5\r\n\t\tc9.2,21.6,15,53.2,15,88.4C456.9,214.4,451.1,245.9,442,267.5z"},"children":[]}]}]}]};exports.speakerphone=speakerphone;var speedometer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M344,256l-84.4,64.2c-1.2-0.1-2.4-0.2-3.6-0.2c-17.7,0-32,14.3-32,32c0,17.7,14.3,32,32,32c17.7,0,32-14.3,32-32\r\n\t\tc0-1.2-0.1-2.4-0.2-3.6L352,264L344,256z"},"children":[{"name":"path","attribs":{"d":"M344,256l-84.4,64.2c-1.2-0.1-2.4-0.2-3.6-0.2c-17.7,0-32,14.3-32,32c0,17.7,14.3,32,32,32c17.7,0,32-14.3,32-32\r\n\t\tc0-1.2-0.1-2.4-0.2-3.6L352,264L344,256z"},"children":[]}]},{"name":"path","attribs":{"d":"M256,96C132.3,96,32,196.3,32,320c0,34.4,7.8,66.9,21.6,96h36.1c-15.4-26.6-24.2-56.6-25.5-88H96v-16H64.2\r\n\t\tc1.2-28.8,8.7-56.5,21.8-81.4l27.5,15.9l8-13.9L94,216.8c7.4-11.6,16.2-22.6,26.2-32.6c10.2-10.1,21.3-19,33.1-26.5l15.8,27.3\r\n\t\tl13.9-8l-15.8-27.3c24.8-13,52.2-20.3,80.8-21.5V160h16v-31.8c28.6,1.2,56,8.6,80.8,21.5L329.1,177l13.9,8l15.8-27.3\r\n\t\tc11.8,7.5,22.9,16.4,33.1,26.5c10,10,18.7,20.9,26.2,32.6l-27.4,15.8l8,13.9l27.5-15.9c13.1,24.9,20.6,52.6,21.8,81.4H416v16h31.8\r\n\t\tc-1.3,31.4-10.1,61.4-25.5,88h36.1c13.8-29.1,21.6-61.6,21.6-96C480,196.3,379.7,96,256,96z"},"children":[{"name":"path","attribs":{"d":"M256,96C132.3,96,32,196.3,32,320c0,34.4,7.8,66.9,21.6,96h36.1c-15.4-26.6-24.2-56.6-25.5-88H96v-16H64.2\r\n\t\tc1.2-28.8,8.7-56.5,21.8-81.4l27.5,15.9l8-13.9L94,216.8c7.4-11.6,16.2-22.6,26.2-32.6c10.2-10.1,21.3-19,33.1-26.5l15.8,27.3\r\n\t\tl13.9-8l-15.8-27.3c24.8-13,52.2-20.3,80.8-21.5V160h16v-31.8c28.6,1.2,56,8.6,80.8,21.5L329.1,177l13.9,8l15.8-27.3\r\n\t\tc11.8,7.5,22.9,16.4,33.1,26.5c10,10,18.7,20.9,26.2,32.6l-27.4,15.8l8,13.9l27.5-15.9c13.1,24.9,20.6,52.6,21.8,81.4H416v16h31.8\r\n\t\tc-1.3,31.4-10.1,61.4-25.5,88h36.1c13.8-29.1,21.6-61.6,21.6-96C480,196.3,379.7,96,256,96z"},"children":[]}]}]}]};exports.speedometer=speedometer;var spoon={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M320,160C320,96,293.5,32,256,32s-64,64-64,128l0,0c0.9,25,15.7,54.3,36.6,64.3c0.5,0.2,0.9,0.4,1.4,0.6c0,0,0,0,0.1,0\r\n\tc3.4,1.9,9.8,5.5,9.8,9.7c0,0-16,198.7-16,210.1s5,20.5,10.5,26c5.5,5.5,13.1,9.2,21.3,9.2c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0\r\n\tc8.2,0,15.8-3.7,21.4-9.2c5.5-5.5,10.3-12.9,10.3-26s-16-210.1-16-210.1c0-4.2,6.4-7.9,9.8-9.8l1.7-0.9C304.9,214,320,186,320,160"},"children":[]}]};exports.spoon=spoon;var star={"viewBox":"0 0 512 512","children":[{"name":"polygon","attribs":{"points":"480,200 308.519,200 256.029,32 203.519,200 32,200 170.946,304.209 116,480 256,368 396,480 341.073,304.195 "},"children":[]}]};exports.star=star;var statsBars={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"176","y":"96","width":"64","height":"320"},"children":[{"name":"rect","attribs":{"x":"176","y":"96","width":"64","height":"320"},"children":[]}]},{"name":"rect","attribs":{"x":"80","y":"320","width":"64","height":"96"},"children":[{"name":"rect","attribs":{"x":"80","y":"320","width":"64","height":"96"},"children":[]}]},{"name":"rect","attribs":{"x":"272","y":"256","width":"64","height":"160"},"children":[{"name":"rect","attribs":{"x":"272","y":"256","width":"64","height":"160"},"children":[]}]},{"name":"rect","attribs":{"x":"368","y":"192","width":"64","height":"224"},"children":[{"name":"rect","attribs":{"x":"368","y":"192","width":"64","height":"224"},"children":[]}]}]}]};exports.statsBars=statsBars;var steam={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"path","attribs":{"id":"Gears","class":"st0","d":"M480,208.2c0,20.5-16.6,37.2-37.2,37.2c-20.5,0-37.2-16.6-37.2-37.2c0-20.5,16.6-37.2,37.2-37.2\r\n\tC463.3,171,480,187.7,480,208.2z M442.6,139c-38.1,0-69,30.7-69.4,68.7L330,269.7c-1.8-0.2-3.6-0.3-5.4-0.3\r\n\tc-9.7,0-18.7,2.7-26.4,7.3l-195.8-78.7c-5.1-23.2-25.9-40.7-50.6-40.7C23.3,157.2,0,180.6,0,209.1c0,28.5,23.3,51.8,51.8,51.8\r\n\tc9.7,0,18.7-2.7,26.4-7.3L274,332.2c5.1,23.3,25.8,40.8,50.6,40.8c26.8,0,49-20.6,51.5-46.7l66.5-48.6c38.3,0,69.4-31,69.4-69.3\r\n\tC512,170.1,480.9,139,442.6,139z M442.6,161.9c25.7,0,46.5,20.9,46.5,46.5c0,25.7-20.9,46.4-46.5,46.4c-25.7,0-46.5-20.8-46.5-46.4\r\n\tC396.1,182.7,416.9,161.9,442.6,161.9z M51.8,170.9c14.6,0,27.3,8.2,33.7,20.2l-18.9-7.6v0.1c-15.3-5.5-32.2,2-38.3,17.1\r\n\tc-6.1,15.2,0.9,32.3,15.7,38.9v0.1l16.1,6.4c-2.6,0.6-5.4,0.9-8.2,0.9c-21.1,0-38.1-17-38.1-38.1C13.7,188,30.7,170.9,51.8,170.9z\r\n\t M324.6,283.1c21.1,0,38.1,17,38.1,38.1c0,21.1-17,38.1-38.1,38.1c-14.7,0-27.4-8.2-33.7-20.3c6.3,2.5,12.5,5,18.8,7.6\r\n\tc15.5,6.2,33.2-1.3,39.4-16.8c6.2-15.5-1.3-33.1-16.9-39.4l-15.9-6.4C319.1,283.5,321.8,283.1,324.6,283.1z"},"children":[]}]};exports.steam=steam;var stop={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M437.4,64H74.6C68.7,64,64,68.7,64,74.6v362.8c0,5.9,4.7,10.6,10.6,10.6h362.8c5.8,0,10.6-4.7,10.6-10.6V74.6\r\n\tC448,68.7,443.2,64,437.4,64z"},"children":[]}]};exports.stop=stop;var thermometer={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M303,335.6V78.4c0-25.7-21-46.5-47-46.5c-26,0-47,20.8-47,46.5v256.8c-20,14.5-32.9,38.2-32.9,64.9c0,44.2,36,80,80.2,80\r\n\t\tc44.2,0,79.8-35.8,79.8-80C336,373.6,323,350.1,303,335.6z M241,78.4c0-8,6.7-14.5,15-14.5s15,6.5,15,14.5V128h-30V78.4z M272,288\r\n\t\th-16v-16h16V288z M272,256h-16v-64h16V256z"},"children":[{"name":"path","attribs":{"d":"M303,335.6V78.4c0-25.7-21-46.5-47-46.5c-26,0-47,20.8-47,46.5v256.8c-20,14.5-32.9,38.2-32.9,64.9c0,44.2,36,80,80.2,80\r\n\t\tc44.2,0,79.8-35.8,79.8-80C336,373.6,323,350.1,303,335.6z M241,78.4c0-8,6.7-14.5,15-14.5s15,6.5,15,14.5V128h-30V78.4z M272,288\r\n\t\th-16v-16h16V288z M272,256h-16v-64h16V256z"},"children":[]}]}]}]};exports.thermometer=thermometer;var thumbsdown={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M87.8,252.7C74,257.2,64,270.2,64,285.5c0,19,15.4,34.5,34.5,34.5h102.6c-2,25-10,53.6-1.1,87.3\r\n\t\tc7.5,28.4,39.4,49.7,52.4,36.8c5-4.9,3.5-15.2,3.5-33.8c0-42.8,17.8-86.1,39.8-108.7c9.4-9.7,25.2-13,40.2-13.6v16h112V64H336v32\r\n\t\tc-20.6,0.5-52.6-5.2-75.8-6.6c-52-3.1-102,2.4-126.3,8.1c-24.3,5.7-35,13-35,30.6c0,6.4,1.9,12.3,5.1,17.3\r\n\t\tc-11.8,4.7-20.1,16.2-20.1,29.7c0,7.2,2.4,13.8,6.4,19.2c-11.9,4.6-20.4,16.2-20.4,29.8C70,236.6,77.3,247.5,87.8,252.7z M400,96.3\r\n\t\tc8.8,0,16,7.1,16,16c0,8.8-7.2,16-16,16s-16-7.1-16-16C384,103.5,391.2,96.3,400,96.3z"},"children":[{"name":"path","attribs":{"d":"M87.8,252.7C74,257.2,64,270.2,64,285.5c0,19,15.4,34.5,34.5,34.5h102.6c-2,25-10,53.6-1.1,87.3\r\n\t\tc7.5,28.4,39.4,49.7,52.4,36.8c5-4.9,3.5-15.2,3.5-33.8c0-42.8,17.8-86.1,39.8-108.7c9.4-9.7,25.2-13,40.2-13.6v16h112V64H336v32\r\n\t\tc-20.6,0.5-52.6-5.2-75.8-6.6c-52-3.1-102,2.4-126.3,8.1c-24.3,5.7-35,13-35,30.6c0,6.4,1.9,12.3,5.1,17.3\r\n\t\tc-11.8,4.7-20.1,16.2-20.1,29.7c0,7.2,2.4,13.8,6.4,19.2c-11.9,4.6-20.4,16.2-20.4,29.8C70,236.6,77.3,247.5,87.8,252.7z M400,96.3\r\n\t\tc8.8,0,16,7.1,16,16c0,8.8-7.2,16-16,16s-16-7.1-16-16C384,103.5,391.2,96.3,400,96.3z"},"children":[]}]}]}]};exports.thumbsdown=thumbsdown;var thumbsup={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M424.2,259.3c13.8-4.5,23.8-17.5,23.8-32.8c0-19-15.4-34.5-34.5-34.5H310.9c2-25,10-53.6,1.1-87.3\r\n\t\tc-7.5-28.4-39.4-49.7-52.4-36.8c-5,4.9-3.5,15.2-3.5,33.8c0,42.8-17.8,86.1-39.8,108.7c-9.4,9.7-25.2,13-40.2,13.6v-16H64v240h112\r\n\t\tv-32c20.6-0.5,52.6,5.2,75.8,6.6c52,3.1,102-2.4,126.3-8.1c24.3-5.7,35-13,35-30.6c0-6.4-1.9-12.3-5.1-17.3\r\n\t\tc11.8-4.7,20.1-16.2,20.1-29.7c0-7.2-2.4-13.8-6.4-19.2c11.9-4.6,20.4-16.2,20.4-29.8C442,275.4,434.7,264.5,424.2,259.3z\r\n\t\t M112,415.7c-8.8,0-16-7.1-16-16c0-8.8,7.2-16,16-16s16,7.1,16,16C128,408.5,120.8,415.7,112,415.7z"},"children":[{"name":"path","attribs":{"d":"M424.2,259.3c13.8-4.5,23.8-17.5,23.8-32.8c0-19-15.4-34.5-34.5-34.5H310.9c2-25,10-53.6,1.1-87.3\r\n\t\tc-7.5-28.4-39.4-49.7-52.4-36.8c-5,4.9-3.5,15.2-3.5,33.8c0,42.8-17.8,86.1-39.8,108.7c-9.4,9.7-25.2,13-40.2,13.6v-16H64v240h112\r\n\t\tv-32c20.6-0.5,52.6,5.2,75.8,6.6c52,3.1,102-2.4,126.3-8.1c24.3-5.7,35-13,35-30.6c0-6.4-1.9-12.3-5.1-17.3\r\n\t\tc11.8-4.7,20.1-16.2,20.1-29.7c0-7.2-2.4-13.8-6.4-19.2c11.9-4.6,20.4-16.2,20.4-29.8C442,275.4,434.7,264.5,424.2,259.3z\r\n\t\t M112,415.7c-8.8,0-16-7.1-16-16c0-8.8,7.2-16,16-16s16,7.1,16,16C128,408.5,120.8,415.7,112,415.7z"},"children":[]}]}]}]};exports.thumbsup=thumbsup;var toggleFilled={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,208c-26.467,0-48,21.533-48,48c0,26.467,21.533,48,48,48s48-21.533,48-48C400,229.533,378.467,208,352,208z"},"children":[{"name":"path","attribs":{"d":"M352,208c-26.467,0-48,21.533-48,48c0,26.467,21.533,48,48,48s48-21.533,48-48C400,229.533,378.467,208,352,208z"},"children":[]}]},{"name":"path","attribs":{"d":"M352,128H160c-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128z\r\n\t\t M352,336c-44.183,0-80-35.817-80-80s35.817-80,80-80s80,35.817,80,80S396.183,336,352,336z"},"children":[{"name":"path","attribs":{"d":"M352,128H160c-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128z\r\n\t\t M352,336c-44.183,0-80-35.817-80-80s35.817-80,80-80s80,35.817,80,80S396.183,336,352,336z"},"children":[]}]}]}]};exports.toggleFilled=toggleFilled;var toggle={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M352,160c52.934,0,96,43.065,96,96s-43.066,96-96,96H160c-52.935,0-96-43.065-96-96s43.065-96,96-96H352 M352,128H160\r\n\t\tc-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128L352,128z"},"children":[{"name":"path","attribs":{"d":"M352,160c52.934,0,96,43.065,96,96s-43.066,96-96,96H160c-52.935,0-96-43.065-96-96s43.065-96,96-96H352 M352,128H160\r\n\t\tc-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128L352,128z"},"children":[]}]},{"name":"path","attribs":{"d":"M160,208c26.467,0,48,21.533,48,48c0,26.467-21.533,48-48,48s-48-21.533-48-48C112,229.533,133.533,208,160,208 M160,176\r\n\t\tc-44.183,0-80,35.817-80,80s35.817,80,80,80s80-35.817,80-80S204.183,176,160,176L160,176z"},"children":[{"name":"path","attribs":{"d":"M160,208c26.467,0,48,21.533,48,48c0,26.467-21.533,48-48,48s-48-21.533-48-48C112,229.533,133.533,208,160,208 M160,176\r\n\t\tc-44.183,0-80,35.817-80,80s35.817,80,80,80s80-35.817,80-80S204.183,176,160,176L160,176z"},"children":[]}]}]}]};exports.toggle=toggle;var transgender={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M368,0v40h69.873l-93.046,91.97c-8.529-8.249-15.132-12.586-15.132-12.586C308.841,104.694,283.422,96,256,96\r\n\tc-34.525,0-65.86,13.669-88.903,35.894l-17.333-17.131l35.833-35.833L153.07,46.403l-36.022,36.021L74.127,40H144V0H0v144h40V67.806\r\n\tl46.085,45.582L50.402,149.07l32.526,32.526l35.862-35.861l22.185,21.942c-8.395,17.065-13.118,36.267-13.118,56.578\r\n\tC127.857,286.884,173,338.989,232,350.25V402h-72v46h72v64h48v-64h72v-46h-72v-51.75c58-11.261,104.222-63.397,104.222-126.025\r\n\tc0-20.202-4.794-39.738-13.094-56.649L472,67.806V144h40V0H368z M255.929,304.402c-44.156,0-80.079-35.968-80.079-80.178\r\n\tc0-44.211,35.923-80.18,80.079-80.18c44.155,0,80.078,35.969,80.078,80.18C336.007,268.435,300.084,304.402,255.929,304.402z"},"children":[]}]};exports.transgender=transgender;var trashA={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M341,128V99c0-19.1-14.5-35-34.5-35H205.4C185.5,64,171,79.9,171,99v29H80v32h9.2c0,0,5.4,0.6,8.2,3.4c2.8,2.8,3.9,9,3.9,9\r\n\tl19,241.7c1.5,29.4,1.5,33.9,36,33.9h199.4c34.5,0,34.5-4.4,36-33.8l19-241.6c0,0,1.1-6.3,3.9-9.1c2.8-2.8,8.2-3.4,8.2-3.4h9.2v-32\r\n\th-91V128z M192,99c0-9.6,7.8-15,17.7-15h91.7c9.9,0,18.6,5.5,18.6,15v29H192V99z M183.5,384l-10.3-192h20.3L204,384H183.5z\r\n\t M267.1,384h-22V192h22V384z M328.7,384h-20.4l10.5-192h20.3L328.7,384z"},"children":[]}]};exports.trashA=trashA;var trashB={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M413.7,133.4c-2.4-9-4-14-4-14c-2.6-9.3-9.2-9.3-19-10.9l-53.1-6.7c-6.6-1.1-6.6-1.1-9.2-6.8c-8.7-19.6-11.4-31-20.9-31\r\n\t\th-103c-9.5,0-12.1,11.4-20.8,31.1c-2.6,5.6-2.6,5.6-9.2,6.8l-53.2,6.7c-9.7,1.6-16.7,2.5-19.3,11.8c0,0-1.2,4.1-3.7,13\r\n\t\tc-3.2,11.9-4.5,10.6,6.5,10.6h302.4C418.2,144.1,417,145.3,413.7,133.4z"},"children":[{"name":"path","attribs":{"d":"M413.7,133.4c-2.4-9-4-14-4-14c-2.6-9.3-9.2-9.3-19-10.9l-53.1-6.7c-6.6-1.1-6.6-1.1-9.2-6.8c-8.7-19.6-11.4-31-20.9-31\r\n\t\th-103c-9.5,0-12.1,11.4-20.8,31.1c-2.6,5.6-2.6,5.6-9.2,6.8l-53.2,6.7c-9.7,1.6-16.7,2.5-19.3,11.8c0,0-1.2,4.1-3.7,13\r\n\t\tc-3.2,11.9-4.5,10.6,6.5,10.6h302.4C418.2,144.1,417,145.3,413.7,133.4z"},"children":[]}]},{"name":"path","attribs":{"d":"M379.4,176H132.6c-16.6,0-17.4,2.2-16.4,14.7l18.7,242.6c1.6,12.3,2.8,14.8,17.5,14.8h207.2c14.7,0,15.9-2.5,17.5-14.8\r\n\t\tl18.7-242.6C396.8,178.1,396,176,379.4,176z"},"children":[{"name":"path","attribs":{"d":"M379.4,176H132.6c-16.6,0-17.4,2.2-16.4,14.7l18.7,242.6c1.6,12.3,2.8,14.8,17.5,14.8h207.2c14.7,0,15.9-2.5,17.5-14.8\r\n\t\tl18.7-242.6C396.8,178.1,396,176,379.4,176z"},"children":[]}]}]}]};exports.trashB=trashB;var trophy={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M479.863,103.342c-0.051-2.833-0.096-5.279-0.096-7.342h-80.835c1.56-34.617,0.512-64,0.512-64s-95.591,0-142.568,0\r\n\tc-0.337,0-0.669,0.022-1,0.056c-0.33-0.034-0.662-0.056-1-0.056c-46.977,0-142.931,0-142.931,0s-1.048,29.383,0.512,64H32.232H32\r\n\tv20.548c0,0.114,0,0.228,0,0.342V128h0.161c0.811,26.096,4.98,60.999,22.333,96.729c14.718,30.307,35.912,55.664,62.996,75.367\r\n\tc22.422,16.312,48.041,28.064,76.205,35.084C209.96,352.539,226,362.109,240,365.957v35.625C238,412.165,225.86,448,141.234,448H128\r\n\tv32h256v-32h-13.178C271.538,448,272,398.666,272,398.666v-32.714c14-3.843,29.73-13.374,45.91-30.644\r\n\tc28.369-7.004,54.072-18.801,76.633-35.213c27.082-19.703,48.262-45.06,62.98-75.367\r\n\tC481.203,175.967,480.326,128.723,479.863,103.342z M83.262,210.745C68.802,180.966,65.018,150.996,64.187,128h50.487\r\n\tc0.868,8.914,1.966,17.701,3.356,25.98c8.513,50.709,20.213,95.493,42.354,135.009C126.546,271.848,99.97,245.149,83.262,210.745z\r\n\t M428.737,210.745c-16.807,34.61-43.603,61.421-77.729,78.55c22.215-39.591,33.816-84.475,42.352-135.314\r\n\tc1.39-8.28,2.488-17.067,3.356-25.98h51.096C446.981,150.996,443.198,180.966,428.737,210.745z"},"children":[]}]};exports.trophy=trophy;var tshirtOutline={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M178.249,85.534c18.761,22.976,43.909,34.009,77.445,34.572l0.269-0.106h0.269c22.638,0,41.169-4.861,56.653-15.091\r\n\tc7.801-5.154,14.721-11.47,21.029-19.382l104.461,31.367L426.59,149.41l-38.743-4.685l-37.912-4.589l2.114,38.133L366.176,433\r\n\tH145.824l14.127-254.729l2.106-37.981l-37.782,4.428l-38.854,4.553l-11.767-32.358L178.249,85.534 M320,48\r\n\tc-13.988,27.227-30.771,40.223-63.769,40.223C223.723,87.676,205.722,75,192,48L32,96l32,88l64-7.5L112,465h288l-16-288.5l64,7.75\r\n\tL480,96L320,48L320,48z"},"children":[]}]};exports.tshirtOutline=tshirtOutline;var tshirt={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M480,96L320,48c-13.988,27.227-30.771,40.223-63.769,40.223C223.723,87.676,205.722,75,192,48L32,96l32,88l64-8l-16,288h288\r\n\tl-16-288l64,8L480,96z"},"children":[]}]};exports.tshirt=tshirt;var umbrella={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M376.2,288c0,0.1,0,0.2,0,0.4C376.2,288.2,376.2,288.1,376.2,288L376.2,288z"},"children":[{"name":"path","attribs":{"d":"M376.2,288c0,0.1,0,0.2,0,0.4C376.2,288.2,376.2,288.1,376.2,288L376.2,288z"},"children":[]}]},{"name":"path","attribs":{"d":"M136.2,288c0,0.1,0,0.2,0,0.4C136.2,288.2,136.2,288.1,136.2,288L136.2,288z"},"children":[{"name":"path","attribs":{"d":"M136.2,288c0,0.1,0,0.2,0,0.4C136.2,288.2,136.2,288.1,136.2,288L136.2,288z"},"children":[]}]}]}]},{"name":"path","attribs":{"d":"M272,48.8c0-0.3,0-0.5,0-0.8c0-8.8-7.2-16-16-16c-8.8,0-16,7.2-16,16c0,0.2,0,0.5,0,0.7c-116.3,8-208,103.1-208,221.4\r\n\t\tc0,3.6,0.2,14.2,0.4,17.8c2.7-26.3,24.7-51.7,51.7-51.7c28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7\r\n\t\tc26.5,0,50.9,21.1,51.7,45.5V416c0,17.9-14.1,32-32,32c-17.1,0-31-14.4-31-32c0-8.8-7.2-16-16-16s-16,7.2-16,16\r\n\t\tc0,35.3,28.3,64,63,64c17.3,0,33.5-6.7,45.5-18.8c11.9-12,18.5-28.1,18.5-45.2l0-135.3c3.3-32.7,23.4-44.4,52.1-44.4\r\n\t\tc28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7c26.1,0,47.6,26.7,51.4,51.7c0.1-2.8,0.2-9.1,0.2-11.8\r\n\t\tC480,157.8,388.2,57.3,272,48.8z"},"children":[{"name":"path","attribs":{"d":"M272,48.8c0-0.3,0-0.5,0-0.8c0-8.8-7.2-16-16-16c-8.8,0-16,7.2-16,16c0,0.2,0,0.5,0,0.7c-116.3,8-208,103.1-208,221.4\r\n\t\tc0,3.6,0.2,14.2,0.4,17.8c2.7-26.3,24.7-51.7,51.7-51.7c28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7\r\n\t\tc26.5,0,50.9,21.1,51.7,45.5V416c0,17.9-14.1,32-32,32c-17.1,0-31-14.4-31-32c0-8.8-7.2-16-16-16s-16,7.2-16,16\r\n\t\tc0,35.3,28.3,64,63,64c17.3,0,33.5-6.7,45.5-18.8c11.9-12,18.5-28.1,18.5-45.2l0-135.3c3.3-32.7,23.4-44.4,52.1-44.4\r\n\t\tc28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7c26.1,0,47.6,26.7,51.4,51.7c0.1-2.8,0.2-9.1,0.2-11.8\r\n\t\tC480,157.8,388.2,57.3,272,48.8z"},"children":[]}]}]}]};exports.umbrella=umbrella;var university={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"256,64 32,176.295 64,197.367 64,400 96,416 96,217.849 255.852,320 387.996,234.549 480,174.727 \t"},"children":[{"name":"polygon","attribs":{"points":"256,64 32,176.295 64,197.367 64,400 96,416 96,217.849 255.852,320 387.996,234.549 480,174.727 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M390.13,256L256,343.768L120.531,256L112,337.529C128,349.984,224,416,256.002,448C288,416,384,350.031,400,337.561\r\n\t\tL390.13,256z"},"children":[{"name":"path","attribs":{"d":"M390.13,256L256,343.768L120.531,256L112,337.529C128,349.984,224,416,256.002,448C288,416,384,350.031,400,337.561\r\n\t\tL390.13,256z"},"children":[]}]}]}]};exports.university=university;var unlocked={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M86.4,480h339.2c12.3,0,22.4-9.9,22.4-22.1V246c0-12.2-10-22-22.4-22H161v-30.9c0-27.3,9.9-61.1,28.1-80.3l0,0l0-0.3\r\n\tC206.7,93.9,231,83,255.9,83h0.1h0.1c24.9,0,49.2,10.9,66.8,29.5l0,0.2l0,0.1c11.3,11.9,19.4,29.3,24,47.3h53.4\r\n\tc-5.9-31.3-19.7-61.8-39.2-82.4C334.9,49.9,297.4,32,256.1,32c-0.1,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-41.3,0-79,17.9-105.3,45.6\r\n\tc-26.4,27.8-42.6,73.9-42.6,115.4V224H89h-2.6C74,224,64,233.9,64,246v211.9C64,470.1,74,480,86.4,480z"},"children":[]}]};exports.unlocked=unlocked;var upload={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M398.1,233.2c0-1.2,0.2-2.4,0.2-3.6c0-65-51.8-117.6-115.7-117.6c-46.1,0-85.7,27.4-104.3,67c-8.1-4.1-17.2-6.5-26.8-6.5\r\n\tc-29.5,0-54.1,21.9-58.8,50.5C57.3,235.2,32,269.1,32,309c0,50.2,40.1,91,89.5,91H224v-80l-48.2,0l80.2-83.7l80.2,83.6l-48.2,0v80\r\n\th110.3c45.2,0,81.7-37.5,81.7-83.4C480,270.6,443.3,233.3,398.1,233.2z"},"children":[]}]};exports.upload=upload;var usb={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M144,220C144,220,144.1,220.1,144,220L144,220z"},"children":[{"name":"path","attribs":{"d":"M144,220C144,220,144.1,220.1,144,220L144,220z"},"children":[]}]},{"name":"path","attribs":{"d":"M384,128.3c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.1c0,12.1,6.7,22.7,16.6,28.2c1.3,1.5,2.2,4.5,2.2,6\r\n\t\tc0,0.1,0,0.2,0,0.4c-0.8,17.6-3.8,31.9-7.1,41.7c-4.3,12.6-38.2,39.6-51.5,42.2c-5.8,1.2-7.9-0.6-7.9-10.2c0,0,0-138.9,0-140.4\r\n\t\ts0.2-3.5,1.9-5c0,0,0,0,0,0c8.6-5.8,14.3-15.6,14.3-26.8c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.2\r\n\t\tc0,11.3,5.8,21.3,14.6,27c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.1,0.4,0.2c0.2,0.1,0.4,0.2,0.6,0.4c2.3,1.5,3.3,3,3.3,4.2\r\n\t\tc0,1.3,0,189.3,0,196.3s-1.1,12.3-8.4,11.8s-41.7-23.5-51.4-44.1c-4.5-9.5-6.8-18.8-6.8-28h0c0,0,0-0.4,0-0.5\r\n\t\tc0-3.1,0-11.3,3.2-13.6c7.8-5.9,12.8-15.2,12.8-25.7c0-17.8-14.4-32.2-32.1-32.2S128,174.4,128,192.2c0,11.9,6.5,22.3,16,27.8\r\n\t\tc2.4,1.5,3,2.9,3.8,10.6s3,24.6,9.1,39.9c7.3,18.6,20.9,32.6,39.7,45.2c13.6,9.3,25.3,16.6,32.1,26.4s10.2,13.5,10.2,27\r\n\t\tc0,0,0-0.9,0,0c0,12.8-4,14-9.3,17.8c-14.1,8.7-23.5,24.2-23.5,42c0,0.1,0,0.3,0,0.4c0,0.2,0,0.5,0,0.7c0,27.5,22.3,49.8,49.8,49.8\r\n\t\tc27.5,0,49.8-22.3,49.8-49.8c0-13.3-5.2-25.4-13.7-34.3c-2.9-3.2-6-6-9.6-8.3c-7.5-5.2-10.3-11.5-10.3-18.1v-24.1\r\n\t\tc0-25.1,4.1-41.1,11.1-53.3c7.3-12.7,18.3-22.6,35.4-34.2c18.8-12.6,32.2-26.6,39.6-45.2c5.7-14.4,7.6-31,8.6-50.9\r\n\t\tc0.1-1.8,1.4-5.8,3.3-6.8h0C378.4,149,384,139.3,384,128.3z M160.1,208.3c-8.9,0-16.1-7.3-16.1-16.2s7.2-16.2,16.1-16.2\r\n\t\ts16.1,7.3,16.1,16.2S169,208.3,160.1,208.3z M256,80.3c-8.9,0-16.1-7.3-16.1-16.2S247.1,48,256,48s16.1,7.3,16.1,16.2\r\n\t\tS264.9,80.3,256,80.3z M351.9,144.3c-8.9,0-16.1-7.3-16.1-16.2S343,112,351.9,112s16.1,7.3,16.1,16.2S360.8,144.3,351.9,144.3z"},"children":[{"name":"path","attribs":{"d":"M384,128.3c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.1c0,12.1,6.7,22.7,16.6,28.2c1.3,1.5,2.2,4.5,2.2,6\r\n\t\tc0,0.1,0,0.2,0,0.4c-0.8,17.6-3.8,31.9-7.1,41.7c-4.3,12.6-38.2,39.6-51.5,42.2c-5.8,1.2-7.9-0.6-7.9-10.2c0,0,0-138.9,0-140.4\r\n\t\ts0.2-3.5,1.9-5c0,0,0,0,0,0c8.6-5.8,14.3-15.6,14.3-26.8c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.2\r\n\t\tc0,11.3,5.8,21.3,14.6,27c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.1,0.4,0.2c0.2,0.1,0.4,0.2,0.6,0.4c2.3,1.5,3.3,3,3.3,4.2\r\n\t\tc0,1.3,0,189.3,0,196.3s-1.1,12.3-8.4,11.8s-41.7-23.5-51.4-44.1c-4.5-9.5-6.8-18.8-6.8-28h0c0,0,0-0.4,0-0.5\r\n\t\tc0-3.1,0-11.3,3.2-13.6c7.8-5.9,12.8-15.2,12.8-25.7c0-17.8-14.4-32.2-32.1-32.2S128,174.4,128,192.2c0,11.9,6.5,22.3,16,27.8\r\n\t\tc2.4,1.5,3,2.9,3.8,10.6s3,24.6,9.1,39.9c7.3,18.6,20.9,32.6,39.7,45.2c13.6,9.3,25.3,16.6,32.1,26.4s10.2,13.5,10.2,27\r\n\t\tc0,0,0-0.9,0,0c0,12.8-4,14-9.3,17.8c-14.1,8.7-23.5,24.2-23.5,42c0,0.1,0,0.3,0,0.4c0,0.2,0,0.5,0,0.7c0,27.5,22.3,49.8,49.8,49.8\r\n\t\tc27.5,0,49.8-22.3,49.8-49.8c0-13.3-5.2-25.4-13.7-34.3c-2.9-3.2-6-6-9.6-8.3c-7.5-5.2-10.3-11.5-10.3-18.1v-24.1\r\n\t\tc0-25.1,4.1-41.1,11.1-53.3c7.3-12.7,18.3-22.6,35.4-34.2c18.8-12.6,32.2-26.6,39.6-45.2c5.7-14.4,7.6-31,8.6-50.9\r\n\t\tc0.1-1.8,1.4-5.8,3.3-6.8h0C378.4,149,384,139.3,384,128.3z M160.1,208.3c-8.9,0-16.1-7.3-16.1-16.2s7.2-16.2,16.1-16.2\r\n\t\ts16.1,7.3,16.1,16.2S169,208.3,160.1,208.3z M256,80.3c-8.9,0-16.1-7.3-16.1-16.2S247.1,48,256,48s16.1,7.3,16.1,16.2\r\n\t\tS264.9,80.3,256,80.3z M351.9,144.3c-8.9,0-16.1-7.3-16.1-16.2S343,112,351.9,112s16.1,7.3,16.1,16.2S360.8,144.3,351.9,144.3z"},"children":[]}]}]}]};exports.usb=usb;var videocamera={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M367,185.3c0-5.1-4-9.3-9.2-9.3H306v-32.2c0-35.2-29.3-63.8-64.9-63.8H63v48h176.1c4.5,0,9.9,5.6,9.9,10.1V176H41.4\r\n\tc-5.2,0-9.4,4.2-9.4,9.3v170.4v55.7v11.3c0,5.1,4.2,9.3,9.4,9.3h316.4c5.2,0,9.2-4.2,9.2-9.3v-64.5l113,34.7v-88.2v-88.2l-113,34.7\r\n\tV185.3z M258.2,341h-10.9H152h-11.9c-19.8,0-35.9-16-35.9-35.8s16.1-35.8,35.9-35.8c19.8,0,35.9,16.2,35.9,36\r\n\tc0,10-4.2,18.6-10.8,25.6h67.9c-6.6-7-10.8-15.6-10.8-25.6c0-19.8,16.1-35.9,35.9-35.9c19.8,0,35.9,15.9,35.9,35.7\r\n\tS278,341,258.2,341z"},"children":[]}]};exports.videocamera=videocamera;var volumeHigh={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"231,407.8 231,104.3 136.1,192 32,192 32,320 136.1,320 \t"},"children":[{"name":"polygon","attribs":{"points":"231,407.8 231,104.3 136.1,192 32,192 32,320 136.1,320 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M287.1,355.7c20.5-27.9,32.8-62.3,32.8-99.7c0-37.4-12.3-71.8-32.8-99.7l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.4\r\n\t\tc0,31.6-10.4,60.8-27.8,84.3L287.1,355.7z"},"children":[{"name":"path","attribs":{"d":"M287.1,355.7c20.5-27.9,32.8-62.3,32.8-99.7c0-37.4-12.3-71.8-32.8-99.7l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.4\r\n\t\tc0,31.6-10.4,60.8-27.8,84.3L287.1,355.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M353.7,401.7c30-40.7,48-91.1,48-145.7s-18-104.9-48-145.7l-20.4,15.3c26.9,36.4,43,81.5,43,130.4\r\n\t\tc0,48.9-16.1,93.9-43,130.3L353.7,401.7z"},"children":[{"name":"path","attribs":{"d":"M353.7,401.7c30-40.7,48-91.1,48-145.7s-18-104.9-48-145.7l-20.4,15.3c26.9,36.4,43,81.5,43,130.4\r\n\t\tc0,48.9-16.1,93.9-43,130.3L353.7,401.7z"},"children":[]}]},{"name":"path","attribs":{"d":"M396.7,79.4c36.4,49.3,57.9,110.5,57.9,176.6c0,66.1-21.5,127.2-57.9,176.6l20.5,15.4c39.4-53.6,62.8-120,62.8-192\r\n\t\tc0-72-23.4-138.4-62.8-192L396.7,79.4z"},"children":[{"name":"path","attribs":{"d":"M396.7,79.4c36.4,49.3,57.9,110.5,57.9,176.6c0,66.1-21.5,127.2-57.9,176.6l20.5,15.4c39.4-53.6,62.8-120,62.8-192\r\n\t\tc0-72-23.4-138.4-62.8-192L396.7,79.4z"},"children":[]}]}]}]};exports.volumeHigh=volumeHigh;var volumeLow={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"311,407.7 311,104.4 216.2,192 112,192 112,320 216.2,320 \t"},"children":[{"name":"polygon","attribs":{"points":"311,407.7 311,104.4 216.2,192 112,192 112,320 216.2,320 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M367.2,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L367.2,355.6z"},"children":[{"name":"path","attribs":{"d":"M367.2,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L367.2,355.6z"},"children":[]}]}]}]};exports.volumeLow=volumeLow;var volumeMedium={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"270,407.7 270,104.4 175.3,192 71,192 71,320 175.3,320 \t"},"children":[{"name":"polygon","attribs":{"points":"270,407.7 270,104.4 175.3,192 71,192 71,320 175.3,320 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M326.3,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L326.3,355.6z"},"children":[{"name":"path","attribs":{"d":"M326.3,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L326.3,355.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M392.8,401.6c30-40.7,48-91,48-145.6s-18-104.9-48-145.6l-20.4,15.3c26.9,36.4,43,81.4,43,130.3c0,48.9-16.1,93.8-43,130.3\r\n\t\tL392.8,401.6z"},"children":[{"name":"path","attribs":{"d":"M392.8,401.6c30-40.7,48-91,48-145.6s-18-104.9-48-145.6l-20.4,15.3c26.9,36.4,43,81.4,43,130.3c0,48.9-16.1,93.8-43,130.3\r\n\t\tL392.8,401.6z"},"children":[]}]}]}]};exports.volumeMedium=volumeMedium;var volumeMute={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"points":"255.9,217 191,217 191,295 255.9,295 303,346.3 303,165.7 \t"},"children":[{"name":"polygon","attribs":{"points":"255.9,217 191,217 191,295 255.9,295 303,346.3 303,165.7 \t"},"children":[]}]},{"name":"path","attribs":{"d":"M364.5,60.1c-0.4-0.2-0.7-0.4-1.1-0.6C331.5,42,294.9,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.9\r\n\t\tc0.4,0.2,0.7,0.5,1.1,0.7C180.5,470,217.1,480,256,480c123.7,0,224-100.3,224-224C480,171.7,433.4,98.3,364.5,60.1z M393.9,355.4\r\n\t\tL336,297.1v76.7l19.6,19.9c-28,20.3-62.3,32.7-99.5,32.7c-21.6,0-42.3-4.2-61.3-11.5c-6.5-2.5-12.9-5.3-19-8.6\r\n\t\tc-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l35.3,35.4h76.7l-73.6-73.8c28-20.2,62.1-32.6,99.4-32.6\r\n\t\tc21.6,0,42.2,4.2,61.3,11.5c6.1,2.4,12.2,5,17.9,8c54.2,28.5,91.3,85.3,91.3,150.8C426.5,293.3,414.2,327.4,393.9,355.4z"},"children":[{"name":"path","attribs":{"d":"M364.5,60.1c-0.4-0.2-0.7-0.4-1.1-0.6C331.5,42,294.9,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.9\r\n\t\tc0.4,0.2,0.7,0.5,1.1,0.7C180.5,470,217.1,480,256,480c123.7,0,224-100.3,224-224C480,171.7,433.4,98.3,364.5,60.1z M393.9,355.4\r\n\t\tL336,297.1v76.7l19.6,19.9c-28,20.3-62.3,32.7-99.5,32.7c-21.6,0-42.3-4.2-61.3-11.5c-6.5-2.5-12.9-5.3-19-8.6\r\n\t\tc-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l35.3,35.4h76.7l-73.6-73.8c28-20.2,62.1-32.6,99.4-32.6\r\n\t\tc21.6,0,42.2,4.2,61.3,11.5c6.1,2.4,12.2,5,17.9,8c54.2,28.5,91.3,85.3,91.3,150.8C426.5,293.3,414.2,327.4,393.9,355.4z"},"children":[]}]}]}]};exports.volumeMute=volumeMute;var wand={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"238.059","y":"206.059","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 249.3726 -122.0387)","width":"67.882","height":"67.882"},"children":[{"name":"rect","attribs":{"x":"238.059","y":"206.059","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 249.3726 -122.0387)","width":"67.882","height":"67.882"},"children":[]}]},{"name":"rect","attribs":{"x":"110.058","y":"243.549","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 302.3989 5.9646)","width":"67.884","height":"248.901"},"children":[{"name":"rect","attribs":{"x":"110.058","y":"243.549","transform":"matrix(0.7071 0.7071 -0.7071 0.7071 302.3989 5.9646)","width":"67.884","height":"248.901"},"children":[]}]},{"name":"rect","attribs":{"x":"256","y":"32","width":"32","height":"64"},"children":[{"name":"rect","attribs":{"x":"256","y":"32","width":"32","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"380.451","y":"83.55","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 595.0701 477.5923)","width":"32","height":"63.999"},"children":[{"name":"rect","attribs":{"x":"380.451","y":"83.55","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 595.0701 477.5923)","width":"32","height":"63.999"},"children":[]}]},{"name":"rect","attribs":{"x":"131.549","y":"83.549","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -38.4898 138.1746)","width":"32","height":"64"},"children":[{"name":"rect","attribs":{"x":"131.549","y":"83.549","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -38.4898 138.1746)","width":"32","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"380.451","y":"332.451","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -141.5881 387.0668)","width":"32","height":"64"},"children":[{"name":"rect","attribs":{"x":"380.451","y":"332.451","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -141.5881 387.0668)","width":"32","height":"64"},"children":[]}]},{"name":"rect","attribs":{"x":"416","y":"224","width":"64","height":"32"},"children":[{"name":"rect","attribs":{"x":"416","y":"224","width":"64","height":"32"},"children":[]}]}]}]};exports.wand=wand;var waterdrop={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M271,38.6c-0.3-0.4-0.7-0.7-0.9-1c0,0-0.1-0.1-0.1-0.1c-3.6-3.4-8.5-5.5-13.9-5.5c-5.5,0-10.4,2.1-13.9,5.5\r\n\tc0,0-0.1,0.1-0.1,0.1c-0.3,0.3-0.6,0.6-0.9,1c-6.1,6.3-13.8,14.4-22.4,24.1c-17.4,19.7-38.6,46-58.5,76.8\r\n\tc-33.4,51.8-62.9,116.1-64.1,183.1c0,1.3-0.1,2.7-0.1,4c0,19.7,3.9,38.5,10.9,55.8c4.1,10,9.2,19.4,15.2,28.2\r\n\tC150.7,452.4,200,480,256,480c88.4,0,160-68.7,160-153.4C416,198.7,310.8,79.2,271,38.6z M256,424c-15.8,0-30.7-3.7-43.9-10.1\r\n\tc65.9-14.4,118.4-64.7,135.8-129.5c5.2,12.1,8.2,25.5,8.2,39.6C356,379.2,311.2,424,256,424z"},"children":[]}]};exports.waterdrop=waterdrop;var wifi={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M256.1,96L256.1,96c-79.9,0-155.7,29.9-213.9,84.1L32,189.6l9.9,9.8l32.3,32l9.3,9.2l9.6-8.8\r\n\t\tc44.5-40.9,102.3-63.5,162.8-63.5c60.5,0,118.4,22.6,162.8,63.5l9.6,8.8l9.3-9.2l32.3-32l9.9-9.8l-10.2-9.5\r\n\t\tC411.6,125.9,335.7,96,256.1,96z"},"children":[{"name":"path","attribs":{"d":"M256.1,96L256.1,96c-79.9,0-155.7,29.9-213.9,84.1L32,189.6l9.9,9.8l32.3,32l9.3,9.2l9.6-8.8\r\n\t\tc44.5-40.9,102.3-63.5,162.8-63.5c60.5,0,118.4,22.6,162.8,63.5l9.6,8.8l9.3-9.2l32.3-32l9.9-9.8l-10.2-9.5\r\n\t\tC411.6,125.9,335.7,96,256.1,96z"},"children":[]}]},{"name":"path","attribs":{"d":"M397.4,256.4c-38.8-35.1-88.9-54.4-141.1-54.4h-0.1h-0.3h-8.5l-0.1,0.2c-49.2,2-96,21.1-132.6,54.2l-10.5,9.5l10.1,10\r\n\t\tl32.7,32.4l9.1,9l9.6-8.4c25.3-22.2,57.4-34.5,90.3-34.5c33.1,0,65.2,12.3,90.5,34.5l9.6,8.4l9.1-9l32.7-32.4l10.1-10L397.4,256.4z\r\n\t\t"},"children":[{"name":"path","attribs":{"d":"M397.4,256.4c-38.8-35.1-88.9-54.4-141.1-54.4h-0.1h-0.3h-8.5l-0.1,0.2c-49.2,2-96,21.1-132.6,54.2l-10.5,9.5l10.1,10\r\n\t\tl32.7,32.4l9.1,9l9.6-8.4c25.3-22.2,57.4-34.5,90.3-34.5c33.1,0,65.2,12.3,90.5,34.5l9.6,8.4l9.1-9l32.7-32.4l10.1-10L397.4,256.4z\r\n\t\t"},"children":[]}]},{"name":"path","attribs":{"d":"M256.2,416l9.6-9.5l52.8-52.2l10.6-10.5l-11.6-9.5c-15.4-11.4-32.4-20-61.5-20c-29,0-44.9,9.4-61.5,20l-11.5,9.5l10.6,10.5\r\n\t\tl52.8,52.2L256.2,416z"},"children":[{"name":"path","attribs":{"d":"M256.2,416l9.6-9.5l52.8-52.2l10.6-10.5l-11.6-9.5c-15.4-11.4-32.4-20-61.5-20c-29,0-44.9,9.4-61.5,20l-11.5,9.5l10.6,10.5\r\n\t\tl52.8,52.2L256.2,416z"},"children":[]}]}]}]};exports.wifi=wifi;var wineglass={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M294.9,295.4c11-4.1,18-6.9,26.2-11.7c12-6.9,22.8-15.8,31.9-26.1c20.4-22.9,31-51.1,31-86.1c0-49.9-3.7-101.1-8.1-114.7\r\n\t\tC371.5,43,362.4,32,345.2,32H166.7c-17.1,0-26.2,11.1-30.6,24.6c-4.4,13.5-8.1,64.9-8.1,114.8c0,35.1,10.6,63.2,30.9,86.1\r\n\t\tc9.1,10.3,19.9,19.1,31.8,26c8.2,4.8,15.1,7.8,26,11.7s22.3,7.5,22.3,31.8v94.2c0,10.7-2.9,19-11.1,24.8c-2.8,2.1-6.3,4.3-14.3,6.5\r\n\t\tc-31.5,8.6-46.9,15.6-49.2,17.2c-2,1.4-4.5,3.6-4.5,7.1c0,0,13.8,3.1,96.2,3.1c82.4,0,96-3.1,96-3.1c0-3.5-2.5-5.7-4.6-7.1\r\n\t\tc-2.3-1.6-17.8-8.6-49.4-17.2c-8-2.2-12.2-4.4-15.1-6.5C275,440.3,271,432,271,421.3v-94.2C271,303.1,283.9,299.4,294.9,295.4z\r\n\t\t M255.9,270.3c-25.4,0-48.5-10-65.5-26.3c-2.7-2.4-5.2-5-7.6-7.7c-15.6-17.5-22.4-36.7-23.1-64.8C159,143.3,159.6,99,167,64h177\r\n\t\tc6.3,24,9.1,76.8,7.7,107.2c-1.4,30.5-7.2,47.3-22.8,64.9c-2,2.2-3.9,4.3-6.1,6.4C305.7,259.7,282,270.3,255.9,270.3z"},"children":[{"name":"path","attribs":{"d":"M294.9,295.4c11-4.1,18-6.9,26.2-11.7c12-6.9,22.8-15.8,31.9-26.1c20.4-22.9,31-51.1,31-86.1c0-49.9-3.7-101.1-8.1-114.7\r\n\t\tC371.5,43,362.4,32,345.2,32H166.7c-17.1,0-26.2,11.1-30.6,24.6c-4.4,13.5-8.1,64.9-8.1,114.8c0,35.1,10.6,63.2,30.9,86.1\r\n\t\tc9.1,10.3,19.9,19.1,31.8,26c8.2,4.8,15.1,7.8,26,11.7s22.3,7.5,22.3,31.8v94.2c0,10.7-2.9,19-11.1,24.8c-2.8,2.1-6.3,4.3-14.3,6.5\r\n\t\tc-31.5,8.6-46.9,15.6-49.2,17.2c-2,1.4-4.5,3.6-4.5,7.1c0,0,13.8,3.1,96.2,3.1c82.4,0,96-3.1,96-3.1c0-3.5-2.5-5.7-4.6-7.1\r\n\t\tc-2.3-1.6-17.8-8.6-49.4-17.2c-8-2.2-12.2-4.4-15.1-6.5C275,440.3,271,432,271,421.3v-94.2C271,303.1,283.9,299.4,294.9,295.4z\r\n\t\t M255.9,270.3c-25.4,0-48.5-10-65.5-26.3c-2.7-2.4-5.2-5-7.6-7.7c-15.6-17.5-22.4-36.7-23.1-64.8C159,143.3,159.6,99,167,64h177\r\n\t\tc6.3,24,9.1,76.8,7.7,107.2c-1.4,30.5-7.2,47.3-22.8,64.9c-2,2.2-3.9,4.3-6.1,6.4C305.7,259.7,282,270.3,255.9,270.3z"},"children":[]}]},{"name":"path","attribs":{"d":"M336.2,170.6c0-7.5-0.1-31.9-1.3-52.6c-0.5-8.4-1.2-16-2.1-22h-153c-0.9,3-1.8,11.6-2.5,22c-1.3,18.9-2.1,43.9-1.5,52.9\r\n\t\tc0.9,13.8,1.5,20.6,4.5,29.4c3.1,9.1,8,17.3,14.6,24.7c2,2.3,4.1,4.4,6.4,6.4c14.2,13.6,33.5,22,54.7,22c21.8,0,41.5-8.8,55.9-23.1\r\n\t\tc1.8-1.7,3.5-3.5,5.2-5.3c6.6-7.4,11.4-15.5,14.5-24.6C334.7,191.4,336.2,181.1,336.2,170.6z M320,179c0,5-3.9,8.1-8.3,8.1\r\n\t\tc-1.6,0-3-0.5-4.3-1.3c-2.2-1.4-3.5-3.9-3.5-6.7v-26c0-4.4,3.6-8,8-8s8,3.6,8,8V179z M318.9,131.8c-1.2,1.8-3,3-5.1,3.5\r\n\t\tc-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1c1.8,1.2,3,3,3.5,5.1\r\n\t\tC320.5,127.8,320.1,130,318.9,131.8z"},"children":[{"name":"path","attribs":{"d":"M336.2,170.6c0-7.5-0.1-31.9-1.3-52.6c-0.5-8.4-1.2-16-2.1-22h-153c-0.9,3-1.8,11.6-2.5,22c-1.3,18.9-2.1,43.9-1.5,52.9\r\n\t\tc0.9,13.8,1.5,20.6,4.5,29.4c3.1,9.1,8,17.3,14.6,24.7c2,2.3,4.1,4.4,6.4,6.4c14.2,13.6,33.5,22,54.7,22c21.8,0,41.5-8.8,55.9-23.1\r\n\t\tc1.8-1.7,3.5-3.5,5.2-5.3c6.6-7.4,11.4-15.5,14.5-24.6C334.7,191.4,336.2,181.1,336.2,170.6z M320,179c0,5-3.9,8.1-8.3,8.1\r\n\t\tc-1.6,0-3-0.5-4.3-1.3c-2.2-1.4-3.5-3.9-3.5-6.7v-26c0-4.4,3.6-8,8-8s8,3.6,8,8V179z M318.9,131.8c-1.2,1.8-3,3-5.1,3.5\r\n\t\tc-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1c1.8,1.2,3,3,3.5,5.1\r\n\t\tC320.5,127.8,320.1,130,318.9,131.8z"},"children":[]}]}]}]};exports.wineglass=wineglass;var woman={"viewBox":"0 0 512 512","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"d":"M190.4,148.6L161,252.9c-6.3,22.8,20.7,31.7,27.3,10.3l26.3-96.2h7.4l-45.2,169H219v127c0,23,32,23,32,0V336h10v127\r\n\t\tc0,23,31,23,31,0V336h43.4l-46.2-169h8.4l26.3,96.2c6.5,21.9,33.3,12.5,27.3-10.2l-29.4-104.4c-4-11.8-18.2-32.6-42-33.6h-47.3\r\n\t\tC207.9,116,193.8,136.6,190.4,148.6z"},"children":[{"name":"path","attribs":{"d":"M190.4,148.6L161,252.9c-6.3,22.8,20.7,31.7,27.3,10.3l26.3-96.2h7.4l-45.2,169H219v127c0,23,32,23,32,0V336h10v127\r\n\t\tc0,23,31,23,31,0V336h43.4l-46.2-169h8.4l26.3,96.2c6.5,21.9,33.3,12.5,27.3-10.2l-29.4-104.4c-4-11.8-18.2-32.6-42-33.6h-47.3\r\n\t\tC207.9,116,193.8,136.6,190.4,148.6z"},"children":[]}]},{"name":"path","attribs":{"d":"M292.6,69.2c0-20.6-16.4-37.3-36.6-37.3c-20.2,0-36.6,16.7-36.6,37.3c0,20.6,16.4,37.3,36.6,37.3\r\n\t\tC276.2,106.5,292.6,89.8,292.6,69.2z"},"children":[{"name":"path","attribs":{"d":"M292.6,69.2c0-20.6-16.4-37.3-36.6-37.3c-20.2,0-36.6,16.7-36.6,37.3c0,20.6,16.4,37.3,36.6,37.3\r\n\t\tC276.2,106.5,292.6,89.8,292.6,69.2z"},"children":[]}]}]}]};exports.woman=woman;var wrench={"viewBox":"0 0 512 512","children":[{"name":"path","attribs":{"d":"M461.9,114.9l-56.5,56.7l-55.1-10l-9.9-55.1l56.5-56.7c-12.7-12.7-30.8-18.5-44.2-17.8c-13.5,0.7-42.3,8.3-64.6,32\r\n\tc-21.6,22.8-44.3,65.3-24.2,112.5c2.4,5.7,5.1,13.2-2.9,21.2c-8.1,8-215,202.8-215,202.8c-19.4,16.7-18,47.6-0.1,65.6\r\n\tc18.2,17.9,48.9,19,65.6-0.3c0,0,193.2-205.8,202.7-215.1c8.5-8.3,16.1-5.5,21.2-2.9c35.6,18.4,86.3,2.4,112.6-23.9\r\n\tc26.3-26.3,31.1-51.7,31.9-64.7C480.7,146.3,476.2,129.2,461.9,114.9z M91.3,443.2c-6.3,6.2-16.5,6.2-22.7,0\r\n\tc-6.2-6.3-6.2-16.5,0-22.7c6.3-6.2,16.5-6.2,22.7,0C97.5,426.8,97.5,437,91.3,443.2z"},"children":[]}]};exports.wrench=wrench;var xbox={"viewBox":"0 0 512 512","children":[{"name":"style","attribs":{"type":"text/css"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"class":"st0","d":"M126.8,248.3c39.7-58.6,77.9-92.8,77.9-92.8s-42.1-48.9-92.8-67.4l-3.3-0.8C61.7,128.4,32,188.7,32,256\r\n\t\tc0,50.7,16.9,97.5,45.2,135C77.2,386.6,77.8,320.7,126.8,248.3z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M126.8,248.3c39.7-58.6,77.9-92.8,77.9-92.8s-42.1-48.9-92.8-67.4l-3.3-0.8C61.7,128.4,32,188.7,32,256\r\n\t\tc0,50.7,16.9,97.5,45.2,135C77.2,386.6,77.8,320.7,126.8,248.3z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M480,256c0-67.3-29.7-127.6-76.6-168.7l-3.2,0.9c-50.7,18.5-92.9,67.4-92.9,67.4s38.2,34.2,77.9,92.8\r\n\t\tc49,72.4,49.6,138.3,49.5,142.7C463.2,353.5,480,306.7,480,256z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M480,256c0-67.3-29.7-127.6-76.6-168.7l-3.2,0.9c-50.7,18.5-92.9,67.4-92.9,67.4s38.2,34.2,77.9,92.8\r\n\t\tc49,72.4,49.6,138.3,49.5,142.7C463.2,353.5,480,306.7,480,256z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M201.2,80.9c29.3,13.1,54.6,34.6,54.6,34.6s25.5-21.4,54.8-34.6c36.8-16.5,64.9-11.3,72.3-9.5\r\n\t\tC346.8,46.6,303.1,32,256,32c-47.1,0-90.8,14.6-126.9,39.4C136.3,69.6,164.3,64.3,201.2,80.9z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M201.2,80.9c29.3,13.1,54.6,34.6,54.6,34.6s25.5-21.4,54.8-34.6c36.8-16.5,64.9-11.3,72.3-9.5\r\n\t\tC346.8,46.6,303.1,32,256,32c-47.1,0-90.8,14.6-126.9,39.4C136.3,69.6,164.3,64.3,201.2,80.9z"},"children":[]}]},{"name":"path","attribs":{"class":"st0","d":"M358.7,292.9C312.4,236,255.8,199,255.8,199s-56.3,37-102.7,93.9c-39.8,48.9-54.6,84.8-62.6,107.8l-1.3,4.8\r\n\t\tc41,45.7,100.5,74.5,166.8,74.5c66.3,0,125.8-28.8,166.8-74.5l-1.4-4.8C413.4,377.7,398.5,341.8,358.7,292.9z"},"children":[{"name":"path","attribs":{"class":"st0","d":"M358.7,292.9C312.4,236,255.8,199,255.8,199s-56.3,37-102.7,93.9c-39.8,48.9-54.6,84.8-62.6,107.8l-1.3,4.8\r\n\t\tc41,45.7,100.5,74.5,166.8,74.5c66.3,0,125.8-28.8,166.8-74.5l-1.4-4.8C413.4,377.7,398.5,341.8,358.7,292.9z"},"children":[]}]}]}]};exports.xbox=xbox;
\ No newline at end of file
diff --git a/dist/ionicons/information.js b/dist/ionicons/information.js
new file mode 100644
index 000000000..ae432e5fd
--- /dev/null
+++ b/dist/ionicons/information.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.information = void 0;
+var information = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "288,448 288,192 192,192 192,208 224,208 224,448 192,448 192,464 320,464 320,448 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "288,448 288,192 192,192 192,208 224,208 224,448 192,448 192,464 320,464 320,448 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M255.8,144.5c26.6,0,48.2-21.6,48.2-48.2s-21.6-48.2-48.2-48.2c-26.6,0-48.2,21.6-48.2,48.2S229.2,144.5,255.8,144.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.8,144.5c26.6,0,48.2-21.6,48.2-48.2s-21.6-48.2-48.2-48.2c-26.6,0-48.2,21.6-48.2,48.2S229.2,144.5,255.8,144.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.information = information;
\ No newline at end of file
diff --git a/dist/ionicons/informationCircled.js b/dist/ionicons/informationCircled.js
new file mode 100644
index 000000000..4d30936fd
--- /dev/null
+++ b/dist/ionicons/informationCircled.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.informationCircled = void 0;
+var informationCircled = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,253C478.3,129.3,376.7,30.4,253,32S30.4,135.3,32,259c1.7,123.7,103.3,222.6,227,221C382.7,478.3,481.7,376.7,480,253\r\n\t\tz M256,111.9c17.7,0,32,14.3,32,32s-14.3,32-32,32c-17.7,0-32-14.3-32-32S238.3,111.9,256,111.9z M300,395h-88v-11h22V224h-22v-12\r\n\t\th66v172h22V395z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,253C478.3,129.3,376.7,30.4,253,32S30.4,135.3,32,259c1.7,123.7,103.3,222.6,227,221C382.7,478.3,481.7,376.7,480,253\r\n\t\tz M256,111.9c17.7,0,32,14.3,32,32s-14.3,32-32,32c-17.7,0-32-14.3-32-32S238.3,111.9,256,111.9z M300,395h-88v-11h22V224h-22v-12\r\n\t\th66v172h22V395z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.informationCircled = informationCircled;
\ No newline at end of file
diff --git a/dist/ionicons/ionic.js b/dist/ionicons/ionic.js
new file mode 100644
index 000000000..0d20abe4c
--- /dev/null
+++ b/dist/ionicons/ionic.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ionic = void 0;
+var ionic = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M423.592,132.804C427.006,127.714,429,121.59,429,115c0-17.675-14.33-32-32-32c-6.59,0-12.714,1.994-17.805,5.409\r\n\t\tC344.709,63.015,302.11,48,256,48C141.125,48,48,141.125,48,256c0,114.877,93.125,208,208,208c114.873,0,208-93.123,208-208\r\n\t\tC464,209.889,448.984,167.29,423.592,132.804z M391.83,391.832c-17.646,17.646-38.191,31.499-61.064,41.174\r\n\t\tc-23.672,10.012-48.826,15.089-74.766,15.089c-25.94,0-51.095-5.077-74.767-15.089c-22.873-9.675-43.417-23.527-61.064-41.174\r\n\t\ts-31.5-38.191-41.174-61.064C68.982,307.096,63.905,281.94,63.905,256c0-25.94,5.077-51.095,15.089-74.767\r\n\t\tc9.674-22.873,23.527-43.417,41.174-61.064s38.191-31.5,61.064-41.174C204.905,68.982,230.06,63.905,256,63.905\r\n\t\tc25.939,0,51.094,5.077,74.766,15.089c13.446,5.687,26.08,12.83,37.802,21.327C366.293,104.719,365,109.707,365,115\r\n\t\tc0,17.675,14.327,32,32,32c5.293,0,10.28-1.293,14.678-3.568c8.498,11.721,15.641,24.355,21.327,37.801\r\n\t\tc10.013,23.672,15.09,48.827,15.09,74.767c0,25.939-5.077,51.096-15.09,74.768C423.33,353.641,409.478,374.186,391.83,391.832z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M423.592,132.804C427.006,127.714,429,121.59,429,115c0-17.675-14.33-32-32-32c-6.59,0-12.714,1.994-17.805,5.409\r\n\t\tC344.709,63.015,302.11,48,256,48C141.125,48,48,141.125,48,256c0,114.877,93.125,208,208,208c114.873,0,208-93.123,208-208\r\n\t\tC464,209.889,448.984,167.29,423.592,132.804z M391.83,391.832c-17.646,17.646-38.191,31.499-61.064,41.174\r\n\t\tc-23.672,10.012-48.826,15.089-74.766,15.089c-25.94,0-51.095-5.077-74.767-15.089c-22.873-9.675-43.417-23.527-61.064-41.174\r\n\t\ts-31.5-38.191-41.174-61.064C68.982,307.096,63.905,281.94,63.905,256c0-25.94,5.077-51.095,15.089-74.767\r\n\t\tc9.674-22.873,23.527-43.417,41.174-61.064s38.191-31.5,61.064-41.174C204.905,68.982,230.06,63.905,256,63.905\r\n\t\tc25.939,0,51.094,5.077,74.766,15.089c13.446,5.687,26.08,12.83,37.802,21.327C366.293,104.719,365,109.707,365,115\r\n\t\tc0,17.675,14.327,32,32,32c5.293,0,10.28-1.293,14.678-3.568c8.498,11.721,15.641,24.355,21.327,37.801\r\n\t\tc10.013,23.672,15.09,48.827,15.09,74.767c0,25.939-5.077,51.096-15.09,74.768C423.33,353.641,409.478,374.186,391.83,391.832z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "256.003",
+ "cy": "256",
+ "r": "96"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256.003",
+ "cy": "256",
+ "r": "96"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ionic = ionic;
\ No newline at end of file
diff --git a/dist/ionicons/iosAlarm.js b/dist/ionicons/iosAlarm.js
new file mode 100644
index 000000000..ff85452f3
--- /dev/null
+++ b/dist/ionicons/iosAlarm.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosAlarm = void 0;
+var iosAlarm = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.6,10.4c-25.7-19.4-57.2-32-91.2-34.9v-0.1c0-8.5-7-15.5-15.5-15.5s-15.5,7-15.5,15.5\r\n\t\tv0.1c-34,2.9-65,15.5-90.6,34.9L139,128.6l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1c-1.6,0-3.2,0.1-4.8,0.1\r\n\t\tc-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2c0,43.9,16.2,84,43,114.7\r\n\t\tl-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0c47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1\r\n\t\tL389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5L438.4,192.4z M272,304H160v-16h96V160h16V304z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.6,10.4c-25.7-19.4-57.2-32-91.2-34.9v-0.1c0-8.5-7-15.5-15.5-15.5s-15.5,7-15.5,15.5\r\n\t\tv0.1c-34,2.9-65,15.5-90.6,34.9L139,128.6l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1c-1.6,0-3.2,0.1-4.8,0.1\r\n\t\tc-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2c0,43.9,16.2,84,43,114.7\r\n\t\tl-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0c47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1\r\n\t\tL389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5L438.4,192.4z M272,304H160v-16h96V160h16V304z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosAlarm = iosAlarm;
\ No newline at end of file
diff --git a/dist/ionicons/iosAlarmOutline.js b/dist/ionicons/iosAlarmOutline.js
new file mode 100644
index 000000000..ae48f35e2
--- /dev/null
+++ b/dist/ionicons/iosAlarmOutline.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosAlarmOutline = void 0;
+var iosAlarmOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.5,10.4c-25.7-19.4-57-32-91-34.9v-0.1c0-8.5-7-15.5-15.5-15.5\r\n\t\t\tc-8.5,0-15.5,7-15.5,15.5v0.1c-33.9,2.9-65.1,15.5-90.7,34.9l-10.4-10.4l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1\r\n\t\t\tc-1.6,0-3.2,0.1-4.8,0.1c-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2\r\n\t\t\tc0,43.9,16.2,84,43,114.7l-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0\r\n\t\t\tc47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1L389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5\r\n\t\t\tL438.4,192.4z M76.2,167.8c-4.2-8.6-6.4-18.4-6.5-28c-0.1-35.1,28.4-64.6,65.5-66.8c12.7-0.7,23.1,1.4,32.1,6.1L76.2,167.8z\r\n\t\t\t M415.9,276.5c0,87.7-72,157.1-160.1,157.1C167.8,433.6,96,364.2,96,276.5c0-87.7,71.8-158.7,159.9-158.7\r\n\t\t\tC344,117.8,415.9,188.7,415.9,276.5z M344.7,79.2c8.8-4.8,19.3-6.8,32.1-6.1c37.2,2,65.6,31.5,65.5,66.8c0,9.6-2.3,19.4-6.5,28.1\r\n\t\t\tL344.7,79.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M438.4,192.4c12.2-14.2,19.6-32.3,19.6-52.2c0.1-43.8-35.5-79.6-80.4-82.1c-1.6-0.1-3.1-0.1-4.8-0.1\r\n\t\t\tc-20.4-0.1-39.1,6.8-53.8,18.1l53.8,52.4l-10.5,10.4c-25.7-19.4-57-32-91-34.9v-0.1c0-8.5-7-15.5-15.5-15.5\r\n\t\t\tc-8.5,0-15.5,7-15.5,15.5v0.1c-33.9,2.9-65.1,15.5-90.7,34.9l-10.4-10.4l53.8-52.4c-14.7-11.4-33.4-18.2-53.7-18.1\r\n\t\t\tc-1.6,0-3.2,0.1-4.8,0.1c-45,2.5-80.6,38.3-80.4,82.1c0,19.8,7.4,38,19.6,52.2l54-52.6l9.5,9.5c-35.1,31.9-57.1,78-57.1,129.2\r\n\t\t\tc0,43.9,16.2,84,43,114.7l-36.4,44.6L99,448l35.2-42.9c31.6,30.2,74.4,48.9,121.6,48.9h0.1c0,0,0.2,0,0.3,0\r\n\t\t\tc47.2,0,90.2-18.7,121.8-48.9l35.2,43l12.3-10.1L389,393.3c26.8-30.8,43-70.9,43-114.7c0-51.1-22-97.3-57.2-129.3l9.5-9.5\r\n\t\t\tL438.4,192.4z M76.2,167.8c-4.2-8.6-6.4-18.4-6.5-28c-0.1-35.1,28.4-64.6,65.5-66.8c12.7-0.7,23.1,1.4,32.1,6.1L76.2,167.8z\r\n\t\t\t M415.9,276.5c0,87.7-72,157.1-160.1,157.1C167.8,433.6,96,364.2,96,276.5c0-87.7,71.8-158.7,159.9-158.7\r\n\t\t\tC344,117.8,415.9,188.7,415.9,276.5z M344.7,79.2c8.8-4.8,19.3-6.8,32.1-6.1c37.2,2,65.6,31.5,65.5,66.8c0,9.6-2.3,19.4-6.5,28.1\r\n\t\t\tL344.7,79.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "256,160 256,288 160,288 160,304 272,304 272,160 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,160 256,288 160,288 160,304 272,304 272,160 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosAlarmOutline = iosAlarmOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosAlbums.js b/dist/ionicons/iosAlbums.js
new file mode 100644
index 000000000..ccfa5d5b7
--- /dev/null
+++ b/dist/ionicons/iosAlbums.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosAlbums = void 0;
+var iosAlbums = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,128H32v320h448V128L480,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,128H32v320h448V128L480,128z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "72",
+ "y": "96",
+ "width": "368",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "72",
+ "y": "96",
+ "width": "368",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "104",
+ "y": "64",
+ "width": "304",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "104",
+ "y": "64",
+ "width": "304",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosAlbums = iosAlbums;
\ No newline at end of file
diff --git a/dist/ionicons/iosAlbumsOutline.js b/dist/ionicons/iosAlbumsOutline.js
new file mode 100644
index 000000000..13e671f89
--- /dev/null
+++ b/dist/ionicons/iosAlbumsOutline.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosAlbumsOutline = void 0;
+var iosAlbumsOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,144v288H48V144H464 M480,128H32v320h448V128L480,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,144v288H48V144H464 M480,128H32v320h448V128L480,128z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "72",
+ "y": "96",
+ "width": "368",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "72",
+ "y": "96",
+ "width": "368",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "104",
+ "y": "64",
+ "width": "304",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "104",
+ "y": "64",
+ "width": "304",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosAlbumsOutline = iosAlbumsOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosAmericanfootball.js b/dist/ionicons/iosAmericanfootball.js
new file mode 100644
index 000000000..22823084e
--- /dev/null
+++ b/dist/ionicons/iosAmericanfootball.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosAmericanfootball = void 0;
+var iosAmericanfootball = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M378.605,133.395C305.902,60.691,189.381,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.148,464c38.927,0,65.193-3.658,65.193-3.658\r\n\t\t\tS490.327,245.116,378.605,133.395z M68.124,194.728L194.707,68.146c6.123,0.861,12.164,1.825,18.112,2.899L71.025,212.838\r\n\t\t\tC69.955,206.901,68.987,200.862,68.124,194.728z M267.312,335.195l28.688-28.688l-22.627-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.688-28.688l-22.627-22.627l-28.688,28.688l-11.313-11.312l28.688-28.688l-22.628-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.689-28.689l-22.628-22.627l-28.688,28.688l-11.314-11.313l67.884-67.883l11.313,11.314l-28.688,28.688l22.628,22.627\r\n\t\t\tl28.688-28.688l11.313,11.313l-28.688,28.688l22.628,22.628l28.688-28.688l11.314,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.313,11.312l-28.688,28.688l22.628,22.628l28.688-28.688l11.312,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.314,11.312l-67.883,67.884l-11.313-11.313l28.688-28.688l-22.628-22.628l-28.688,28.688L267.312,335.195z\r\n\t\t\t M317.259,443.891c-6.121-0.863-12.159-1.83-18.104-2.906L440.979,299.16c1.071,5.938,2.038,11.977,2.901,18.111L317.259,443.891z\r\n\t\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M378.605,133.395C305.902,60.691,189.381,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.148,464c38.927,0,65.193-3.658,65.193-3.658\r\n\t\t\tS490.327,245.116,378.605,133.395z M68.124,194.728L194.707,68.146c6.123,0.861,12.164,1.825,18.112,2.899L71.025,212.838\r\n\t\t\tC69.955,206.901,68.987,200.862,68.124,194.728z M267.312,335.195l28.688-28.688l-22.627-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.688-28.688l-22.627-22.627l-28.688,28.688l-11.313-11.312l28.688-28.688l-22.628-22.628l-28.688,28.688l-11.313-11.312\r\n\t\t\tl28.689-28.689l-22.628-22.627l-28.688,28.688l-11.314-11.313l67.884-67.883l11.313,11.314l-28.688,28.688l22.628,22.627\r\n\t\t\tl28.688-28.688l11.313,11.313l-28.688,28.688l22.628,22.628l28.688-28.688l11.314,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.313,11.312l-28.688,28.688l22.628,22.628l28.688-28.688l11.312,11.313l-28.688,28.688l22.627,22.627\r\n\t\t\tl28.688-28.688l11.314,11.312l-67.883,67.884l-11.313-11.313l28.688-28.688l-22.628-22.628l-28.688,28.688L267.312,335.195z\r\n\t\t\t M317.259,443.891c-6.121-0.863-12.159-1.83-18.104-2.906L440.979,299.16c1.071,5.938,2.038,11.977,2.901,18.111L317.259,443.891z\r\n\t\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosAmericanfootball = iosAmericanfootball;
\ No newline at end of file
diff --git a/dist/ionicons/iosAmericanfootballOutline.js b/dist/ionicons/iosAmericanfootballOutline.js
new file mode 100644
index 000000000..20534b7ba
--- /dev/null
+++ b/dist/ionicons/iosAmericanfootballOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosAmericanfootballOutline = void 0;
+var iosAmericanfootballOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M378.605,133.395C305.902,60.691,189.38,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.149,464c38.926,0,65.192-3.658,65.192-3.658\r\n\t\tS490.326,245.116,378.605,133.395z M65.142,65.208C76.137,64.194,94.374,63,116.856,63H117l-0.068-0.071\r\n\t\tc27.167,0,53.167,1.754,77.792,5.22l-126.6,126.581c-1.025-7.283-1.91-14.697-2.64-22.246\r\n\t\tC60.898,125.049,63.398,84.256,65.142,65.208z M143.9,368.102c-23.85-23.852-42.793-54.938-56.304-92.396\r\n\t\tc-6.973-19.332-12.51-40.373-16.57-62.866L212.838,71.05c10.672,1.929,21.064,4.191,31.141,6.804\r\n\t\tc52.027,13.492,93.783,35.708,124.139,66.064c23.851,23.85,42.786,54.928,56.297,92.386c6.974,19.333,12.509,40.375,16.567,62.871\r\n\t\tL299.17,440.986c-10.66-1.93-21.041-4.191-31.104-6.801C216.036,420.696,174.26,398.459,143.9,368.102z M446.861,446.868\r\n\t\tc-10.994,1.012-29.23,2.275-51.71,2.275c-27.192,0-53.225-1.77-77.876-5.25l126.607-126.607c1.024,7.279,1.908,14.688,2.638,22.233\r\n\t\tC451.108,386.956,448.606,427.817,446.861,446.868z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M378.605,133.395C305.902,60.691,189.38,47.998,116.85,48c-38.926,0.001-65.191,3.658-65.191,3.658\r\n\t\ts-29.984,215.227,81.736,326.947C206.099,451.309,322.617,464,395.149,464c38.926,0,65.192-3.658,65.192-3.658\r\n\t\tS490.326,245.116,378.605,133.395z M65.142,65.208C76.137,64.194,94.374,63,116.856,63H117l-0.068-0.071\r\n\t\tc27.167,0,53.167,1.754,77.792,5.22l-126.6,126.581c-1.025-7.283-1.91-14.697-2.64-22.246\r\n\t\tC60.898,125.049,63.398,84.256,65.142,65.208z M143.9,368.102c-23.85-23.852-42.793-54.938-56.304-92.396\r\n\t\tc-6.973-19.332-12.51-40.373-16.57-62.866L212.838,71.05c10.672,1.929,21.064,4.191,31.141,6.804\r\n\t\tc52.027,13.492,93.783,35.708,124.139,66.064c23.851,23.85,42.786,54.928,56.297,92.386c6.974,19.333,12.509,40.375,16.567,62.871\r\n\t\tL299.17,440.986c-10.66-1.93-21.041-4.191-31.104-6.801C216.036,420.696,174.26,398.459,143.9,368.102z M446.861,446.868\r\n\t\tc-10.994,1.012-29.23,2.275-51.71,2.275c-27.192,0-53.225-1.77-77.876-5.25l126.607-126.607c1.024,7.279,1.908,14.688,2.638,22.233\r\n\t\tC451.108,386.956,448.606,427.817,446.861,446.868z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "307.304,317.847 329.929,340.479 301.275,369.131 312.59,380.445 380.471,312.564 369.157,301.25 340.436,329.971 \r\n\t\t317.811,307.34 346.527,278.623 335.214,267.31 306.499,296.024 283.866,273.386 312.568,244.684 301.255,233.37 272.555,262.07 \r\n\t\t249.929,239.439 278.626,210.742 267.312,199.429 238.618,228.124 215.987,205.487 244.674,176.8 233.361,165.487 204.676,194.172 \r\n\t\t182.052,171.542 210.734,142.86 199.421,131.547 131.538,199.429 142.852,210.743 171.545,182.049 194.169,204.679 165.478,233.37 \r\n\t\t176.791,244.683 205.48,215.994 228.11,238.631 199.432,267.31 210.745,278.623 239.422,249.946 262.048,272.577 233.374,301.251 \r\n\t\t244.688,312.564 273.359,283.893 295.992,306.531 267.332,335.191 278.646,346.505 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "307.304,317.847 329.929,340.479 301.275,369.131 312.59,380.445 380.471,312.564 369.157,301.25 340.436,329.971 \r\n\t\t317.811,307.34 346.527,278.623 335.214,267.31 306.499,296.024 283.866,273.386 312.568,244.684 301.255,233.37 272.555,262.07 \r\n\t\t249.929,239.439 278.626,210.742 267.312,199.429 238.618,228.124 215.987,205.487 244.674,176.8 233.361,165.487 204.676,194.172 \r\n\t\t182.052,171.542 210.734,142.86 199.421,131.547 131.538,199.429 142.852,210.743 171.545,182.049 194.169,204.679 165.478,233.37 \r\n\t\t176.791,244.683 205.48,215.994 228.11,238.631 199.432,267.31 210.745,278.623 239.422,249.946 262.048,272.577 233.374,301.251 \r\n\t\t244.688,312.564 273.359,283.893 295.992,306.531 267.332,335.191 278.646,346.505 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosAmericanfootballOutline = iosAmericanfootballOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosAnalytics.js b/dist/ionicons/iosAnalytics.js
new file mode 100644
index 000000000..2536f1928
--- /dev/null
+++ b/dist/ionicons/iosAnalytics.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosAnalytics = void 0;
+var iosAnalytics = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C141.174,32,46.544,118.404,33.54,229.739C32.534,238.354,32,247.114,32,256c0,1.783,0.026,3.561,0.067,5.333\r\n\tC34.901,382.581,134.071,480,256,480c105.255,0,193.537-72.602,217.542-170.454c1.337-5.451,2.474-10.979,3.404-16.579\r\n\tC478.943,280.939,480,268.594,480,256C480,132.288,379.712,32,256,32z M462.585,280.352c-7.265-7.807-13.064-16.09-15.702-20.429\r\n\tc-0.871-1.47-21.682-35.994-52.828-35.994c-27.937,0-42.269,26.269-51.751,43.65c-1.415,2.593-2.75,5.041-3.978,7.118\r\n\tc-11.566,19.587-27.693,30.608-43.105,29.541c-13.586-0.959-25.174-11.403-32.628-29.41c-9.331-22.54-29.551-46.812-53.689-50.229\r\n\tc-11.428-1.619-28.553,0.866-45.325,21.876c-3.293,4.124-6.964,9.612-11.215,15.967c-10.572,15.804-26.549,39.686-38.653,41.663\r\n\tc-21.02,3.438-35.021-12.596-35.583-13.249l-0.487-0.58l-0.587-0.479c-0.208-0.17-15.041-12.417-29.047-33.334\r\n\tc0-0.155-0.006-0.31-0.006-0.464c0-28.087,5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12\r\n\ts41.354-34.107,66.12-44.583C200.675,53.497,227.913,48,256,48s55.325,5.497,80.958,16.339\r\n\tc24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12C458.503,200.675,464,227.913,464,256\r\n\tC464,264.197,463.518,272.318,462.585,280.352z"
+ },
+ "children": []
+ }]
+};
+exports.iosAnalytics = iosAnalytics;
\ No newline at end of file
diff --git a/dist/ionicons/iosAnalyticsOutline.js b/dist/ionicons/iosAnalyticsOutline.js
new file mode 100644
index 000000000..0c33119bc
--- /dev/null
+++ b/dist/ionicons/iosAnalyticsOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosAnalyticsOutline = void 0;
+var iosAnalyticsOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c28.087,0,55.325,5.497,80.958,16.339c24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12\r\n\t\tC458.503,200.675,464,227.913,464,256s-5.497,55.325-16.339,80.958c-10.476,24.767-25.476,47.013-44.583,66.12\r\n\t\ts-41.354,34.107-66.12,44.583C311.325,458.503,284.087,464,256,464s-55.325-5.497-80.958-16.339\r\n\t\tc-24.767-10.476-47.013-25.476-66.12-44.583s-34.107-41.354-44.583-66.12C53.497,311.325,48,284.087,48,256\r\n\t\ts5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12s41.354-34.107,66.12-44.583\r\n\t\tC200.675,53.497,227.913,48,256,48 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224\r\n\t\tS379.712,32,256,32L256,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c28.087,0,55.325,5.497,80.958,16.339c24.767,10.476,47.013,25.476,66.12,44.583s34.107,41.354,44.583,66.12\r\n\t\tC458.503,200.675,464,227.913,464,256s-5.497,55.325-16.339,80.958c-10.476,24.767-25.476,47.013-44.583,66.12\r\n\t\ts-41.354,34.107-66.12,44.583C311.325,458.503,284.087,464,256,464s-55.325-5.497-80.958-16.339\r\n\t\tc-24.767-10.476-47.013-25.476-66.12-44.583s-34.107-41.354-44.583-66.12C53.497,311.325,48,284.087,48,256\r\n\t\ts5.497-55.325,16.339-80.958c10.476-24.767,25.476-47.013,44.583-66.12s41.354-34.107,66.12-44.583\r\n\t\tC200.675,53.497,227.913,48,256,48 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224\r\n\t\tS379.712,32,256,32L256,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M107.776,320c-25.252,0-41.168-18.448-41.902-19.317c-2.841-3.359-2.401-8.371,0.982-11.192\r\n\t\tc3.374-2.813,8.401-2.388,11.248,0.948c0.604,0.701,14.606,16.597,35.606,13.186c12.104-1.964,28.08-25.681,38.652-41.376\r\n\t\tc4.251-6.311,7.922-11.761,11.215-15.856c16.773-20.865,33.899-23.333,45.325-21.726c24.139,3.394,44.358,27.498,53.689,49.882\r\n\t\tc7.454,17.884,19.042,28.256,32.628,29.208c15.408,1.061,31.539-9.885,43.105-29.336c1.228-2.064,2.562-4.496,3.978-7.07\r\n\t\tc9.482-17.262,23.814-43.35,51.75-43.35c31.146,0,51.957,34.286,52.828,35.746c2.252,3.774,0.996,8.648-2.806,10.885\r\n\t\tc-3.8,2.237-8.708,0.988-10.96-2.786c-0.037-0.062-4.493-7.413-11.859-14.568c-6.286-6.107-16.108-13.387-27.203-13.387\r\n\t\tc-18.438,0-29.121,19.445-37.705,35.07c-1.48,2.696-2.88,5.243-4.245,7.538c-14.718,24.751-36.4,38.635-58.01,37.108\r\n\t\tc-19.951-1.398-36.389-15.242-46.284-38.98c-10.013-24.02-28.279-38.417-41.149-40.228c-10.6-1.494-20.895,3.861-30.578,15.906\r\n\t\tc-2.872,3.573-6.539,9.017-10.421,14.779c-13.549,20.114-30.411,45.146-49.37,48.223C113.349,319.784,110.507,320,107.776,320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M107.776,320c-25.252,0-41.168-18.448-41.902-19.317c-2.841-3.359-2.401-8.371,0.982-11.192\r\n\t\tc3.374-2.813,8.401-2.388,11.248,0.948c0.604,0.701,14.606,16.597,35.606,13.186c12.104-1.964,28.08-25.681,38.652-41.376\r\n\t\tc4.251-6.311,7.922-11.761,11.215-15.856c16.773-20.865,33.899-23.333,45.325-21.726c24.139,3.394,44.358,27.498,53.689,49.882\r\n\t\tc7.454,17.884,19.042,28.256,32.628,29.208c15.408,1.061,31.539-9.885,43.105-29.336c1.228-2.064,2.562-4.496,3.978-7.07\r\n\t\tc9.482-17.262,23.814-43.35,51.75-43.35c31.146,0,51.957,34.286,52.828,35.746c2.252,3.774,0.996,8.648-2.806,10.885\r\n\t\tc-3.8,2.237-8.708,0.988-10.96-2.786c-0.037-0.062-4.493-7.413-11.859-14.568c-6.286-6.107-16.108-13.387-27.203-13.387\r\n\t\tc-18.438,0-29.121,19.445-37.705,35.07c-1.48,2.696-2.88,5.243-4.245,7.538c-14.718,24.751-36.4,38.635-58.01,37.108\r\n\t\tc-19.951-1.398-36.389-15.242-46.284-38.98c-10.013-24.02-28.279-38.417-41.149-40.228c-10.6-1.494-20.895,3.861-30.578,15.906\r\n\t\tc-2.872,3.573-6.539,9.017-10.421,14.779c-13.549,20.114-30.411,45.146-49.37,48.223C113.349,319.784,110.507,320,107.776,320z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosAnalyticsOutline = iosAnalyticsOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosArrowBack.js b/dist/ionicons/iosArrowBack.js
new file mode 100644
index 000000000..169310034
--- /dev/null
+++ b/dist/ionicons/iosArrowBack.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosArrowBack = void 0;
+var iosArrowBack = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "352,128.4 319.7,96 160,256 160,256 160,256 319.7,416 352,383.6 224.7,256 "
+ },
+ "children": []
+ }]
+};
+exports.iosArrowBack = iosArrowBack;
\ No newline at end of file
diff --git a/dist/ionicons/iosArrowDown.js b/dist/ionicons/iosArrowDown.js
new file mode 100644
index 000000000..e9b677cce
--- /dev/null
+++ b/dist/ionicons/iosArrowDown.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosArrowDown = void 0;
+var iosArrowDown = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "396.6,160 416,180.7 256,352 96,180.7 115.3,160 256,310.5 "
+ },
+ "children": []
+ }]
+};
+exports.iosArrowDown = iosArrowDown;
\ No newline at end of file
diff --git a/dist/ionicons/iosArrowForward.js b/dist/ionicons/iosArrowForward.js
new file mode 100644
index 000000000..ffa025f45
--- /dev/null
+++ b/dist/ionicons/iosArrowForward.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosArrowForward = void 0;
+var iosArrowForward = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "160,128.4 192.3,96 352,256 352,256 352,256 192.3,416 160,383.6 287.3,256 "
+ },
+ "children": []
+ }]
+};
+exports.iosArrowForward = iosArrowForward;
\ No newline at end of file
diff --git a/dist/ionicons/iosArrowLeft.js b/dist/ionicons/iosArrowLeft.js
new file mode 100644
index 000000000..d534c1538
--- /dev/null
+++ b/dist/ionicons/iosArrowLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosArrowLeft = void 0;
+var iosArrowLeft = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "352,115.4 331.3,96 160,256 331.3,416 352,396.7 201.5,256 "
+ },
+ "children": []
+ }]
+};
+exports.iosArrowLeft = iosArrowLeft;
\ No newline at end of file
diff --git a/dist/ionicons/iosArrowRight.js b/dist/ionicons/iosArrowRight.js
new file mode 100644
index 000000000..69337c984
--- /dev/null
+++ b/dist/ionicons/iosArrowRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosArrowRight = void 0;
+var iosArrowRight = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "160,115.4 180.7,96 352,256 180.7,416 160,396.7 310.5,256 "
+ },
+ "children": []
+ }]
+};
+exports.iosArrowRight = iosArrowRight;
\ No newline at end of file
diff --git a/dist/ionicons/iosArrowThinDown.js b/dist/ionicons/iosArrowThinDown.js
new file mode 100644
index 000000000..00df8ad62
--- /dev/null
+++ b/dist/ionicons/iosArrowThinDown.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosArrowThinDown = void 0;
+var iosArrowThinDown = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M349.7,322.2c-3.1-3.1-8-3-11.3,0L264,388.6V104c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v284.6l-74.4-66.3\r\n\tc-3.4-2.9-8.1-3.2-11.2-0.1c-3.1,3.1-3.3,8.5-0.1,11.4c0,0,87,79.2,88,80s2.8,2.4,5.7,2.4s4.9-1.6,5.7-2.4s88-80,88-80\r\n\tc1.5-1.5,2.3-3.6,2.3-5.7C352,325.8,351.2,323.8,349.7,322.2z"
+ },
+ "children": []
+ }]
+};
+exports.iosArrowThinDown = iosArrowThinDown;
\ No newline at end of file
diff --git a/dist/ionicons/iosArrowThinLeft.js b/dist/ionicons/iosArrowThinLeft.js
new file mode 100644
index 000000000..66a9cabb3
--- /dev/null
+++ b/dist/ionicons/iosArrowThinLeft.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosArrowThinLeft = void 0;
+var iosArrowThinLeft = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M189.8,349.7c3.1-3.1,3-8,0-11.3L123.4,264H408c4.4,0,8-3.6,8-8c0-4.4-3.6-8-8-8H123.4l66.3-74.4c2.9-3.4,3.2-8.1,0.1-11.2\r\n\tc-3.1-3.1-8.5-3.3-11.4-0.1c0,0-79.2,87-80,88S96,253.1,96,256s1.6,4.9,2.4,5.7s80,88,80,88c1.5,1.5,3.6,2.3,5.7,2.3\r\n\tC186.2,352,188.2,351.2,189.8,349.7z"
+ },
+ "children": []
+ }]
+};
+exports.iosArrowThinLeft = iosArrowThinLeft;
\ No newline at end of file
diff --git a/dist/ionicons/iosArrowThinRight.js b/dist/ionicons/iosArrowThinRight.js
new file mode 100644
index 000000000..9e6301f4b
--- /dev/null
+++ b/dist/ionicons/iosArrowThinRight.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosArrowThinRight = void 0;
+var iosArrowThinRight = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M322.2,349.7c-3.1-3.1-3-8,0-11.3l66.4-74.4H104c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8h284.6l-66.3-74.4\r\n\tc-2.9-3.4-3.2-8.1-0.1-11.2c3.1-3.1,8.5-3.3,11.4-0.1c0,0,79.2,87,80,88s2.4,2.8,2.4,5.7s-1.6,4.9-2.4,5.7s-80,88-80,88\r\n\tc-1.5,1.5-3.6,2.3-5.7,2.3C325.8,352,323.8,351.2,322.2,349.7z"
+ },
+ "children": []
+ }]
+};
+exports.iosArrowThinRight = iosArrowThinRight;
\ No newline at end of file
diff --git a/dist/ionicons/iosArrowThinUp.js b/dist/ionicons/iosArrowThinUp.js
new file mode 100644
index 000000000..5d0354ebd
--- /dev/null
+++ b/dist/ionicons/iosArrowThinUp.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosArrowThinUp = void 0;
+var iosArrowThinUp = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M349.7,189.8c-3.1,3.1-8,3-11.3,0L264,123.4V408c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V123.4l-74.4,66.3\r\n\tc-3.4,2.9-8.1,3.2-11.2,0.1c-3.1-3.1-3.3-8.5-0.1-11.4c0,0,87-79.2,88-80s2.8-2.4,5.7-2.4s4.9,1.6,5.7,2.4s88,80,88,80\r\n\tc1.5,1.5,2.3,3.6,2.3,5.7C352,186.2,351.2,188.2,349.7,189.8z"
+ },
+ "children": []
+ }]
+};
+exports.iosArrowThinUp = iosArrowThinUp;
\ No newline at end of file
diff --git a/dist/ionicons/iosArrowUp.js b/dist/ionicons/iosArrowUp.js
new file mode 100644
index 000000000..e0195db39
--- /dev/null
+++ b/dist/ionicons/iosArrowUp.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosArrowUp = void 0;
+var iosArrowUp = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "396.6,352 416,331.3 256,160 96,331.3 115.3,352 256,201.5 "
+ },
+ "children": []
+ }]
+};
+exports.iosArrowUp = iosArrowUp;
\ No newline at end of file
diff --git a/dist/ionicons/iosAt.js b/dist/ionicons/iosAt.js
new file mode 100644
index 000000000..e711044e2
--- /dev/null
+++ b/dist/ionicons/iosAt.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosAt = void 0;
+var iosAt = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M356,320c-9.7,13.3-29.9,28.5-38.1,33.1s-16.9,8.3-26,10.8c-9,2.5-18.6,3.9-28.4,3.9c-14.9,0-29.4-2.4-43-7.2\r\n\tc-13.3-4.7-25.2-11.8-35.1-21c-9.9-9-20.3-24.2-26.5-38.5c-5.3-12.4-7.6-25.8-7.6-46.5c0-14.7,3.4-30.9,9.2-44.7\r\n\tc5.6-13.2,13.5-24.9,23.3-34.6c9.7-9.6,21.6-17.5,35.3-23.3c12.3-5.1,26.7-7.7,44.4-7.7c13.9,0,27.2,2.2,39.4,6.6\r\n\tc11.9,4.3,22.3,10.4,30.9,18.3c8,7.3,12.9,16.1,18.2,28.1c4.6,10.2,6.3,19.2,6.3,33.3c0,11.5-2,22.4-6,32.4c-4,9.8-7,15.8-13,23.3\r\n\tc-6.3,7.6-9.8,11.8-16.5,15.6c-7.8,4.6-13.7,6.7-18.5,6.7c-3.8,0-5-0.9-5.1-1c-0.6-0.5-1.1-1.2-1.4-2.8c-0.3-2.2,0-5.2,0.9-8.6\r\n\tc1-3.9,2.4-7.7,4.6-12.9L342.3,179h-25.6l-4.5,12c-3.5-4.1-7.7-7.5-12.4-10.2c-11.1-6.4-20.4-9-32.3-9c-13.8,0-26.7,3.6-38.2,10.7\r\n\tc-11.2,6.9-20.8,15.8-28.5,26.5c-7.6,10.5-9.5,16.1-13,26.5l-0.6,1.8c-4.2,12.4-6.3,24.7-6.3,36.4c0,7.9,1.5,15.5,4.3,22.6\r\n\tc2.8,7.2,6.7,13.4,11.6,18.5c4.8,5.2,10.7,9.4,17.7,12.6c6.8,3.1,14.3,4.8,22.4,4.8c8.9,0,17.1-1.5,26.7-4.8\r\n\tc5.3-1.8,9.9-4.5,14.4-8.3c1,1.7,2.2,3.1,3.7,4.5c5.6,5.6,13.1,8.5,22.1,8.5c8.9,0,18.6-3,30.2-9.5c10.3-5.8,16.3-12.5,23.7-21.4\r\n\tc8.4-10,12.5-18.6,17-29.9c5.1-12.5,7.6-26.2,7.6-40.6c0-18.1-2.4-30.4-8.7-44c-6.6-14.4-13.3-25.9-24.3-35.6\r\n\tc-10.9-9.7-23.9-17.2-38.7-22.4c-14.6-5.1-30.3-7.7-46.7-7.7c-20,0-37.2,3-52.2,9.1c-16.3,6.6-30.8,15.9-43.1,27.6\r\n\tc-12.3,11.8-22.1,26-29.1,42c-7.3,16.5-11.4,36.5-11.4,55.1c0,25,3.1,42.4,10.4,58.4c8.1,17.5,21.2,35.5,33.4,45.9\r\n\tc12.7,11.1,27.3,19.2,43.4,24.3c15.9,5.1,32.3,7.7,48.6,7.7c11.2,0,22.7-1.6,34.1-4.6c11.6-3.2,22.4-7.6,32.1-13.1\r\n\tc9.9-5.5,19.5-12.4,28.2-20.6c8.8-8.2,19.4-20.9,22.9-27.1c1.2-2.3,2.2-4.2,2.8-5.6H356z M271.9,290.6c-4.4,5.5-7.2,8.9-10.6,11.2\r\n\tc-3.8,2.6-6.8,4.2-10.7,5.2h-0.1c-3.9,1-8.1,1.5-12.4,1.5c-5,0-9.4-0.9-13.4-2.7c-4.1-1.7-7.5-4.1-10.5-7.3\r\n\tc-2.9-3.1-5.4-6.8-7.1-11.1c-1.7-4.3-2.5-9-2.5-14.1c0-8.7,1.7-18.3,5-28.2c0.4-1.2,0.8-2.4,1.1-3.3c2.6-8.1,4-10.6,8.9-18.6\r\n\tc4.5-7.4,11.5-14.2,21.2-20.7c7.7-5.1,16.2-7.8,25.6-7.8c3.8,0,7.8,0.5,12,1.4c3,0.7,4.6,1.6,7.6,3.3l0.2,0.1\r\n\tc0.4,0.2,0.8,0.4,1.3,0.7l0.3,0.2c3.4,1.9,6.4,4.5,9,7.6c2,2.4,3.7,5.5,5,9.4L282,272.2C279,279.6,275.6,285.8,271.9,290.6z"
+ },
+ "children": []
+ }]
+};
+exports.iosAt = iosAt;
\ No newline at end of file
diff --git a/dist/ionicons/iosAtOutline.js b/dist/ionicons/iosAtOutline.js
new file mode 100644
index 000000000..cc8cacfb7
--- /dev/null
+++ b/dist/ionicons/iosAtOutline.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosAtOutline = void 0;
+var iosAtOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M364.4,320.9c-5.3,7.5-11.6,14.7-18.8,21.4c-7.1,6.6-15.1,12.5-23.7,17.4c-8.6,4.9-17.9,8.8-27.5,11.5s-19.8,4.1-30.3,4.1\r\n\t\tc-15.9,0-31.2-2.6-45.5-7.6c-14.2-5-26.8-12.5-37.5-22.4c-10.7-9.8-21.7-25.9-28.2-41c-5.8-13.4-8.1-27.8-8.1-49.5\r\n\t\tc0-15.6,3.6-33,9.8-47.6c6-14,14.3-26.4,24.9-36.9c10.4-10.3,23-18.6,37.6-24.8c13.1-5.5,28.5-8.2,47.1-8.2c14.9,0,29,2.4,41.9,7\r\n\t\tc12.8,4.6,23.9,11.2,33.1,19.6c8.7,7.9,14,17.4,19.7,30.2c5,11.2,6.8,20.9,6.8,35.9c0,12.4-2.2,24.1-6.5,34.9\r\n\t\tc-4.3,10.6-7.5,17-14,25c-6.6,7.9-10.6,12.7-18.1,17.1c-8.6,5-15.3,7.4-21,7.4c-3.6,0-6.3-0.7-7.8-2c-1.5-1.3-2.4-3-2.7-5.4\r\n\t\tc-0.4-2.8-0.1-6.3,1-10.4c1.1-4.4,2.8-8.6,4.9-13.7L339.4,181h-17.8l-6.2,16.5c-3.8-6.1-9.1-11.5-15.9-15.5\r\n\t\tc-10.5-6.1-19.5-8.8-31.2-8.8c-13.5,0-26,3.5-37.2,10.4c-11,6.8-20.5,15.6-28.2,26.3c-7.5,10.3-9.3,15.7-12.9,26.4l-0.6,1.7\r\n\t\tc-4.2,12.4-6.3,24.6-6.3,36.2c0,7.7,1.4,15,4.1,21.8c2.7,6.8,6.4,12.8,11.1,17.8c4.7,5.1,10.4,9.1,16.9,12.1s13.7,4.5,21.3,4.5\r\n\t\tc8.5,0,16.6-1.4,26.1-4.7c6.3-2.2,11.9-5.8,17.4-11.4c1,3.2,2.7,6,5.3,8.5c5,5,11.7,7.6,19.9,7.6c8.6,0,17.8-3,29-9.3\r\n\t\tc9.9-5.6,15.7-12,23.3-21.1c8.2-9.8,12.3-18,16.9-29.7c5-12.5,7.5-26,7.5-40.3c0-18-2.4-30.2-8.5-43.6c-6.6-14.3-13.2-25.8-24-35.4\r\n\t\tc-10.9-9.6-23.9-17.1-38.5-22.3c-14.5-5.1-30.3-7.7-46.7-7.7c-20.1,0-37.2,3-52.2,9.1c-16.5,6.7-30.9,16-43,27.6\r\n\t\tc-12.2,11.8-22,25.9-29,41.9c-7.3,16.6-11.4,36.7-11.4,55.1c0,25.1,3.1,42.6,10.3,58.4c8,17.3,21,35.4,33.3,46\r\n\t\tc12.6,10.9,27.1,19.1,43.2,24.2c15.9,5.1,32.3,7.7,48.8,7.7c11.4,0,22.8-1.6,34-4.6c11.2-3.1,22-7.4,32.1-13.1\r\n\t\tc10.1-5.6,19.5-12.5,28.2-20.6c8.6-8.1,18.6-20.8,22-26.9c1.3-2.4,2.2-4.3,2.9-5.8h-18.5L364.4,320.9z M275.8,294.4\r\n\t\tc-4.4,5.6-7.7,9.5-11.8,12.2c-4.4,3-7.9,4.9-12.4,5.9c-4.6,1.2-9.3,1.7-13.7,1.7c-5.6,0-10.8-1-15.4-3c-4.7-2-8.7-4.8-12.1-8.4\r\n\t\tc-3.4-3.6-6.1-7.9-8.1-12.7c-1.9-4.8-2.9-10.2-2.9-16c0-9.5,1.8-19.7,5.3-30.3c0.4-1.2,0.8-2.4,1.1-3.4c2.8-8.6,4.3-11.5,9.5-20\r\n\t\tc5.7-9.4,14.1-16.6,23-22.5c8.6-5.8,18.2-8.7,28.5-8.7c4.2,0,8.6,0.5,13.2,1.5c3.6,0.8,5.6,1.9,9,3.9c0.6,0.3,1.1,0.6,1.7,1\r\n\t\tc3.9,2.2,7.4,5.1,10.4,8.7c2.7,3.2,4.8,7.4,6.3,12.3l-20.6,57.8C283.6,282.5,279.9,289.2,275.8,294.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M364.4,320.9c-5.3,7.5-11.6,14.7-18.8,21.4c-7.1,6.6-15.1,12.5-23.7,17.4c-8.6,4.9-17.9,8.8-27.5,11.5s-19.8,4.1-30.3,4.1\r\n\t\tc-15.9,0-31.2-2.6-45.5-7.6c-14.2-5-26.8-12.5-37.5-22.4c-10.7-9.8-21.7-25.9-28.2-41c-5.8-13.4-8.1-27.8-8.1-49.5\r\n\t\tc0-15.6,3.6-33,9.8-47.6c6-14,14.3-26.4,24.9-36.9c10.4-10.3,23-18.6,37.6-24.8c13.1-5.5,28.5-8.2,47.1-8.2c14.9,0,29,2.4,41.9,7\r\n\t\tc12.8,4.6,23.9,11.2,33.1,19.6c8.7,7.9,14,17.4,19.7,30.2c5,11.2,6.8,20.9,6.8,35.9c0,12.4-2.2,24.1-6.5,34.9\r\n\t\tc-4.3,10.6-7.5,17-14,25c-6.6,7.9-10.6,12.7-18.1,17.1c-8.6,5-15.3,7.4-21,7.4c-3.6,0-6.3-0.7-7.8-2c-1.5-1.3-2.4-3-2.7-5.4\r\n\t\tc-0.4-2.8-0.1-6.3,1-10.4c1.1-4.4,2.8-8.6,4.9-13.7L339.4,181h-17.8l-6.2,16.5c-3.8-6.1-9.1-11.5-15.9-15.5\r\n\t\tc-10.5-6.1-19.5-8.8-31.2-8.8c-13.5,0-26,3.5-37.2,10.4c-11,6.8-20.5,15.6-28.2,26.3c-7.5,10.3-9.3,15.7-12.9,26.4l-0.6,1.7\r\n\t\tc-4.2,12.4-6.3,24.6-6.3,36.2c0,7.7,1.4,15,4.1,21.8c2.7,6.8,6.4,12.8,11.1,17.8c4.7,5.1,10.4,9.1,16.9,12.1s13.7,4.5,21.3,4.5\r\n\t\tc8.5,0,16.6-1.4,26.1-4.7c6.3-2.2,11.9-5.8,17.4-11.4c1,3.2,2.7,6,5.3,8.5c5,5,11.7,7.6,19.9,7.6c8.6,0,17.8-3,29-9.3\r\n\t\tc9.9-5.6,15.7-12,23.3-21.1c8.2-9.8,12.3-18,16.9-29.7c5-12.5,7.5-26,7.5-40.3c0-18-2.4-30.2-8.5-43.6c-6.6-14.3-13.2-25.8-24-35.4\r\n\t\tc-10.9-9.6-23.9-17.1-38.5-22.3c-14.5-5.1-30.3-7.7-46.7-7.7c-20.1,0-37.2,3-52.2,9.1c-16.5,6.7-30.9,16-43,27.6\r\n\t\tc-12.2,11.8-22,25.9-29,41.9c-7.3,16.6-11.4,36.7-11.4,55.1c0,25.1,3.1,42.6,10.3,58.4c8,17.3,21,35.4,33.3,46\r\n\t\tc12.6,10.9,27.1,19.1,43.2,24.2c15.9,5.1,32.3,7.7,48.8,7.7c11.4,0,22.8-1.6,34-4.6c11.2-3.1,22-7.4,32.1-13.1\r\n\t\tc10.1-5.6,19.5-12.5,28.2-20.6c8.6-8.1,18.6-20.8,22-26.9c1.3-2.4,2.2-4.3,2.9-5.8h-18.5L364.4,320.9z M275.8,294.4\r\n\t\tc-4.4,5.6-7.7,9.5-11.8,12.2c-4.4,3-7.9,4.9-12.4,5.9c-4.6,1.2-9.3,1.7-13.7,1.7c-5.6,0-10.8-1-15.4-3c-4.7-2-8.7-4.8-12.1-8.4\r\n\t\tc-3.4-3.6-6.1-7.9-8.1-12.7c-1.9-4.8-2.9-10.2-2.9-16c0-9.5,1.8-19.7,5.3-30.3c0.4-1.2,0.8-2.4,1.1-3.4c2.8-8.6,4.3-11.5,9.5-20\r\n\t\tc5.7-9.4,14.1-16.6,23-22.5c8.6-5.8,18.2-8.7,28.5-8.7c4.2,0,8.6,0.5,13.2,1.5c3.6,0.8,5.6,1.9,9,3.9c0.6,0.3,1.1,0.6,1.7,1\r\n\t\tc3.9,2.2,7.4,5.1,10.4,8.7c2.7,3.2,4.8,7.4,6.3,12.3l-20.6,57.8C283.6,282.5,279.9,289.2,275.8,294.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosAtOutline = iosAtOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBarcode.js b/dist/ionicons/iosBarcode.js
new file mode 100644
index 000000000..9999091dc
--- /dev/null
+++ b/dist/ionicons/iosBarcode.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBarcode = void 0;
+var iosBarcode = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,128v256h416V128H48z M128,320h-16V192h16V320z M192,352h-16V160h16V352z M263,336h-16V176h16V336z M336,352h-16V160h16\r\n\t\tV352z M400,320h-16V192h16V320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,128v256h416V128H48z M128,320h-16V192h16V320z M192,352h-16V160h16V352z M263,336h-16V176h16V336z M336,352h-16V160h16\r\n\t\tV352z M400,320h-16V192h16V320z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBarcode = iosBarcode;
\ No newline at end of file
diff --git a/dist/ionicons/iosBarcodeOutline.js b/dist/ionicons/iosBarcodeOutline.js
new file mode 100644
index 000000000..2b34a05b9
--- /dev/null
+++ b/dist/ionicons/iosBarcodeOutline.js
@@ -0,0 +1,129 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBarcodeOutline = void 0;
+var iosBarcodeOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "48,384 128,384 128,368 64,368 64,144 128,144 128,128 48,128 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "48,384 128,384 128,368 64,368 64,144 128,144 128,128 48,128 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "384,128 384,144 448,144 448,368 384,368 384,384 464,384 464,128 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "384,128 384,144 448,144 448,368 384,368 384,384 464,384 464,128 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "112",
+ "y": "192",
+ "width": "16",
+ "height": "128"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "112",
+ "y": "192",
+ "width": "16",
+ "height": "128"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "384",
+ "y": "192",
+ "width": "16",
+ "height": "128"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "384",
+ "y": "192",
+ "width": "16",
+ "height": "128"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "320",
+ "y": "160",
+ "width": "16",
+ "height": "192"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "320",
+ "y": "160",
+ "width": "16",
+ "height": "192"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "176",
+ "y": "160",
+ "width": "16",
+ "height": "192"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "176",
+ "y": "160",
+ "width": "16",
+ "height": "192"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "247",
+ "y": "176",
+ "width": "16",
+ "height": "160"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "247",
+ "y": "176",
+ "width": "16",
+ "height": "160"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBarcodeOutline = iosBarcodeOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBaseball.js b/dist/ionicons/iosBaseball.js
new file mode 100644
index 000000000..5e05e02a8
--- /dev/null
+++ b/dist/ionicons/iosBaseball.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBaseball = void 0;
+var iosBaseball = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c-8.044,0-15.975,0.473-23.782,1.361l0,0l0,0C128.555,61.166,48,149.18,48,256c0,114.863,93.137,208,208,208\r\n\tc106.827,0,194.833-80.553,206.638-184.218l0,0l0,0C463.527,271.977,464,264.045,464,256C464,141.137,370.87,48,256,48z\r\n\t M259.939,446.614c-0.539-8.693-1.605-17.305-3.209-25.804l-21.511,6.896l-4.885-15.234l22.812-7.314\r\n\tc-2.183-8.056-4.856-15.994-8.02-23.794c-1.943-4.794-4.061-9.497-6.341-14.105l-19.464,13.186l-8.972-13.247l20.744-14.054\r\n\tc-7.416-12.429-16.149-24.057-26.119-34.803l-16.852,16.853l-11.313-11.313l16.852-16.852c-10.442-9.689-21.721-18.202-33.757-25.48\r\n\tl-14.216,20.988l-13.247-8.973l13.403-19.788c-4.96-2.491-10.027-4.799-15.206-6.9c-7.455-3.021-15.038-5.59-22.725-7.717\r\n\tl-7.5,23.392l-15.236-4.885l7.115-22.192c-8.856-1.723-17.835-2.853-26.904-3.412c0.109-5.373,0.438-10.695,0.984-15.953\r\n\tc10.339,0.647,20.639,1.998,30.827,4.068l7.518-23.454l15.237,4.886l-7.159,22.328c14.433,4.027,28.542,9.521,42.09,16.494\r\n\tl13.449-19.854l13.248,8.973l-12.7,18.748c12.712,7.754,24.815,16.892,36.1,27.411l17.082-17.082l11.314,11.314l-17.083,17.082\r\n\tc10.809,11.595,20.156,24.055,28.044,37.151l18.999-12.869l8.973,13.248l-20.183,13.67c6.878,13.546,12.289,27.642,16.232,42.058\r\n\tl22.919-7.349l4.885,15.236l-24.122,7.734c1.947,9.828,3.231,19.761,3.854,29.727C270.637,446.177,265.314,446.504,259.939,446.614z\r\n\t M410.961,275.293l-8.529,26.604l-15.236-4.885l8.174-25.493c-14.124-3.964-27.94-9.329-41.218-16.116l-15.335,22.641l-13.248-8.973\r\n\tl14.564-21.499c-12.912-7.826-25.199-17.077-36.644-27.746l-19.205,19.204l-11.312-11.314l19.202-19.203\r\n\tc-10.381-11.135-19.427-23.062-27.114-35.59l-21.248,14.393l-8.974-13.248l22.335-15.127c-6.881-13.278-12.339-27.099-16.384-41.241\r\n\tl-24.918,7.99l-4.885-15.237l25.951-8.321c-2.447-11.663-3.943-23.482-4.522-35.337c5.189-0.644,10.446-1.068,15.754-1.284\r\n\tc0.507,10.743,1.859,21.334,3.972,31.807l19.744-6.359l4.907,15.212l-20.789,6.658c2.051,7.218,4.491,14.338,7.333,21.348\r\n\tc2.176,5.363,4.578,10.603,7.174,15.731l17.315-11.729l8.973,13.246l-18.477,12.516c7.209,11.846,15.619,22.957,25.174,33.254\r\n\tl14.729-14.731l11.314,11.313l-14.732,14.731c10.602,9.836,22.062,18.463,34.302,25.813l12.352-18.235l13.248,8.973l-11.512,16.994\r\n\tc4.777,2.383,9.656,4.589,14.635,6.608c7.354,2.982,14.837,5.521,22.421,7.631l6.484-20.22l15.233,4.885l-6.104,19.043\r\n\tc10.116,1.984,20.286,3.311,30.626,3.824c-0.215,5.312-0.643,10.572-1.285,15.768C433.72,279.028,422.269,277.607,410.961,275.293z"
+ },
+ "children": []
+ }]
+};
+exports.iosBaseball = iosBaseball;
\ No newline at end of file
diff --git a/dist/ionicons/iosBaseballOutline.js b/dist/ionicons/iosBaseballOutline.js
new file mode 100644
index 000000000..a0bad75c3
--- /dev/null
+++ b/dist/ionicons/iosBaseballOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBaseballOutline = void 0;
+var iosBaseballOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M462.686,279.369c0.132-1.182,0.257-2.365,0.369-3.554c0.004-0.038,0.007-0.078,0.011-0.117\r\n\tC463.675,269.213,464,262.645,464,256c0-114.863-93.13-208-208-208c-7.951,0-15.792,0.462-23.512,1.331\r\n\tc-0.089,0.01-0.18,0.018-0.27,0.028c0,0.001,0,0.002,0,0.003C135.207,60.409,58.442,138.199,48.989,235.687\r\n\tc-0.001,0-0.003,0-0.004,0c-0.072,0.748-0.131,1.497-0.195,2.246c-0.136,1.576-0.253,3.157-0.353,4.743\r\n\tc-0.026,0.418-0.056,0.835-0.08,1.254c-0.064,1.121-0.116,2.245-0.163,3.371c-0.011,0.281-0.021,0.562-0.032,0.843\r\n\tC48.065,250.751,48,253.368,48,256c0,114.863,93.137,208,208,208c2.627,0,5.239-0.065,7.843-0.162\r\n\tc0.293-0.011,0.586-0.021,0.878-0.033c1.11-0.046,2.219-0.098,3.324-0.16c0.454-0.025,0.906-0.058,1.359-0.086\r\n\tc1.604-0.103,3.201-0.222,4.795-0.36c0.704-0.061,1.41-0.115,2.113-0.184c0-0.001,0-0.003,0-0.004\r\n\tc97.494-9.452,175.279-86.216,186.326-183.229c0.001,0,0.002,0,0.004,0C462.658,279.645,462.67,279.507,462.686,279.369z\r\n\t M446.665,256c0,2.568-0.066,5.122-0.167,7.666c-10.334-0.468-20.552-1.69-30.614-3.664l6.11-19.056l-15.232-4.884l-6.488,20.235\r\n\tc-7.591-2.112-15.08-4.651-22.442-7.638c-4.976-2.018-9.851-4.223-14.625-6.604l11.518-17.003l-13.247-8.974l-12.359,18.246\r\n\tc-12.241-7.35-23.703-15.977-34.305-25.812l14.73-14.73l-11.313-11.313l-14.73,14.73c-9.555-10.297-17.964-21.408-25.175-33.254\r\n\tl18.487-12.522l-8.972-13.246l-17.324,11.735c-2.597-5.131-4.998-10.375-7.174-15.74c-2.843-7.009-5.276-14.134-7.327-21.352\r\n\tl20.812-6.673l-4.885-15.234l-19.711,6.32c-2.104-10.423-3.41-21.014-3.896-31.729c2.544-0.101,5.097-0.167,7.665-0.167\r\n\tC361.132,65.335,446.665,150.869,446.665,256z M65.337,256c0-1.317,0.023-2.629,0.05-3.939c9.064,0.559,18.039,1.687,26.891,3.409\r\n\tl-7.115,22.191l15.235,4.885l7.5-23.391c7.692,2.128,15.28,4.696,22.738,7.721c5.175,2.099,10.239,4.404,15.197,6.896l-13.405,19.79\r\n\tl13.246,8.973l14.219-20.992c12.038,7.279,23.32,15.793,33.765,25.483l-16.853,16.853l11.313,11.314l16.854-16.854\r\n\tc9.968,10.744,18.7,22.369,26.114,34.796l-20.753,14.058l8.972,13.246l19.473-13.19c2.283,4.611,4.4,9.317,6.347,14.116\r\n\tc3.161,7.795,5.834,15.729,8.016,23.778l-22.832,7.32l4.884,15.233l21.531-6.903c1.608,8.506,2.679,17.122,3.215,25.822\r\n\tc-1.311,0.026-2.622,0.05-3.939,0.05C150.87,446.664,65.336,361.13,65.337,256z M275.893,445.629\r\n\tc-0.621-9.974-1.911-19.911-3.859-29.746l24.1-7.727l-4.884-15.232l-22.896,7.341c-3.946-14.415-9.356-28.51-16.234-42.054\r\n\tl20.172-13.664l-8.973-13.246l-18.988,12.862c-7.888-13.094-17.233-25.552-28.04-37.145l17.081-17.081l-11.313-11.313\r\n\tl-17.082,17.081c-11.288-10.521-23.393-19.66-36.108-27.414l12.696-18.743l-13.246-8.972l-13.446,19.85\r\n\tc-13.548-6.974-27.659-12.467-42.094-16.494l7.158-22.325l-15.235-4.885l-7.52,23.452c-10.181-2.068-20.477-3.424-30.81-4.067\r\n\tc9.168-88.037,78.492-158.454,166.023-169.311c0.574,11.858,2.095,23.676,4.543,35.339l-25.935,8.316l4.885,15.234l24.903-7.985\r\n\tc4.045,14.144,9.504,27.967,16.386,41.246l-22.322,15.121l8.973,13.246l21.236-14.385c7.688,12.528,16.735,24.455,27.116,35.59\r\n\tl-19.204,19.204l11.313,11.314l19.204-19.205c11.447,10.669,23.735,19.921,36.647,27.745l-14.555,21.486l13.248,8.974l15.328-22.628\r\n\tc13.28,6.789,27.1,12.155,41.229,16.118l-8.168,25.477l15.232,4.884l8.525-26.59c11.301,2.312,22.744,3.754,34.224,4.31\r\n\tC434.347,367.137,363.93,436.46,275.893,445.629z"
+ },
+ "children": []
+ }]
+};
+exports.iosBaseballOutline = iosBaseballOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBasketball.js b/dist/ionicons/iosBasketball.js
new file mode 100644
index 000000000..82556ec59
--- /dev/null
+++ b/dist/ionicons/iosBasketball.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBasketball = void 0;
+var iosBasketball = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.137,48,48,141.136,48,256s93.137,208,208,208c114.871,0,208-93.138,208-208S370.871,48,256,48z\r\n\t M380.797,400.032c-4.158,3.608-8.48,7.029-12.942,10.272c-21.704-50.015-50.938-95.795-87.168-136.465\r\n\tc-15.118,15.728-31.203,30.518-48.156,44.28c27.659,35.364,44.916,79.254,47.189,127.069c-5.252,0.655-10.571,1.086-15.944,1.303\r\n\tc-1.103-24.727-6.5-48.721-16.114-71.45c-7.158-16.922-16.431-32.665-27.68-47.037c-31.104,23.733-64.923,44.093-100.91,60.526\r\n\tc-3.883-4.011-7.592-8.191-11.115-12.529c36.28-16.134,70.291-36.271,101.705-60.186c-2.139-2.34-4.33-4.641-6.584-6.895\r\n\tc-19.107-19.107-41.354-34.107-66.12-44.583c-22.015-9.312-46.212-14.964-71.45-16.108c0.217-5.379,0.648-10.703,1.303-15.959\r\n\tc61.62,2.929,116.713,30.753,155.45,73.638c13.802-11.208,27.075-23.167,39.778-35.87c2.638-2.638,5.238-5.303,7.812-7.988\r\n\tc-3.223-3.4-6.489-6.767-9.812-10.09c-45.887-45.886-99.137-82.145-158.332-107.832c3.243-4.461,6.665-8.782,10.272-12.939\r\n\tc63.951,28.387,121.212,69.101,168.767,119.132c10.711-11.889,20.824-24.216,30.319-36.965\r\n\tc-40.347-37.271-66.956-89.188-71.388-147.312c5.273-0.449,10.604-0.692,15.99-0.702c1.738,22.238,6.974,43.838,15.671,64.401\r\n\tc10.476,24.767,25.476,47.013,44.583,66.12c1.5,1.5,3.025,2.965,4.562,4.413c20.226-29.031,37.379-60.104,51.287-92.987\r\n\tc0.285-0.674,0.555-1.353,0.835-2.028c4.419,3.426,8.681,7.042,12.779,10.835c-14.383,33.502-32.132,65.215-52.822,94.716\r\n\tc15.026,12.13,31.591,22.068,49.479,29.635c20.631,8.727,42.305,13.978,64.62,15.698c-0.004,5.387-0.243,10.717-0.688,15.991\r\n\tc-46.278-3.479-88.631-21.018-122.801-48.359c-9.922,13.275-20.455,26.067-31.556,38.336\r\n\tC328.091,302.883,358.307,349.36,380.797,400.032z"
+ },
+ "children": []
+ }]
+};
+exports.iosBasketball = iosBasketball;
\ No newline at end of file
diff --git a/dist/ionicons/iosBasketballOutline.js b/dist/ionicons/iosBasketballOutline.js
new file mode 100644
index 000000000..05875aa8a
--- /dev/null
+++ b/dist/ionicons/iosBasketballOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBasketballOutline = void 0;
+var iosBasketballOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.137,48,48,141.136,48,256s93.137,208,208,208c114.871,0,208-93.138,208-208S370.871,48,256,48z M446.664,256\r\n\tc0,0.048-0.002,0.097-0.002,0.145c-22.315-1.721-43.989-6.972-64.62-15.699c-17.888-7.566-34.453-17.505-49.479-29.634\r\n\tc20.69-29.501,38.442-61.212,52.824-94.715C423.045,150.95,446.664,200.766,446.664,256z M372.606,105.261\r\n\tc-0.28,0.676-0.55,1.354-0.835,2.028c-13.908,32.883-31.062,63.956-51.286,92.987c-1.538-1.449-3.063-2.914-4.563-4.413\r\n\tc-19.107-19.107-34.107-41.354-44.583-66.12c-8.697-20.563-13.933-42.163-15.671-64.401c0.111,0,0.221-0.004,0.332-0.004\r\n\tC299.884,65.337,340.347,80.249,372.606,105.261z M239.675,66.044c4.431,58.126,31.044,110.041,71.391,147.312\r\n\tc-9.495,12.749-19.609,25.076-30.319,36.965c-47.554-50.032-104.815-90.746-168.767-119.132\r\n\tC143.616,94.733,188.833,70.375,239.675,66.044z M280.687,273.84c36.229,40.67,65.48,86.438,87.185,136.453\r\n\tc-25.4,18.467-55.51,30.829-88.162,34.898c-2.272-47.816-19.521-91.707-47.179-127.071\r\n\tC249.483,304.357,265.568,289.567,280.687,273.84z M262.039,270.039c-12.704,12.703-25.977,24.662-39.778,35.87\r\n\tc-38.737-42.885-93.831-70.706-155.45-73.635c4.07-32.646,16.432-62.75,34.896-88.146c59.195,25.688,112.445,61.947,158.332,107.833\r\n\tc3.323,3.323,6.59,6.689,9.812,10.089C267.277,264.736,264.677,267.401,262.039,270.039z M65.508,248.23\r\n\tc25.238,1.145,49.436,6.797,71.45,16.109c24.767,10.476,47.013,25.476,66.12,44.583c2.254,2.254,4.445,4.555,6.584,6.895\r\n\tc-31.414,23.915-65.427,44.049-101.708,60.182C81.322,343.205,65.336,301.437,65.336,256\r\n\tC65.336,253.396,65.404,250.809,65.508,248.23z M119.067,388.526c35.988-16.434,69.81-36.787,100.914-60.521\r\n\tc11.249,14.372,20.522,30.115,27.68,47.037c9.614,22.729,15.013,46.724,16.114,71.45c-2.58,0.104-5.17,0.172-7.775,0.172\r\n\tC202.317,446.664,153.751,424.353,119.067,388.526z M380.81,400.021c-22.489-50.671-52.72-97.14-89.191-137.909\r\n\tc11.101-12.269,21.634-25.061,31.556-38.336c34.171,27.342,76.521,44.885,122.801,48.363\r\n\tC441.686,323.058,417.311,368.347,380.81,400.021z"
+ },
+ "children": []
+ }]
+};
+exports.iosBasketballOutline = iosBasketballOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBell.js b/dist/ionicons/iosBell.js
new file mode 100644
index 000000000..10e78eb2c
--- /dev/null
+++ b/dist/ionicons/iosBell.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBell = void 0;
+var iosBell = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBell = iosBell;
\ No newline at end of file
diff --git a/dist/ionicons/iosBellOutline.js b/dist/ionicons/iosBellOutline.js
new file mode 100644
index 000000000..591a98f44
--- /dev/null
+++ b/dist/ionicons/iosBellOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBellOutline = void 0;
+var iosBellOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z M107.2,368\r\n\t\tc8.6-9,16.4-18.4,22.7-31.8c12-25.3,17.4-59.2,17.4-110.2c0-46.4,12.5-80.4,37.1-101.2c22.9-19.3,51.7-23.3,71.8-23.3\r\n\t\tc20.1,0,48.9,4,71.6,23.3c24.5,20.7,37,54.5,37,100.9c0,83.8,14.9,117.3,40.3,142.3H107.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M381.7,225.9c0-97.6-52.5-130.8-101.6-138.2c0-0.5,0.1-1,0.1-1.6c0-12.3-10.9-22.1-24.2-22.1c-13.3,0-23.8,9.8-23.8,22.1\r\n\t\tc0,0.6,0,1.1,0.1,1.6c-49.2,7.5-102,40.8-102,138.4c0,113.8-28.3,126-66.3,158h384C410.2,352,381.7,339.7,381.7,225.9z M107.2,368\r\n\t\tc8.6-9,16.4-18.4,22.7-31.8c12-25.3,17.4-59.2,17.4-110.2c0-46.4,12.5-80.4,37.1-101.2c22.9-19.3,51.7-23.3,71.8-23.3\r\n\t\tc20.1,0,48.9,4,71.6,23.3c24.5,20.7,37,54.5,37,100.9c0,83.8,14.9,117.3,40.3,142.3H107.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.2,448c26.8,0,48.8-19.9,51.7-43H204.5C207.3,428.1,229.4,448,256.2,448z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBellOutline = iosBellOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBody.js b/dist/ionicons/iosBody.js
new file mode 100644
index 000000000..8f1a6034f
--- /dev/null
+++ b/dist/ionicons/iosBody.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBody = void 0;
+var iosBody = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "79.838",
+ "r": "48"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "79.838",
+ "r": "48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M424,144H88c-13.255,0-24,10.745-24,24s10.745,24,24,24h98.451c5.579,1,13.197,3.837,17.216,14.252\r\n\t\tc4.651,12.056,2.37,33.606-0.539,51.727l-3.775,21.395c-0.019,0.104-0.039,0.207-0.058,0.311c-0.002,0.008-0.002,0.012-0.004,0.02\r\n\t\tl-30.375,172.268c-2.303,13.053,6.414,25.5,19.467,27.803c13.055,2.301,25.333-6.416,27.634-19.471L237,340.348v0.167\r\n\t\tc0,0,6.25-32.515,18.452-32.515h1.096C269,308,275,340.515,275,340.515v-0.083l20.983,119.913\r\n\t\tc2.301,13.055,14.663,21.749,27.718,19.448c13.053-2.303,21.728-14.762,19.425-27.814L312.73,279.703\r\n\t\tc-0.002-0.008-0.013-0.02-0.015-0.027c-0.019-0.104-0.044-0.217-0.063-0.322l-3.777-21.414\r\n\t\tc-2.909-18.121-5.191-39.631-0.541-51.688C312.354,195.838,319.97,193,325.549,192H424c13.255,0,24-10.745,24-24\r\n\t\tS437.255,144,424,144z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M424,144H88c-13.255,0-24,10.745-24,24s10.745,24,24,24h98.451c5.579,1,13.197,3.837,17.216,14.252\r\n\t\tc4.651,12.056,2.37,33.606-0.539,51.727l-3.775,21.395c-0.019,0.104-0.039,0.207-0.058,0.311c-0.002,0.008-0.002,0.012-0.004,0.02\r\n\t\tl-30.375,172.268c-2.303,13.053,6.414,25.5,19.467,27.803c13.055,2.301,25.333-6.416,27.634-19.471L237,340.348v0.167\r\n\t\tc0,0,6.25-32.515,18.452-32.515h1.096C269,308,275,340.515,275,340.515v-0.083l20.983,119.913\r\n\t\tc2.301,13.055,14.663,21.749,27.718,19.448c13.053-2.303,21.728-14.762,19.425-27.814L312.73,279.703\r\n\t\tc-0.002-0.008-0.013-0.02-0.015-0.027c-0.019-0.104-0.044-0.217-0.063-0.322l-3.777-21.414\r\n\t\tc-2.909-18.121-5.191-39.631-0.541-51.688C312.354,195.838,319.97,193,325.549,192H424c13.255,0,24-10.745,24-24\r\n\t\tS437.255,144,424,144z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBody = iosBody;
\ No newline at end of file
diff --git a/dist/ionicons/iosBodyOutline.js b/dist/ionicons/iosBodyOutline.js
new file mode 100644
index 000000000..585d99d22
--- /dev/null
+++ b/dist/ionicons/iosBodyOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBodyOutline = void 0;
+var iosBodyOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,47.959c17.645,0,32,14.351,32,31.991c0,17.64-14.355,31.99-32,31.99s-32-14.351-32-31.99\r\n\t\tC224,62.31,238.355,47.959,256,47.959 M256,31.964c-26.51,0-48,21.483-48,47.986c0,26.502,21.49,47.985,48,47.985\r\n\t\ts48-21.483,48-47.985C304,53.447,282.51,31.964,256,31.964L256,31.964z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,47.959c17.645,0,32,14.351,32,31.991c0,17.64-14.355,31.99-32,31.99s-32-14.351-32-31.99\r\n\t\tC224,62.31,238.355,47.959,256,47.959 M256,31.964c-26.51,0-48,21.483-48,47.986c0,26.502,21.49,47.985,48,47.985\r\n\t\ts48-21.483,48-47.985C304,53.447,282.51,31.964,256,31.964L256,31.964z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M424,144H88c-13.255,0-24,10.747-24,24s10.745,24,24,24h100.451c5.549,0,13.197,4.295,17.216,14.708\r\n\t\tc4.651,12.055,2.37,33.33-0.539,51.444l-3.923,21.26c-0.019,0.104-0.205,0.1-0.205,0.203l-32.229,172.238\r\n\t\tc-2.303,13.051,6.487,25.494,19.54,27.797c1.408,0.248,2.844,0.367,4.218,0.367c11.357,0,20.917-8.19,22.97-19.836L236,340.242\r\n\t\tv0.166c0,0,7.25-31.408,19.452-31.408h1.096C269,309,274,340.408,274,340.408v-0.082l21.483,119.895\r\n\t\tc2.052,11.642,12.331,19.815,23.763,19.815c1.387,0,2.855-0.121,4.268-0.368c13.053-2.303,21.821-14.76,19.519-27.811\r\n\t\tl-32.349-172.251c-0.002-0.008,0.011-0.02,0.009-0.027c-0.019-0.104-0.032-0.217-0.052-0.322l-3.771-21.411\r\n\t\tc-2.909-18.119-5.188-39.083-0.538-51.137C310.351,196.295,318.5,192,323.549,192H424c13.255,0,24-10.747,24-24\r\n\t\tS437.255,144,424,144z M88,176.113c-4.411,0-8-3.646-8-8.057c0-4.411,3.589-8.057,8-8.057h336c4.411,0,8,3.59,8,8s-3.589,8-8,8\r\n\t\tH322.5c-15.538,0-27.438,14.738-30.982,23.922c-4.846,12.557-5.004,31.942-0.388,60.688l-0.009,0.104l0.006,0.11l3.367,19.138\r\n\t\tl0.562,3.241l32.252,171.628c0.5,2.834-0.62,4.961-1.332,5.977c-0.713,1.017-2.335,2.799-5.179,3.301\r\n\t\tc-0.476,0.083-0.955,0.126-1.427,0.126c-3.893,0-7.207-2.639-7.883-6.472L290.255,338h-0.015c-0.271-2-1.828-10.05-5.022-18.771\r\n\t\tc-2.278-6.217-4.844-11.034-7.844-15.005C270.283,294.836,262.135,293,256.548,293h-1.096c-5.47,0-13.503,1.731-20.71,10.938\r\n\t\tc-3.05,3.896-5.729,8.671-8.19,14.802c-3.628,9.037-5.505,17.654-5.708,18.613l-0.11,0.369l-20.728,119.9\r\n\t\tc-0.693,3.886-3.75,6.596-7.441,6.596c-0.459,0-0.932-0.043-1.403-0.127c-2.84-0.5-4.455-2.275-5.165-3.288\r\n\t\tc-0.709-1.013-1.824-3.136-1.323-5.975l32.257-171.562l0.004-0.019l0.174-0.927l3.775-21.33l0.022-0.125l0.021-0.126\r\n\t\tc4.629-28.829,4.527-48.3-0.332-60.891c-3.543-9.181-13.576-23.737-31.76-23.737"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M424,144H88c-13.255,0-24,10.747-24,24s10.745,24,24,24h100.451c5.549,0,13.197,4.295,17.216,14.708\r\n\t\tc4.651,12.055,2.37,33.33-0.539,51.444l-3.923,21.26c-0.019,0.104-0.205,0.1-0.205,0.203l-32.229,172.238\r\n\t\tc-2.303,13.051,6.487,25.494,19.54,27.797c1.408,0.248,2.844,0.367,4.218,0.367c11.357,0,20.917-8.19,22.97-19.836L236,340.242\r\n\t\tv0.166c0,0,7.25-31.408,19.452-31.408h1.096C269,309,274,340.408,274,340.408v-0.082l21.483,119.895\r\n\t\tc2.052,11.642,12.331,19.815,23.763,19.815c1.387,0,2.855-0.121,4.268-0.368c13.053-2.303,21.821-14.76,19.519-27.811\r\n\t\tl-32.349-172.251c-0.002-0.008,0.011-0.02,0.009-0.027c-0.019-0.104-0.032-0.217-0.052-0.322l-3.771-21.411\r\n\t\tc-2.909-18.119-5.188-39.083-0.538-51.137C310.351,196.295,318.5,192,323.549,192H424c13.255,0,24-10.747,24-24\r\n\t\tS437.255,144,424,144z M88,176.113c-4.411,0-8-3.646-8-8.057c0-4.411,3.589-8.057,8-8.057h336c4.411,0,8,3.59,8,8s-3.589,8-8,8\r\n\t\tH322.5c-15.538,0-27.438,14.738-30.982,23.922c-4.846,12.557-5.004,31.942-0.388,60.688l-0.009,0.104l0.006,0.11l3.367,19.138\r\n\t\tl0.562,3.241l32.252,171.628c0.5,2.834-0.62,4.961-1.332,5.977c-0.713,1.017-2.335,2.799-5.179,3.301\r\n\t\tc-0.476,0.083-0.955,0.126-1.427,0.126c-3.893,0-7.207-2.639-7.883-6.472L290.255,338h-0.015c-0.271-2-1.828-10.05-5.022-18.771\r\n\t\tc-2.278-6.217-4.844-11.034-7.844-15.005C270.283,294.836,262.135,293,256.548,293h-1.096c-5.47,0-13.503,1.731-20.71,10.938\r\n\t\tc-3.05,3.896-5.729,8.671-8.19,14.802c-3.628,9.037-5.505,17.654-5.708,18.613l-0.11,0.369l-20.728,119.9\r\n\t\tc-0.693,3.886-3.75,6.596-7.441,6.596c-0.459,0-0.932-0.043-1.403-0.127c-2.84-0.5-4.455-2.275-5.165-3.288\r\n\t\tc-0.709-1.013-1.824-3.136-1.323-5.975l32.257-171.562l0.004-0.019l0.174-0.927l3.775-21.33l0.022-0.125l0.021-0.126\r\n\t\tc4.629-28.829,4.527-48.3-0.332-60.891c-3.543-9.181-13.576-23.737-31.76-23.737"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBodyOutline = iosBodyOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBolt.js b/dist/ionicons/iosBolt.js
new file mode 100644
index 000000000..3dfa11531
--- /dev/null
+++ b/dist/ionicons/iosBolt.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBolt = void 0;
+var iosBolt = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M302.7,64L143,288h95.8l-29.5,160L369,224h-95.8L302.7,64L302.7,64z"
+ },
+ "children": []
+ }]
+};
+exports.iosBolt = iosBolt;
\ No newline at end of file
diff --git a/dist/ionicons/iosBoltOutline.js b/dist/ionicons/iosBoltOutline.js
new file mode 100644
index 000000000..cb4fdcc4a
--- /dev/null
+++ b/dist/ionicons/iosBoltOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBoltOutline = void 0;
+var iosBoltOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M273.9,132l-16.5,89.1L254,240h19.2h64.8l-99.8,140l16.5-89.1L258,272h-19.2h-64.7L273.9,132 M302.7,64L143,288h95.8\r\n\tl-29.5,160L369,224h-95.8L302.7,64L302.7,64z"
+ },
+ "children": []
+ }]
+};
+exports.iosBoltOutline = iosBoltOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBook.js b/dist/ionicons/iosBook.js
new file mode 100644
index 000000000..90961b6db
--- /dev/null
+++ b/dist/ionicons/iosBook.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBook = void 0;
+var iosBook = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M164.466,64C109.266,64,64,89.98,64,143v1v8.994V417v9h6.215h10.959h4.967c12.86-26.334,44.238-42,78.325-42\r\n\t\tc40.224,0,73.877,27.528,81.616,64H248V95.346C230.76,73.951,198.981,64,164.466,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M164.466,64C109.266,64,64,89.98,64,143v1v8.994V417v9h6.215h10.959h4.967c12.86-26.334,44.238-42,78.325-42\r\n\t\tc40.224,0,73.877,27.528,81.616,64H248V95.346C230.76,73.951,198.981,64,164.466,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M347.621,64c-34.332,0-66.713,9.851-83.621,31.011V448h1.797c7.739-36.472,41.495-64,81.722-64\r\n\t\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M347.621,64c-34.332,0-66.713,9.851-83.621,31.011V448h1.797c7.739-36.472,41.495-64,81.722-64\r\n\t\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBook = iosBook;
\ No newline at end of file
diff --git a/dist/ionicons/iosBookOutline.js b/dist/ionicons/iosBookOutline.js
new file mode 100644
index 000000000..f17aafc11
--- /dev/null
+++ b/dist/ionicons/iosBookOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBookOutline = void 0;
+var iosBookOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M347.621,64c-40.941,0-79.121,14-91.578,44.495C242.5,78,205.408,64,164.466,64C109.265,64,64,89.98,64,143v1v8.995V417v9\r\n\th6.215h10.958h4.967c12.86-26.334,44.238-42,78.325-42c40.224,0,73.877,27.528,81.617,64h19.714c7.739-36.472,41.495-64,81.722-64\r\n\tc34.085,0,61.149,11.666,78.429,42h4.967h10.959H448v-17V148v-4v-1C448,89.98,402.823,64,347.621,64z M248,410.926\r\n\tC230,385.055,199.27,368,164.5,368c-34.769,0-64.5,10.055-83.5,35.926l-1,0.537V142l0,0v-1c3-41.825,40.089-61,84.293-61\r\n\tc45.162,0,82.145,18.708,83.363,61.808c-0.017,0.729,0.016,1.459,0.016,2.192L248,157.103V410.926z M432,148v255.926\r\n\tC414,378.055,382.269,368,347.5,368c-34.77,0-65.5,17.055-83.5,42.926V145v-1c0-44.112,37.659-64,83.587-64\r\n\tC391.79,80,429,91.175,432,133v1V148z"
+ },
+ "children": []
+ }]
+};
+exports.iosBookOutline = iosBookOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBookmarks.js b/dist/ionicons/iosBookmarks.js
new file mode 100644
index 000000000..73db98c6d
--- /dev/null
+++ b/dist/ionicons/iosBookmarks.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBookmarks = void 0;
+var iosBookmarks = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M342.9,165.4l9.1-6.4l9.1,6.4l22.9,14.5V64c-20.7,0-44.5,0-64,0v115.9L342.9,165.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M342.9,165.4l9.1-6.4l9.1,6.4l22.9,14.5V64c-20.7,0-44.5,0-64,0v115.9L342.9,165.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M432,64c0,0-13.3,0-32,0v146.5l-48-32l-48,32V64c-12.1,0-20.6,0-22.4,0c-8.1,0-17.6,7.2-17.6,15s0,329,0,329l-8,5.5l-8-5.5\r\n\t\tc0,0,0-322,0-329s-9.2-15-17.6-15S80,64,80,64c-18.8,0-33,13.3-33,32v286.1c0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0\r\n\t\tc13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6c0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0\r\n\t\tc18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M432,64c0,0-13.3,0-32,0v146.5l-48-32l-48,32V64c-12.1,0-20.6,0-22.4,0c-8.1,0-17.6,7.2-17.6,15s0,329,0,329l-8,5.5l-8-5.5\r\n\t\tc0,0,0-322,0-329s-9.2-15-17.6-15S80,64,80,64c-18.8,0-33,13.3-33,32v286.1c0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0\r\n\t\tc13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6c0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0\r\n\t\tc18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBookmarks = iosBookmarks;
\ No newline at end of file
diff --git a/dist/ionicons/iosBookmarksOutline.js b/dist/ionicons/iosBookmarksOutline.js
new file mode 100644
index 000000000..dcea3bbf0
--- /dev/null
+++ b/dist/ionicons/iosBookmarksOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBookmarksOutline = void 0;
+var iosBookmarksOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M432,64H281.6c-10.3,0-19.3,4.6-25.6,11.7l0,0l0,0c-6.2-7.2-15.3-11.7-25.6-11.7H80c-18.8,0-33,13.3-33,32v286.1\r\n\tc0,18.8,14.2,33.9,33,33.9c0,0,129.5,0,143.3,0c13.8,0,24.7,4.2,24.7,19.4c0,9.1,0,12.6,0,12.6h8h8c0,0,0-3.4,0-12.6\r\n\tc0-15.3,10.9-19.4,24.7-19.4s143.3,0,143.3,0c18.8,0,33-15.1,33-33.9V96C465,77.3,450.8,64,432,64z M248,411.1\r\n\tc-4.7-7.8-13.5-11.1-23.8-11.1H80c-9.4,0-16-8.5-16-17.9V96c0-9.4,6.6-16,16-16c0,0,130.6,0,143.3,0c12.8,0,24.7,12.8,24.7,22.2\r\n\tV411.1z M320,80c18.8,0,43,0,64,0v100.4l-22.9-14.5l-9.1-6.4l-9.1,6.4L320,180.4V80z M448,382.1c0,9.4-6.6,17.9-16,17.9H287.8\r\n\tc-10.3,0-19.1,2.3-23.8,11.1V102.2c0-9.4,11.9-22.2,24.7-22.2c2.2,0,7.7,0,15.3,0v131l48-32l48,32V80c18.6,0,32,0,32,0\r\n\tc9.4,0,16,6.7,16,16V382.1z"
+ },
+ "children": []
+ }]
+};
+exports.iosBookmarksOutline = iosBookmarksOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBox.js b/dist/ionicons/iosBox.js
new file mode 100644
index 000000000..a0469380e
--- /dev/null
+++ b/dist/ionicons/iosBox.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBox = void 0;
+var iosBox = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112,400h288V208H112V400z M224,240h64c8.8,0,16,7.2,16,16s-7.2,16-16,16h-64c-8.8,0-16-7.2-16-16S215.2,240,224,240z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112,400h288V208H112V400z M224,240h64c8.8,0,16,7.2,16,16s-7.2,16-16,16h-64c-8.8,0-16-7.2-16-16S215.2,240,224,240z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "96,112 96,192 112,192 400,192 416,192 416,112 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "96,112 96,192 112,192 400,192 416,192 416,112 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBox = iosBox;
\ No newline at end of file
diff --git a/dist/ionicons/iosBoxOutline.js b/dist/ionicons/iosBoxOutline.js
new file mode 100644
index 000000000..4c3e363aa
--- /dev/null
+++ b/dist/ionicons/iosBoxOutline.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBoxOutline = void 0;
+var iosBoxOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M287.8,240c8.8,0,16.1,7.2,16.1,16s-7,16-15.9,16h-64c-8.8,0-16-7.2-16-16s7.2-16,16-16h63 M288,224h-64\r\n\t\tc-17.6,0-32,14.4-32,32s14.4,32,32,32h64c17.6,0,32-14.4,32-32S305.6,224,288,224L288,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M287.8,240c8.8,0,16.1,7.2,16.1,16s-7,16-15.9,16h-64c-8.8,0-16-7.2-16-16s7.2-16,16-16h63 M288,224h-64\r\n\t\tc-17.6,0-32,14.4-32,32s14.4,32,32,32h64c17.6,0,32-14.4,32-32S305.6,224,288,224L288,224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,112H96v80h16v208h288V192h16V112z M384,384H128V192h256V384z M400,176H112v-48h288V176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,112H96v80h16v208h288V192h16V112z M384,384H128V192h256V384z M400,176H112v-48h288V176z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosBoxOutline = iosBoxOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBriefcase.js b/dist/ionicons/iosBriefcase.js
new file mode 100644
index 000000000..6f5cc3f29
--- /dev/null
+++ b/dist/ionicons/iosBriefcase.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBriefcase = void 0;
+var iosBriefcase = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "112",
+ "width": "32",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "112",
+ "width": "32",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "48",
+ "y": "208",
+ "width": "416",
+ "height": "240"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "48",
+ "y": "208",
+ "width": "416",
+ "height": "240"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "384",
+ "y": "112",
+ "width": "32",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "384",
+ "y": "112",
+ "width": "32",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M416,128v32h-32v-32h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v32H96v-32H48v64\r\n\t\th416v-64H416z M320,127.5v0.5H192v-0.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V127.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,128v32h-32v-32h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v32H96v-32H48v64\r\n\t\th416v-64H416z M320,127.5v0.5H192v-0.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V127.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBriefcase = iosBriefcase;
\ No newline at end of file
diff --git a/dist/ionicons/iosBriefcaseOutline.js b/dist/ionicons/iosBriefcaseOutline.js
new file mode 100644
index 000000000..add8fbace
--- /dev/null
+++ b/dist/ionicons/iosBriefcaseOutline.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBriefcaseOutline = void 0;
+var iosBriefcaseOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,128v-16h-32v16h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v-16H96v16H48v320\r\n\t\th416V128H416z M192,127.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1v29.4v0.5H192V127.5z M448,432H64V208h384\r\n\t\tV432z M448,192H64v-48h32v16h32v-16h256v16h32v-16h32V192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,128v-16h-32v16h-48V98.1V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v2.1V128h-48v-16H96v16H48v320\r\n\t\th416V128H416z M192,127.5V98.1c0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1v29.4v0.5H192V127.5z M448,432H64V208h384\r\n\t\tV432z M448,192H64v-48h32v16h32v-16h256v16h32v-16h32V192z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBriefcaseOutline = iosBriefcaseOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosBrowsers.js b/dist/ionicons/iosBrowsers.js
new file mode 100644
index 000000000..f7f98b71e
--- /dev/null
+++ b/dist/ionicons/iosBrowsers.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBrowsers = void 0;
+var iosBrowsers = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,144v304h303.9V144H64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,144v304h303.9V144H64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "144,64 144,128 384,128 384,368 448,368 448,64 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "144,64 144,128 384,128 384,368 448,368 448,64 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosBrowsers = iosBrowsers;
\ No newline at end of file
diff --git a/dist/ionicons/iosBrowsersOutline.js b/dist/ionicons/iosBrowsersOutline.js
new file mode 100644
index 000000000..4fe31fa9b
--- /dev/null
+++ b/dist/ionicons/iosBrowsersOutline.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosBrowsersOutline = void 0;
+var iosBrowsersOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,144v304h303.9V144H64z M351.9,432H80V160h271.9V432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,64 144,64 144,128 160,128 160,80 432,80 432,352 384,352 384,368 448,368 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosBrowsersOutline = iosBrowsersOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCalculator.js b/dist/ionicons/iosCalculator.js
new file mode 100644
index 000000000..8836566de
--- /dev/null
+++ b/dist/ionicons/iosCalculator.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCalculator = void 0;
+var iosCalculator = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t M360,280v128h-48V280H360z M360,200v48h-48v-48H360z M280,360v48h-48v-48H280z M280,280v48h-48v-48H280z M280,200v48h-48v-48H280z\r\n\t M200,360v48h-48v-48H200z M200,280v48h-48v-48H200z M200,200v48h-48v-48H200z M152,152v-48h208v48H152z"
+ },
+ "children": []
+ }]
+};
+exports.iosCalculator = iosCalculator;
\ No newline at end of file
diff --git a/dist/ionicons/iosCalculatorOutline.js b/dist/ionicons/iosCalculatorOutline.js
new file mode 100644
index 000000000..068717f12
--- /dev/null
+++ b/dist/ionicons/iosCalculatorOutline.js
@@ -0,0 +1,135 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCalculatorOutline = void 0;
+var iosCalculatorOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,160h224V96H144V160z M160,112h192v32H160V112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,160h224V96H144V160z M160,112h192v32H160V112z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t\t M384,416c0,8.8-7.2,16-16,16H144c-8.8,0-16-7.2-16-16V96c0-8.8,7.2-16,16-16h224c8.8,0,16,7.2,16,16V416z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,64H144c-17.7,0-32,14.3-32,32v320c0,17.7,14.3,32,32,32h224c17.7,0,32-14.3,32-32V96C400,78.3,385.7,64,368,64z\r\n\t\t M384,416c0,8.8-7.2,16-16,16H144c-8.8,0-16-7.2-16-16V96c0-8.8,7.2-16,16-16h224c8.8,0,16,7.2,16,16V416z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "160,240 160,208 160,192 144,192 144,256 208,256 208,240 192,240 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "160,240 160,208 160,192 144,192 144,256 208,256 208,240 192,240 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "160,320 160,288 160,272 144,272 144,336 208,336 208,320 192,320 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "160,320 160,288 160,272 144,272 144,336 208,336 208,320 192,320 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "160,400 160,368 160,352 144,352 144,416 208,416 208,400 192,400 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "160,400 160,368 160,352 144,352 144,416 208,416 208,400 192,400 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "240,240 240,208 240,192 224,192 224,256 288,256 288,240 272,240 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "240,240 240,208 240,192 224,192 224,256 288,256 288,240 272,240 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "320,240 320,208 320,192 304,192 304,256 368,256 368,240 352,240 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "320,240 320,208 320,192 304,192 304,256 368,256 368,240 352,240 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "240,320 240,288 240,272 224,272 224,336 288,336 288,320 272,320 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "240,320 240,288 240,272 224,272 224,336 288,336 288,320 272,320 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "240,400 240,368 240,352 224,352 224,416 288,416 288,400 272,400 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "240,400 240,368 240,352 224,352 224,416 288,416 288,400 272,400 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "320,400 320,368 320,272 304,272 304,416 368,416 368,400 352,400 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "320,400 320,368 320,272 304,272 304,416 368,416 368,400 352,400 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCalculatorOutline = iosCalculatorOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCalendar.js b/dist/ionicons/iosCalendar.js
new file mode 100644
index 000000000..08224d486
--- /dev/null
+++ b/dist/ionicons/iosCalendar.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCalendar = void 0;
+var iosCalendar = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "64",
+ "y": "192",
+ "width": "384",
+ "height": "256"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "64",
+ "y": "192",
+ "width": "384",
+ "height": "256"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "448,96 352,96 352,144 336,144 336,96 176,96 176,144 160,144 160,96 64,96 64,176 448,176 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,96 352,96 352,144 336,144 336,96 176,96 176,144 160,144 160,96 64,96 64,176 448,176 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "64",
+ "width": "16",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "64",
+ "width": "16",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "336",
+ "y": "64",
+ "width": "16",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "336",
+ "y": "64",
+ "width": "16",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCalendar = iosCalendar;
\ No newline at end of file
diff --git a/dist/ionicons/iosCalendarOutline.js b/dist/ionicons/iosCalendarOutline.js
new file mode 100644
index 000000000..225f93c23
--- /dev/null
+++ b/dist/ionicons/iosCalendarOutline.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCalendarOutline = void 0;
+var iosCalendarOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "class": "st0",
+ "points": "80,112 80,176 432,176 432,112 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M352,96V64h-16v32H176V64h-16v32H64v352h384V96H352z M432,432H80V192h352V432z M432,176H80v-64h80v32h16v-32h160v32h16v-32\r\n\th80V176z"
+ },
+ "children": []
+ }]
+};
+exports.iosCalendarOutline = iosCalendarOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCamera.js b/dist/ionicons/iosCamera.js
new file mode 100644
index 000000000..7d43708c2
--- /dev/null
+++ b/dist/ionicons/iosCamera.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCamera = void 0;
+var iosCamera = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M256,360.5\r\n\t\tc-47.1,0-85.5-38.4-85.5-85.5s38.4-85.5,85.5-85.5s85.5,38.4,85.5,85.5S303.1,360.5,256,360.5z M369,209h-17v-17h17V209z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M256,360.5\r\n\t\tc-47.1,0-85.5-38.4-85.5-85.5s38.4-85.5,85.5-85.5s85.5,38.4,85.5,85.5S303.1,360.5,256,360.5z M369,209h-17v-17h17V209z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,205.5c-38.4,0-69.5,31.1-69.5,69.5s31.1,69.5,69.5,69.5s69.5-31.1,69.5-69.5S294.4,205.5,256,205.5z M256,307\r\n\t\tc-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,307,256,307z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,205.5c-38.4,0-69.5,31.1-69.5,69.5s31.1,69.5,69.5,69.5s69.5-31.1,69.5-69.5S294.4,205.5,256,205.5z M256,307\r\n\t\tc-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,307,256,307z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCamera = iosCamera;
\ No newline at end of file
diff --git a/dist/ionicons/iosCameraOutline.js b/dist/ionicons/iosCameraOutline.js
new file mode 100644
index 000000000..1163fca94
--- /dev/null
+++ b/dist/ionicons/iosCameraOutline.js
@@ -0,0 +1,73 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCameraOutline = void 0;
+var iosCameraOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M432,366.7\r\n\t\tc0,9.3-6.2,17.3-14.5,17.3h-320c-8.7,0-17.5-8.7-17.5-17.3v-176c0-8.2,8.1-14.7,17.5-14.7h60.7h7.1l4.8-3.2c4-4.5,7.7-10,11.1-13.8\r\n\t\tc11.3-12.7,19.5-21.7,25.3-26.9c4.7-4.2,6.2-4.1,6.2-4.1h88.5c0,0,1.6-0.1,6.7,4.5c6.1,5.5,14.7,16.5,26.6,29.8\r\n\t\tc2.9,3.3,6,6.8,9.3,10.5l4.8,3.2h7.2h61.7c8.8,0,14.5,6,14.5,14.7V366.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.5,160h-61.7c-32.1-36-42.2-48-54.5-48h-88.5c-12.3,0-22.2,12-54.5,48H145v-16h-34v16H97.5C79.9,160,64,173.2,64,190.7\r\n\t\tv176c0,17.5,15.9,33.3,33.5,33.3h320c17.6,0,30.5-15.8,30.5-33.3v-176C448,173.2,435.1,160,417.5,160z M432,366.7\r\n\t\tc0,9.3-6.2,17.3-14.5,17.3h-320c-8.7,0-17.5-8.7-17.5-17.3v-176c0-8.2,8.1-14.7,17.5-14.7h60.7h7.1l4.8-3.2c4-4.5,7.7-10,11.1-13.8\r\n\t\tc11.3-12.7,19.5-21.7,25.3-26.9c4.7-4.2,6.2-4.1,6.2-4.1h88.5c0,0,1.6-0.1,6.7,4.5c6.1,5.5,14.7,16.5,26.6,29.8\r\n\t\tc2.9,3.3,6,6.8,9.3,10.5l4.8,3.2h7.2h61.7c8.8,0,14.5,6,14.5,14.7V366.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,189.5c-47.1,0-85.5,38.4-85.5,85.5s38.4,85.5,85.5,85.5s85.5-38.4,85.5-85.5S303.1,189.5,256,189.5z M256,344.5\r\n\t\tc-38.4,0-69.5-31.1-69.5-69.5s31.1-69.5,69.5-69.5s69.5,31.1,69.5,69.5S294.4,344.5,256,344.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,189.5c-47.1,0-85.5,38.4-85.5,85.5s38.4,85.5,85.5,85.5s85.5-38.4,85.5-85.5S303.1,189.5,256,189.5z M256,344.5\r\n\t\tc-38.4,0-69.5-31.1-69.5-69.5s31.1-69.5,69.5-69.5s69.5,31.1,69.5,69.5S294.4,344.5,256,344.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "352",
+ "y": "192",
+ "width": "17",
+ "height": "17"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "352",
+ "y": "192",
+ "width": "17",
+ "height": "17"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "275",
+ "r": "32"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "275",
+ "r": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCameraOutline = iosCameraOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCart.js b/dist/ionicons/iosCart.js
new file mode 100644
index 000000000..c1c08bc21
--- /dev/null
+++ b/dist/ionicons/iosCart.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCart = void 0;
+var iosCart = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCart = iosCart;
\ No newline at end of file
diff --git a/dist/ionicons/iosCartOutline.js b/dist/ionicons/iosCartOutline.js
new file mode 100644
index 000000000..415591877
--- /dev/null
+++ b/dist/ionicons/iosCartOutline.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCartOutline = void 0;
+var iosCartOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z M160,432c-4.411,0-8-3.589-8-8\r\n\t\ts3.589-8,8-8s8,3.589,8,8S164.411,432,160,432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S173.248,400,160,400z M160,432c-4.411,0-8-3.589-8-8\r\n\t\ts3.589-8,8-8s8,3.589,8,8S164.411,432,160,432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z M384.5,432\r\n\t\tc-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S388.911,432,384.5,432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384.5,400c-13.248,0-24,10.752-24,24s10.752,24,24,24s24-10.752,24-24S397.748,400,384.5,400z M384.5,432\r\n\t\tc-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S388.911,432,384.5,432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z M418.59,242.348l-260.601,45.99l-31.732-176.3l303.869,30.608L418.59,242.348z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,128L123.177,95.646c-1.628-6.972-4.369-14.66-11.838-20.667C102.025,67.489,86.982,64,64,64v16.001\r\n\t\tc18.614,0,31.167,2.506,37.312,7.447c4.458,3.585,5.644,8.423,7.165,15.989l-0.024,0.004l42.052,233.638\r\n\t\tc2.413,14.422,7.194,25.209,13.291,32.986C171.043,379.312,180.533,384,192,384h240v-16H192c-4.727,0-19.136,0.123-25.749-33.755\r\n\t\tl-5.429-30.16L432,256L448,128z M418.59,242.348l-260.601,45.99l-31.732-176.3l303.869,30.608L418.59,242.348z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCartOutline = iosCartOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosChatboxes.js b/dist/ionicons/iosChatboxes.js
new file mode 100644
index 000000000..ec72179cb
--- /dev/null
+++ b/dist/ionicons/iosChatboxes.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosChatboxes = void 0;
+var iosChatboxes = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "336,48 48,48 48,272 160,272 160,160 336,160 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "336,48 48,48 48,272 160,272 160,160 336,160 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M176,176v224h162.6l64,64H416v-64h48V176H176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M176,176v224h162.6l64,64H416v-64h48V176H176z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosChatboxes = iosChatboxes;
\ No newline at end of file
diff --git a/dist/ionicons/iosChatboxesOutline.js b/dist/ionicons/iosChatboxesOutline.js
new file mode 100644
index 000000000..f2a14a338
--- /dev/null
+++ b/dist/ionicons/iosChatboxesOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosChatboxesOutline = void 0;
+var iosChatboxesOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64,64 320,64 320,160 336,160 336,48 48,48 48,272 160,272 160,256 64,256 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64,64 320,64 320,160 336,160 336,48 48,48 48,272 160,272 160,256 64,256 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M176,176v224h162.6l64,64H416v-64h48V176H176z M448,384h-48v54.6L345,384H192V192h256V384z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M176,176v224h162.6l64,64H416v-64h48V176H176z M448,384h-48v54.6L345,384H192V192h256V384z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosChatboxesOutline = iosChatboxesOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosChatbubble.js b/dist/ionicons/iosChatbubble.js
new file mode 100644
index 000000000..a689ddcd5
--- /dev/null
+++ b/dist/ionicons/iosChatbubble.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosChatbubble = void 0;
+var iosChatbubble = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,96C149.9,96,64,165.1,64,250.3c0,30.7,11.2,59.3,30.4,83.3c0.9,0.9,2.9,3.8,3.6,4.9c0,0-1-1.6-1.1-1.9c0,0,0,0,0,0l0,0\r\n\tc0,0,0,0,0,0c2.3,3.3,3.6,7.1,3.6,11.2c0,1.4-17.9,58-17.9,58l0,0c-1.3,4.4,2.1,8.9,7.6,10c0.8,0.2,1.6,0.2,2.4,0.2\r\n\tc1.3,0,2.5-0.2,3.7-0.5l1.6-0.6l50.6-22c0.9-0.4,9-3.5,10-3.9c0,0,0.6-0.2,0.6-0.2c0,0-0.1,0-0.6,0.2c3.4-1.2,7.2-1.8,11.2-1.8\r\n\tc3.6,0,7.1,0.5,10.3,1.5c0.1,0,0.2,0,0.2,0.1c0.5,0.2,1,0.3,1.5,0.5c23.1,7.9,48.4,10.3,75.1,10.3c106,0,191-64.1,191-149.3\r\n\tC448,165.1,362,96,256,96L256,96z"
+ },
+ "children": []
+ }]
+};
+exports.iosChatbubble = iosChatbubble;
\ No newline at end of file
diff --git a/dist/ionicons/iosChatbubbleOutline.js b/dist/ionicons/iosChatbubbleOutline.js
new file mode 100644
index 000000000..b0e01ebd4
--- /dev/null
+++ b/dist/ionicons/iosChatbubbleOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosChatbubbleOutline = void 0;
+var iosChatbubbleOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,112c97,0,176,62,176,138.3c0,35.9-17.6,69.2-49.5,93.9c-32.8,25.4-77.4,39.3-125.5,39.3c-28.9,0-51-3-69.7-9.3\r\n\tc-0.6-0.2-1.3-0.5-2-0.7c-0.3-0.1-0.6-0.2-0.8-0.2c-4.7-1.4-9.7-2.1-14.7-2.1c-5.6,0-11.1,0.9-16.3,2.6l0,0l-0.3,0.1\r\n\tc-0.6,0.2-8.9,3.3-11,4.3l0,0l-39.6,17.2c13.8-43.9,13.8-44.8,13.8-47.6c0-7.1-2.2-14.1-6.3-20.2c-0.5-0.7-1-1.4-1.6-2.1\r\n\tc-0.7-0.9-1.3-1.7-1.8-2.3c-17.4-21.9-26.6-47.1-26.6-73C80,174,159,112,256,112 M256,96C149.9,96,64,165.1,64,250.3\r\n\tc0,30.7,11.2,59.3,30.4,83.3c0.9,0.9,2.9,3.8,3.6,4.9c0,0-1-1.6-1.1-1.9c0,0,0,0,0,0l0,0c0,0,0,0,0,0c2.3,3.3,3.6,7.1,3.6,11.2\r\n\tc0,1.4-17.9,58-17.9,58l0,0c-1.3,4.4,2.1,8.9,7.6,10c0.8,0.2,1.6,0.2,2.4,0.2c1.3,0,2.5-0.2,3.7-0.5l1.6-0.6l50.6-22\r\n\tc0.9-0.4,9-3.5,10-3.9c0,0,0.6-0.2,0.6-0.2c0,0-0.1,0-0.6,0.2c3.4-1.2,7.2-1.8,11.2-1.8c3.6,0,7.1,0.5,10.3,1.5c0.1,0,0.2,0,0.2,0.1\r\n\tc0.5,0.2,1,0.3,1.5,0.5c23.1,7.9,48.4,10.3,75.1,10.3c106,0,191-64.1,191-149.3C448,165.1,362,96,256,96L256,96z"
+ },
+ "children": []
+ }]
+};
+exports.iosChatbubbleOutline = iosChatbubbleOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCheckmark.js b/dist/ionicons/iosCheckmark.js
new file mode 100644
index 000000000..6cd45b717
--- /dev/null
+++ b/dist/ionicons/iosCheckmark.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCheckmark = void 0;
+var iosCheckmark = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M223.9,329.7\r\n\t\tc-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M223.9,329.7\r\n\t\tc-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCheckmark = iosCheckmark;
\ No newline at end of file
diff --git a/dist/ionicons/iosCheckmarkEmpty.js b/dist/ionicons/iosCheckmarkEmpty.js
new file mode 100644
index 000000000..46b889ab1
--- /dev/null
+++ b/dist/ionicons/iosCheckmarkEmpty.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCheckmarkEmpty = void 0;
+var iosCheckmarkEmpty = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M223.9,329.7c-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M223.9,329.7c-2.4,2.4-5.8,4.4-8.8,4.4s-6.4-2.1-8.9-4.5l-56-56l17.8-17.8l47.2,47.2l124.8-125.7l17.5,18.1L223.9,329.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCheckmarkEmpty = iosCheckmarkEmpty;
\ No newline at end of file
diff --git a/dist/ionicons/iosCheckmarkOutline.js b/dist/ionicons/iosCheckmarkOutline.js
new file mode 100644
index 000000000..ab807ec69
--- /dev/null
+++ b/dist/ionicons/iosCheckmarkOutline.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCheckmarkOutline = void 0;
+var iosCheckmarkOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M340.1,177.3L215.3,303l-47.2-47.2l-17.8,17.8l56,56c2.5,2.5,5.9,4.5,8.9,4.5s6.3-2,8.8-4.4l133.7-134.4L340.1,177.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M340.1,177.3L215.3,303l-47.2-47.2l-17.8,17.8l56,56c2.5,2.5,5.9,4.5,8.9,4.5s6.3-2,8.8-4.4l133.7-134.4L340.1,177.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosCheckmarkOutline = iosCheckmarkOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCircleFilled.js b/dist/ionicons/iosCircleFilled.js
new file mode 100644
index 000000000..eb9db09c8
--- /dev/null
+++ b/dist/ionicons/iosCircleFilled.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCircleFilled = void 0;
+var iosCircleFilled = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,96c-88.4,0-160,71.6-160,160c0,88.4,71.6,160,160,160c88.4,0,160-71.6,160-160C416,167.6,344.4,96,256,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,96c-88.4,0-160,71.6-160,160c0,88.4,71.6,160,160,160c88.4,0,160-71.6,160-160C416,167.6,344.4,96,256,96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosCircleFilled = iosCircleFilled;
\ No newline at end of file
diff --git a/dist/ionicons/iosCircleOutline.js b/dist/ionicons/iosCircleOutline.js
new file mode 100644
index 000000000..9dabcbcc4
--- /dev/null
+++ b/dist/ionicons/iosCircleOutline.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCircleOutline = void 0;
+var iosCircleOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosCircleOutline = iosCircleOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosClock.js b/dist/ionicons/iosClock.js
new file mode 100644
index 000000000..f9c3aa939
--- /dev/null
+++ b/dist/ionicons/iosClock.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosClock = void 0;
+var iosClock = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M273,273H160v-17h96V128h17\r\n\t\tV273z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M273,273H160v-17h96V128h17\r\n\t\tV273z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosClock = iosClock;
\ No newline at end of file
diff --git a/dist/ionicons/iosClockOutline.js b/dist/ionicons/iosClockOutline.js
new file mode 100644
index 000000000..88576e59e
--- /dev/null
+++ b/dist/ionicons/iosClockOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosClockOutline = void 0;
+var iosClockOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "256,256 160,256 160,273.3 273.3,273.3 273.3,128 256,128 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,256 160,256 160,273.3 273.3,273.3 273.3,128 256,128 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosClockOutline = iosClockOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosClose.js b/dist/ionicons/iosClose.js
new file mode 100644
index 000000000..b499a7fa6
--- /dev/null
+++ b/dist/ionicons/iosClose.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosClose = void 0;
+var iosClose = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\tS484.3,190.1,403.1,108.9z M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2\r\n\t\tl11.8,11.8L267.6,256L352,340.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\tS484.3,190.1,403.1,108.9z M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2\r\n\t\tl11.8,11.8L267.6,256L352,340.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosClose = iosClose;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloseEmpty.js b/dist/ionicons/iosCloseEmpty.js
new file mode 100644
index 000000000..185a31e82
--- /dev/null
+++ b/dist/ionicons/iosCloseEmpty.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloseEmpty = void 0;
+var iosCloseEmpty = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "340.2,160 255.8,244.3 171.8,160.4 160,172.2 244,256 160,339.9 171.8,351.6 255.8,267.8 340.2,352 \r\n\t352,340.3 267.6,256 352,171.8 "
+ },
+ "children": []
+ }]
+};
+exports.iosCloseEmpty = iosCloseEmpty;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloseOutline.js b/dist/ionicons/iosCloseOutline.js
new file mode 100644
index 000000000..621dcad3e
--- /dev/null
+++ b/dist/ionicons/iosCloseOutline.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloseOutline = void 0;
+var iosCloseOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\t\tS484.3,190.1,403.1,108.9z M390.8,390.8c-74.3,74.3-195.3,74.3-269.6,0c-74.3-74.3-74.3-195.3,0-269.6s195.3-74.3,269.6,0\r\n\t\t\tC465.2,195.5,465.2,316.5,390.8,390.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0\r\n\t\t\tS484.3,190.1,403.1,108.9z M390.8,390.8c-74.3,74.3-195.3,74.3-269.6,0c-74.3-74.3-74.3-195.3,0-269.6s195.3-74.3,269.6,0\r\n\t\t\tC465.2,195.5,465.2,316.5,390.8,390.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "340.2,160 255.8,244.2 171.8,160.4 160,172.2 244,256 160,339.8 171.8,351.6 255.8,267.8 340.2,352 \r\n\t\t352,340.2 267.6,256 352,171.8 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "340.2,160 255.8,244.2 171.8,160.4 160,172.2 244,256 160,339.8 171.8,351.6 255.8,267.8 340.2,352 \r\n\t\t352,340.2 267.6,256 352,171.8 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCloseOutline = iosCloseOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloud.js b/dist/ionicons/iosCloud.js
new file mode 100644
index 000000000..b169e8c82
--- /dev/null
+++ b/dist/ionicons/iosCloud.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloud = void 0;
+var iosCloud = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.3,232.8c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-117.2-116.8-117.2c-46.1,0-85.8,27.9-104.4,67c-8.1-4.1-17.1-6.4-26.8-6.4\r\n\tc-29.6,0-54.1,23.7-58.9,52C57.4,236.8,32,268.8,32,308.4c0,49.8,40.1,91.6,89.6,91.6H398c45,0,82-38.9,82-84.3\r\n\tC480,270.1,444.6,232.9,399.3,232.8z"
+ },
+ "children": []
+ }]
+};
+exports.iosCloud = iosCloud;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloudDownload.js b/dist/ionicons/iosCloudDownload.js
new file mode 100644
index 000000000..f52116199
--- /dev/null
+++ b/dist/ionicons/iosCloudDownload.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloudDownload = void 0;
+var iosCloudDownload = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "248,435 193.3,381.2 181.6,392.6 256.1,466 330.6,392.6 318.8,381.2 264,435 264,328 248,328 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "248,435 193.3,381.2 181.6,392.6 256.1,466 330.6,392.6 318.8,381.2 264,435 264,328 248,328 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H192h21h35V193h16v135h134\r\n\t\tc45,0,81.9-37.2,81.9-82.1C479.9,201,444.5,164.5,399.2,164.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H192h21h35V193h16v135h134\r\n\t\tc45,0,81.9-37.2,81.9-82.1C479.9,201,444.5,164.5,399.2,164.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCloudDownload = iosCloudDownload;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloudDownloadOutline.js b/dist/ionicons/iosCloudDownloadOutline.js
new file mode 100644
index 000000000..b220b58a8
--- /dev/null
+++ b/dist/ionicons/iosCloudDownloadOutline.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloudDownloadOutline = void 0;
+var iosCloudDownloadOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "193.2,381.2 181.6,392.6 256.1,466 330.6,392.6 319,381.2 264.3,435 264.3,192.9 247.9,192.9 247.9,435 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "193.2,381.2 181.6,392.6 256.1,466 330.6,392.6 319,381.2 264.3,435 264.3,192.9 247.9,192.9 247.9,435 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H213v-16h-90.7\r\n\t\t\tc-40.9,0-74.2-33.2-74.2-73.7c0-31.4,20.2-57.5,50.2-67.7l8.4-2.8l1.5-8.7c3.6-21.3,22.1-38.8,43.9-38.8c6.9,0,13.7,1.6,19.9,4.7\r\n\t\t\tl13.5,6.7l6.5-13.6c16.6-34.4,52.1-56.6,90.4-56.6c55.3,0,100.9,42.8,100.9,97.6c0,13.1-0.2,20.1-0.2,20.1l15.2,0.1\r\n\t\t\tc36.7,0.5,65.6,30,65.6,66.4c0,36.3-29.8,66.1-66.5,66.3l-3.2,0.1H297v16h101h0c45,0,81.9-37.2,81.9-82.1\r\n\t\t\tC479.9,201,444.5,164.5,399.2,164.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.2,164.4c0-1.2,0.2-2.3,0.2-3.5C399.4,97.4,346.5,46,282.6,46c-46.1,0-85.8,26.8-104.4,65.4c-8.1-4-17.1-6.3-26.8-6.3\r\n\t\t\tc-29.6,0-54.1,23.3-58.9,51.3c-35.2,12-60.6,43.4-60.6,82.4c0,49.1,40.1,89.2,89.6,89.2H213v-16h-90.7\r\n\t\t\tc-40.9,0-74.2-33.2-74.2-73.7c0-31.4,20.2-57.5,50.2-67.7l8.4-2.8l1.5-8.7c3.6-21.3,22.1-38.8,43.9-38.8c6.9,0,13.7,1.6,19.9,4.7\r\n\t\t\tl13.5,6.7l6.5-13.6c16.6-34.4,52.1-56.6,90.4-56.6c55.3,0,100.9,42.8,100.9,97.6c0,13.1-0.2,20.1-0.2,20.1l15.2,0.1\r\n\t\t\tc36.7,0.5,65.6,30,65.6,66.4c0,36.3-29.8,66.1-66.5,66.3l-3.2,0.1H297v16h101h0c45,0,81.9-37.2,81.9-82.1\r\n\t\t\tC479.9,201,444.5,164.5,399.2,164.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosCloudDownloadOutline = iosCloudDownloadOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloudOutline.js b/dist/ionicons/iosCloudOutline.js
new file mode 100644
index 000000000..f6796668d
--- /dev/null
+++ b/dist/ionicons/iosCloudOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloudOutline = void 0;
+var iosCloudOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.3,232.8c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-117.2-116.8-117.2c-46.1,0-85.8,27.9-104.4,67c-8.1-4.1-17.1-6.4-26.8-6.4\r\n\tc-29.6,0-54.1,23.7-58.9,52C57.4,236.8,32,268.8,32,308.4c0,49.8,40.1,91.6,89.6,91.6H398c45,0,82-38.9,82-84.3\r\n\tC480,270.1,444.6,232.9,399.3,232.8z M397.5,383.6l-3.2,0.4H122.4c-40.9,0-74.2-34.9-74.2-76.1c0-31.9,20.2-58.4,50.2-68.8l8.4-3\r\n\tl1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8l13.5,6.8l6.5-13.7c16.6-34.9,52.1-58.2,90.4-58.2\r\n\tc55.3,0,100.9,44.1,100.9,99.7c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1c36.7,0.5,65.6,30.5,65.6,67.4C464,352.1,434.2,383.4,397.5,383.6z\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.iosCloudOutline = iosCloudOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloudUpload.js b/dist/ionicons/iosCloudUpload.js
new file mode 100644
index 000000000..c8d2f4869
--- /dev/null
+++ b/dist/ionicons/iosCloudUpload.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloudUpload = void 0;
+var iosCloudUpload = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "248",
+ "y": "352",
+ "width": "16",
+ "height": "96"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "248",
+ "y": "352",
+ "width": "16",
+ "height": "96"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H182h31h35V205.8\r\n\t\tl-54.7,54.5l-11.6-11.6l74.5-74.3l74.5,74.3l-11.8,11.6L264,205.8V352h134c45,0,82-37.3,82-82.8C480,223.7,444.5,183.7,399.3,183.6\r\n\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H182h31h35V205.8\r\n\t\tl-54.7,54.5l-11.6-11.6l74.5-74.3l74.5,74.3l-11.8,11.6L264,205.8V352h134c45,0,82-37.3,82-82.8C480,223.7,444.5,183.7,399.3,183.6\r\n\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCloudUpload = iosCloudUpload;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloudUploadOutline.js b/dist/ionicons/iosCloudUploadOutline.js
new file mode 100644
index 000000000..7bf04f6c7
--- /dev/null
+++ b/dist/ionicons/iosCloudUploadOutline.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloudUploadOutline = void 0;
+var iosCloudUploadOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "193.3,260.4 181.7,248.8 256.2,174.5 330.7,248.8 319,260.4 264.4,205.8 264.4,447.6 247.9,447.6 247.9,205.8 \t\t\r\n\t\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "193.3,260.4 181.7,248.8 256.2,174.5 330.7,248.8 319,260.4 264.4,205.8 264.4,447.6 247.9,447.6 247.9,205.8 \t\t\r\n\t\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H213v-16h-90.6\r\n\t\t\tc-40.9,0-74.2-33.5-74.2-74.6c0-31.8,20.2-61.2,50.2-71.6l8.4-2.9l1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8\r\n\t\t\tl13.5,6.8l6.5-13.7c16.6-34.9,52.1-57.4,90.4-57.4c55.3,0,100.9,43.3,100.9,98.9c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1\r\n\t\t\tC435,199.1,464,232,464,268.9c0,36.8-29.8,66.9-66.5,67.1l-3.2,0H297v16h101h0c45,0,82-37.3,82-82.8\r\n\t\t\tC480,223.7,444.5,183.7,399.3,183.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.3,183.6c0-1.2,0.2-2.4,0.2-3.6c0-64.3-52.8-116.4-116.8-116.4c-46.1,0-85.8,27.1-104.4,66.3\r\n\t\t\tc-8.1-4.1-17.1-6.4-26.8-6.4c-29.6,0-54.1,23.6-58.9,52C57.4,187.6,32,222.2,32,261.8c0,49.7,40.1,90.2,89.6,90.2H213v-16h-90.6\r\n\t\t\tc-40.9,0-74.2-33.5-74.2-74.6c0-31.8,20.2-61.2,50.2-71.6l8.4-2.9l1.5-8.8c3.6-21.6,22.1-39.3,43.9-39.3c6.9,0,13.7,1.6,19.9,4.8\r\n\t\t\tl13.5,6.8l6.5-13.7c16.6-34.9,52.1-57.4,90.4-57.4c55.3,0,100.9,43.3,100.9,98.9c0,13.3-0.2,20.3-0.2,20.3l15.2,0.1\r\n\t\t\tC435,199.1,464,232,464,268.9c0,36.8-29.8,66.9-66.5,67.1l-3.2,0H297v16h101h0c45,0,82-37.3,82-82.8\r\n\t\t\tC480,223.7,444.5,183.7,399.3,183.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosCloudUploadOutline = iosCloudUploadOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloudy.js b/dist/ionicons/iosCloudy.js
new file mode 100644
index 000000000..67a86e61f
--- /dev/null
+++ b/dist/ionicons/iosCloudy.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloudy = void 0;
+var iosCloudy = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M244,160c-43,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7S364.1,221,328.4,221c-2.7,0-5.4,0-8,0.3C312.5,186.3,281,160,244,160\r\n\tL244,160z"
+ },
+ "children": []
+ }]
+};
+exports.iosCloudy = iosCloudy;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloudyNight.js b/dist/ionicons/iosCloudyNight.js
new file mode 100644
index 000000000..93810b58a
--- /dev/null
+++ b/dist/ionicons/iosCloudyNight.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloudyNight = void 0;
+var iosCloudyNight = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc-0.3,0.8-0.6,1.5-0.9,2.3c11.9,3.5,23.1,9.4,32.8,17.3c13,10.6,22.9,24.5,28.8,40.1c20.1,0.9,38.9,9.4,53.3,24\r\n\t\tc15.2,15.4,23.5,35.9,23.5,57.4c0,11.4-2.4,22.5-6.8,32.8c0.8-0.1,1.6-0.1,2.5-0.2c33.6-3.6,63.3-20.1,84-44.6\r\n\t\tc5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc-0.3,0.8-0.6,1.5-0.9,2.3c11.9,3.5,23.1,9.4,32.8,17.3c13,10.6,22.9,24.5,28.8,40.1c20.1,0.9,38.9,9.4,53.3,24\r\n\t\tc15.2,15.4,23.5,35.9,23.5,57.4c0,11.4-2.4,22.5-6.8,32.8c0.8-0.1,1.6-0.1,2.5-0.2c33.6-3.6,63.3-20.1,84-44.6\r\n\t\tc5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M189,209c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,297.7,64,320.8,64,347.9\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\tC257.5,235.3,226.3,209,189,209L189,209z"
+ },
+ "children": []
+ }]
+};
+exports.iosCloudyNight = iosCloudyNight;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloudyNightOutline.js b/dist/ionicons/iosCloudyNightOutline.js
new file mode 100644
index 000000000..a53dc0adb
--- /dev/null
+++ b/dist/ionicons/iosCloudyNightOutline.js
@@ -0,0 +1,49 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloudyNightOutline = void 0;
+var iosCloudyNightOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M189,223.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H115.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC126.5,252,154.5,223.8,189,223.8 M189,208c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,296.7,64,319.8,64,346.9\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC257.5,234.3,226.3,208,189,208L189,208z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M189,223.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H115.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC126.5,252,154.5,223.8,189,223.8 M189,208c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8C84.7,296.7,64,319.8,64,346.9\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC257.5,234.3,226.3,208,189,208L189,208z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc5.9,1.2,11.6,3,17,5.4c10.1-25.5,29.4-46.4,53.8-58.6c-4.6,13.9-7.1,28.7-7.1,44.1c0,27.3,7.9,52.8,21.4,74.2\r\n\t\tc13.8,21.8,33.5,39.5,56.8,50.9c15.3,7.4,32.2,12.1,50,13.5c-14,12.2-31.2,20.9-50,24.8c-1.9,6.9-4.9,13.4-8.6,19.3\r\n\t\tc33.6-3.6,63.3-20.1,84-44.6c5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M424.6,305.6c-2,0.1-3.9,0.1-5.9,0.1c-32.3,0-62.7-12.6-85.5-35.5c-22.8-22.9-35.4-53.3-35.4-85.7\r\n\t\tc0-18.4,4.1-36.2,11.8-52.4c3.4-7.1,7.5-13.9,12.3-20.2c-8.4,0.9-16.6,2.7-24.4,5.1c-37.2,11.8-67.1,40.2-81,76.5\r\n\t\tc5.9,1.2,11.6,3,17,5.4c10.1-25.5,29.4-46.4,53.8-58.6c-4.6,13.9-7.1,28.7-7.1,44.1c0,27.3,7.9,52.8,21.4,74.2\r\n\t\tc13.8,21.8,33.5,39.5,56.8,50.9c15.3,7.4,32.2,12.1,50,13.5c-14,12.2-31.2,20.9-50,24.8c-1.9,6.9-4.9,13.4-8.6,19.3\r\n\t\tc33.6-3.6,63.3-20.1,84-44.6c5.4-6.3,10.2-13.2,14.2-20.5C440.4,304.1,432.6,305.2,424.6,305.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCloudyNightOutline = iosCloudyNightOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCloudyOutline.js b/dist/ionicons/iosCloudyOutline.js
new file mode 100644
index 000000000..85fc654ea
--- /dev/null
+++ b/dist/ionicons/iosCloudyOutline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCloudyOutline = void 0;
+var iosCloudyOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M244,175.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H170.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.7-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\tC181.5,204,209.5,175.8,244,175.8 M244,160c-43,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7S364.1,221,328.4,221c-2.7,0-5.4,0-8,0.3C312.5,186.3,281,160,244,160\r\n\tL244,160z"
+ },
+ "children": []
+ }]
+};
+exports.iosCloudyOutline = iosCloudyOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCog.js b/dist/ionicons/iosCog.js
new file mode 100644
index 000000000..3f6dffdba
--- /dev/null
+++ b/dist/ionicons/iosCog.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCog = void 0;
+var iosCog = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M293.25,150.32L265.2,254.9l74.954,75C358.159,309.457,368,283.486,368,256c0-29.916-11.65-58.042-32.805-79.196\r\n\t\tC323.154,164.763,308.854,155.807,293.25,150.32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M293.25,150.32L265.2,254.9l74.954,75C358.159,309.457,368,283.486,368,256c0-29.916-11.65-58.042-32.805-79.196\r\n\t\tC323.154,164.763,308.854,155.807,293.25,150.32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M278.068,146.161C270.88,144.732,263.496,144,256,144c-29.916,0-58.042,11.65-79.196,32.805\r\n\t\tC155.65,197.958,144,226.084,144,256c0,7.468,0.727,14.824,2.145,21.988L250.3,250.1L278.068,146.161z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M278.068,146.161C270.88,144.732,263.496,144,256,144c-29.916,0-58.042,11.65-79.196,32.805\r\n\t\tC155.65,197.958,144,226.084,144,256c0,7.468,0.727,14.824,2.145,21.988L250.3,250.1L278.068,146.161z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M150.473,293.697c5.5,15.43,14.404,29.572,26.331,41.498C197.958,356.35,226.083,368,256,368\r\n\t\tc27.009,0,52.558-9.499,72.835-26.911L253.9,266.2L150.473,293.697z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M150.473,293.697c5.5,15.43,14.404,29.572,26.331,41.498C197.958,356.35,226.083,368,256,368\r\n\t\tc27.009,0,52.558-9.499,72.835-26.911L253.9,266.2L150.473,293.697z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.695-29.708l-22.594-22.605l-30.191,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.007l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.307l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.607l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.311\r\n\t\tl29.592,12.202l20.595-27.808l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.106l29.593-12.203l-4.998-33.709\r\n\t\tl10.196-7.4l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.402l33.791,4.802l12.298-29.508l-27.193-20.507l2.7-13.502\r\n\t\tL448,272.754z M256,384c-70.692,0-128-57.307-128-128c0-70.692,57.308-128,128-128c70.692,0,128,57.308,128,128\r\n\t\tC384,326.693,326.692,384,256,384z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.695-29.708l-22.594-22.605l-30.191,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.007l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.307l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.607l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.311\r\n\t\tl29.592,12.202l20.595-27.808l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.106l29.593-12.203l-4.998-33.709\r\n\t\tl10.196-7.4l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.402l33.791,4.802l12.298-29.508l-27.193-20.507l2.7-13.502\r\n\t\tL448,272.754z M256,384c-70.692,0-128-57.307-128-128c0-70.692,57.308-128,128-128c70.692,0,128,57.308,128,128\r\n\t\tC384,326.693,326.692,384,256,384z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCog = iosCog;
\ No newline at end of file
diff --git a/dist/ionicons/iosCogOutline.js b/dist/ionicons/iosCogOutline.js
new file mode 100644
index 000000000..5f00c0498
--- /dev/null
+++ b/dist/ionicons/iosCogOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCogOutline = void 0;
+var iosCogOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.696-29.708l-22.594-22.605l-30.192,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.008l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.306l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.608l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.31\r\n\t\tl29.592,12.202l20.595-27.807l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.107l29.593-12.204l-4.998-33.708\r\n\t\tl10.196-7.401l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.403l33.791,4.802l12.298-29.508l-27.193-20.506l2.7-13.503\r\n\t\tL448,272.754z M419.707,320.767l-2.8,6.702l-31.891-4.501l-18.896,27.807l15.695,27.106l-5.198,5.202l-27.293-15.904\r\n\t\tl-26.593,18.204l4.799,31.809l-6.698,2.802l-19.595-25.607l-32.892,6.501l-7.798,31.209h-7.198l-8.397-31.309l-32.592-6.501\r\n\t\tl-19.495,26.406l-6.698-2.801l4.399-32.509l-27.493-18.304l-28.793,17.504l-5.099-5.101l16.996-29.108l-18.096-27.606\r\n\t\tl-33.191,4.701l-2.699-6.603l26.894-20.205l-6.199-31.809l-32.991-8.502v-7.202l32.991-8.402l6.299-31.608l-27.293-20.505\r\n\t\tl2.699-6.602l33.691,4.801l17.796-26.807l-17.996-30.008l4.999-5.001l20.595,12.303l9.197,5.501l27.893-18.205l-4.499-33.809\r\n\t\tl6.699-2.8l20.294,27.407l31.492-6.102l8.798-33.208h7.198l8.298,33.008l31.691,6.301l20.095-26.807l6.598,2.801l-4.999,33.108\r\n\t\tl27.193,18.105l28.292-16.205l5.1,5.102l-16.695,28.007l18.396,27.007l32.491-4.601l2.799,6.702l-26.193,19.705l6.498,32.508\r\n\t\tl31.292,8.102v7.202l-31.391,8.103l-6.499,32.709L419.707,320.767z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,272.754v-32.008l-33.291-8.703l-2.601-13.204l27.594-20.905l-12.197-29.608l-34.392,4.802l-7.498-10.603\r\n\t\tl17.696-29.708l-22.594-22.605l-30.192,17.404l-10.697-7.302l5.298-35.009l-29.492-12.303L294.04,101.31l-12.297-2.601L273.045,64\r\n\t\th-31.991l-9.197,34.909l-12.098,2.4l-21.494-29.008l-29.592,12.304l4.799,35.709l-11.697,7.202l-31.292-18.705l-22.594,22.606\r\n\t\tl18.795,31.508l-6.698,10.502l-35.49-5.001l-12.197,29.608l28.893,21.706l-2.399,12.203L64,240.846v32.008l34.69,8.903l2.4,12.503\r\n\t\tl-28.394,21.306l12.297,29.508l34.991-5.002l7.099,11.303l-17.896,30.608l22.595,22.605l30.192-18.204l11.196,7.302l-4.498,34.31\r\n\t\tl29.592,12.202l20.595-27.807l13.396,2.5L241.054,448h31.991l8.298-33.109l13.597-2.601l20.694,27.107l29.593-12.204l-4.998-33.708\r\n\t\tl10.196-7.401l28.992,16.904l22.595-22.606l-16.795-28.907l7.896-11.403l33.791,4.802l12.298-29.508l-27.193-20.506l2.7-13.503\r\n\t\tL448,272.754z M419.707,320.767l-2.8,6.702l-31.891-4.501l-18.896,27.807l15.695,27.106l-5.198,5.202l-27.293-15.904\r\n\t\tl-26.593,18.204l4.799,31.809l-6.698,2.802l-19.595-25.607l-32.892,6.501l-7.798,31.209h-7.198l-8.397-31.309l-32.592-6.501\r\n\t\tl-19.495,26.406l-6.698-2.801l4.399-32.509l-27.493-18.304l-28.793,17.504l-5.099-5.101l16.996-29.108l-18.096-27.606\r\n\t\tl-33.191,4.701l-2.699-6.603l26.894-20.205l-6.199-31.809l-32.991-8.502v-7.202l32.991-8.402l6.299-31.608l-27.293-20.505\r\n\t\tl2.699-6.602l33.691,4.801l17.796-26.807l-17.996-30.008l4.999-5.001l20.595,12.303l9.197,5.501l27.893-18.205l-4.499-33.809\r\n\t\tl6.699-2.8l20.294,27.407l31.492-6.102l8.798-33.208h7.198l8.298,33.008l31.691,6.301l20.095-26.807l6.598,2.801l-4.999,33.108\r\n\t\tl27.193,18.105l28.292-16.205l5.1,5.102l-16.695,28.007l18.396,27.007l32.491-4.601l2.799,6.702l-26.193,19.705l6.498,32.508\r\n\t\tl31.292,8.102v7.202l-31.391,8.103l-6.499,32.709L419.707,320.767z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,128c-70.692,0-128,57.308-128,128c0,70.693,57.308,128,128,128s128-57.307,128-128C384,185.308,326.692,128,256,128z\r\n\t\t M144,256c0-29.916,11.65-58.042,32.804-79.195C197.958,155.65,226.084,144,256,144c7.496,0,14.88,0.732,22.069,2.161L250.3,250.1\r\n\t\tl-104.155,27.888C144.727,270.824,144,263.468,144,256z M256,368c-29.917,0-58.042-11.65-79.196-32.804\r\n\t\tc-11.927-11.926-20.831-26.069-26.331-41.499L253.9,266.2l74.935,74.889C308.558,358.501,283.009,368,256,368z M340.154,329.901\r\n\t\tL265.2,254.9l28.05-104.58c15.604,5.487,29.904,14.443,41.945,26.484C356.35,197.958,368,226.084,368,256\r\n\t\tC368,283.486,358.159,309.457,340.154,329.901z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,128c-70.692,0-128,57.308-128,128c0,70.693,57.308,128,128,128s128-57.307,128-128C384,185.308,326.692,128,256,128z\r\n\t\t M144,256c0-29.916,11.65-58.042,32.804-79.195C197.958,155.65,226.084,144,256,144c7.496,0,14.88,0.732,22.069,2.161L250.3,250.1\r\n\t\tl-104.155,27.888C144.727,270.824,144,263.468,144,256z M256,368c-29.917,0-58.042-11.65-79.196-32.804\r\n\t\tc-11.927-11.926-20.831-26.069-26.331-41.499L253.9,266.2l74.935,74.889C308.558,358.501,283.009,368,256,368z M340.154,329.901\r\n\t\tL265.2,254.9l28.05-104.58c15.604,5.487,29.904,14.443,41.945,26.484C356.35,197.958,368,226.084,368,256\r\n\t\tC368,283.486,358.159,309.457,340.154,329.901z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCogOutline = iosCogOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosColorFilter.js b/dist/ionicons/iosColorFilter.js
new file mode 100644
index 000000000..1925b39a8
--- /dev/null
+++ b/dist/ionicons/iosColorFilter.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosColorFilter = void 0;
+var iosColorFilter = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M366.194,212.122c1.185-6.528,1.807-13.252,1.807-20.122c0-61.856-50.146-112-112.001-112\r\n\t\tc-61.857,0-112.001,50.144-112.001,112c0,6.87,0.622,13.594,1.806,20.122C98.618,225.302,64,268.606,64,320\r\n\t\tc0,61.855,50.144,112,112,112c31.341,0,59.67-12.879,80-33.627C276.328,419.121,304.658,432,335.999,432\r\n\t\tC397.854,432,448,381.855,448,320C448,268.606,413.381,225.303,366.194,212.122z M255.998,395.373\r\n\t\tc-0.484,0.495-0.979,0.982-1.475,1.469c-3.201-3.394-6.189-6.987-8.951-10.759c-13.561-18.525-21.574-41.366-21.574-66.083\r\n\t\tc0-6.869,0.622-13.594,1.807-20.121c-35.749-9.986-64.281-37.26-76.014-72.243c-1.594-4.752-2.872-9.647-3.822-14.659\r\n\t\tc0.942-0.29,1.882-0.589,2.835-0.854c-0.046-0.252-0.085-0.507-0.129-0.759c4.186-1.049,8.463-1.867,12.82-2.43\r\n\t\tC166.243,208.319,171.084,208,176,208c31.341,0,59.67,12.878,80,33.626C276.328,220.878,304.658,208,335.999,208\r\n\t\tc4.916,0,9.757,0.319,14.506,0.934c4.355,0.563,8.633,1.38,12.816,2.429c-0.043,0.253-0.082,0.507-0.129,0.76\r\n\t\tc0.955,0.267,1.895,0.564,2.838,0.855c-0.949,5.012-2.229,9.907-3.822,14.658c-11.732,34.983-40.266,62.257-76.013,72.242\r\n\t\tc1.185,6.528,1.807,13.253,1.807,20.122c0,24.717-8.014,47.558-21.574,66.083c-2.762,3.772-5.752,7.367-8.953,10.76\r\n\t\tC256.979,396.356,256.484,395.869,255.998,395.373z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M366.194,212.122c1.185-6.528,1.807-13.252,1.807-20.122c0-61.856-50.146-112-112.001-112\r\n\t\tc-61.857,0-112.001,50.144-112.001,112c0,6.87,0.622,13.594,1.806,20.122C98.618,225.302,64,268.606,64,320\r\n\t\tc0,61.855,50.144,112,112,112c31.341,0,59.67-12.879,80-33.627C276.328,419.121,304.658,432,335.999,432\r\n\t\tC397.854,432,448,381.855,448,320C448,268.606,413.381,225.303,366.194,212.122z M255.998,395.373\r\n\t\tc-0.484,0.495-0.979,0.982-1.475,1.469c-3.201-3.394-6.189-6.987-8.951-10.759c-13.561-18.525-21.574-41.366-21.574-66.083\r\n\t\tc0-6.869,0.622-13.594,1.807-20.121c-35.749-9.986-64.281-37.26-76.014-72.243c-1.594-4.752-2.872-9.647-3.822-14.659\r\n\t\tc0.942-0.29,1.882-0.589,2.835-0.854c-0.046-0.252-0.085-0.507-0.129-0.759c4.186-1.049,8.463-1.867,12.82-2.43\r\n\t\tC166.243,208.319,171.084,208,176,208c31.341,0,59.67,12.878,80,33.626C276.328,220.878,304.658,208,335.999,208\r\n\t\tc4.916,0,9.757,0.319,14.506,0.934c4.355,0.563,8.633,1.38,12.816,2.429c-0.043,0.253-0.082,0.507-0.129,0.76\r\n\t\tc0.955,0.267,1.895,0.564,2.838,0.855c-0.949,5.012-2.229,9.907-3.822,14.658c-11.732,34.983-40.266,62.257-76.013,72.242\r\n\t\tc1.185,6.528,1.807,13.253,1.807,20.122c0,24.717-8.014,47.558-21.574,66.083c-2.762,3.772-5.752,7.367-8.953,10.76\r\n\t\tC256.979,396.356,256.484,395.869,255.998,395.373z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M270.506,303.067c-4.749,0.614-9.59,0.934-14.506,0.934s-9.758-0.319-14.506-0.934c-0.982,5.498-1.496,11.156-1.496,16.933\r\n\t\tc0,19.58,5.898,37.806,16.002,53.005c10.104-15.199,16.002-33.425,16.002-53.005C272.002,314.224,271.488,308.565,270.506,303.067z\r\n\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M270.506,303.067c-4.749,0.614-9.59,0.934-14.506,0.934s-9.758-0.319-14.506-0.934c-0.982,5.498-1.496,11.156-1.496,16.933\r\n\t\tc0,19.58,5.898,37.806,16.002,53.005c10.104-15.199,16.002-33.425,16.002-53.005C272.002,314.224,271.488,308.565,270.506,303.067z\r\n\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M346.313,224.555c-3.39-0.364-6.83-0.556-10.314-0.556c-27.354,0-52.069,11.5-69.571,29.917\r\n\t\tc6.725,9.188,12.088,19.434,15.781,30.448C311.964,275.909,335.874,253.428,346.313,224.555z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M346.313,224.555c-3.39-0.364-6.83-0.556-10.314-0.556c-27.354,0-52.069,11.5-69.571,29.917\r\n\t\tc6.725,9.188,12.088,19.434,15.781,30.448C311.964,275.909,335.874,253.428,346.313,224.555z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M266.314,287.445c-2.625-7.262-6.105-14.119-10.314-20.451c-4.209,6.332-7.689,13.189-10.314,20.451\r\n\t\tc3.389,0.364,6.83,0.556,10.314,0.556S262.925,287.81,266.314,287.445z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M266.314,287.445c-2.625-7.262-6.105-14.119-10.314-20.451c-4.209,6.332-7.689,13.189-10.314,20.451\r\n\t\tc3.389,0.364,6.83,0.556,10.314,0.556S262.925,287.81,266.314,287.445z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M176,223.999c-3.484,0-6.925,0.191-10.314,0.556c10.439,28.873,34.349,51.354,64.106,59.81\r\n\t\tc3.693-11.015,9.055-21.261,15.781-30.448C228.07,235.499,203.353,223.999,176,223.999z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M176,223.999c-3.484,0-6.925,0.191-10.314,0.556c10.439,28.873,34.349,51.354,64.106,59.81\r\n\t\tc3.693-11.015,9.055-21.261,15.781-30.448C228.07,235.499,203.353,223.999,176,223.999z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosColorFilter = iosColorFilter;
\ No newline at end of file
diff --git a/dist/ionicons/iosColorFilterOutline.js b/dist/ionicons/iosColorFilterOutline.js
new file mode 100644
index 000000000..856aae45c
--- /dev/null
+++ b/dist/ionicons/iosColorFilterOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosColorFilterOutline = void 0;
+var iosColorFilterOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M366.195,212.122c1.185-6.528,1.806-13.252,1.806-20.122c0-61.856-50.145-112.001-112.001-112.001\r\n\tS143.999,130.144,143.999,192c0,6.87,0.621,13.594,1.806,20.122C98.616,225.302,63.999,268.606,63.999,320\r\n\tc0,61.856,50.145,112.001,112.001,112.001c31.342,0,59.671-12.879,80-33.627c20.329,20.748,48.658,33.627,80,33.627\r\n\tc61.856,0,112.001-50.145,112.001-112.001C448.001,268.606,413.384,225.303,366.195,212.122z M159.999,192\r\n\tc0-52.935,43.065-96.001,96.001-96.001s96.001,43.066,96.001,96.001c0,5.776-0.513,11.435-1.495,16.933\r\n\tc-4.749-0.614-9.59-0.934-14.506-0.934c-31.342,0-59.671,12.879-80,33.627c-20.329-20.748-48.658-33.627-80-33.627\r\n\tc-4.916,0-9.757,0.319-14.506,0.934C160.512,203.435,159.999,197.776,159.999,192z M272.001,320c0,19.58-5.896,37.806-16.001,53.006\r\n\tc-10.104-15.2-16.001-33.426-16.001-53.006c0-5.776,0.513-11.435,1.495-16.933c4.749,0.614,9.59,0.934,14.506,0.934\r\n\ts9.757-0.319,14.506-0.934C271.488,308.565,272.001,314.224,272.001,320z M256,288.001c-3.484,0-6.925-0.191-10.314-0.556\r\n\tc2.626-7.262,6.105-14.119,10.314-20.451c4.21,6.332,7.688,13.189,10.314,20.451C262.925,287.81,259.484,288.001,256,288.001z\r\n\t M229.791,284.364c-29.756-8.455-53.666-30.937-64.105-59.81c3.39-0.364,6.83-0.556,10.314-0.556\r\n\tc27.353,0,52.069,11.5,69.572,29.917C238.847,263.104,233.484,273.351,229.791,284.364z M266.428,253.917\r\n\tc17.503-18.418,42.219-29.918,69.572-29.918c3.484,0,6.925,0.191,10.314,0.556c-10.439,28.873-34.35,51.354-64.105,59.81\r\n\tC278.516,273.351,273.153,263.104,266.428,253.917z M176,416.001c-52.936,0-96.001-43.065-96.001-96.001\r\n\tc0-43.852,29.555-80.931,69.792-92.364c11.732,34.983,40.265,62.257,76.014,72.243c-1.185,6.527-1.806,13.252-1.806,20.121\r\n\tc0,24.717,8.013,47.559,21.573,66.084C228.069,404.501,203.353,416.001,176,416.001z M336,416.001\r\n\tc-27.354,0-52.069-11.5-69.572-29.918c13.561-18.524,21.573-41.366,21.573-66.083c0-6.869-0.621-13.594-1.806-20.121\r\n\tc35.749-9.986,64.281-37.26,76.014-72.243c40.237,11.434,69.792,48.513,69.792,92.364C432.001,372.936,388.936,416.001,336,416.001z\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.iosColorFilterOutline = iosColorFilterOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosColorWand.js b/dist/ionicons/iosColorWand.js
new file mode 100644
index 000000000..78d7fcc58
--- /dev/null
+++ b/dist/ionicons/iosColorWand.js
@@ -0,0 +1,135 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosColorWand = void 0;
+var iosColorWand = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "198.011,159.22 163.968,193.337 420.064,450 454,415.883 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "198.011,159.22 163.968,193.337 420.064,450 454,415.883 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "182",
+ "y": "62",
+ "width": "32",
+ "height": "64"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "182",
+ "y": "62",
+ "width": "32",
+ "height": "64"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "182",
+ "y": "266",
+ "width": "32",
+ "height": "64"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "182",
+ "y": "266",
+ "width": "32",
+ "height": "64"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "274",
+ "y": "178",
+ "width": "64",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "274",
+ "y": "178",
+ "width": "64",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "303.941,112.143 281.314,89.465 236.06,134.82 258.687,157.498 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "303.941,112.143 281.314,89.465 236.06,134.82 258.687,157.498 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "92.06,112.143 137.314,157.498 159.941,134.82 114.687,89.465 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "92.06,112.143 137.314,157.498 159.941,134.82 114.687,89.465 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "92.06,279.141 114.687,301.816 159.941,256.462 137.314,233.784 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "92.06,279.141 114.687,301.816 159.941,256.462 137.314,233.784 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "58",
+ "y": "178",
+ "width": "64",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "58",
+ "y": "178",
+ "width": "64",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosColorWand = iosColorWand;
\ No newline at end of file
diff --git a/dist/ionicons/iosColorWandOutline.js b/dist/ionicons/iosColorWandOutline.js
new file mode 100644
index 000000000..c2d5d1dcd
--- /dev/null
+++ b/dist/ionicons/iosColorWandOutline.js
@@ -0,0 +1,159 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosColorWandOutline = void 0;
+var iosColorWandOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192.011,149.661l-34.043,34.041l256.097,256.096L448,405.757L192.011,149.661z M212.596,215.702l11.415-11.414\r\n\t\tl201.468,201.469l-11.414,11.414L212.596,215.702z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192.011,149.661l-34.043,34.041l256.097,256.096L448,405.757L192.011,149.661z M212.596,215.702l11.415-11.414\r\n\t\tl201.468,201.469l-11.414,11.414L212.596,215.702z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "184",
+ "y": "64",
+ "width": "16",
+ "height": "40"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "184",
+ "y": "64",
+ "width": "16",
+ "height": "40"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "184",
+ "y": "268",
+ "width": "16",
+ "height": "40"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "184",
+ "y": "268",
+ "width": "16",
+ "height": "40"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "280",
+ "y": "176",
+ "width": "40",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "280",
+ "y": "176",
+ "width": "40",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "64",
+ "y": "176",
+ "width": "40",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "64",
+ "y": "176",
+ "width": "40",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "111.875",
+ "y": "94.077",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 285.3039 109.9734)",
+ "width": "16",
+ "height": "40"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "111.875",
+ "y": "94.077",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 285.3039 109.9734)",
+ "width": "16",
+ "height": "40"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "111.877",
+ "y": "238.327",
+ "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 21.9762 525.7571)",
+ "width": "15.998",
+ "height": "40"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "111.877",
+ "y": "238.327",
+ "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 21.9762 525.7571)",
+ "width": "15.998",
+ "height": "40"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "256.126",
+ "y": "94.077",
+ "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 370.226 381.506)",
+ "width": "16",
+ "height": "39.999"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "256.126",
+ "y": "94.077",
+ "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 370.226 381.506)",
+ "width": "16",
+ "height": "39.999"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosColorWandOutline = iosColorWandOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCompose.js b/dist/ionicons/iosCompose.js
new file mode 100644
index 000000000..e8dbd1c9f
--- /dev/null
+++ b/dist/ionicons/iosCompose.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCompose = void 0;
+var iosCompose = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,320 192,320 192,256 320,128 64,128 64,432 384,432 384,192 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,320 192,320 192,256 320,128 64,128 64,432 384,432 384,192 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCompose = iosCompose;
\ No newline at end of file
diff --git a/dist/ionicons/iosComposeOutline.js b/dist/ionicons/iosComposeOutline.js
new file mode 100644
index 000000000..b9b5059ec
--- /dev/null
+++ b/dist/ionicons/iosComposeOutline.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosComposeOutline = void 0;
+var iosComposeOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "368,416 80,416 80,144 304.117,144 320.117,128 64,128 64,432 384,432 384,191.883 368,207.883 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "368,416 80,416 80,144 304.117,144 320.117,128 64,128 64,432 384,432 384,191.883 368,207.883 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "237.623,284.084 227.917,274.377 399.24,103.054 387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \r\n\t\t408.947,112.73 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "237.623,284.084 227.917,274.377 399.24,103.054 387.927,91.74 208,271.651 208,304 240.216,304 420.261,124.016 \r\n\t\t408.947,112.73 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M444.213,80.312l-12.465-12.466C429.084,65.467,425.556,64,421.746,64c-3.812,0-7.304,1.468-9.929,3.85L399.666,80\r\n\t\tl0.08,0.08l11.293,11.293l21.02,21.02l12.15-12.15c2.383-2.625,3.791-6.117,3.791-9.929C448,86.504,446.592,82.975,444.213,80.312z\r\n\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosComposeOutline = iosComposeOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosContact.js b/dist/ionicons/iosContact.js
new file mode 100644
index 000000000..d27a4ca58
--- /dev/null
+++ b/dist/ionicons/iosContact.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosContact = void 0;
+var iosContact = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t M256,446.7c-58.6,0-111.1-26.6-146.1-68.3c17.8-7.7,62.2-23.7,90.3-31.9c2.2-0.7,2.6-0.8,2.6-10.7c0-10.6-1.2-18.1-3.8-23.6\r\n\tc-3.5-7.5-7.7-20.2-9.2-31.6c-4.2-4.9-9.9-14.5-13.6-32.9c-3.2-16.2-1.7-22.1,0.4-27.6c0.2-0.6,0.5-1.2,0.6-1.8\r\n\tc0.8-3.7-0.3-23.5-3.1-38.8c-1.9-10.5,0.5-32.8,15-51.3c9.1-11.7,26.6-26,58-28l17.5,0c31.9,2,49.4,16.3,58.5,28\r\n\tc14.5,18.5,16.9,40.8,14.9,51.3c-2.8,15.3-3.9,35-3.1,38.8c0.1,0.6,0.4,1.2,0.6,1.7c2.1,5.5,3.7,11.4,0.4,27.6\r\n\tc-3.7,18.4-9.4,28-13.6,32.9c-1.5,11.4-5.7,24-9.2,31.6c-3.3,6.9-6.6,15.1-6.6,23.3c0,9.9,0.4,10,2.7,10.7\r\n\tc26.7,7.9,72.7,23.8,93,32.1C367.2,420,314.7,446.7,256,446.7z"
+ },
+ "children": []
+ }]
+};
+exports.iosContact = iosContact;
\ No newline at end of file
diff --git a/dist/ionicons/iosContactOutline.js b/dist/ionicons/iosContactOutline.js
new file mode 100644
index 000000000..7618c1905
--- /dev/null
+++ b/dist/ionicons/iosContactOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosContactOutline = void 0;
+var iosContactOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,65.3\r\n\tc105.1,0,190.7,85.5,190.7,190.7c0,46.5-16.7,89.1-44.4,122.2c-20-8.2-65.9-24.1-92.9-32.1c-2.4-0.7-2.7-0.9-2.7-10.7\r\n\tc0-8.1,3.3-16.3,6.6-23.3c3.6-7.5,7.7-20.2,9.2-31.6c4.2-4.9,10-14.5,13.6-32.9c3.2-16.2,1.7-22.1-0.4-27.6\r\n\tc-0.2-0.6-0.5-1.2-0.6-1.7c-0.8-3.8,0.3-23.5,3.1-38.8c1.9-10.5-0.5-32.8-14.9-51.3c-9.1-11.7-26.6-26-58.5-28l-17.5,0\r\n\tc-31.4,2-48.8,16.3-58,28c-14.5,18.5-16.9,40.8-15,51.3c2.8,15.3,3.9,35,3.1,38.8c-0.2,0.7-0.4,1.2-0.6,1.8\r\n\tc-2.1,5.5-3.7,11.4-0.4,27.6c3.7,18.4,9.4,28,13.6,32.9c1.5,11.4,5.7,24,9.2,31.6c2.6,5.5,3.8,13,3.8,23.6c0,9.9-0.4,10-2.6,10.7\r\n\tc-28.1,8.3-72.6,24.3-90.4,32C82.1,345.3,65.3,302.6,65.3,256C65.3,150.9,150.9,65.3,256,65.3z"
+ },
+ "children": []
+ }]
+};
+exports.iosContactOutline = iosContactOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCopy.js b/dist/ionicons/iosCopy.js
new file mode 100644
index 000000000..ce7f45779
--- /dev/null
+++ b/dist/ionicons/iosCopy.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCopy = void 0;
+var iosCopy = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "144,416 144,400 144,112 112,112 112,448 352,448 352,416 160,416 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "144,416 144,400 144,112 112,112 112,448 352,448 352,416 160,416 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M325.3,64H160v48v288h192h48V139L325.3,64z M368,176h-80V96h16v64h64V176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M325.3,64H160v48v288h192h48V139L325.3,64z M368,176h-80V96h16v64h64V176z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosCopy = iosCopy;
\ No newline at end of file
diff --git a/dist/ionicons/iosCopyOutline.js b/dist/ionicons/iosCopyOutline.js
new file mode 100644
index 000000000..4604796db
--- /dev/null
+++ b/dist/ionicons/iosCopyOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCopyOutline = void 0;
+var iosCopyOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "304,96 288,96 288,176 368,176 368,160 304,160 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "304,96 288,96 288,176 368,176 368,160 304,160 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M325.3,64H160v48h-48v336h240v-48h48V139L325.3,64z M336,432H128V128h32v272h176V432z M384,384H176V80h142.7l65.3,65.6V384\r\n\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M325.3,64H160v48h-48v336h240v-48h48V139L325.3,64z M336,432H128V128h32v272h176V432z M384,384H176V80h142.7l65.3,65.6V384\r\n\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCopyOutline = iosCopyOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosCrop.js b/dist/ionicons/iosCrop.js
new file mode 100644
index 000000000..aa673b926
--- /dev/null
+++ b/dist/ionicons/iosCrop.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCrop = void 0;
+var iosCrop = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "128",
+ "y": "64",
+ "width": "16",
+ "height": "48"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "128",
+ "y": "64",
+ "width": "16",
+ "height": "48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "144,368 144,160 128,160 128,384 352,384 352,368 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "144,368 144,160 128,160 128,384 352,384 352,368 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "400",
+ "y": "368",
+ "width": "48",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "400",
+ "y": "368",
+ "width": "48",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "64,128 64,144 368,144 368,448 384,448 384,128 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64,128 64,144 368,144 368,448 384,448 384,128 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCrop = iosCrop;
\ No newline at end of file
diff --git a/dist/ionicons/iosCropStrong.js b/dist/ionicons/iosCropStrong.js
new file mode 100644
index 000000000..be28393a9
--- /dev/null
+++ b/dist/ionicons/iosCropStrong.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosCropStrong = void 0;
+var iosCropStrong = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "128",
+ "y": "64",
+ "width": "32",
+ "height": "48"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "128",
+ "y": "64",
+ "width": "32",
+ "height": "48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "160,352 160,176 128,176 128,384 336,384 336,352 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "160,352 160,176 128,176 128,384 336,384 336,352 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "400",
+ "y": "352",
+ "width": "48",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "400",
+ "y": "352",
+ "width": "48",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "64,128 64,160 352,160 352,448 384,448 384,128 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64,128 64,160 352,160 352,448 384,448 384,128 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosCropStrong = iosCropStrong;
\ No newline at end of file
diff --git a/dist/ionicons/iosDownload.js b/dist/ionicons/iosDownload.js
new file mode 100644
index 000000000..a4ffd9486
--- /dev/null
+++ b/dist/ionicons/iosDownload.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosDownload = void 0;
+var iosDownload = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "264,144 264,307 318.8,252.3 330.4,263.9 256,338.4 181.5,263.9 193.2,252.3 248,307 248,144 96,144 96,448 \r\n\t\t416,448 416,144 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "264,144 264,307 318.8,252.3 330.4,263.9 256,338.4 181.5,263.9 193.2,252.3 248,307 248,144 96,144 96,448 \r\n\t\t416,448 416,144 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "248",
+ "y": "64",
+ "width": "16",
+ "height": "80"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "248",
+ "y": "64",
+ "width": "16",
+ "height": "80"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosDownload = iosDownload;
\ No newline at end of file
diff --git a/dist/ionicons/iosDownloadOutline.js b/dist/ionicons/iosDownloadOutline.js
new file mode 100644
index 000000000..44e9a8ec2
--- /dev/null
+++ b/dist/ionicons/iosDownloadOutline.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosDownloadOutline = void 0;
+var iosDownloadOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "193.1,252.3 181.5,263.9 256,338.4 330.5,263.9 318.9,252.3 264.2,307 264.2,64 247.8,64 247.8,307 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "193.1,252.3 181.5,263.9 256,338.4 330.5,263.9 318.9,252.3 264.2,307 264.2,64 247.8,64 247.8,307 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosDownloadOutline = iosDownloadOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosDrag.js b/dist/ionicons/iosDrag.js
new file mode 100644
index 000000000..b233ef4c5
--- /dev/null
+++ b/dist/ionicons/iosDrag.js
@@ -0,0 +1,69 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosDrag = void 0;
+var iosDrag = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "304",
+ "width": "352",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "304",
+ "width": "352",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "248",
+ "width": "352",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "248",
+ "width": "352",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "192",
+ "width": "352",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "192",
+ "width": "352",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosDrag = iosDrag;
\ No newline at end of file
diff --git a/dist/ionicons/iosEmail.js b/dist/ionicons/iosEmail.js
new file mode 100644
index 000000000..bd9fe47ee
--- /dev/null
+++ b/dist/ionicons/iosEmail.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosEmail = void 0;
+var iosEmail = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,384 448,141.8 316.9,241.6 385,319 383,321 304.1,251.4 256,288 207.9,251.4 129,321 127,319 195,241.6 \r\n\t\t64,142 64,384 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,384 448,141.8 316.9,241.6 385,319 383,321 304.1,251.4 256,288 207.9,251.4 129,321 127,319 195,241.6 \r\n\t\t64,142 64,384 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "439.7,128 72,128 256,267.9 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "439.7,128 72,128 256,267.9 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosEmail = iosEmail;
\ No newline at end of file
diff --git a/dist/ionicons/iosEmailOutline.js b/dist/ionicons/iosEmailOutline.js
new file mode 100644
index 000000000..c502f5295
--- /dev/null
+++ b/dist/ionicons/iosEmailOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosEmailOutline = void 0;
+var iosEmailOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,128v256h384V128H64z M256,267.9L93.2,144h325.6L256,267.9z M80,368V154.1l115.1,87.6L127,319l2,2l78.9-69.6L256,288\r\n\tl48.1-36.6L383,321l2-2l-68.1-77.4L432,154.1V368H80z"
+ },
+ "children": []
+ }]
+};
+exports.iosEmailOutline = iosEmailOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosEye.js b/dist/ionicons/iosEye.js
new file mode 100644
index 000000000..41ddff241
--- /dev/null
+++ b/dist/ionicons/iosEye.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosEye = void 0;
+var iosEye = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,336\r\n\t\tc-44.1,0-80-35.9-80-80c0-44.1,35.9-80,80-80c44.1,0,80,35.9,80,80C336,300.1,300.1,336,256,336z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,336\r\n\t\tc-44.1,0-80-35.9-80-80c0-44.1,35.9-80,80-80c44.1,0,80,35.9,80,80C336,300.1,300.1,336,256,336z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M250.4,226.8c0-6.9,2-13.4,5.5-18.8c-26.5,0-47.9,21.6-47.9,48.2c0,26.6,21.5,48.1,47.9,48.1s48-21.5,48-48.1v0\r\n\t\tc-5.4,3.5-11.9,5.5-18.8,5.5C266,261.6,250.4,246,250.4,226.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M250.4,226.8c0-6.9,2-13.4,5.5-18.8c-26.5,0-47.9,21.6-47.9,48.2c0,26.6,21.5,48.1,47.9,48.1s48-21.5,48-48.1v0\r\n\t\tc-5.4,3.5-11.9,5.5-18.8,5.5C266,261.6,250.4,246,250.4,226.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosEye = iosEye;
\ No newline at end of file
diff --git a/dist/ionicons/iosEyeOutline.js b/dist/ionicons/iosEyeOutline.js
new file mode 100644
index 000000000..8a86a43f9
--- /dev/null
+++ b/dist/ionicons/iosEyeOutline.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosEyeOutline = void 0;
+var iosEyeOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,160\r\n\t\t\tc33.1,0,64.9,9.5,97.2,30.6c23.9,15.6,47.4,36.7,73.7,66.1C388.6,295.4,331.1,352,256,352c-34.2,0-64.2-8.4-94.2-28.2\r\n\t\t\tc-27.5-18.1-52.3-43.3-76.2-67.8C144.7,196.3,194,160,256,160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M447.1,256.2C401.8,204,339.2,144,256,144c-33.6,0-64.4,9.5-96.9,29.8C131.7,191,103.6,215.2,65,255l-1,1l6.7,6.9\r\n\t\t\tC125.8,319.3,173.4,368,256,368c36.5,0,71.9-11.9,108.2-36.4c30.9-20.9,57.2-47.4,78.3-68.8l5.5-5.5L447.1,256.2z M256,160\r\n\t\t\tc33.1,0,64.9,9.5,97.2,30.6c23.9,15.6,47.4,36.7,73.7,66.1C388.6,295.4,331.1,352,256,352c-34.2,0-64.2-8.4-94.2-28.2\r\n\t\t\tc-27.5-18.1-52.3-43.3-76.2-67.8C144.7,196.3,194,160,256,160z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,336c44.1,0,80-35.9,80-80c0-44.1-35.9-80-80-80c-44.1,0-80,35.9-80,80C176,300.1,211.9,336,256,336z M256,192.3\r\n\t\t\tc35.2,0,64,28.6,64,63.7c0,35.1-28.8,63.7-64,63.7c-35.2,0-63.9-28.6-63.9-63.7C192.1,220.9,220.8,192.3,256,192.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,336c44.1,0,80-35.9,80-80c0-44.1-35.9-80-80-80c-44.1,0-80,35.9-80,80C176,300.1,211.9,336,256,336z M256,192.3\r\n\t\t\tc35.2,0,64,28.6,64,63.7c0,35.1-28.8,63.7-64,63.7c-35.2,0-63.9-28.6-63.9-63.7C192.1,220.9,220.8,192.3,256,192.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M288,256L288,256c0,17.5-14.4,32-31.8,32S224,272.8,224,255.3s15.8-31.3,32-31.3l0-16c-26.5,0-47.9,21.6-47.9,48.2\r\n\t\tc0,26.6,21.5,48.1,47.9,48.1s48-21.6,48-48.1V256H288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,256L288,256c0,17.5-14.4,32-31.8,32S224,272.8,224,255.3s15.8-31.3,32-31.3l0-16c-26.5,0-47.9,21.6-47.9,48.2\r\n\t\tc0,26.6,21.5,48.1,47.9,48.1s48-21.6,48-48.1V256H288z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosEyeOutline = iosEyeOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosFastforward.js b/dist/ionicons/iosFastforward.js
new file mode 100644
index 000000000..3de5f2fa1
--- /dev/null
+++ b/dist/ionicons/iosFastforward.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFastforward = void 0;
+var iosFastforward = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,128v123.2L32,128v256l224-123.2V384l224-128L256,128L256,128z"
+ },
+ "children": []
+ }]
+};
+exports.iosFastforward = iosFastforward;
\ No newline at end of file
diff --git a/dist/ionicons/iosFastforwardOutline.js b/dist/ionicons/iosFastforwardOutline.js
new file mode 100644
index 000000000..0d027d723
--- /dev/null
+++ b/dist/ionicons/iosFastforwardOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFastforwardOutline = void 0;
+var iosFastforwardOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48,155l183.5,101L48,356.9V155 M272,155.8L448,256L272,356.4v-95.6v-27.1V156 M256,128v123.2L32,128v256l224-123.2V384\r\n\tl224-128L256,128L256,128z"
+ },
+ "children": []
+ }]
+};
+exports.iosFastforwardOutline = iosFastforwardOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosFiling.js b/dist/ionicons/iosFiling.js
new file mode 100644
index 000000000..6db12578f
--- /dev/null
+++ b/dist/ionicons/iosFiling.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFiling = void 0;
+var iosFiling = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,288c-29.8,0-54.9-20.4-62-48H80v144h176h176V240H318C310.9,267.6,285.8,288,256,288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,288c-29.8,0-54.9-20.4-62-48H80v144h176h176V240H318C310.9,267.6,285.8,288,256,288z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M144,224h16h9h39c0,26.5,21.5,48,48,48s48-21.5,48-48h40h8h16h8h56l-63.5-96H368v80h-16v-80H160v80h-16v-80h-0.5L80,224h57\r\n\t\tH144z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,224h16h9h39c0,26.5,21.5,48,48,48s48-21.5,48-48h40h8h16h8h56l-63.5-96H368v80h-16v-80H160v80h-16v-80h-0.5L80,224h57\r\n\t\tH144z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosFiling = iosFiling;
\ No newline at end of file
diff --git a/dist/ionicons/iosFilingOutline.js b/dist/ionicons/iosFilingOutline.js
new file mode 100644
index 000000000..1632e1b4e
--- /dev/null
+++ b/dist/ionicons/iosFilingOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFilingOutline = void 0;
+var iosFilingOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368.5,128h-225L80,224v160h176h176V224L368.5,128z M413.4,224H368v-68L413.4,224z M160,144h192v80h-48\r\n\tc0,26.5-21.5,48-48,48s-48-21.5-48-48h-48V144z M144,156v68H98.6L144,156z M416,368H256H96V240h98c7.1,27.6,32.2,48,62,48\r\n\ts54.9-20.4,62-48h98V368z"
+ },
+ "children": []
+ }]
+};
+exports.iosFilingOutline = iosFilingOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosFilm.js b/dist/ionicons/iosFilm.js
new file mode 100644
index 000000000..ac61ad96a
--- /dev/null
+++ b/dist/ionicons/iosFilm.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFilm = void 0;
+var iosFilm = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t\t M128,152H72v-48h56V152z M368,264H144v-16h224V264z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z M440,280h-56v-48h56V280z\r\n\t\t M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t\t M128,152H72v-48h56V152z M368,264H144v-16h224V264z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z M440,280h-56v-48h56V280z\r\n\t\t M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosFilm = iosFilm;
\ No newline at end of file
diff --git a/dist/ionicons/iosFilmOutline.js b/dist/ionicons/iosFilmOutline.js
new file mode 100644
index 000000000..aa0282252
--- /dev/null
+++ b/dist/ionicons/iosFilmOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFilmOutline = void 0;
+var iosFilmOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M56,88v336h400V88H56z M128,408H72v-48h56V408z M128,344H72v-48h56V344z M128,280H72v-48h56V280z M128,216H72v-48h56V216z\r\n\t M128,152H72v-48h56V152z M368,408H144V264h224V408z M368,248H144V104h224V248z M440,408h-56v-48h56V408z M440,344h-56v-48h56V344z\r\n\t M440,280h-56v-48h56V280z M440,216h-56v-48h56V216z M440,152h-56v-48h56V152z"
+ },
+ "children": []
+ }]
+};
+exports.iosFilmOutline = iosFilmOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosFlag.js b/dist/ionicons/iosFlag.js
new file mode 100644
index 000000000..5f4de9544
--- /dev/null
+++ b/dist/ionicons/iosFlag.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFlag = void 0;
+var iosFlag = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosFlag = iosFlag;
\ No newline at end of file
diff --git a/dist/ionicons/iosFlagOutline.js b/dist/ionicons/iosFlagOutline.js
new file mode 100644
index 000000000..2e9911c8e
--- /dev/null
+++ b/dist/ionicons/iosFlagOutline.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFlagOutline = void 0;
+var iosFlagOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z M368,269c-11,1.4-23.9,3.5-38.7,3.5\r\n\t\tc-23.1,0-45-4.7-66.2-9.2c-21.5-4.6-43.6-13.3-67.1-13.3c-25.7,0-41.9,3-51.9,6V118.7c6-2.5,21.9-6.8,51.9-6.8\r\n\t\tc21.8,0,42.2,4.3,63.9,9c22,4.7,43.8,10.6,68.5,10.6c14.7,0,28.7-2,39.7-3.3L368,269L368,269z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,112c-11,1.4-24.9,3.5-39.7,3.5c-23.1,0-44-5.7-65.2-10.2c-21.5-4.6-43.7-9.3-67.2-9.3c-46.9,0-62.8,10.1-64.4,11.2\r\n\t\tl-3.4,2.4v2.6v161.7V416h16V272.7c6-2.5,21.8-6.9,51.9-6.9c21.8,0,42.2,8.3,63.9,13c22,4.7,44.8,9.6,69.5,9.6\r\n\t\tc14.7,0,27.7-2,38.7-3.3c6-0.7,11.3-1.4,16-2.2V126v-16.5C379.4,110.4,374,111.2,368,112z M368,269c-11,1.4-23.9,3.5-38.7,3.5\r\n\t\tc-23.1,0-45-4.7-66.2-9.2c-21.5-4.6-43.6-13.3-67.1-13.3c-25.7,0-41.9,3-51.9,6V118.7c6-2.5,21.9-6.8,51.9-6.8\r\n\t\tc21.8,0,42.2,4.3,63.9,9c22,4.7,43.8,10.6,68.5,10.6c14.7,0,28.7-2,39.7-3.3L368,269L368,269z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosFlagOutline = iosFlagOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosFlame.js b/dist/ionicons/iosFlame.js
new file mode 100644
index 000000000..382a01e7e
--- /dev/null
+++ b/dist/ionicons/iosFlame.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFlame = void 0;
+var iosFlame = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\t\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\t\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\t\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\t\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosFlame = iosFlame;
\ No newline at end of file
diff --git a/dist/ionicons/iosFlameOutline.js b/dist/ionicons/iosFlameOutline.js
new file mode 100644
index 000000000..ba322fa81
--- /dev/null
+++ b/dist/ionicons/iosFlameOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFlameOutline = void 0;
+var iosFlameOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M223.899,32c25.691,145-96.732,142-95.895,288c0.686,119.51,104.975,160,128.143,160c23.166,0,113.88-26,126.931-160\r\n\tC393.711,210.816,310.572,96,223.899,32z M256.147,472c0,0-40.701-35.816-40.701-80c0-44.183,40.555-80,40.555-80\r\n\ts40.332,35.817,40.332,80C296.332,436.184,256.147,472,256.147,472z M367.153,318.449c-2.823,28.988-9.704,54.523-20.45,75.894\r\n\tc-8.749,17.397-20.084,32.114-33.692,43.743c-6.522,5.575-13.255,10.115-19.771,13.749c10.039-15.938,19.093-36.72,19.093-59.835\r\n\tc0-50.788-43.842-90.307-45.708-91.963l-10.594-9.41l-10.621,9.381c-1.877,1.657-45.963,41.178-45.963,91.992\r\n\tc0,21.842,8.168,41.594,17.636,57.152c-7.381-4.326-15.215-9.748-22.986-16.451c-14.688-12.67-26.365-27.608-34.708-44.402\r\n\tc-10.063-20.255-15.239-43.265-15.383-68.391c-0.367-63.986,24.09-95.746,49.983-129.369c24.568-31.903,49.829-64.7,49.458-122.113\r\n\tc32.513,28.827,61.257,63.03,82.822,98.877C357.576,219.35,371.715,271.615,367.153,318.449z"
+ },
+ "children": []
+ }]
+};
+exports.iosFlameOutline = iosFlameOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosFlask.js b/dist/ionicons/iosFlask.js
new file mode 100644
index 000000000..9b83fa131
--- /dev/null
+++ b/dist/ionicons/iosFlask.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFlask = void 0;
+var iosFlask = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M391.016,382.994l-0.15-0.124L323.7,272H188.554l-66.549,110.855l-0.166,0.042l-0.177,0.302\r\n\t\tc-5.461,8.334-8.319,18.773-8.319,24.717c0,12.945,4.481,16.848,5.954,18.088c4.46,3.76,12.667,5.996,23.731,5.996H368.96\r\n\t\tc10.278,0,18.232-2.521,23.007-6.85c4.205-3.814,6.454-9.956,6.683-17.795c0.172-5.904-2.093-15.968-7.476-24.18L391.016,382.994z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M391.016,382.994l-0.15-0.124L323.7,272H188.554l-66.549,110.855l-0.166,0.042l-0.177,0.302\r\n\t\tc-5.461,8.334-8.319,18.773-8.319,24.717c0,12.945,4.481,16.848,5.954,18.088c4.46,3.76,12.667,5.996,23.731,5.996H368.96\r\n\t\tc10.278,0,18.232-2.521,23.007-6.85c4.205-3.814,6.454-9.956,6.683-17.795c0.172-5.904-2.093-15.968-7.476-24.18L391.016,382.994z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M436.912,370.441L320,175V48h16V32H176v16h16v127L76.125,370.441C67.715,386.268,63.616,401.814,64.028,416\r\n\t\tc1.061,36.511,28.701,64,65.065,64h255.888c36.292,0,62.132-27.598,62.993-64C448.312,401.756,445.367,386.349,436.912,370.441z\r\n\t\t M208,64h48v16h-48V64z M208,112h32v16h-32V112z M208,160h48v16h-48V160z M191.261,208H240v16h-58.179L191.261,208z\r\n\t\t M414.64,408.041C413.934,432.289,398.763,448,368.96,448H143.027c-29.862,0-45.682-12.25-45.682-39.834\r\n\t\tc0-9.455,4.029-23.008,10.937-33.55L179.49,256h153.228l71.836,118.717C411.497,385.312,414.916,398.553,414.64,408.041z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M436.912,370.441L320,175V48h16V32H176v16h16v127L76.125,370.441C67.715,386.268,63.616,401.814,64.028,416\r\n\t\tc1.061,36.511,28.701,64,65.065,64h255.888c36.292,0,62.132-27.598,62.993-64C448.312,401.756,445.367,386.349,436.912,370.441z\r\n\t\t M208,64h48v16h-48V64z M208,112h32v16h-32V112z M208,160h48v16h-48V160z M191.261,208H240v16h-58.179L191.261,208z\r\n\t\t M414.64,408.041C413.934,432.289,398.763,448,368.96,448H143.027c-29.862,0-45.682-12.25-45.682-39.834\r\n\t\tc0-9.455,4.029-23.008,10.937-33.55L179.49,256h153.228l71.836,118.717C411.497,385.312,414.916,398.553,414.64,408.041z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosFlask = iosFlask;
\ No newline at end of file
diff --git a/dist/ionicons/iosFlaskOutline.js b/dist/ionicons/iosFlaskOutline.js
new file mode 100644
index 000000000..2006bf4b7
--- /dev/null
+++ b/dist/ionicons/iosFlaskOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFlaskOutline = void 0;
+var iosFlaskOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M436.912,370.441L320,175V48h16V32h-16.009H304v16v131.418l2.514,3.791l116.575,194.834\r\n\t\tc6.75,12.818,9.314,25.95,9.001,37.957c-0.243,9.339-1.958,17.938-6.545,25.569C417.076,455.666,402.33,464,384.981,464H129.093\r\n\t\tc-17.504,0-32.461-8.435-41.035-22.705c-11.897-19.801-10.889-38.145,2.275-63.139L181.821,224H240v-16h-48.683l14.687-24.756\r\n\t\tL208,179.4V176h48v-16h-48v-32h32v-16h-32V80h48V64h-48V48V32h-15.989H176v16h16v127L76.126,370.441\r\n\t\tC67.714,386.268,63.615,401.814,64.027,416c1.061,36.511,28.702,64,65.065,64h255.889c36.291,0,62.131-27.598,62.992-64\r\n\t\tC448.311,401.756,445.367,386.349,436.912,370.441z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M436.912,370.441L320,175V48h16V32h-16.009H304v16v131.418l2.514,3.791l116.575,194.834\r\n\t\tc6.75,12.818,9.314,25.95,9.001,37.957c-0.243,9.339-1.958,17.938-6.545,25.569C417.076,455.666,402.33,464,384.981,464H129.093\r\n\t\tc-17.504,0-32.461-8.435-41.035-22.705c-11.897-19.801-10.889-38.145,2.275-63.139L181.821,224H240v-16h-48.683l14.687-24.756\r\n\t\tL208,179.4V176h48v-16h-48v-32h32v-16h-32V80h48V64h-48V48V32h-15.989H176v16h16v127L76.126,370.441\r\n\t\tC67.714,386.268,63.615,401.814,64.027,416c1.061,36.511,28.702,64,65.065,64h255.889c36.291,0,62.131-27.598,62.992-64\r\n\t\tC448.311,401.756,445.367,386.349,436.912,370.441z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M108.292,374.616c-6.907,10.542-10.936,24.095-10.936,33.55c0,27.584,15.82,39.834,45.682,39.834h225.932\r\n\t\tc29.804,0,44.975-15.711,45.681-39.959c0.277-9.488-3.143-22.729-10.086-33.324L332.729,256H179.5L108.292,374.616z M323.705,272\r\n\t\tl67.168,110.87l0.151,0.124l0.159,0.182c5.382,8.212,7.647,18.275,7.476,24.18c-0.229,7.839-2.477,13.98-6.683,17.795\r\n\t\tc-4.774,4.328-12.729,6.85-23.008,6.85H143.037c-11.064,0-19.27-2.236-23.73-5.996c-1.472-1.24-5.954-5.143-5.954-18.088\r\n\t\tc0-5.943,2.857-16.383,8.319-24.717l0.177-0.302l0.166-0.042L188.564,272H323.705z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M108.292,374.616c-6.907,10.542-10.936,24.095-10.936,33.55c0,27.584,15.82,39.834,45.682,39.834h225.932\r\n\t\tc29.804,0,44.975-15.711,45.681-39.959c0.277-9.488-3.143-22.729-10.086-33.324L332.729,256H179.5L108.292,374.616z M323.705,272\r\n\t\tl67.168,110.87l0.151,0.124l0.159,0.182c5.382,8.212,7.647,18.275,7.476,24.18c-0.229,7.839-2.477,13.98-6.683,17.795\r\n\t\tc-4.774,4.328-12.729,6.85-23.008,6.85H143.037c-11.064,0-19.27-2.236-23.73-5.996c-1.472-1.24-5.954-5.143-5.954-18.088\r\n\t\tc0-5.943,2.857-16.383,8.319-24.717l0.177-0.302l0.166-0.042L188.564,272H323.705z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosFlaskOutline = iosFlaskOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosFlower.js b/dist/ionicons/iosFlower.js
new file mode 100644
index 000000000..b87fa9cb0
--- /dev/null
+++ b/dist/ionicons/iosFlower.js
@@ -0,0 +1,123 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFlower = void 0;
+var iosFlower = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M395.057,228.247c-28.651,0-64.502,7.35-92.66,14.518c-0.98-3.443-2.321-6.734-4.001-9.817\r\n\t\tc24.97-14.84,55.487-34.98,75.733-55.224c39.547-39.547,52.023-68.458,40.44-80.042c-11.584-11.583-40.495,0.893-80.042,40.44\r\n\t\tc-20.225,20.225-40.343,50.698-55.178,75.654c-3.082-1.708-6.373-3.083-9.822-4.089c7.156-28.133,14.475-63.897,14.475-92.492\r\n\t\tC284.002,61.266,272.382,32,256,32s-28.002,29.266-28.002,85.194c0,28.595,7.319,64.359,14.475,92.492\r\n\t\tc-3.449,1.006-6.74,2.381-9.822,4.089c-14.835-24.956-34.953-55.43-55.176-75.653c-39.548-39.547-68.458-52.024-80.042-40.44\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.246,20.244,50.762,40.384,75.732,55.224c-1.68,3.083-3.021,6.374-4.001,9.817\r\n\t\tc-28.158-7.168-64.008-14.518-92.659-14.518C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.697,0,64.613-7.371,92.792-14.551c1.01,3.414,2.384,6.671,4.083,9.724c-25.009,14.852-55.645,35.049-75.946,55.351\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c11.584,11.584,40.495-0.895,80.042-40.441c20.323-20.323,40.542-51.001,55.398-76.024\r\n\t\tc3.053,1.671,6.31,3.01,9.718,3.995c-7.192,28.203-14.592,64.207-14.592,92.959c0,55.929,11.62,84.693,28.002,84.693\r\n\t\ts28.002-28.766,28.002-84.693c0-28.752-7.4-64.756-14.592-92.959c3.408-0.985,6.665-2.324,9.718-3.995\r\n\t\tc14.855,25.023,35.073,55.701,55.399,76.025c39.547,39.547,68.457,52.024,80.041,40.44s-0.894-40.495-40.439-80.043\r\n\t\tc-20.304-20.302-50.938-40.499-75.947-55.351c1.699-3.053,3.073-6.31,4.083-9.724c28.18,7.18,64.096,14.551,92.792,14.551\r\n\t\tc55.929,0,84.943-11.62,84.943-28.002S450.984,228.247,395.057,228.247z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M395.057,228.247c-28.651,0-64.502,7.35-92.66,14.518c-0.98-3.443-2.321-6.734-4.001-9.817\r\n\t\tc24.97-14.84,55.487-34.98,75.733-55.224c39.547-39.547,52.023-68.458,40.44-80.042c-11.584-11.583-40.495,0.893-80.042,40.44\r\n\t\tc-20.225,20.225-40.343,50.698-55.178,75.654c-3.082-1.708-6.373-3.083-9.822-4.089c7.156-28.133,14.475-63.897,14.475-92.492\r\n\t\tC284.002,61.266,272.382,32,256,32s-28.002,29.266-28.002,85.194c0,28.595,7.319,64.359,14.475,92.492\r\n\t\tc-3.449,1.006-6.74,2.381-9.822,4.089c-14.835-24.956-34.953-55.43-55.176-75.653c-39.548-39.547-68.458-52.024-80.042-40.44\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.246,20.244,50.762,40.384,75.732,55.224c-1.68,3.083-3.021,6.374-4.001,9.817\r\n\t\tc-28.158-7.168-64.008-14.518-92.659-14.518C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.697,0,64.613-7.371,92.792-14.551c1.01,3.414,2.384,6.671,4.083,9.724c-25.009,14.852-55.645,35.049-75.946,55.351\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c11.584,11.584,40.495-0.895,80.042-40.441c20.323-20.323,40.542-51.001,55.398-76.024\r\n\t\tc3.053,1.671,6.31,3.01,9.718,3.995c-7.192,28.203-14.592,64.207-14.592,92.959c0,55.929,11.62,84.693,28.002,84.693\r\n\t\ts28.002-28.766,28.002-84.693c0-28.752-7.4-64.756-14.592-92.959c3.408-0.985,6.665-2.324,9.718-3.995\r\n\t\tc14.855,25.023,35.073,55.701,55.399,76.025c39.547,39.547,68.457,52.024,80.041,40.44s-0.894-40.495-40.439-80.043\r\n\t\tc-20.304-20.302-50.938-40.499-75.947-55.351c1.699-3.053,3.073-6.31,4.083-9.724c28.18,7.18,64.096,14.551,92.792,14.551\r\n\t\tc55.929,0,84.943-11.62,84.943-28.002S450.984,228.247,395.057,228.247z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M296.467,353.945c0,0,7.031,41.059,1.854,75.946c11.678,21.779,26.139,35.253,36.643,35.253\r\n\t\tc1.749,0,3.432-0.324,5.042-0.976c11.874-4.797,14.385-24.984,4.855-58.491C320.331,388.004,296.467,353.945,296.467,353.945z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M296.467,353.945c0,0,7.031,41.059,1.854,75.946c11.678,21.779,26.139,35.253,36.643,35.253\r\n\t\tc1.749,0,3.432-0.324,5.042-0.976c11.874-4.797,14.385-24.984,4.855-58.491C320.331,388.004,296.467,353.945,296.467,353.945z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M215.497,158.32c0,0-7.747-40.82-1.818-75.712c-13.292-23.51-26.139-35.255-36.644-35.255\r\n\t\tc-1.749,0-3.431,0.325-5.042,0.976c-11.868,4.795-14.497,23.211-4.87,58.441C188.375,122.75,215.497,158.32,215.497,158.32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M215.497,158.32c0,0-7.747-40.82-1.818-75.712c-13.292-23.51-26.139-35.255-36.644-35.255\r\n\t\tc-1.749,0-3.431,0.325-5.042,0.976c-11.868,4.795-14.497,23.211-4.87,58.441C188.375,122.75,215.497,158.32,215.497,158.32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M158.306,296.717c0,0-41.308,6.119-75.949,1.852c-27.422,15.505-38.836,30.402-34.277,41.687\r\n\t\tc2.806,6.944,10.913,10.675,23.842,10.675c9.182,0,22.434-1.559,34.672-5.826C123.999,321.17,158.306,296.717,158.306,296.717z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M158.306,296.717c0,0-41.308,6.119-75.949,1.852c-27.422,15.505-38.836,30.402-34.277,41.687\r\n\t\tc2.806,6.944,10.913,10.675,23.842,10.675c9.182,0,22.434-1.559,34.672-5.826C123.999,321.17,158.306,296.717,158.306,296.717z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M353.723,215.779c0,0,40.778-7.28,75.918-1.849c27.424-15.504,38.838-30.402,34.279-41.685\r\n\t\tc-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822C387.334,191.166,353.723,215.779,353.723,215.779z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M353.723,215.779c0,0,40.778-7.28,75.918-1.849c27.424-15.504,38.838-30.402,34.279-41.685\r\n\t\tc-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822C387.334,191.166,353.723,215.779,353.723,215.779z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M348.77,103.87c8.397-31.87,6.096-49.271-5.147-54.044c-1.674-0.71-3.438-1.066-5.274-1.066\r\n\t\tc-11.105,0-26.207,14.287-39.527,39.013c4.514,22.894-2.393,71.053-2.393,71.053S319.667,124.5,348.77,103.87z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M348.77,103.87c8.397-31.87,6.096-49.271-5.147-54.044c-1.674-0.71-3.438-1.066-5.274-1.066\r\n\t\tc-11.105,0-26.207,14.287-39.527,39.013c4.514,22.894-2.393,71.053-2.393,71.053S319.667,124.5,348.77,103.87z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M87.524,213.432c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367\r\n\t\tC93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261C44.572,180.419,59.546,198.612,87.524,213.432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M87.524,213.432c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367\r\n\t\tC93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261C44.572,180.419,59.546,198.612,87.524,213.432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosFlower = iosFlower;
\ No newline at end of file
diff --git a/dist/ionicons/iosFlowerOutline.js b/dist/ionicons/iosFlowerOutline.js
new file mode 100644
index 000000000..9da45d145
--- /dev/null
+++ b/dist/ionicons/iosFlowerOutline.js
@@ -0,0 +1,123 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFlowerOutline = void 0;
+var iosFlowerOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M395.057,284.252c55.929,0,84.943-11.62,84.943-28.002s-29.016-28.003-84.943-28.003c-28.732,0-64.708,7.391-92.902,14.578\r\n\t\tc-0.975-3.419-2.305-6.688-3.973-9.75c25.009-14.852,55.645-35.05,75.947-55.353c39.547-39.547,52.023-68.458,40.44-80.042\r\n\t\tc-2.747-2.748-6.472-4.142-11.079-4.142c-14.818,0-38.796,14.415-68.963,44.582c-20.282,20.282-40.459,50.873-55.307,75.869\r\n\t\tc-3.062-1.696-6.33-3.062-9.755-4.062c7.175-28.17,14.535-64.059,14.535-92.735C284.002,61.266,272.382,32,256,32\r\n\t\ts-28.002,29.266-28.002,85.194c0,28.676,7.362,64.565,14.536,92.735c-3.425,1-6.693,2.365-9.755,4.062\r\n\t\tc-14.847-24.996-35.023-55.587-55.305-75.869C147.309,107.957,123.33,93.54,108.51,93.54c-4.609,0-8.331,1.394-11.079,4.142\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.303,20.303,50.938,40.501,75.947,55.353c-1.668,3.062-2.999,6.331-3.974,9.75\r\n\t\tc-28.194-7.188-64.169-14.578-92.901-14.578C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.777,0,64.82-7.413,93.034-14.611c1.003,3.392,2.368,6.625,4.055,9.656c-25.048,14.863-55.801,35.119-76.161,55.479\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c2.748,2.748,6.471,4.142,11.078,4.142c14.819,0,38.796-14.415,68.963-44.583\r\n\t\tc20.382-20.381,40.659-51.177,55.526-76.238c3.032,1.657,6.267,2.988,9.651,3.967c-7.211,28.238-14.654,64.367-14.654,93.201\r\n\t\tC227.998,451.234,239.618,480,256,480s28.002-28.766,28.002-84.693c0-28.834-7.441-64.963-14.652-93.201\r\n\t\tc3.385-0.979,6.618-2.31,9.65-3.967c14.867,25.062,35.145,55.857,55.527,76.239c30.164,30.165,54.144,44.582,68.963,44.582\r\n\t\tc4.608,0,8.33-1.394,11.078-4.142c11.584-11.584-0.894-40.495-40.439-80.043c-20.361-20.359-51.114-40.615-76.162-55.479\r\n\t\tc1.688-3.031,3.053-6.266,4.055-9.656C330.237,276.839,366.28,284.252,395.057,284.252z M319.992,254.941\r\n\t\tc30.144-7.014,55.893-10.694,75.064-10.694c21.329,0,39.453,1.806,52.41,5.222c9.705,2.559,14.005,5.317,15.736,6.781\r\n\t\tc-1.731,1.463-6.031,4.221-15.736,6.779c-12.958,3.416-31.081,5.223-52.41,5.223c-19.176,0-44.927-3.68-75.075-10.695\r\n\t\tL319.992,254.941z M345.841,149.436c35.382-35.383,52.682-39.412,56.818-39.846c-0.211,2.305-1.343,7.326-6.404,15.991\r\n\t\tc-6.786,11.62-18.35,25.738-33.439,40.828c-13.533,13.534-34.3,29.111-60.513,45.438c-0.619-0.648-1.25-1.283-1.895-1.904\r\n\t\tC316.732,183.729,332.309,162.968,345.841,149.436z M209.698,211.846c-26.213-16.326-46.979-31.904-60.512-45.437\r\n\t\tc-15.09-15.091-26.653-29.208-33.439-40.828c-5.061-8.665-6.194-13.687-6.404-15.992c4.138,0.435,21.436,4.463,56.818,39.845\r\n\t\tc13.533,13.533,29.108,34.295,45.433,60.507C210.948,210.563,210.316,211.198,209.698,211.846z M116.944,268.252\r\n\t\tc-21.339,0-39.483-1.845-52.471-5.335c-9.689-2.604-13.961-5.394-15.675-6.87c1.75-1.451,6.077-4.177,15.796-6.689\r\n\t\tc12.927-3.343,31.029-5.11,52.351-5.11c19.172,0,44.922,3.68,75.064,10.694l0.01,2.615\r\n\t\tC161.87,264.572,136.12,268.252,116.944,268.252z M166.16,363.064c-35.383,35.382-52.68,39.41-56.818,39.846\r\n\t\tc0.21-2.305,1.343-7.326,6.404-15.992c6.786-11.619,18.349-25.736,33.439-40.828c13.587-13.586,34.457-29.229,60.815-45.625\r\n\t\tc0.584,0.604,1.181,1.197,1.789,1.779C195.394,328.604,179.749,349.475,166.16,363.064z M302,300.465\r\n\t\tc26.356,16.395,47.227,32.037,60.814,45.625c15.091,15.092,26.653,29.209,33.439,40.828c5.062,8.666,6.193,13.688,6.403,15.992\r\n\t\tc-4.138-0.436-21.436-4.464-56.817-39.846c-13.589-13.59-29.234-34.463-45.63-60.82C300.818,301.663,301.415,301.068,302,300.465z\r\n\t\t M249.222,64.678c2.548-9.703,5.297-14.055,6.778-15.834c1.48,1.78,4.23,6.131,6.777,15.834\r\n\t\tc3.418,13.015,5.225,31.174,5.225,52.516c0,19.117-3.66,44.781-10.637,74.821h-2.73c-6.977-30.04-10.638-55.704-10.638-74.821\r\n\t\tC243.998,95.853,245.804,77.693,249.222,64.678z M262.782,447.612c-2.569,9.707-5.339,13.954-6.782,15.636\r\n\t\tc-1.444-1.682-4.212-5.929-6.782-15.636c-3.415-12.901-5.22-30.988-5.22-52.308c0-19.228,3.701-45.066,10.752-75.316h2.5\r\n\t\tc7.052,30.25,10.752,56.089,10.752,75.316C268.002,416.624,266.197,434.711,262.782,447.612z M256,288c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S273.673,288,256,288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M395.057,284.252c55.929,0,84.943-11.62,84.943-28.002s-29.016-28.003-84.943-28.003c-28.732,0-64.708,7.391-92.902,14.578\r\n\t\tc-0.975-3.419-2.305-6.688-3.973-9.75c25.009-14.852,55.645-35.05,75.947-55.353c39.547-39.547,52.023-68.458,40.44-80.042\r\n\t\tc-2.747-2.748-6.472-4.142-11.079-4.142c-14.818,0-38.796,14.415-68.963,44.582c-20.282,20.282-40.459,50.873-55.307,75.869\r\n\t\tc-3.062-1.696-6.33-3.062-9.755-4.062c7.175-28.17,14.535-64.059,14.535-92.735C284.002,61.266,272.382,32,256,32\r\n\t\ts-28.002,29.266-28.002,85.194c0,28.676,7.362,64.565,14.536,92.735c-3.425,1-6.693,2.365-9.755,4.062\r\n\t\tc-14.847-24.996-35.023-55.587-55.305-75.869C147.309,107.957,123.33,93.54,108.51,93.54c-4.609,0-8.331,1.394-11.079,4.142\r\n\t\tc-11.584,11.583,0.894,40.494,40.44,80.041c20.303,20.303,50.938,40.501,75.947,55.353c-1.668,3.062-2.999,6.331-3.974,9.75\r\n\t\tc-28.194-7.188-64.169-14.578-92.901-14.578C61.016,228.247,32,239.618,32,256s29.016,28.252,84.944,28.252\r\n\t\tc28.777,0,64.82-7.413,93.034-14.611c1.003,3.392,2.368,6.625,4.055,9.656c-25.048,14.863-55.801,35.119-76.161,55.479\r\n\t\tc-39.547,39.548-52.023,68.459-40.44,80.043c2.748,2.748,6.471,4.142,11.078,4.142c14.819,0,38.796-14.415,68.963-44.583\r\n\t\tc20.382-20.381,40.659-51.177,55.526-76.238c3.032,1.657,6.267,2.988,9.651,3.967c-7.211,28.238-14.654,64.367-14.654,93.201\r\n\t\tC227.998,451.234,239.618,480,256,480s28.002-28.766,28.002-84.693c0-28.834-7.441-64.963-14.652-93.201\r\n\t\tc3.385-0.979,6.618-2.31,9.65-3.967c14.867,25.062,35.145,55.857,55.527,76.239c30.164,30.165,54.144,44.582,68.963,44.582\r\n\t\tc4.608,0,8.33-1.394,11.078-4.142c11.584-11.584-0.894-40.495-40.439-80.043c-20.361-20.359-51.114-40.615-76.162-55.479\r\n\t\tc1.688-3.031,3.053-6.266,4.055-9.656C330.237,276.839,366.28,284.252,395.057,284.252z M319.992,254.941\r\n\t\tc30.144-7.014,55.893-10.694,75.064-10.694c21.329,0,39.453,1.806,52.41,5.222c9.705,2.559,14.005,5.317,15.736,6.781\r\n\t\tc-1.731,1.463-6.031,4.221-15.736,6.779c-12.958,3.416-31.081,5.223-52.41,5.223c-19.176,0-44.927-3.68-75.075-10.695\r\n\t\tL319.992,254.941z M345.841,149.436c35.382-35.383,52.682-39.412,56.818-39.846c-0.211,2.305-1.343,7.326-6.404,15.991\r\n\t\tc-6.786,11.62-18.35,25.738-33.439,40.828c-13.533,13.534-34.3,29.111-60.513,45.438c-0.619-0.648-1.25-1.283-1.895-1.904\r\n\t\tC316.732,183.729,332.309,162.968,345.841,149.436z M209.698,211.846c-26.213-16.326-46.979-31.904-60.512-45.437\r\n\t\tc-15.09-15.091-26.653-29.208-33.439-40.828c-5.061-8.665-6.194-13.687-6.404-15.992c4.138,0.435,21.436,4.463,56.818,39.845\r\n\t\tc13.533,13.533,29.108,34.295,45.433,60.507C210.948,210.563,210.316,211.198,209.698,211.846z M116.944,268.252\r\n\t\tc-21.339,0-39.483-1.845-52.471-5.335c-9.689-2.604-13.961-5.394-15.675-6.87c1.75-1.451,6.077-4.177,15.796-6.689\r\n\t\tc12.927-3.343,31.029-5.11,52.351-5.11c19.172,0,44.922,3.68,75.064,10.694l0.01,2.615\r\n\t\tC161.87,264.572,136.12,268.252,116.944,268.252z M166.16,363.064c-35.383,35.382-52.68,39.41-56.818,39.846\r\n\t\tc0.21-2.305,1.343-7.326,6.404-15.992c6.786-11.619,18.349-25.736,33.439-40.828c13.587-13.586,34.457-29.229,60.815-45.625\r\n\t\tc0.584,0.604,1.181,1.197,1.789,1.779C195.394,328.604,179.749,349.475,166.16,363.064z M302,300.465\r\n\t\tc26.356,16.395,47.227,32.037,60.814,45.625c15.091,15.092,26.653,29.209,33.439,40.828c5.062,8.666,6.193,13.688,6.403,15.992\r\n\t\tc-4.138-0.436-21.436-4.464-56.817-39.846c-13.589-13.59-29.234-34.463-45.63-60.82C300.818,301.663,301.415,301.068,302,300.465z\r\n\t\t M249.222,64.678c2.548-9.703,5.297-14.055,6.778-15.834c1.48,1.78,4.23,6.131,6.777,15.834\r\n\t\tc3.418,13.015,5.225,31.174,5.225,52.516c0,19.117-3.66,44.781-10.637,74.821h-2.73c-6.977-30.04-10.638-55.704-10.638-74.821\r\n\t\tC243.998,95.853,245.804,77.693,249.222,64.678z M262.782,447.612c-2.569,9.707-5.339,13.954-6.782,15.636\r\n\t\tc-1.444-1.682-4.212-5.929-6.782-15.636c-3.415-12.901-5.22-30.988-5.22-52.308c0-19.228,3.701-45.066,10.752-75.316h2.5\r\n\t\tc7.052,30.25,10.752,56.089,10.752,75.316C268.002,416.624,266.197,434.711,262.782,447.612z M256,288c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S273.673,288,256,288z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M344.86,405.678c-24.529-17.674-48.394-51.732-48.394-51.732s7.031,41.059,1.854,75.946\r\n\t\tc11.678,21.779,26.139,35.253,36.643,35.253c1.749,0,3.432-0.324,5.042-0.976C351.879,459.372,354.39,439.185,344.86,405.678z\r\n\t\t M333.738,448.566c-2.738-1.46-9.407-6.369-18.992-22.27c0.688-7.872,1.098-16.337,1.219-25.282\r\n\t\tc5.012,4.88,9.947,9.437,14.747,13.613C335.816,434.408,334.954,444.779,333.738,448.566z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344.86,405.678c-24.529-17.674-48.394-51.732-48.394-51.732s7.031,41.059,1.854,75.946\r\n\t\tc11.678,21.779,26.139,35.253,36.643,35.253c1.749,0,3.432-0.324,5.042-0.976C351.879,459.372,354.39,439.185,344.86,405.678z\r\n\t\t M333.738,448.566c-2.738-1.46-9.407-6.369-18.992-22.27c0.688-7.872,1.098-16.337,1.219-25.282\r\n\t\tc5.012,4.88,9.947,9.437,14.747,13.613C335.816,434.408,334.954,444.779,333.738,448.566z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M213.679,82.608c-13.292-23.51-26.139-35.255-36.644-35.255c-1.749,0-3.431,0.325-5.042,0.976\r\n\t\tc-11.868,4.795-14.497,23.211-4.87,58.441c21.252,15.98,48.374,51.55,48.374,51.55S207.75,117.5,213.679,82.608z M196.038,111.369\r\n\t\tc-5.001-4.856-9.943-9.398-14.769-13.574c-5.084-19.731-4.223-30.082-3.008-33.863c2.737,1.459,9.407,6.369,18.994,22.27\r\n\t\tC196.568,94.04,196.161,102.466,196.038,111.369z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M213.679,82.608c-13.292-23.51-26.139-35.255-36.644-35.255c-1.749,0-3.431,0.325-5.042,0.976\r\n\t\tc-11.868,4.795-14.497,23.211-4.87,58.441c21.252,15.98,48.374,51.55,48.374,51.55S207.75,117.5,213.679,82.608z M196.038,111.369\r\n\t\tc-5.001-4.856-9.943-9.398-14.769-13.574c-5.084-19.731-4.223-30.082-3.008-33.863c2.737,1.459,9.407,6.369,18.994,22.27\r\n\t\tC196.568,94.04,196.161,102.466,196.038,111.369z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M82.357,298.568c-27.422,15.505-38.836,30.402-34.277,41.687c2.806,6.944,10.913,10.675,23.842,10.675\r\n\t\tc9.182,0,22.434-1.559,34.672-5.826c17.405-23.934,51.712-48.387,51.712-48.387S116.999,302.836,82.357,298.568z M97.637,330.956\r\n\t\tc-10.088,2.606-18.909,3.974-25.716,3.974c-4.092,0-6.733-0.502-8.223-0.97c1.477-2.755,6.407-9.411,22.253-18.966\r\n\t\tc7.872,0.689,16.338,1.099,25.284,1.22C106.365,321.218,101.815,326.15,97.637,330.956z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M82.357,298.568c-27.422,15.505-38.836,30.402-34.277,41.687c2.806,6.944,10.913,10.675,23.842,10.675\r\n\t\tc9.182,0,22.434-1.559,34.672-5.826c17.405-23.934,51.712-48.387,51.712-48.387S116.999,302.836,82.357,298.568z M97.637,330.956\r\n\t\tc-10.088,2.606-18.909,3.974-25.716,3.974c-4.092,0-6.733-0.502-8.223-0.97c1.477-2.755,6.407-9.411,22.253-18.966\r\n\t\tc7.872,0.689,16.338,1.099,25.284,1.22C106.365,321.218,101.815,326.15,97.637,330.956z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M463.92,172.245c-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822\r\n\t\tc-18.088,23.774-51.699,48.387-51.699,48.387s40.778-7.28,75.918-1.849C457.064,198.426,468.479,183.528,463.92,172.245z\r\n\t\t M426.047,197.504c-7.867-0.689-16.327-1.097-25.267-1.218c4.869-5.004,9.42-9.939,13.6-14.749\r\n\t\tc10.081-2.602,18.895-3.968,25.697-3.968c4.093,0,6.733,0.502,8.225,0.97C446.824,181.294,441.893,187.951,426.047,197.504z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M463.92,172.245c-2.806-6.945-10.914-10.675-23.844-10.675c-9.178,0-21.4,1.715-34.654,5.822\r\n\t\tc-18.088,23.774-51.699,48.387-51.699,48.387s40.778-7.28,75.918-1.849C457.064,198.426,468.479,183.528,463.92,172.245z\r\n\t\t M426.047,197.504c-7.867-0.689-16.327-1.097-25.267-1.218c4.869-5.004,9.42-9.939,13.6-14.749\r\n\t\tc10.081-2.602,18.895-3.968,25.697-3.968c4.093,0,6.733,0.502,8.225,0.97C446.824,181.294,441.893,187.951,426.047,197.504z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z M174.981,447.207\r\n\t\tc-0.904-2.966-2.147-11.15,2.312-29.159c6.048-5.079,12.323-10.782,18.743-17.032c0.095,6.979,0.366,13.687,0.81,20.039\r\n\t\tC186.466,438.66,178.52,445.39,174.981,447.207z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M163.135,408.98c-8.42,30.34-5.956,48.938,5.244,53.69c1.674,0.711,3.437,1.066,5.275,1.066\r\n\t\tc11.107,0,24.698-13.124,39.528-39.015c-4.184-32.22,2.351-70.779,2.351-70.779S193.999,385.336,163.135,408.98z M174.981,447.207\r\n\t\tc-0.904-2.966-2.147-11.15,2.312-29.159c6.048-5.079,12.323-10.782,18.743-17.032c0.095,6.979,0.366,13.687,0.81,20.039\r\n\t\tC186.466,438.66,178.52,445.39,174.981,447.207z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M343.622,49.826c-1.674-0.71-3.438-1.066-5.274-1.066c-11.105,0-26.207,14.287-39.527,39.013\r\n\t\tc4.514,22.894-2.393,71.053-2.393,71.053s23.239-34.326,52.342-54.956C357.167,72,354.865,54.599,343.622,49.826z M334.627,94.781\r\n\t\tc-6.029,5.051-12.277,10.72-18.66,16.931c-0.092-7.062-0.364-13.846-0.812-20.269c10.379-17.607,18.327-24.336,21.864-26.153\r\n\t\tC337.93,68.274,339.186,76.541,334.627,94.781z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M343.622,49.826c-1.674-0.71-3.438-1.066-5.274-1.066c-11.105,0-26.207,14.287-39.527,39.013\r\n\t\tc4.514,22.894-2.393,71.053-2.393,71.053s23.239-34.326,52.342-54.956C357.167,72,354.865,54.599,343.622,49.826z M334.627,94.781\r\n\t\tc-6.029,5.051-12.277,10.72-18.66,16.931c-0.092-7.062-0.364-13.846-0.812-20.269c10.379-17.607,18.327-24.336,21.864-26.153\r\n\t\tC337.93,68.274,339.186,76.541,334.627,94.781z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M103.209,163.367C93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261\r\n\t\tc-5.004,11.792,9.97,29.985,37.948,44.805c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367z M65.034,175.215\r\n\t\tc1.381-0.414,3.775-0.848,7.424-0.848c5.815,0,13.242,1.088,21.687,3.165c5.077,6.049,10.781,12.33,17.034,18.754\r\n\t\tc-6.959,0.096-13.648,0.367-19.984,0.81C73.563,186.7,66.84,178.745,65.034,175.215z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M103.209,163.367C93,159.5,80.717,158.366,72.457,158.366c-12.267,0-20.042,3.573-22.881,10.261\r\n\t\tc-5.004,11.792,9.97,29.985,37.948,44.805c29.726-3.932,70.688,2.336,70.688,2.336S121,187.067,103.209,163.367z M65.034,175.215\r\n\t\tc1.381-0.414,3.775-0.848,7.424-0.848c5.815,0,13.242,1.088,21.687,3.165c5.077,6.049,10.781,12.33,17.034,18.754\r\n\t\tc-6.959,0.096-13.648,0.367-19.984,0.81C73.563,186.7,66.84,178.745,65.034,175.215z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z M439.542,338.132\r\n\t\tc-5.833,0-13.287-1.095-21.765-3.185c-5.078-6.053-10.774-12.326-17.013-18.734c6.98-0.095,13.688-0.365,20.041-0.811\r\n\t\tc17.631,10.396,24.354,18.352,26.158,21.882C445.585,337.697,443.19,338.132,439.542,338.132z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M424.477,299.066c-25.307,5.6-70.78-2.35-70.78-2.35s34.638,25.615,55.014,52.393c11.959,4.223,22.555,5.022,30.833,5.022\r\n\t\tc12.266,0,20.041-3.573,22.88-10.261C467.428,332.08,454.283,315.801,424.477,299.066z M439.542,338.132\r\n\t\tc-5.833,0-13.287-1.095-21.765-3.185c-5.078-6.053-10.774-12.326-17.013-18.734c6.98-0.095,13.688-0.365,20.041-0.811\r\n\t\tc17.631,10.396,24.354,18.352,26.158,21.882C445.585,337.697,443.19,338.132,439.542,338.132z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosFlowerOutline = iosFlowerOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosFolder.js b/dist/ionicons/iosFolder.js
new file mode 100644
index 000000000..f83dce7e8
--- /dev/null
+++ b/dist/ionicons/iosFolder.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFolder = void 0;
+var iosFolder = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M472,176H40c-4.411,0-8,3.589-8,8v239c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V184\r\n\t\tC480,179.589,476.411,176,472,176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M472,176H40c-4.411,0-8,3.589-8,8v239c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V184\r\n\t\tC480,179.589,476.411,176,472,176z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\t\tc-13.785,0-25,10.317-25,23v74.376c2.504-0.888,5.195-1.376,8-1.376h432c2.805,0,5.496,0.488,8,1.376V119\r\n\t\tC480,105.673,470.327,96,457,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\t\tc-13.785,0-25,10.317-25,23v74.376c2.504-0.888,5.195-1.376,8-1.376h432c2.805,0,5.496,0.488,8,1.376V119\r\n\t\tC480,105.673,470.327,96,457,96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosFolder = iosFolder;
\ No newline at end of file
diff --git a/dist/ionicons/iosFolderOutline.js b/dist/ionicons/iosFolderOutline.js
new file mode 100644
index 000000000..f45617105
--- /dev/null
+++ b/dist/ionicons/iosFolderOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFolderOutline = void 0;
+var iosFolderOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M457,96H215c-2.791,0-4.271-0.585-6.094-2.408l-22.501-22.501l-0.168-0.162C181.365,66.333,177.361,64,169,64H57\r\n\tc-13.785,0-25,10.317-25,23v336c0,13.317,11.683,25,25,25h400c12.683,0,23-11.215,23-25V119C480,105.673,470.327,96,457,96z M57,80\r\n\th112c3.497,0,3.737,0.189,6.175,2.488l22.417,22.418c4.84,4.84,10.372,7.094,17.408,7.094h242c4.448,0,7,2.552,7,7v42.376\r\n\tc-2.504-0.888-5.195-1.376-8-1.376H56c-2.805,0-5.496,0.488-8,1.376V87C48,82.677,52.672,80,57,80z M464,423c0,4.328-2.677,9-7,9H57\r\n\tc-4.458,0-9-4.542-9-9V184c0-4.411,3.589-8,8-8h400c4.411,0,8,3.589,8,8V423z"
+ },
+ "children": []
+ }]
+};
+exports.iosFolderOutline = iosFolderOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosFootball.js b/dist/ionicons/iosFootball.js
new file mode 100644
index 000000000..a6e640c15
--- /dev/null
+++ b/dist/ionicons/iosFootball.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFootball = void 0;
+var iosFootball = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.137,48,48,141.136,48,256c0,114.864,93.137,208,208,208c114.872,0,208-93.138,208-208\r\n\tC464,141.138,370.87,48,256,48z M297.151,442.179c-13.514,2.657-30.327,4.187-44,4.45c-13.198-0.195-26.074-1.735-38.5-4.493\r\n\tc-2.144-0.549-4.383-1.138-6.805-1.777l-24.417-65.435L203.074,336h105.854l0.57,1.076l19.34,38.852L305.22,440.21\r\n\tC302.553,440.924,299.862,441.579,297.151,442.179z M189.578,77.28L247,116.576v58.147l-70.997,60.067L126.6,212.28l-4.167-1.899\r\n\tl-22.332-64.019C122.11,115.158,153.239,90.83,189.578,77.28z M411.564,146.067l-22.432,64.483l-53.992,24.388L264,174.723v-58.147\r\n\tl57.596-39.415C357.958,90.644,389.501,114.913,411.564,146.067z M66.144,273.414l53.756-46.518l49.539,22.599l0.559,0.255\r\n\tl19.718,77.287l-20.433,38.529l-69.86-0.915C81.075,338.291,69.209,307.105,66.144,273.414z M342.719,365.565l-20.434-38.529\r\n\tl19.752-77.416l49.997-22.781l53.822,46.575c-3.065,33.691-14.932,64.877-33.277,91.236L342.719,365.565z"
+ },
+ "children": []
+ }]
+};
+exports.iosFootball = iosFootball;
\ No newline at end of file
diff --git a/dist/ionicons/iosFootballOutline.js b/dist/ionicons/iosFootballOutline.js
new file mode 100644
index 000000000..4b603d5c9
--- /dev/null
+++ b/dist/ionicons/iosFootballOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosFootballOutline = void 0;
+var iosFootballOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.137,48,48,141.136,48,256c0,114.864,93.137,208,208,208c114.872,0,208-93.138,208-208\r\n\tC464,141.138,370.87,48,256,48z M297.151,442.179c-13.514,2.657-30.327,4.187-44,4.45c-13.198-0.195-26.074-1.735-38.5-4.493\r\n\tc-2.144-0.549-4.383-1.138-6.805-1.777l-24.417-65.435L203.074,336h105.854l0.57,1.076l19.34,38.852L305.22,440.21\r\n\tC302.553,440.924,299.862,441.579,297.151,442.179z M89.317,163.522l18.188,52.284l0.175,0.504L65.376,252.92\r\n\tC65.892,220.535,74.52,190.088,89.317,163.522z M189.578,77.28L247,116.576v58.147l-70.997,60.067L126.6,212.28l-4.167-1.899\r\n\tl-22.332-64.019C122.11,115.158,153.239,90.83,189.578,77.28z M325.025,247.206l0.921,0.765L307.569,320H204.431l-18.485-72.453\r\n\tl0.445-0.376l68.873-58.27L325.025,247.206z M446.626,252.921l-42.454-36.738l0.127-0.364l18.298-52.451\r\n\tC437.447,189.972,446.109,220.473,446.626,252.921z M411.564,146.067l-22.432,64.483l-53.992,24.388L264,174.723v-58.147\r\n\tl57.596-39.415C357.958,90.644,389.501,114.913,411.564,146.067z M66.144,273.414l53.756-46.518l49.539,22.599l0.559,0.255\r\n\tl19.718,77.287l-20.433,38.529l-69.86-0.915C81.075,338.291,69.209,307.105,66.144,273.414z M342.719,365.565l-20.434-38.529\r\n\tl19.752-77.416l49.997-22.781l53.822,46.575c-3.065,33.691-14.932,64.877-33.277,91.236L342.719,365.565z M255.257,102.67\r\n\tl-46.126-31.498c15-3.806,30.701-5.836,46.869-5.835c15.961,0,31.466,1.982,46.293,5.694L255.257,102.67z M166.423,381.529\r\n\tl0.848,2.511l19.946,49.781c-29.239-11.351-55.011-29.704-75.232-53.006L166.423,381.529z M324.563,433.904l17.934-48.608\r\n\tl1.627-3.748l55.892-0.732C379.744,404.175,353.893,422.562,324.563,433.904z"
+ },
+ "children": []
+ }]
+};
+exports.iosFootballOutline = iosFootballOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosGameControllerA.js b/dist/ionicons/iosGameControllerA.js
new file mode 100644
index 000000000..4fbd67c14
--- /dev/null
+++ b/dist/ionicons/iosGameControllerA.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosGameControllerA = void 0;
+var iosGameControllerA = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146z M200,266.697c0,2.698-2.421,5.303-5.238,5.303H160\r\n\t\tv35.139c0,2.83-3.104,4.861-5.803,4.861h-21.427c-2.628,0-4.771-1.918-4.771-4.533V272H92.861c-2.83,0-4.861-3.104-4.861-5.803\r\n\t\tv-21.427c0-2.628,1.918-4.771,4.533-4.771H128v-34.822c0-2.806,1.854-5.178,4.553-5.178h22.145c2.698,0,5.303,2.421,5.303,5.238\r\n\t\tV240h34.822c2.806,0,5.178,1.854,5.178,4.553V266.697z M319.766,275.486c-10.736,0-19.451-8.587-19.451-19.153\r\n\t\tc0-10.565,8.715-19.168,19.451-19.168c10.783,0,19.498,8.603,19.498,19.168C339.264,266.899,330.549,275.486,319.766,275.486z\r\n\t\t M362.314,317.301c-10.736,0-19.451-8.529-19.451-19.084c0-10.639,8.715-19.153,19.451-19.153c10.783,0,19.498,8.515,19.498,19.153\r\n\t\tC381.812,308.771,373.098,317.301,362.314,317.301z M362.314,233.615c-10.736,0-19.451-8.579-19.451-19.146\r\n\t\tc0-10.567,8.715-19.169,19.451-19.169c10.783,0,19.498,8.602,19.498,19.169C381.812,225.036,373.098,233.615,362.314,233.615z\r\n\t\t M404.862,275.486c-10.729,0-19.442-8.587-19.442-19.153c0-10.565,8.714-19.168,19.442-19.168c10.737,0,19.452,8.603,19.452,19.168\r\n\t\tC424.314,266.899,415.6,275.486,404.862,275.486z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146z M200,266.697c0,2.698-2.421,5.303-5.238,5.303H160\r\n\t\tv35.139c0,2.83-3.104,4.861-5.803,4.861h-21.427c-2.628,0-4.771-1.918-4.771-4.533V272H92.861c-2.83,0-4.861-3.104-4.861-5.803\r\n\t\tv-21.427c0-2.628,1.918-4.771,4.533-4.771H128v-34.822c0-2.806,1.854-5.178,4.553-5.178h22.145c2.698,0,5.303,2.421,5.303,5.238\r\n\t\tV240h34.822c2.806,0,5.178,1.854,5.178,4.553V266.697z M319.766,275.486c-10.736,0-19.451-8.587-19.451-19.153\r\n\t\tc0-10.565,8.715-19.168,19.451-19.168c10.783,0,19.498,8.603,19.498,19.168C339.264,266.899,330.549,275.486,319.766,275.486z\r\n\t\t M362.314,317.301c-10.736,0-19.451-8.529-19.451-19.084c0-10.639,8.715-19.153,19.451-19.153c10.783,0,19.498,8.515,19.498,19.153\r\n\t\tC381.812,308.771,373.098,317.301,362.314,317.301z M362.314,233.615c-10.736,0-19.451-8.579-19.451-19.146\r\n\t\tc0-10.567,8.715-19.169,19.451-19.169c10.783,0,19.498,8.602,19.498,19.169C381.812,225.036,373.098,233.615,362.314,233.615z\r\n\t\t M404.862,275.486c-10.729,0-19.442-8.587-19.442-19.153c0-10.565,8.714-19.168,19.442-19.168c10.737,0,19.452,8.603,19.452,19.168\r\n\t\tC424.314,266.899,415.6,275.486,404.862,275.486z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosGameControllerA = iosGameControllerA;
\ No newline at end of file
diff --git a/dist/ionicons/iosGameControllerAOutline.js b/dist/ionicons/iosGameControllerAOutline.js
new file mode 100644
index 000000000..9d7c1b4a5
--- /dev/null
+++ b/dist/ionicons/iosGameControllerAOutline.js
@@ -0,0 +1,95 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosGameControllerAOutline = void 0;
+var iosGameControllerAOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M194.822,240H160v-34.762c0-2.817-2.604-5.238-5.303-5.238h-22.145c-2.698,0-4.552,2.372-4.552,5.178V240H92.533\r\n\t\t\tc-2.615,0-4.533,2.143-4.533,4.771v21.427c0,2.698,2.031,5.803,4.861,5.803H128v35.467c0,2.615,2.143,4.533,4.771,4.533h21.427\r\n\t\t\tc2.698,0,5.803-2.031,5.803-4.861V272h34.762c2.817,0,5.238-2.604,5.238-5.303v-22.145C200,241.854,197.628,240,194.822,240z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M194.822,240H160v-34.762c0-2.817-2.604-5.238-5.303-5.238h-22.145c-2.698,0-4.552,2.372-4.552,5.178V240H92.533\r\n\t\t\tc-2.615,0-4.533,2.143-4.533,4.771v21.427c0,2.698,2.031,5.803,4.861,5.803H128v35.467c0,2.615,2.143,4.533,4.771,4.533h21.427\r\n\t\t\tc2.698,0,5.803-2.031,5.803-4.861V272h34.762c2.817,0,5.238-2.604,5.238-5.303v-22.145C200,241.854,197.628,240,194.822,240z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M362.314,279.063c-10.736,0-19.451,8.515-19.451,19.153c0,10.555,8.715,19.084,19.451,19.084\r\n\t\t\tc10.783,0,19.498-8.529,19.498-19.084C381.812,287.578,373.098,279.063,362.314,279.063z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M362.314,279.063c-10.736,0-19.451,8.515-19.451,19.153c0,10.555,8.715,19.084,19.451,19.084\r\n\t\t\tc10.783,0,19.498-8.529,19.498-19.084C381.812,287.578,373.098,279.063,362.314,279.063z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M319.766,237.165c-10.736,0-19.451,8.603-19.451,19.168c0,10.566,8.715,19.153,19.451,19.153\r\n\t\t\tc10.783,0,19.498-8.587,19.498-19.153C339.264,245.768,330.549,237.165,319.766,237.165z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M319.766,237.165c-10.736,0-19.451,8.603-19.451,19.168c0,10.566,8.715,19.153,19.451,19.153\r\n\t\t\tc10.783,0,19.498-8.587,19.498-19.153C339.264,245.768,330.549,237.165,319.766,237.165z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M404.862,237.165c-10.729,0-19.442,8.603-19.442,19.168c0,10.566,8.714,19.153,19.442,19.153\r\n\t\t\tc10.737,0,19.452-8.587,19.452-19.153C424.314,245.768,415.6,237.165,404.862,237.165z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M404.862,237.165c-10.729,0-19.442,8.603-19.442,19.168c0,10.566,8.714,19.153,19.442,19.153\r\n\t\t\tc10.737,0,19.452-8.587,19.452-19.153C424.314,245.768,415.6,237.165,404.862,237.165z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M362.314,195.301c-10.736,0-19.451,8.602-19.451,19.169c0,10.566,8.715,19.146,19.451,19.146\r\n\t\t\tc10.783,0,19.498-8.579,19.498-19.146C381.812,203.902,373.098,195.301,362.314,195.301z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M362.314,195.301c-10.736,0-19.451,8.602-19.451,19.169c0,10.566,8.715,19.146,19.451,19.146\r\n\t\t\tc10.783,0,19.498-8.579,19.498-19.146C381.812,203.902,373.098,195.301,362.314,195.301z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M369.269,162c25.838,0,49.704,9.314,67.204,26.229C454.225,205.386,464,229.247,464,255.418\r\n\t\tc0,26.303-9.806,50.405-27.611,67.869c-17.563,17.226-41.4,26.713-67.12,26.713H142.739c-25.712,0-49.548-9.487-67.117-26.715\r\n\t\tC57.81,305.818,48,281.717,48,255.418c0-26.167,9.78-50.028,27.539-67.188C93.043,171.315,116.909,162,142.739,162H369.269\r\n\t\t M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146L369.269,146z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M369.269,162c25.838,0,49.704,9.314,67.204,26.229C454.225,205.386,464,229.247,464,255.418\r\n\t\tc0,26.303-9.806,50.405-27.611,67.869c-17.563,17.226-41.4,26.713-67.12,26.713H142.739c-25.712,0-49.548-9.487-67.117-26.715\r\n\t\tC57.81,305.818,48,281.717,48,255.418c0-26.167,9.78-50.028,27.539-67.188C93.043,171.315,116.909,162,142.739,162H369.269\r\n\t\t M369.269,146H142.739C81.541,146,32,191.458,32,255.418C32,319.419,81.541,366,142.739,366h226.529\r\n\t\tC430.49,366,480,319.419,480,255.418C480,191.458,430.49,146,369.269,146L369.269,146z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosGameControllerAOutline = iosGameControllerAOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosGameControllerB.js b/dist/ionicons/iosGameControllerB.js
new file mode 100644
index 000000000..91e0fe04a
--- /dev/null
+++ b/dist/ionicons/iosGameControllerB.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosGameControllerB = void 0;
+var iosGameControllerB = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M135.123,204.568c-10.688,0-19.343,8.717-19.343,19.441c0,10.727,8.655,19.447,19.343,19.447\r\n\t\tc10.641,0,19.297-8.721,19.297-19.447C154.42,213.285,145.764,204.568,135.123,204.568z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M135.123,204.568c-10.688,0-19.343,8.717-19.343,19.441c0,10.727,8.655,19.447,19.343,19.447\r\n\t\tc10.641,0,19.297-8.721,19.297-19.447C154.42,213.285,145.764,204.568,135.123,204.568z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M135.234,263.633C113.594,263.633,96,245.875,96,224.01c0-21.84,17.594-39.643,39.234-39.643\r\n\t\tc21.655,0,39.249,17.803,39.249,39.643C174.483,245.875,156.89,263.633,135.234,263.633z M308.076,244.14\r\n\t\tc-11.058,0-20.076-9.019-20.076-20.107c0-11.09,9.019-20.104,20.076-20.104c11.131,0,20.148,9.014,20.148,20.104\r\n\t\tC328.225,235.121,319.207,244.14,308.076,244.14z M351.988,288c-11.058,0-20.053-8.951-20.053-20.016\r\n\t\tc0-11.157,8.995-20.106,20.053-20.106c11.146,0,20.148,8.949,20.148,20.106C372.137,279.049,363.134,288,351.988,288z\r\n\t\t M351.988,200.19c-11.058,0-20.053-8.993-20.053-20.083c0-11.094,8.995-20.107,20.053-20.107c11.146,0,20.148,9.014,20.148,20.107\r\n\t\tC372.137,191.197,363.134,200.19,351.988,200.19z M395.947,244.14c-11.105,0-20.101-9.019-20.101-20.107\r\n\t\tc0-11.09,8.995-20.104,20.101-20.104c11.059,0,20.053,9.014,20.053,20.104C416,235.121,407.006,244.14,395.947,244.14z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M135.234,263.633C113.594,263.633,96,245.875,96,224.01c0-21.84,17.594-39.643,39.234-39.643\r\n\t\tc21.655,0,39.249,17.803,39.249,39.643C174.483,245.875,156.89,263.633,135.234,263.633z M308.076,244.14\r\n\t\tc-11.058,0-20.076-9.019-20.076-20.107c0-11.09,9.019-20.104,20.076-20.104c11.131,0,20.148,9.014,20.148,20.104\r\n\t\tC328.225,235.121,319.207,244.14,308.076,244.14z M351.988,288c-11.058,0-20.053-8.951-20.053-20.016\r\n\t\tc0-11.157,8.995-20.106,20.053-20.106c11.146,0,20.148,8.949,20.148,20.106C372.137,279.049,363.134,288,351.988,288z\r\n\t\t M351.988,200.19c-11.058,0-20.053-8.993-20.053-20.083c0-11.094,8.995-20.107,20.053-20.107c11.146,0,20.148,9.014,20.148,20.107\r\n\t\tC372.137,191.197,363.134,200.19,351.988,200.19z M395.947,244.14c-11.105,0-20.101-9.019-20.101-20.107\r\n\t\tc0-11.09,8.995-20.104,20.101-20.104c11.059,0,20.053,9.014,20.053,20.104C416,235.121,407.006,244.14,395.947,244.14z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosGameControllerB = iosGameControllerB;
\ No newline at end of file
diff --git a/dist/ionicons/iosGameControllerBOutline.js b/dist/ionicons/iosGameControllerBOutline.js
new file mode 100644
index 000000000..18dc161bc
--- /dev/null
+++ b/dist/ionicons/iosGameControllerBOutline.js
@@ -0,0 +1,95 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosGameControllerBOutline = void 0;
+var iosGameControllerBOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M308.076,203.929c-11.058,0-20.076,9.014-20.076,20.104c0,11.089,9.019,20.107,20.076,20.107\r\n\t\t\tc11.131,0,20.148-9.019,20.148-20.107C328.225,212.942,319.207,203.929,308.076,203.929z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M308.076,203.929c-11.058,0-20.076,9.014-20.076,20.104c0,11.089,9.019,20.107,20.076,20.107\r\n\t\t\tc11.131,0,20.148-9.019,20.148-20.107C328.225,212.942,319.207,203.929,308.076,203.929z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M351.988,247.878c-11.058,0-20.053,8.949-20.053,20.106c0,11.064,8.995,20.016,20.053,20.016\r\n\t\t\tc11.146,0,20.148-8.951,20.148-20.016C372.137,256.827,363.134,247.878,351.988,247.878z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M351.988,247.878c-11.058,0-20.053,8.949-20.053,20.106c0,11.064,8.995,20.016,20.053,20.016\r\n\t\t\tc11.146,0,20.148-8.951,20.148-20.016C372.137,256.827,363.134,247.878,351.988,247.878z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M135.234,184.367C113.594,184.367,96,202.17,96,224.01c0,21.865,17.594,39.623,39.234,39.623\r\n\t\t\tc21.655,0,39.249-17.758,39.249-39.623C174.483,202.17,156.89,184.367,135.234,184.367z M135.123,243.457\r\n\t\t\tc-10.688,0-19.343-8.721-19.343-19.447c0-10.725,8.655-19.441,19.343-19.441c10.641,0,19.297,8.717,19.297,19.441\r\n\t\t\tC154.42,234.736,145.764,243.457,135.123,243.457z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M135.234,184.367C113.594,184.367,96,202.17,96,224.01c0,21.865,17.594,39.623,39.234,39.623\r\n\t\t\tc21.655,0,39.249-17.758,39.249-39.623C174.483,202.17,156.89,184.367,135.234,184.367z M135.123,243.457\r\n\t\t\tc-10.688,0-19.343-8.721-19.343-19.447c0-10.725,8.655-19.441,19.343-19.441c10.641,0,19.297,8.717,19.297,19.441\r\n\t\t\tC154.42,234.736,145.764,243.457,135.123,243.457z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M351.988,160c-11.058,0-20.053,9.014-20.053,20.107c0,11.09,8.995,20.083,20.053,20.083\r\n\t\t\tc11.146,0,20.148-8.993,20.148-20.083C372.137,169.014,363.134,160,351.988,160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M351.988,160c-11.058,0-20.053,9.014-20.053,20.107c0,11.09,8.995,20.083,20.053,20.083\r\n\t\t\tc11.146,0,20.148-8.993,20.148-20.083C372.137,169.014,363.134,160,351.988,160z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M395.947,203.929c-11.105,0-20.101,9.014-20.101,20.104c0,11.089,8.995,20.107,20.101,20.107\r\n\t\t\tc11.059,0,20.053-9.019,20.053-20.107C416,212.942,407.006,203.929,395.947,203.929z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M395.947,203.929c-11.105,0-20.101,9.014-20.101,20.104c0,11.089,8.995,20.107,20.101,20.107\r\n\t\t\tc11.059,0,20.053-9.019,20.053-20.107C416,212.942,407.006,203.929,395.947,203.929z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M451.677,398.716c-1.835,0.876-3.604,1.284-5.564,1.284c-6.022,0-14.077-4.049-23.295-11.708\r\n\t\tc-9.181-7.63-19.307-18.509-31.87-34.239c-12.959-16.22-23.667-28.229-43.528-33.949c-16.647-4.793-38.624-5.104-79.254-5.104\r\n\t\th-24.343c-40.633,0-62.611,0.311-79.259,5.105c-19.853,5.719-30.56,17.685-43.523,33.908\r\n\t\tc-12.556,15.727-22.68,26.627-31.862,34.258c-9.216,7.658-17.27,11.718-23.293,11.718c-1.932,0-3.751-0.415-5.568-1.282\r\n\t\tc-9.556-4.557-22.572-47.673,0.998-146.129c21.387-89.591,42.381-126.777,77.459-137.207c7.633-2.27,14.554-3.372,21.159-3.372\r\n\t\tc9.742,0,18.599,2.317,29.812,5.249c16.07,4.203,36.072,9.435,66.252,9.435c30.148,0,50.146-5.228,66.215-9.429\r\n\t\tc11.229-2.936,20.1-5.254,29.865-5.254c6.618,0,13.551,1.104,21.185,3.371c35.037,10.428,56.03,47.617,77.456,137.214\r\n\t\tC474.244,351.041,461.23,394.16,451.677,398.716z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M466.279,248.866c-21.157-88.471-43.631-135.489-88.454-148.83C368.06,97.135,359.748,96,352.076,96\r\n\t\tc-27.598,0-46.938,14.683-96.08,14.683c-49.174,0-68.502-14.681-96.062-14.683c-7.665,0-15.963,1.135-25.721,4.036\r\n\t\tc-44.869,13.341-67.342,60.359-88.461,148.83c-21.181,88.473-17.334,152.363,7.679,164.289C57.502,415.1,61.662,416,65.885,416\r\n\t\tc21.694,0,45.139-23.838,67.659-52.047C159.198,331.848,165.658,331,243.822,331h24.343c78.147,0,84.628,0.846,110.282,32.953\r\n\t\tc22.526,28.207,45.97,52.004,67.665,52.004c4.226,0,8.384-0.879,12.457-2.823C483.574,401.208,487.421,337.339,466.279,248.866z\r\n\t\t M451.677,398.716c-1.835,0.876-3.604,1.284-5.564,1.284c-6.022,0-14.077-4.049-23.295-11.708\r\n\t\tc-9.181-7.63-19.307-18.509-31.87-34.239c-12.959-16.22-23.667-28.229-43.528-33.949c-16.647-4.793-38.624-5.104-79.254-5.104\r\n\t\th-24.343c-40.633,0-62.611,0.311-79.259,5.105c-19.853,5.719-30.56,17.685-43.523,33.908\r\n\t\tc-12.556,15.727-22.68,26.627-31.862,34.258c-9.216,7.658-17.27,11.718-23.293,11.718c-1.932,0-3.751-0.415-5.568-1.282\r\n\t\tc-9.556-4.557-22.572-47.673,0.998-146.129c21.387-89.591,42.381-126.777,77.459-137.207c7.633-2.27,14.554-3.372,21.159-3.372\r\n\t\tc9.742,0,18.599,2.317,29.812,5.249c16.07,4.203,36.072,9.435,66.252,9.435c30.148,0,50.146-5.228,66.215-9.429\r\n\t\tc11.229-2.936,20.1-5.254,29.865-5.254c6.618,0,13.551,1.104,21.185,3.371c35.037,10.428,56.03,47.617,77.456,137.214\r\n\t\tC474.244,351.041,461.23,394.16,451.677,398.716z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosGameControllerBOutline = iosGameControllerBOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosGear.js b/dist/ionicons/iosGear.js
new file mode 100644
index 000000000..5cb3018c6
--- /dev/null
+++ b/dist/ionicons/iosGear.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosGear = void 0;
+var iosGear = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416.349,256.046c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\tC341.768,76.973,322.54,68.895,302.074,64C294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69\r\n\tc-20.466,4.895-39.693,12.973-57.128,23.688c8.068,18.122,4.683,40.104-10.181,54.97c-9.631,9.631-22.25,14.443-34.871,14.443\r\n\tc-6.854,0-13.706-1.419-20.083-4.255C76.958,170.284,68.886,189.517,64,209.984c18.509,7.112,31.652,25.049,31.652,46.062\r\n\tc0,21.008-13.132,38.936-31.63,46.054c4.898,20.466,12.976,39.692,23.692,57.128c6.361-2.821,13.198-4.232,20.032-4.232\r\n\tc12.622,0,25.239,4.812,34.871,14.443c14.841,14.841,18.239,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.13,23.673\r\n\tc7.128-18.479,25.046-31.596,46.038-31.596c20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675\r\n\tc-8.023-18.106-4.626-40.046,10.216-54.887c9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233\r\n\tc10.716-17.436,18.794-36.662,23.692-57.128C429.48,294.981,416.349,277.052,416.349,256.046z M256.9,335.9c-44.3,0-80-35.9-80-80\r\n\tc0-44.101,35.7-80,80-80c44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z"
+ },
+ "children": []
+ }]
+};
+exports.iosGear = iosGear;
\ No newline at end of file
diff --git a/dist/ionicons/iosGearOutline.js b/dist/ionicons/iosGearOutline.js
new file mode 100644
index 000000000..9189fbf32
--- /dev/null
+++ b/dist/ionicons/iosGearOutline.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosGearOutline = void 0;
+var iosGearOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.9,159.9c-25.701,0-49.801,10-67.9,28.1s-28.1,42.199-28.1,67.9c0,25.699,10,49.699,28.1,67.9\r\n\t\t\tc18.1,18.1,42.301,28.1,67.9,28.1c25.699,0,49.799-10,67.9-28.1c18.1-18.102,28.1-42.201,28.1-67.9c0-25.701-10-49.701-28.1-67.9\r\n\t\t\tC306.699,169.9,282.6,159.9,256.9,159.9z M256.9,335.9c-44.301,0-80-35.9-80-80c0-44.101,35.699-80,80-80\r\n\t\t\tc44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.9,159.9c-25.701,0-49.801,10-67.9,28.1s-28.1,42.199-28.1,67.9c0,25.699,10,49.699,28.1,67.9\r\n\t\t\tc18.1,18.1,42.301,28.1,67.9,28.1c25.699,0,49.799-10,67.9-28.1c18.1-18.102,28.1-42.201,28.1-67.9c0-25.701-10-49.701-28.1-67.9\r\n\t\t\tC306.699,169.9,282.6,159.9,256.9,159.9z M256.9,335.9c-44.301,0-80-35.9-80-80c0-44.101,35.699-80,80-80\r\n\t\t\tc44.299,0,80,35.899,80,80C336.9,300,301.199,335.9,256.9,335.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M201.787,82.828c4.458,6.628,10.119,12.406,16.775,17.069c11.012,7.715,23.957,11.793,37.438,11.793\r\n\t\t\tc13.481,0,26.428-4.078,37.439-11.793c6.654-4.663,12.316-10.441,16.773-17.068c10.326,3.228,20.334,7.378,29.927,12.411\r\n\t\t\tc-1.532,7.84-1.614,15.93-0.203,23.933c2.333,13.235,8.604,25.269,18.133,34.798c12.335,12.336,28.737,19.129,46.185,19.129\r\n\t\t\tc4.242,0,8.424-0.399,12.52-1.195c5.032,9.6,9.181,19.613,12.405,29.947c-6.622,4.46-12.396,10.121-17.054,16.776\r\n\t\t\tc-7.705,11.008-11.777,23.946-11.776,37.418c0,13.467,4.069,26.401,11.768,37.406c4.653,6.651,10.421,12.312,17.036,16.771\r\n\t\t\tc-3.232,10.34-7.387,20.354-12.428,29.957c-4.081-0.789-8.246-1.187-12.472-1.187c-17.448,0-33.85,6.795-46.183,19.131\r\n\t\t\tc-9.515,9.514-15.781,21.527-18.123,34.74c-1.415,7.988-1.343,16.065,0.176,23.895c-9.607,5.04-19.627,9.192-29.967,12.421\r\n\t\t\tc-4.461-6.61-10.121-12.374-16.771-17.022c-11-7.689-23.928-11.754-37.386-11.754c-13.457,0-26.385,4.064-37.385,11.755\r\n\t\t\tc-6.649,4.648-12.31,10.412-16.771,17.021c-10.339-3.228-20.359-7.381-29.966-12.42c1.519-7.829,1.591-15.906,0.176-23.895\r\n\t\t\tc-2.342-13.214-8.608-25.228-18.123-34.741c-12.335-12.336-28.737-19.13-46.185-19.13c-4.226,0-8.39,0.396-12.471,1.187\r\n\t\t\tc-5.04-9.602-9.195-19.618-12.428-29.958c6.615-4.46,12.383-10.119,17.036-16.771c7.699-11.004,11.769-23.939,11.769-37.408\r\n\t\t\tc0-13.471-4.072-26.41-11.777-37.418c-4.658-6.654-10.432-12.316-17.054-16.776c3.225-10.333,7.372-20.346,12.405-29.946\r\n\t\t\tc4.096,0.796,8.277,1.196,12.521,1.196c17.446,0,33.849-6.794,46.185-19.13c9.529-9.53,15.799-21.563,18.133-34.799\r\n\t\t\tc1.411-8.003,1.33-16.093-0.203-23.932C181.455,90.207,191.461,86.057,201.787,82.828 M302.074,64\r\n\t\t\tC294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69c-20.466,4.895-39.692,12.973-57.128,23.688\r\n\t\t\tc8.068,18.122,4.682,40.104-10.182,54.97c-9.631,9.631-22.25,14.443-34.87,14.443c-6.854,0-13.706-1.419-20.083-4.255\r\n\t\t\tC76.958,170.284,68.887,189.517,64,209.984c18.51,7.112,31.652,25.049,31.652,46.062c0,21.008-13.133,38.936-31.631,46.054\r\n\t\t\tc4.898,20.466,12.977,39.692,23.693,57.128c6.36-2.821,13.197-4.232,20.031-4.232c12.621,0,25.238,4.812,34.871,14.443\r\n\t\t\tc14.841,14.841,18.238,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.131,23.673c7.127-18.479,25.046-31.596,46.037-31.596\r\n\t\t\tc20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675c-8.023-18.106-4.626-40.046,10.216-54.887\r\n\t\t\tc9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233c10.716-17.436,18.794-36.662,23.692-57.128\r\n\t\t\tc-18.498-7.118-31.63-25.048-31.63-46.054c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\t\t\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\t\t\tC341.768,76.973,322.54,68.895,302.074,64L302.074,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M201.787,82.828c4.458,6.628,10.119,12.406,16.775,17.069c11.012,7.715,23.957,11.793,37.438,11.793\r\n\t\t\tc13.481,0,26.428-4.078,37.439-11.793c6.654-4.663,12.316-10.441,16.773-17.068c10.326,3.228,20.334,7.378,29.927,12.411\r\n\t\t\tc-1.532,7.84-1.614,15.93-0.203,23.933c2.333,13.235,8.604,25.269,18.133,34.798c12.335,12.336,28.737,19.129,46.185,19.129\r\n\t\t\tc4.242,0,8.424-0.399,12.52-1.195c5.032,9.6,9.181,19.613,12.405,29.947c-6.622,4.46-12.396,10.121-17.054,16.776\r\n\t\t\tc-7.705,11.008-11.777,23.946-11.776,37.418c0,13.467,4.069,26.401,11.768,37.406c4.653,6.651,10.421,12.312,17.036,16.771\r\n\t\t\tc-3.232,10.34-7.387,20.354-12.428,29.957c-4.081-0.789-8.246-1.187-12.472-1.187c-17.448,0-33.85,6.795-46.183,19.131\r\n\t\t\tc-9.515,9.514-15.781,21.527-18.123,34.74c-1.415,7.988-1.343,16.065,0.176,23.895c-9.607,5.04-19.627,9.192-29.967,12.421\r\n\t\t\tc-4.461-6.61-10.121-12.374-16.771-17.022c-11-7.689-23.928-11.754-37.386-11.754c-13.457,0-26.385,4.064-37.385,11.755\r\n\t\t\tc-6.649,4.648-12.31,10.412-16.771,17.021c-10.339-3.228-20.359-7.381-29.966-12.42c1.519-7.829,1.591-15.906,0.176-23.895\r\n\t\t\tc-2.342-13.214-8.608-25.228-18.123-34.741c-12.335-12.336-28.737-19.13-46.185-19.13c-4.226,0-8.39,0.396-12.471,1.187\r\n\t\t\tc-5.04-9.602-9.195-19.618-12.428-29.958c6.615-4.46,12.383-10.119,17.036-16.771c7.699-11.004,11.769-23.939,11.769-37.408\r\n\t\t\tc0-13.471-4.072-26.41-11.777-37.418c-4.658-6.654-10.432-12.316-17.054-16.776c3.225-10.333,7.372-20.346,12.405-29.946\r\n\t\t\tc4.096,0.796,8.277,1.196,12.521,1.196c17.446,0,33.849-6.794,46.185-19.13c9.529-9.53,15.799-21.563,18.133-34.799\r\n\t\t\tc1.411-8.003,1.33-16.093-0.203-23.932C181.455,90.207,191.461,86.057,201.787,82.828 M302.074,64\r\n\t\t\tC294.971,82.529,277.027,95.69,256,95.69c-21.025,0-38.969-13.161-46.073-31.69c-20.466,4.895-39.692,12.973-57.128,23.688\r\n\t\t\tc8.068,18.122,4.682,40.104-10.182,54.97c-9.631,9.631-22.25,14.443-34.87,14.443c-6.854,0-13.706-1.419-20.083-4.255\r\n\t\t\tC76.958,170.284,68.887,189.517,64,209.984c18.51,7.112,31.652,25.049,31.652,46.062c0,21.008-13.133,38.936-31.631,46.054\r\n\t\t\tc4.898,20.466,12.977,39.692,23.693,57.128c6.36-2.821,13.197-4.232,20.031-4.232c12.621,0,25.238,4.812,34.871,14.443\r\n\t\t\tc14.841,14.841,18.238,36.781,10.215,54.889c17.438,10.71,36.664,18.783,57.131,23.673c7.127-18.479,25.046-31.596,46.037-31.596\r\n\t\t\tc20.992,0,38.91,13.115,46.037,31.596c20.468-4.89,39.693-12.964,57.132-23.675c-8.023-18.106-4.626-40.046,10.216-54.887\r\n\t\t\tc9.629-9.632,22.248-14.444,34.868-14.444c6.836,0,13.67,1.411,20.033,4.233c10.716-17.436,18.794-36.662,23.692-57.128\r\n\t\t\tc-18.498-7.118-31.63-25.048-31.63-46.054c-0.001-21.013,13.143-38.948,31.651-46.062c-4.887-20.466-12.957-39.7-23.664-57.139\r\n\t\t\tc-6.375,2.836-13.23,4.254-20.082,4.254c-12.621,0-25.238-4.811-34.871-14.442c-14.863-14.863-18.248-36.846-10.18-54.97\r\n\t\t\tC341.768,76.973,322.54,68.895,302.074,64L302.074,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosGearOutline = iosGearOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosGlasses.js b/dist/ionicons/iosGlasses.js
new file mode 100644
index 000000000..ec670655b
--- /dev/null
+++ b/dist/ionicons/iosGlasses.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosGlasses = void 0;
+var iosGlasses = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M465.4,247c-2.2-22-12.4-43-28.9-58.4c-17.1-15.9-39.3-24.7-62.7-24.7c-41.5,0-77.3,27.4-88.5,67c-7-7-18.5-11.7-29.3-11.7\r\n\tc-10.8,0-22.3,4.7-29.3,11.7c-11.2-39.6-47-67-88.5-67c-23.3,0-45.6,8.7-62.7,24.6C59,204,48.8,225,46.6,247H32v18h14.6\r\n\tc2.2,22,12.4,43,28.9,58.4c17.1,15.9,39.3,24.7,62.7,24.7c50.8,0,92.1-41.2,92.1-92c0-0.1,0-0.1,0-0.1h0c0-9.9,11.5-21.6,25.7-21.6\r\n\ts25.7,11.7,25.7,21.6h0c0,0,0,0,0,0.1c0,50.8,41.3,92,92.1,92c23.3,0,45.6-8.7,62.7-24.7c16.5-15.4,26.7-36.5,28.9-58.5H480v-18\r\n\tH465.4z"
+ },
+ "children": []
+ }]
+};
+exports.iosGlasses = iosGlasses;
\ No newline at end of file
diff --git a/dist/ionicons/iosGlassesOutline.js b/dist/ionicons/iosGlassesOutline.js
new file mode 100644
index 000000000..fcaa114ec
--- /dev/null
+++ b/dist/ionicons/iosGlassesOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosGlassesOutline = void 0;
+var iosGlassesOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M465.4,247c-2.2-22-12.4-43-28.9-58.4c-17.1-15.9-39.3-24.7-62.7-24.7c-41.5,0-77.3,27.4-88.5,67c-7-7-18.5-11.7-29.3-11.7\r\n\tc-10.8,0-22.3,4.7-29.3,11.7c-11.2-39.6-47-67-88.5-67c-23.3,0-45.6,8.7-62.7,24.6C59,204,48.8,225,46.6,247H32v18h14.6\r\n\tc2.2,22,12.4,43,28.9,58.4c17.1,15.9,39.3,24.7,62.7,24.7c50.8,0,92.1-41.2,92.1-92c0-0.1,0-0.1,0-0.1h0c0-9.9,11.5-21.6,25.7-21.6\r\n\ts25.7,11.7,25.7,21.6h0c0,0,0,0,0,0.1c0,50.8,41.3,92,92.1,92c23.3,0,45.6-8.7,62.7-24.7c16.5-15.4,26.7-36.5,28.9-58.5H480v-18\r\n\tH465.4z M373.8,333c-42.5,0-77-34.6-77-77c0-42.5,34.6-77,77-77c42.5,0,77,34.6,77,77C450.8,298.5,416.3,333,373.8,333z M138.2,333\r\n\tc-42.5,0-77-34.6-77-77c0-42.5,34.6-77,77-77c42.5,0,77,34.6,77,77C215.2,298.5,180.7,333,138.2,333z"
+ },
+ "children": []
+ }]
+};
+exports.iosGlassesOutline = iosGlassesOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosGridView.js b/dist/ionicons/iosGridView.js
new file mode 100644
index 000000000..cae25a582
--- /dev/null
+++ b/dist/ionicons/iosGridView.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosGridView = void 0;
+var iosGridView = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "192",
+ "width": "128",
+ "height": "128"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "192",
+ "width": "128",
+ "height": "128"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M64,64v384h384V64H64z M416,192h-80v128h80v16h-80v80h-16v-80H192v80h-16v-80H96v-16h80V192H96v-16h80V96h16v80h128V96h16\r\n\t\tv80h80V192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,64v384h384V64H64z M416,192h-80v128h80v16h-80v80h-16v-80H192v80h-16v-80H96v-16h80V192H96v-16h80V96h16v80h128V96h16\r\n\t\tv80h80V192z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosGridView = iosGridView;
\ No newline at end of file
diff --git a/dist/ionicons/iosGridViewOutline.js b/dist/ionicons/iosGridViewOutline.js
new file mode 100644
index 000000000..b6b556dd1
--- /dev/null
+++ b/dist/ionicons/iosGridViewOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosGridViewOutline = void 0;
+var iosGridViewOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,192v-16H336V64h-16v112H192V64h-16v112H64v16h112v128H64v16h112v112h16V336h128v112h16V336h112v-16H336V192H448z\r\n\t M320,320H192V192h128V320z"
+ },
+ "children": []
+ }]
+};
+exports.iosGridViewOutline = iosGridViewOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosHeart.js b/dist/ionicons/iosHeart.js
new file mode 100644
index 000000000..55b373869
--- /dev/null
+++ b/dist/ionicons/iosHeart.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosHeart = void 0;
+var iosHeart = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M359.385,80C319.966,80,277.171,97.599,256,132.8C234.83,97.599,192.034,80,152.615,80C83.647,80,32,123.238,32,195.779\r\n\tc0,31.288,12.562,71.924,40.923,105.657c28.359,33.735,45.229,51.7,100.153,88C228,425.738,256,432,256,432s28-6.262,82.924-42.564\r\n\tc54.923-36.3,71.794-54.265,100.153-88C467.438,267.703,480,227.067,480,195.779C480,123.238,428.353,80,359.385,80z"
+ },
+ "children": []
+ }]
+};
+exports.iosHeart = iosHeart;
\ No newline at end of file
diff --git a/dist/ionicons/iosHeartOutline.js b/dist/ionicons/iosHeartOutline.js
new file mode 100644
index 000000000..da241b078
--- /dev/null
+++ b/dist/ionicons/iosHeartOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosHeartOutline = void 0;
+var iosHeartOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M359.385,80C319.966,80,277.171,97.599,256,132.8C234.83,97.599,192.034,80,152.615,80C83.647,80,32,123.238,32,195.779\r\n\tc0,31.288,12.562,71.924,40.923,105.657c28.359,33.735,45.229,51.7,100.153,88C228,425.738,256,432,256,432s28-6.262,82.924-42.564\r\n\tc54.923-36.3,71.794-54.265,100.153-88C467.438,267.703,480,227.067,480,195.779C480,123.238,428.353,80,359.385,80z\r\n\t M426.83,291.141c-26.852,31.94-42.18,48.895-96.729,84.947c-40.237,26.596-65.252,36.301-74.102,39.233\r\n\tc-8.85-2.933-33.864-12.639-74.102-39.233c-54.548-36.052-69.876-53.006-96.729-84.948c-12.065-14.351-21.857-31.274-28.316-48.943\r\n\tC51.062,226.355,48,210.304,48,195.779c0-30.284,10.131-55.643,29.297-73.335c9.14-8.437,20.158-14.992,32.752-19.484\r\n\tC122.994,98.341,137.315,96,152.615,96c38.018,0,73.217,17.682,89.674,45.046L256,163.844l13.711-22.798\r\n\tC286.169,113.682,321.368,96,359.385,96c15.3,0,29.621,2.341,42.566,6.959c12.594,4.493,23.612,11.048,32.752,19.484\r\n\tC453.869,140.136,464,165.495,464,195.779c0,14.525-3.062,30.576-8.854,46.418C448.688,259.865,438.896,276.789,426.83,291.141z"
+ },
+ "children": []
+ }]
+};
+exports.iosHeartOutline = iosHeartOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosHelp.js b/dist/ionicons/iosHelp.js
new file mode 100644
index 000000000..2b7852b7c
--- /dev/null
+++ b/dist/ionicons/iosHelp.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosHelp = void 0;
+var iosHelp = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z M294.1,250.7\r\n\t\tc-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1c0-23.6-19.4-39.9-42.6-39.9\r\n\t\tc-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6C320,222.3,309.3,236.6,294.1,250.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z M294.1,250.7\r\n\t\tc-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1c0-23.6-19.4-39.9-42.6-39.9\r\n\t\tc-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6C320,222.3,309.3,236.6,294.1,250.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosHelp = iosHelp;
\ No newline at end of file
diff --git a/dist/ionicons/iosHelpEmpty.js b/dist/ionicons/iosHelpEmpty.js
new file mode 100644
index 000000000..c9f8231dd
--- /dev/null
+++ b/dist/ionicons/iosHelpEmpty.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosHelpEmpty = void 0;
+var iosHelpEmpty = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z\r\n\t\t M294.1,250.7c-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1\r\n\t\tc0-23.6-19.4-39.9-42.6-39.9c-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6\r\n\t\tC320,222.3,309.3,236.6,294.1,250.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M260.3,366c-9.4,0-17-7.5-17-16.9c0-9.3,7.6-16.8,17-16.8c9.4,0,17,7.5,17,16.8C277.3,358.5,269.7,366,260.3,366z\r\n\t\t M294.1,250.7c-22.8,22.5-22.2,27.4-23.3,53.3h-19c1.1-28.5,7.5-43.7,30.1-64.5c11-10.3,19.4-22.7,19.4-38.1\r\n\t\tc0-23.6-19.4-39.9-42.6-39.9c-32.4,0-48.5,16.4-47.9,46.4H192c0.3-42,24.4-62.1,67.6-62.1c33,0,60.4,20.4,60.4,54.6\r\n\t\tC320,222.3,309.3,236.6,294.1,250.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosHelpEmpty = iosHelpEmpty;
\ No newline at end of file
diff --git a/dist/ionicons/iosHelpOutline.js b/dist/ionicons/iosHelpOutline.js
new file mode 100644
index 000000000..940f0a21f
--- /dev/null
+++ b/dist/ionicons/iosHelpOutline.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosHelpOutline = void 0;
+var iosHelpOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M259.6,146c-43.2,0-67.3,20.3-67.6,62.2h18.8c-0.6-30.4,15.5-46.5,47.9-46.5c23.2,0,42.6,16.2,42.6,39.8\r\n\t\t\tc0,15.3-8.3,27.7-19.4,38.1c-22.6,20.8-29,36-30.1,64.5h19c1.1-25.8,0.5-30.7,23.3-53.3c15.2-14.2,25.9-28.3,25.9-50.2\r\n\t\t\tC320,166.4,292.6,146,259.6,146z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M259.6,146c-43.2,0-67.3,20.3-67.6,62.2h18.8c-0.6-30.4,15.5-46.5,47.9-46.5c23.2,0,42.6,16.2,42.6,39.8\r\n\t\t\tc0,15.3-8.3,27.7-19.4,38.1c-22.6,20.8-29,36-30.1,64.5h19c1.1-25.8,0.5-30.7,23.3-53.3c15.2-14.2,25.9-28.3,25.9-50.2\r\n\t\t\tC320,166.4,292.6,146,259.6,146z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M260.3,332.3c-9.4,0-17,7.5-17,16.8c0,9.3,7.6,16.9,17,16.9c9.4,0,17-7.5,17-16.9C277.3,339.8,269.7,332.3,260.3,332.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M260.3,332.3c-9.4,0-17,7.5-17,16.8c0,9.3,7.6,16.9,17,16.9c9.4,0,17-7.5,17-16.9C277.3,339.8,269.7,332.3,260.3,332.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosHelpOutline = iosHelpOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosHome.js b/dist/ionicons/iosHome.js
new file mode 100644
index 000000000..59ab8fe17
--- /dev/null
+++ b/dist/ionicons/iosHome.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosHome = void 0;
+var iosHome = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,112L96,240v208h112V320h96v128h112V240L256,112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,112L96,240v208h112V320h96v128h112V240L256,112z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosHome = iosHome;
\ No newline at end of file
diff --git a/dist/ionicons/iosHomeOutline.js b/dist/ionicons/iosHomeOutline.js
new file mode 100644
index 000000000..5e70d67af
--- /dev/null
+++ b/dist/ionicons/iosHomeOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosHomeOutline = void 0;
+var iosHomeOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,112L96,240v208h112V320h96v128h112V240L256,112z M400,432h-80V304H192v128h-80V247.69l144-115.2l144,115.2V432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,112L96,240v208h112V320h96v128h112V240L256,112z M400,432h-80V304H192v128h-80V247.69l144-115.2l144,115.2V432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z M144,153.599\r\n\t\tl-32,25.6V112h32V153.599z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64l-96,76.8V96H96v95.999l-32,25.499l11.51,11.384L256,84.49l180.49,144.393L448,217.498L256,64z M144,153.599\r\n\t\tl-32,25.6V112h32V153.599z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosHomeOutline = iosHomeOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosInfinite.js b/dist/ionicons/iosInfinite.js
new file mode 100644
index 000000000..6006d9e51
--- /dev/null
+++ b/dist/ionicons/iosInfinite.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosInfinite = void 0;
+var iosInfinite = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M456.821,182.377C436.782,162.788,410.062,152,381.585,152c-28.477,0-55.195,10.788-75.21,30.354l-39.106,37.885\r\n\tl25.06,24.689l38.843-37.769c13.458-13.095,31.321-20.307,50.299-20.307c18.979,0,36.841,7.212,50.282,20.291\r\n\tc13.363,13.077,20.712,30.468,20.693,48.97c-0.019,18.443-7.363,35.75-20.677,48.728c-13.458,13.095-31.32,20.307-50.299,20.307\r\n\tc-18.978,0-36.841-7.212-50.291-20.299L205.646,182.359C185.491,162.782,158.778,152,130.427,152\r\n\tc-28.477,0-55.195,10.788-75.23,30.373C35.103,201.986,24.023,228.132,24,255.993c-0.024,27.822,11.055,53.973,31.192,73.63\r\n\tC75.232,349.212,101.951,360,130.427,360c28.475,0,55.194-10.788,75.223-30.363l38.994-37.909l-25.088-24.502l-38.829,37.615\r\n\tc-13.458,13.095-31.321,20.307-50.3,20.307c-18.977,0-36.839-7.212-50.28-20.291c-13.364-13.077-20.714-30.469-20.694-48.971\r\n\tc0.019-18.443,7.363-35.749,20.678-48.727c13.458-13.095,31.32-20.307,50.297-20.307c18.979,0,36.842,7.212,50.292,20.299\r\n\tl125.532,122.489C326.406,349.218,353.119,360,381.47,360c28.476,0,55.194-10.788,75.213-30.355\r\n\tc20.179-19.573,31.301-45.727,31.317-73.64C488.017,228.167,476.942,202.018,456.821,182.377z"
+ },
+ "children": []
+ }]
+};
+exports.iosInfinite = iosInfinite;
\ No newline at end of file
diff --git a/dist/ionicons/iosInfiniteOutline.js b/dist/ionicons/iosInfiniteOutline.js
new file mode 100644
index 000000000..825093e1f
--- /dev/null
+++ b/dist/ionicons/iosInfiniteOutline.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosInfiniteOutline = void 0;
+var iosInfiniteOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M451.229,188.098C432.682,169.967,407.95,160,381.585,160c-26.363,0-51.095,9.967-69.642,28.098l-42.229,41.187\r\n\t\tl13.649,13.447l42.229-41.306c14.933-14.529,34.764-22.573,55.878-22.573c21.113,0,40.946,8.044,55.878,22.573\r\n\t\tc30.797,30.139,30.797,79.13,0,109.148c-14.932,14.529-34.765,22.573-55.878,22.573c-21.114,0-40.945-8.044-55.878-22.573\r\n\t\tL200.071,188.098C181.406,169.967,156.675,160,130.427,160c-26.363,0-51.095,9.967-69.643,28.098\r\n\t\tC41.615,206.809,32.021,231.441,32,256c-0.021,24.611,9.573,49.149,28.784,67.902C79.332,342.032,104.063,352,130.427,352\r\n\t\tc26.365,0,51.095-9.968,69.645-28.098l42.111-41.186l-13.647-13.329l-42.229,41.187c-14.932,14.529-34.764,22.573-55.879,22.573\r\n\t\tc-21.113,0-40.944-8.044-55.876-22.573c-30.799-30.14-30.799-79.13,0-109.148c14.932-14.529,34.763-22.573,55.876-22.573\r\n\t\tc21.115,0,40.947,8.044,55.879,22.573l125.52,122.477C330.49,342.032,355.222,352,381.47,352c26.363,0,51.095-9.968,69.643-28.098\r\n\t\tC470.361,305.23,479.985,280.6,480,256C480.015,231.399,470.42,206.83,451.229,188.098z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M451.229,188.098C432.682,169.967,407.95,160,381.585,160c-26.363,0-51.095,9.967-69.642,28.098l-42.229,41.187\r\n\t\tl13.649,13.447l42.229-41.306c14.933-14.529,34.764-22.573,55.878-22.573c21.113,0,40.946,8.044,55.878,22.573\r\n\t\tc30.797,30.139,30.797,79.13,0,109.148c-14.932,14.529-34.765,22.573-55.878,22.573c-21.114,0-40.945-8.044-55.878-22.573\r\n\t\tL200.071,188.098C181.406,169.967,156.675,160,130.427,160c-26.363,0-51.095,9.967-69.643,28.098\r\n\t\tC41.615,206.809,32.021,231.441,32,256c-0.021,24.611,9.573,49.149,28.784,67.902C79.332,342.032,104.063,352,130.427,352\r\n\t\tc26.365,0,51.095-9.968,69.645-28.098l42.111-41.186l-13.647-13.329l-42.229,41.187c-14.932,14.529-34.764,22.573-55.879,22.573\r\n\t\tc-21.113,0-40.944-8.044-55.876-22.573c-30.799-30.14-30.799-79.13,0-109.148c14.932-14.529,34.763-22.573,55.876-22.573\r\n\t\tc21.115,0,40.947,8.044,55.879,22.573l125.52,122.477C330.49,342.032,355.222,352,381.47,352c26.363,0,51.095-9.968,69.643-28.098\r\n\t\tC470.361,305.23,479.985,280.6,480,256C480.015,231.399,470.42,206.83,451.229,188.098z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosInfiniteOutline = iosInfiniteOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosInformation.js b/dist/ionicons/iosInformation.js
new file mode 100644
index 000000000..39e7045fb
--- /dev/null
+++ b/dist/ionicons/iosInformation.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosInformation = void 0;
+var iosInformation = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M251.5,152c11.1,0,20,9,20,20s-9,20-20,20c-11,0-20-9-20-20S240.4,152,251.5,152z M288,352h-64v-8h16V224h-16v-8h48v128h16V352z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t M251.5,152c11.1,0,20,9,20,20s-9,20-20,20c-11,0-20-9-20-20S240.4,152,251.5,152z M288,352h-64v-8h16V224h-16v-8h48v128h16V352z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosInformation = iosInformation;
\ No newline at end of file
diff --git a/dist/ionicons/iosInformationEmpty.js b/dist/ionicons/iosInformationEmpty.js
new file mode 100644
index 000000000..91397f60b
--- /dev/null
+++ b/dist/ionicons/iosInformationEmpty.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosInformationEmpty = void 0;
+var iosInformationEmpty = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "251.5",
+ "cy": "172",
+ "r": "20"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "251.5",
+ "cy": "172",
+ "r": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosInformationEmpty = iosInformationEmpty;
\ No newline at end of file
diff --git a/dist/ionicons/iosInformationOutline.js b/dist/ionicons/iosInformationOutline.js
new file mode 100644
index 000000000..79fe486b4
--- /dev/null
+++ b/dist/ionicons/iosInformationOutline.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosInformationOutline = void 0;
+var iosInformationOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "251.5",
+ "cy": "172",
+ "r": "20"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "251.5",
+ "cy": "172",
+ "r": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "272,344 272,216 224,216 224,224 240,224 240,344 224,344 224,352 288,352 288,344 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t\t\t M256,446.7c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosInformationOutline = iosInformationOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosIonicOutline.js b/dist/ionicons/iosIonicOutline.js
new file mode 100644
index 000000000..cae945771
--- /dev/null
+++ b/dist/ionicons/iosIonicOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosIonicOutline = void 0;
+var iosIonicOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M425.5,134.8c4.7-5.9,7.5-13.5,7.5-21.6c0-19.2-15.6-34.9-34.8-34.9c-8.2,0-15.7,2.8-21.6,7.5c-34-24.2-75-37.8-119.9-37.8\r\n\t\tC141.8,48,48,140.5,48,255.6C48,370.7,141.7,464,256.6,464C371.5,464,464,370.7,464,255.6C464,210.6,449.7,168.9,425.5,134.8z\r\n\t\t M398,91.3c12.2,0,22,9.9,22,22c0,12.2-9.9,22-22,22c-12.2,0-22-9.9-22-22C376,101.2,385.8,91.3,398,91.3z M391.8,391.7\r\n\t\tc-17.6,17.6-38.2,31.6-61.1,41.3c-23.7,10-48.2,15.2-74.2,15.2c-25.9,0-51.7-5.1-75.4-15.2c-22.9-9.7-43.4-23.5-61.1-41.3\r\n\t\tc-17.6-17.6-31.5-38.3-41.2-61.2c-10-23.7-15.1-48.9-15.1-74.9c0-25.9,5.1-51.2,15.1-74.9c9.7-22.9,23.5-43.5,41.2-61.2\r\n\t\ts38.2-31.6,61.1-41.3c23.7-10,49.4-14.1,75.4-14.1c25.9,0,50.5,4,74.2,14.1c12.7,5.4,24.7,12.1,35.9,20c-2.1,4.5-3.3,9.5-3.3,14.9\r\n\t\tc0,19.2,15.6,34.9,34.8,34.9c5.3,0,10.3-1.2,14.9-3.3c7.9,11.2,14.6,23.2,20,36c10,23.7,15.1,48.9,15.1,74.9\r\n\t\tc0,25.9-5.1,51.2-15.1,74.9C423.3,353.4,409.5,374,391.8,391.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M425.5,134.8c4.7-5.9,7.5-13.5,7.5-21.6c0-19.2-15.6-34.9-34.8-34.9c-8.2,0-15.7,2.8-21.6,7.5c-34-24.2-75-37.8-119.9-37.8\r\n\t\tC141.8,48,48,140.5,48,255.6C48,370.7,141.7,464,256.6,464C371.5,464,464,370.7,464,255.6C464,210.6,449.7,168.9,425.5,134.8z\r\n\t\t M398,91.3c12.2,0,22,9.9,22,22c0,12.2-9.9,22-22,22c-12.2,0-22-9.9-22-22C376,101.2,385.8,91.3,398,91.3z M391.8,391.7\r\n\t\tc-17.6,17.6-38.2,31.6-61.1,41.3c-23.7,10-48.2,15.2-74.2,15.2c-25.9,0-51.7-5.1-75.4-15.2c-22.9-9.7-43.4-23.5-61.1-41.3\r\n\t\tc-17.6-17.6-31.5-38.3-41.2-61.2c-10-23.7-15.1-48.9-15.1-74.9c0-25.9,5.1-51.2,15.1-74.9c9.7-22.9,23.5-43.5,41.2-61.2\r\n\t\ts38.2-31.6,61.1-41.3c23.7-10,49.4-14.1,75.4-14.1c25.9,0,50.5,4,74.2,14.1c12.7,5.4,24.7,12.1,35.9,20c-2.1,4.5-3.3,9.5-3.3,14.9\r\n\t\tc0,19.2,15.6,34.9,34.8,34.9c5.3,0,10.3-1.2,14.9-3.3c7.9,11.2,14.6,23.2,20,36c10,23.7,15.1,48.9,15.1,74.9\r\n\t\tc0,25.9-5.1,51.2-15.1,74.9C423.3,353.4,409.5,374,391.8,391.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256.5,160.1c-53,0-96,42.8-96,95.9s42.9,96.1,96,96.1c53,0,96-43,96-96.1S309.5,160.1,256.5,160.1z M256.5,335.8\r\n\t\tc-44.1,0-79.7-35.8-79.7-79.8c0-44.1,35.6-79.6,79.7-79.6s79.7,35.6,79.7,79.6C336.2,300.1,300.5,335.8,256.5,335.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.5,160.1c-53,0-96,42.8-96,95.9s42.9,96.1,96,96.1c53,0,96-43,96-96.1S309.5,160.1,256.5,160.1z M256.5,335.8\r\n\t\tc-44.1,0-79.7-35.8-79.7-79.8c0-44.1,35.6-79.6,79.7-79.6s79.7,35.6,79.7,79.6C336.2,300.1,300.5,335.8,256.5,335.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosIonicOutline = iosIonicOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosKeypad.js b/dist/ionicons/iosKeypad.js
new file mode 100644
index 000000000..a1784c6f1
--- /dev/null
+++ b/dist/ionicons/iosKeypad.js
@@ -0,0 +1,123 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosKeypad = void 0;
+var iosKeypad = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosKeypad = iosKeypad;
\ No newline at end of file
diff --git a/dist/ionicons/iosKeypadOutline.js b/dist/ionicons/iosKeypadOutline.js
new file mode 100644
index 000000000..4e1c2fe11
--- /dev/null
+++ b/dist/ionicons/iosKeypadOutline.js
@@ -0,0 +1,123 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosKeypadOutline = void 0;
+var iosKeypadOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z\r\n\t\t M394.6,432c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C432,415.2,415.2,432,394.6,432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,341.2c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,341.2,394.6,341.2z\r\n\t\t M394.6,432c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C432,415.2,415.2,432,394.6,432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z M256,432\r\n\t\tc-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,415.2,276.6,432,256,432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,341.2c-29.5,0-53.4,23.9-53.4,53.4S226.5,448,256,448c29.5,0,53.4-23.9,53.4-53.4S285.5,341.2,256,341.2z M256,432\r\n\t\tc-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,415.2,276.6,432,256,432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z\r\n\t\t M117.4,432C96.8,432,80,415.2,80,394.6c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,415.2,138.1,432,117.4,432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,341.2c-29.5,0-53.4,23.9-53.4,53.4S87.9,448,117.4,448c29.5,0,53.4-23.9,53.4-53.4S146.9,341.2,117.4,341.2z\r\n\t\t M117.4,432C96.8,432,80,415.2,80,394.6c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,415.2,138.1,432,117.4,432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z\r\n\t\t M394.6,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4S432,235.4,432,256C432,276.6,415.2,293.4,394.6,293.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S424.1,202.6,394.6,202.6z\r\n\t\t M394.6,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4S432,235.4,432,256C432,276.6,415.2,293.4,394.6,293.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z\r\n\t\t M256,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,276.6,276.6,293.4,256,293.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,202.6c-29.5,0-53.4,23.9-53.4,53.4s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S285.5,202.6,256,202.6z\r\n\t\t M256,293.4c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,276.6,276.6,293.4,256,293.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z\r\n\t\t M117.4,293.4C96.8,293.4,80,276.6,80,256c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,276.6,138.1,293.4,117.4,293.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,202.6C87.9,202.6,64,226.5,64,256s23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4S146.9,202.6,117.4,202.6z\r\n\t\t M117.4,293.4C96.8,293.4,80,276.6,80,256c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C154.8,276.6,138.1,293.4,117.4,293.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z M394.6,80c20.6,0,37.4,16.8,37.4,37.4c0,20.6-16.8,37.4-37.4,37.4s-37.4-16.8-37.4-37.4\r\n\t\tC357.2,96.8,373.9,80,394.6,80z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M394.6,170.8c29.5,0,53.4-23.9,53.4-53.4c0-29.5-23.9-53.4-53.4-53.4c-29.5,0-53.4,23.9-53.4,53.4\r\n\t\tC341.2,146.9,365.1,170.8,394.6,170.8z M394.6,80c20.6,0,37.4,16.8,37.4,37.4c0,20.6-16.8,37.4-37.4,37.4s-37.4-16.8-37.4-37.4\r\n\t\tC357.2,96.8,373.9,80,394.6,80z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z\r\n\t\t M256,154.8c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,138,276.6,154.8,256,154.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c-29.5,0-53.4,23.9-53.4,53.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C309.4,87.9,285.5,64,256,64z\r\n\t\t M256,154.8c-20.6,0-37.4-16.8-37.4-37.4c0-20.6,16.8-37.4,37.4-37.4s37.4,16.8,37.4,37.4C293.4,138,276.6,154.8,256,154.8z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t M117.4,154.8C96.8,154.8,80,138,80,117.4C80,96.8,96.8,80,117.4,80s37.4,16.8,37.4,37.4C154.8,138,138.1,154.8,117.4,154.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M117.4,64C87.9,64,64,87.9,64,117.4c0,29.5,23.9,53.4,53.4,53.4c29.5,0,53.4-23.9,53.4-53.4C170.8,87.9,146.9,64,117.4,64z\r\n\t\t M117.4,154.8C96.8,154.8,80,138,80,117.4C80,96.8,96.8,80,117.4,80s37.4,16.8,37.4,37.4C154.8,138,138.1,154.8,117.4,154.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosKeypadOutline = iosKeypadOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosLightbulb.js b/dist/ionicons/iosLightbulb.js
new file mode 100644
index 000000000..8907c5e77
--- /dev/null
+++ b/dist/ionicons/iosLightbulb.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosLightbulb = void 0;
+var iosLightbulb = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h32V256l-32-64h16.6l31.4,64v128h32V256l31.4-64H320l-32,64v128h32v-1.4\r\n\t\t\tc0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h32V256l-32-64h16.6l31.4,64v128h32V256l31.4-64H320l-32,64v128h32v-1.4\r\n\t\t\tc0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "224",
+ "y": "464",
+ "width": "64",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "224",
+ "y": "464",
+ "width": "64",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "432",
+ "width": "96",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "432",
+ "width": "96",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "400",
+ "width": "96",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "400",
+ "width": "96",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosLightbulb = iosLightbulb;
\ No newline at end of file
diff --git a/dist/ionicons/iosLightbulbOutline.js b/dist/ionicons/iosLightbulbOutline.js
new file mode 100644
index 000000000..d9712541d
--- /dev/null
+++ b/dist/ionicons/iosLightbulbOutline.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosLightbulbOutline = void 0;
+var iosLightbulbOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h128v-1.4c0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z\r\n\t\t M351,254.4c-0.6,0.8-1.1,1.5-1.7,2.3c-8.1,10.9-16.5,22.2-24.7,36.1c-17.3,29.7-20.4,57.9-20.8,75.1H288V256l32-64h-16.6L272,256\r\n\t\tv112h-32V256l-31.4-64H192l32,64v112h-15.9c-0.5-17.2-3.9-45.7-20.9-75c-4.5-7.7-9.1-15-13.7-21h0.2l-18.6-25.6\r\n\t\tc-15.8-21.6-27.1-47.1-27.1-73.6c0-33.4,16-64.8,39.6-88.4s55-36.7,88.4-36.7c33.4,0,64.8,13.1,88.4,36.7\r\n\t\tc23.6,23.6,39.6,55,39.6,88.4c0,26.5-11.3,51.9-27.1,73.5L351,254.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M400,172.9C400,95.1,333.9,32,256,32c-77.9,0-144,63.1-144,141c0,31,13.2,59,30.2,83h-0.3c10.9,15,21.4,27.7,31.5,45\r\n\t\tc22,37.8,18.6,74.3,18.7,81.6v1.4h128v-1.4c0-8.9-3.6-43.8,18.4-81.6c10.1-17.3,20.6-30,31.5-45h-0.1C386.8,232,400,204,400,172.9z\r\n\t\t M351,254.4c-0.6,0.8-1.1,1.5-1.7,2.3c-8.1,10.9-16.5,22.2-24.7,36.1c-17.3,29.7-20.4,57.9-20.8,75.1H288V256l32-64h-16.6L272,256\r\n\t\tv112h-32V256l-31.4-64H192l32,64v112h-15.9c-0.5-17.2-3.9-45.7-20.9-75c-4.5-7.7-9.1-15-13.7-21h0.2l-18.6-25.6\r\n\t\tc-15.8-21.6-27.1-47.1-27.1-73.6c0-33.4,16-64.8,39.6-88.4s55-36.7,88.4-36.7c33.4,0,64.8,13.1,88.4,36.7\r\n\t\tc23.6,23.6,39.6,55,39.6,88.4c0,26.5-11.3,51.9-27.1,73.5L351,254.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "224",
+ "y": "464",
+ "width": "64",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "224",
+ "y": "464",
+ "width": "64",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "432",
+ "width": "96",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "432",
+ "width": "96",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "400",
+ "width": "96",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "400",
+ "width": "96",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosLightbulbOutline = iosLightbulbOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosList.js b/dist/ionicons/iosList.js
new file mode 100644
index 000000000..2e53e0978
--- /dev/null
+++ b/dist/ionicons/iosList.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosList = void 0;
+var iosList = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,64v384h384V64H64z M144,368c-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,368,144,368z M144,272\r\n\t\tc-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,272,144,272z M144,176c-8.836,0-16-7.164-16-16s7.164-16,16-16\r\n\t\ts16,7.164,16,16S152.836,176,144,176z M384,360H192v-16h192V360z M384,264H192v-16h192V264z M384,168H192v-16h192V168z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,64v384h384V64H64z M144,368c-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,368,144,368z M144,272\r\n\t\tc-8.836,0-16-7.164-16-16s7.164-16,16-16s16,7.164,16,16S152.836,272,144,272z M144,176c-8.836,0-16-7.164-16-16s7.164-16,16-16\r\n\t\ts16,7.164,16,16S152.836,176,144,176z M384,360H192v-16h192V360z M384,264H192v-16h192V264z M384,168H192v-16h192V168z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosList = iosList;
\ No newline at end of file
diff --git a/dist/ionicons/iosListOutline.js b/dist/ionicons/iosListOutline.js
new file mode 100644
index 000000000..4bbe2a1dc
--- /dev/null
+++ b/dist/ionicons/iosListOutline.js
@@ -0,0 +1,161 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosListOutline = void 0;
+var iosListOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M432,80v352H80V80H432 M448,64H64v384h384V64L448,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M432,80v352H80V80H432 M448,64H64v384h384V64L448,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "152",
+ "width": "192",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "152",
+ "width": "192",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "248",
+ "width": "192",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "248",
+ "width": "192",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "344",
+ "width": "192",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "344",
+ "width": "192",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "144",
+ "cy": "160",
+ "r": "16"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "144",
+ "cy": "160",
+ "r": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "144",
+ "cy": "256",
+ "r": "16"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "144",
+ "cy": "256",
+ "r": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "144",
+ "cy": "352",
+ "r": "16"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "144",
+ "cy": "352",
+ "r": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosListOutline = iosListOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosLocation.js b/dist/ionicons/iosLocation.js
new file mode 100644
index 000000000..84d26bae1
--- /dev/null
+++ b/dist/ionicons/iosLocation.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosLocation = void 0;
+var iosLocation = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304C400,96.471,335.529,32,256,32z M256,222.9\r\n\tc-25.9,0-46.9-21-46.9-46.9s21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z"
+ },
+ "children": []
+ }]
+};
+exports.iosLocation = iosLocation;
\ No newline at end of file
diff --git a/dist/ionicons/iosLocationOutline.js b/dist/ionicons/iosLocationOutline.js
new file mode 100644
index 000000000..45d492bf9
--- /dev/null
+++ b/dist/ionicons/iosLocationOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosLocationOutline = void 0;
+var iosLocationOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c34.19,0,66.334,13.314,90.51,37.49S384,141.81,384,176c0,42.92-24.092,107.127-69.67,185.68\r\n\t\tc-22.279,38.396-44.771,71.634-58.332,90.931c-13.518-19.232-35.912-52.327-58.161-90.645C152.149,283.281,128,218.976,128,176\r\n\t\tc0-34.19,13.314-66.334,37.49-90.51S221.81,48,256,48 M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304\r\n\t\tC400,96.471,335.529,32,256,32L256,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c34.19,0,66.334,13.314,90.51,37.49S384,141.81,384,176c0,42.92-24.092,107.127-69.67,185.68\r\n\t\tc-22.279,38.396-44.771,71.634-58.332,90.931c-13.518-19.232-35.912-52.327-58.161-90.645C152.149,283.281,128,218.976,128,176\r\n\t\tc0-34.19,13.314-66.334,37.49-90.51S221.81,48,256,48 M256,32c-79.529,0-144,64.471-144,144c0,112,144,304,144,304s144-192,144-304\r\n\t\tC400,96.471,335.529,32,256,32L256,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,112c-35.3,0-64,28.7-64,64s28.7,64,64,64s64-28.7,64-64S291.3,112,256,112z M256,222.9c-25.9,0-46.9-21-46.9-46.9\r\n\t\ts21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,112c-35.3,0-64,28.7-64,64s28.7,64,64,64s64-28.7,64-64S291.3,112,256,112z M256,222.9c-25.9,0-46.9-21-46.9-46.9\r\n\t\ts21-46.9,46.9-46.9s46.9,21,46.9,46.9S281.9,222.9,256,222.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosLocationOutline = iosLocationOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosLocked.js b/dist/ionicons/iosLocked.js
new file mode 100644
index 000000000..7fa9efee1
--- /dev/null
+++ b/dist/ionicons/iosLocked.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosLocked = void 0;
+var iosLocked = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M264,350.992V384h-16\r\n\t\tv-33.008c-13.802-3.553-24-16.082-24-30.992c0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z\r\n\t\t M344,224H168v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152V224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M264,350.992V384h-16\r\n\t\tv-33.008c-13.802-3.553-24-16.082-24-30.992c0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z\r\n\t\t M344,224H168v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152V224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosLocked = iosLocked;
\ No newline at end of file
diff --git a/dist/ionicons/iosLockedOutline.js b/dist/ionicons/iosLockedOutline.js
new file mode 100644
index 000000000..401e68d97
--- /dev/null
+++ b/dist/ionicons/iosLockedOutline.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosLockedOutline = void 0;
+var iosLockedOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M168,152\r\n\t\t\tc0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v72H168V152z M400,448H112V240h288V448z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M360,224v-72c0-57.43-46.562-104-103.984-104C198.562,48,152,94.57,152,152v72H96v240h320V224H360z M168,152\r\n\t\t\tc0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v72H168V152z M400,448H112V240h288V448z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosLockedOutline = iosLockedOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosLoop.js b/dist/ionicons/iosLoop.js
new file mode 100644
index 000000000..5e6bd2b9a
--- /dev/null
+++ b/dist/ionicons/iosLoop.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosLoop = void 0;
+var iosLoop = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "489.373,256 448,297.373 405.627,256 394.813,266.813 448,320 500.687,267.313 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "489.373,256 448,297.373 405.627,256 394.813,266.813 448,320 500.687,267.313 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M459.994,255.509c-0.002-0.577,0.013-1.157,0.007-1.733l-0.029-0.003C458.771,142.311,367.742,52,256,52\r\n\t\t\tc-73.59,0-141.753,39.878-177.888,104.071l13.943,7.848C125.359,104.754,188.18,68,256,68\r\n\t\t\tc103.273,0,187.355,83.708,187.985,186.836c0.038,6.882-0.281,13.83-1.017,20.831l15.912,1.674\r\n\t\t\tc0.755-7.168,1.105-14.286,1.111-21.341H460C460,255.836,459.994,255.673,459.994,255.509z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M459.994,255.509c-0.002-0.577,0.013-1.157,0.007-1.733l-0.029-0.003C458.771,142.311,367.742,52,256,52\r\n\t\t\tc-73.59,0-141.753,39.878-177.888,104.071l13.943,7.848C125.359,104.754,188.18,68,256,68\r\n\t\t\tc103.273,0,187.355,83.708,187.985,186.836c0.038,6.882-0.281,13.83-1.017,20.831l15.912,1.674\r\n\t\t\tc0.755-7.168,1.105-14.286,1.111-21.341H460C460,255.836,459.994,255.673,459.994,255.509z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M419.944,348.081C386.641,407.246,323.82,444,256,444c-103.475,0-187.688-84.032-187.993-187.437\r\n\t\t\tc-0.015-6.686,0.31-13.434,1.024-20.23l-15.912-1.674c-0.754,7.168-1.104,14.286-1.108,21.341H52c0,0.472,0.015,0.939,0.018,1.41\r\n\t\t\tc0.006,0.975-0.006,1.952,0.015,2.924l0.022-0.003C54.369,370.825,144.962,460,256,460c73.59,0,141.753-39.878,177.888-104.071\r\n\t\t\tL419.944,348.081z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M419.944,348.081C386.641,407.246,323.82,444,256,444c-103.475,0-187.688-84.032-187.993-187.437\r\n\t\t\tc-0.015-6.686,0.31-13.434,1.024-20.23l-15.912-1.674c-0.754,7.168-1.104,14.286-1.108,21.341H52c0,0.472,0.015,0.939,0.018,1.41\r\n\t\t\tc0.006,0.975-0.006,1.952,0.015,2.924l0.022-0.003C54.369,370.825,144.962,460,256,460c73.59,0,141.753-39.878,177.888-104.071\r\n\t\t\tL419.944,348.081z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64,192 11.313,244.687 22.627,256 64,214.627 105.373,256 116.687,244.687 \t\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64,192 11.313,244.687 22.627,256 64,214.627 105.373,256 116.687,244.687 \t\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosLoop = iosLoop;
\ No newline at end of file
diff --git a/dist/ionicons/iosLoopStrong.js b/dist/ionicons/iosLoopStrong.js
new file mode 100644
index 000000000..114ec5737
--- /dev/null
+++ b/dist/ionicons/iosLoopStrong.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosLoopStrong = void 0;
+var iosLoopStrong = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c-75.033,0-144.531,40.658-181.373,106.107l-1.963,3.485l20.915,11.771l1.962-3.485\r\n\t\t\tC128.138,107.973,189.621,72,256,72c101.458,0,184,82.542,184,184c0,12.509-1.262,25.007-3.749,37.147l-0.803,3.918l23.511,4.819\r\n\t\t\tl0.804-3.919C462.574,284.244,464,270.125,464,256C464,141.309,370.691,48,256,48z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c-75.033,0-144.531,40.658-181.373,106.107l-1.963,3.485l20.915,11.771l1.962-3.485\r\n\t\t\tC128.138,107.973,189.621,72,256,72c101.458,0,184,82.542,184,184c0,12.509-1.262,25.007-3.749,37.147l-0.803,3.918l23.511,4.819\r\n\t\t\tl0.804-3.919C462.574,284.244,464,270.125,464,256C464,141.309,370.691,48,256,48z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M416.459,346.119C383.862,404.027,322.379,440,256,440c-101.458,0-184-82.542-184-184c0-12.512,1.262-25.011,3.75-37.15\r\n\t\t\tl0.803-3.918l-23.511-4.819l-0.804,3.918C49.426,227.75,48,241.87,48,256c0,114.691,93.309,208,208,208\r\n\t\t\tc75.033,0,144.531-40.658,181.373-106.109l1.963-3.485l-20.915-11.771L416.459,346.119z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416.459,346.119C383.862,404.027,322.379,440,256,440c-101.458,0-184-82.542-184-184c0-12.512,1.262-25.011,3.75-37.15\r\n\t\t\tl0.803-3.918l-23.511-4.819l-0.804,3.918C49.426,227.75,48,241.87,48,256c0,114.691,93.309,208,208,208\r\n\t\t\tc75.033,0,144.531-40.658,181.373-106.109l1.963-3.485l-20.915-11.771L416.459,346.119z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "384,256 448,320 512,256 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "384,256 448,320 512,256 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "0,256 64,192 128,256 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "0,256 64,192 128,256 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosLoopStrong = iosLoopStrong;
\ No newline at end of file
diff --git a/dist/ionicons/iosMedical.js b/dist/ionicons/iosMedical.js
new file mode 100644
index 000000000..12904aedd
--- /dev/null
+++ b/dist/ionicons/iosMedical.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMedical = void 0;
+var iosMedical = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M438,187.713l-31.927-55.426L288,200.574V64h-64v136.574l-118.073-68.287l-31.938,55.426L192.092,256L73.998,324.287\r\n\tl31.928,55.426L224,311.426V448h64V311.426l118.072,68.287l31.939-55.426L319.908,256L438,187.713z"
+ },
+ "children": []
+ }]
+};
+exports.iosMedical = iosMedical;
\ No newline at end of file
diff --git a/dist/ionicons/iosMedicalOutline.js b/dist/ionicons/iosMedicalOutline.js
new file mode 100644
index 000000000..16219e5dc
--- /dev/null
+++ b/dist/ionicons/iosMedicalOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMedicalOutline = void 0;
+var iosMedicalOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M438,187.713l-31.927-55.426L288,200.574V64h-64v136.574l-118.073-68.287l-31.938,55.426L192.092,256L73.998,324.287\r\n\tl31.928,55.426L224,311.426V448h64V311.426l118.072,68.287l31.939-55.426L319.908,256L438,187.713z M416.176,330.125l-15.963,27.866\r\n\tL272,284v148h-32V284l-128.213,74l-15.969-27.785l128.228-74.197L95.822,181.861l15.964-27.859L240,228V80h32v148l128.213-74\r\n\tl15.969,27.785l-128.228,74.179L416.176,330.125z"
+ },
+ "children": []
+ }]
+};
+exports.iosMedicalOutline = iosMedicalOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosMedkit.js b/dist/ionicons/iosMedkit.js
new file mode 100644
index 000000000..d5de2c782
--- /dev/null
+++ b/dist/ionicons/iosMedkit.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMedkit = void 0;
+var iosMedkit = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "272,272 272,256 272,208 240,208 240,256 240,272 224,272 176,272 176,304 224,304 240,304 240,320 240,368 \r\n\t\t272,368 272,320 272,304 288,304 336,304 336,272 288,272 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "272,272 272,256 272,208 240,208 240,256 240,272 224,272 176,272 176,304 224,304 240,304 240,320 240,368 \r\n\t\t272,368 272,320 272,304 288,304 336,304 336,272 288,272 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M352,320h-64v64h-64v-64h-64v-64h64v-64h64v64h64V320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M352,320h-64v64h-64v-64h-64v-64h64v-64h64v64h64V320z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMedkit = iosMedkit;
\ No newline at end of file
diff --git a/dist/ionicons/iosMedkitOutline.js b/dist/ionicons/iosMedkitOutline.js
new file mode 100644
index 000000000..3e48047ca
--- /dev/null
+++ b/dist/ionicons/iosMedkitOutline.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMedkitOutline = void 0;
+var iosMedkitOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M272,208v48v16h16h48v32h-48h-16v16v48h-32v-48v-16h-16h-48v-32h48h16v-16v-48H272 M288,192h-64v64h-64v64h64v64h64v-64\r\n\t\t\th64v-64h-64V192L288,192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M272,208v48v16h16h48v32h-48h-16v16v48h-32v-48v-16h-16h-48v-32h48h16v-16v-48H272 M288,192h-64v64h-64v64h64v64h64v-64\r\n\t\t\th64v-64h-64V192L288,192z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M448,432H64V144h384V432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M336,128V96c-0.5-18.2-13.6-32-32.2-32h-99.1C186.1,64,176,77.7,176,96v32H48v320h416V128H336z M192,98.1\r\n\t\tc0-10.2,2.9-18.1,13.7-18.1h97.1c10.4,0,17.2,7.7,17.2,18.1V128H192V98.1z M448,432H64V144h384V432z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMedkitOutline = iosMedkitOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosMic.js b/dist/ionicons/iosMic.js
new file mode 100644
index 000000000..6555e26b5
--- /dev/null
+++ b/dist/ionicons/iosMic.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMic = void 0;
+var iosMic = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,353.5c43.7,0,79-37.5,79-83.5V115.5c0-46-35.3-83.5-79-83.5c-43.7,0-79,37.5-79,83.5V270\r\n\t\tC177,316,212.3,353.5,256,353.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,353.5c43.7,0,79-37.5,79-83.5V115.5c0-46-35.3-83.5-79-83.5c-43.7,0-79,37.5-79,83.5V270\r\n\t\tC177,316,212.3,353.5,256,353.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMic = iosMic;
\ No newline at end of file
diff --git a/dist/ionicons/iosMicOff.js b/dist/ionicons/iosMicOff.js
new file mode 100644
index 000000000..d61f53e56
--- /dev/null
+++ b/dist/ionicons/iosMicOff.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMicOff = void 0;
+var iosMicOff = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "264.2",
+ "y": "1.1",
+ "transform": "matrix(0.8629 -0.5053 0.5053 0.8629 -92.0515 172.66)",
+ "width": "16",
+ "height": "509.8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "264.2",
+ "y": "1.1",
+ "transform": "matrix(0.8629 -0.5053 0.5053 0.8629 -92.0515 172.66)",
+ "width": "16",
+ "height": "509.8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256.2,353.4c12.3,0,23.8-2.9,34.2-8.2L177,152.4V270C177,316,212.4,353.4,256.2,353.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.2,353.4c12.3,0,23.8-2.9,34.2-8.2L177,152.4V270C177,316,212.4,353.4,256.2,353.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M335,270V115.5c0-46-35.2-83.5-79-83.5c-25.4,0-47.8,12.6-62.3,32.2l136.9,233.3C333.5,288.9,335,279.6,335,270z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M335,270V115.5c0-46-35.2-83.5-79-83.5c-25.4,0-47.8,12.6-62.3,32.2l136.9,233.3C333.5,288.9,335,279.6,335,270z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384,271.7V192h-17v79.7c0,21.5-6.2,41.6-17.1,58.5l9.9,17C375.1,326,384,299.9,384,271.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,271.7V192h-17v79.7c0,21.5-6.2,41.6-17.1,58.5l9.9,17C375.1,326,384,299.9,384,271.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M267,399.2c17-1.2,33-5.8,47.3-13l-9.4-16.1c-14.5,7-30.7,10.9-47.7,10.9c-60.3,0-110.1-49-110.1-109.1V192h-19v79.7\r\n\t\tc0,67.2,53,122.6,120,127.4V462h-73v18h161v-18h-69V399.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M267,399.2c17-1.2,33-5.8,47.3-13l-9.4-16.1c-14.5,7-30.7,10.9-47.7,10.9c-60.3,0-110.1-49-110.1-109.1V192h-19v79.7\r\n\t\tc0,67.2,53,122.6,120,127.4V462h-73v18h161v-18h-69V399.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMicOff = iosMicOff;
\ No newline at end of file
diff --git a/dist/ionicons/iosMicOutline.js b/dist/ionicons/iosMicOutline.js
new file mode 100644
index 000000000..2dd810387
--- /dev/null
+++ b/dist/ionicons/iosMicOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMicOutline = void 0;
+var iosMicOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-43.7,0-79,37.5-79,83.5V270c0,46,35.3,83.5,79,83.5c43.7,0,79-37.5,79-83.5V115.5C335,69.5,299.7,32,256,32z\r\n\t\t M319,270c0,37.2-28.3,67.5-63,67.5c-34.7,0-63-30.3-63-67.5V115.5c0-37.2,28.3-67.5,63-67.5c34.7,0,63,30.3,63,67.5V270z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-43.7,0-79,37.5-79,83.5V270c0,46,35.3,83.5,79,83.5c43.7,0,79-37.5,79-83.5V115.5C335,69.5,299.7,32,256,32z\r\n\t\t M319,270c0,37.2-28.3,67.5-63,67.5c-34.7,0-63-30.3-63-67.5V115.5c0-37.2,28.3-67.5,63-67.5c34.7,0,63,30.3,63,67.5V270z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M367,192v79.7c0,60.2-49.8,109.2-110,109.2c-60.2,0-110-49-110-109.2V192h-19v79.7c0,67.2,53,122.6,120,127.5V462h-73v18\r\n\t\th161v-18h-69v-62.8c66-4.9,117-60.3,117-127.5V192H367z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMicOutline = iosMicOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosMinus.js b/dist/ionicons/iosMinus.js
new file mode 100644
index 000000000..13c8f0981
--- /dev/null
+++ b/dist/ionicons/iosMinus.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMinus = void 0;
+var iosMinus = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H128v-17h256V265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H128v-17h256V265z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMinus = iosMinus;
\ No newline at end of file
diff --git a/dist/ionicons/iosMinusEmpty.js b/dist/ionicons/iosMinusEmpty.js
new file mode 100644
index 000000000..307873c14
--- /dev/null
+++ b/dist/ionicons/iosMinusEmpty.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMinusEmpty = void 0;
+var iosMinusEmpty = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,265H128v-17h256V265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,265H128v-17h256V265z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMinusEmpty = iosMinusEmpty;
\ No newline at end of file
diff --git a/dist/ionicons/iosMinusOutline.js b/dist/ionicons/iosMinusOutline.js
new file mode 100644
index 000000000..2a31a2f34
--- /dev/null
+++ b/dist/ionicons/iosMinusOutline.js
@@ -0,0 +1,61 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMinusOutline = void 0;
+var iosMinusOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "128",
+ "y": "248",
+ "width": "256",
+ "height": "17"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "128",
+ "y": "248",
+ "width": "256",
+ "height": "17"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMinusOutline = iosMinusOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosMonitor.js b/dist/ionicons/iosMonitor.js
new file mode 100644
index 000000000..55da6ed77
--- /dev/null
+++ b/dist/ionicons/iosMonitor.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMonitor = void 0;
+var iosMonitor = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M496,384V96H16v288h175v16h-64v16h257v-16h-64v-16H496z M32,112h448v256H32V112z"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "48",
+ "y": "128",
+ "width": "416",
+ "height": "224"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "48",
+ "y": "128",
+ "width": "416",
+ "height": "224"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMonitor = iosMonitor;
\ No newline at end of file
diff --git a/dist/ionicons/iosMonitorOutline.js b/dist/ionicons/iosMonitorOutline.js
new file mode 100644
index 000000000..503f19b72
--- /dev/null
+++ b/dist/ionicons/iosMonitorOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMonitorOutline = void 0;
+var iosMonitorOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M496,384V96H16v288h175v16h-64v16h257v-16h-64v-16H496z M32,112h448v256H32V112z"
+ },
+ "children": []
+ }]
+};
+exports.iosMonitorOutline = iosMonitorOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosMoon.js b/dist/ionicons/iosMoon.js
new file mode 100644
index 000000000..fc5dee4b6
--- /dev/null
+++ b/dist/ionicons/iosMoon.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMoon = void 0;
+var iosMoon = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosMoon = iosMoon;
\ No newline at end of file
diff --git a/dist/ionicons/iosMoonOutline.js b/dist/ionicons/iosMoonOutline.js
new file mode 100644
index 000000000..789ff9755
--- /dev/null
+++ b/dist/ionicons/iosMoonOutline.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMoonOutline = void 0;
+var iosMoonOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z\r\n\t\t\t M263.3,355.1c-54.9,0-99.5-44.6-99.5-99.5c0-39.1,22.6-72.9,55.4-89.2c-4.2,12.5-6.4,25.8-6.4,39.7c0,65.9,51,119.9,115.6,124.7\r\n\t\t\tC311,346,288.2,355.1,263.3,355.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M343.1,315c-1.8,0.1-3.5,0.1-5.3,0.1c-29.1,0-56.5-11.3-77.1-31.9c-20.6-20.6-31.9-48-31.9-77.1\r\n\t\t\tc0-16.6,3.7-32.6,10.6-47.1c3.1-6.4,6.8-12.5,11.1-18.2c-7.6,0.8-14.9,2.4-22,4.6c-46.8,14.8-80.7,58.5-80.7,110.2\r\n\t\t\tc0,63.8,51.7,115.5,115.5,115.5c35.3,0,66.8-15.8,88-40.7c4.8-5.7,9.2-11.9,12.8-18.5C357.3,313.6,350.3,314.7,343.1,315z\r\n\t\t\t M263.3,355.1c-54.9,0-99.5-44.6-99.5-99.5c0-39.1,22.6-72.9,55.4-89.2c-4.2,12.5-6.4,25.8-6.4,39.7c0,65.9,51,119.9,115.6,124.7\r\n\t\t\tC311,346,288.2,355.1,263.3,355.1z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosMoonOutline = iosMoonOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosMore.js b/dist/ionicons/iosMore.js
new file mode 100644
index 000000000..fa92c7293
--- /dev/null
+++ b/dist/ionicons/iosMore.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMore = void 0;
+var iosMore = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M128.4,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128.4,224c-17.7,0-32,14.3-32,32s14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32s32-14.3,32-32S401.7,224,384,224L384,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32s32-14.3,32-32S401.7,224,384,224L384,224z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMore = iosMore;
\ No newline at end of file
diff --git a/dist/ionicons/iosMoreOutline.js b/dist/ionicons/iosMoreOutline.js
new file mode 100644
index 000000000..90eb1c626
--- /dev/null
+++ b/dist/ionicons/iosMoreOutline.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMoreOutline = void 0;
+var iosMoreOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S246.1,238,256,238 M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\tc17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S246.1,238,256,238 M256,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\tc17.7,0,32-14.3,32-32S273.7,224,256,224L256,224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M128.4,238c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S118.5,238,128.4,238 M128.4,224c-17.7,0-32,14.3-32,32\r\n\t\ts14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128.4,238c9.9,0,18,8.1,18,18s-8.1,18-18,18c-9.9,0-18-8.1-18-18S118.5,238,128.4,238 M128.4,224c-17.7,0-32,14.3-32,32\r\n\t\ts14.3,32,32,32c17.7,0,32-14.3,32-32S146,224,128.4,224L128.4,224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S374.1,238,384,238 M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\ts32-14.3,32-32S401.7,224,384,224L384,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,238c9.9,0,18,8.1,18,18s-8.1,18-18,18s-18-8.1-18-18S374.1,238,384,238 M384,224c-17.7,0-32,14.3-32,32s14.3,32,32,32\r\n\t\ts32-14.3,32-32S401.7,224,384,224L384,224z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosMoreOutline = iosMoreOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosMusicalNote.js b/dist/ionicons/iosMusicalNote.js
new file mode 100644
index 000000000..ab54192be
--- /dev/null
+++ b/dist/ionicons/iosMusicalNote.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMusicalNote = void 0;
+var iosMusicalNote = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352.1,102.3c0-0.1,0-0.2,0-0.2c-0.1-0.3-0.1-0.5-0.2-0.8c0,0,0-0.1,0-0.1c-0.6-1.5-1.8-3-3.5-3.4l-2-0.4L256,78v272.6\r\n\tc-8,0-22.4,0.4-44.5,1.3c-41.8,1.6-51.4,21.6-51.4,40.9c0,24.6,13.2,43.1,61.5,41c51.8-2.3,51.4-48.5,51.4-81.7V159.6l73.6,13.5l0,0\r\n\tc3,0.6,5.4-2.3,5.4-5.3v-64.4C352,103,352.1,102.6,352.1,102.3z"
+ },
+ "children": []
+ }]
+};
+exports.iosMusicalNote = iosMusicalNote;
\ No newline at end of file
diff --git a/dist/ionicons/iosMusicalNotes.js b/dist/ionicons/iosMusicalNotes.js
new file mode 100644
index 000000000..81c050815
--- /dev/null
+++ b/dist/ionicons/iosMusicalNotes.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosMusicalNotes = void 0;
+var iosMusicalNotes = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,319.9V78l-224,34.6v237.2c-9,0-20.9,0.4-43.5,1.3c-42.6,1.6-52.5,21.8-52.5,41.3c0,24.9,13.5,43.5,62.6,41.4\r\n\tc52.8-2.3,50.3-49,50.3-82.5V189.8l191-32v160.6c-9,0-19.9,0.4-42.6,1.3c-42.6,1.6-52.5,21.8-52.5,41.3c0,24.9,13,43.5,62.2,41.4\r\n\tC420,400.1,416,353.4,416,319.9z"
+ },
+ "children": []
+ }]
+};
+exports.iosMusicalNotes = iosMusicalNotes;
\ No newline at end of file
diff --git a/dist/ionicons/iosNavigate.js b/dist/ionicons/iosNavigate.js
new file mode 100644
index 000000000..ff3cf8d5b
--- /dev/null
+++ b/dist/ionicons/iosNavigate.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosNavigate = void 0;
+var iosNavigate = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,384\r\n\t\tV256H128.3L352,160L256,384z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,384\r\n\t\tV256H128.3L352,160L256,384z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosNavigate = iosNavigate;
\ No newline at end of file
diff --git a/dist/ionicons/iosNavigateOutline.js b/dist/ionicons/iosNavigateOutline.js
new file mode 100644
index 000000000..520942796
--- /dev/null
+++ b/dist/ionicons/iosNavigateOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosNavigateOutline = void 0;
+var iosNavigateOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64.5c51.1,0,99.2,19.9,135.4,56.1s56.1,84.2,56.1,135.4s-19.9,99.2-56.1,135.4s-84.2,56.1-135.4,56.1\r\n\t\ts-99.2-19.9-135.4-56.1C84.5,355.2,64.5,307.1,64.5,256s19.9-99.2,56.1-135.4C156.8,84.5,204.9,64.5,256,64.5 M256,48\r\n\t\tC141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48L256,48z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64.5c51.1,0,99.2,19.9,135.4,56.1s56.1,84.2,56.1,135.4s-19.9,99.2-56.1,135.4s-84.2,56.1-135.4,56.1\r\n\t\ts-99.2-19.9-135.4-56.1C84.5,355.2,64.5,307.1,64.5,256s19.9-99.2,56.1-135.4C156.8,84.5,204.9,64.5,256,64.5 M256,48\r\n\t\tC141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48L256,48z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "352,160 128.3,256 256,256 256,384 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "352,160 128.3,256 256,256 256,384 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosNavigateOutline = iosNavigateOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosNutrition.js b/dist/ionicons/iosNutrition.js
new file mode 100644
index 000000000..1413d3eaf
--- /dev/null
+++ b/dist/ionicons/iosNutrition.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosNutrition = void 0;
+var iosNutrition = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M359,233.62l-0.106-0.039c-0.136-0.138-0.306-0.443-0.444-0.579L279.551,154h-0.004c-5.848-6-14.23-10.168-23.547-10.168\r\n\t\tc-11.842,0-22.174,6.168-27.708,16.168h-0.007c0,0-7.109,11.351-18.318,29.249l32.617,39.85c2.947,3.772,3.305,7.895,1.414,9.785\r\n\t\tl-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-35.967-29.439c-23.608,37.693-56.827,90.731-83.671,133.592l19.123,23.362\r\n\t\tc2.947,3.772,3.305,7.895,1.414,9.785l-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-20.22-16.55\r\n\t\tC84.874,388.974,70.194,412.411,69,414.315v0.003c-3,5.066-5,11.144-5,17.682c0,17.674,14.244,32,31.918,32\r\n\t\tc7.842,0,14.383-3.398,20.628-7.508l114.842-84.195l-28.971-35.395c-2.947-3.772-3.305-7.895-1.414-9.785l0.114-0.114\r\n\t\tc2.296-2.296,5.894-1.534,9.785,1.415l37.963,31.215C303.85,319.348,355.035,282,355.035,282h0.005\r\n\t\tc7.859-6,13.024-15.319,13.024-25.857c0-8.713-3.064-16.75-9.064-22.521V233.62z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M359,233.62l-0.106-0.039c-0.136-0.138-0.306-0.443-0.444-0.579L279.551,154h-0.004c-5.848-6-14.23-10.168-23.547-10.168\r\n\t\tc-11.842,0-22.174,6.168-27.708,16.168h-0.007c0,0-7.109,11.351-18.318,29.249l32.617,39.85c2.947,3.772,3.305,7.895,1.414,9.785\r\n\t\tl-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-35.967-29.439c-23.608,37.693-56.827,90.731-83.671,133.592l19.123,23.362\r\n\t\tc2.947,3.772,3.305,7.895,1.414,9.785l-0.114,0.114c-2.296,2.296-5.894,1.535-9.785-1.414l-20.22-16.55\r\n\t\tC84.874,388.974,70.194,412.411,69,414.315v0.003c-3,5.066-5,11.144-5,17.682c0,17.674,14.244,32,31.918,32\r\n\t\tc7.842,0,14.383-3.398,20.628-7.508l114.842-84.195l-28.971-35.395c-2.947-3.772-3.305-7.895-1.414-9.785l0.114-0.114\r\n\t\tc2.296-2.296,5.894-1.534,9.785,1.415l37.963,31.215C303.85,319.348,355.035,282,355.035,282h0.005\r\n\t\tc7.859-6,13.024-15.319,13.024-25.857c0-8.713-3.064-16.75-9.064-22.521V233.62z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "448,138.781 431.514,111.087 365.284,149.299 414.515,64.086 386.896,48 316.897,169.084 345.485,197.672 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,138.781 431.514,111.087 365.284,149.299 414.515,64.086 386.896,48 316.897,169.084 345.485,197.672 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosNutrition = iosNutrition;
\ No newline at end of file
diff --git a/dist/ionicons/iosNutritionOutline.js b/dist/ionicons/iosNutritionOutline.js
new file mode 100644
index 000000000..a13a9a248
--- /dev/null
+++ b/dist/ionicons/iosNutritionOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosNutritionOutline = void 0;
+var iosNutritionOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M358,233.855l0.413-0.039c-0.137-0.137-0.046-0.101-0.185-0.237L279.798,155h-0.004c-5.833-6-14.193-10.154-23.485-10.154\r\n\t\tc-11.811,0-22.115,6.154-27.635,16.154h-0.007c0,0-7.09,10.994-18.27,28.874l32.531,39.637c2.939,3.769,3.296,7.801,1.411,9.689\r\n\t\tl-0.114,0.071c-0.909,0.909-2.021,1.33-3.274,1.33c-1.908,0-4.142-0.99-6.485-2.768l-35.872-29.418\r\n\t\tc-23.546,37.655-56.677,90.634-83.45,133.451l19.072,23.337c2.939,3.77,3.296,7.884,1.41,9.772l-0.114,0.114\r\n\t\tc-0.911,0.913-2.028,1.342-3.287,1.342c-1.905,0-4.136-0.981-6.472-2.755l-21.067-16.533C84.734,389.051,70,412.464,68,414.366\r\n\t\tv0.003c-3,5.062-4.085,11.132-4.085,17.664c0,17.655,14.657,31.967,32.285,31.967c7.821,0,14.57-3.395,20.799-7.5l114.651-84.109\r\n\t\tl-28.838-35.358c-2.94-3.769-3.268-7.887-1.382-9.775l0.128-0.114c0.912-0.912,2.034-1.341,3.294-1.341\r\n\t\tc1.905,0,4.14,0.981,6.476,2.755l37.864,31.59C304.03,319.902,355.082,283,355.082,283h0.005c7.839-6,12.473-15.711,12.473-26.238\r\n\t\tc0-8.704-3.56-17.14-9.56-22.904V233.855z M345.531,269.834c-2.664,1.934-46.692,33.932-95.764,69.899l-28.272-23.483l-0.26-0.223\r\n\t\tl-0.274-0.211c-5.245-3.981-10.663-5.998-16.108-5.998c-5.465,0-10.592,2.097-14.458,5.909l-0.064,0.062l-0.083,0.082l-0.083,0.083\r\n\t\tc-7.808,7.821-7.761,20.823,0.111,30.917l0.11,0.143l0.113,0.138l18.223,22.312l-100.656,73.896\r\n\t\tc-5.066,3.304-8.427,4.657-11.542,4.657c-8.822,0-16-7.171-16-15.983c0-3.086,0.694-6.045,2.017-8.623\r\n\t\tc2.391-3.161,6.6-9.876,18.655-29.351c2.543-4.108,5.252-8.487,8.134-13.129l6.39,5.176l0.195,0.156l0.2,0.152\r\n\t\tc5.245,3.981,10.665,6,16.111,6c5.517,0,10.692-2.139,14.571-6.023l0.114-0.113c7.806-7.817,7.756-20.82-0.118-30.916l-0.113-0.144\r\n\t\tl-0.115-0.142l-11.814-14.455l43.693-69.872l24.059-38.474l21.855,17.922l0.231,0.19l0.24,0.181\r\n\t\tc5.254,3.988,10.678,6.01,16.123,6.01c4.954,0,9.631-1.725,13.339-4.89l0.461-0.337l0.871-0.874\r\n\t\tc7.79-7.803,7.74-20.778-0.118-30.854l-0.12-0.153l-0.124-0.15l-25.239-30.539c2.957-4.703,5.457-8.491,7.405-11.488l5.209-8.494\r\n\t\tc2.777-5.025,7.761-8.157,13.673-8.157c4.367,0,8.76,2.042,12.057,5.43l4.701,4.928h0.122L342,240.286v0.376l5.186,4.716\r\n\t\tc2.793,2.69,4.539,6.782,4.539,11.227C351.725,261.801,349.467,266.728,345.531,269.834z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M358,233.855l0.413-0.039c-0.137-0.137-0.046-0.101-0.185-0.237L279.798,155h-0.004c-5.833-6-14.193-10.154-23.485-10.154\r\n\t\tc-11.811,0-22.115,6.154-27.635,16.154h-0.007c0,0-7.09,10.994-18.27,28.874l32.531,39.637c2.939,3.769,3.296,7.801,1.411,9.689\r\n\t\tl-0.114,0.071c-0.909,0.909-2.021,1.33-3.274,1.33c-1.908,0-4.142-0.99-6.485-2.768l-35.872-29.418\r\n\t\tc-23.546,37.655-56.677,90.634-83.45,133.451l19.072,23.337c2.939,3.77,3.296,7.884,1.41,9.772l-0.114,0.114\r\n\t\tc-0.911,0.913-2.028,1.342-3.287,1.342c-1.905,0-4.136-0.981-6.472-2.755l-21.067-16.533C84.734,389.051,70,412.464,68,414.366\r\n\t\tv0.003c-3,5.062-4.085,11.132-4.085,17.664c0,17.655,14.657,31.967,32.285,31.967c7.821,0,14.57-3.395,20.799-7.5l114.651-84.109\r\n\t\tl-28.838-35.358c-2.94-3.769-3.268-7.887-1.382-9.775l0.128-0.114c0.912-0.912,2.034-1.341,3.294-1.341\r\n\t\tc1.905,0,4.14,0.981,6.476,2.755l37.864,31.59C304.03,319.902,355.082,283,355.082,283h0.005c7.839-6,12.473-15.711,12.473-26.238\r\n\t\tc0-8.704-3.56-17.14-9.56-22.904V233.855z M345.531,269.834c-2.664,1.934-46.692,33.932-95.764,69.899l-28.272-23.483l-0.26-0.223\r\n\t\tl-0.274-0.211c-5.245-3.981-10.663-5.998-16.108-5.998c-5.465,0-10.592,2.097-14.458,5.909l-0.064,0.062l-0.083,0.082l-0.083,0.083\r\n\t\tc-7.808,7.821-7.761,20.823,0.111,30.917l0.11,0.143l0.113,0.138l18.223,22.312l-100.656,73.896\r\n\t\tc-5.066,3.304-8.427,4.657-11.542,4.657c-8.822,0-16-7.171-16-15.983c0-3.086,0.694-6.045,2.017-8.623\r\n\t\tc2.391-3.161,6.6-9.876,18.655-29.351c2.543-4.108,5.252-8.487,8.134-13.129l6.39,5.176l0.195,0.156l0.2,0.152\r\n\t\tc5.245,3.981,10.665,6,16.111,6c5.517,0,10.692-2.139,14.571-6.023l0.114-0.113c7.806-7.817,7.756-20.82-0.118-30.916l-0.113-0.144\r\n\t\tl-0.115-0.142l-11.814-14.455l43.693-69.872l24.059-38.474l21.855,17.922l0.231,0.19l0.24,0.181\r\n\t\tc5.254,3.988,10.678,6.01,16.123,6.01c4.954,0,9.631-1.725,13.339-4.89l0.461-0.337l0.871-0.874\r\n\t\tc7.79-7.803,7.74-20.778-0.118-30.854l-0.12-0.153l-0.124-0.15l-25.239-30.539c2.957-4.703,5.457-8.491,7.405-11.488l5.209-8.494\r\n\t\tc2.777-5.025,7.761-8.157,13.673-8.157c4.367,0,8.76,2.042,12.057,5.43l4.701,4.928h0.122L342,240.286v0.376l5.186,4.716\r\n\t\tc2.793,2.69,4.539,6.782,4.539,11.227C351.725,261.801,349.467,266.728,345.531,269.834z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "439.994,115.175 435.216,117.938 343.578,170.93 407.313,60.358 409.83,55.992 396.011,48 393.523,52.313 \r\n\t\t322.748,175.098 339.418,191.794 443.38,131.674 447.974,129.018 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "439.994,115.175 435.216,117.938 343.578,170.93 407.313,60.358 409.83,55.992 396.011,48 393.523,52.313 \r\n\t\t322.748,175.098 339.418,191.794 443.38,131.674 447.974,129.018 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosNutritionOutline = iosNutritionOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPaper.js b/dist/ionicons/iosPaper.js
new file mode 100644
index 000000000..1401f7c9d
--- /dev/null
+++ b/dist/ionicons/iosPaper.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPaper = void 0;
+var iosPaper = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112,64v16v32v288H96V112H64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112\r\n\tz M160,112h128v16H160V112z M160,272h192v16H160V272z M400,368H160v-16h240V368z M400,208H160v-16h240V208z"
+ },
+ "children": []
+ }]
+};
+exports.iosPaper = iosPaper;
\ No newline at end of file
diff --git a/dist/ionicons/iosPaperOutline.js b/dist/ionicons/iosPaperOutline.js
new file mode 100644
index 000000000..860ab0e8a
--- /dev/null
+++ b/dist/ionicons/iosPaperOutline.js
@@ -0,0 +1,99 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPaperOutline = void 0;
+var iosPaperOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112,64v16v320h16V80h304v337.143c0,8.205-6.652,14.857-14.857,14.857H94.857C86.652,432,80,425.348,80,417.143V128h16v-16\r\n\t\tH64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112,64v16v320h16V80h304v337.143c0,8.205-6.652,14.857-14.857,14.857H94.857C86.652,432,80,425.348,80,417.143V128h16v-16\r\n\t\tH64v305.143C64,434.157,77.843,448,94.857,448h322.285C434.157,448,448,434.157,448,417.143V64H112z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "112",
+ "width": "128",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "112",
+ "width": "128",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "192",
+ "width": "240",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "192",
+ "width": "240",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "272",
+ "width": "192",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "272",
+ "width": "192",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "352",
+ "width": "240",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "352",
+ "width": "240",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPaperOutline = iosPaperOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPaperplane.js b/dist/ionicons/iosPaperplane.js
new file mode 100644
index 000000000..b3ff60462
--- /dev/null
+++ b/dist/ionicons/iosPaperplane.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPaperplane = void 0;
+var iosPaperplane = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "96,249.6 202,296.3 416,96 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "96,249.6 202,296.3 416,96 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "416,96 217.9,311.7 269.8,416 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "416,96 217.9,311.7 269.8,416 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPaperplane = iosPaperplane;
\ No newline at end of file
diff --git a/dist/ionicons/iosPaperplaneOutline.js b/dist/ionicons/iosPaperplaneOutline.js
new file mode 100644
index 000000000..d4f52db41
--- /dev/null
+++ b/dist/ionicons/iosPaperplaneOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPaperplaneOutline = void 0;
+var iosPaperplaneOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,249.6l116.6,51.3L269.8,416L416,96L96,249.6z M228.1,296.5l155.7-166.2L269.2,379.2L228.1,296.5z M381.8,128.3\r\n\tL216.8,285.4L134,249L381.8,128.3z"
+ },
+ "children": []
+ }]
+};
+exports.iosPaperplaneOutline = iosPaperplaneOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPartlysunny.js b/dist/ionicons/iosPartlysunny.js
new file mode 100644
index 000000000..4cae99513
--- /dev/null
+++ b/dist/ionicons/iosPartlysunny.js
@@ -0,0 +1,147 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPartlysunny = void 0;
+var iosPartlysunny = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "96",
+ "class": "st0",
+ "width": "16",
+ "height": "54"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "96",
+ "class": "st0",
+ "width": "16",
+ "height": "54"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "64",
+ "y": "240",
+ "class": "st0",
+ "width": "55",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "64",
+ "y": "240",
+ "class": "st0",
+ "width": "55",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\t\tC367.5,250.3,336.3,224,299,224L299,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\t\tC367.5,250.3,336.3,224,299,224L299,224z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M264.7,196.3c-12.9-14.3-31.4-23.3-52-23.3c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\tc0,0,0-0.1,0-0.1c0,0,0.1,0.1,0.1,0.1c4.5-12.1,11.4-19.8,22.6-25.6c0.2-0.1,0.4-0.2,0.7-0.4c0.2-0.1,0.5-0.2,0.7-0.3\r\n\t\tc-0.2-2.3-0.3-4.7-0.3-7c-0.3-31.9,30.2-70.5,61-75.4c0.1-0.1,0.3-0.1,0.4-0.2C265.5,197.3,265.1,196.8,264.7,196.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M264.7,196.3c-12.9-14.3-31.4-23.3-52-23.3c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\tc0,0,0-0.1,0-0.1c0,0,0.1,0.1,0.1,0.1c4.5-12.1,11.4-19.8,22.6-25.6c0.2-0.1,0.4-0.2,0.7-0.4c0.2-0.1,0.5-0.2,0.7-0.3\r\n\t\tc-0.2-2.3-0.3-4.7-0.3-7c-0.3-31.9,30.2-70.5,61-75.4c0.1-0.1,0.3-0.1,0.4-0.2C265.5,197.3,265.1,196.8,264.7,196.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPartlysunny = iosPartlysunny;
\ No newline at end of file
diff --git a/dist/ionicons/iosPartlysunnyOutline.js b/dist/ionicons/iosPartlysunnyOutline.js
new file mode 100644
index 000000000..6f5222833
--- /dev/null
+++ b/dist/ionicons/iosPartlysunnyOutline.js
@@ -0,0 +1,155 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPartlysunnyOutline = void 0;
+var iosPartlysunnyOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "96",
+ "class": "st0",
+ "width": "16",
+ "height": "54"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "96",
+ "class": "st0",
+ "width": "16",
+ "height": "54"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "64",
+ "y": "240",
+ "class": "st0",
+ "width": "55",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "64",
+ "y": "240",
+ "class": "st0",
+ "width": "55",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "107.5,149.1 118.5,138 149.9,169.6 138.9,180.7 \t\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "287.4,179.7 276.4,168.6 307.7,137 318.8,148.1 \t\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "120.5,352.5 109.5,341.4 140.9,309.8 151.9,320.9 \t\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M192.6,294.9c-20.2-8.1-34.6-27.9-34.6-51.1c0-30.3,24.5-55,54.7-55c15.6,0,29.7,6.6,39.6,17.2\r\n\t\t\t\tc4.8-3.5,9.5-6.2,13.6-8.2c-12.9-15.1-32-24.7-53.3-24.7c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\t\t\tC184.3,301.5,188.5,297.7,192.6,294.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M192.6,294.9c-20.2-8.1-34.6-27.9-34.6-51.1c0-30.3,24.5-55,54.7-55c15.6,0,29.7,6.6,39.6,17.2\r\n\t\t\t\tc4.8-3.5,9.5-6.2,13.6-8.2c-12.9-15.1-32-24.7-53.3-24.7c-38.7,0-70.3,31.7-70.3,70.7c0,27.4,15.6,51.2,38.3,62.9\r\n\t\t\t\tC184.3,301.5,188.5,297.7,192.6,294.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M299,239.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H225.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC236.5,268,264.5,239.8,299,239.8 M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC367.5,250.3,336.3,224,299,224L299,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M299,239.8c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\tc26.9,0,48.8,22.1,48.8,49.2c0,27.1-21.9,49.2-48.8,49.2H225.7c-9.5,0-18.5-3.9-25.4-10.8c-6.8-7-10.6-16.2-10.6-25.9\r\n\t\tc0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.2,14.2-1.7c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\tC236.5,268,264.5,239.8,299,239.8 M299,224c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.5-47.1,52.6\r\n\t\tc0,28.6,23.2,53.1,51.7,53.1h157.7c35.7,0,64.6-29.9,64.6-65.7c0-35.8-28.9-65.3-64.6-65.3c-2.7,0-5.4,0-8,0.3\r\n\t\tC367.5,250.3,336.3,224,299,224L299,224z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPartlysunnyOutline = iosPartlysunnyOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPause.js b/dist/ionicons/iosPause.js
new file mode 100644
index 000000000..efae00463
--- /dev/null
+++ b/dist/ionicons/iosPause.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPause = void 0;
+var iosPause = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "128",
+ "y": "96",
+ "width": "79",
+ "height": "320"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "128",
+ "y": "96",
+ "width": "79",
+ "height": "320"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "305",
+ "y": "96",
+ "width": "79",
+ "height": "320"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "305",
+ "y": "96",
+ "width": "79",
+ "height": "320"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPause = iosPause;
\ No newline at end of file
diff --git a/dist/ionicons/iosPauseOutline.js b/dist/ionicons/iosPauseOutline.js
new file mode 100644
index 000000000..3d9810318
--- /dev/null
+++ b/dist/ionicons/iosPauseOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPauseOutline = void 0;
+var iosPauseOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M191,112v288h-47V112H191 M207,96h-79v320h79V96L207,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M191,112v288h-47V112H191 M207,96h-79v320h79V96L207,96z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M368,112v288h-47V112H368 M384,96h-79v320h79V96L384,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,112v288h-47V112H368 M384,96h-79v320h79V96L384,96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPauseOutline = iosPauseOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPaw.js b/dist/ionicons/iosPaw.js
new file mode 100644
index 000000000..83de2489a
--- /dev/null
+++ b/dist/ionicons/iosPaw.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPaw = void 0;
+var iosPaw = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPaw = iosPaw;
\ No newline at end of file
diff --git a/dist/ionicons/iosPawOutline.js b/dist/ionicons/iosPawOutline.js
new file mode 100644
index 000000000..faac3b852
--- /dev/null
+++ b/dist/ionicons/iosPawOutline.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPawOutline = void 0;
+var iosPawOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z M426.214,246.295\r\n\t\tc-7.836,18.898-22.994,32.098-36.862,32.098c-2.809,0-5.488-0.569-7.968-1.694c-14.121-6.394-17.862-31.059-8.518-56.152\r\n\t\tc7.775-20.817,22.448-35.355,35.683-35.355c2.51,0,4.979,0.533,7.34,1.588c6.88,3.067,10.622,9.712,12.551,14.745\r\n\t\tC433.35,214.332,432.518,231.068,426.214,246.295z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M443.827,195.5c-4.383-11.73-11.753-20.212-21.317-24.524c-4.389-1.975-8.995-2.976-13.688-2.976\r\n\t\tc-20.025,0-40.372,18.667-50.632,46.454c-12.698,34.42-5.315,68.135,17.173,78.423c4.522,2.071,9.365,3.123,14.394,3.123\r\n\t\tc20.396,0,41.126-17.119,51.581-42.596C449.238,234.121,450.168,212.477,443.827,195.5z M426.214,246.295\r\n\t\tc-7.836,18.898-22.994,32.098-36.862,32.098c-2.809,0-5.488-0.569-7.968-1.694c-14.121-6.394-17.862-31.059-8.518-56.152\r\n\t\tc7.775-20.817,22.448-35.355,35.683-35.355c2.51,0,4.979,0.533,7.34,1.588c6.88,3.067,10.622,9.712,12.551,14.745\r\n\t\tC433.35,214.332,432.518,231.068,426.214,246.295z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z M130.616,276.698\r\n\t\tc-2.479,1.125-5.16,1.694-7.968,1.694c-13.868,0-29.026-13.199-36.862-32.098c-6.304-15.227-7.136-31.963-2.226-44.771\r\n\t\tc1.929-5.033,5.671-11.678,12.551-14.745c2.361-1.055,4.83-1.588,7.34-1.588c13.234,0,27.907,14.538,35.683,35.355\r\n\t\tC148.479,245.64,144.737,270.305,130.616,276.698z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M153.811,214.454C143.551,186.667,123.204,168,103.179,168c-4.693,0-9.3,1.001-13.689,2.976\r\n\t\tc-9.565,4.312-16.934,12.794-21.317,24.524c-6.341,16.977-5.411,38.621,2.49,57.904C81.118,278.881,101.848,296,122.244,296\r\n\t\tc5.028,0,9.871-1.052,14.394-3.123C159.126,282.589,166.509,248.874,153.811,214.454z M130.616,276.698\r\n\t\tc-2.479,1.125-5.16,1.694-7.968,1.694c-13.868,0-29.026-13.199-36.862-32.098c-6.304-15.227-7.136-31.963-2.226-44.771\r\n\t\tc1.929-5.033,5.671-11.678,12.551-14.745c2.361-1.055,4.83-1.588,7.34-1.588c13.234,0,27.907,14.538,35.683,35.355\r\n\t\tC148.479,245.64,144.737,270.305,130.616,276.698z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z M171.047,91.831c3.923-4.739,10.51-10.577,19.62-11.476\r\n\t\tc1.143-0.113,2.288-0.146,3.404-0.098c18.207,0.792,31.859,23.271,34.936,52.428c2.146,20.15-0.148,40.055-9.845,51.779\r\n\t\tc-4.874,5.898-10.556,9.204-16.881,9.825c-1.081,0.104-2.167,0.133-3.229,0.087c-19.257-0.838-37.414-25.091-40.473-54.067\r\n\t\tC156.611,121.779,161.273,103.656,171.047,91.831z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M198.347,210.601c1.855,0.081,3.727,0.03,5.563-0.151c10.787-1.059,20.54-6.594,28.207-16.008\r\n\t\tc12.371-15.191,15.806-38.974,13.201-63.439C241.336,93.3,221.469,65.161,194.776,64c0,0-3.811,0.008-5.75,0.193\r\n\t\tc-11.776,1.164-22.481,7.283-30.957,17.695c-12.291,15.101-18.198,37.57-15.803,60.104\r\n\t\tC146.202,179.269,170.836,209.404,198.347,210.601z M171.047,91.831c3.923-4.739,10.51-10.577,19.62-11.476\r\n\t\tc1.143-0.113,2.288-0.146,3.404-0.098c18.207,0.792,31.859,23.271,34.936,52.428c2.146,20.15-0.148,40.055-9.845,51.779\r\n\t\tc-4.874,5.898-10.556,9.204-16.881,9.825c-1.081,0.104-2.167,0.133-3.229,0.087c-19.257-0.838-37.414-25.091-40.473-54.067\r\n\t\tC156.611,121.779,161.273,103.656,171.047,91.831z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z M353.963,420.776c-10.964,7.337-17.366,9.778-33.666,9.778c-14.225,0-18.624-3.201-25.911-8.51\r\n\t\tc-1.848-1.344-3.759-2.736-5.946-4.177c-8.619-5.682-18.39-12.123-32.439-12.123s-23.82,6.441-32.438,12.121\r\n\t\tc-2.189,1.442-4.1,2.835-5.947,4.179c-7.287,5.309-11.686,8.51-25.911,8.51c-16.3,0-22.703-2.441-33.667-9.778\r\n\t\tC152.395,417,144,405.456,144,389.128c0-30.277,13.377-64.231,35.783-90.823c10.886-12.921,23.517-23.6,36.526-30.885\r\n\t\tC229.713,259.917,243.067,256,256,256c12.934,0,26.287,3.917,39.691,11.42c13.01,7.285,25.64,17.964,36.525,30.885\r\n\t\tC354.623,324.896,368,358.851,368,389.128C368,405.456,359.605,417,353.963,420.776z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,240c-64,0-128,76.074-128,149.128c0,21.798,10.932,39.331,21.667,46.517C162.925,444.516,172.269,448,191.704,448\r\n\t\tc23.093,0,29.325-8.078,40.136-15.205c7.819-5.152,14.572-9.605,24.161-9.605s16.342,4.453,24.16,9.605\r\n\t\tC290.972,439.922,297.203,448,320.297,448c19.434,0,28.778-3.484,42.036-12.355C373.068,428.459,384,410.926,384,389.128\r\n\t\tC384,316.074,320,240,256,240z M353.963,420.776c-10.964,7.337-17.366,9.778-33.666,9.778c-14.225,0-18.624-3.201-25.911-8.51\r\n\t\tc-1.848-1.344-3.759-2.736-5.946-4.177c-8.619-5.682-18.39-12.123-32.439-12.123s-23.82,6.441-32.438,12.121\r\n\t\tc-2.189,1.442-4.1,2.835-5.947,4.179c-7.287,5.309-11.686,8.51-25.911,8.51c-16.3,0-22.703-2.441-33.667-9.778\r\n\t\tC152.395,417,144,405.456,144,389.128c0-30.277,13.377-64.231,35.783-90.823c10.886-12.921,23.517-23.6,36.526-30.885\r\n\t\tC229.713,259.917,243.067,256,256,256c12.934,0,26.287,3.917,39.691,11.42c13.01,7.285,25.64,17.964,36.525,30.885\r\n\t\tC354.623,324.896,368,358.851,368,389.128C368,405.456,359.605,417,353.963,420.776z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z M283.186,132.501c3.076-29.156,16.729-51.636,34.936-52.428\r\n\t\tc1.115-0.048,2.261-0.016,3.404,0.098c9.109,0.898,15.696,6.736,19.619,11.476c9.774,11.825,14.436,29.948,12.468,48.479\r\n\t\tc-3.06,28.977-21.216,53.229-40.474,54.067c-1.061,0.046-2.146,0.017-3.229-0.087c-6.324-0.621-12.007-3.927-16.881-9.825\r\n\t\tC283.334,172.556,281.039,152.651,283.186,132.501z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M308.281,210.265c1.836,0.182,3.709,0.232,5.563,0.151c27.511-1.196,52.146-31.332,56.081-68.607\r\n\t\tc2.395-22.534-3.514-45.004-15.804-60.104c-8.476-10.412-18.783-16.228-30.56-17.392c-1.939-0.186-6.146-0.312-6.146-0.312\r\n\t\tc-26.693,1.161-46.561,29.115-50.542,66.817c-2.604,24.466,0.83,48.248,13.2,63.439\r\n\t\tC287.741,203.671,297.494,209.206,308.281,210.265z M283.186,132.501c3.076-29.156,16.729-51.636,34.936-52.428\r\n\t\tc1.115-0.048,2.261-0.016,3.404,0.098c9.109,0.898,15.696,6.736,19.619,11.476c9.774,11.825,14.436,29.948,12.468,48.479\r\n\t\tc-3.06,28.977-21.216,53.229-40.474,54.067c-1.061,0.046-2.146,0.017-3.229-0.087c-6.324-0.621-12.007-3.927-16.881-9.825\r\n\t\tC283.334,172.556,281.039,152.651,283.186,132.501z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPawOutline = iosPawOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPeople.js b/dist/ionicons/iosPeople.js
new file mode 100644
index 000000000..50e412358
--- /dev/null
+++ b/dist/ionicons/iosPeople.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPeople = void 0;
+var iosPeople = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M349.2,334.8C360.5,338.7,338,330.9,349.2,334.8L349.2,334.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M349.2,334.8C360.5,338.7,338,330.9,349.2,334.8L349.2,334.8z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\tC395,370.5,377.2,344.5,349.2,334.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\tC395,370.5,377.2,344.5,349.2,334.8z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M143.3,322.5c0.6-0.3,1.2-0.6,1.6-0.8c-0.3,0.1-0.6,0.3-0.8,0.4C143.8,322.2,143.6,322.3,143.3,322.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M143.3,322.5c0.6-0.3,1.2-0.6,1.6-0.8c-0.3,0.1-0.6,0.3-0.8,0.4C143.8,322.2,143.6,322.3,143.3,322.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M143.3,322.5c-3.4,1.7-7.5,3.8,0.8-0.4c3-1.5,2.4-1.2,0.8-0.4c6.8-3.2,14.1-4,21.4-4.7c2.8-0.3,4.1-2.2,2-4.9\r\n\t\tc-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7c-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4\r\n\t\tc2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6c-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3\r\n\t\tc-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1c-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28\r\n\t\tc-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6c8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8\r\n\t\tc-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332,32,352c18.3,0,36.5,0,54.8,0c8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8\r\n\t\tC126,333.7,134.3,327.2,143.3,322.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M143.3,322.5c-3.4,1.7-7.5,3.8,0.8-0.4c3-1.5,2.4-1.2,0.8-0.4c6.8-3.2,14.1-4,21.4-4.7c2.8-0.3,4.1-2.2,2-4.9\r\n\t\tc-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7c-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4\r\n\t\tc2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6c-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3\r\n\t\tc-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1c-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28\r\n\t\tc-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6c8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8\r\n\t\tc-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332,32,352c18.3,0,36.5,0,54.8,0c8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8\r\n\t\tC126,333.7,134.3,327.2,143.3,322.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M449.3,311.9c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6c4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8\r\n\t\tc1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6c-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8\r\n\t\tc-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5c3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9\r\n\t\tc-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7c-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1\r\n\t\tc6,4.9,14.1,11.5,16.3,19.5c26.7,0,53.5,0,80.2,0C480,332,466.9,317.7,449.3,311.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M449.3,311.9c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6c4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8\r\n\t\tc1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6c-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8\r\n\t\tc-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5c3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9\r\n\t\tc-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7c-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1\r\n\t\tc6,4.9,14.1,11.5,16.3,19.5c26.7,0,53.5,0,80.2,0C480,332,466.9,317.7,449.3,311.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPeople = iosPeople;
\ No newline at end of file
diff --git a/dist/ionicons/iosPeopleOutline.js b/dist/ionicons/iosPeopleOutline.js
new file mode 100644
index 000000000..3db292b83
--- /dev/null
+++ b/dist/ionicons/iosPeopleOutline.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPeopleOutline = void 0;
+var iosPeopleOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,112L256,112L256,112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,112L256,112L256,112z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\t\tC395,370.5,377.2,344.5,349.2,334.8C338,330.9,360.5,338.7,349.2,334.8z M147.1,363.6c5.6-5.9,12.7-11.1,20.4-14\r\n\t\t\tc10.5-4,22.4-3.8,33.3-6.6c9-2.3,20.2-5.9,27.2-12.4c6.4-6,7.1-15.2,7.7-23.5c0.5-7,0.4-13.9,0.4-20.9c0-4.9-5.7-7.7-8.5-11.6\r\n\t\t\tc-4.5-6.1-4.7-15.2-5.6-22.5c-0.4-3.2-0.5-7.3-3.2-9.5c-3-2.4-5.2-3.7-6.7-7.5c-2-5.2-2.7-10.8-4.3-16.2c-1-3.5,2.5-6.8,3.9-9.7\r\n\t\t\tc2.6-5.3-1.9-13.5-2.8-19c-2.8-16.4-2.7-34.3,9.1-47.3c23.7-26.2,78-17.9,85.8,18.9c2.4,11.5,0.9,24.9-2.3,36.1\r\n\t\t\tc-1.4,4.8-3,8.3-0.2,13c4.2,6.8,2.4,11.2,0.4,18.8c-1.6,6.3-3.6,9.1-8.4,13c-4,3.2-3.4,11.2-4.1,15.8c-0.8,5.6-1.3,11.5-4.7,16.2\r\n\t\t\tc-1.3,1.8-8.4,7.4-8.4,9.3c0,11-0.5,22.2,1.4,33.1c2.6,15.5,15.6,19.2,28.6,24.5c13.2,5.1,28.5,3.2,41.3,9.5\r\n\t\t\tc13.2,6.5,25.9,18.4,29.7,33.1c-79.3,0-158.6,0-237.9,0c-1.4,0-2.8,0-4.2,0C136.9,375.9,141.5,369.6,147.1,363.6\r\n\t\t\tC156.3,353.9,141.2,369.9,147.1,363.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M349.2,334.8c-13.5-4.7-28.1-5-41.6-9.7c-4.1-1.4-12.2-3.1-13.9-7.8c-1.6-4.6-1.6-10-1.9-14.8c-0.2-3.8-0.3-7.6-0.3-11.4\r\n\t\t\tc0-2.5,6.4-7.8,7.8-10.1c5.4-9,5.9-21.1,6.9-31.3c8.7,2.4,9.8-13.7,11.3-18.6c1.1-3.4,7.8-26.8-2.6-23.6c2.5-4.4,3.5-9.8,4.2-14.7\r\n\t\t\tc2-12.8,2.8-26.8-1.1-39.3c-8.1-26-33-40.6-59.3-41.4c-26.7-0.9-53.5,11.9-63.5,37.8c-4.8,12.6-4.4,26.3-2.8,39.5\r\n\t\t\tc0.7,6,1.7,12.7,4.7,18.1c-9.7-2.9-4.5,17.7-3.4,21.3c1.6,5.1,3,23.4,12.1,20.9c0.8,8.1,1.7,16.4,3.9,24.3\r\n\t\t\tc1.5,5.3,4.6,9.8,8.2,13.9c1.8,2,2.7,2.2,2.6,4.8c-0.1,7.8,0.1,16.2-1.9,23.8c-2,7.6-18.7,10.8-25.4,12.2\r\n\t\t\tc-18,3.7-34.6,5.4-49.6,16.6C126.1,358.2,117,378.3,117,400c83.3,0,166.6,0,249.9,0c9.4,0,18.7,0,28.1,0\r\n\t\t\tC395,370.5,377.2,344.5,349.2,334.8C338,330.9,360.5,338.7,349.2,334.8z M147.1,363.6c5.6-5.9,12.7-11.1,20.4-14\r\n\t\t\tc10.5-4,22.4-3.8,33.3-6.6c9-2.3,20.2-5.9,27.2-12.4c6.4-6,7.1-15.2,7.7-23.5c0.5-7,0.4-13.9,0.4-20.9c0-4.9-5.7-7.7-8.5-11.6\r\n\t\t\tc-4.5-6.1-4.7-15.2-5.6-22.5c-0.4-3.2-0.5-7.3-3.2-9.5c-3-2.4-5.2-3.7-6.7-7.5c-2-5.2-2.7-10.8-4.3-16.2c-1-3.5,2.5-6.8,3.9-9.7\r\n\t\t\tc2.6-5.3-1.9-13.5-2.8-19c-2.8-16.4-2.7-34.3,9.1-47.3c23.7-26.2,78-17.9,85.8,18.9c2.4,11.5,0.9,24.9-2.3,36.1\r\n\t\t\tc-1.4,4.8-3,8.3-0.2,13c4.2,6.8,2.4,11.2,0.4,18.8c-1.6,6.3-3.6,9.1-8.4,13c-4,3.2-3.4,11.2-4.1,15.8c-0.8,5.6-1.3,11.5-4.7,16.2\r\n\t\t\tc-1.3,1.8-8.4,7.4-8.4,9.3c0,11-0.5,22.2,1.4,33.1c2.6,15.5,15.6,19.2,28.6,24.5c13.2,5.1,28.5,3.2,41.3,9.5\r\n\t\t\tc13.2,6.5,25.9,18.4,29.7,33.1c-79.3,0-158.6,0-237.9,0c-1.4,0-2.8,0-4.2,0C136.9,375.9,141.5,369.6,147.1,363.6\r\n\t\t\tC156.3,353.9,141.2,369.9,147.1,363.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M144.1,322c7-3.5,14.6-4.3,22.3-5.1c2.8-0.3,4.1-2.2,2-4.9c-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7\r\n\t\tc-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4c2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6\r\n\t\tc-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3c-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1\r\n\t\tc-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28c-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6\r\n\t\tc8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8c-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332.5,32,352c18.3,0,36.5,0,54.8,0\r\n\t\tc8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8C126.2,333.4,134.8,326.7,144.1,322C153.1,317.5,129.5,329.4,144.1,322z M102.8,336\r\n\t\tc-16.3,0-32.6,0-48.9,0c7.1-11.8,24.9-11,36.6-15.2c10.8-3.9,17.7-10.5,18.8-22c0.1-1.3,0.2-29.2-0.9-29.2\r\n\t\tc-8.7-0.3-17.8-0.1-26.5-1.4c6.9-22.3,0.3-45.3,4-67.8c2.7-16.3,13.1-25.3,29.7-25.3c15.9,0,27.7,7.4,31.1,23.4\r\n\t\tc4.8,23.2-2,46.9,5.4,69.9c-5.5,1.4-11.3,1.6-17,1.8c-2.8,0.1-5.7,0.2-8.5,0.3c-1.8,0.1-1.2,3.2-1.3,4.7c-1,10.9-5,28.1,3.7,36.9\r\n\t\tC119.4,318.1,109,326.4,102.8,336z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144.1,322c7-3.5,14.6-4.3,22.3-5.1c2.8-0.3,4.1-2.2,2-4.9c-4-5.1-17.8-6.1-23.6-8.4c-3.6-1.4-4.6-2.7-4.9-6.7\r\n\t\tc-0.1-1.8-1.1-9.8,0.3-11.1c1-1,7.3-0.6,8.7-0.8c5.7-0.7,11.5-1.9,16.9-4c2.3-0.9,4.5-2,6.5-3.4c2.4-1.8-1.8-6.2-2.9-8.6\r\n\t\tc-3.4-7.5-4.9-15.7-5.4-23.9c-1-16.1,1.5-32.3-1.5-48.3c-4.5-24.5-23.4-36.8-47.5-36.8c-14.9,0-29.6,5.1-37.9,18.1\r\n\t\tc-9.2,14.3-8.7,32.1-8.2,48.4c0.3,9.3,0.7,18.7-0.6,28c-0.6,4-1.5,7.9-2.9,11.7c-1.1,2.9-6.7,10.1-4.5,11.6\r\n\t\tc8.3,5.9,22.3,7.9,32.3,7.1c0.3,4.9,1.2,11.2-0.6,15.8c-2.8,7.2-23.7,9.1-30,11.2C45,317.8,32,332.5,32,352c18.3,0,36.5,0,54.8,0\r\n\t\tc8.2,0,16.4,0,24.7,0c1.3,0,6.3-9.3,7.7-10.8C126.2,333.4,134.8,326.7,144.1,322C153.1,317.5,129.5,329.4,144.1,322z M102.8,336\r\n\t\tc-16.3,0-32.6,0-48.9,0c7.1-11.8,24.9-11,36.6-15.2c10.8-3.9,17.7-10.5,18.8-22c0.1-1.3,0.2-29.2-0.9-29.2\r\n\t\tc-8.7-0.3-17.8-0.1-26.5-1.4c6.9-22.3,0.3-45.3,4-67.8c2.7-16.3,13.1-25.3,29.7-25.3c15.9,0,27.7,7.4,31.1,23.4\r\n\t\tc4.8,23.2-2,46.9,5.4,69.9c-5.5,1.4-11.3,1.6-17,1.8c-2.8,0.1-5.7,0.2-8.5,0.3c-1.8,0.1-1.2,3.2-1.3,4.7c-1,10.9-5,28.1,3.7,36.9\r\n\t\tC119.4,318.1,109,326.4,102.8,336z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M399.8,352c26.7,0,53.5,0,80.2,0c0-19.5-13.1-34.3-30.7-40.1c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6\r\n\t\tc4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8c1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6\r\n\t\tc-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8c-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5\r\n\t\tc3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9c-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7\r\n\t\tc-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1C389.6,337.4,397.6,344.2,399.8,352z M399.4,324.9c-5.1-4.7-10.4-9.3-16.3-13\r\n\t\tc8.8-8.8,4.7-25.9,3.7-36.9c-0.6-6.3-2-4.7-8.3-4.9c-6-0.2-12.8,0.1-18.5-1.8c7.2-22.3,1.3-45.2,5-67.9\r\n\t\tc2.8-17.1,14.5-25.5,31.5-25.5c15.4,0,26,7.7,29.2,23c4.9,23.1-2.6,47,4.5,70c-8.5,1.3-17.3,1-25.9,1.3c-2.1,0.1-1.9,25.1-1.7,27.3\r\n\t\tc0.7,11.7,6.1,18.8,17.2,23.3c12.1,4.9,31,3.6,38.4,15.9c-9.3,0-18.5,0-27.8,0c-5.6,0-11.2,0-16.9,0\r\n\t\tC406.4,335.8,404.6,329.6,399.4,324.9C394.4,320.3,403.4,328.5,399.4,324.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.8,352c26.7,0,53.5,0,80.2,0c0-19.5-13.1-34.3-30.7-40.1c-8.1-2.6-23.7-3.4-29.5-10.4c-2.9-3.5-1.3-12.4-1-16.6\r\n\t\tc4.4,0.4,9.2-0.3,13.7-0.9c4.1-0.6,8.1-1.4,12-2.8c1.8-0.7,3.6-1.4,5.3-2.4c3.9-2.3,2.1-2.7,0.1-6.1c-10.9-18.3-6-41.5-6.5-61.6\r\n\t\tc-0.4-16.7-4.8-35-20-44.4c-13.7-8.5-34-8.8-48.7-2.8c-42.4,17-17.4,73.2-31.9,105.4c-2.5,5.4-6.1,7.3,0.2,10.5\r\n\t\tc3.5,1.8,7.3,3,11.1,3.9c5.8,1.4,11.8,2.2,17.8,2.4c1,0,0.3,12.6,0,13.9c-1.1,4.9-11.8,6.3-15.8,7.4c-4.1,1.1-10.9,1.4-12.9,5.7\r\n\t\tc-3,6.4,9.9,4.8,13.1,5.4c10.3,1.9,19.4,7.6,27.4,14.1C389.6,337.4,397.6,344.2,399.8,352z M399.4,324.9c-5.1-4.7-10.4-9.3-16.3-13\r\n\t\tc8.8-8.8,4.7-25.9,3.7-36.9c-0.6-6.3-2-4.7-8.3-4.9c-6-0.2-12.8,0.1-18.5-1.8c7.2-22.3,1.3-45.2,5-67.9\r\n\t\tc2.8-17.1,14.5-25.5,31.5-25.5c15.4,0,26,7.7,29.2,23c4.9,23.1-2.6,47,4.5,70c-8.5,1.3-17.3,1-25.9,1.3c-2.1,0.1-1.9,25.1-1.7,27.3\r\n\t\tc0.7,11.7,6.1,18.8,17.2,23.3c12.1,4.9,31,3.6,38.4,15.9c-9.3,0-18.5,0-27.8,0c-5.6,0-11.2,0-16.9,0\r\n\t\tC406.4,335.8,404.6,329.6,399.4,324.9C394.4,320.3,403.4,328.5,399.4,324.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPeopleOutline = iosPeopleOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPerson.js b/dist/ionicons/iosPerson.js
new file mode 100644
index 000000000..2e295e441
--- /dev/null
+++ b/dist/ionicons/iosPerson.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPerson = void 0;
+var iosPerson = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPerson = iosPerson;
\ No newline at end of file
diff --git a/dist/ionicons/iosPersonOutline.js b/dist/ionicons/iosPersonOutline.js
new file mode 100644
index 000000000..636dd1af8
--- /dev/null
+++ b/dist/ionicons/iosPersonOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPersonOutline = void 0;
+var iosPersonOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M202.4,201.7L202.4,201.7L202.4,201.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M202.4,201.7L202.4,201.7L202.4,201.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z M256,400H118.7\r\n\t\tc2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8c3.4-0.8,20.8-5,28.8-14.6\r\n\t\tc4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3c-1.8-4.7-4.6-19.2-6-28.1\r\n\t\tc0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2c0.6-3.1,0-5.7,0-5.8l0,0\r\n\t\tc-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5c19,0,34,5.7,44.6,16.5\r\n\t\tc9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7l0,0c0,0.1-0.6,1.7-0.4,5.2c0.2,5.4,6.8,5.5,4.3,16.8\r\n\t\tc-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8c-0.9,4.7-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1c-2.3,5.8-6.6,13-8,15.3\r\n\t\tl-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6c4.8,1.1,10.2,1.9,15.9,2.8\r\n\t\tc8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6L256,400L256,400z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\ts6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5l0,0c0,0,4.9-13.6,5.6-42.4\r\n\t\tC331.1,129.6,305,96,256,96s-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4l0,0c-0.5,0-5.2,0.5-5.7,9.5c-0.5,9.7,3.6,14.9,6.1,27.9\r\n\t\tc2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9c-3.3,4-13.2,7.7-20,9.2\r\n\t\tc-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z M256,400H118.7\r\n\t\tc2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8c3.4-0.8,20.8-5,28.8-14.6\r\n\t\tc4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3c-1.8-4.7-4.6-19.2-6-28.1\r\n\t\tc0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2c0.6-3.1,0-5.7,0-5.8l0,0\r\n\t\tc-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5c19,0,34,5.7,44.6,16.5\r\n\t\tc9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7l0,0c0,0.1-0.6,1.7-0.4,5.2c0.2,5.4,6.8,5.5,4.3,16.8\r\n\t\tc-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8c-0.9,4.7-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1c-2.3,5.8-6.6,13-8,15.3\r\n\t\tl-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6c4.8,1.1,10.2,1.9,15.9,2.8\r\n\t\tc8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6L256,400L256,400z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPersonOutline = iosPersonOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPersonadd.js b/dist/ionicons/iosPersonadd.js
new file mode 100644
index 000000000..eba57c610
--- /dev/null
+++ b/dist/ionicons/iosPersonadd.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPersonadd = void 0;
+var iosPersonadd = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosPersonadd = iosPersonadd;
\ No newline at end of file
diff --git a/dist/ionicons/iosPersonaddOutline.js b/dist/ionicons/iosPersonaddOutline.js
new file mode 100644
index 000000000..b739be6ec
--- /dev/null
+++ b/dist/ionicons/iosPersonaddOutline.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPersonaddOutline = void 0;
+var iosPersonaddOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "416,153 391,153 391,128 377,128 377,153 352,153 352,167 377,167 377,192 391,192 391,167 416,167 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M202.4,201.7C202.4,201.7,202.4,201.7,202.4,201.7L202.4,201.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M202.4,201.7C202.4,201.7,202.4,201.7,202.4,201.7L202.4,201.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z\r\n\t\t\t M256,400H118.7c2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8\r\n\t\t\tc3.4-0.8,20.8-5,28.8-14.6c4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3\r\n\t\t\tc-1.8-4.7-4.6-19.2-6-28.1c0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2\r\n\t\t\tc0.6-3.1,0-5.7,0-5.8c0,0,0,0,0,0c-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5\r\n\t\t\tc19,0,34,5.7,44.6,16.5c9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7c0,0,0,0,0,0c0,0.1-0.6,1.7-0.4,5.2\r\n\t\t\tc0.2,5.4,6.8,5.5,4.3,16.8c-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8s-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1\r\n\t\t\tc-2.3,5.8-6.6,13-8,15.3l-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6\r\n\t\t\tc4.8,1.1,10.2,1.9,15.9,2.8c8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6H256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M363.3,363.9c-12.9-4.6-31.4-6.2-43.2-8.8c-6.8-1.5-16.7-5.3-20-9.2c-3.3-4-1.3-40.9-1.3-40.9s6.1-9.6,9.4-18\r\n\t\t\tc3.3-8.4,6.9-31.4,6.9-31.4s6.8,0,9.2-11.9c2.6-13,6.6-18.4,6.1-28.1c-0.5-9-5.2-9.5-5.7-9.5c0,0,0,0,0,0s4.9-13.6,5.6-42.4\r\n\t\t\tC331.1,129.6,305,96,256,96c-49,0-75,33.5-74.3,67.6c0.6,28.7,5.6,42.4,5.6,42.4s0,0,0,0c-0.5,0-5.2,0.5-5.7,9.5\r\n\t\t\tc-0.5,9.7,3.6,14.9,6.1,27.9c2.4,11.9,9.2,12,9.2,12s3.6,23.1,6.9,31.5c3.3,8.5,9.4,18,9.4,18s2,36.9-1.3,40.9\r\n\t\t\tc-3.3,4-13.2,7.7-20,9.2c-11.9,2.6-30.3,4.3-43.2,8.9C135.8,368.5,96,384,96,416h160h160C416,384,376.2,368.5,363.3,363.9z\r\n\t\t\t M256,400H118.7c2-3,4.7-5.1,8.2-7.6c7-5.1,16.1-9.8,27.1-13.6c6.8-2.4,16.7-4,25.4-5.3c5.7-0.9,11.1-1.7,15.9-2.8\r\n\t\t\tc3.4-0.8,20.8-5,28.8-14.6c4.5-5.4,5.8-12.7,5.6-32.3c-0.1-10-0.6-19.3-0.6-19.7l-0.2-4.2l-2.3-3.5c-1.5-2.3-5.8-9.5-8-15.3\r\n\t\t\tc-1.8-4.7-4.6-19.2-6-28.1c0,0,0.4,1-0.5-3.7c-0.9-4.7-8.4-4.3-9.4-8c-0.9-3.6-1.8-6.9-4.3-18.2c-2.5-11.3,2.8-11.2,3.9-16.2\r\n\t\t\tc0.6-3.1,0-5.7,0-5.8c0,0,0,0,0,0c-0.3-1-4.1-13.4-4.7-37.7c-0.3-13.2,4.6-25.6,13.8-34.9c10.6-10.8,26-16.5,44.5-16.5\r\n\t\t\tc19,0,34,5.7,44.6,16.5c9.2,9.3,14.1,21.7,13.8,34.9c-0.5,24.2-4.3,36.6-4.7,37.7c0,0,0,0,0,0c0,0.1-0.6,1.7-0.4,5.2\r\n\t\t\tc0.2,5.4,6.8,5.5,4.3,16.8c-2.5,11.3-3.4,14.6-4.3,18.2c-0.9,3.6-8.5,3.3-9.4,8s-0.5,3.7-0.5,3.7c-1.4,8.9-4.2,23.4-6,28.1\r\n\t\t\tc-2.3,5.8-6.6,13-8,15.3l-2.3,3.5l-0.2,4.2c0,0.4-0.5,9.7-0.6,19.7c-0.2,19.6,1.1,26.9,5.6,32.3c8,9.5,25.4,13.8,28.8,14.6\r\n\t\t\tc4.8,1.1,10.2,1.9,15.9,2.8c8.7,1.3,18.6,2.9,25.4,5.3c11,3.9,20.2,8.6,27.1,13.7c3.5,2.5,6.2,4.6,8.2,7.6H256z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosPersonaddOutline = iosPersonaddOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPhotos.js b/dist/ionicons/iosPhotos.js
new file mode 100644
index 000000000..1758b7993
--- /dev/null
+++ b/dist/ionicons/iosPhotos.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPhotos = void 0;
+var iosPhotos = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,128v320h384V128H96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,128v320h384V128H96z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "416,64 32,64 32,384 80,384 80,112 416,112 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "416,64 32,64 32,384 80,384 80,112 416,112 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPhotos = iosPhotos;
\ No newline at end of file
diff --git a/dist/ionicons/iosPhotosOutline.js b/dist/ionicons/iosPhotosOutline.js
new file mode 100644
index 000000000..2943173ce
--- /dev/null
+++ b/dist/ionicons/iosPhotosOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPhotosOutline = void 0;
+var iosPhotosOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,128v320h384V128H96z M464,432H112V144h352V432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,128v320h384V128H96z M464,432H112V144h352V432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "32,64 32,384 80,384 80,368 48,368 48,80 400,80 400,112 416,112 416,64 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "32,64 32,384 80,384 80,368 48,368 48,80 400,80 400,112 416,112 416,64 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPhotosOutline = iosPhotosOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPie.js b/dist/ionicons/iosPie.js
new file mode 100644
index 000000000..856f493a6
--- /dev/null
+++ b/dist/ionicons/iosPie.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPie = void 0;
+var iosPie = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M272,64v224L74.245,337.376C101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64\r\n\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M272,64v224L74.245,337.376C101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64\r\n\t\tz"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPie = iosPie;
\ No newline at end of file
diff --git a/dist/ionicons/iosPieOutline.js b/dist/ionicons/iosPieOutline.js
new file mode 100644
index 000000000..51482c8f6
--- /dev/null
+++ b/dist/ionicons/iosPieOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPieOutline = void 0;
+var iosPieOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,80.826c45.293,3.705,87.354,23.024,119.809,55.494C444.044,172.57,464,220.744,464,272.043\r\n\t\tc0,25.924-5.08,51.042-15.099,74.703c-9.68,22.859-23.54,43.384-41.194,61.024c-17.654,17.639-38.204,31.481-61.08,41.151\r\n\t\tc-23.673,10.01-48.823,15.081-74.752,15.081c-41.193,0-80.47-12.847-113.584-37.146c-15.95-11.705-29.957-25.733-41.633-41.692\r\n\t\tc-8.378-11.453-15.422-23.724-21.041-36.634l180.259-45.008L288,300.496V288V81 M272,64v224L74.245,337.376\r\n\t\tC101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,80.826c45.293,3.705,87.354,23.024,119.809,55.494C444.044,172.57,464,220.744,464,272.043\r\n\t\tc0,25.924-5.08,51.042-15.099,74.703c-9.68,22.859-23.54,43.384-41.194,61.024c-17.654,17.639-38.204,31.481-61.08,41.151\r\n\t\tc-23.673,10.01-48.823,15.081-74.752,15.081c-41.193,0-80.47-12.847-113.584-37.146c-15.95-11.705-29.957-25.733-41.633-41.692\r\n\t\tc-8.378-11.453-15.422-23.724-21.041-36.634l180.259-45.008L288,300.496V288V81 M272,64v224L74.245,337.376\r\n\t\tC101.653,420.221,179.841,480,271.875,480C386.75,480,480,386.875,480,272S387,64,272,64L272,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M240,48.181v214.943L59.658,308.854c-9.117-23.568-11.197-56.973-11.158-69.496v-0.036v-0.035\r\n\t\tc0-47.311,16.465-93.746,45.173-127.398c16.735-19.618,37.502-34.981,61.721-45.663C180.099,55.331,208.519,49.274,240,48.181\r\n\t\t M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M240,48.181v214.943L59.658,308.854c-9.117-23.568-11.197-56.973-11.158-69.496v-0.036v-0.035\r\n\t\tc0-47.311,16.465-93.746,45.173-127.398c16.735-19.618,37.502-34.981,61.721-45.663C180.099,55.331,208.519,49.274,240,48.181\r\n\t\t M256,32h-5.5C90.5,32,32,148.25,32,239.287c0,0,0.25,56.666,18.91,88.291L256,275.573V32L256,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPieOutline = iosPieOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPint.js b/dist/ionicons/iosPint.js
new file mode 100644
index 000000000..297fc644c
--- /dev/null
+++ b/dist/ionicons/iosPint.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPint = void 0;
+var iosPint = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,170.085c0-21.022-0.973-88.554-19.308-125.013C344.244,36.228,336.25,32,316.999,32H195.001\r\n\tc-19.25,0-27.246,4.197-31.693,13.041C144.973,81.5,144,149.25,144,170.272c0,98,32,100.353,32,180.853c0,39.5-16,71.402-16,99.402\r\n\tc0,27,9,29.473,32,29.473h128c23,0,32-2.535,32-29.535c0-28-16-59.715-16-99.215C336,270.75,368,268.085,368,170.085z\r\n\t M177.602,51.983c0.778-1.546,1.339-1.763,2.53-2.295c1.977-0.884,6.161-1.688,14.869-1.688h121.998\r\n\tc8.708,0,12.893,0.803,14.869,1.687c1.19,0.532,1.752,0.872,2.53,2.418c8.029,15.967,13.601,42.611,16.105,75.896H161.496\r\n\tC164.001,94.653,169.572,67.951,177.602,51.983z"
+ },
+ "children": []
+ }]
+};
+exports.iosPint = iosPint;
\ No newline at end of file
diff --git a/dist/ionicons/iosPintOutline.js b/dist/ionicons/iosPintOutline.js
new file mode 100644
index 000000000..7360e1cb8
--- /dev/null
+++ b/dist/ionicons/iosPintOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPintOutline = void 0;
+var iosPintOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,170.085c0-21.022-0.973-88.554-19.308-125.013C344.244,36.228,336.25,32,316.999,32H195.001\r\n\tc-19.25,0-27.246,4.197-31.693,13.041C144.973,81.5,144,149.25,144,170.272c0,98,32,100.353,32,180.853c0,39.5-16,71.402-16,99.402\r\n\tc0,27,9,29.473,32,29.473h128c23,0,32-2.535,32-29.535c0-28-16-59.715-16-99.215C336,270.75,368,268.085,368,170.085z\r\n\t M177.602,51.983c0.778-1.546,1.339-1.763,2.53-2.295c1.977-0.884,6.161-1.688,14.869-1.688h121.998\r\n\tc8.708,0,12.893,0.803,14.869,1.687c1.19,0.532,1.752,0.872,2.53,2.418c8.029,15.967,13.601,42.611,16.105,75.896H161.496\r\n\tC164.001,94.653,169.572,67.951,177.602,51.983z M334.631,462.636C332.76,463.377,327.844,464,320,464H192\r\n\tc-7.844,0-12.761-0.623-14.639-1.359c-0.394-0.93-1.361-4.166-1.361-12.27c0-10.856,3.016-23.16,6.508-37.334\r\n\tc4.449-18.059,9.492-38.557,9.492-61.943c0-40.997-7.993-63.802-15.724-85.842C168.274,242.438,160,218.838,160,170.155\r\n\tc0-9.025,0.191-17.756,0.558-26.155h190.886c0.365,8.376,0.557,17.083,0.557,26.085c0,48.688-8.276,72.302-16.28,95.169\r\n\tc-7.728,22.079-15.72,44.895-15.72,85.887c0,23.39,5.043,43.822,9.493,61.856c3.491,14.15,6.507,26.368,6.507,37.222\r\n\tC336,458.355,335.024,461.713,334.631,462.636z"
+ },
+ "children": []
+ }]
+};
+exports.iosPintOutline = iosPintOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPlay.js b/dist/ionicons/iosPlay.js
new file mode 100644
index 000000000..96c7fe162
--- /dev/null
+++ b/dist/ionicons/iosPlay.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPlay = void 0;
+var iosPlay = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,96v320l256-160L128,96L128,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,96v320l256-160L128,96L128,96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPlay = iosPlay;
\ No newline at end of file
diff --git a/dist/ionicons/iosPlayOutline.js b/dist/ionicons/iosPlayOutline.js
new file mode 100644
index 000000000..0a495ac5e
--- /dev/null
+++ b/dist/ionicons/iosPlayOutline.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPlayOutline = void 0;
+var iosPlayOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,124.9L353.8,256L144,387.1V124.9 M128,96v320l256-160L128,96L128,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,124.9L353.8,256L144,387.1V124.9 M128,96v320l256-160L128,96L128,96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPlayOutline = iosPlayOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPlus.js b/dist/ionicons/iosPlus.js
new file mode 100644
index 000000000..c7eb1d950
--- /dev/null
+++ b/dist/ionicons/iosPlus.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPlus = void 0;
+var iosPlus = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H264v119h-17V265\r\n\t\tH128v-17h119V128h17v120h120V265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M384,265H264v119h-17V265\r\n\t\tH128v-17h119V128h17v120h120V265z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPlus = iosPlus;
\ No newline at end of file
diff --git a/dist/ionicons/iosPlusEmpty.js b/dist/ionicons/iosPlusEmpty.js
new file mode 100644
index 000000000..aa1f253bd
--- /dev/null
+++ b/dist/ionicons/iosPlusEmpty.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPlusEmpty = void 0;
+var iosPlusEmpty = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,265H264v119h-17V265H128v-17h119V128h17v120h120V265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,265H264v119h-17V265H128v-17h119V128h17v120h120V265z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPlusEmpty = iosPlusEmpty;
\ No newline at end of file
diff --git a/dist/ionicons/iosPlusOutline.js b/dist/ionicons/iosPlusOutline.js
new file mode 100644
index 000000000..73357efda
--- /dev/null
+++ b/dist/ionicons/iosPlusOutline.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPlusOutline = void 0;
+var iosPlusOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7S150.9,65.3,256,65.3S446.7,150.9,446.7,256S361.1,446.7,256,446.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\t\tc-105.1,0-190.7-85.5-190.7-190.7S150.9,65.3,256,65.3S446.7,150.9,446.7,256S361.1,446.7,256,446.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "264.1,128 247.3,128 247.3,247.9 128,247.9 128,264.7 247.3,264.7 247.3,384 264.1,384 264.1,264.7 384,264.7 \r\n\t\t\t384,247.9 264.1,247.9 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "264.1,128 247.3,128 247.3,247.9 128,247.9 128,264.7 247.3,264.7 247.3,384 264.1,384 264.1,264.7 384,264.7 \r\n\t\t\t384,247.9 264.1,247.9 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosPlusOutline = iosPlusOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPricetag.js b/dist/ionicons/iosPricetag.js
new file mode 100644
index 000000000..b47f6ebd3
--- /dev/null
+++ b/dist/ionicons/iosPricetag.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPricetag = void 0;
+var iosPricetag = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "368",
+ "cy": "128",
+ "r": "16"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "368",
+ "cy": "128",
+ "r": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M304,32L48,320l160,160l256-288V32H304z M368,160c-17.645,0-32-14.355-32-32s14.355-32,32-32s32,14.355,32,32\r\n\t\tS385.645,160,368,160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M304,32L48,320l160,160l256-288V32H304z M368,160c-17.645,0-32-14.355-32-32s14.355-32,32-32s32,14.355,32,32\r\n\t\tS385.645,160,368,160z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPricetag = iosPricetag;
\ No newline at end of file
diff --git a/dist/ionicons/iosPricetagOutline.js b/dist/ionicons/iosPricetagOutline.js
new file mode 100644
index 000000000..ac5dce6b8
--- /dev/null
+++ b/dist/ionicons/iosPricetagOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPricetagOutline = void 0;
+var iosPricetagOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,32H304L48,320l160,160l256-288V32z M448,184L208.125,456L72.062,320L311.587,48H448V184z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,32H304L48,320l160,160l256-288V32z M448,184L208.125,456L72.062,320L311.587,48H448V184z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M368,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S350.355,160,368,160z M368,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S359.164,112,368,112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S350.355,160,368,160z M368,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S359.164,112,368,112z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPricetagOutline = iosPricetagOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPricetags.js b/dist/ionicons/iosPricetags.js
new file mode 100644
index 000000000..60472fb81
--- /dev/null
+++ b/dist/ionicons/iosPricetags.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPricetags = void 0;
+var iosPricetags = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "464,64 464,201.377 227.153,467.48 240,480 480,208 480,64 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "464,64 464,201.377 227.153,467.48 240,480 480,208 480,64 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,32L32,320l160,160l23.471-23.904l11.348-11.375L448,192V80V64V32H288z M352,160c-17.645,0-32-14.355-32-32\r\n\t\t\ts14.355-32,32-32s32,14.355,32,32S369.645,160,352,160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,32L32,320l160,160l23.471-23.904l11.348-11.375L448,192V80V64V32H288z M352,160c-17.645,0-32-14.355-32-32\r\n\t\t\ts14.355-32,32-32s32,14.355,32,32S369.645,160,352,160z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "352",
+ "cy": "128",
+ "r": "16"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "352",
+ "cy": "128",
+ "r": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosPricetags = iosPricetags;
\ No newline at end of file
diff --git a/dist/ionicons/iosPricetagsOutline.js b/dist/ionicons/iosPricetagsOutline.js
new file mode 100644
index 000000000..f5c93a673
--- /dev/null
+++ b/dist/ionicons/iosPricetagsOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPricetagsOutline = void 0;
+var iosPricetagsOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,64V32H288L32,320l160,160l23.471-23.904L240,480l240-272V64H448z M192,457.371L54.39,320L294.621,48H432v16v16\r\n\t\tv105.377l-216.555,247.99l-11.34,11.363L192,457.371z M464,201.377L240,457.371l-13.182-12.65L448,192V80h16V201.377z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,64V32H288L32,320l160,160l23.471-23.904L240,480l240-272V64H448z M192,457.371L54.39,320L294.621,48H432v16v16\r\n\t\tv105.377l-216.555,247.99l-11.34,11.363L192,457.371z M464,201.377L240,457.371l-13.182-12.65L448,192V80h16V201.377z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M352,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S334.355,160,352,160z M352,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S343.164,112,352,112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,160c17.645,0,32-14.355,32-32s-14.355-32-32-32s-32,14.355-32,32S334.355,160,352,160z M352,112\r\n\t\tc8.836,0,16,7.163,16,16s-7.164,16-16,16s-16-7.163-16-16S343.164,112,352,112z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPricetagsOutline = iosPricetagsOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPrinter.js b/dist/ionicons/iosPrinter.js
new file mode 100644
index 000000000..e6888cb04
--- /dev/null
+++ b/dist/ionicons/iosPrinter.js
@@ -0,0 +1,93 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPrinter = void 0;
+var iosPrinter = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "128",
+ "y": "224",
+ "width": "256",
+ "height": "224"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "128",
+ "y": "224",
+ "width": "256",
+ "height": "224"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "127.5",
+ "y": "224.5",
+ "width": "256",
+ "height": "224"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "127.5",
+ "y": "224.5",
+ "width": "256",
+ "height": "224"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "111.5",
+ "y": "64.5",
+ "width": "288",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "111.5",
+ "y": "64.5",
+ "width": "288",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M432.5,112.5h-352c-17.645,0-33,12.842-33,30.309v158.393c0,17.468,15.355,33.299,33,33.299h31v-126h288v126h33\r\n\t\t\tc17.645,0,31-15.831,31-33.299V142.809C463.5,125.342,450.145,112.5,432.5,112.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M432.5,112.5h-352c-17.645,0-33,12.842-33,30.309v158.393c0,17.468,15.355,33.299,33,33.299h31v-126h288v126h33\r\n\t\t\tc17.645,0,31-15.831,31-33.299V142.809C463.5,125.342,450.145,112.5,432.5,112.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosPrinter = iosPrinter;
\ No newline at end of file
diff --git a/dist/ionicons/iosPrinterOutline.js b/dist/ionicons/iosPrinterOutline.js
new file mode 100644
index 000000000..6f662b395
--- /dev/null
+++ b/dist/ionicons/iosPrinterOutline.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPrinterOutline = void 0;
+var iosPrinterOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M432.5,112H400V64H112v48H80.5C62.9,112,48,125.8,48,143.3v158.4c0,17.5,14.9,32.3,32.5,32.3H128v114h256V334h48.5\r\n\t\tc17.6,0,31.5-14.8,31.5-32.3V143.3C464,125.8,450.1,112,432.5,112z M128,80h256v32H128V80z M368,432H144V240h224V432z M448,301.7\r\n\t\tc0,8.7-6.7,16.3-15.5,16.3H384v-94H128v94H80.5c-8.8,0-16.5-7.6-16.5-16.3V143.3c0-8.7,7.7-15.3,16.5-15.3H432h0.5\r\n\t\tc8.8,0,15.5,6.6,15.5,15.3V301.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M432.5,112H400V64H112v48H80.5C62.9,112,48,125.8,48,143.3v158.4c0,17.5,14.9,32.3,32.5,32.3H128v114h256V334h48.5\r\n\t\tc17.6,0,31.5-14.8,31.5-32.3V143.3C464,125.8,450.1,112,432.5,112z M128,80h256v32H128V80z M368,432H144V240h224V432z M448,301.7\r\n\t\tc0,8.7-6.7,16.3-15.5,16.3H384v-94H128v94H80.5c-8.8,0-16.5-7.6-16.5-16.3V143.3c0-8.7,7.7-15.3,16.5-15.3H432h0.5\r\n\t\tc8.8,0,15.5,6.6,15.5,15.3V301.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosPrinterOutline = iosPrinterOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosPulse.js b/dist/ionicons/iosPulse.js
new file mode 100644
index 000000000..63264d3ee
--- /dev/null
+++ b/dist/ionicons/iosPulse.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPulse = void 0;
+var iosPulse = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,288c-15.268,0-28.029,10.695-31.223,25h-59.004l-30.181-90.896c-1.105-3.329-4.246-5.543-7.759-5.478\r\n\tc-3.508,0.072-6.559,2.422-7.524,5.795L258.067,411.74L199.892,62.685c-0.624-3.74-3.787-6.528-7.576-6.679\r\n\tc-3.809-0.139-7.161,2.382-8.078,6.061L121.748,313H32v16h96c3.674,0,6.875-2.502,7.763-6.066l54.685-219.591l57.661,345.973\r\n\tc0.615,3.688,3.703,6.459,7.437,6.672c0.153,0.009,0.307,0.013,0.459,0.013c3.549,0,6.699-2.35,7.687-5.797l56.872-198.496\r\n\tl23.845,71.813c1.087,3.271,4.146,5.479,7.593,5.479h65.292c3.89,13.289,16.161,23,30.708,23c17.674,0,32-14.327,32-32\r\n\tS465.674,288,448,288z"
+ },
+ "children": []
+ }]
+};
+exports.iosPulse = iosPulse;
\ No newline at end of file
diff --git a/dist/ionicons/iosPulseStrong.js b/dist/ionicons/iosPulseStrong.js
new file mode 100644
index 000000000..2ba642d7c
--- /dev/null
+++ b/dist/ionicons/iosPulseStrong.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosPulseStrong = void 0;
+var iosPulseStrong = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,273.001c-21.27,0-39.296,13.999-45.596,32.999h-38.857l-28.361-85.417c-2.176-6.553-8.303-10.956-15.183-10.956\r\n\tc-0.112,0-0.224,0-0.335,0.004c-7.016,0.145-13.117,4.844-15.049,11.588l-44.484,155.262L207.782,62.373\r\n\tC206.535,54.893,200.333,48,192,48s-13.693,5.776-15.525,13.135L115.496,306H16v31.999h112c7.348,0,13.75-5.003,15.525-12.134\r\n\tl45.368-182.177l51.324,307.94c1.229,7.377,7.397,11.92,14.864,12.344C255.389,463.99,255.695,464,256,464\r\n\tc7.097,0,13.406-3.701,15.381-10.594l49.744-173.617l15.689,47.252c2.173,6.543,8.292,10.958,15.186,10.958h51.108\r\n\tC409.973,355.999,427.477,369,448,369c26.511,0,48-22.492,48-49C496,293.491,474.511,273.001,448,273.001z"
+ },
+ "children": []
+ }]
+};
+exports.iosPulseStrong = iosPulseStrong;
\ No newline at end of file
diff --git a/dist/ionicons/iosRainy.js b/dist/ionicons/iosRainy.js
new file mode 100644
index 000000000..2d48c1033
--- /dev/null
+++ b/dist/ionicons/iosRainy.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRainy = void 0;
+var iosRainy = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M332.1,179.4c-2.8,0-5.7-0.1-8.4,0.3c-8.3-36.8-35.2-67.6-80.3-67.6c-50.9,0-82.3,38-82.3,83.6\r\n\tc0,2.8,0.1,5.5,0.4,8.2c-27.7,2.5-49.5,31.3-49.5,59.8c0,29.2,22.9,54.6,51.6,56.2l-24.5,34.4c-1.1,1.6-2,3.4-2,5.5\r\n\tc0,4.6,3.7,8.3,8.3,8.3c3,0,5.6-1.6,7.1-4l31-43.8h36.1l-46.1,65.8c-1.2,1.6-2.1,3.6-2.1,5.6c0,4.6,3.7,8.3,8.3,8.3\r\n\tc3,0,5.6-1.8,7.2-4.3l52.6-75.5h37.9l-24.9,34.4c-1.2,1.6-2.2,3.8-2.2,5.6c0,4.6,3.7,8.3,8.3,8.3c3.1,0,5.4-1.7,7.2-4.1l31.6-44.3\r\n\th34.7c0.1,0,0.3-0.1,0.4-0.1l-46.1,65.9c-1.3,1.7-2.3,3.6-2.3,5.8c0,4.6,3.7,8.3,8.3,8.3c3.2,0,5.5-2,7.4-4.5l55.5-79.8\r\n\tc26-9.9,44.6-35.8,44.6-65.2C400,212.8,369.6,179.4,332.1,179.4z"
+ },
+ "children": []
+ }]
+};
+exports.iosRainy = iosRainy;
\ No newline at end of file
diff --git a/dist/ionicons/iosRainyOutline.js b/dist/ionicons/iosRainyOutline.js
new file mode 100644
index 000000000..5f7210821
--- /dev/null
+++ b/dist/ionicons/iosRainyOutline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRainyOutline = void 0;
+var iosRainyOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M332.1,179.4c-2.8,0-5.7-0.1-8.4,0.3c-8.3-36.8-35.2-67.6-80.3-67.6c-50.9,0-82.3,38-82.3,83.6\r\n\tc0,2.8,0.1,5.5,0.4,8.2c-27.7,2.5-49.5,31.3-49.5,59.8c0,29.2,22.9,54.6,51.6,56.2l-24.5,34.4c-1.1,1.6-2,3.4-2,5.5\r\n\tc0,4.6,3.7,8.3,8.3,8.3c3,0,5.6-1.6,7.1-4l31-43.8h36.1l-46.1,65.8c-1.2,1.6-2.1,3.6-2.1,5.6c0,4.6,3.7,8.3,8.3,8.3\r\n\tc3,0,5.6-1.8,7.2-4.3l52.6-75.5h37.9l-24.9,34.4c-1.2,1.6-2.2,3.8-2.2,5.6c0,4.6,3.7,8.3,8.3,8.3c3.1,0,5.4-1.7,7.2-4.1l31.6-44.3\r\n\th34.7c0.1,0,0.3-0.1,0.4-0.1l-46.1,65.9c-1.3,1.7-2.3,3.6-2.3,5.8c0,4.6,3.7,8.3,8.3,8.3c3.2,0,5.5-2,7.4-4.5l55.5-79.8\r\n\tc26-9.9,44.6-35.8,44.6-65.2C400,212.8,369.6,179.4,332.1,179.4z M332.1,302.1H290l-0.1-0.1l-0.1,0.1H166.4\r\n\tc-10,0-19.5-4.6-26.7-11.9c-7.2-7.3-11.1-17.2-11.1-27.4c0-19.6,15.2-39.8,34.9-43c1.7-0.3,9.2-1.4,15-1.9c0,0-0.5-5.6-0.7-10.2\r\n\tc-0.1-4.6-0.1-9.9-0.1-12.1c0-36.4,29.5-66.9,65.8-66.9c15.2,0,29.5,5.1,41.3,14.7c11.5,9.3,19.6,25.4,22.8,39.7l3.3,14.7l14.9-1.9\r\n\tc2.2-0.3,4.3-0.4,6.4-0.4c28.3,0,51.3,25.9,51.3,54.4C383.4,278.3,360.4,302.1,332.1,302.1z"
+ },
+ "children": []
+ }]
+};
+exports.iosRainyOutline = iosRainyOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosRecording.js b/dist/ionicons/iosRecording.js
new file mode 100644
index 000000000..8ce09863a
--- /dev/null
+++ b/dist/ionicons/iosRecording.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRecording = void 0;
+var iosRecording = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M386.2,144c-60.6,0-109.8,49.9-109.8,111.8c0,40.4,21,76.2,52.5,95.2H183.1c31.5-19,52.5-54.8,52.5-95.2\r\n\t\tc0-61.9-49.2-111.9-109.8-111.9C65.2,143.9,16,194.1,16,255.9C16,317.8,65.2,368,125.8,368h260.4c60.6,0,109.8-50.1,109.8-112\r\n\t\tC496,194.1,446.8,144,386.2,144z M128,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C192,291.3,163.3,320,128,320z\r\n\t\t M384,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C448,291.3,419.3,320,384,320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M386.2,144c-60.6,0-109.8,49.9-109.8,111.8c0,40.4,21,76.2,52.5,95.2H183.1c31.5-19,52.5-54.8,52.5-95.2\r\n\t\tc0-61.9-49.2-111.9-109.8-111.9C65.2,143.9,16,194.1,16,255.9C16,317.8,65.2,368,125.8,368h260.4c60.6,0,109.8-50.1,109.8-112\r\n\t\tC496,194.1,446.8,144,386.2,144z M128,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C192,291.3,163.3,320,128,320z\r\n\t\t M384,320c-35.3,0-64-28.7-64-64c0-35.3,28.7-64,64-64s64,28.7,64,64C448,291.3,419.3,320,384,320z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C432,229.5,410.5,208,384,208z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C432,229.5,410.5,208,384,208z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M128,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C176,229.5,154.5,208,128,208z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,208c-26.5,0-48,21.5-48,48c0,26.5,21.5,48,48,48s48-21.5,48-48C176,229.5,154.5,208,128,208z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosRecording = iosRecording;
\ No newline at end of file
diff --git a/dist/ionicons/iosRecordingOutline.js b/dist/ionicons/iosRecordingOutline.js
new file mode 100644
index 000000000..168fc480f
--- /dev/null
+++ b/dist/ionicons/iosRecordingOutline.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRecordingOutline = void 0;
+var iosRecordingOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M386.2,144c-60.6,0-109.8,50.1-109.8,112c0,40.4,21,75.7,52.5,95.4H183.1c31.5-19.7,52.5-55,52.5-95.4\r\n\tc0-61.9-49.2-112-109.8-112C65.2,144,16,194.1,16,256c0,61.9,49.2,112,109.8,112h260.4c60.6,0,109.8-50.1,109.8-112\r\n\tC496,194.1,446.8,144,386.2,144z M32.3,256c0-52.6,42-95.4,93.5-95.4c51.6,0,93.5,42.8,93.5,95.4s-42,95.4-93.5,95.4\r\n\tC74.2,351.4,32.3,308.6,32.3,256z M386.2,351.4c-51.6,0-93.5-42.8-93.5-95.4s42-95.4,93.5-95.4s93.5,42.8,93.5,95.4\r\n\tS437.8,351.4,386.2,351.4z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384,208c26.5,0,48,21.5,48,48c0,26.5-21.5,48-48,48s-48-21.5-48-48C336,229.5,357.5,208,384,208 M384,192\r\n\tc-35.3,0-64,28.7-64,64c0,35.3,28.7,64,64,64s64-28.7,64-64C448,220.7,419.3,192,384,192L384,192z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M128,208c26.5,0,48,21.5,48,48c0,26.5-21.5,48-48,48s-48-21.5-48-48C80,229.5,101.5,208,128,208 M128,192\r\n\tc-35.3,0-64,28.7-64,64c0,35.3,28.7,64,64,64s64-28.7,64-64C192,220.7,163.3,192,128,192L128,192z"
+ },
+ "children": []
+ }]
+};
+exports.iosRecordingOutline = iosRecordingOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosRedo.js b/dist/ionicons/iosRedo.js
new file mode 100644
index 000000000..e81ad5950
--- /dev/null
+++ b/dist/ionicons/iosRedo.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRedo = void 0;
+var iosRedo = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosRedo = iosRedo;
\ No newline at end of file
diff --git a/dist/ionicons/iosRedoOutline.js b/dist/ionicons/iosRedoOutline.js
new file mode 100644
index 000000000..7dfa9ed39
--- /dev/null
+++ b/dist/ionicons/iosRedoOutline.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRedoOutline = void 0;
+var iosRedoOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z M272,192v-64.7l148.1,96.8L272,320.8\r\n\t\tV256c-91,0-144.6,24.6-192.2,105.4C79.8,361.4,71,192,272,192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,400h10.3l19.2-31.2c20.5-32.7,44.9-62.8,75.8-76.6c24.4-10.9,46.7-18.9,86.7-20V352l192-128L256,96v80.3\r\n\t\tc-63,2.8-108.1,20.7-143.3,56.2c-52.3,52.7-48.7,119-48.7,135.7C64.1,377.1,64,389.9,64,400z M272,192v-64.7l148.1,96.8L272,320.8\r\n\t\tV256c-91,0-144.6,24.6-192.2,105.4C79.8,361.4,71,192,272,192z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosRedoOutline = iosRedoOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosRefresh.js b/dist/ionicons/iosRefresh.js
new file mode 100644
index 000000000..59fb8a7e5
--- /dev/null
+++ b/dist/ionicons/iosRefresh.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRefresh = void 0;
+var iosRefresh = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,384.1\r\n\t\tc-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8c-59.6,0-108.1,48.5-108.1,108.1\r\n\t\tc0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,384.1\r\n\t\tc-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8c-59.6,0-108.1,48.5-108.1,108.1\r\n\t\tc0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosRefresh = iosRefresh;
\ No newline at end of file
diff --git a/dist/ionicons/iosRefreshEmpty.js b/dist/ionicons/iosRefreshEmpty.js
new file mode 100644
index 000000000..41fe2d7ba
--- /dev/null
+++ b/dist/ionicons/iosRefreshEmpty.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRefreshEmpty = void 0;
+var iosRefreshEmpty = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,384.1c-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8\r\n\t\tc-59.6,0-108.1,48.5-108.1,108.1c0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,384.1c-70.7,0-128-57.3-128-128.1c0-70.8,57.3-128.1,128-128.1V84l96,64l-96,55.7v-55.8\r\n\t\tc-59.6,0-108.1,48.5-108.1,108.1c0,59.6,48.5,108.1,108.1,108.1S364.1,316,364.1,256H384C384,327,326.7,384.1,256,384.1z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosRefreshEmpty = iosRefreshEmpty;
\ No newline at end of file
diff --git a/dist/ionicons/iosRefreshOutline.js b/dist/ionicons/iosRefreshOutline.js
new file mode 100644
index 000000000..584758823
--- /dev/null
+++ b/dist/ionicons/iosRefreshOutline.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRefreshOutline = void 0;
+var iosRefreshOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M364.1,256c0,60-48.5,108.2-108.1,108.2S147.9,315.7,147.9,256c0-59.6,48.5-108.1,108.1-108.1v55.8l96-55.7l-96-64v44\r\n\tc-70.7,0-128,57.4-128,128.1c0,70.8,57.3,128.1,128,128.1c70.7,0,128-57.1,128-128.1H364.1z"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7\r\n\t\t\tc-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7\r\n\t\t\tC446.7,361.1,361.1,446.7,256,446.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosRefreshOutline = iosRefreshOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosReload.js b/dist/ionicons/iosReload.js
new file mode 100644
index 000000000..b7c1c6b89
--- /dev/null
+++ b/dist/ionicons/iosReload.js
@@ -0,0 +1,29 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosReload = void 0;
+var iosReload = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "PL_x5F_Reset_1_"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c105.9,0,191.7,85.7,191.9,191.5l55-52.5l9,9.1L441.6,280L375,212.1l9-9.1l51.1,52.4\r\n\t\tC434.8,156.9,354.6,76.8,256,76.8c-98.8,0-179.2,80.4-179.2,179.2c0,98.8,80.4,179.2,179.2,179.2c78.6,0,145.5-51,169.5-121.6\r\n\t\tl12.4,3.5C412.3,393.2,340.6,448,256,448c-106,0-192-86-192-192S150,64,256,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c105.9,0,191.7,85.7,191.9,191.5l55-52.5l9,9.1L441.6,280L375,212.1l9-9.1l51.1,52.4\r\n\t\tC434.8,156.9,354.6,76.8,256,76.8c-98.8,0-179.2,80.4-179.2,179.2c0,98.8,80.4,179.2,179.2,179.2c78.6,0,145.5-51,169.5-121.6\r\n\t\tl12.4,3.5C412.3,393.2,340.6,448,256,448c-106,0-192-86-192-192S150,64,256,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosReload = iosReload;
\ No newline at end of file
diff --git a/dist/ionicons/iosReverseCamera.js b/dist/ionicons/iosReverseCamera.js
new file mode 100644
index 000000000..22573cde8
--- /dev/null
+++ b/dist/ionicons/iosReverseCamera.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosReverseCamera = void 0;
+var iosReverseCamera = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M313.076,330.782C297.17,344.434,276.9,352,256,352c-45.487,0-82.509-36-87.205-78h-29.479\r\n\t\tl37.534-50l38.87,50h-30.61c4.604,33,34.53,61.965,70.89,61.965c16.859,0,32.701-6.327,45.815-17.356l2.032-1.647l11.599,11.662\r\n\t\tL313.076,330.782z M335.094,307.225L296.248,256h30.644c-4.617-35-34.548-63.797-70.891-63.797\r\n\t\tc-16.618,0-32.888,6.133-45.814,17.005l-2.033,1.706l-11.599-11.61l2.371-2.052c15.905-13.65,36.175-21.206,57.075-21.206\r\n\t\tc22.333,0,43.548,8.063,59.736,22.839C331.275,213.064,340.966,236,343.207,256h29.512L335.094,307.225z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M313.076,330.782C297.17,344.434,276.9,352,256,352c-45.487,0-82.509-36-87.205-78h-29.479\r\n\t\tl37.534-50l38.87,50h-30.61c4.604,33,34.53,61.965,70.89,61.965c16.859,0,32.701-6.327,45.815-17.356l2.032-1.647l11.599,11.662\r\n\t\tL313.076,330.782z M335.094,307.225L296.248,256h30.644c-4.617-35-34.548-63.797-70.891-63.797\r\n\t\tc-16.618,0-32.888,6.133-45.814,17.005l-2.033,1.706l-11.599-11.61l2.371-2.052c15.905-13.65,36.175-21.206,57.075-21.206\r\n\t\tc22.333,0,43.548,8.063,59.736,22.839C331.275,213.064,340.966,236,343.207,256h29.512L335.094,307.225z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosReverseCamera = iosReverseCamera;
\ No newline at end of file
diff --git a/dist/ionicons/iosReverseCameraOutline.js b/dist/ionicons/iosReverseCameraOutline.js
new file mode 100644
index 000000000..d4cf000ba
--- /dev/null
+++ b/dist/ionicons/iosReverseCameraOutline.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosReverseCameraOutline = void 0;
+var iosReverseCameraOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M301.815,318.608c-13.114,11.029-28.956,17.356-45.815,17.356c-36.36,0-66.286-28.965-70.89-61.965h30.61l-38.87-50\r\n\t\tl-37.534,50h29.479c4.696,42,41.717,78,87.205,78c20.9,0,41.17-7.566,57.076-21.218l2.37-2.159l-11.599-11.662L301.815,318.608z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M301.815,318.608c-13.114,11.029-28.956,17.356-45.815,17.356c-36.36,0-66.286-28.965-70.89-61.965h30.61l-38.87-50\r\n\t\tl-37.534,50h29.479c4.696,42,41.717,78,87.205,78c20.9,0,41.17-7.566,57.076-21.218l2.37-2.159l-11.599-11.662L301.815,318.608z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M315.736,198.885c-16.188-14.775-37.402-22.839-59.736-22.839c-20.9,0-41.169,7.556-57.075,21.206l-2.371,2.052\r\n\t\tl11.599,11.61l2.033-1.706c12.927-10.872,29.197-17.005,45.814-17.005c36.343,0,66.274,28.797,70.891,63.797h-30.644l38.846,51.225\r\n\t\tL372.719,256h-29.512C340.966,236,331.275,213.064,315.736,198.885z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M315.736,198.885c-16.188-14.775-37.402-22.839-59.736-22.839c-20.9,0-41.169,7.556-57.075,21.206l-2.371,2.052\r\n\t\tl11.599,11.61l2.033-1.706c12.927-10.872,29.197-17.005,45.814-17.005c36.343,0,66.274,28.797,70.891,63.797h-30.644l38.846,51.225\r\n\t\tL372.719,256h-29.512C340.966,236,331.275,213.064,315.736,198.885z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M432,366.701c0,9.263-6.229,17.299-14.5,17.299h-320c-8.738,0-17.5-8.664-17.5-17.299V190.684\r\n\t\tC80,182.518,88.126,176,97.5,176h60.729c0,0,4.124,0,6.133,0s3.225-0.199,5.768-3.2s7.702-10.008,11.08-13.795\r\n\t\tc11.296-12.666,19.457-21.915,25.316-27.132c4.746-4.225,6.211-3.873,6.225-3.873h88.5c0.016,0,1.611-0.363,6.709,4.219\r\n\t\tc6.141,5.521,14.705,16.84,26.558,30.198c2.888,3.255,7.214,8.11,9.317,10.44s4.252,3.143,5.771,3.143s6.17,0,6.17,0H417.5\r\n\t\tc8.832,0,14.5,5.965,14.5,14.684V366.701z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.5,160h-61.725c-32.105-36-42.219-48-54.525-48h-88.5c-12.314,0-22.167,12-54.521,48H145v-16h-34v16H97.5\r\n\t\tC79.855,160,64,173.217,64,190.684v176.018C64,384.169,79.855,400,97.5,400h320c17.645,0,30.5-15.831,30.5-33.299V190.684\r\n\t\tC448,173.217,435.145,160,417.5,160z M432,366.701c0,9.263-6.229,17.299-14.5,17.299h-320c-8.738,0-17.5-8.664-17.5-17.299V190.684\r\n\t\tC80,182.518,88.126,176,97.5,176h60.729c0,0,4.124,0,6.133,0s3.225-0.199,5.768-3.2s7.702-10.008,11.08-13.795\r\n\t\tc11.296-12.666,19.457-21.915,25.316-27.132c4.746-4.225,6.211-3.873,6.225-3.873h88.5c0.016,0,1.611-0.363,6.709,4.219\r\n\t\tc6.141,5.521,14.705,16.84,26.558,30.198c2.888,3.255,7.214,8.11,9.317,10.44s4.252,3.143,5.771,3.143s6.17,0,6.17,0H417.5\r\n\t\tc8.832,0,14.5,5.965,14.5,14.684V366.701z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosReverseCameraOutline = iosReverseCameraOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosRewind.js b/dist/ionicons/iosRewind.js
new file mode 100644
index 000000000..f1c2c3cd7
--- /dev/null
+++ b/dist/ionicons/iosRewind.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRewind = void 0;
+var iosRewind = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,128L32,256l224,128V260.8L480,384V128L256,251.2V128L256,128z"
+ },
+ "children": []
+ }]
+};
+exports.iosRewind = iosRewind;
\ No newline at end of file
diff --git a/dist/ionicons/iosRewindOutline.js b/dist/ionicons/iosRewindOutline.js
new file mode 100644
index 000000000..08a323edb
--- /dev/null
+++ b/dist/ionicons/iosRewindOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRewindOutline = void 0;
+var iosRewindOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,155v201.9L280.5,256L464,155 M240,156v77.7v27.1v95.6L64,256l176-100.2 M256,128L32,256l224,128V260.8L480,384V128\r\n\tL256,251.2V128L256,128z"
+ },
+ "children": []
+ }]
+};
+exports.iosRewindOutline = iosRewindOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosRose.js b/dist/ionicons/iosRose.js
new file mode 100644
index 000000000..71ac5ca99
--- /dev/null
+++ b/dist/ionicons/iosRose.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRose = void 0;
+var iosRose = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,128c-18.863,4.163-36.75,8.786-53.697,13.753c-40.457,11.858-75.509,25.693-105.445,40.015\r\n\t\tc-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889S167.635,480,256,480s144-55.148,144-128.111\r\n\t\tS338.999,224,416,128L416,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,128c-18.863,4.163-36.75,8.786-53.697,13.753c-40.457,11.858-75.509,25.693-105.445,40.015\r\n\t\tc-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889S167.635,480,256,480s144-55.148,144-128.111\r\n\t\tS338.999,224,416,128L416,128z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M96,96c41.475,47.079,44.624,103.891,39.382,144.741c12.772-11.274,31.177-25.734,56.144-41.389\r\n\t\tc6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765c-9.113-10.898-22.07-20.606-36.631-29.095\r\n\t\tC162.631,110.756,96,96,96,96L96,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,96c41.475,47.079,44.624,103.891,39.382,144.741c12.772-11.274,31.177-25.734,56.144-41.389\r\n\t\tc6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765c-9.113-10.898-22.07-20.606-36.631-29.095\r\n\t\tC162.631,110.756,96,96,96,96L96,96z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533l2.724,3.257\r\n\t\tc37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533l2.724,3.257\r\n\t\tc37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M176,32c-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574\r\n\t\tc9.505-11.4,20.415-21.626,32.605-30.543C210.342,47.655,176,32,176,32L176,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M176,32c-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574\r\n\t\tc9.505-11.4,20.415-21.626,32.605-30.543C210.342,47.655,176,32,176,32L176,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosRose = iosRose;
\ No newline at end of file
diff --git a/dist/ionicons/iosRoseOutline.js b/dist/ionicons/iosRoseOutline.js
new file mode 100644
index 000000000..b5d92dcac
--- /dev/null
+++ b/dist/ionicons/iosRoseOutline.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosRoseOutline = void 0;
+var iosRoseOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M379.769,153.431c-29.777,55.586-17.604,99.504-6.645,139.039C378.717,312.648,384,331.708,384,351.889\r\n\t\tc0,15.897-2.956,30.873-8.785,44.51c-5.727,13.396-14.104,25.212-24.898,35.12C327.169,452.768,294.555,464,256,464\r\n\t\ts-71.169-11.232-94.316-32.481c-10.795-9.908-19.172-21.725-24.898-35.12c-5.829-13.637-8.785-28.612-8.785-44.51\r\n\t\tc0-31.65,6.92-55.999,21.775-76.626c13.061-18.134,32.646-34.094,63.505-51.749l6.506-3.725\r\n\t\tc20.197-11.57,27.001-15.467,43.976-23.588c31.845-15.234,66.513-28.387,103.041-39.094\r\n\t\tC371.088,155.851,375.412,154.625,379.769,153.431 M416,128c-18.863,4.163-36.75,8.786-53.697,13.753\r\n\t\tc-40.457,11.858-75.509,25.693-105.445,40.015c-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889\r\n\t\tS167.635,480,256,480s144-55.148,144-128.111S338.999,224,416,128L416,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M379.769,153.431c-29.777,55.586-17.604,99.504-6.645,139.039C378.717,312.648,384,331.708,384,351.889\r\n\t\tc0,15.897-2.956,30.873-8.785,44.51c-5.727,13.396-14.104,25.212-24.898,35.12C327.169,452.768,294.555,464,256,464\r\n\t\ts-71.169-11.232-94.316-32.481c-10.795-9.908-19.172-21.725-24.898-35.12c-5.829-13.637-8.785-28.612-8.785-44.51\r\n\t\tc0-31.65,6.92-55.999,21.775-76.626c13.061-18.134,32.646-34.094,63.505-51.749l6.506-3.725\r\n\t\tc20.197-11.57,27.001-15.467,43.976-23.588c31.845-15.234,66.513-28.387,103.041-39.094\r\n\t\tC371.088,155.851,375.412,154.625,379.769,153.431 M416,128c-18.863,4.163-36.75,8.786-53.697,13.753\r\n\t\tc-40.457,11.858-75.509,25.693-105.445,40.015c-19.271,9.219-26.236,13.393-51.522,27.859C147.001,243,112,278.926,112,351.889\r\n\t\tS167.635,480,256,480s144-55.148,144-128.111S338.999,224,416,128L416,128z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M133.516,123.147c21.432,6.955,47.724,16.977,69.799,29.846c6.385,3.723,12.092,7.493,17.092,11.291\r\n\t\tc-5.504,2.905-10.895,5.855-16.138,8.833c-7.212,4.096-14.359,8.362-21.243,12.679c-10.484,6.574-20.435,13.308-29.789,20.156\r\n\t\tC152.637,180.034,147.555,151.15,133.516,123.147 M96,96c41.475,47.079,44.624,103.891,39.382,144.741\r\n\t\tc12.772-11.274,31.177-25.734,56.144-41.389c6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765\r\n\t\tc-9.113-10.898-22.07-20.606-36.631-29.095C162.631,110.756,96,96,96,96L96,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M133.516,123.147c21.432,6.955,47.724,16.977,69.799,29.846c6.385,3.723,12.092,7.493,17.092,11.291\r\n\t\tc-5.504,2.905-10.895,5.855-16.138,8.833c-7.212,4.096-14.359,8.362-21.243,12.679c-10.484,6.574-20.435,13.308-29.789,20.156\r\n\t\tC152.637,180.034,147.555,151.15,133.516,123.147 M96,96c41.475,47.079,44.624,103.891,39.382,144.741\r\n\t\tc12.772-11.274,31.177-25.734,56.144-41.389c6.442-4.041,13.312-8.158,20.645-12.322c11.578-6.575,23.538-12.822,35.834-18.765\r\n\t\tc-9.113-10.898-22.07-20.606-36.631-29.095C162.631,110.756,96,96,96,96L96,96z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M344.629,80.697c5.309,7.227,12.393,17.661,17.66,27.726c-29.863,8.433-65.994,21.145-94.967,33.476\r\n\t\tc-5.963-6.235-12.982-12.294-21.006-18.135c17.437-15.757,38.773-27.668,63.652-35.506\r\n\t\tC324.518,83.675,337.016,81.612,344.629,80.697 M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533\r\n\t\tl2.724,3.257c37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344.629,80.697c5.309,7.227,12.393,17.661,17.66,27.726c-29.863,8.433-65.994,21.145-94.967,33.476\r\n\t\tc-5.963-6.235-12.982-12.294-21.006-18.135c17.437-15.757,38.773-27.668,63.652-35.506\r\n\t\tC324.518,83.675,337.016,81.612,344.629,80.697 M352,64c0,0-78.623,2.321-130.681,62.469c16.629,9.903,29.735,20.503,38.959,31.533\r\n\t\tl2.724,3.257c37.152-16.794,88.131-34.085,120.998-42.009C377.617,95.827,352,64,352,64L352,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M181.229,53.532c9.241,6.122,22.68,16.481,35.999,31.924c-4.851,4.201-9.487,8.623-13.888,13.247\r\n\t\tc-14.024-7.088-24.951-12.192-36.826-16.602C170.174,73.63,175.095,63.788,181.229,53.532 M176,32\r\n\t\tc-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574c9.505-11.4,20.415-21.626,32.605-30.543\r\n\t\tC210.342,47.655,176,32,176,32L176,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M181.229,53.532c9.241,6.122,22.68,16.481,35.999,31.924c-4.851,4.201-9.487,8.623-13.888,13.247\r\n\t\tc-14.024-7.088-24.951-12.192-36.826-16.602C170.174,73.63,175.095,63.788,181.229,53.532 M176,32\r\n\t\tc-15.256,22.406-25.684,45.299-30.336,59.997c21.111,6.355,35.475,13.215,61.389,26.574c9.505-11.4,20.415-21.626,32.605-30.543\r\n\t\tC210.342,47.655,176,32,176,32L176,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosRoseOutline = iosRoseOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosSearch.js b/dist/ionicons/iosSearch.js
new file mode 100644
index 000000000..d55427c59
--- /dev/null
+++ b/dist/ionicons/iosSearch.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSearch = void 0;
+var iosSearch = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448.3,424.7L335,311.3c20.8-26,33.3-59.1,33.3-95.1c0-84.1-68.1-152.2-152-152.2c-84,0-152,68.2-152,152.2\r\n\ts68.1,152.2,152,152.2c36.2,0,69.4-12.7,95.5-33.8L425,448L448.3,424.7z M120.1,312.6c-25.7-25.7-39.8-59.9-39.8-96.3\r\n\ts14.2-70.6,39.8-96.3S180,80,216.3,80c36.3,0,70.5,14.2,96.2,39.9s39.8,59.9,39.8,96.3s-14.2,70.6-39.8,96.3\r\n\tc-25.7,25.7-59.9,39.9-96.2,39.9C180,352.5,145.8,338.3,120.1,312.6z"
+ },
+ "children": []
+ }]
+};
+exports.iosSearch = iosSearch;
\ No newline at end of file
diff --git a/dist/ionicons/iosSearchStrong.js b/dist/ionicons/iosSearchStrong.js
new file mode 100644
index 000000000..cf1fb5a51
--- /dev/null
+++ b/dist/ionicons/iosSearchStrong.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSearchStrong = void 0;
+var iosSearchStrong = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344.5,298c15-23.6,23.8-51.6,23.8-81.7c0-84.1-68.1-152.3-152.1-152.3C132.1,64,64,132.2,64,216.3\r\n\tc0,84.1,68.1,152.3,152.1,152.3c30.5,0,58.9-9,82.7-24.4l6.9-4.8L414.3,448l33.7-34.3L339.5,305.1L344.5,298z M301.4,131.2\r\n\tc22.7,22.7,35.2,52.9,35.2,85c0,32.1-12.5,62.3-35.2,85c-22.7,22.7-52.9,35.2-85,35.2c-32.1,0-62.3-12.5-85-35.2\r\n\tc-22.7-22.7-35.2-52.9-35.2-85c0-32.1,12.5-62.3,35.2-85c22.7-22.7,52.9-35.2,85-35.2C248.5,96,278.7,108.5,301.4,131.2z"
+ },
+ "children": []
+ }]
+};
+exports.iosSearchStrong = iosSearchStrong;
\ No newline at end of file
diff --git a/dist/ionicons/iosSettings.js b/dist/ionicons/iosSettings.js
new file mode 100644
index 000000000..113d84043
--- /dev/null
+++ b/dist/ionicons/iosSettings.js
@@ -0,0 +1,139 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSettings = void 0;
+var iosSettings = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,104c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,104,352,104 M352,88c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,88,352,88L352,88z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,104c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,104,352,104 M352,88c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,88,352,88L352,88z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M352,376c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,376,352,376 M352,360c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,360,352,360L352,360z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,376c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S343.163,376,352,376 M352,360c-17.645,0-32,14.355-32,32\r\n\t\ts14.355,32,32,32s32-14.355,32-32S369.645,360,352,360L352,360z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,240c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S151.163,240,160,240 M160,224\r\n\t\t\tc-17.645,0-32,14.355-32,32s14.355,32,32,32s32-14.355,32-32S177.645,224,160,224L160,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,240c8.837,0,16,7.163,16,16s-7.163,16-16,16s-16-7.163-16-16S151.163,240,160,240 M160,224\r\n\t\t\tc-17.645,0-32,14.355-32,32s14.355,32,32,32s32-14.355,32-32S177.645,224,160,224L160,224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M207.32,248H480v16H207.32c0.439-2.604,0.68-5.273,0.68-8S207.76,250.604,207.32,248z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M207.32,248H480v16H207.32c0.439-2.604,0.68-5.273,0.68-8S207.76,250.604,207.32,248z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M112,256c0,2.727,0.24,5.396,0.68,8H32v-16h80.68C112.24,250.604,112,253.273,112,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112,256c0,2.727,0.24,5.396,0.68,8H32v-16h80.68C112.24,250.604,112,253.273,112,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M399.32,384H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,386.604,399.32,384z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.32,384H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,386.604,399.32,384z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M304,392c0,2.727,0.24,5.396,0.68,8H32v-16h272.68C304.24,386.604,304,389.273,304,392z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M304,392c0,2.727,0.24,5.396,0.68,8H32v-16h272.68C304.24,386.604,304,389.273,304,392z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M399.32,112H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,114.604,399.32,112z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.32,112H480v16h-80.68c0.439-2.604,0.68-5.273,0.68-8S399.76,114.604,399.32,112z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M304.68,112c-0.439,2.604-0.68,5.273-0.68,8s0.24,5.396,0.68,8H32v-16H304.68z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M304.68,112c-0.439,2.604-0.68,5.273-0.68,8s0.24,5.396,0.68,8H32v-16H304.68z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosSettings = iosSettings;
\ No newline at end of file
diff --git a/dist/ionicons/iosSettingsStrong.js b/dist/ionicons/iosSettingsStrong.js
new file mode 100644
index 000000000..5f439922c
--- /dev/null
+++ b/dist/ionicons/iosSettingsStrong.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSettingsStrong = void 0;
+var iosSettingsStrong = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,376h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,376h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M32,240h91.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32H196.65c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,240h91.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32H196.65c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M32,104h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32,104h283.35c6.186-14.112,20.281-24,36.65-24s30.465,9.888,36.65,24H480v32h-91.35c-6.186,14.112-20.281,24-36.65,24\r\n\t\ts-30.465-9.888-36.65-24H32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosSettingsStrong = iosSettingsStrong;
\ No newline at end of file
diff --git a/dist/ionicons/iosShuffle.js b/dist/ionicons/iosShuffle.js
new file mode 100644
index 000000000..e015f6722
--- /dev/null
+++ b/dist/ionicons/iosShuffle.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosShuffle = void 0;
+var iosShuffle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M362.121,207.146L352,194.854L413.784,144h-46.117c-93.327,0-129.147,74.511-163.787,138.832\r\n\t\tc-1.62,3.008-3.233,6.004-4.846,8.979c-19.836,36.607-40.979,61.242-64.64,75.314C120.573,375.346,101.401,384,64,384v-16.25\r\n\t\tc47.937,0,83.098-13.673,120.966-83.561c1.606-2.965,3.214-5.949,4.827-8.944C224.943,209.977,264.784,128,367.667,128h46.28\r\n\t\tL352,76.146L362.121,64L448,136L362.121,207.146z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M362.121,207.146L352,194.854L413.784,144h-46.117c-93.327,0-129.147,74.511-163.787,138.832\r\n\t\tc-1.62,3.008-3.233,6.004-4.846,8.979c-19.836,36.607-40.979,61.242-64.64,75.314C120.573,375.346,101.401,384,64,384v-16.25\r\n\t\tc47.937,0,83.098-13.673,120.966-83.561c1.606-2.965,3.214-5.949,4.827-8.944C224.943,209.977,264.784,128,367.667,128h46.28\r\n\t\tL352,76.146L362.121,64L448,136L362.121,207.146z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M199.034,220.189c-19.836-36.607-40.979-61.242-64.64-75.314C120.573,136.654,101.401,128,64,128v16.25\r\n\t\t\tc47.937,0,83.098,13.673,120.966,83.561c1.606,2.964,3.214,5.948,4.827,8.944c0.438,0.812,0.875,1.627,1.314,2.444\r\n\t\t\tc3.01-5.438,6.107-10.917,9.339-16.394C199.977,221.935,199.504,221.056,199.034,220.189z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M199.034,220.189c-19.836-36.607-40.979-61.242-64.64-75.314C120.573,136.654,101.401,128,64,128v16.25\r\n\t\t\tc47.937,0,83.098,13.673,120.966,83.561c1.606,2.964,3.214,5.948,4.827,8.944c0.438,0.812,0.875,1.627,1.314,2.444\r\n\t\t\tc3.01-5.438,6.107-10.917,9.339-16.394C199.977,221.935,199.504,221.056,199.034,220.189z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M362.121,304.854L352,317.146L413.784,368h-46.117c-72.693,0-110.496-45.207-140.028-95.592\r\n\t\t\tc-1.768,3.275-3.525,6.551-5.273,9.814c-1.175,2.192-2.344,4.37-3.513,6.545C249.621,338.777,291.254,384,367.667,384h46.28\r\n\t\t\tL352,435.854L362.121,448L448,376L362.121,304.854z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M362.121,304.854L352,317.146L413.784,368h-46.117c-72.693,0-110.496-45.207-140.028-95.592\r\n\t\t\tc-1.768,3.275-3.525,6.551-5.273,9.814c-1.175,2.192-2.344,4.37-3.513,6.545C249.621,338.777,291.254,384,367.667,384h46.28\r\n\t\t\tL352,435.854L362.121,448L448,376L362.121,304.854z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosShuffle = iosShuffle;
\ No newline at end of file
diff --git a/dist/ionicons/iosShuffleStrong.js b/dist/ionicons/iosShuffleStrong.js
new file mode 100644
index 000000000..f0b4d2b16
--- /dev/null
+++ b/dist/ionicons/iosShuffleStrong.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosShuffleStrong = void 0;
+var iosShuffleStrong = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M365.419,152h13.81l-50.738,41.584l20.308,24.572L448,136l-99.136-84l-20.368,24.978L379.679,120h-14.26\r\n\t\tc-103.727,0-146.494,79.62-180.857,143.727c-1.362,2.542-2.715,4.99-4.06,7.488l-0.059,0.095c-1.591,2.953-3.176,6.114-4.76,9.038\r\n\t\tc-35.562,65.63-66.893,83.214-111.684,83.641V396c37.625,0,57.563-9.451,72.236-18.178c24.935-14.831,47.042-44.559,67.583-82.467\r\n\t\tc1.541-2.844,3.083-5.752,4.632-8.626l0.225-0.438c1.459-2.711,2.922-5.273,4.39-8.014C246.369,216.113,280.808,152,365.419,152z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M365.419,152h13.81l-50.738,41.584l20.308,24.572L448,136l-99.136-84l-20.368,24.978L379.679,120h-14.26\r\n\t\tc-103.727,0-146.494,79.62-180.857,143.727c-1.362,2.542-2.715,4.99-4.06,7.488l-0.059,0.095c-1.591,2.953-3.176,6.114-4.76,9.038\r\n\t\tc-35.562,65.63-66.893,83.214-111.684,83.641V396c37.625,0,57.563-9.451,72.236-18.178c24.935-14.831,47.042-44.559,67.583-82.467\r\n\t\tc1.541-2.844,3.083-5.752,4.632-8.626l0.225-0.438c1.459-2.711,2.922-5.273,4.39-8.014C246.369,216.113,280.808,152,365.419,152z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M348.798,293.844l-20.308,24.572L379.229,360h-13.81c-70.728,0-106.396-44.801-135.649-95.812l-17.648,32.618\r\n\t\tC243.556,346.626,287.116,392,365.419,392h14.26l-51.183,43.022L348.864,460L448,376L348.798,293.844z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M348.798,293.844l-20.308,24.572L379.229,360h-13.81c-70.728,0-106.396-44.801-135.649-95.812l-17.648,32.618\r\n\t\tC243.556,346.626,287.116,392,365.419,392h14.26l-51.183,43.022L348.864,460L448,376L348.798,293.844z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M175.684,231.652c1.584,2.924,3.169,6.085,4.76,9.038l0.059,0.095c1.218,2.262,2.442,4.49,3.675,6.777\r\n\t\tc5.82-10.73,11.98-21.748,18.695-32.649c-20.273-37.079-42.083-66.132-66.636-80.735C121.563,125.451,101.625,116,64,116v32.011\r\n\t\tC108.791,148.438,140.122,166.022,175.684,231.652z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M175.684,231.652c1.584,2.924,3.169,6.085,4.76,9.038l0.059,0.095c1.218,2.262,2.442,4.49,3.675,6.777\r\n\t\tc5.82-10.73,11.98-21.748,18.695-32.649c-20.273-37.079-42.083-66.132-66.636-80.735C121.563,125.451,101.625,116,64,116v32.011\r\n\t\tC108.791,148.438,140.122,166.022,175.684,231.652z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosShuffleStrong = iosShuffleStrong;
\ No newline at end of file
diff --git a/dist/ionicons/iosSkipbackward.js b/dist/ionicons/iosSkipbackward.js
new file mode 100644
index 000000000..fc4c8dac8
--- /dev/null
+++ b/dist/ionicons/iosSkipbackward.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSkipbackward = void 0;
+var iosSkipbackward = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,96v320h79V274.2L416,416V96L175,237.8V96H96z"
+ },
+ "children": []
+ }]
+};
+exports.iosSkipbackward = iosSkipbackward;
\ No newline at end of file
diff --git a/dist/ionicons/iosSkipbackwardOutline.js b/dist/ionicons/iosSkipbackwardOutline.js
new file mode 100644
index 000000000..17adc49df
--- /dev/null
+++ b/dist/ionicons/iosSkipbackwardOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSkipbackwardOutline = void 0;
+var iosSkipbackwardOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,96v320h79V274.2L416,416V96L175,237.8V96H96z M175.6,256l7.6-4.4L400,124v0v264L183.1,260.4L175.6,256z M112,112h47\r\n\tv125.8v28v8.5V400h-47V112z"
+ },
+ "children": []
+ }]
+};
+exports.iosSkipbackwardOutline = iosSkipbackwardOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosSkipforward.js b/dist/ionicons/iosSkipforward.js
new file mode 100644
index 000000000..6fb13bf85
--- /dev/null
+++ b/dist/ionicons/iosSkipforward.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSkipforward = void 0;
+var iosSkipforward = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M337,96v141.8L96,96v320l241-141.8V416h79V96H337z"
+ },
+ "children": []
+ }]
+};
+exports.iosSkipforward = iosSkipforward;
\ No newline at end of file
diff --git a/dist/ionicons/iosSkipforwardOutline.js b/dist/ionicons/iosSkipforwardOutline.js
new file mode 100644
index 000000000..d45d718bf
--- /dev/null
+++ b/dist/ionicons/iosSkipforwardOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSkipforwardOutline = void 0;
+var iosSkipforwardOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M337,96v141.8L96,96v320l241-141.8V416h79V96H337z M328.9,260.4L112,388V124v0l216.9,127.6l7.6,4.4L328.9,260.4z M400,400\r\n\th-47V274.2v-8.5v-28V112h47V400z"
+ },
+ "children": []
+ }]
+};
+exports.iosSkipforwardOutline = iosSkipforwardOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosSnowy.js b/dist/ionicons/iosSnowy.js
new file mode 100644
index 000000000..e03d16dde
--- /dev/null
+++ b/dist/ionicons/iosSnowy.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSnowy = void 0;
+var iosSnowy = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M379.9,317l-28.7-16.3c6.1-5.8,13-9.7,20.7-12.3c4.3-1.4,6.5-5.9,5.1-10.1c-1.4-4.2-6-6.5-10.3-5.1\r\n\tc-11.6,3.8-22.2,11-30.1,19.2L272.3,256l64.2-36.4c8.4,9.1,18.6,15.4,30.2,19.2c4.3,1.4,8.9-0.8,10.3-5c1.4-4.2-0.8-8.7-5.1-10.1\r\n\tc-7.8-2.6-14.8-6.5-20.9-12.3l28.8-16.3c3.9-2.2,5.2-7.1,3-10.9s-7.2-5.1-11.1-2.9L343,197.3c-2-8.1-2.1-15.9-0.5-23.8\r\n\tc0.9-4.3-2-8.5-6.4-9.4c-4.4-0.9-8.7,1.9-9.6,6.2c-2.4,11.8-1.4,24.4,1.8,35.2L264,242.2v-73c11-2.7,22.4-8.1,31.5-16.1\r\n\tc3.3-2.9,3.6-8,0.7-11.3c-2.9-3.3-7.9-3.6-11.3-0.7c-6,5.3-12.9,9.2-20.9,11.5V120c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v32.7\r\n\tc-8-2.3-14.8-6.2-20.9-11.6c-3.3-2.9-8.4-2.6-11.3,0.7c-2.9,3.3-2.6,8.4,0.7,11.3c9.1,8,19.5,13.5,31.5,16.1v73l-64.5-36.6\r\n\tc3.2-10.9,4.2-23.5,1.9-35.2c-0.9-4.3-5.2-7.1-9.6-6.2c-4.4,0.9-7.2,5-6.4,9.4c1.6,7.9,1.6,15.7-0.5,23.8L140.3,181\r\n\tc-3.9-2.2-8.9-0.9-11.1,2.9c-2.2,3.8-0.9,8.7,3,10.9l28.8,16.3c-6.1,5.8-13,9.7-20.8,12.3c-4.3,1.4-6.5,6-5.1,10.1\r\n\tc1.4,4.2,6.1,6.4,10.3,5c11.6-3.9,21.8-10.1,30.2-19.2l64.3,36.5l-64.4,36.5c-7.9-8.2-18.6-15.3-30.1-19.2\r\n\tc-4.3-1.4-8.8,0.9-10.3,5.1c-1.4,4.2,0.8,8.7,5.1,10.1c7.7,2.6,14.6,6.5,20.7,12.3l-28.7,16.3c-3.9,2.2-5.2,7.1-3,10.9\r\n\ts7.2,5.1,11.1,2.9l28.8-16.3c2.1,8.1,2.1,15.9,0.4,23.9c-0.9,4.3,2,8.5,6.4,9.4c4.4,0.9,8.7-1.9,9.6-6.3c2.4-11.8,1.9-23.6-1.9-35.3\r\n\tl64.5-36.6v73.1c-12,2.6-22.4,8.1-31.5,16.1c-3.3,2.9-3.6,8-0.7,11.3c2.9,3.3,7.9,3.6,11.3,0.7c6.1-5.4,12.9-9.3,20.9-11.6V392\r\n\tc0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8v-32.6c8,2.3,14.8,6.2,20.9,11.5c3.3,2.9,8.3,2.6,11.3-0.7c2.9-3.3,2.6-8.4-0.7-11.3\r\n\tc-9-7.9-20.4-13.4-31.4-16.1v-73.1l64.4,36.5c-3.8,11.7-4.2,23.5-1.8,35.3c0.9,4.3,5.2,7.1,9.6,6.3c4.4-0.9,7.3-5.1,6.4-9.4\r\n\tc-1.6-8-1.6-15.8,0.4-23.9l28.8,16.3c3.9,2.2,8.9,0.9,11.1-2.9C385.2,324.1,383.8,319.2,379.9,317z"
+ },
+ "children": []
+ }]
+};
+exports.iosSnowy = iosSnowy;
\ No newline at end of file
diff --git a/dist/ionicons/iosSpeedometer.js b/dist/ionicons/iosSpeedometer.js
new file mode 100644
index 000000000..302f67402
--- /dev/null
+++ b/dist/ionicons/iosSpeedometer.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSpeedometer = void 0;
+var iosSpeedometer = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417,278.742V278h29.814c-0.931-23-6.056-45.609-14.831-66.151c-8.643-20.228-20.503-38.665-35.257-54.562l-24.867,24.646\r\n\t\tl-11.229-10.992l24.788-24.679c-16.187-14.836-34.86-26.742-55.515-35.392C308.479,101.897,286,97.092,263,96.186V130h-1.008H248\r\n\t\tV96.186c-23,0.894-44.95,5.699-66.404,14.685c-20.353,8.523-38.958,20.457-55.315,35.471l24.796,24.583l-0.549,0.549l0.001,0.006\r\n\t\tl-0.29,0.335l-10.27,10.203l-24.779-24.479c-14.77,15.932-26.604,34.243-35.176,54.309C71.241,232.388,66.117,255,65.187,278H94v16\r\n\t\th-0.776H65.187c0.926,22,5.915,44.432,14.829,65.297c7.689,18.001,18.398,34.664,31.831,49.926\r\n\t\tc38.785-37.377,89.958-57.928,144.154-57.928c54.113,0,105.286,20.676,144.154,58.135c13.354-15.175,24.061-31.979,31.83-50.166\r\n\t\tC440.9,338.396,445.889,316,446.814,294H417V278.742z M304,287.938c0,26.467-21.533,48-48,48c-10.223,0-19.701-3.223-27.496-8.691\r\n\t\tl-12.033,12.033l-11.312-11.313l11.948-11.948c-5.722-7.902-9.106-17.602-9.106-28.08c0-26.467,21.533-48,48-48\r\n\t\tc10.002,0,19.297,3.079,26.994,8.334l73.484-65.727l1.414,1.414l-62.849,76.11C300.673,267.933,304,277.551,304,287.938z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417,278.742V278h29.814c-0.931-23-6.056-45.609-14.831-66.151c-8.643-20.228-20.503-38.665-35.257-54.562l-24.867,24.646\r\n\t\tl-11.229-10.992l24.788-24.679c-16.187-14.836-34.86-26.742-55.515-35.392C308.479,101.897,286,97.092,263,96.186V130h-1.008H248\r\n\t\tV96.186c-23,0.894-44.95,5.699-66.404,14.685c-20.353,8.523-38.958,20.457-55.315,35.471l24.796,24.583l-0.549,0.549l0.001,0.006\r\n\t\tl-0.29,0.335l-10.27,10.203l-24.779-24.479c-14.77,15.932-26.604,34.243-35.176,54.309C71.241,232.388,66.117,255,65.187,278H94v16\r\n\t\th-0.776H65.187c0.926,22,5.915,44.432,14.829,65.297c7.689,18.001,18.398,34.664,31.831,49.926\r\n\t\tc38.785-37.377,89.958-57.928,144.154-57.928c54.113,0,105.286,20.676,144.154,58.135c13.354-15.175,24.061-31.979,31.83-50.166\r\n\t\tC440.9,338.396,445.889,316,446.814,294H417V278.742z M304,287.938c0,26.467-21.533,48-48,48c-10.223,0-19.701-3.223-27.496-8.691\r\n\t\tl-12.033,12.033l-11.312-11.313l11.948-11.948c-5.722-7.902-9.106-17.602-9.106-28.08c0-26.467,21.533-48,48-48\r\n\t\tc10.002,0,19.297,3.079,26.994,8.334l73.484-65.727l1.414,1.414l-62.849,76.11C300.673,267.933,304,277.551,304,287.938z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\th22.193c31.713-39.103,80.144-64.096,134.424-64.096S358.711,408.897,390.424,448h22.193c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M410.744,420.797\r\n\t\tc-3.051,3.408-6.392,6.863-10.213,10.564l-0.376,0.365l-0.348-0.393c-2.629-2.97-5.493-5.985-8.759-9.22\r\n\t\tc-0.275-0.271-0.555-0.539-0.834-0.807l-0.504-0.485c-17.258-16.766-37.234-29.967-59.375-39.238\r\n\t\tc-23.535-9.856-48.545-14.854-74.336-14.854c-25.791,0-50.801,4.998-74.336,14.854c-22.14,9.271-42.117,22.473-59.375,39.238\r\n\t\tl-0.504,0.485c-0.279,0.268-0.558,0.535-0.833,0.807c-3.266,3.234-6.13,6.25-8.759,9.22l-0.348,0.393l-0.377-0.365\r\n\t\tc-3.821-3.701-7.162-7.156-10.212-10.564c-33.514-37.441-51.971-85.629-51.971-135.685c0-54.666,21.502-106.053,60.545-144.694\r\n\t\tC148.87,101.779,200.781,80.5,256,80.5c55.22,0,107.13,21.279,146.17,59.918c39.043,38.642,60.545,90.029,60.545,144.694\r\n\t\tC462.715,335.168,444.259,383.355,410.744,420.797z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\th22.193c31.713-39.103,80.144-64.096,134.424-64.096S358.711,408.897,390.424,448h22.193c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M410.744,420.797\r\n\t\tc-3.051,3.408-6.392,6.863-10.213,10.564l-0.376,0.365l-0.348-0.393c-2.629-2.97-5.493-5.985-8.759-9.22\r\n\t\tc-0.275-0.271-0.555-0.539-0.834-0.807l-0.504-0.485c-17.258-16.766-37.234-29.967-59.375-39.238\r\n\t\tc-23.535-9.856-48.545-14.854-74.336-14.854c-25.791,0-50.801,4.998-74.336,14.854c-22.14,9.271-42.117,22.473-59.375,39.238\r\n\t\tl-0.504,0.485c-0.279,0.268-0.558,0.535-0.833,0.807c-3.266,3.234-6.13,6.25-8.759,9.22l-0.348,0.393l-0.377-0.365\r\n\t\tc-3.821-3.701-7.162-7.156-10.212-10.564c-33.514-37.441-51.971-85.629-51.971-135.685c0-54.666,21.502-106.053,60.545-144.694\r\n\t\tC148.87,101.779,200.781,80.5,256,80.5c55.22,0,107.13,21.279,146.17,59.918c39.043,38.642,60.545,90.029,60.545,144.694\r\n\t\tC462.715,335.168,444.259,383.355,410.744,420.797z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "287.938",
+ "r": "32"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "287.938",
+ "r": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosSpeedometer = iosSpeedometer;
\ No newline at end of file
diff --git a/dist/ionicons/iosSpeedometerOutline.js b/dist/ionicons/iosSpeedometerOutline.js
new file mode 100644
index 000000000..f147f117b
--- /dev/null
+++ b/dist/ionicons/iosSpeedometerOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSpeedometerOutline = void 0;
+var iosSpeedometerOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\tc3.059-3.49,6.232-6.834,9.539-10.141c0.48-0.48,0.972-0.947,1.456-1.422c18.78-18.426,40.521-32.949,64.664-43.161\r\n\t\tc25.633-10.842,52.871-16.339,80.958-16.339s55.325,5.497,80.958,16.339c24.144,10.212,45.884,24.735,64.664,43.161\r\n\t\tc0.484,0.475,0.976,0.941,1.456,1.422c3.307,3.307,6.48,6.65,9.539,10.141c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M447.661,369.177\r\n\t\tc-8.663,20.481-20.429,39.092-35.044,55.776c-40.39-39.51-95.653-63.945-156.617-63.945s-116.228,24.33-156.617,63.84\r\n\t\tc-14.615-16.685-26.381-35.172-35.044-55.653c-9.81-23.19-15.228-47.694-16.173-72.694H79.5v-16H48.166\r\n\t\tc0.945-25,6.363-50.048,16.173-73.239c9.372-22.157,22.376-42.431,38.692-60.11l26.932,26.893l5.496-5.538l5.277-5.264l-0.02-0.027\r\n\t\tl0.547-0.552l-26.951-26.984c17.862-16.647,38.004-29.894,60.479-39.4c23.191-9.81,47.708-15.229,72.708-16.174V117.5h16V80.104\r\n\t\tc26,0.945,50.017,6.363,73.208,16.173c22.437,9.49,42.921,22.706,60.762,39.312l-26.975,27.069l0.577,0.547l-0.004,0.019\r\n\t\tl5.285,5.246l5.5,5.503l27.026-27.057c16.356,17.703,29.392,38.148,38.78,60.345c9.81,23.191,15.229,48.239,16.174,73.239H431.5v16\r\n\t\th32.334C462.889,321.5,457.471,345.986,447.661,369.177z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64C132.288,64,32,164.226,32,287.938c0,56.975,21.283,108.97,56.316,148.5c3.551,4.006,7.241,7.82,11.066,11.562\r\n\t\tc3.059-3.49,6.232-6.834,9.539-10.141c0.48-0.48,0.972-0.947,1.456-1.422c18.78-18.426,40.521-32.949,64.664-43.161\r\n\t\tc25.633-10.842,52.871-16.339,80.958-16.339s55.325,5.497,80.958,16.339c24.144,10.212,45.884,24.735,64.664,43.161\r\n\t\tc0.484,0.475,0.976,0.941,1.456,1.422c3.307,3.307,6.48,6.65,9.539,10.141c3.825-3.742,7.516-7.557,11.066-11.562\r\n\t\tc35.033-39.53,56.316-91.525,56.316-148.5C480,164.226,379.712,64,256,64z M447.661,369.177\r\n\t\tc-8.663,20.481-20.429,39.092-35.044,55.776c-40.39-39.51-95.653-63.945-156.617-63.945s-116.228,24.33-156.617,63.84\r\n\t\tc-14.615-16.685-26.381-35.172-35.044-55.653c-9.81-23.19-15.228-47.694-16.173-72.694H79.5v-16H48.166\r\n\t\tc0.945-25,6.363-50.048,16.173-73.239c9.372-22.157,22.376-42.431,38.692-60.11l26.932,26.893l5.496-5.538l5.277-5.264l-0.02-0.027\r\n\t\tl0.547-0.552l-26.951-26.984c17.862-16.647,38.004-29.894,60.479-39.4c23.191-9.81,47.708-15.229,72.708-16.174V117.5h16V80.104\r\n\t\tc26,0.945,50.017,6.363,73.208,16.173c22.437,9.49,42.921,22.706,60.762,39.312l-26.975,27.069l0.577,0.547l-0.004,0.019\r\n\t\tl5.285,5.246l5.5,5.503l27.026-27.057c16.356,17.703,29.392,38.148,38.78,60.345c9.81,23.191,15.229,48.239,16.174,73.239H431.5v16\r\n\t\th32.334C462.889,321.5,457.471,345.986,447.661,369.177z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M368.479,174.545l-85.484,73.727c-7.697-5.255-16.992-8.334-26.994-8.334c-26.467,0-48,21.533-48,48\r\n\t\tc0,10.479,3.385,20.178,9.106,28.08l-11.948,11.948l11.312,11.313l12.033-12.033c7.795,5.469,17.273,8.691,27.496,8.691\r\n\t\tc26.467,0,48-21.533,48-48c0-10.387-3.327-20.005-8.956-27.868l74.849-84.11L368.479,174.545z M256,319.938\r\n\t\tc-17.673,0-32-14.326-32-32c0-17.673,14.327-32,32-32s32,14.327,32,32C288,305.611,273.673,319.938,256,319.938z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368.479,174.545l-85.484,73.727c-7.697-5.255-16.992-8.334-26.994-8.334c-26.467,0-48,21.533-48,48\r\n\t\tc0,10.479,3.385,20.178,9.106,28.08l-11.948,11.948l11.312,11.313l12.033-12.033c7.795,5.469,17.273,8.691,27.496,8.691\r\n\t\tc26.467,0,48-21.533,48-48c0-10.387-3.327-20.005-8.956-27.868l74.849-84.11L368.479,174.545z M256,319.938\r\n\t\tc-17.673,0-32-14.326-32-32c0-17.673,14.327-32,32-32s32,14.327,32,32C288,305.611,273.673,319.938,256,319.938z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosSpeedometerOutline = iosSpeedometerOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosStar.js b/dist/ionicons/iosStar.js
new file mode 100644
index 000000000..c13e16dbf
--- /dev/null
+++ b/dist/ionicons/iosStar.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosStar = void 0;
+var iosStar = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,207H308.6L256,47.9L203.4,207H32l140.2,97.9L117.6,464L256,365.4L394.4,464l-54.7-159.1L480,207z"
+ },
+ "children": []
+ }]
+};
+exports.iosStar = iosStar;
\ No newline at end of file
diff --git a/dist/ionicons/iosStarHalf.js b/dist/ionicons/iosStarHalf.js
new file mode 100644
index 000000000..b3efc4b1c
--- /dev/null
+++ b/dist/ionicons/iosStarHalf.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosStarHalf = void 0;
+var iosStarHalf = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M172.248,304.931l-54.677,159.073L256,365.37l138.445,98.634L339.76,304.937L480,207H308.613L256,48.005L203.402,207H32\r\n\tL172.248,304.931z M256,100.75L297,224h131l-108,74.711l42.623,122.481L256,345.257V100.75z"
+ },
+ "children": []
+ }]
+};
+exports.iosStarHalf = iosStarHalf;
\ No newline at end of file
diff --git a/dist/ionicons/iosStarOutline.js b/dist/ionicons/iosStarOutline.js
new file mode 100644
index 000000000..2ad42259e
--- /dev/null
+++ b/dist/ionicons/iosStarOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosStarOutline = void 0;
+var iosStarOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,207H308.6L256,47.9L203.4,207H32l140.2,97.9L117.6,464L256,365.4L394.4,464l-54.7-159.1L480,207z M362.6,421.2\r\n\tl-106.6-76l-106.6,76L192,298.7L84,224h131l41-123.3L297,224h131l-108,74.6L362.6,421.2z"
+ },
+ "children": []
+ }]
+};
+exports.iosStarOutline = iosStarOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosStopwatch.js b/dist/ionicons/iosStopwatch.js
new file mode 100644
index 000000000..995df060b
--- /dev/null
+++ b/dist/ionicons/iosStopwatch.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosStopwatch = void 0;
+var iosStopwatch = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M264,318.2l-8,17.8l-8-17.8c-14-3.5-24-15.8-24-30.5c0-13.8,11.5-26,24-30.3V128h16v129.3c13.5,3.7,24,15.9,24,30.4\r\n\t\tC288,302.4,278,314.7,264,318.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M264,318.2l-8,17.8l-8-17.8c-14-3.5-24-15.8-24-30.5c0-13.8,11.5-26,24-30.3V128h16v129.3c13.5,3.7,24,15.9,24,30.4\r\n\t\tC288,302.4,278,314.7,264,318.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosStopwatch = iosStopwatch;
\ No newline at end of file
diff --git a/dist/ionicons/iosStopwatchOutline.js b/dist/ionicons/iosStopwatchOutline.js
new file mode 100644
index 000000000..603dd289a
--- /dev/null
+++ b/dist/ionicons/iosStopwatchOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosStopwatchOutline = void 0;
+var iosStopwatchOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M256.3,445.7c-95.5,0-173.1-76.7-173.1-170.9c0-94.3,77.7-170.9,173.1-170.9c95.5,0,173.1,76.7,173.1,170.9\r\n\t\tC429.5,369,351.8,445.7,256.3,445.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M397.6,146.7l-1.8-1.7h18.4l8.5,7.8l22.5-22.8l-40.8-40.3L381.2,112l8.8,9.2v18.6l-5-4.7c-31.3-28.3-70-45.2-113-48.9V48\r\n\t\th-32v38h-2c-43.7,3-85,22.5-116,53v-17.8l8.9-9.2L108,89.8L67.2,130l22.5,22.8l8.5-7.8H116c-0.3,0-0.7,0.7-1,1.1\r\n\t\tC82.2,181.2,64,227,64,274.6C64,379,150.1,464,256.1,464C361.9,464,448,379.1,448,274.7C448,227.1,430,181.6,397.6,146.7z\r\n\t\t M256.3,445.7c-95.5,0-173.1-76.7-173.1-170.9c0-94.3,77.7-170.9,173.1-170.9c95.5,0,173.1,76.7,173.1,170.9\r\n\t\tC429.5,369,351.8,445.7,256.3,445.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M264,257.3V128h-16v129.4c-12.5,4.3-24,16.5-24,30.3c0,14.7,10,27,24,30.5l8,17.8l0,0l8-17.8c14-3.5,24-15.8,24-30.5\r\n\t\tC288,273.2,277.5,261,264,257.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M264,257.3V128h-16v129.4c-12.5,4.3-24,16.5-24,30.3c0,14.7,10,27,24,30.5l8,17.8l0,0l8-17.8c14-3.5,24-15.8,24-30.5\r\n\t\tC288,273.2,277.5,261,264,257.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosStopwatchOutline = iosStopwatchOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosSunny.js b/dist/ionicons/iosSunny.js
new file mode 100644
index 000000000..21239eb79
--- /dev/null
+++ b/dist/ionicons/iosSunny.js
@@ -0,0 +1,203 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSunny = void 0;
+var iosSunny = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "247",
+ "y": "96",
+ "class": "st0",
+ "width": "18",
+ "height": "56"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "247",
+ "y": "96",
+ "class": "st0",
+ "width": "18",
+ "height": "56"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "247",
+ "y": "356",
+ "class": "st0",
+ "width": "18",
+ "height": "60"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "247",
+ "y": "356",
+ "class": "st0",
+ "width": "18",
+ "height": "60"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "360",
+ "y": "247",
+ "class": "st0",
+ "width": "56",
+ "height": "18"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "360",
+ "y": "247",
+ "class": "st0",
+ "width": "56",
+ "height": "18"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "247",
+ "class": "st0",
+ "width": "60",
+ "height": "18"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "247",
+ "class": "st0",
+ "width": "60",
+ "height": "18"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "339",
+ "y": "317.4",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "339",
+ "y": "317.4",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "162.2",
+ "y": "140.7",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.9"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "162.2",
+ "y": "140.7",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "339",
+ "y": "140.7",
+ "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "339",
+ "y": "140.7",
+ "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "162.2",
+ "y": "317.4",
+ "transform": "matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.9"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "162.2",
+ "y": "317.4",
+ "transform": "matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosSunny = iosSunny;
\ No newline at end of file
diff --git a/dist/ionicons/iosSunnyOutline.js b/dist/ionicons/iosSunnyOutline.js
new file mode 100644
index 000000000..1e23159b9
--- /dev/null
+++ b/dist/ionicons/iosSunnyOutline.js
@@ -0,0 +1,203 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosSunnyOutline = void 0;
+var iosSunnyOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "247",
+ "y": "96",
+ "class": "st0",
+ "width": "18",
+ "height": "56"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "247",
+ "y": "96",
+ "class": "st0",
+ "width": "18",
+ "height": "56"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "247",
+ "y": "356",
+ "class": "st0",
+ "width": "18",
+ "height": "60"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "247",
+ "y": "356",
+ "class": "st0",
+ "width": "18",
+ "height": "60"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "360",
+ "y": "247",
+ "class": "st0",
+ "width": "56",
+ "height": "18"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "360",
+ "y": "247",
+ "class": "st0",
+ "width": "56",
+ "height": "18"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "247",
+ "class": "st0",
+ "width": "60",
+ "height": "18"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "247",
+ "class": "st0",
+ "width": "60",
+ "height": "18"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "339",
+ "y": "317.4",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "339",
+ "y": "317.4",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 834.4009 337.0126)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "162.2",
+ "y": "140.7",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.9"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "162.2",
+ "y": "140.7",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 407.7248 160.277)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "339",
+ "y": "140.7",
+ "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "339",
+ "y": "140.7",
+ "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 218.1171 -197.4504)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "162.2",
+ "y": "317.4",
+ "transform": "matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.9"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "162.2",
+ "y": "317.4",
+ "transform": "matrix(0.707 0.7072 -0.7072 0.707 291.3531 -20.7056)",
+ "class": "st0",
+ "width": "16.8",
+ "height": "47.9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z\r\n\t\t M256,197.1c-32.5,0-58.9,26.4-58.9,58.9s26.4,58.9,58.9,58.9c32.5,0,58.9-26.4,58.9-58.9S288.5,197.1,256,197.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M256,331.8c-41.8,0-75.8-34-75.8-75.8s34-75.8,75.8-75.8c41.8,0,75.8,34,75.8,75.8S297.8,331.8,256,331.8z\r\n\t\t M256,197.1c-32.5,0-58.9,26.4-58.9,58.9s26.4,58.9,58.9,58.9c32.5,0,58.9-26.4,58.9-58.9S288.5,197.1,256,197.1z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosSunnyOutline = iosSunnyOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosTelephone.js b/dist/ionicons/iosTelephone.js
new file mode 100644
index 000000000..4e7b71fb3
--- /dev/null
+++ b/dist/ionicons/iosTelephone.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosTelephone = void 0;
+var iosTelephone = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M415.9,335.5c-14.6-15-56.1-43.1-83.3-43.1c-6.3,0-11.8,1.4-16.3,4.3c-13.3,8.5-23.9,15.1-29,15.1c-2.8,0-5.8-2.5-12.4-8.2\r\n\tl-1.1-1c-18.3-15.9-22.2-20-29.3-27.4l-1.8-1.9c-1.3-1.3-2.4-2.5-3.5-3.6c-6.2-6.4-10.7-11-26.6-29l-0.7-0.8\r\n\tc-7.6-8.6-12.6-14.2-12.9-18.3c-0.3-4,3.2-10.5,12.1-22.6c10.8-14.6,11.2-32.6,1.3-53.5c-7.9-16.5-20.8-32.3-32.2-46.2l-1-1.2\r\n\tc-9.8-12-21.2-18-33.9-18c-14.1,0-25.8,7.6-32,11.6c-0.5,0.3-1,0.7-1.5,1c-13.9,8.8-24,20.9-27.8,33.2c-5.7,18.5-9.5,42.5,17.8,92.4\r\n\tc23.6,43.2,45,72.2,79,107.1c32,32.8,46.2,43.4,78,66.4c35.4,25.6,69.4,40.3,93.2,40.3c22.1,0,39.5,0,64.3-29.9\r\n\tC442.3,370.8,431.5,351.6,415.9,335.5z"
+ },
+ "children": []
+ }]
+};
+exports.iosTelephone = iosTelephone;
\ No newline at end of file
diff --git a/dist/ionicons/iosTelephoneOutline.js b/dist/ionicons/iosTelephoneOutline.js
new file mode 100644
index 000000000..8c2c46187
--- /dev/null
+++ b/dist/ionicons/iosTelephoneOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosTelephoneOutline = void 0;
+var iosTelephoneOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M415.9,335.5c-14.6-15-56.1-43.1-83.3-43.1c-6.3,0-11.8,1.4-16.3,4.3c-13.3,8.5-23.9,15.1-29,15.1c-2.8,0-5.8-2.5-12.4-8.2\r\n\tl-1.1-1c-18.3-15.9-22.2-20-29.3-27.4l-1.8-1.9c-1.3-1.3-2.4-2.5-3.5-3.6c-6.2-6.4-10.7-11-26.6-29l-0.7-0.8\r\n\tc-7.6-8.6-12.6-14.2-12.9-18.3c-0.3-4,3.2-10.5,12.1-22.6c10.8-14.6,11.2-32.6,1.3-53.5c-7.9-16.5-20.8-32.3-32.2-46.2l-1-1.2\r\n\tc-9.8-12-21.2-18-33.9-18c-14.1,0-25.8,7.6-32,11.6c-0.5,0.3-1,0.7-1.5,1c-13.9,8.8-24,20.9-27.8,33.2c-5.7,18.5-9.5,42.5,17.8,92.4\r\n\tc23.6,43.2,45,72.2,79,107.1c32,32.8,46.2,43.4,78,66.4c35.4,25.6,69.4,40.3,93.2,40.3c22.1,0,39.5,0,64.3-29.9\r\n\tC442.3,370.8,431.5,351.6,415.9,335.5z M404.4,391.4c-20,24.2-31.5,24.2-52.3,24.2c-20.3,0-51.8-14-84.2-37.3\r\n\tc-31-22.4-44.8-32.7-75.9-64.6c-32.9-33.7-53.6-61.8-76.4-103.5c-24.1-44.1-21.4-63.4-16.5-79.3c2.6-8.5,10.4-17.6,21-24.2\r\n\tc0.5-0.3,1-0.7,1.6-1c5.3-3.4,14.1-9.1,23.7-9.1c8,0,15.1,4,21.9,12.3l1,1.2c25.5,31.2,45.4,58.8,30.4,79.2\r\n\tc-10.6,14.3-16.2,24-15.3,34c0.8,9.7,7.3,17,17.1,28l0.7,0.8c16.1,18.2,20.7,23,27.1,29.5c1.1,1.1,2.2,2.3,3.5,3.6l1.8,1.9\r\n\tc7.4,7.7,11.5,11.9,30.3,28.4l1.1,1c8,7,13.9,12.1,22.5,12.1c8.9,0,18.7-5.6,37.3-17.5c1.9-1.2,4.6-1.9,8-1.9\r\n\tc21.7,0,59.1,24.8,72.2,38.3C417,359.7,423,368.9,404.4,391.4z"
+ },
+ "children": []
+ }]
+};
+exports.iosTelephoneOutline = iosTelephoneOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosTennisball.js b/dist/ionicons/iosTennisball.js
new file mode 100644
index 000000000..fb9ca4b7d
--- /dev/null
+++ b/dist/ionicons/iosTennisball.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosTennisball = void 0;
+var iosTennisball = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48.05,251.556c-0.001,0.039-0.003,0.077-0.004,0.116c0,0,0.002,0,0.003,0C48.049,251.634,48.049,251.595,48.05,251.556z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M48.05,251.556c-0.001,0.039-0.003,0.077-0.004,0.116c0,0,0.002,0,0.003,0C48.049,251.634,48.049,251.595,48.05,251.556z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M260.311,463.915c0.066-0.002,0.133-0.006,0.199-0.007c-0.066,0.001-0.133,0.001-0.199,0.004\r\n\t\tC260.311,463.912,260.311,463.913,260.311,463.915z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M260.311,463.915c0.066-0.002,0.133-0.006,0.199-0.007c-0.066,0.001-0.133,0.001-0.199,0.004\r\n\t\tC260.311,463.912,260.311,463.913,260.311,463.915z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,48.001c-2.586,0-5.29,0.064-7.852,0.158L248,48.153c0,0.003,0,0.004,0,0.006c-5,0.199-10,0.602-16,1.205\r\n\t\tc0-0.002,0-0.004,0-0.008c0,0.005,0.083,0.008,0.072,0.012c-96.974,11.061-173.654,88.975-183.13,186.41\r\n\t\tc-0.004,0.018,0.045,0.222,0.042,0.222c0.003,0,0.004,0,0.007,0c-0.513,5-0.826,10-0.936,16c-0.001,0-0.003,0-0.004,0l0.003-0.152\r\n\t\tc-0.028,1.43-0.054,2.777-0.054,4.215c0,114.852,92.977,207.938,207.841,207.938c6.856,0,14.159-0.383,20.159-1.031\r\n\t\tc0,0.002,0,0.006,0,0.006c0-0.004,0.213-0.008,0.24-0.014c97.436-9.486,175.247-86.086,186.312-183.036\r\n\t\tc0.004-0.014,0.088,0.074,0.092,0.074c-0.002,0-0.006,0-0.008,0c0.889-8,1.363-15.859,1.363-23.904\r\n\t\tC464,141.245,370.87,48.001,256,48.001z M130.63,266.853c-20.895-8.474-42.788-13.43-65.244-14.816\r\n\t\tc0.11-5.374,0.438-10.695,0.986-15.952c52.568,3.275,104.203,24.977,144.375,65.146c40.172,40.169,61.876,91.797,65.152,144.359\r\n\t\tc-5.257,0.548-10.579,0.876-15.954,0.985c-1.385-22.453-6.342-44.344-14.816-65.236c-10.459-25.79-25.834-48.937-45.696-68.795\r\n\t\tC179.572,292.684,156.423,277.311,130.63,266.853z M297.722,214.265c-40.964-40.959-62.731-93.835-65.332-147.467\r\n\t\tc5.25-0.652,10.568-1.08,15.941-1.293c1.073,23.65,6.105,46.702,15.007,68.654c10.461,25.79,25.835,48.936,45.696,68.795\r\n\t\tc19.862,19.859,43.01,35.232,68.803,45.691c21.954,8.901,45.008,13.933,68.66,15.007c-0.213,5.37-0.643,10.689-1.293,15.939\r\n\t\tC391.564,276.989,338.686,255.225,297.722,214.265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48.001c-2.586,0-5.29,0.064-7.852,0.158L248,48.153c0,0.003,0,0.004,0,0.006c-5,0.199-10,0.602-16,1.205\r\n\t\tc0-0.002,0-0.004,0-0.008c0,0.005,0.083,0.008,0.072,0.012c-96.974,11.061-173.654,88.975-183.13,186.41\r\n\t\tc-0.004,0.018,0.045,0.222,0.042,0.222c0.003,0,0.004,0,0.007,0c-0.513,5-0.826,10-0.936,16c-0.001,0-0.003,0-0.004,0l0.003-0.152\r\n\t\tc-0.028,1.43-0.054,2.777-0.054,4.215c0,114.852,92.977,207.938,207.841,207.938c6.856,0,14.159-0.383,20.159-1.031\r\n\t\tc0,0.002,0,0.006,0,0.006c0-0.004,0.213-0.008,0.24-0.014c97.436-9.486,175.247-86.086,186.312-183.036\r\n\t\tc0.004-0.014,0.088,0.074,0.092,0.074c-0.002,0-0.006,0-0.008,0c0.889-8,1.363-15.859,1.363-23.904\r\n\t\tC464,141.245,370.87,48.001,256,48.001z M130.63,266.853c-20.895-8.474-42.788-13.43-65.244-14.816\r\n\t\tc0.11-5.374,0.438-10.695,0.986-15.952c52.568,3.275,104.203,24.977,144.375,65.146c40.172,40.169,61.876,91.797,65.152,144.359\r\n\t\tc-5.257,0.548-10.579,0.876-15.954,0.985c-1.385-22.453-6.342-44.344-14.816-65.236c-10.459-25.79-25.834-48.937-45.696-68.795\r\n\t\tC179.572,292.684,156.423,277.311,130.63,266.853z M297.722,214.265c-40.964-40.959-62.731-93.835-65.332-147.467\r\n\t\tc5.25-0.652,10.568-1.08,15.941-1.293c1.073,23.65,6.105,46.702,15.007,68.654c10.461,25.79,25.835,48.936,45.696,68.795\r\n\t\tc19.862,19.859,43.01,35.232,68.803,45.691c21.954,8.901,45.008,13.933,68.66,15.007c-0.213,5.37-0.643,10.689-1.293,15.939\r\n\t\tC391.564,276.989,338.686,255.225,297.722,214.265z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosTennisball = iosTennisball;
\ No newline at end of file
diff --git a/dist/ionicons/iosTennisballOutline.js b/dist/ionicons/iosTennisballOutline.js
new file mode 100644
index 000000000..06b6b18cf
--- /dev/null
+++ b/dist/ionicons/iosTennisballOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosTennisballOutline = void 0;
+var iosTennisballOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M464,256c0-114.863-93.13-208-208-208C141.137,48,48,141.136,48,256c0,114.863,93.137,208,208,208\r\n\tc2.541,0,5.068-0.062,7.587-0.152c0.479-0.017,0.957-0.034,1.435-0.055c0.942-0.04,1.884-0.083,2.823-0.136\r\n\tc0.85-0.047,1.698-0.104,2.547-0.161c0.639-0.044,1.279-0.08,1.917-0.13c1.354-0.104,2.705-0.221,4.055-0.352\r\n\tc0-0.003,0-0.006,0-0.009c97.47-9.474,175.229-86.229,186.274-183.223c0.02-0.001,0.038,0,0.057-0.001\r\n\tc0.604-5.315,1.002-10.667,1.196-16.05c-0.016,0.001-0.032,0.001-0.049,0.001C463.937,261.166,464,258.591,464,256z M446.665,256\r\n\tc0,2.568-0.066,5.121-0.167,7.664c-23.639-1.076-46.677-6.106-68.616-15.005c-25.791-10.458-48.938-25.831-68.797-45.691\r\n\tc-19.86-19.86-35.233-43.007-45.692-68.797c-8.903-21.956-13.935-45.014-15.006-68.67c2.527-0.1,5.063-0.165,7.614-0.165\r\n\tC361.13,65.335,446.665,150.869,446.665,256z M65.337,256c0-1.318,0.023-2.631,0.05-3.942c22.476,1.379,44.388,6.337,65.3,14.817\r\n\tc25.791,10.458,48.938,25.831,68.798,45.691c19.86,19.859,35.232,43.007,45.691,68.798c8.474,20.896,13.43,42.792,14.814,65.249\r\n\tc-1.328,0.027-2.656,0.051-3.99,0.051C150.87,446.664,65.336,361.13,65.337,256z M275.943,445.623\r\n\tc-3.273-52.566-24.974-104.198-65.145-144.369c-40.186-40.186-91.84-61.889-144.427-65.15\r\n\tc9.172-88.053,78.52-158.478,166.074-169.313c2.595,53.64,24.36,106.525,65.326,147.49c40.949,40.952,93.811,62.713,147.433,65.322\r\n\tC434.351,367.118,363.957,436.432,275.943,445.623z"
+ },
+ "children": []
+ }]
+};
+exports.iosTennisballOutline = iosTennisballOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosThunderstorm.js b/dist/ionicons/iosThunderstorm.js
new file mode 100644
index 000000000..af5c19ee7
--- /dev/null
+++ b/dist/ionicons/iosThunderstorm.js
@@ -0,0 +1,49 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosThunderstorm = void 0;
+var iosThunderstorm = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "272,272 288,224 216,224 201,304 253.3,304 224,400 290,304 312,272 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "272,272 288,224 216,224 201,304 253.3,304 224,400 290,304 312,272 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M202.7,208l107.5,0l-16,48H312h30.4l-33,48h19c35.7,0,64.6-30.1,64.6-65.9c0-35.8-28.9-65.5-64.6-65.5\r\n\t\tc-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8\r\n\t\tc-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3h14"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M202.7,208l107.5,0l-16,48H312h30.4l-33,48h19c35.7,0,64.6-30.1,64.6-65.9c0-35.8-28.9-65.5-64.6-65.5\r\n\t\tc-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5c0,2.6,0.1,5.2,0.4,7.8\r\n\t\tc-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3h14"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosThunderstorm = iosThunderstorm;
\ No newline at end of file
diff --git a/dist/ionicons/iosThunderstormOutline.js b/dist/ionicons/iosThunderstormOutline.js
new file mode 100644
index 000000000..7e8be1272
--- /dev/null
+++ b/dist/ionicons/iosThunderstormOutline.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosThunderstormOutline = void 0;
+var iosThunderstormOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "312,272 272,272 288,224 216,224 201,304 253.3,304 224,400 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "312,272 272,272 288,224 216,224 201,304 253.3,304 224,400 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M328.4,172.7c-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5\r\n\t\t\tc0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3H182v-17h-11.3c-9.5,0-18.5-4.1-25.4-11\r\n\t\t\tc-6.8-7-10.6-16.3-10.6-26c0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.3,14.2-1.8c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\t\tc0-34.6,28.1-62.7,62.6-62.7c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\t\tc26.9,0,48.8,22.3,48.8,49.4c0,27.1-21.9,49.4-48.8,49.4H320v17h8.4c35.7,0,64.6-30.1,64.6-65.9\r\n\t\t\tC393,202.4,364.1,172.7,328.4,172.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M328.4,172.7c-2.7,0-5.4,0-8,0.3c-7.9-35-39.1-61.4-76.4-61.4c-43.3,0-78.3,35.2-78.3,78.5\r\n\t\t\tc0,2.6,0.1,5.2,0.4,7.8c-26.4,2.3-47.1,25.7-47.1,52.8c0,28.6,23.2,53.3,51.7,53.3H182v-17h-11.3c-9.5,0-18.5-4.1-25.4-11\r\n\t\t\tc-6.8-7-10.6-16.3-10.6-26c0-18.6,14.5-33.8,33.2-36.9c1.6-0.3,8.8-1.3,14.2-1.8c0,0-0.5-5.3-0.6-9.6c-0.1-4.3-0.1-9.4-0.1-11.5\r\n\t\t\tc0-34.6,28.1-62.7,62.6-62.7c14.5,0,28.1,4.8,39.3,13.9c10.9,8.9,18.6,21.3,21.7,34.9l3.1,14l14.2-1.8c2.1-0.3,4.1-0.4,6.1-0.4\r\n\t\t\tc26.9,0,48.8,22.3,48.8,49.4c0,27.1-21.9,49.4-48.8,49.4H320v17h8.4c35.7,0,64.6-30.1,64.6-65.9\r\n\t\t\tC393,202.4,364.1,172.7,328.4,172.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosThunderstormOutline = iosThunderstormOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosTime.js b/dist/ionicons/iosTime.js
new file mode 100644
index 000000000..fc5513889
--- /dev/null
+++ b/dist/ionicons/iosTime.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosTime = void 0;
+var iosTime = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,132.3,379.7,32,256,32z M256,72c4.4,0,8,3.6,8,8s-3.6,8-8,8s-8-3.6-8-8S251.6,72,256,72z M80,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C88,260.4,84.4,264,80,264z M107.6,350.9c-3.8,2.2-8.7,0.9-10.9-2.9c-2.2-3.8-0.9-8.7,2.9-10.9\r\n\t\tc3.8-2.2,8.7-0.9,10.9,2.9C112.7,343.8,111.4,348.7,107.6,350.9z M110.5,172c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\ts7.1-5.1,10.9-2.9C111.4,163.3,112.7,168.2,110.5,172z M164,96.7c3.8-2.2,8.7-0.9,10.9,2.9c2.2,3.8,0.9,8.7-2.9,10.9\r\n\t\tc-3.8,2.2-8.7,0.9-10.9-2.9C158.9,103.8,160.2,98.9,164,96.7z M174.9,412.4c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\tc2.2-3.8,7.1-5.1,10.9-2.9S177.1,408.6,174.9,412.4z M256,440c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S260.4,440,256,440z M264,269.9\r\n\t\tV392c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V269.8c-2.4-1.4-4.4-3.3-5.9-5.8c-3-5.2-2.7-11.5,0.2-16.3l-37.6-62.9c-2.3-3.8-1-8.7,2.7-11\r\n\t\tc3.8-2.3,8.7-1,11,2.7l38,63.4c5.4,0.1,10.6,3,13.4,8C274.3,255.7,271.7,265.4,264,269.9z M348,415.3c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C353.1,408.2,351.8,413.1,348,415.3z M350.9,107.6c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C351.8,98.9,353.1,103.8,350.9,107.6z M415.3,348c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C416.2,339.3,417.6,344.2,415.3,348z M412.4,174.9c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C417.6,167.8,416.2,172.7,412.4,174.9z M432,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C440,260.4,436.4,264,432,264z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,132.3,379.7,32,256,32z M256,72c4.4,0,8,3.6,8,8s-3.6,8-8,8s-8-3.6-8-8S251.6,72,256,72z M80,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C88,260.4,84.4,264,80,264z M107.6,350.9c-3.8,2.2-8.7,0.9-10.9-2.9c-2.2-3.8-0.9-8.7,2.9-10.9\r\n\t\tc3.8-2.2,8.7-0.9,10.9,2.9C112.7,343.8,111.4,348.7,107.6,350.9z M110.5,172c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\ts7.1-5.1,10.9-2.9C111.4,163.3,112.7,168.2,110.5,172z M164,96.7c3.8-2.2,8.7-0.9,10.9,2.9c2.2,3.8,0.9,8.7-2.9,10.9\r\n\t\tc-3.8,2.2-8.7,0.9-10.9-2.9C158.9,103.8,160.2,98.9,164,96.7z M174.9,412.4c-2.2,3.8-7.1,5.1-10.9,2.9c-3.8-2.2-5.1-7.1-2.9-10.9\r\n\t\tc2.2-3.8,7.1-5.1,10.9-2.9S177.1,408.6,174.9,412.4z M256,440c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S260.4,440,256,440z M264,269.9\r\n\t\tV392c0,4.4-3.6,8-8,8c-4.4,0-8-3.6-8-8V269.8c-2.4-1.4-4.4-3.3-5.9-5.8c-3-5.2-2.7-11.5,0.2-16.3l-37.6-62.9c-2.3-3.8-1-8.7,2.7-11\r\n\t\tc3.8-2.3,8.7-1,11,2.7l38,63.4c5.4,0.1,10.6,3,13.4,8C274.3,255.7,271.7,265.4,264,269.9z M348,415.3c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C353.1,408.2,351.8,413.1,348,415.3z M350.9,107.6c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C351.8,98.9,353.1,103.8,350.9,107.6z M415.3,348c-2.2,3.8-7.1,5.1-10.9,2.9\r\n\t\tc-3.8-2.2-5.1-7.1-2.9-10.9c2.2-3.8,7.1-5.1,10.9-2.9C416.2,339.3,417.6,344.2,415.3,348z M412.4,174.9c-3.8,2.2-8.7,0.9-10.9-2.9\r\n\t\tc-2.2-3.8-0.9-8.7,2.9-10.9c3.8-2.2,8.7-0.9,10.9,2.9C417.6,167.8,416.2,172.7,412.4,174.9z M432,264c-4.4,0-8-3.6-8-8\r\n\t\tc0-4.4,3.6-8,8-8s8,3.6,8,8C440,260.4,436.4,264,432,264z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosTime = iosTime;
\ No newline at end of file
diff --git a/dist/ionicons/iosTimeOutline.js b/dist/ionicons/iosTimeOutline.js
new file mode 100644
index 000000000..2e57a7e4f
--- /dev/null
+++ b/dist/ionicons/iosTimeOutline.js
@@ -0,0 +1,273 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosTimeOutline = void 0;
+var iosTimeOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\t\tC480,132.3,379.7,32,256,32z M403.1,403.1c-19.1,19.1-41.4,34.1-66.1,44.6c-25.6,10.8-52.9,16.3-81,16.3c-28.1,0-55.3-5.5-81-16.3\r\n\t\t\tc-24.8-10.5-47-25.5-66.1-44.6C89.8,384,74.8,361.7,64.3,337C53.5,311.3,48,284.1,48,256c0-28.1,5.5-55.3,16.3-81\r\n\t\t\tc10.5-24.8,25.5-47,44.6-66.1C128,89.8,150.3,74.8,175,64.3C200.7,53.5,227.9,48,256,48c28.1,0,55.3,5.5,81,16.3\r\n\t\t\tc24.8,10.5,47,25.5,66.1,44.6c19.1,19.1,34.1,41.4,44.6,66.1c10.8,25.6,16.3,52.9,16.3,81c0,28.1-5.5,55.3-16.3,81\r\n\t\t\tC437.2,361.7,422.2,384,403.1,403.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\t\tC480,132.3,379.7,32,256,32z M403.1,403.1c-19.1,19.1-41.4,34.1-66.1,44.6c-25.6,10.8-52.9,16.3-81,16.3c-28.1,0-55.3-5.5-81-16.3\r\n\t\t\tc-24.8-10.5-47-25.5-66.1-44.6C89.8,384,74.8,361.7,64.3,337C53.5,311.3,48,284.1,48,256c0-28.1,5.5-55.3,16.3-81\r\n\t\t\tc10.5-24.8,25.5-47,44.6-66.1C128,89.8,150.3,74.8,175,64.3C200.7,53.5,227.9,48,256,48c28.1,0,55.3,5.5,81,16.3\r\n\t\t\tc24.8,10.5,47,25.5,66.1,44.6c19.1,19.1,34.1,41.4,44.6,66.1c10.8,25.6,16.3,52.9,16.3,81c0,28.1-5.5,55.3-16.3,81\r\n\t\t\tC437.2,361.7,422.2,384,403.1,403.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "256",
+ "cy": "80",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "256",
+ "cy": "80",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "256",
+ "cy": "432",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "256",
+ "cy": "432",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "432",
+ "cy": "256",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "432",
+ "cy": "256",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "80",
+ "cy": "256",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "80",
+ "cy": "256",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "168",
+ "cy": "103.6",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "168",
+ "cy": "103.6",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "344",
+ "cy": "408.4",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "344",
+ "cy": "408.4",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "408.4",
+ "cy": "168",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "408.4",
+ "cy": "168",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "103.6",
+ "cy": "344",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "103.6",
+ "cy": "344",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "103.6",
+ "cy": "168",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "103.6",
+ "cy": "168",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "408.4",
+ "cy": "344",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "408.4",
+ "cy": "344",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "344",
+ "cy": "103.6",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "344",
+ "cy": "103.6",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "168",
+ "cy": "408.4",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "class": "st0",
+ "cx": "168",
+ "cy": "408.4",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M269.9,248c-2.9-5-8.1-7.8-13.4-8l-38-63.4c-2.3-3.8-7.2-5-11-2.7c-3.8,2.3-5,7.2-2.7,11l37.6,62.9\r\n\t\tc-2.9,4.8-3.2,11.1-0.2,16.3c1.5,2.5,3.5,4.5,5.9,5.8V392c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8V269.9\r\n\t\tC271.7,265.4,274.3,255.7,269.9,248z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M269.9,248c-2.9-5-8.1-7.8-13.4-8l-38-63.4c-2.3-3.8-7.2-5-11-2.7c-3.8,2.3-5,7.2-2.7,11l37.6,62.9\r\n\t\tc-2.9,4.8-3.2,11.1-0.2,16.3c1.5,2.5,3.5,4.5,5.9,5.8V392c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8V269.9\r\n\t\tC271.7,265.4,274.3,255.7,269.9,248z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosTimeOutline = iosTimeOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosTimer.js b/dist/ionicons/iosTimer.js
new file mode 100644
index 000000000..d8340190c
--- /dev/null
+++ b/dist/ionicons/iosTimer.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosTimer = void 0;
+var iosTimer = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48C141.1,48,48,141.1,48,256c0,114.9,93.1,208,208,208c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z\r\n\t M150.5,150.5c2.6-2.3,119.9,84.9,119.9,84.9c1,0.7,1.6,1.5,2.2,2.2c5,4.6,8.2,11,8.2,18.3c0,13.7-11.1,24.9-24.9,24.9\r\n\tc-7.8,0-14.7-3.7-19.3-9.4c-0.4-0.4-0.8-0.7-1.1-1.1C235.6,270.4,148,152.9,150.5,150.5z M256.1,447.2\r\n\tc-105.7,0-191.4-85.7-191.4-191.4c0-52.8,21.4-100.7,56-135.3l11.8,11.8c-31.6,31.6-51.2,75.3-51.2,123.5\r\n\tc0,96.3,78.4,174.7,174.7,174.7s174.5-78.4,174.5-174.7c0-90.3-70.5-165.1-158.5-174V160h-16V64.4c105.7,0,191.5,85.7,191.5,191.4\r\n\tC447.5,361.5,361.7,447.2,256.1,447.2z"
+ },
+ "children": []
+ }]
+};
+exports.iosTimer = iosTimer;
\ No newline at end of file
diff --git a/dist/ionicons/iosTimerOutline.js b/dist/ionicons/iosTimerOutline.js
new file mode 100644
index 000000000..900774dca
--- /dev/null
+++ b/dist/ionicons/iosTimerOutline.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosTimerOutline = void 0;
+var iosTimerOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M236.6,271.6c4.6,5.7,11.5,9.4,19.4,9.4c13.8,0,25-11.2,25-25c0-7.3-3.2-13.8-8.2-18.4c-0.6-0.7-1.3-1.5-2.2-2.2\r\n\tc0,0-117.7-87.5-120.3-85.2c-2.6,2.3,85.3,120.2,85.3,120.2C235.8,270.8,236.3,271.2,236.6,271.6z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256.2,48L256.2,48H256v112h16V65.3c97.8,8.3,175.3,90.5,175.3,190.5c0,105.5-85.7,191.4-191.2,191.4\r\n\tc-105.5,0-191.3-85.8-191.3-191.3c0-52.8,21.5-100.6,56.1-135.2L109,108.9C71.3,146.6,48,198.6,48,256c0,114.9,93.1,208,208,208\r\n\tc114.9,0,208-93.1,208-208C464,141.1,371,48,256.2,48z"
+ },
+ "children": []
+ }]
+};
+exports.iosTimerOutline = iosTimerOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosToggle.js b/dist/ionicons/iosToggle.js
new file mode 100644
index 000000000..79a3a59ff
--- /dev/null
+++ b/dist/ionicons/iosToggle.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosToggle = void 0;
+var iosToggle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,320c-26.467,0-48,21.533-48,48s21.533,48,48,48s48-21.533,48-48S154.467,320,128,320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,320c-26.467,0-48,21.533-48,48s21.533,48,48,48s48-21.533,48-48S154.467,320,128,320z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\tS436.795,272,383.5,272z M128,432c-35.346,0-64-28.653-64-64c0-35.346,28.654-64,64-64s64,28.654,64,64\r\n\t\tC192,403.347,163.346,432,128,432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\tS436.795,272,383.5,272z M128,432c-35.346,0-64-28.653-64-64c0-35.346,28.654-64,64-64s64,28.654,64,64\r\n\t\tC192,403.347,163.346,432,128,432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384,192c26.467,0,48-21.533,48-48s-21.533-48-48-48s-48,21.533-48,48S357.533,192,384,192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,192c26.467,0,48-21.533,48-48s-21.533-48-48-48s-48,21.533-48,48S357.533,192,384,192z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M128.5,240h255c53.295,0,96.5-42.205,96.5-95.5S436.795,48,383.5,48h-255C75.205,48,32,91.205,32,144.5\r\n\t\tS75.205,240,128.5,240z M384,80c35.346,0,64,28.654,64,64c0,35.347-28.654,64-64,64s-64-28.653-64-64\r\n\t\tC320,108.654,348.654,80,384,80z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128.5,240h255c53.295,0,96.5-42.205,96.5-95.5S436.795,48,383.5,48h-255C75.205,48,32,91.205,32,144.5\r\n\t\tS75.205,240,128.5,240z M384,80c35.346,0,64,28.654,64,64c0,35.347-28.654,64-64,64s-64-28.653-64-64\r\n\t\tC320,108.654,348.654,80,384,80z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosToggle = iosToggle;
\ No newline at end of file
diff --git a/dist/ionicons/iosToggleOutline.js b/dist/ionicons/iosToggleOutline.js
new file mode 100644
index 000000000..216038f7e
--- /dev/null
+++ b/dist/ionicons/iosToggleOutline.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosToggleOutline = void 0;
+var iosToggleOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,320c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S101.533,320,128,320 M128,304\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C192,332.654,163.346,304,128,304L128,304z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,320c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S101.533,320,128,320 M128,304\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C192,332.654,163.346,304,128,304L128,304z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M383.25,288c44.388,0,80.625,36.112,80.625,80.5S427.888,448,383.5,448h-255C84.112,448,48,412.888,48,368.5\r\n\t\t\tS84.112,288,128.5,288H383 M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255\r\n\t\t\tc53.295,0,96.5-42.205,96.5-95.5S436.795,272,383.5,272L383.5,272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M383.25,288c44.388,0,80.625,36.112,80.625,80.5S427.888,448,383.5,448h-255C84.112,448,48,412.888,48,368.5\r\n\t\t\tS84.112,288,128.5,288H383 M383.5,272h-255C75.205,272,32,315.205,32,368.5S75.205,464,128.5,464h255\r\n\t\t\tc53.295,0,96.5-42.205,96.5-95.5S436.795,272,383.5,272L383.5,272z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,96c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S357.533,96,384,96 M384,80\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C448,108.654,419.346,80,384,80L384,80z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,96c26.467,0,48,21.533,48,48s-21.533,48-48,48s-48-21.533-48-48S357.533,96,384,96 M384,80\r\n\t\t\tc-35.346,0-64,28.654-64,64c0,35.347,28.654,64,64,64s64-28.653,64-64C448,108.654,419.346,80,384,80L384,80z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M129,64h254.5c44.388,0,80.5,36.112,80.5,80.5S427.888,224,383.5,224h-255c-44.388,0-80.375-35.112-80.375-79.5\r\n\t\t\tS84.362,64,128.75,64 M128.5,48C75.205,48,32,91.205,32,144.5S75.205,240,128.5,240h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\t\tS436.795,48,383.5,48H128.5L128.5,48z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M129,64h254.5c44.388,0,80.5,36.112,80.5,80.5S427.888,224,383.5,224h-255c-44.388,0-80.375-35.112-80.375-79.5\r\n\t\t\tS84.362,64,128.75,64 M128.5,48C75.205,48,32,91.205,32,144.5S75.205,240,128.5,240h255c53.295,0,96.5-42.205,96.5-95.5\r\n\t\t\tS436.795,48,383.5,48H128.5L128.5,48z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosToggleOutline = iosToggleOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosTrash.js b/dist/ionicons/iosTrash.js
new file mode 100644
index 000000000..df78d2b79
--- /dev/null
+++ b/dist/ionicons/iosTrash.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosTrash = void 0;
+var iosTrash = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320,113V93.3c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3V113h-80v15h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400v-15H320z M207,93.3c0-8.1,6.2-14.3,14.3-14.3h69.5\r\n\t\tc8.1,0,14.3,6.2,14.3,14.3V113h-98V93.3H207z M202.7,401L192,160h14.5l10.9,241H202.7z M263,401h-14V160h14V401z M309.3,401h-14.6\r\n\t\tl10.8-241H320L309.3,401z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320,113V93.3c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3V113h-80v15h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400v-15H320z M207,93.3c0-8.1,6.2-14.3,14.3-14.3h69.5\r\n\t\tc8.1,0,14.3,6.2,14.3,14.3V113h-98V93.3H207z M202.7,401L192,160h14.5l10.9,241H202.7z M263,401h-14V160h14V401z M309.3,401h-14.6\r\n\t\tl10.8-241H320L309.3,401z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosTrash = iosTrash;
\ No newline at end of file
diff --git a/dist/ionicons/iosTrashOutline.js b/dist/ionicons/iosTrashOutline.js
new file mode 100644
index 000000000..aa4c9de41
--- /dev/null
+++ b/dist/ionicons/iosTrashOutline.js
@@ -0,0 +1,77 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosTrashOutline = void 0;
+var iosTrashOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M400,113.3h-80v-20c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3v20h-80V128h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400V113.3z M206.6,93.3c0-8.1,6.6-14.7,14.6-14.7h69.5\r\n\t\tc8.1,0,14.6,6.6,14.6,14.7v20h-98.7V93.3z M341.6,417.9l0,0.4v0.4c0,8.1-6.6,14.7-14.6,14.7H186c-8.1,0-14.6-6.6-14.6-14.7v-0.4\r\n\t\tl0-0.4L147.7,128h217.2L341.6,417.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M400,113.3h-80v-20c0-16.2-13.1-29.3-29.3-29.3h-69.5C205.1,64,192,77.1,192,93.3v20h-80V128h21.1l23.6,290.7\r\n\t\tc0,16.2,13.1,29.3,29.3,29.3h141c16.2,0,29.3-13.1,29.3-29.3L379.6,128H400V113.3z M206.6,93.3c0-8.1,6.6-14.7,14.6-14.7h69.5\r\n\t\tc8.1,0,14.6,6.6,14.6,14.7v20h-98.7V93.3z M341.6,417.9l0,0.4v0.4c0,8.1-6.6,14.7-14.6,14.7H186c-8.1,0-14.6-6.6-14.6-14.7v-0.4\r\n\t\tl0-0.4L147.7,128h217.2L341.6,417.9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "249",
+ "y": "160",
+ "width": "14",
+ "height": "241"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "249",
+ "y": "160",
+ "width": "14",
+ "height": "241"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "320,160 305.4,160 294.7,401 309.3,401 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "320,160 305.4,160 294.7,401 309.3,401 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "206.5,160 192,160 202.7,401 217.3,401 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "206.5,160 192,160 202.7,401 217.3,401 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosTrashOutline = iosTrashOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosUndo.js b/dist/ionicons/iosUndo.js
new file mode 100644
index 000000000..e19bc1c55
--- /dev/null
+++ b/dist/ionicons/iosUndo.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosUndo = void 0;
+var iosUndo = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosUndo = iosUndo;
\ No newline at end of file
diff --git a/dist/ionicons/iosUndoOutline.js b/dist/ionicons/iosUndoOutline.js
new file mode 100644
index 000000000..483fd54a5
--- /dev/null
+++ b/dist/ionicons/iosUndoOutline.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosUndoOutline = void 0;
+var iosUndoOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z M432.2,361.4\r\n\t\tC384.6,280.6,331,256,240,256v64.8L91.9,224.1L240,127.3V192C441,192,432.2,361.4,432.2,361.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M447.9,368.2c0-16.8,3.6-83.1-48.7-135.7c-35.2-35.4-80.3-53.4-143.3-56.2V96L64,224l192,128v-79.8\r\n\t\tc40,1.1,62.4,9.1,86.7,20c30.9,13.8,55.3,44,75.8,76.6l19.2,31.2H448C448,389.9,447.9,377.1,447.9,368.2z M432.2,361.4\r\n\t\tC384.6,280.6,331,256,240,256v64.8L91.9,224.1L240,127.3V192C441,192,432.2,361.4,432.2,361.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosUndoOutline = iosUndoOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosUnlocked.js b/dist/ionicons/iosUnlocked.js
new file mode 100644
index 000000000..024dff1db
--- /dev/null
+++ b/dist/ionicons/iosUnlocked.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosUnlocked = void 0;
+var iosUnlocked = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,304c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S264.822,304,256,304z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M264,350.992V384h-16v-33.008c-13.802-3.553-24-16.082-24-30.992\r\n\t\tc0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M264,350.992V384h-16v-33.008c-13.802-3.553-24-16.082-24-30.992\r\n\t\tc0-17.673,14.327-32,32-32s32,14.327,32,32C288,334.91,277.802,347.439,264,350.992z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosUnlocked = iosUnlocked;
\ No newline at end of file
diff --git a/dist/ionicons/iosUnlockedOutline.js b/dist/ionicons/iosUnlockedOutline.js
new file mode 100644
index 000000000..327e191c4
--- /dev/null
+++ b/dist/ionicons/iosUnlockedOutline.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosUnlockedOutline = void 0;
+var iosUnlockedOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,288c-17.673,0-32,14.327-32,32c0,14.91,10.198,27.439,24,30.992V384h16v-33.008c13.802-3.553,24-16.082,24-30.992\r\n\t\tC288,302.327,273.673,288,256,288z M256,336c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S264.822,336,256,336z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M400,448H112V240h288V448z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M168,224v-72c0-48.523,39.484-88,88.016-88C304.531,64,344,103.477,344,152v8h16v-8c0-57.43-46.562-104-103.984-104\r\n\t\t\tC198.562,48,152,94.57,152,152v72H96v240h320V224H168z M400,448H112V240h288V448z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosUnlockedOutline = iosUnlockedOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosUpload.js b/dist/ionicons/iosUpload.js
new file mode 100644
index 000000000..c4ed32fa5
--- /dev/null
+++ b/dist/ionicons/iosUpload.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosUpload = void 0;
+var iosUpload = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "264,144 264,306 248,306 248,144 96,144 96,448 416,448 416,144 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "264,144 264,306 248,306 248,144 96,144 96,448 416,448 416,144 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "264,63.4 318.8,118.1 330.4,106.5 256,32 181.5,106.5 193.2,118.1 248,63.4 248,144 264,144 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "264,63.4 318.8,118.1 330.4,106.5 256,32 181.5,106.5 193.2,118.1 248,63.4 248,144 264,144 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosUpload = iosUpload;
\ No newline at end of file
diff --git a/dist/ionicons/iosUploadOutline.js b/dist/ionicons/iosUploadOutline.js
new file mode 100644
index 000000000..076c043ea
--- /dev/null
+++ b/dist/ionicons/iosUploadOutline.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosUploadOutline = void 0;
+var iosUploadOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "288,144 288,160 400,160 400,432 112,432 112,160 224,160 224,144 96,144 96,448 416,448 416,144 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "193.1,118.1 181.5,106.5 256,32 330.5,106.5 318.9,118.1 264.2,63.4 264.2,306.4 247.8,306.4 247.8,63.4 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "193.1,118.1 181.5,106.5 256,32 330.5,106.5 318.9,118.1 264.2,63.4 264.2,306.4 247.8,306.4 247.8,63.4 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.iosUploadOutline = iosUploadOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosVideocam.js b/dist/ionicons/iosVideocam.js
new file mode 100644
index 000000000..0ea4f15ff
--- /dev/null
+++ b/dist/ionicons/iosVideocam.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosVideocam = void 0;
+var iosVideocam = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M367,213v85.6l98,53.4V160L367,213z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M367,213v85.6l98,53.4V160L367,213z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosVideocam = iosVideocam;
\ No newline at end of file
diff --git a/dist/ionicons/iosVideocamOutline.js b/dist/ionicons/iosVideocamOutline.js
new file mode 100644
index 000000000..f6ad8ddb5
--- /dev/null
+++ b/dist/ionicons/iosVideocamOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosVideocamOutline = void 0;
+var iosVideocamOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z M320,348.6c0,9.3-6.9,18.4-16.3,18.4h-221c-9.4,0-18.7-9.1-18.7-18.4V160.7\r\n\t\tc0-9.3,9-15.5,18.4-15.5l221,0.1c9.4,0,16.6,6.1,16.6,15.4V348.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M303.7,128h-221C63.9,128,47,142.1,47,160.7v187.9c0,18.6,16.9,35.4,35.7,35.4h221c18.8,0,33.3-16.8,33.3-35.4V160.7\r\n\t\tC337,142.1,322.5,128,303.7,128z M320,348.6c0,9.3-6.9,18.4-16.3,18.4h-221c-9.4,0-18.7-9.1-18.7-18.4V160.7\r\n\t\tc0-9.3,9-15.5,18.4-15.5l221,0.1c9.4,0,16.6,6.1,16.6,15.4V348.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M367,213v85.6l98,53.4V160L367,213z M448,190v132.3l-64-33.5v-65.6l64.1-33.6L448,190z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M367,213v85.6l98,53.4V160L367,213z M448,190v132.3l-64-33.5v-65.6l64.1-33.6L448,190z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosVideocamOutline = iosVideocamOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosVolumeHigh.js b/dist/ionicons/iosVolumeHigh.js
new file mode 100644
index 000000000..f7843adaf
--- /dev/null
+++ b/dist/ionicons/iosVolumeHigh.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosVolumeHigh = void 0;
+var iosVolumeHigh = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M374.1,128l-13.6,10.3C384.6,171.2,399,211.9,399,256c0,44.1-14.4,84.8-38.6,117.7l13.6,10.3c26.3-35.7,41.9-80,41.9-128\r\n\t\t\t\tC415.9,208,400.4,163.7,374.1,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M374.1,128l-13.6,10.3C384.6,171.2,399,211.9,399,256c0,44.1-14.4,84.8-38.6,117.7l13.6,10.3c26.3-35.7,41.9-80,41.9-128\r\n\t\t\t\tC415.9,208,400.4,163.7,374.1,128z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M320,351.8c20-26.8,32-59.9,32-95.8s-12-69-32-95.8l-13.6,10.1c17.9,24,28.6,53.6,28.6,85.7s-10.7,61.7-28.6,85.7\r\n\t\t\t\tL320,351.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320,351.8c20-26.8,32-59.9,32-95.8s-12-69-32-95.8l-13.6,10.1c17.9,24,28.6,53.6,28.6,85.7s-10.7,61.7-28.6,85.7\r\n\t\t\t\tL320,351.8z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M273.1,319.9c13.7-17.9,21.9-39.9,21.9-63.9c0-24-8.2-46-21.9-63.9l-13.5,9.8c11.6,15.1,18.5,33.8,18.5,54.1\r\n\t\t\t\ts-6.9,38.9-18.5,54.1L273.1,319.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M273.1,319.9c13.7-17.9,21.9-39.9,21.9-63.9c0-24-8.2-46-21.9-63.9l-13.5,9.8c11.6,15.1,18.5,33.8,18.5,54.1\r\n\t\t\t\ts-6.9,38.9-18.5,54.1L273.1,319.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "153.9,216 96,216 96,296 153.9,296 224,352 224,160 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "153.9,216 96,216 96,296 153.9,296 224,352 224,160 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosVolumeHigh = iosVolumeHigh;
\ No newline at end of file
diff --git a/dist/ionicons/iosVolumeLow.js b/dist/ionicons/iosVolumeLow.js
new file mode 100644
index 000000000..9d6c42a6c
--- /dev/null
+++ b/dist/ionicons/iosVolumeLow.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosVolumeLow = void 0;
+var iosVolumeLow = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "249.9,216 192,216 192,296 249.9,296 320,352 320,160 "
+ },
+ "children": []
+ }]
+};
+exports.iosVolumeLow = iosVolumeLow;
\ No newline at end of file
diff --git a/dist/ionicons/iosWineglass.js b/dist/ionicons/iosWineglass.js
new file mode 100644
index 000000000..2b6295a53
--- /dev/null
+++ b/dist/ionicons/iosWineglass.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosWineglass = void 0;
+var iosWineglass = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M264,308.988c0-21.975,20.458-38.674,40.247-54.824c7.907-6.453,15.37-12.547,21.519-18.962\r\n\tC352.313,207.505,352,183.458,352,164.144V160c0-44.25-30.816-124.558-32.02-128H256h-64c-1.203,3.442-32,83.5-32,128v4.144\r\n\tc0,19.273-0.323,43.361,26.225,71.059c6.148,6.415,13.617,12.509,21.523,18.962c19.789,16.15,40.252,32.85,40.252,54.824V464h-72v16\r\n\th80h80v-16h-72V308.988z M202.729,48H256h53.251c5.359,15.99,19.509,62.712,24.836,96H177.894\r\n\tC183.221,110.712,197.37,63.99,202.729,48z"
+ },
+ "children": []
+ }]
+};
+exports.iosWineglass = iosWineglass;
\ No newline at end of file
diff --git a/dist/ionicons/iosWineglassOutline.js b/dist/ionicons/iosWineglassOutline.js
new file mode 100644
index 000000000..486ce1108
--- /dev/null
+++ b/dist/ionicons/iosWineglassOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosWineglassOutline = void 0;
+var iosWineglassOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M264,308.988c0-21.975,20.458-38.674,40.247-54.824c7.907-6.453,15.37-12.547,21.519-18.962\r\n\tC352.313,207.505,352,183.458,352,164.144V160c0-44.25-30.816-124.558-32.02-128H256h-64c-1.203,3.442-32,83.5-32,128v4.144\r\n\tc0,19.273-0.323,43.361,26.225,71.059c6.148,6.415,13.617,12.509,21.523,18.962c19.789,16.15,40.252,32.85,40.252,54.824V464h-72v16\r\n\th80h80v-16h-72V308.988z M202.729,48H256h53.251c5.359,15.99,19.509,62.712,24.836,96H177.894\r\n\tC183.221,110.712,197.37,63.99,202.729,48z M256,273.416c-2.968,0-5.248-0.92-7.17-2.754c0.001,0.009,0.003,0.018,0.005,0.026\r\n\tc-8.804-10.807-20.234-20.158-30.971-28.92c-7.517-6.135-14.617-11.929-20.089-17.637c-22.054-23.008-21.928-40.916-21.795-59.875\r\n\tc0.01-1.428-0.068-2.849,0.02-4.255h159.98c0.088,1.406,0.01,2.828,0.021,4.255c0.133,18.959,0.259,36.867-21.795,59.875\r\n\tc-5.472,5.708-12.57,11.502-20.087,17.637c-10.737,8.762-22.165,18.114-30.969,28.92c0.002-0.009,0.009-0.018,0.01-0.026\r\n\tC261.238,272.496,259,273.416,256,273.416z"
+ },
+ "children": []
+ }]
+};
+exports.iosWineglassOutline = iosWineglassOutline;
\ No newline at end of file
diff --git a/dist/ionicons/iosWorld.js b/dist/ionicons/iosWorld.js
new file mode 100644
index 000000000..8a1a54d76
--- /dev/null
+++ b/dist/ionicons/iosWorld.js
@@ -0,0 +1,219 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosWorld = void 0;
+var iosWorld = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\t\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,447.4\r\n\t\tc-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C150.1,447.1,64.6,361.5,64.6,256c0-105.5,85.4-191.1,190.9-191.3\r\n\t\tc0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c105.7,0,191.4,85.7,191.4,191.4C447.4,361.7,361.7,447.4,256,447.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\t\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M256,447.4\r\n\t\tc-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C150.1,447.1,64.6,361.5,64.6,256c0-105.5,85.4-191.1,190.9-191.3\r\n\t\tc0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c105.7,0,191.4,85.7,191.4,191.4C447.4,361.7,361.7,447.4,256,447.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M322.3,171.8c-18.7,4.5-38,7.2-57.9,7.8v68.1H332C331.4,219.6,327.9,194.1,322.3,171.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M322.3,171.8c-18.7,4.5-38,7.2-57.9,7.8v68.1H332C331.4,219.6,327.9,194.1,322.3,171.8z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M264.3,82.5v81.9c18.5-0.6,36.5-3,53.8-7.2C305,115.8,284.6,88.6,264.3,82.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M264.3,82.5v81.9c18.5-0.6,36.5-3,53.8-7.2C305,115.8,284.6,88.6,264.3,82.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M193.4,157.1c17.5,4.2,35.6,6.7,54.2,7.3V82.3C227.3,88.2,206.6,115.4,193.4,157.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M193.4,157.1c17.5,4.2,35.6,6.7,54.2,7.3V82.3C227.3,88.2,206.6,115.4,193.4,157.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M380.6,133.4c-22.6-23-51.5-39.8-83.9-47.5c14.8,15.3,27.2,38.7,36.1,67.3C349.5,148.1,365.5,141.5,380.6,133.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M380.6,133.4c-22.6-23-51.5-39.8-83.9-47.5c14.8,15.3,27.2,38.7,36.1,67.3C349.5,148.1,365.5,141.5,380.6,133.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M347.3,247.7h83.3c-1.8-38.8-16.3-74.4-39.5-102.6c-17.1,9.4-35.2,17.1-54.1,22.8C343.1,191.9,346.7,219,347.3,247.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M347.3,247.7h83.3c-1.8-38.8-16.3-74.4-39.5-102.6c-17.1,9.4-35.2,17.1-54.1,22.8C343.1,191.9,346.7,219,347.3,247.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M179.5,247.7h68.2v-68.1c-20.1-0.6-39.6-3.3-58.4-7.9C183.6,194,180.1,219.6,179.5,247.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M179.5,247.7h68.2v-68.1c-20.1-0.6-39.6-3.3-58.4-7.9C183.6,194,180.1,219.6,179.5,247.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M332,264.3h-67.7v68c19.9,0.6,39.3,3.2,58,7.8C327.9,317.9,331.4,292.3,332,264.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M332,264.3h-67.7v68c19.9,0.6,39.3,3.2,58,7.8C327.9,317.9,331.4,292.3,332,264.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M189.3,340.2c18.8-4.6,38.3-7.3,58.4-7.9v-68h-68.2C180.1,292.4,183.6,318,189.3,340.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M189.3,340.2c18.8-4.6,38.3-7.3,58.4-7.9v-68h-68.2C180.1,292.4,183.6,318,189.3,340.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M247.7,429.6v-82.1c-18.6,0.6-36.8,3.1-54.3,7.3C206.6,396.5,227.3,423.8,247.7,429.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M247.7,429.6v-82.1c-18.6,0.6-36.8,3.1-54.3,7.3C206.6,396.5,227.3,423.8,247.7,429.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M296.7,426.1c32.4-7.8,61.3-24.5,84-47.6c-15.1-8.1-31.1-14.7-47.8-19.8C324,387.4,311.5,410.7,296.7,426.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M296.7,426.1c32.4-7.8,61.3-24.5,84-47.6c-15.1-8.1-31.1-14.7-47.8-19.8C324,387.4,311.5,410.7,296.7,426.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M214.7,86.1c-32.1,7.8-60.8,24.5-83.3,47.4c15,8,30.8,14.6,47.3,19.6C187.6,124.6,200,101.4,214.7,86.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M214.7,86.1c-32.1,7.8-60.8,24.5-83.3,47.4c15,8,30.8,14.6,47.3,19.6C187.6,124.6,200,101.4,214.7,86.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M337,344.1c19,5.7,37.1,13.4,54.2,22.8c23.2-28.2,37.7-63.8,39.5-102.6h-83.3C346.7,293,343.1,320,337,344.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M337,344.1c19,5.7,37.1,13.4,54.2,22.8c23.2-28.2,37.7-63.8,39.5-102.6h-83.3C346.7,293,343.1,320,337,344.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M264.3,347.5v82c20.3-6.1,40.7-33.3,53.8-74.8C300.8,350.5,282.8,348.1,264.3,347.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M264.3,347.5v82c20.3-6.1,40.7-33.3,53.8-74.8C300.8,350.5,282.8,348.1,264.3,347.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M174.6,167.8c-18.8-5.7-36.8-13.3-53.7-22.7c-23.2,28.2-37.7,63.8-39.5,102.6h82.9C164.8,218.9,168.5,191.8,174.6,167.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M174.6,167.8c-18.8-5.7-36.8-13.3-53.7-22.7c-23.2,28.2-37.7,63.8-39.5,102.6h82.9C164.8,218.9,168.5,191.8,174.6,167.8z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M164.2,264.3H81.3c1.8,38.8,16.3,74.4,39.5,102.6c16.9-9.3,34.9-17,53.7-22.7C168.5,320.2,164.8,293.1,164.2,264.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M164.2,264.3H81.3c1.8,38.8,16.3,74.4,39.5,102.6c16.9-9.3,34.9-17,53.7-22.7C168.5,320.2,164.8,293.1,164.2,264.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M131.3,378.5c22.5,22.9,51.2,39.6,83.4,47.4c-14.7-15.3-27.1-38.6-36-67.1C162.2,363.9,146.3,370.5,131.3,378.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M131.3,378.5c22.5,22.9,51.2,39.6,83.4,47.4c-14.7-15.3-27.1-38.6-36-67.1C162.2,363.9,146.3,370.5,131.3,378.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iosWorld = iosWorld;
\ No newline at end of file
diff --git a/dist/ionicons/iosWorldOutline.js b/dist/ionicons/iosWorldOutline.js
new file mode 100644
index 000000000..51672d525
--- /dev/null
+++ b/dist/ionicons/iosWorldOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iosWorldOutline = void 0;
+var iosWorldOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,48c-0.1,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0C140.8,48.3,48,141.3,48,256c0,114.7,92.8,207.7,207.5,208\r\n\tc0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c114.9,0,208-93.1,208-208C464,141.1,370.9,48,256,48z M264.3,172.5\r\n\tc22.1-0.6,43.5-3.5,64.2-8.5c6.2,24.5,10.1,52.8,10.7,83.8h-74.9V172.5z M264.3,155.8V66c22.4,6.2,45.2,36.1,59.6,82\r\n\tC304.7,152.6,284.8,155.2,264.3,155.8z M247.7,65.8v90.1c-20.7-0.6-40.8-3.3-60.1-8C202.2,101.7,225.1,71.6,247.7,65.8z\r\n\t M247.7,172.5v75.2h-75.4c0.6-31,4.5-59.3,10.7-83.8C203.8,168.9,225.5,171.9,247.7,172.5z M155.5,247.7H64.9\r\n\tc1.8-42.8,17.8-82,43.3-113c18.5,10.2,38.2,18.6,58.8,24.8C160.2,186,156.2,215.9,155.5,247.7z M155.5,264.3\r\n\tc0.6,31.7,4.6,61.7,11.4,88.2c-20.6,6.3-40.2,14.6-58.8,24.8c-25.5-31-41.4-70.2-43.3-113H155.5z M172.3,264.3h75.4v75.1\r\n\tc-22.2,0.6-43.9,3.6-64.7,8.7C176.8,323.6,172.9,295.3,172.3,264.3z M247.7,356.1v90.2c-22.6-5.9-45.5-35.9-60.1-82.1\r\n\tC206.9,359.4,227,356.7,247.7,356.1z M264.3,446v-90c20.5,0.6,40.4,3.3,59.7,7.9C309.5,409.9,286.8,439.8,264.3,446z M264.3,339.4\r\n\tv-75.1h74.9c-0.6,30.9-4.5,59.2-10.7,83.7C307.8,343,286.4,340,264.3,339.4z M355.9,264.3h91.2c-1.8,42.8-17.8,81.9-43.3,113\r\n\tc-18.7-10.3-38.5-18.7-59.3-25C351.3,325.8,355.3,296,355.9,264.3z M355.9,247.7c-0.6-31.7-4.6-61.6-11.3-88.1\r\n\tc20.8-6.3,40.6-14.7,59.2-24.9c25.5,31,41.5,70.2,43.3,113.1H355.9z M392.4,121.9c-16.6,8.8-34,16.1-52.3,21.6\r\n\tc-9.7-31.3-23.4-56.8-39.5-73.6C336,78.4,367.6,96.8,392.4,121.9z M210.8,70.1c-16.1,16.7-29.7,42.2-39.3,73.3\r\n\tc-18.1-5.5-35.4-12.7-51.8-21.5C144.2,96.9,175.6,78.6,210.8,70.1z M119.6,390c16.4-8.8,33.8-16,51.8-21.5\r\n\tc9.7,31.2,23.3,56.6,39.4,73.4C175.6,433.4,144.2,415.1,119.6,390z M300.6,442.1c16.2-16.8,29.8-42.3,39.6-73.7\r\n\tc18.3,5.5,35.7,12.8,52.3,21.6C367.7,415.2,336,433.6,300.6,442.1z"
+ },
+ "children": []
+ }]
+};
+exports.iosWorldOutline = iosWorldOutline;
\ No newline at end of file
diff --git a/dist/ionicons/ipad.js b/dist/ionicons/ipad.js
new file mode 100644
index 000000000..9a507dd45
--- /dev/null
+++ b/dist/ionicons/ipad.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ipad = void 0;
+var ipad = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112,72.8v366.4c0,4.9,3.9,8.8,8.8,8.8h270.4c4.9,0,8.8-3.9,8.8-8.8V72.8c0-4.9-3.9-8.8-8.8-8.8H120.8\r\n\tC115.9,64,112,67.9,112,72.8z M256,437.6c-7.5,0-13.6-6-13.6-13.5c0-7.5,6.1-13.6,13.6-13.6c7.4,0,13.5,6.1,13.5,13.6\r\n\tC269.6,431.6,263.5,437.6,256,437.6z M144,118.6c0-3.5,2.7-6.6,6-6.6h211.2c3.4,0,6.8,3.1,6.8,6.6v275.2c0,3.5-3.4,6.3-6.8,6.3H150\r\n\tc-3.4,0-6-2.8-6-6.3V118.6z"
+ },
+ "children": []
+ }]
+};
+exports.ipad = ipad;
\ No newline at end of file
diff --git a/dist/ionicons/iphone.js b/dist/ionicons/iphone.js
new file mode 100644
index 000000000..f2f6abf84
--- /dev/null
+++ b/dist/ionicons/iphone.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.iphone = void 0;
+var iphone = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M328.2,64H183.8C170.7,64,160,74.7,160,87.9v336.3c0,13.1,10.7,23.8,23.8,23.8h144.3c13.1,0,23.8-10.7,23.8-23.8V87.9\r\n\t\tC352,74.7,341.3,64,328.2,64z M240,99.9c0-2.1,1.7-3.9,3.9-3.9h24.3c2.1,0,3.9,1.7,3.9,3.9v0.3c0,2.1-1.7,3.9-3.9,3.9h-24.3\r\n\t\tc-2.1,0-3.9-1.7-3.9-3.9V99.9z M228,96c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4s-4-1.8-4-4C224,97.8,225.8,96,228,96z M256,432.1\r\n\t\tc-8.9,0-16.1-7.2-16.1-16.1c0-8.9,7.2-16.1,16.1-16.1c8.9,0,16.1,7.2,16.1,16.1C272.1,424.9,264.8,432.1,256,432.1z M336,384H176\r\n\t\tV128h160V384z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M328.2,64H183.8C170.7,64,160,74.7,160,87.9v336.3c0,13.1,10.7,23.8,23.8,23.8h144.3c13.1,0,23.8-10.7,23.8-23.8V87.9\r\n\t\tC352,74.7,341.3,64,328.2,64z M240,99.9c0-2.1,1.7-3.9,3.9-3.9h24.3c2.1,0,3.9,1.7,3.9,3.9v0.3c0,2.1-1.7,3.9-3.9,3.9h-24.3\r\n\t\tc-2.1,0-3.9-1.7-3.9-3.9V99.9z M228,96c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4s-4-1.8-4-4C224,97.8,225.8,96,228,96z M256,432.1\r\n\t\tc-8.9,0-16.1-7.2-16.1-16.1c0-8.9,7.2-16.1,16.1-16.1c8.9,0,16.1,7.2,16.1,16.1C272.1,424.9,264.8,432.1,256,432.1z M336,384H176\r\n\t\tV128h160V384z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.iphone = iphone;
\ No newline at end of file
diff --git a/dist/ionicons/ipod.js b/dist/ionicons/ipod.js
new file mode 100644
index 000000000..6967f6613
--- /dev/null
+++ b/dist/ionicons/ipod.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ipod = void 0;
+var ipod = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,311c-17.7,0-32,14.3-32,32c0,17.6,14.3,32,32,32c17.6,0,32-14.3,32-32C288,325.3,273.7,311,256,311z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,311c-17.7,0-32,14.3-32,32c0,17.6,14.3,32,32,32c17.6,0,32-14.3,32-32C288,325.3,273.7,311,256,311z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M340.4,64H171.6C156.4,64,144,76.2,144,91.7v328.7c0,15.5,12.4,27.7,27.6,27.7h168.8c15.2,0,27.6-12.2,27.6-27.7V91.7\r\n\t\tC368,76.2,355.6,64,340.4,64z M256.1,416.1c-39.8,0-72.1-32.2-72.1-72c0-39.7,32.3-72,72.1-72c39.7,0,71.9,32.3,71.9,72\r\n\t\tC328,383.9,295.8,416.1,256.1,416.1z M335.9,226.8c-0.8,7.6-7,13.2-14.7,13.2h-131c-8.2,0-14.2-6.2-14.2-14.6V110.9\r\n\t\tc0-7.5,5-13.7,12-14.9l135.8,0c6.5,1.2,11.5,6.6,12.2,13.3L335.9,226.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M340.4,64H171.6C156.4,64,144,76.2,144,91.7v328.7c0,15.5,12.4,27.7,27.6,27.7h168.8c15.2,0,27.6-12.2,27.6-27.7V91.7\r\n\t\tC368,76.2,355.6,64,340.4,64z M256.1,416.1c-39.8,0-72.1-32.2-72.1-72c0-39.7,32.3-72,72.1-72c39.7,0,71.9,32.3,71.9,72\r\n\t\tC328,383.9,295.8,416.1,256.1,416.1z M335.9,226.8c-0.8,7.6-7,13.2-14.7,13.2h-131c-8.2,0-14.2-6.2-14.2-14.6V110.9\r\n\t\tc0-7.5,5-13.7,12-14.9l135.8,0c6.5,1.2,11.5,6.6,12.2,13.3L335.9,226.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ipod = ipod;
\ No newline at end of file
diff --git a/dist/ionicons/jet.js b/dist/ionicons/jet.js
new file mode 100644
index 000000000..fd727bf6a
--- /dev/null
+++ b/dist/ionicons/jet.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.jet = void 0;
+var jet = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M314.8,368.5L419,403l-3-52.7L302,247c0,0-25.9-173.7-28.2-192.3C268.5,14.4,255.9,0,255.9,0\r\n\ts-12.5,14.4-17.6,54.6C235.9,73.3,210,247,210,247L96,350.3L93,403l104.2-34.5l1.4,12.3l-52.7,58.3l18.3,27.4l73.3-9.1l18.3,54.6\r\n\tl18.5-54.6l73.4,9.1l18.3-27.4l-52.7-58.3L314.8,368.5z"
+ },
+ "children": []
+ }]
+};
+exports.jet = jet;
\ No newline at end of file
diff --git a/dist/ionicons/key.js b/dist/ionicons/key.js
new file mode 100644
index 000000000..27cfb2bed
--- /dev/null
+++ b/dist/ionicons/key.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.key = void 0;
+var key = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M304.3,301c0,0-5.4-28-7.3-90c-1.9-62-9-142.5-9-142.5c-2.5-28-11.8-36.5-32-36.5c-9.4,0-20.5,2.3-23.3,3.3\r\n\tc-9.4,3.6-8.7,11.6-8.7,22.5l0,17.8c0,3.2,1.2,6,3.2,8.2l0.8,0.8l4.1,4.1c0.4,0.3,0.1,0.7,0.4,1c1.9,2.2,3.1,5,3.1,8.1l0,24.5\r\n\tc0,3.2-1.2,3.2-3.2,5.3c-0.2,0.3-0.5,0.6-0.8,0.8l-4.4,4.4c-0.1,0.1-0.3,0.3-0.4,0.4c-2.1,2.2-3.4,5.2-3.4,8.4l0,7.2\r\n\tc0,3.1,1.1,5.9,3.1,8.1c0,0,0.1,0.1,0.1,0.1l0.8,0.8c0,0,0.1,0.1,0.1,0.1l4,4c0.4,0.3,0.7,0.7,1,1c1.9,2.2,3.1,5,3.1,8.1\r\n\tc0,0.7-0.1,8.1-0.2,8.8c-0.4,2.3-1.5,4.4-3,6.1c-0.2,0.3-0.5,0.6-0.8,0.8l-3.9,3.9l-1.4,1.5c-0.5,0.6-0.7,1.3-1.1,2.1\r\n\tc-0.9,1.7-1.2,3.7-1.2,5.9v7.8c0,2.9-0.1,5.7-0.2,8.6c0.2,2.4,7.2,5.7,7.2,10.5v20.4c0,6.2-10.5,7-11,11.3\r\n\tc-4.7,25.4-11.9,41.8-11.9,41.8c-28.7,16.6-48,47.6-48,83.2c0,53,43,96,96,96s96-43,96-96C352,348.6,332.8,317.7,304.3,301z\r\n\t M256,448c-17.7,0-32-14.3-32-32s14.3-32,32-32s32,14.3,32,32S273.7,448,256,448z"
+ },
+ "children": []
+ }]
+};
+exports.key = key;
\ No newline at end of file
diff --git a/dist/ionicons/knife.js b/dist/ionicons/knife.js
new file mode 100644
index 000000000..a7af173f2
--- /dev/null
+++ b/dist/ionicons/knife.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.knife = void 0;
+var knife = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M285.7,32c-3.3,0-6,1.4-8,3.8C259,58.7,224,116.1,224,250.1c0,39.2,33,39.2,32,69.4c0,0.1,0,0.3,0,0.4\r\n\tc-2,47.1-14.9,111.1-16,130.3c-0.4,15.2,9.7,29.8,24.1,29.8c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.2,0c14.4,0,23.5-14.4,23.5-29.6V38.3\r\n\tC288,33.3,287.5,32,285.7,32z"
+ },
+ "children": []
+ }]
+};
+exports.knife = knife;
\ No newline at end of file
diff --git a/dist/ionicons/laptop.js b/dist/ionicons/laptop.js
new file mode 100644
index 000000000..ddc5a25c8
--- /dev/null
+++ b/dist/ionicons/laptop.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.laptop = void 0;
+var laptop = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,106.3c0-5.6-4.1-10.3-9.6-10.3H42.2c-5.5,0-10.2,4.6-10.2,10.3V368h448V106.3z M448,336H64V128h384V336z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,106.3c0-5.6-4.1-10.3-9.6-10.3H42.2c-5.5,0-10.2,4.6-10.2,10.3V368h448V106.3z M448,336H64V128h384V336z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M0,388.7C70.2,408.6,115.8,416,256,416c140.2,0,185.8-7.3,256-27.3V384H0V388.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,388.7C70.2,408.6,115.8,416,256,416c140.2,0,185.8-7.3,256-27.3V384H0V388.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.laptop = laptop;
\ No newline at end of file
diff --git a/dist/ionicons/leaf.js b/dist/ionicons/leaf.js
new file mode 100644
index 000000000..49c947669
--- /dev/null
+++ b/dist/ionicons/leaf.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.leaf = void 0;
+var leaf = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M456.7,378.7c-52.5-8-56.5-15.7-56.5-15.7c10.8-64.9-22.7-147.1-77.4-191.6c-72.8-59.2-183.5-16.2-269.7-106.2\r\n\t\tc-20.1-21-8.4,235.5,99.5,332.7c78.9,71,171.8,49.2,197.3,37.6c23.1-10.6,39.3-29.9,39.3-29.9c42.1,13,62.9,12.2,62.9,12.2\r\n\t\tC466.9,419.6,474.4,381.4,456.7,378.7z M360.6,383.1c-138.2-40.9-242.1-184.5-242.1-184.5s91.2,107.7,252,160.2\r\n\t\tC370.7,366.9,365.9,378.5,360.6,383.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M456.7,378.7c-52.5-8-56.5-15.7-56.5-15.7c10.8-64.9-22.7-147.1-77.4-191.6c-72.8-59.2-183.5-16.2-269.7-106.2\r\n\t\tc-20.1-21-8.4,235.5,99.5,332.7c78.9,71,171.8,49.2,197.3,37.6c23.1-10.6,39.3-29.9,39.3-29.9c42.1,13,62.9,12.2,62.9,12.2\r\n\t\tC466.9,419.6,474.4,381.4,456.7,378.7z M360.6,383.1c-138.2-40.9-242.1-184.5-242.1-184.5s91.2,107.7,252,160.2\r\n\t\tC370.7,366.9,365.9,378.5,360.6,383.1z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.leaf = leaf;
\ No newline at end of file
diff --git a/dist/ionicons/levels.js b/dist/ionicons/levels.js
new file mode 100644
index 000000000..64aebd0fe
--- /dev/null
+++ b/dist/ionicons/levels.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.levels = void 0;
+var levels = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M127,99.2V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v21.5c-8.5,5.8-14,15.5-14,26.5s5.5,20.7,14,26.5V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V156.8c10.7-5.2,18-16.1,18-28.8S137.7,104.4,127,99.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M127,99.2V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v21.5c-8.5,5.8-14,15.5-14,26.5s5.5,20.7,14,26.5V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V156.8c10.7-5.2,18-16.1,18-28.8S137.7,104.4,127,99.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M223,292.9V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v211.7c-10.1,5.4-17,16-17,28.3s6.9,22.9,17,28.3V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16v-84.9c9-5.7,15-15.7,15-27.1S232,298.6,223,292.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M223,292.9V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v211.7c-10.1,5.4-17,16-17,28.3s6.9,22.9,17,28.3V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16v-84.9c9-5.7,15-15.7,15-27.1S232,298.6,223,292.9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M319,163.3V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v83.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V218.7c9.6-5.5,16-15.9,16-27.7S328.6,168.8,319,163.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M319,163.3V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v83.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7V432c0,8.8,7.2,16,16,16\r\n\t\ts16-7.2,16-16V218.7c9.6-5.5,16-15.9,16-27.7S328.6,168.8,319,163.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M431,383c0-11.8-6.4-22.2-16-27.7V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v275.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7\r\n\t\tV432c0,8.8,7.2,16,16,16s16-7.2,16-16v-21.3C424.6,405.2,431,394.8,431,383z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M431,383c0-11.8-6.4-22.2-16-27.7V80c0-8.8-7.2-16-16-16s-16,7.2-16,16v275.3c-9.6,5.5-16,15.9-16,27.7s6.4,22.2,16,27.7\r\n\t\tV432c0,8.8,7.2,16,16,16s16-7.2,16-16v-21.3C424.6,405.2,431,394.8,431,383z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.levels = levels;
\ No newline at end of file
diff --git a/dist/ionicons/lightbulb.js b/dist/ionicons/lightbulb.js
new file mode 100644
index 000000000..4a5f90106
--- /dev/null
+++ b/dist/ionicons/lightbulb.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lightbulb = void 0;
+var lightbulb = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-70.7,0-128,55.4-128,123.8c0,4.9,0.3,9.7,0.9,14.5c0.6,5.4,1.6,10.6,3,15.7c0.1,0.5,0.3,1.1,0.4,1.6\r\n\t\tc16.6,62.8,45.3,71.5,58.9,167.6c0,0.2,0.1,0.4,0.1,0.5c1.5,9.2,9.8,12.3,19.8,12.3H301c10,0,18.2-3.1,19.7-12.3\r\n\t\tc0-0.2,0.1-0.4,0.1-0.5c13.6-96.1,42.3-104.7,58.9-167.6c0.2-0.5,0.3-1,0.4-1.6c1.3-5.1,2.3-10.4,3-15.7c0.6-4.7,0.9-9.6,0.9-14.5\r\n\t\tC384,87.4,326.7,32,256,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-70.7,0-128,55.4-128,123.8c0,4.9,0.3,9.7,0.9,14.5c0.6,5.4,1.6,10.6,3,15.7c0.1,0.5,0.3,1.1,0.4,1.6\r\n\t\tc16.6,62.8,45.3,71.5,58.9,167.6c0,0.2,0.1,0.4,0.1,0.5c1.5,9.2,9.8,12.3,19.8,12.3H301c10,0,18.2-3.1,19.7-12.3\r\n\t\tc0-0.2,0.1-0.4,0.1-0.5c13.6-96.1,42.3-104.7,58.9-167.6c0.2-0.5,0.3-1,0.4-1.6c1.3-5.1,2.3-10.4,3-15.7c0.6-4.7,0.9-9.6,0.9-14.5\r\n\t\tC384,87.4,326.7,32,256,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M317.8,396.5c0.1-0.2,0.3-0.4,0.4-0.6c1.1-1.7,1.7-3.6,1.7-5.7c0-3.5,1.6-6.2-6.5-6.2H198.6c-8.1,0-6.5,2.1-6.5,6.2\r\n\t\tc0,2.1,0.6,4,1.7,5.7c0.1,0.2,0.3,0.4,0.5,0.6c0,0.1,0.1,0.1,0.1,0.2c1.7,2.6,2.7,4.4,2.7,7.6c0,3.1-0.9,4.9-2.6,7.5\r\n\t\tc-0.3,0.4-0.5,0.7-0.7,1c-1,1.7-1.6,3.6-1.6,5.6c0,2.1,0.6,4,1.7,5.8c0.1,0.2,0.3,0.4,0.4,0.6c1.8,2.7,2.8,4.5,2.8,7.8\r\n\t\tc0,3.1-0.9,4.9-2.6,7.4c-0.2,0.4-0.5,0.7-0.8,1.1c-1,1.7-1.6,3.6-1.6,5.6c0,5.4,4.3,10.1,10.2,11.6c0.3,0.1,0.6,0.1,0.9,0.2\r\n\t\tc6,1.4,12.2,1.6,18.5,2.5c0.7,0.1,1.4,0.2,2.2,0.3c5.6,1,10.3,3.9,13.4,7.7l0,0c3.8,5.3,10.8,11,18.8,11c7.6,0,14.3-5.4,18.2-10.4\r\n\t\th0c3-4.2,8-7.3,13.9-8.4c0.7-0.1,1.4-0.3,2.2-0.3c6.3-0.9,12.5-1.1,18.5-2.5c0.3-0.1,0.6-0.1,0.9-0.2c5.9-1.6,10.2-6.2,10.2-11.6\r\n\t\tc0-2-0.6-3.9-1.6-5.6c-0.3-0.4-0.5-0.7-0.8-1.1c-1.6-2.6-2.6-4.3-2.6-7.4c0-3.2,1-5.1,2.8-7.8c0.1-0.2,0.3-0.4,0.4-0.6\r\n\t\tc1.1-1.7,1.7-3.7,1.7-5.8c0-2-0.6-3.9-1.6-5.6c-0.3-0.3-0.5-0.7-0.7-1c-1.6-2.6-2.6-4.3-2.6-7.5c0-3.2,1-5,2.7-7.6\r\n\t\tC317.7,396.7,317.7,396.6,317.8,396.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M317.8,396.5c0.1-0.2,0.3-0.4,0.4-0.6c1.1-1.7,1.7-3.6,1.7-5.7c0-3.5,1.6-6.2-6.5-6.2H198.6c-8.1,0-6.5,2.1-6.5,6.2\r\n\t\tc0,2.1,0.6,4,1.7,5.7c0.1,0.2,0.3,0.4,0.5,0.6c0,0.1,0.1,0.1,0.1,0.2c1.7,2.6,2.7,4.4,2.7,7.6c0,3.1-0.9,4.9-2.6,7.5\r\n\t\tc-0.3,0.4-0.5,0.7-0.7,1c-1,1.7-1.6,3.6-1.6,5.6c0,2.1,0.6,4,1.7,5.8c0.1,0.2,0.3,0.4,0.4,0.6c1.8,2.7,2.8,4.5,2.8,7.8\r\n\t\tc0,3.1-0.9,4.9-2.6,7.4c-0.2,0.4-0.5,0.7-0.8,1.1c-1,1.7-1.6,3.6-1.6,5.6c0,5.4,4.3,10.1,10.2,11.6c0.3,0.1,0.6,0.1,0.9,0.2\r\n\t\tc6,1.4,12.2,1.6,18.5,2.5c0.7,0.1,1.4,0.2,2.2,0.3c5.6,1,10.3,3.9,13.4,7.7l0,0c3.8,5.3,10.8,11,18.8,11c7.6,0,14.3-5.4,18.2-10.4\r\n\t\th0c3-4.2,8-7.3,13.9-8.4c0.7-0.1,1.4-0.3,2.2-0.3c6.3-0.9,12.5-1.1,18.5-2.5c0.3-0.1,0.6-0.1,0.9-0.2c5.9-1.6,10.2-6.2,10.2-11.6\r\n\t\tc0-2-0.6-3.9-1.6-5.6c-0.3-0.4-0.5-0.7-0.8-1.1c-1.6-2.6-2.6-4.3-2.6-7.4c0-3.2,1-5.1,2.8-7.8c0.1-0.2,0.3-0.4,0.4-0.6\r\n\t\tc1.1-1.7,1.7-3.7,1.7-5.8c0-2-0.6-3.9-1.6-5.6c-0.3-0.3-0.5-0.7-0.7-1c-1.6-2.6-2.6-4.3-2.6-7.5c0-3.2,1-5,2.7-7.6\r\n\t\tC317.7,396.7,317.7,396.6,317.8,396.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.lightbulb = lightbulb;
\ No newline at end of file
diff --git a/dist/ionicons/link.js b/dist/ionicons/link.js
new file mode 100644
index 000000000..c02d4576b
--- /dev/null
+++ b/dist/ionicons/link.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.link = void 0;
+var link = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.5,208H256v0C256.2,208,256.3,208,256.5,208z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.5,208H256v0C256.2,208,256.3,208,256.5,208z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M368.5,160H320c0,0,26,17,31.6,48H368h0.5c17.6,0,31.5,13.9,31.5,31.5v32c0,17.6-13.9,32.5-31.5,32.5h-112\r\n\t\tc-17.6,0-32.5-14.9-32.5-32.5V240h-48v31.5c0,11.5,2.5,22.5,6.9,32.5c12.6,28.2,40.9,48,73.6,48h112c44.2,0,79.5-36.3,79.5-80.5\r\n\t\tv-32C448,195.3,412.7,160,368.5,160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368.5,160H320c0,0,26,17,31.6,48H368h0.5c17.6,0,31.5,13.9,31.5,31.5v32c0,17.6-13.9,32.5-31.5,32.5h-112\r\n\t\tc-17.6,0-32.5-14.9-32.5-32.5V240h-48v31.5c0,11.5,2.5,22.5,6.9,32.5c12.6,28.2,40.9,48,73.6,48h112c44.2,0,79.5-36.3,79.5-80.5\r\n\t\tv-32C448,195.3,412.7,160,368.5,160z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M329.6,208c-12.1-28.3-40.1-48-73.1-48h-112c-44.2,0-80.5,35.3-80.5,79.5v32c0,44.2,36.3,80.5,80.5,80.5H192\r\n\t\tc0,0-25.8-17-32.1-48h-15.4c-17.6,0-32.5-14.9-32.5-32.5v-32c0-17.6,14.9-31.5,32.5-31.5H256h0.5c17.6,0,31.5,13.9,31.5,31.5v32\r\n\t\tc0,0.2,0,0.3,0,0.5h48c0-0.2,0-0.3,0-0.5v-32C336,228.3,333.7,217.6,329.6,208z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M329.6,208c-12.1-28.3-40.1-48-73.1-48h-112c-44.2,0-80.5,35.3-80.5,79.5v32c0,44.2,36.3,80.5,80.5,80.5H192\r\n\t\tc0,0-25.8-17-32.1-48h-15.4c-17.6,0-32.5-14.9-32.5-32.5v-32c0-17.6,14.9-31.5,32.5-31.5H256h0.5c17.6,0,31.5,13.9,31.5,31.5v32\r\n\t\tc0,0.2,0,0.3,0,0.5h48c0-0.2,0-0.3,0-0.5v-32C336,228.3,333.7,217.6,329.6,208z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.link = link;
\ No newline at end of file
diff --git a/dist/ionicons/loadA.js b/dist/ionicons/loadA.js
new file mode 100644
index 000000000..7762a1c2e
--- /dev/null
+++ b/dist/ionicons/loadA.js
@@ -0,0 +1,139 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loadA = void 0;
+var loadA = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "96",
+ "r": "64"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "96",
+ "r": "64"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "96",
+ "cy": "256",
+ "r": "48"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "96",
+ "cy": "256",
+ "r": "48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "368",
+ "cy": "144",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "368",
+ "cy": "144",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M180.1,107.6c-19.9-20.1-52.2-20.1-72.1,0c-19.9,20.1-19.9,52.7,0,72.8c19.9,20.1,52.2,20.1,72.1,0\r\n\t\tC200,160.3,200,127.7,180.1,107.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M180.1,107.6c-19.9-20.1-52.2-20.1-72.1,0c-19.9,20.1-19.9,52.7,0,72.8c19.9,20.1,52.2,20.1,72.1,0\r\n\t\tC200,160.3,200,127.7,180.1,107.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "416",
+ "cy": "256",
+ "r": "16"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "416",
+ "cy": "256",
+ "r": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "369",
+ "cy": "369",
+ "r": "24"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "369",
+ "cy": "369",
+ "r": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "416",
+ "r": "32"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "416",
+ "r": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "144",
+ "cy": "368",
+ "r": "40"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "144",
+ "cy": "368",
+ "r": "40"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.loadA = loadA;
\ No newline at end of file
diff --git a/dist/ionicons/loadB.js b/dist/ionicons/loadB.js
new file mode 100644
index 000000000..18dcd8664
--- /dev/null
+++ b/dist/ionicons/loadB.js
@@ -0,0 +1,111 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loadB = void 0;
+var loadB = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,160c0,17.7-14.3,32-32,32l0,0c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32l0,0c17.7,0,32,14.3,32,32V160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,160c0,17.7-14.3,32-32,32l0,0c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32l0,0c17.7,0,32,14.3,32,32V160z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,320c-17.7,0-32,14.3-32,32v96c0,17.7,14.3,32,32,32s32-14.3,32-32v-96C288,334.3,273.7,320,256,320L256,320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,320c-17.7,0-32,14.3-32,32v96c0,17.7,14.3,32,32,32s32-14.3,32-32v-96C288,334.3,273.7,320,256,320L256,320z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M448,224h-96c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S465.7,224,448,224L448,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,224h-96c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S465.7,224,448,224L448,224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M160,224H64c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S177.7,224,160,224L160,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,224H64c-17.7,0-32,14.3-32,32s14.3,32,32,32h96c17.7,0,32-14.3,32-32S177.7,224,160,224L160,224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M346.5,210.7c-12.5,12.5-32.8,12.5-45.3,0l0,0c-12.5-12.5-12.5-32.8,0-45.3l67.9-67.9c12.5-12.5,32.8-12.5,45.3,0l0,0\r\n\t\tc12.5,12.5,12.5,32.8,0,45.3L346.5,210.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M346.5,210.7c-12.5,12.5-32.8,12.5-45.3,0l0,0c-12.5-12.5-12.5-32.8,0-45.3l67.9-67.9c12.5-12.5,32.8-12.5,45.3,0l0,0\r\n\t\tc12.5,12.5,12.5,32.8,0,45.3L346.5,210.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M210.7,301.3c-12.5-12.5-32.8-12.5-45.3,0l-67.9,67.9c-12.5,12.5-12.5,32.8,0,45.3c12.5,12.5,32.8,12.5,45.3,0l67.9-67.9\r\n\t\tC223.2,334,223.2,313.8,210.7,301.3L210.7,301.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M210.7,301.3c-12.5-12.5-32.8-12.5-45.3,0l-67.9,67.9c-12.5,12.5-12.5,32.8,0,45.3c12.5,12.5,32.8,12.5,45.3,0l67.9-67.9\r\n\t\tC223.2,334,223.2,313.8,210.7,301.3L210.7,301.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M414.4,369.1l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tC426.9,401.9,426.9,381.6,414.4,369.1L414.4,369.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M414.4,369.1l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tC426.9,401.9,426.9,381.6,414.4,369.1L414.4,369.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M210.7,165.5l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tS223.2,178,210.7,165.5L210.7,165.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M210.7,165.5l-67.9-67.9c-12.5-12.5-32.8-12.5-45.3,0c-12.5,12.5-12.5,32.8,0,45.3l67.9,67.9c12.5,12.5,32.8,12.5,45.3,0\r\n\t\tS223.2,178,210.7,165.5L210.7,165.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.loadB = loadB;
\ No newline at end of file
diff --git a/dist/ionicons/loadC.js b/dist/ionicons/loadC.js
new file mode 100644
index 000000000..fe75ea97c
--- /dev/null
+++ b/dist/ionicons/loadC.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loadC = void 0;
+var loadC = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M479.8,226.1c-1.4-8.7-3.1-17.3-5.3-25.8c-2.8-10.8-6.4-21.5-10.8-31.8c-8.9-21.2-21.1-41-35.9-58.6\r\n\tc-16-18.9-35.3-35.2-56.7-47.7C350,49.8,327,41,303,36.1c-12.4-2.5-24.9-4-37.6-4.1c-9.9-0.1-19.8,0.3-29.6,1.2\r\n\tc-25.5,2.5-50.7,9.6-73.9,20.5c-19.9,9.4-38.4,21.6-54.8,36.2c-16.4,14.6-30.7,31.6-42.2,50.3c-12.7,20.8-22.2,43.5-27.4,67.3\r\n\tc-4.2,19-6.2,38.6-5.2,58.1c0.9,18.9,3.8,37.8,9.5,55.9c3.6,11.5,7.9,22.7,13.3,33.6c5.3,10.7,11.5,21,18.4,30.7\r\n\tc13.8,19.3,30.6,36.4,49.8,50.5c19.6,14.5,41.7,25.7,64.9,33.1c24.2,7.7,49.9,11.3,75.3,10.4c24.8-0.8,49.4-5.6,72.6-14.5\r\n\tc22.3-8.6,43.2-20.9,61.5-36.3c9.2-7.8,17.4-16.6,25.1-25.9c7.8-9.4,14.8-19.3,20.6-30c5-9.2,9.2-18.8,12.8-28.5\r\n\tc1.8-4.8,3.5-9.6,4.9-14.6c1.5-5.3,2.6-10.8,3.6-16.2c1.5-8.5,2.1-17.3,1.3-25.9c-0.7,3.8-1.3,7.5-2.2,11.2\r\n\tc-1.1,4.3-2.5,8.5-4.1,12.6c-3.2,8.7-7.2,17.1-11,25.5c-4.9,10.7-10.6,20.9-16.8,30.8c-3.2,5.1-6.5,10.1-10.1,14.9\r\n\tc-3.6,4.8-7.7,9.4-11.8,13.9c-8.2,9.1-17.1,17.2-27,24.4c-10.1,7.4-20.8,13.9-32.1,19.3c-22.6,11-47.3,17.6-72.3,19.8\r\n\tc-25.6,2.2-51.7-0.3-76.3-7.6c-23.4-6.9-45.6-18.1-65.1-32.8c-18.9-14.3-35.3-31.9-48.2-51.8C75.4,347.8,66.1,324.9,61,301\r\n\tc-1.3-6.2-2.3-12.6-3-18.9c-0.6-5.4-1.1-10.9-1.3-16.4c-0.3-11.3,0.4-23,2.1-34.2c3.7-24.6,11.7-48.3,24.1-69.9\r\n\tc11-19.3,25.3-36.7,42.1-51.4c16.8-14.8,36-26.7,56.8-35.1c12-4.9,24.6-8.5,37.4-10.9c6.5-1.2,13-2.2,19.5-2.7\r\n\tc3.2-0.3,6.3-0.3,9.5-0.6c1.3,0,2.6,0.1,3.9,0.1c21.7-0.4,43.5,2.4,64.2,8.9c22.3,7,43.3,18.3,61.5,33c19.1,15.4,35,34.4,47,55.8\r\n\tc10.2,18.2,17.5,37.8,21.9,58.2c1,4.7,1.8,9.4,2.6,14.1c0.7,4.3,3.1,8.3,6.8,10.7c7.8,5.2,18.7,1.7,22.5-6.7\r\n\tC479.9,232.1,480.3,229,479.8,226.1z"
+ },
+ "children": []
+ }]
+};
+exports.loadC = loadC;
\ No newline at end of file
diff --git a/dist/ionicons/loadD.js b/dist/ionicons/loadD.js
new file mode 100644
index 000000000..481f1d9af
--- /dev/null
+++ b/dist/ionicons/loadD.js
@@ -0,0 +1,159 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loadD = void 0;
+var loadD = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M432,240h-80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80c8.8,0,16-7.2,16-16S440.8,240,432,240z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M432,240h-80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80c8.8,0,16-7.2,16-16S440.8,240,432,240z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M176,256c0-8.8-7.2-16-16-16H80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80C168.8,272,176,264.8,176,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M176,256c0-8.8-7.2-16-16-16H80c-8.8,0-16,7.2-16,16s7.2,16,16,16h80C168.8,272,176,264.8,176,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,336c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16v-80C272,343.2,264.8,336,256,336z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,336c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16v-80C272,343.2,264.8,336,256,336z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16V80C272,71.2,264.8,64,256,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c-8.8,0-16,7.2-16,16v80c0,8.8,7.2,16,16,16s16-7.2,16-16V80C272,71.2,264.8,64,256,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M325.3,216c4.4,7.7,14.2,10.3,21.9,5.9l69.3-40c7.7-4.4,10.3-14.2,5.9-21.9s-14.2-10.3-21.9-5.9l-69.3,40\r\n\t\tC323.5,198.6,320.9,208.3,325.3,216z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M325.3,216c4.4,7.7,14.2,10.3,21.9,5.9l69.3-40c7.7-4.4,10.3-14.2,5.9-21.9s-14.2-10.3-21.9-5.9l-69.3,40\r\n\t\tC323.5,198.6,320.9,208.3,325.3,216z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M186.7,296c-4.4-7.7-14.2-10.3-21.9-5.9l-69.3,40c-7.7,4.4-10.3,14.2-5.9,21.9s14.2,10.3,21.9,5.9l69.3-40\r\n\t\tC188.5,313.4,191.1,303.7,186.7,296z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M186.7,296c-4.4-7.7-14.2-10.3-21.9-5.9l-69.3,40c-7.7,4.4-10.3,14.2-5.9,21.9s14.2,10.3,21.9,5.9l69.3-40\r\n\t\tC188.5,313.4,191.1,303.7,186.7,296z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M317.9,331.1c-4.4-7.7-14.2-10.3-21.9-5.9s-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\tc7.7-4.4,10.3-14.2,5.9-21.9L317.9,331.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M317.9,331.1c-4.4-7.7-14.2-10.3-21.9-5.9s-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\tc7.7-4.4,10.3-14.2,5.9-21.9L317.9,331.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M181.9,95.6c-4.4-7.7-14.2-10.3-21.9-5.9c-7.7,4.4-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\ts10.3-14.2,5.9-21.9L181.9,95.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M181.9,95.6c-4.4-7.7-14.2-10.3-21.9-5.9c-7.7,4.4-10.3,14.2-5.9,21.9l40,69.3c4.4,7.7,14.2,10.3,21.9,5.9\r\n\t\ts10.3-14.2,5.9-21.9L181.9,95.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M296,186.7c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3c4.4-7.7,1.8-17.4-5.9-21.9c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3\r\n\t\tC285.7,172.5,288.3,182.3,296,186.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M296,186.7c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3c4.4-7.7,1.8-17.4-5.9-21.9c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3\r\n\t\tC285.7,172.5,288.3,182.3,296,186.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M216,325.3c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3c-4.4,7.7-1.8,17.4,5.9,21.9c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3\r\n\t\tC226.3,339.5,223.7,329.7,216,325.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M216,325.3c-7.7-4.4-17.4-1.8-21.9,5.9l-40,69.3c-4.4,7.7-1.8,17.4,5.9,21.9c7.7,4.4,17.4,1.8,21.9-5.9l40-69.3\r\n\t\tC226.3,339.5,223.7,329.7,216,325.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M416.4,330.1l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9c-4.4,7.7-1.8,17.4,5.9,21.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9\r\n\t\tC426.7,344.3,424.1,334.6,416.4,330.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416.4,330.1l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9c-4.4,7.7-1.8,17.4,5.9,21.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9\r\n\t\tC426.7,344.3,424.1,334.6,416.4,330.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M95.6,181.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9s1.8-17.4-5.9-21.9l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9\r\n\t\tC85.3,167.7,87.9,177.4,95.6,181.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M95.6,181.9l69.3,40c7.7,4.4,17.4,1.8,21.9-5.9s1.8-17.4-5.9-21.9l-69.3-40c-7.7-4.4-17.4-1.8-21.9,5.9\r\n\t\tC85.3,167.7,87.9,177.4,95.6,181.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.loadD = loadD;
\ No newline at end of file
diff --git a/dist/ionicons/location.js b/dist/ionicons/location.js
new file mode 100644
index 000000000..9c5f2a7a6
--- /dev/null
+++ b/dist/ionicons/location.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.location = void 0;
+var location = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c-65.9,0-119.3,53.7-119.3,120c0,114.6,119.3,264,119.3,264s119.3-149.4,119.3-264C375.3,117.7,321.9,64,256,64z\r\n\t\t M256,242.2c-31.2,0-56.4-25.4-56.4-56.7c0-31.3,25.3-56.8,56.4-56.8c31.2,0,56.4,25.4,56.4,56.8\r\n\t\tC312.4,216.8,287.2,242.2,256,242.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c-65.9,0-119.3,53.7-119.3,120c0,114.6,119.3,264,119.3,264s119.3-149.4,119.3-264C375.3,117.7,321.9,64,256,64z\r\n\t\t M256,242.2c-31.2,0-56.4-25.4-56.4-56.7c0-31.3,25.3-56.8,56.4-56.8c31.2,0,56.4,25.4,56.4,56.8\r\n\t\tC312.4,216.8,287.2,242.2,256,242.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.location = location;
\ No newline at end of file
diff --git a/dist/ionicons/lockCombination.js b/dist/ionicons/lockCombination.js
new file mode 100644
index 000000000..9155c7259
--- /dev/null
+++ b/dist/ionicons/lockCombination.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.lockCombination = void 0;
+var lockCombination = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,176.905V128C384,57.308,326.692,0,256,0S128,57.308,128,128v48.906C88.725,212.062,64,263.141,64,320\r\n\t\tc0,106.039,85.962,192,192,192c106.039,0,192-85.961,192-192C448,263.141,423.275,212.062,384,176.905z M160,128\r\n\t\tc0-52.935,43.065-96,96-96s96,43.065,96,96v25.692C323.759,137.355,290.973,128,256,128s-67.759,9.355-96,25.693V128z M256,480\r\n\t\tc-88.366,0-160-71.634-160-160s71.634-160,160-160s160,71.634,160,160S344.366,480,256,480z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,176.905V128C384,57.308,326.692,0,256,0S128,57.308,128,128v48.906C88.725,212.062,64,263.141,64,320\r\n\t\tc0,106.039,85.962,192,192,192c106.039,0,192-85.961,192-192C448,263.141,423.275,212.062,384,176.905z M160,128\r\n\t\tc0-52.935,43.065-96,96-96s96,43.065,96,96v25.692C323.759,137.355,290.973,128,256,128s-67.759,9.355-96,25.693V128z M256,480\r\n\t\tc-88.366,0-160-71.634-160-160s71.634-160,160-160s160,71.634,160,160S344.366,480,256,480z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,176c-79.529,0-144,64.472-144,144s64.471,144,144,144s144-64.472,144-144S335.529,176,256,176z M378.533,353.487\r\n\t\tl-24.12-7.896l-3.926,12.19l24.161,7.912c-3.661,9.776-8.462,18.965-14.252,27.409l-10.56-7.737l-3.74,5.184l10.555,7.734\r\n\t\tc-6.129,8.047-13.189,15.324-21.028,21.682l-14.982-20.787l-10.284,7.532l14.976,20.776c-8.479,5.556-17.657,10.12-27.398,13.532\r\n\t\tl-3.96-12.294l-6.049,1.982l4.924,12.262C283.335,445.77,273,447.497,264,448v-12.659V429h-16v6.341V448\r\n\t\tc-11-0.506-19.705-2.244-29.243-5.065l3.948-11.206l-6.25-2.106l-3.539,11.224c-9.557-3.393-18.531-7.895-26.864-13.359\r\n\t\tl14.997-20.774l-10.27-7.534l-14.977,20.787c-7.809-6.333-14.841-13.575-20.953-21.583l9.556-6.998l-3.971-5.507l-9.562,7\r\n\t\tc-5.718-8.381-10.469-17.497-14.093-27.186l24.162-7.914l-3.926-12.188l-24.121,7.897c-2.49-9.431-3.954-18.488-4.258-29.487H134\r\n\t\tv-6.805l-5.993-0.002c0.223-10.606,0.672-20.88,3.266-30.682l24.921,7.9l4.347-12.188l-23.966-7.914\r\n\t\tc3.585-9.57,8.36-18.583,13.985-26.879l10.339,7.533l3.759-5.184l-10.292-7.545c6.221-8.253,13.424-15.707,21.434-22.197\r\n\t\tl14.984,20.787l10.284-7.536l-14.975-20.774c8.405-5.514,17.512-10.05,27.16-13.449l3.955,12.247l6.044-1.98l-4.62-12.231\r\n\t\tC228.21,194.258,237,192.508,248,192v12.66V211h16v-6.34V192c9,0.498,19.159,2.198,28.585,4.951l-4.761,13.28l6.182,2.106\r\n\t\tl4.174-13.312c9.696,3.408,18.778,7.957,27.208,13.491l-15.002,20.775l10.267,7.535l14.975-20.787\r\n\t\tc7.935,6.432,15.069,13.812,21.255,21.977l-11.299,8.268l3.975,5.512l11.276-8.26c5.595,8.271,10.247,17.243,13.816,26.775\r\n\t\tl-24.165,7.914l3.928,12.188l24.12-7.9c2.586,9.802,5.251,20.075,5.47,30.683L376,317.192V324h6.789\r\n\t\tC382.486,334.999,381.02,344.057,378.533,353.487z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,176c-79.529,0-144,64.472-144,144s64.471,144,144,144s144-64.472,144-144S335.529,176,256,176z M378.533,353.487\r\n\t\tl-24.12-7.896l-3.926,12.19l24.161,7.912c-3.661,9.776-8.462,18.965-14.252,27.409l-10.56-7.737l-3.74,5.184l10.555,7.734\r\n\t\tc-6.129,8.047-13.189,15.324-21.028,21.682l-14.982-20.787l-10.284,7.532l14.976,20.776c-8.479,5.556-17.657,10.12-27.398,13.532\r\n\t\tl-3.96-12.294l-6.049,1.982l4.924,12.262C283.335,445.77,273,447.497,264,448v-12.659V429h-16v6.341V448\r\n\t\tc-11-0.506-19.705-2.244-29.243-5.065l3.948-11.206l-6.25-2.106l-3.539,11.224c-9.557-3.393-18.531-7.895-26.864-13.359\r\n\t\tl14.997-20.774l-10.27-7.534l-14.977,20.787c-7.809-6.333-14.841-13.575-20.953-21.583l9.556-6.998l-3.971-5.507l-9.562,7\r\n\t\tc-5.718-8.381-10.469-17.497-14.093-27.186l24.162-7.914l-3.926-12.188l-24.121,7.897c-2.49-9.431-3.954-18.488-4.258-29.487H134\r\n\t\tv-6.805l-5.993-0.002c0.223-10.606,0.672-20.88,3.266-30.682l24.921,7.9l4.347-12.188l-23.966-7.914\r\n\t\tc3.585-9.57,8.36-18.583,13.985-26.879l10.339,7.533l3.759-5.184l-10.292-7.545c6.221-8.253,13.424-15.707,21.434-22.197\r\n\t\tl14.984,20.787l10.284-7.536l-14.975-20.774c8.405-5.514,17.512-10.05,27.16-13.449l3.955,12.247l6.044-1.98l-4.62-12.231\r\n\t\tC228.21,194.258,237,192.508,248,192v12.66V211h16v-6.34V192c9,0.498,19.159,2.198,28.585,4.951l-4.761,13.28l6.182,2.106\r\n\t\tl4.174-13.312c9.696,3.408,18.778,7.957,27.208,13.491l-15.002,20.775l10.267,7.535l14.975-20.787\r\n\t\tc7.935,6.432,15.069,13.812,21.255,21.977l-11.299,8.268l3.975,5.512l11.276-8.26c5.595,8.271,10.247,17.243,13.816,26.775\r\n\t\tl-24.165,7.914l3.928,12.188l24.12-7.9c2.586,9.802,5.251,20.075,5.47,30.683L376,317.192V324h6.789\r\n\t\tC382.486,334.999,381.02,344.057,378.533,353.487z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "320",
+ "r": "81"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "320",
+ "r": "81"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.lockCombination = lockCombination;
\ No newline at end of file
diff --git a/dist/ionicons/locked.js b/dist/ionicons/locked.js
new file mode 100644
index 000000000..9d0440aac
--- /dev/null
+++ b/dist/ionicons/locked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.locked = void 0;
+var locked = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M86.4,480h339.2c12.3,0,22.4-9.9,22.4-22.1V246c0-12.2-10-22-22.4-22H404v-30.9c0-41.5-16.2-87.6-42.6-115.4\r\n\tC335.1,49.9,297.4,32,256.1,32c-0.1,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-41.3,0-79,17.9-105.3,45.6c-26.4,27.8-42.6,73.9-42.6,115.4V224\r\n\tH89h-2.6C74,224,64,233.9,64,246v211.9C64,470.1,74,480,86.4,480z M161,193.1c0-27.3,9.9-61.1,28.1-80.3l0,0l0-0.3\r\n\tC206.7,93.9,231,83,255.9,83h0.1h0.1c24.9,0,49.2,10.9,66.8,29.5l0,0.2l-0.1,0.1c18.3,19.2,28.1,53,28.1,80.3V224h-17.5h-155H161\r\n\tV193.1z"
+ },
+ "children": []
+ }]
+};
+exports.locked = locked;
\ No newline at end of file
diff --git a/dist/ionicons/logIn.js b/dist/ionicons/logIn.js
new file mode 100644
index 000000000..47f62f884
--- /dev/null
+++ b/dist/ionicons/logIn.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.logIn = void 0;
+var logIn = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.988,32C160.473,32,78.934,91.804,46.727,176h34.639c9.396-20.484,22.457-39.35,38.868-55.762\r\n\t\tC156.497,83.973,204.709,64,255.988,64c51.286,0,99.504,19.973,135.771,56.239C428.027,156.505,448,204.719,448,256\r\n\t\tc0,51.285-19.973,99.501-56.239,135.765C355.494,428.029,307.275,448,255.988,448c-51.281,0-99.493-19.971-135.755-56.234\r\n\t\tC103.821,375.354,90.76,356.486,81.362,336H46.725c32.206,84.201,113.746,144,209.264,144C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.988,32C160.473,32,78.934,91.804,46.727,176h34.639c9.396-20.484,22.457-39.35,38.868-55.762\r\n\t\tC156.497,83.973,204.709,64,255.988,64c51.286,0,99.504,19.973,135.771,56.239C428.027,156.505,448,204.719,448,256\r\n\t\tc0,51.285-19.973,99.501-56.239,135.765C355.494,428.029,307.275,448,255.988,448c-51.281,0-99.493-19.971-135.755-56.234\r\n\t\tC103.821,375.354,90.76,356.486,81.362,336H46.725c32.206,84.201,113.746,144,209.264,144C379.703,480,480,379.715,480,256\r\n\t\tC480,132.298,379.703,32,255.988,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "206.863,323.883 229.49,346.51 320,256 229.49,165.49 206.862,188.118 258.745,240 32,240 32,272 258.745,272 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "206.863,323.883 229.49,346.51 320,256 229.49,165.49 206.862,188.118 258.745,240 32,240 32,272 258.745,272 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.logIn = logIn;
\ No newline at end of file
diff --git a/dist/ionicons/logOut.js b/dist/ionicons/logOut.js
new file mode 100644
index 000000000..e49bdce0b
--- /dev/null
+++ b/dist/ionicons/logOut.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.logOut = void 0;
+var logOut = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "366.863,323.883 389.49,346.51 480,256 389.49,165.49 366.862,188.118 418.745,240 192,240 192,272 418.745,272 \t\r\n\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "366.863,323.883 389.49,346.51 480,256 389.49,165.49 366.862,188.118 418.745,240 192,240 192,272 418.745,272 \t\r\n\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M391.491,391.766C355.229,428.029,307.018,448,255.736,448c-51.287,0-99.506-19.971-135.772-56.235\r\n\t\t\tC83.697,355.501,64,307.285,64,256c0-51.281,19.697-99.495,55.965-135.761C156.232,83.973,204.45,64,255.736,64\r\n\t\t\tc51.279,0,99.491,19.973,135.755,56.238c2.527,2.528,4.966,5.121,7.333,7.762h40.731c-40.474-58.028-107.709-96-183.819-96\r\n\t\t\tC132.021,32,32,132.298,32,256c0,123.715,100.021,224,223.736,224c76.112,0,143.35-37.97,183.822-96h-40.73\r\n\t\t\tC396.46,386.643,394.021,389.236,391.491,391.766z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M391.491,391.766C355.229,428.029,307.018,448,255.736,448c-51.287,0-99.506-19.971-135.772-56.235\r\n\t\t\tC83.697,355.501,64,307.285,64,256c0-51.281,19.697-99.495,55.965-135.761C156.232,83.973,204.45,64,255.736,64\r\n\t\t\tc51.279,0,99.491,19.973,135.755,56.238c2.527,2.528,4.966,5.121,7.333,7.762h40.731c-40.474-58.028-107.709-96-183.819-96\r\n\t\t\tC132.021,32,32,132.298,32,256c0,123.715,100.021,224,223.736,224c76.112,0,143.35-37.97,183.822-96h-40.73\r\n\t\t\tC396.46,386.643,394.021,389.236,391.491,391.766z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.logOut = logOut;
\ No newline at end of file
diff --git a/dist/ionicons/loop.js b/dist/ionicons/loop.js
new file mode 100644
index 000000000..87ceb98d9
--- /dev/null
+++ b/dist/ionicons/loop.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.loop = void 0;
+var loop = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M273.4,300.5l-0.3,58c48.9-8.2,86.3-51,86.3-102.5c0-15.9-3.6-31-10-44.5c-2.8-5.8-6-11.3-9.8-16.5l47.1-43.5\r\n\t\tc1.1,1.3,2.1,2.7,3.1,4c20.9,28,33.2,62.8,33.2,100.5c0,1.2,0,2.5,0,3.7c-1.5,71.5-47.6,132-111.4,154.6\r\n\t\tc-12.3,4.3-25.2,7.3-38.5,8.7l-0.1,57l-76.2-67L170.6,390l44.4-38.7L273.4,300.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M273.4,300.5l-0.3,58c48.9-8.2,86.3-51,86.3-102.5c0-15.9-3.6-31-10-44.5c-2.8-5.8-6-11.3-9.8-16.5l47.1-43.5\r\n\t\tc1.1,1.3,2.1,2.7,3.1,4c20.9,28,33.2,62.8,33.2,100.5c0,1.2,0,2.5,0,3.7c-1.5,71.5-47.6,132-111.4,154.6\r\n\t\tc-12.3,4.3-25.2,7.3-38.5,8.7l-0.1,57l-76.2-67L170.6,390l44.4-38.7L273.4,300.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M89,252.3c1.6-72.1,48.3-133,112.9-155.2c11.7-4,24-6.8,36.8-8.1l0.1-57l76.1,66.9l26.2,23.1l-44.3,38.6l-58.4,50.9\r\n\t\tl0.2-57.9c-48.8,8.3-86,51.1-86,102.4c0,16,3.6,31.1,10.1,44.7c2.7,5.8,6,11.2,9.7,16.3l-47,43.6c-1.3-1.6-2.6-3.3-3.8-5\r\n\t\tC101.1,327.7,89,293.3,89,256C89,254.8,89,253.5,89,252.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M89,252.3c1.6-72.1,48.3-133,112.9-155.2c11.7-4,24-6.8,36.8-8.1l0.1-57l76.1,66.9l26.2,23.1l-44.3,38.6l-58.4,50.9\r\n\t\tl0.2-57.9c-48.8,8.3-86,51.1-86,102.4c0,16,3.6,31.1,10.1,44.7c2.7,5.8,6,11.2,9.7,16.3l-47,43.6c-1.3-1.6-2.6-3.3-3.8-5\r\n\t\tC101.1,327.7,89,293.3,89,256C89,254.8,89,253.5,89,252.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.loop = loop;
\ No newline at end of file
diff --git a/dist/ionicons/magnet.js b/dist/ionicons/magnet.js
new file mode 100644
index 000000000..d2af0d019
--- /dev/null
+++ b/dist/ionicons/magnet.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.magnet = void 0;
+var magnet = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C141,32.5,64,109.6,64,231.8c0,48.8,2.1,76.8,14.5,127.8c15.9,65.7,39.1,113.3,39.1,113.3l0.6,1.3\r\n\tc1.9,3.4,5.5,5.8,9.8,5.8c1.4,0,2.7-0.2,4-0.7l1.7-0.8l50.3-20.7l1.8-0.8c3.3-1.9,5.5-5.3,5.5-9.3c-0.2-1.4-0.4-2.8-1-4\r\n\tc-0.1-0.1-0.1-0.2-0.2-0.4c-7-16-27.2-59.2-37-101.1c-9.9-41.9-13.5-62.4-13.5-107.7C139.6,163.4,192,112,256,112\r\n\tc64,0,116.4,51.4,116.4,122.5c0,45.3-3.7,65.8-13.6,107.7c-9.9,41.9-30,85.2-37,101.1c-0.1,0.2-0.1,0.3-0.2,0.4\r\n\tc-0.6,1.2-0.8,2.6-1,4c0,4,2.2,7.4,5.5,9.3l1.8,0.8l50.3,20.7l1.7,0.8c1.3,0.5,2.6,0.7,4,0.7c4.3,0,7.9-2.4,9.8-5.8l0.6-1.3\r\n\tc0,0,23.2-47.6,39.1-113.3c12.4-51,14.5-79,14.5-127.8C448,109.6,371,32.5,256,32z M173,444.2c0.1,0.2,0.2,0.5,0.3,0.7l-42.8,17.6\r\n\tc-5.4-11.8-22.7-51-35.7-104.4l42.5-12.3C146.5,385,164.4,425,173,444.2z M381.4,462.5l-42.8-17.6c0.1-0.2,0.2-0.4,0.3-0.7\r\n\tc8.6-19.2,26.4-59.2,35.6-98.4l42.5,12.3C404.1,411.5,386.8,450.7,381.4,462.5z"
+ },
+ "children": []
+ }]
+};
+exports.magnet = magnet;
\ No newline at end of file
diff --git a/dist/ionicons/male.js b/dist/ionicons/male.js
new file mode 100644
index 000000000..d3afce8ab
--- /dev/null
+++ b/dist/ionicons/male.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.male = void 0;
+var male = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,192V32H320l63,63l-68.7,68.7C284.8,141.3,247.9,128,208,128c-97.2,0-176,78.8-176,176s78.8,176,176,176\r\n\ts176-78.8,176-176c0-39.9-13.3-76.8-35.7-106.3L417,129L480,192z M298.5,394.5C274.3,418.7,242.2,432,208,432s-66.3-13.3-90.5-37.5\r\n\tC93.3,370.3,80,338.2,80,304s13.3-66.3,37.5-90.5c24.2-24.2,56.3-37.5,90.5-37.5s66.3,13.3,90.5,37.5S336,269.8,336,304\r\n\tS322.7,370.3,298.5,394.5z"
+ },
+ "children": []
+ }]
+};
+exports.male = male;
\ No newline at end of file
diff --git a/dist/ionicons/man.js b/dist/ionicons/man.js
new file mode 100644
index 000000000..57998a64f
--- /dev/null
+++ b/dist/ionicons/man.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.man = void 0;
+var man = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,106.6c20.6,0.1,37.3-16.6,37.3-37.3c0-20.6-16.7-37.3-37.3-37.3c-20.6,0-37.3,16.7-37.3,37.3\r\n\tC218.7,89.9,235.4,106.6,256,106.6z"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M293.4,115H256h-37.4c-28.2,0-46.6,24.8-46.6,48.4V277c0,22,31,22,31,0V172h6v285.6c0,30.4,42,29.4,43,0V293h7h1v164.7\r\n\t\tc1.7,31.2,43,28.2,43-0.1V172h5v105c0,22,32,22,32,0V163.4C340,139.9,321.5,115,293.4,115z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M293.4,115H256h-37.4c-28.2,0-46.6,24.8-46.6,48.4V277c0,22,31,22,31,0V172h6v285.6c0,30.4,42,29.4,43,0V293h7h1v164.7\r\n\t\tc1.7,31.2,43,28.2,43-0.1V172h5v105c0,22,32,22,32,0V163.4C340,139.9,321.5,115,293.4,115z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.man = man;
\ No newline at end of file
diff --git a/dist/ionicons/map.js b/dist/ionicons/map.js
new file mode 100644
index 000000000..48d0f4992
--- /dev/null
+++ b/dist/ionicons/map.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.map = void 0;
+var map = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M473.152,136.58L368.594,66.307c-4.644-3.076-10.365-3.076-15.031,0l-97.094,65.195l-97.109-65.195\r\n\t\tc-4.643-3.076-10.444-3.076-15.062,0L39.344,136.58c-4.399,2.949-7.344,8.272-7.344,14.05V431.6c0,5.904,3.07,11.347,7.663,14.271\r\n\t\tc4.62,2.877,10.382,2.829,14.904-0.223l97.188-65.197l97.181,65.197c4.666,3.1,10.44,3.1,15.084,0l97.158-65.197l97.151,65.197\r\n\t\tc2.311,1.55,4.912,2.353,7.538,2.353c2.455,0,4.709-0.747,6.969-2.13c4.594-2.924,7.165-8.366,7.165-14.271v-280.97\r\n\t\tC480,144.852,477.575,139.529,473.152,136.58z M135,353.248l-71,49.404v-241.75l71-49.428V353.248z M167,352.766v-122.7\r\n\t\tc1.167,0.756,2.31,1.526,3.389,2.301l9.333-12.996c-3.904-2.804-8.292-5.501-12.722-7.705V110.992l73,48.992v108.574\r\n\t\tc-5.372-1.855-10.586-4.37-15.893-7.682l-8.471,13.574c6.848,4.273,13.621,7.467,20.704,9.765l3.66-11.286v128.806L167,352.766z\r\n\t\t M272,401.734V288.369c0.349-0.021,0.693-0.03,1.043-0.054c2.91-0.198,5.777-0.517,8.518-0.946l-2.479-15.807\r\n\t\tc-2.268,0.355-4.65,0.619-7.082,0.786V159.984l73-48.992V229.78l-4.844-4.372c-2.997,3.319-5.833,6.575-8.575,9.725\r\n\t\tc-1.806,2.073-3.578,4.108-5.339,6.095l11.974,10.613c1.791-2.021,3.595-4.091,5.431-6.2c0.443-0.509,0.905-1.035,1.354-1.549\r\n\t\tv108.675L272,401.734z M448,401.652l-71-48.438v-136.91c3.785-1.715,7.679-2.992,11.639-3.792l-3.166-15.683\r\n\t\tc-2.858,0.577-5.687,1.339-8.473,2.281v-87.671l71,48.461V401.652z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M473.152,136.58L368.594,66.307c-4.644-3.076-10.365-3.076-15.031,0l-97.094,65.195l-97.109-65.195\r\n\t\tc-4.643-3.076-10.444-3.076-15.062,0L39.344,136.58c-4.399,2.949-7.344,8.272-7.344,14.05V431.6c0,5.904,3.07,11.347,7.663,14.271\r\n\t\tc4.62,2.877,10.382,2.829,14.904-0.223l97.188-65.197l97.181,65.197c4.666,3.1,10.44,3.1,15.084,0l97.158-65.197l97.151,65.197\r\n\t\tc2.311,1.55,4.912,2.353,7.538,2.353c2.455,0,4.709-0.747,6.969-2.13c4.594-2.924,7.165-8.366,7.165-14.271v-280.97\r\n\t\tC480,144.852,477.575,139.529,473.152,136.58z M135,353.248l-71,49.404v-241.75l71-49.428V353.248z M167,352.766v-122.7\r\n\t\tc1.167,0.756,2.31,1.526,3.389,2.301l9.333-12.996c-3.904-2.804-8.292-5.501-12.722-7.705V110.992l73,48.992v108.574\r\n\t\tc-5.372-1.855-10.586-4.37-15.893-7.682l-8.471,13.574c6.848,4.273,13.621,7.467,20.704,9.765l3.66-11.286v128.806L167,352.766z\r\n\t\t M272,401.734V288.369c0.349-0.021,0.693-0.03,1.043-0.054c2.91-0.198,5.777-0.517,8.518-0.946l-2.479-15.807\r\n\t\tc-2.268,0.355-4.65,0.619-7.082,0.786V159.984l73-48.992V229.78l-4.844-4.372c-2.997,3.319-5.833,6.575-8.575,9.725\r\n\t\tc-1.806,2.073-3.578,4.108-5.339,6.095l11.974,10.613c1.791-2.021,3.595-4.091,5.431-6.2c0.443-0.509,0.905-1.035,1.354-1.549\r\n\t\tv108.675L272,401.734z M448,401.652l-71-48.438v-136.91c3.785-1.715,7.679-2.992,11.639-3.792l-3.166-15.683\r\n\t\tc-2.858,0.577-5.687,1.339-8.473,2.281v-87.671l71,48.461V401.652z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M129.285,221.111c2.218-1.195-1.353-1.071,1.012-1.837l-4.928-15.222c-3.282,1.062-6.502,2.439-9.571,4.093\r\n\t\tc-3.824,2.062-7.745,4.916-11.339,8.253l10.888,11.724C117.963,225.694,126.639,222.538,129.285,221.111z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M129.285,221.111c2.218-1.195-1.353-1.071,1.012-1.837l-4.928-15.222c-3.282,1.062-6.502,2.439-9.571,4.093\r\n\t\tc-3.824,2.062-7.745,4.916-11.339,8.253l10.888,11.724C117.963,225.694,126.639,222.538,129.285,221.111z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M296.802,266.127l6.985,14.395c6.596-3.201,12.842-7.445,19.095-12.974l-10.599-11.987\r\n\t\tC307.135,260.113,302.071,263.569,296.802,266.127z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M296.802,266.127l6.985,14.395c6.596-3.201,12.842-7.445,19.095-12.974l-10.599-11.987\r\n\t\tC307.135,260.113,302.071,263.569,296.802,266.127z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M99.364,256.006c1.893-5.926,3.528-11.044,7.129-16.304l-13.204-9.037c-4.924,7.194-7.081,13.944-9.167,20.471\r\n\t\tl-0.242,0.758l15.238,4.879L99.364,256.006z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M99.364,256.006c1.893-5.926,3.528-11.044,7.129-16.304l-13.204-9.037c-4.924,7.194-7.081,13.944-9.167,20.471\r\n\t\tl-0.242,0.758l15.238,4.879L99.364,256.006z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M198.311,237.753c-1.007-1.204-2.014-2.408-3.032-3.603l-12.178,10.379c0.986,1.156,1.961,2.322,2.936,3.488\r\n\t\tc3.593,4.296,7.308,8.739,11.61,12.809l10.996-11.624C205.02,245.775,201.761,241.878,198.311,237.753z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M198.311,237.753c-1.007-1.204-2.014-2.408-3.032-3.603l-12.178,10.379c0.986,1.156,1.961,2.322,2.936,3.488\r\n\t\tc3.593,4.296,7.308,8.739,11.61,12.809l10.996-11.624C205.02,245.775,201.761,241.878,198.311,237.753z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "408.156,229.657 418.5,219.314 428.844,229.657 440.156,218.342 429.814,208 440.156,197.657 428.844,186.342 \r\n\t\t418.5,196.685 408.156,186.342 396.844,197.657 407.186,208 396.844,218.342 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "408.156,229.657 418.5,219.314 428.844,229.657 440.156,218.342 429.814,208 440.156,197.657 428.844,186.342 \r\n\t\t418.5,196.685 408.156,186.342 396.844,197.657 407.186,208 396.844,218.342 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.map = map;
\ No newline at end of file
diff --git a/dist/ionicons/medkit.js b/dist/ionicons/medkit.js
new file mode 100644
index 000000000..5fbfbbedb
--- /dev/null
+++ b/dist/ionicons/medkit.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.medkit = void 0;
+var medkit = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64H256h-44.8c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8\r\n\t\tv288c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.8-3.6,7.8-8V152C480,147.6,476.7,144,472.2,144z M192,117.2c0-0.4,0-0.7,0-1s0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.3,18.8-19.3H256h45.2c10.1,0,18.8,9.5,18.8,19.3c0,0.3,0,0.6,0,1s0,0.6,0,1V144H192V117.2z M352,320h-64v64h-64v-64\r\n\t\th-64v-64h64v-64h64v64h64V320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M472.2,144H352v-30.7C351,85.1,330.3,64,300.8,64H256h-44.8c-29.4,0-50.2,21.1-51.2,49.3V144H39.8c-4.4,0-7.8,3.6-7.8,8\r\n\t\tv288c0,4.4,3.3,8,7.8,8h432.5c4.4,0,7.8-3.6,7.8-8V152C480,147.6,476.7,144,472.2,144z M192,117.2c0-0.4,0-0.7,0-1s0-0.6,0-1\r\n\t\tc0-9.7,8.6-19.3,18.8-19.3H256h45.2c10.1,0,18.8,9.5,18.8,19.3c0,0.3,0,0.6,0,1s0,0.6,0,1V144H192V117.2z M352,320h-64v64h-64v-64\r\n\t\th-64v-64h64v-64h64v64h64V320z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.medkit = medkit;
\ No newline at end of file
diff --git a/dist/ionicons/merge.js b/dist/ionicons/merge.js
new file mode 100644
index 000000000..7955d80af
--- /dev/null
+++ b/dist/ionicons/merge.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.merge = void 0;
+var merge = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,224c-23.637,0-44.307,12.89-55.391,32H319c-42.464,0-79.99-17.904-111.535-53.214\r\n\tc-20.356-22.787-33.493-48.869-37.856-58.218C183.301,132.822,192,115.413,192,96c0-35.29-28.71-64-64-64S64,60.71,64,96\r\n\tc0,23.637,12.89,44.307,32,55.391v209.219C76.89,371.693,64,392.363,64,416c0,35.29,28.71,64,64,64s64-28.71,64-64\r\n\tc0-23.637-12.89-44.307-32-55.391V245.692C203.553,294.307,258.468,320,319,320h9.609c11.084,19.11,31.754,32,55.391,32\r\n\tc35.29,0,64-28.71,64-64S419.29,224,384,224z M128,64c17.673,0,32,14.327,32,32s-14.327,32-32,32s-32-14.327-32-32\r\n\tS110.327,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M384,320\r\n\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S401.673,320,384,320z"
+ },
+ "children": []
+ }]
+};
+exports.merge = merge;
\ No newline at end of file
diff --git a/dist/ionicons/micA.js b/dist/ionicons/micA.js
new file mode 100644
index 000000000..fb55f416b
--- /dev/null
+++ b/dist/ionicons/micA.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.micA = void 0;
+var micA = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112.1,238.1l-0.1,13.6c0.1,65.6,46,120.6,108.1,136.2c1.3,0.1,2.6,0.5,3.8,0.9c5.9,2,10.1,6.9,12.1,12.8v58.7\r\n\t\tc0,10.9,8.9,19.7,20,19.7h0.1c11.1,0,19.9-8.8,19.9-19.7v-58.8c2-5.9,6.1-10.7,12-12.7c1.2-0.4,2.5-0.8,3.9-0.9\r\n\t\tC354,372.3,400,317.3,400,251.7v-13.6c0-10.4-8.9-18.9-19.5-18.9c-10.6,0-19.5,8.4-19.5,18.9v13.6c0,28.5-11.5,54.1-30.6,72.8\r\n\t\tc-19.2,18.6-45.3,30.2-74.5,30.2c-29.2,0-55.1-11.5-74.2-30.2c-19.1-18.7-30.7-44.4-30.7-72.8v-13.6c0-10.4-8.8-18.9-19.5-18.9\r\n\t\tC120.9,219.2,112.1,227.7,112.1,238.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M112.1,238.1l-0.1,13.6c0.1,65.6,46,120.6,108.1,136.2c1.3,0.1,2.6,0.5,3.8,0.9c5.9,2,10.1,6.9,12.1,12.8v58.7\r\n\t\tc0,10.9,8.9,19.7,20,19.7h0.1c11.1,0,19.9-8.8,19.9-19.7v-58.8c2-5.9,6.1-10.7,12-12.7c1.2-0.4,2.5-0.8,3.9-0.9\r\n\t\tC354,372.3,400,317.3,400,251.7v-13.6c0-10.4-8.9-18.9-19.5-18.9c-10.6,0-19.5,8.4-19.5,18.9v13.6c0,28.5-11.5,54.1-30.6,72.8\r\n\t\tc-19.2,18.6-45.3,30.2-74.5,30.2c-29.2,0-55.1-11.5-74.2-30.2c-19.1-18.7-30.7-44.4-30.7-72.8v-13.6c0-10.4-8.8-18.9-19.5-18.9\r\n\t\tC120.9,219.2,112.1,227.7,112.1,238.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M179,107.7v143.8c0,41.8,34.7,75.7,77.5,75.7c42.8,0,77.5-33.9,77.5-75.7V107.7c0-41.8-34.7-75.7-77.5-75.7\r\n\t\tC213.7,32,179,65.9,179,107.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M179,107.7v143.8c0,41.8,34.7,75.7,77.5,75.7c42.8,0,77.5-33.9,77.5-75.7V107.7c0-41.8-34.7-75.7-77.5-75.7\r\n\t\tC213.7,32,179,65.9,179,107.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.micA = micA;
\ No newline at end of file
diff --git a/dist/ionicons/micB.js b/dist/ionicons/micB.js
new file mode 100644
index 000000000..3c3467cc1
--- /dev/null
+++ b/dist/ionicons/micB.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.micB = void 0;
+var micB = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.4,32c-35.1,0.1-65.8,23.2-76.8,59.3c-5.6,18.5-3.5,44.8-1.2,54.5c2.3,9.7,7.3,19.9,13.2,28.3\r\n\t\tc2.8,4.2,6.7,7.4,11.2,9.2c0.6,0.3,1.3,0.5,2,0.8c3.3,1.1,6.5,2.2,10.1,3.1c11.8,3,27.1,4.7,41.1,4.8v0c0,0,0.6,0,0.7,0\r\n\t\tc0.3,0,0.3,0,1.3,0v-0.1c14-0.1,27.3-1.7,39.1-4.8c3.6-0.9,6.9-2,10.2-3.1c0.7-0.2,1.3-0.5,1.9-0.8c4.5-1.8,8.4-5,11.2-9.2\r\n\t\tc5.9-8.4,10.8-18.6,13.2-28.3c2.3-9.7,4.4-36-1.2-54.5C321.4,55.2,291.6,32.1,256.4,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.4,32c-35.1,0.1-65.8,23.2-76.8,59.3c-5.6,18.5-3.5,44.8-1.2,54.5c2.3,9.7,7.3,19.9,13.2,28.3\r\n\t\tc2.8,4.2,6.7,7.4,11.2,9.2c0.6,0.3,1.3,0.5,2,0.8c3.3,1.1,6.5,2.2,10.1,3.1c11.8,3,27.1,4.7,41.1,4.8v0c0,0,0.6,0,0.7,0\r\n\t\tc0.3,0,0.3,0,1.3,0v-0.1c14-0.1,27.3-1.7,39.1-4.8c3.6-0.9,6.9-2,10.2-3.1c0.7-0.2,1.3-0.5,1.9-0.8c4.5-1.8,8.4-5,11.2-9.2\r\n\t\tc5.9-8.4,10.8-18.6,13.2-28.3c2.3-9.7,4.4-36-1.2-54.5C321.4,55.2,291.6,32.1,256.4,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M295.3,201.1c-0.4,0-0.7,0-1.1,0.1c-0.6,0.1-1.3,0.3-1.9,0.4c-2,0.4-4.1,0.8-6.1,1.2c-9.2,1.5-18.9,2.3-29,2.4\r\n\t\tc-10.1-0.1-22.3-0.9-31-2.4c-2.1-0.4-4.2-0.8-6.2-1.2c-0.6-0.1-1.3-0.3-1.9-0.4c-0.4-0.1-0.8-0.1-1.1-0.1c-6.1,0-11,5.3-11.2,11.9\r\n\t\tc0.1,0.8,0.2,1.6,0.2,2.4c4.8,67.2,16.8,240.7,18.2,252c0,0,2.8,12.7,32.1,12.6c0,0,0,0,0,0c29.2,0.1,32.1-12.6,32.1-12.6\r\n\t\tc1.4-11.3,13.4-184.8,18.2-252c0-0.8,0.1-1.6,0.2-2.4C306.3,206.4,301.4,201.1,295.3,201.1z M266,281.7c0,6-4.5,10.9-10,10.9\r\n\t\tc-5.5,0-10-4.9-10-10.9V249c0-6,4.5-10.9,10-10.9c5.5,0,10,4.9,10,10.9V281.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M295.3,201.1c-0.4,0-0.7,0-1.1,0.1c-0.6,0.1-1.3,0.3-1.9,0.4c-2,0.4-4.1,0.8-6.1,1.2c-9.2,1.5-18.9,2.3-29,2.4\r\n\t\tc-10.1-0.1-22.3-0.9-31-2.4c-2.1-0.4-4.2-0.8-6.2-1.2c-0.6-0.1-1.3-0.3-1.9-0.4c-0.4-0.1-0.8-0.1-1.1-0.1c-6.1,0-11,5.3-11.2,11.9\r\n\t\tc0.1,0.8,0.2,1.6,0.2,2.4c4.8,67.2,16.8,240.7,18.2,252c0,0,2.8,12.7,32.1,12.6c0,0,0,0,0,0c29.2,0.1,32.1-12.6,32.1-12.6\r\n\t\tc1.4-11.3,13.4-184.8,18.2-252c0-0.8,0.1-1.6,0.2-2.4C306.3,206.4,301.4,201.1,295.3,201.1z M266,281.7c0,6-4.5,10.9-10,10.9\r\n\t\tc-5.5,0-10-4.9-10-10.9V249c0-6,4.5-10.9,10-10.9c5.5,0,10,4.9,10,10.9V281.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.micB = micB;
\ No newline at end of file
diff --git a/dist/ionicons/micC.js b/dist/ionicons/micC.js
new file mode 100644
index 000000000..4f7d150eb
--- /dev/null
+++ b/dist/ionicons/micC.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.micC = void 0;
+var micC = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M329.2,32H182.9C152.5,32,128,55.4,128,84.4V112h152v37H128v43h152v37H128v43h152v37H128v41.8c0,29,24.5,52.2,54.9,52.2H213\r\n\tv77h86v-77h30.2c30.3,0,54.8-23.2,54.8-52.2V309h-59v-37h59v-43h-59v-37h59v-43h-59v-37h59V84.4C384,55.4,359.5,32,329.2,32z"
+ },
+ "children": []
+ }]
+};
+exports.micC = micC;
\ No newline at end of file
diff --git a/dist/ionicons/minus.js b/dist/ionicons/minus.js
new file mode 100644
index 000000000..6eba7d5ce
--- /dev/null
+++ b/dist/ionicons/minus.js
@@ -0,0 +1,20 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minus = void 0;
+var minus = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "64",
+ "y": "224",
+ "width": "384",
+ "height": "64"
+ },
+ "children": []
+ }]
+};
+exports.minus = minus;
\ No newline at end of file
diff --git a/dist/ionicons/minusCircled.js b/dist/ionicons/minusCircled.js
new file mode 100644
index 000000000..6da717378
--- /dev/null
+++ b/dist/ionicons/minusCircled.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minusCircled = void 0;
+var minusCircled = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H128v-32h256V272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H128v-32h256V272z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.minusCircled = minusCircled;
\ No newline at end of file
diff --git a/dist/ionicons/minusRound.js b/dist/ionicons/minusRound.js
new file mode 100644
index 000000000..0582b7760
--- /dev/null
+++ b/dist/ionicons/minusRound.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.minusRound = void 0;
+var minusRound = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\tC448,238.3,434.3,224,417.4,224z"
+ },
+ "children": []
+ }]
+};
+exports.minusRound = minusRound;
\ No newline at end of file
diff --git a/dist/ionicons/modelS.js b/dist/ionicons/modelS.js
new file mode 100644
index 000000000..d0eaa9c53
--- /dev/null
+++ b/dist/ionicons/modelS.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.modelS = void 0;
+var modelS = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M508.8,390.9c-0.6,4.1-1.6,8.1-3.1,11.2c-2.7,5.5-5.3,6-15.5,5.5c-13.2-0.6-32.1,0-52.1,0.8c0,5.5,0.2,8.1,0.2,8.1\r\n\t\tc1.3,15.1,8.1,15.6,10.8,15.6c3,0,39.2,0,43,0s7.3,0,10-1.8c3.5-2.3,5-9,6.3-20.7c0.2-1.7,0.3-3.9,0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8,0.1-1.8,0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C508.9,396.3,508.9,393.3,508.8,390.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M508.8,390.9c-0.6,4.1-1.6,8.1-3.1,11.2c-2.7,5.5-5.3,6-15.5,5.5c-13.2-0.6-32.1,0-52.1,0.8c0,5.5,0.2,8.1,0.2,8.1\r\n\t\tc1.3,15.1,8.1,15.6,10.8,15.6c3,0,39.2,0,43,0s7.3,0,10-1.8c3.5-2.3,5-9,6.3-20.7c0.2-1.7,0.3-3.9,0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8,0.1-1.8,0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C508.9,396.3,508.9,393.3,508.8,390.9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3,390.9c0.6,4.1,1.6,8.1,3.1,11.2c2.7,5.5,5.3,6,15.5,5.5c13.2-0.6,32.1,0,52.1,0.8c0,5.5-0.2,8.1-0.2,8.1\r\n\t\tc-1.3,15.1-8.1,15.6-10.8,15.6c-3,0-39.2,0-43,0s-7,0-10-1.8c-3.6-2.1-5-9-6.3-20.7c-0.2-1.7-0.3-3.9-0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8-0.1-1.8-0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C3,396.3,3,393.3,3,390.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,390.9c0.6,4.1,1.6,8.1,3.1,11.2c2.7,5.5,5.3,6,15.5,5.5c13.2-0.6,32.1,0,52.1,0.8c0,5.5-0.2,8.1-0.2,8.1\r\n\t\tc-1.3,15.1-8.1,15.6-10.8,15.6c-3,0-39.2,0-43,0s-7,0-10-1.8c-3.6-2.1-5-9-6.3-20.7c-0.2-1.7-0.3-3.9-0.4-6.5c0,0,0-0.1,0-0.1\r\n\t\tc0-0.8-0.1-1.8-0.1-2.9c0-0.4,0-0.8,0-1.1c0,0,0,0,0,0C3,396.3,3,393.3,3,390.9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M512,296.6c0-30.7-4-60.7-5.6-64c-1.2-2.4-8.9-8.7-26.4-20.6c-17.7-12.1-17.3-10.3-20.5-18.2c2.9-0.9,5.7-2.6,7.4-2.8\r\n\t\tc3.8-0.4,4,3.2,11.9,3.2s25-2.1,28.5-5.6c3.5-3.5,4.6-4.7,4.6-7.8s-1.8-9.5-5.2-13.3s-17.9-5.7-26.4-6.8s-9.7,0-11.9,1.4\r\n\t\tc-3.5,2.2-3.7,22.3-3.7,22.3l-8.3,0.2c-5.4-13.3-12.9-40.1-24.6-61.2c-12.8-23-26.2-30.2-31.8-32c-5.5-1.7-10.5-2.9-48-6.7\r\n\t\tc-38.3-4-68.8-4.5-96-4.5s-57.7,0.6-96,4.5c-37.5,3.9-42.5,5-48,6.7c-5.5,1.7-19,9-31.8,32c-11.7,21.1-19.2,47.9-24.6,61.2\r\n\t\tl-8.3-0.2c0,0-0.1-20.1-3.7-22.3c-2.2-1.4-3.4-2.6-11.9-1.4s-23,3-26.4,6.8s-5.2,10.2-5.2,13.3s1.1,4.4,4.6,7.8\r\n\t\tc3.5,3.5,20.6,5.6,28.5,5.6s8.1-3.6,11.9-3.2c1.7,0.2,4.6,1.9,7.4,2.8c-3.3,7.9-2.8,6.1-20.5,18.2c-17.5,12-25.3,18.2-26.4,20.6\r\n\t\tC4,235.9,0,265.9,0,296.6s2.2,58.3,2.2,68.1c0,4.1,0,11.3,0.9,18.2c0.6,4.1,1.5,8.1,3.1,11.2c2.7,5.5,5.2,6,15.5,5.5\r\n\t\tc13.2-0.6,32.3,0,52,0.8c13.2,0.5,26.7,1,38.7,1.3c30,0.6,21.2-4.4,34-4.2c12.8,0.2,63.3,2.3,109.5,2.3s96.8-2.1,109.5-2.3\r\n\t\tc12.8-0.2,4,4.8,34,4.2c12-0.2,25.5-0.8,38.7-1.3c19.7-0.7,38.9-1.4,52-0.8c10.3,0.5,12.8,0,15.5-5.5c1.5-3.1,2.5-7.1,3.1-11.2\r\n\t\tc1-6.9,0.9-14.1,0.9-18.2C509.8,355,512,327.3,512,296.6z M86.2,145.2c4.8-11.2,19.2-33.7,26.2-37.7c1.7-1,16.6-5.7,53.9-8.2\r\n\t\tc34.3-2.3,72.2-3.2,89.8-3.2s55.5,0.9,89.8,3.2c37.2,2.5,52.3,7.1,53.9,8.2c9,6.2,21.4,26.5,26.2,37.7c4.8,11.2,11.2,33.2,10,36.2\r\n\t\tc-1.2,3,1.2,4.5-15,3.2c-16.1-1.2-117.2-2.5-164.8-2.5c-47.5,0-148.6,1.3-164.8,2.5c-16.2,1.2-13.8-0.2-15-3.2\r\n\t\tC75,178.4,81.4,156.5,86.2,145.2z M123,270.4c-7.2,1.8-11.5,5.7-20.5,5.6c-9,0-33.3-4.1-38.5-4.3c-5.2-0.2-9.8,3.5-12.5,4.2\r\n\t\ts-8-1.2-16-3.7s-12.7-1.8-15.3-12.7c-2.7-10.8,0-26.3,0-26.3c17.3-0.8,34,0.8,65.3,9.6c31.3,8.8,48.7,25.7,48.7,25.7\r\n\t\tS130.2,268.6,123,270.4z M358.2,349.2c-14.3,1.9-74.2,2.4-102.2,2.4c-28,0-87.9-0.6-102.2-2.4c-14.6-1.9-33.6-19.4-20.5-33.3\r\n\t\tc17.7-18.9,14.4-18.3,54.6-23.5c34.8-4.5,61.2-4.7,68.1-4.7c6.8,0,33.3,0.3,68.1,4.7c40.2,5.2,36.9,4.6,54.6,23.5\r\n\t\tC391.8,329.8,372.8,347.3,358.2,349.2z M491.8,259.6c-2.7,10.8-7.3,10.2-15.3,12.7s-13.3,4.3-16,3.7s-7.3-4.3-12.5-4.2\r\n\t\tc-5.2,0.2-29.5,4.3-38.5,4.3c-9,0-13.3-3.8-20.5-5.6c-7.2-1.8-11.2-1.8-11.2-1.8s17.3-17,48.7-25.7c31.3-8.8,48-10.4,65.3-9.6\r\n\t\tC491.8,233.2,494.5,248.7,491.8,259.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M512,296.6c0-30.7-4-60.7-5.6-64c-1.2-2.4-8.9-8.7-26.4-20.6c-17.7-12.1-17.3-10.3-20.5-18.2c2.9-0.9,5.7-2.6,7.4-2.8\r\n\t\tc3.8-0.4,4,3.2,11.9,3.2s25-2.1,28.5-5.6c3.5-3.5,4.6-4.7,4.6-7.8s-1.8-9.5-5.2-13.3s-17.9-5.7-26.4-6.8s-9.7,0-11.9,1.4\r\n\t\tc-3.5,2.2-3.7,22.3-3.7,22.3l-8.3,0.2c-5.4-13.3-12.9-40.1-24.6-61.2c-12.8-23-26.2-30.2-31.8-32c-5.5-1.7-10.5-2.9-48-6.7\r\n\t\tc-38.3-4-68.8-4.5-96-4.5s-57.7,0.6-96,4.5c-37.5,3.9-42.5,5-48,6.7c-5.5,1.7-19,9-31.8,32c-11.7,21.1-19.2,47.9-24.6,61.2\r\n\t\tl-8.3-0.2c0,0-0.1-20.1-3.7-22.3c-2.2-1.4-3.4-2.6-11.9-1.4s-23,3-26.4,6.8s-5.2,10.2-5.2,13.3s1.1,4.4,4.6,7.8\r\n\t\tc3.5,3.5,20.6,5.6,28.5,5.6s8.1-3.6,11.9-3.2c1.7,0.2,4.6,1.9,7.4,2.8c-3.3,7.9-2.8,6.1-20.5,18.2c-17.5,12-25.3,18.2-26.4,20.6\r\n\t\tC4,235.9,0,265.9,0,296.6s2.2,58.3,2.2,68.1c0,4.1,0,11.3,0.9,18.2c0.6,4.1,1.5,8.1,3.1,11.2c2.7,5.5,5.2,6,15.5,5.5\r\n\t\tc13.2-0.6,32.3,0,52,0.8c13.2,0.5,26.7,1,38.7,1.3c30,0.6,21.2-4.4,34-4.2c12.8,0.2,63.3,2.3,109.5,2.3s96.8-2.1,109.5-2.3\r\n\t\tc12.8-0.2,4,4.8,34,4.2c12-0.2,25.5-0.8,38.7-1.3c19.7-0.7,38.9-1.4,52-0.8c10.3,0.5,12.8,0,15.5-5.5c1.5-3.1,2.5-7.1,3.1-11.2\r\n\t\tc1-6.9,0.9-14.1,0.9-18.2C509.8,355,512,327.3,512,296.6z M86.2,145.2c4.8-11.2,19.2-33.7,26.2-37.7c1.7-1,16.6-5.7,53.9-8.2\r\n\t\tc34.3-2.3,72.2-3.2,89.8-3.2s55.5,0.9,89.8,3.2c37.2,2.5,52.3,7.1,53.9,8.2c9,6.2,21.4,26.5,26.2,37.7c4.8,11.2,11.2,33.2,10,36.2\r\n\t\tc-1.2,3,1.2,4.5-15,3.2c-16.1-1.2-117.2-2.5-164.8-2.5c-47.5,0-148.6,1.3-164.8,2.5c-16.2,1.2-13.8-0.2-15-3.2\r\n\t\tC75,178.4,81.4,156.5,86.2,145.2z M123,270.4c-7.2,1.8-11.5,5.7-20.5,5.6c-9,0-33.3-4.1-38.5-4.3c-5.2-0.2-9.8,3.5-12.5,4.2\r\n\t\ts-8-1.2-16-3.7s-12.7-1.8-15.3-12.7c-2.7-10.8,0-26.3,0-26.3c17.3-0.8,34,0.8,65.3,9.6c31.3,8.8,48.7,25.7,48.7,25.7\r\n\t\tS130.2,268.6,123,270.4z M358.2,349.2c-14.3,1.9-74.2,2.4-102.2,2.4c-28,0-87.9-0.6-102.2-2.4c-14.6-1.9-33.6-19.4-20.5-33.3\r\n\t\tc17.7-18.9,14.4-18.3,54.6-23.5c34.8-4.5,61.2-4.7,68.1-4.7c6.8,0,33.3,0.3,68.1,4.7c40.2,5.2,36.9,4.6,54.6,23.5\r\n\t\tC391.8,329.8,372.8,347.3,358.2,349.2z M491.8,259.6c-2.7,10.8-7.3,10.2-15.3,12.7s-13.3,4.3-16,3.7s-7.3-4.3-12.5-4.2\r\n\t\tc-5.2,0.2-29.5,4.3-38.5,4.3c-9,0-13.3-3.8-20.5-5.6c-7.2-1.8-11.2-1.8-11.2-1.8s17.3-17,48.7-25.7c31.3-8.8,48-10.4,65.3-9.6\r\n\t\tC491.8,233.2,494.5,248.7,491.8,259.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.modelS = modelS;
\ No newline at end of file
diff --git a/dist/ionicons/monitor.js b/dist/ionicons/monitor.js
new file mode 100644
index 000000000..0d1b8d531
--- /dev/null
+++ b/dist/ionicons/monitor.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.monitor = void 0;
+var monitor = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M468.7,64H43.3c-6,0-11.3,5-11.3,11.1v265.7c0,6.2,5.2,11.1,11.3,11.1h425.4c6,0,11.3-5,11.3-11.1V75.1\r\n\t\tC480,69,474.8,64,468.7,64z M448,320H64V96h384V320z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M468.7,64H43.3c-6,0-11.3,5-11.3,11.1v265.7c0,6.2,5.2,11.1,11.3,11.1h425.4c6,0,11.3-5,11.3-11.1V75.1\r\n\t\tC480,69,474.8,64,468.7,64z M448,320H64V96h384V320z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M302.5,448c28-0.5,41.5-3.9,29-12.5c-12.5-8.7-28.5-15.3-29-22.5c-0.3-3.7-1.7-45-1.7-45H256h-44.8c0,0-1.5,41.3-1.7,45\r\n\t\tc-0.5,7.1-16.5,13.8-29,22.5c-12.5,8.7,1,12,29,12.5H302.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M302.5,448c28-0.5,41.5-3.9,29-12.5c-12.5-8.7-28.5-15.3-29-22.5c-0.3-3.7-1.7-45-1.7-45H256h-44.8c0,0-1.5,41.3-1.7,45\r\n\t\tc-0.5,7.1-16.5,13.8-29,22.5c-12.5,8.7,1,12,29,12.5H302.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.monitor = monitor;
\ No newline at end of file
diff --git a/dist/ionicons/more.js b/dist/ionicons/more.js
new file mode 100644
index 000000000..e4c5b588a
--- /dev/null
+++ b/dist/ionicons/more.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.more = void 0;
+var more = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M113.7,304C86.2,304,64,282.6,64,256c0-26.5,22.2-48,49.7-48c27.6,0,49.8,21.5,49.8,48C163.5,282.6,141.3,304,113.7,304z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M113.7,304C86.2,304,64,282.6,64,256c0-26.5,22.2-48,49.7-48c27.6,0,49.8,21.5,49.8,48C163.5,282.6,141.3,304,113.7,304z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.3-48,49.8-48c27.5,0,49.7,21.5,49.7,48C305.7,282.6,283.5,304,256,304z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.3-48,49.8-48c27.5,0,49.7,21.5,49.7,48C305.7,282.6,283.5,304,256,304z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M398.2,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.2-48,49.8-48c27.5,0,49.8,21.5,49.8,48C448,282.6,425.8,304,398.2,304z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M398.2,304c-27.5,0-49.8-21.4-49.8-48c0-26.5,22.2-48,49.8-48c27.5,0,49.8,21.5,49.8,48C448,282.6,425.8,304,398.2,304z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.more = more;
\ No newline at end of file
diff --git a/dist/ionicons/mouse.js b/dist/ionicons/mouse.js
new file mode 100644
index 000000000..4b7b816bb
--- /dev/null
+++ b/dist/ionicons/mouse.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.mouse = void 0;
+var mouse = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-0.46,0-0.917,0.011-1.376,0.015l5.747,0.057C258.92,32.029,257.464,32,256,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-0.46,0-0.917,0.011-1.376,0.015l5.747,0.057C258.92,32.029,257.464,32,256,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M378.553,193.211c-0.195,0.064-0.414,0.16-0.619,0.269c-34.234,13.289-76.337,22.52-121.886,22.475\r\n\t\tc-45.52-0.076-87.626-9.398-121.81-22.772c-0.19-0.104-0.429-0.192-0.647-0.265c-1.531-0.554-3.146-0.897-4.841-0.917\r\n\t\tc-0.254-0.001-0.5-0.013-0.75,0v176.012C128,429.892,185.308,480,256,480c21.992,0,42.687-4.803,60.766-13.355\r\n\t\tc0.095-0.045,0.191-0.087,0.286-0.133c0.026-0.013,0.054-0.026,0.08-0.039c4.87-2.344,9.581-4.963,14.122-7.828\r\n\t\tC363.219,438.275,384,405.271,384,368.012V192c-0.191-0.008-0.496,0-0.689,0C381.584,192.014,380.092,192.651,378.553,193.211z\r\n\t\t M317.132,466.424c-0.026,0.013-0.054,0.026-0.08,0.039c-0.095,0.045-0.191,0.088-0.286,0.133c0.095-0.045,0.191-0.088,0.286-0.133\r\n\t\tC317.078,466.45,317.105,466.437,317.132,466.424c4.87-2.342,9.581-4.961,14.122-7.825\r\n\t\tC326.758,461.463,322.044,464.083,317.132,466.424z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M378.553,193.211c-0.195,0.064-0.414,0.16-0.619,0.269c-34.234,13.289-76.337,22.52-121.886,22.475\r\n\t\tc-45.52-0.076-87.626-9.398-121.81-22.772c-0.19-0.104-0.429-0.192-0.647-0.265c-1.531-0.554-3.146-0.897-4.841-0.917\r\n\t\tc-0.254-0.001-0.5-0.013-0.75,0v176.012C128,429.892,185.308,480,256,480c21.992,0,42.687-4.803,60.766-13.355\r\n\t\tc0.095-0.045,0.191-0.087,0.286-0.133c0.026-0.013,0.054-0.026,0.08-0.039c4.87-2.344,9.581-4.963,14.122-7.828\r\n\t\tC363.219,438.275,384,405.271,384,368.012V192c-0.191-0.008-0.496,0-0.689,0C381.584,192.014,380.092,192.651,378.553,193.211z\r\n\t\t M317.132,466.424c-0.026,0.013-0.054,0.026-0.08,0.039c-0.095,0.045-0.191,0.088-0.286,0.133c0.095-0.045,0.191-0.088,0.286-0.133\r\n\t\tC317.078,466.45,317.105,466.437,317.132,466.424c4.87-2.342,9.581-4.961,14.122-7.825\r\n\t\tC326.758,461.463,322.044,464.083,317.132,466.424z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M331.254,458.599c-4.541,2.864-9.252,5.483-14.122,7.825C322.044,464.083,326.758,461.463,331.254,458.599z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M331.254,458.599c-4.541,2.864-9.252,5.483-14.122,7.825C322.044,464.083,326.758,461.463,331.254,458.599z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M260.371,32.072l-5.747-0.057C184.566,32.662,128,82.547,128,144v22.708c2.158,2.024,4.593,3.755,7.251,5.115\r\n\t\tc0.673,0.337,1.386,0.659,2.059,0.996c0.032,0.027,0.077,0.01,0.109,0.036c22.757,10.35,51.429,15.801,83.415,19.006\r\n\t\tc0.694,0.078,1.397,0.107,2.148,0.12C234.24,191.997,239.996,192,240,181.411V96c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\tv86.328c-0.088,9.672,5.926,9.72,17.2,9.749c0.717-0.016,1.415-0.045,2.081-0.105c0.062-0.003,0.141,0.005,0.244-0.02\r\n\t\tc31.682-3.119,60.143-8.405,82.808-18.59c1.162-0.545,2.291-1.056,3.407-1.581c2.271-1.232,4.365-2.743,6.26-4.466V144\r\n\t\tC384,83.425,329.039,34.09,260.371,32.072z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M260.371,32.072l-5.747-0.057C184.566,32.662,128,82.547,128,144v22.708c2.158,2.024,4.593,3.755,7.251,5.115\r\n\t\tc0.673,0.337,1.386,0.659,2.059,0.996c0.032,0.027,0.077,0.01,0.109,0.036c22.757,10.35,51.429,15.801,83.415,19.006\r\n\t\tc0.694,0.078,1.397,0.107,2.148,0.12C234.24,191.997,239.996,192,240,181.411V96c0-8.836,7.164-16,16-16c8.836,0,16,7.164,16,16\r\n\t\tv86.328c-0.088,9.672,5.926,9.72,17.2,9.749c0.717-0.016,1.415-0.045,2.081-0.105c0.062-0.003,0.141,0.005,0.244-0.02\r\n\t\tc31.682-3.119,60.143-8.405,82.808-18.59c1.162-0.545,2.291-1.056,3.407-1.581c2.271-1.232,4.365-2.743,6.26-4.466V144\r\n\t\tC384,83.425,329.039,34.09,260.371,32.072z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.mouse = mouse;
\ No newline at end of file
diff --git a/dist/ionicons/musicNote.js b/dist/ionicons/musicNote.js
new file mode 100644
index 000000000..ec582f4c1
--- /dev/null
+++ b/dist/ionicons/musicNote.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.musicNote = void 0;
+var musicNote = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M426,32.1c-2.2,0-5.1,0.6-5.1,0.6L203.3,65.9C189.5,69.6,177,83,176,97.5V384h-61v-0.1c-28,0-51.1,20-51.1,48\r\n\ts23.1,48,51.3,48h36.2c15.3,0,28.9-6.9,38.3-17.5c0.1-0.1,0.3-0.1,0.4-0.2c0.6-0.6,1-1.5,1.5-2.1c1.3-1.6,2.4-3.2,3.4-5\r\n\tC204.6,441,208,422.3,208,414V182l208-38c0,0,0,136,0,192h-60.5c-28.3,0-51.2,19.9-51.2,48s22.9,48,51.2,48h37.2\r\n\tc18.2,0,34.1-6,43.2-21c0,0,0.1,0,0.2,0c9-12,12-30.2,12-54.9c0-24.8,0-302.8,0-302.8C448,41.6,438.1,32.1,426,32.1z"
+ },
+ "children": []
+ }]
+};
+exports.musicNote = musicNote;
\ No newline at end of file
diff --git a/dist/ionicons/navicon.js b/dist/ionicons/navicon.js
new file mode 100644
index 000000000..76b90c626
--- /dev/null
+++ b/dist/ionicons/navicon.js
@@ -0,0 +1,69 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.navicon = void 0;
+var navicon = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "241",
+ "width": "320",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "241",
+ "width": "320",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "145",
+ "width": "320",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "145",
+ "width": "320",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "337",
+ "width": "320",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "96",
+ "y": "337",
+ "width": "320",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.navicon = navicon;
\ No newline at end of file
diff --git a/dist/ionicons/naviconRound.js b/dist/ionicons/naviconRound.js
new file mode 100644
index 000000000..0b1c3f1e8
--- /dev/null
+++ b/dist/ionicons/naviconRound.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.naviconRound = void 0;
+var naviconRound = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,238.3,434.3,224,417.4,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.4,224H94.6C77.7,224,64,238.3,64,256c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,238.3,434.3,224,417.4,224z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M417.4,96H94.6C77.7,96,64,110.3,64,128c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,110.3,434.3,96,417.4,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.4,96H94.6C77.7,96,64,110.3,64,128c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,110.3,434.3,96,417.4,96z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M417.4,352H94.6C77.7,352,64,366.3,64,384c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,366.3,434.3,352,417.4,352z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.4,352H94.6C77.7,352,64,366.3,64,384c0,17.7,13.7,32,30.6,32h322.8c16.9,0,30.6-14.3,30.6-32\r\n\t\tC448,366.3,434.3,352,417.4,352z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.naviconRound = naviconRound;
\ No newline at end of file
diff --git a/dist/ionicons/navigate.js b/dist/ionicons/navigate.js
new file mode 100644
index 000000000..b95ff557b
--- /dev/null
+++ b/dist/ionicons/navigate.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.navigate = void 0;
+var navigate = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "480,32 32,224 288,224 288,480 "
+ },
+ "children": []
+ }]
+};
+exports.navigate = navigate;
\ No newline at end of file
diff --git a/dist/ionicons/network.js b/dist/ionicons/network.js
new file mode 100644
index 000000000..298485625
--- /dev/null
+++ b/dist/ionicons/network.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.network = void 0;
+var network = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,96c0-35.29-28.71-64-64-64s-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v52.832l-96,48l-96-48v-52.832\r\n\tc19.11-11.084,32-31.754,32-55.391c0-35.29-28.71-64-64-64S64,60.71,64,96c0,23.637,12.89,44.307,32,55.391v92.387l128,64v52.832\r\n\tc-19.11,11.084-32,31.754-32,55.391c0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391v-52.832l128-64v-92.387\r\n\tC435.11,140.307,448,119.637,448,96z M128,64c17.673,0,32,14.327,32,32s-14.327,32-32,32s-32-14.327-32-32S110.327,64,128,64z\r\n\t M256,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S273.673,448,256,448z M384,128c-17.673,0-32-14.327-32-32\r\n\ts14.327-32,32-32s32,14.327,32,32S401.673,128,384,128z"
+ },
+ "children": []
+ }]
+};
+exports.network = network;
\ No newline at end of file
diff --git a/dist/ionicons/noSmoking.js b/dist/ionicons/noSmoking.js
new file mode 100644
index 000000000..2db931ffa
--- /dev/null
+++ b/dist/ionicons/noSmoking.js
@@ -0,0 +1,131 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.noSmoking = void 0;
+var noSmoking = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "360",
+ "y": "256",
+ "class": "st0",
+ "width": "16",
+ "height": "48"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "360",
+ "y": "256",
+ "class": "st0",
+ "width": "16",
+ "height": "48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "112,304 249.6,304 201.6,256 112,256 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "112,304 249.6,304 201.6,256 112,256 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M364.5,60.1c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8c-1.8-0.6-3.6-1.2-5.4-1.8\r\n\t\tC302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.8c0.4,0.2,0.7,0.5,1.1,0.7\r\n\t\tc10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9c123.7,0,224-100.3,224-224\r\n\t\tC480,171.7,433.4,98.3,364.5,60.1z M256,426.4c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l237.2,237.2\r\n\t\tC327.4,414,293.2,426.4,256,426.4z M393.8,355.4L156.6,118.2c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4\r\n\t\tc9.8,1.6,19.3,4.1,28.5,7.3c1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8\r\n\t\tC426.4,293.3,414,327.4,393.8,355.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M364.5,60.1c-0.4-0.2-0.7-0.4-1-0.6c-10.9-6-22.5-10.7-34.4-14.8c-1.8-0.6-3.6-1.2-5.4-1.8\r\n\t\tC302.3,36.1,279.6,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.8c0.4,0.2,0.7,0.5,1.1,0.7\r\n\t\tc10.9,6,22.5,10.7,34.4,14.8c1.8,0.6,3.6,1.2,5.4,1.8c21.4,6.8,44,10.9,67.7,10.9c123.7,0,224-100.3,224-224\r\n\t\tC480,171.7,433.4,98.3,364.5,60.1z M256,426.4c-9.3,0-18.4-0.9-27.2-2.4c-9.8-1.6-19.3-4.1-28.5-7.3c-1.9-0.6-3.8-1.2-5.6-1.9\r\n\t\tc-6.5-2.5-12.9-5.3-19-8.6c-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l237.2,237.2\r\n\t\tC327.4,414,293.2,426.4,256,426.4z M393.8,355.4L156.6,118.2c28-20.2,62.1-32.6,99.4-32.6c9.3,0,18.3,0.9,27.2,2.4\r\n\t\tc9.8,1.6,19.3,4.1,28.5,7.3c1.8,0.6,3.7,1.2,5.6,1.9c6.2,2.4,12.2,5,18,8.1c54.2,28.5,91.2,85.3,91.2,150.8\r\n\t\tC426.4,293.3,414,327.4,393.8,355.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "352,298 352,256 310,256 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "class": "st0",
+ "points": "352,298 352,256 310,256 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "384",
+ "y": "256",
+ "class": "st0",
+ "width": "16",
+ "height": "48"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "384",
+ "y": "256",
+ "class": "st0",
+ "width": "16",
+ "height": "48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M360.1,212.7c-8.8-4.1-22-5.7-45.6-5.7c-1.2,0-2.4,0-3.6,0c-12.7,0.1-15.9-0.1-20-6.1\r\n\t\tc-2.8-4.2-1-14.8,3.7-21.9c1.6-2.4,1.8-5.6,0.4-8.2c-1.4-2.6-4.1-4.2-7-4.3c-0.1,0-9.4-0.1-18.3-3.9c-10.6-4.5-15.6-12.1-15.6-23.1\r\n\t\tc0-25.8,21.8-27.7,22.8-27.7v-16c-12,0-38.8,11-38.8,43.7c0,17.5,9,31,25.7,38c4.2,1.7,8.4,2.9,12,3.6c-3.3,9.8-3.6,20.9,1.7,28.7\r\n\t\tc9,13.3,20.3,13.2,33.3,13.1c1.1,0,2.3,0,3.5,0c26.3,0,34.6,2.3,38.9,4.3c5.7,2.6,6.8,11.5,6.6,19.7c0,0.7,0,0.4,0,1h16\r\n\t\tc0-0.4,0-0.4,0-1C375.8,239.8,376.1,220.1,360.1,212.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M360.1,212.7c-8.8-4.1-22-5.7-45.6-5.7c-1.2,0-2.4,0-3.6,0c-12.7,0.1-15.9-0.1-20-6.1\r\n\t\tc-2.8-4.2-1-14.8,3.7-21.9c1.6-2.4,1.8-5.6,0.4-8.2c-1.4-2.6-4.1-4.2-7-4.3c-0.1,0-9.4-0.1-18.3-3.9c-10.6-4.5-15.6-12.1-15.6-23.1\r\n\t\tc0-25.8,21.8-27.7,22.8-27.7v-16c-12,0-38.8,11-38.8,43.7c0,17.5,9,31,25.7,38c4.2,1.7,8.4,2.9,12,3.6c-3.3,9.8-3.6,20.9,1.7,28.7\r\n\t\tc9,13.3,20.3,13.2,33.3,13.1c1.1,0,2.3,0,3.5,0c26.3,0,34.6,2.3,38.9,4.3c5.7,2.6,6.8,11.5,6.6,19.7c0,0.7,0,0.4,0,1h16\r\n\t\tc0-0.4,0-0.4,0-1C375.8,239.8,376.1,220.1,360.1,212.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M400,248c0-25.7-3-43.2-9.1-53.6C382.3,180,368.5,172,352,172h-17.4c2.9-8.3,5.4-19.8,3.5-30.9\r\n\t\tc-3.2-18.8-19.1-30-43.1-30v16c21,0,26.1,9.1,27.4,16.7c2.5,14.5-6.8,32.1-6.9,32.3c-1.4,2.5-1.3,5.5,0.1,7.9\r\n\t\tc1.4,2.4,4.1,3.9,6.9,3.9H352c10.9,0,19.4,4.9,25.1,14.6c3.1,5.3,6.9,17.5,6.9,45.4H400z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M400,248c0-25.7-3-43.2-9.1-53.6C382.3,180,368.5,172,352,172h-17.4c2.9-8.3,5.4-19.8,3.5-30.9\r\n\t\tc-3.2-18.8-19.1-30-43.1-30v16c21,0,26.1,9.1,27.4,16.7c2.5,14.5-6.8,32.1-6.9,32.3c-1.4,2.5-1.3,5.5,0.1,7.9\r\n\t\tc1.4,2.4,4.1,3.9,6.9,3.9H352c10.9,0,19.4,4.9,25.1,14.6c3.1,5.3,6.9,17.5,6.9,45.4H400z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.noSmoking = noSmoking;
\ No newline at end of file
diff --git a/dist/ionicons/nuclear.js b/dist/ionicons/nuclear.js
new file mode 100644
index 000000000..66834c3e5
--- /dev/null
+++ b/dist/ionicons/nuclear.js
@@ -0,0 +1,99 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.nuclear = void 0;
+var nuclear = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "272",
+ "r": "48"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "272",
+ "r": "48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "272",
+ "r": "48"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "272",
+ "r": "48"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,272H320c0,23.9-13.1,44.7-32.6,55.7L365.6,464C433.1,425.4,480,355.3,480,272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,272H320c0,23.9-13.1,44.7-32.6,55.7L365.6,464C433.1,425.4,480,355.3,480,272z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,208c11.7,0,22.7,3.2,32.1,8.7l80.6-138.3C335.6,59.1,297.1,48,256,48c-41.2,0-79.9,11.2-113.1,30.6l79.8,138.8\r\n\t\t\tC232.4,211.4,243.8,208,256,208z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,208c11.7,0,22.7,3.2,32.1,8.7l80.6-138.3C335.6,59.1,297.1,48,256,48c-41.2,0-79.9,11.2-113.1,30.6l79.8,138.8\r\n\t\t\tC232.4,211.4,243.8,208,256,208z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M192,272H32c0,83.3,46.9,153.4,114.4,192l78.2-136.3C205.1,316.7,192,295.9,192,272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192,272H32c0,83.3,46.9,153.4,114.4,192l78.2-136.3C205.1,316.7,192,295.9,192,272z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.nuclear = nuclear;
\ No newline at end of file
diff --git a/dist/ionicons/outlet.js b/dist/ionicons/outlet.js
new file mode 100644
index 000000000..e331ac70b
--- /dev/null
+++ b/dist/ionicons/outlet.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.outlet = void 0;
+var outlet = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M369.541,32H142.359C81.521,32,32,82.574,32,144.604v222.79C32,429.426,81.521,480,142.359,480h227.182\r\n\t\tC430.479,480,480,429.426,480,367.395v-222.79C480,82.574,430.479,32,369.541,32z M175,250.954v0.67\r\n\t\tc0,10.882-9.09,20.376-19.875,20.376h-23.27C121.073,272,112,262.506,112,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.193-20.161,19.855-20.161h23.27c10.886,0,19.875,9.847,19.875,20.831V250.954z M297,395.74v2.68\r\n\t\tc0,11.439-8.872,17.58-20.1,17.58H256h-20.898C223.872,416,215,407.859,215,396.42v-0.68v-28.637\r\n\t\tc0-23.33,18.118-42.287,40.999-42.287c22.883,0,41.001,18.957,41.001,42.287V395.74z M400,250.954v0.67\r\n\t\tc0,10.882-9.071,20.376-19.855,20.376h-24.27C345.093,272,336,262.506,336,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.215-20.161,19.875-20.161h24.27c10.784,0,19.855,9.847,19.855,20.831V250.954z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M369.541,32H142.359C81.521,32,32,82.574,32,144.604v222.79C32,429.426,81.521,480,142.359,480h227.182\r\n\t\tC430.479,480,480,429.426,480,367.395v-222.79C480,82.574,430.479,32,369.541,32z M175,250.954v0.67\r\n\t\tc0,10.882-9.09,20.376-19.875,20.376h-23.27C121.073,272,112,262.506,112,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.193-20.161,19.855-20.161h23.27c10.886,0,19.875,9.847,19.875,20.831V250.954z M297,395.74v2.68\r\n\t\tc0,11.439-8.872,17.58-20.1,17.58H256h-20.898C223.872,416,215,407.859,215,396.42v-0.68v-28.637\r\n\t\tc0-23.33,18.118-42.287,40.999-42.287c22.883,0,41.001,18.957,41.001,42.287V395.74z M400,250.954v0.67\r\n\t\tc0,10.882-9.071,20.376-19.855,20.376h-24.27C345.093,272,336,262.506,336,251.624v-0.67V149.512v-1.351\r\n\t\tc1-10.768,9.215-20.161,19.875-20.161h24.27c10.784,0,19.855,9.847,19.855,20.831V250.954z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.outlet = outlet;
\ No newline at end of file
diff --git a/dist/ionicons/paintbrush.js b/dist/ionicons/paintbrush.js
new file mode 100644
index 000000000..5655a004e
--- /dev/null
+++ b/dist/ionicons/paintbrush.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paintbrush = void 0;
+var paintbrush = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M149.515,283.349c-51.921,0-83.939,45.661-83.939,95.085c0,22.691-10.071,39.153-33.575,48.104\r\n\t\tc17.907,34.678,87.777,41.157,117.515,35.797c35.642-6.426,80.077-24.873,90.654-76.969\r\n\t\tC252.48,324.739,201.434,283.349,149.515,283.349z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M149.515,283.349c-51.921,0-83.939,45.661-83.939,95.085c0,22.691-10.071,39.153-33.575,48.104\r\n\t\tc17.907,34.678,87.777,41.157,117.515,35.797c35.642-6.426,80.077-24.873,90.654-76.969\r\n\t\tC252.48,324.739,201.434,283.349,149.515,283.349z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M467.638,60.356c-12.955-12.948-29.964-17.292-44.92-5.35L247.598,209.1c-8.648-2.371-16.525-1.869-22.909,2.346\r\n\t\tL165.896,260.4c-1.611,1.611-1.545,4.304,0.066,5.914c0.499,0.501,1.064,0.79,1.697,0.98c0.642,0.034,1.264,0.059,1.899,0.103\r\n\t\tc0.019-0.002,0.036-0.01,0.054-0.014c47.938,3.432,91.034,36.754,89.3,89.506c-0.016,0.505-0.029,1.007-0.054,1.516\r\n\t\tc0.123,0.848,0.5,1.664,1.149,2.315c1.595,1.593,4.168,1.605,5.781,0.044c0.018-0.018,0.037-0.027,0.055-0.044\r\n\t\tc0.063-0.063,0.106-0.137,0.164-0.2l50.457-57.342c4.216-6.374,4.72-14.24,2.355-22.875l154.169-175.047\r\n\t\tC484.939,90.308,480.592,73.308,467.638,60.356z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M467.638,60.356c-12.955-12.948-29.964-17.292-44.92-5.35L247.598,209.1c-8.648-2.371-16.525-1.869-22.909,2.346\r\n\t\tL165.896,260.4c-1.611,1.611-1.545,4.304,0.066,5.914c0.499,0.501,1.064,0.79,1.697,0.98c0.642,0.034,1.264,0.059,1.899,0.103\r\n\t\tc0.019-0.002,0.036-0.01,0.054-0.014c47.938,3.432,91.034,36.754,89.3,89.506c-0.016,0.505-0.029,1.007-0.054,1.516\r\n\t\tc0.123,0.848,0.5,1.664,1.149,2.315c1.595,1.593,4.168,1.605,5.781,0.044c0.018-0.018,0.037-0.027,0.055-0.044\r\n\t\tc0.063-0.063,0.106-0.137,0.164-0.2l50.457-57.342c4.216-6.374,4.72-14.24,2.355-22.875l154.169-175.047\r\n\t\tC484.939,90.308,480.592,73.308,467.638,60.356z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "165.887,260.409 165.896,260.4 165.888,260.407 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "165.887,260.409 165.896,260.4 165.888,260.407 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.paintbrush = paintbrush;
\ No newline at end of file
diff --git a/dist/ionicons/paintbucket.js b/dist/ionicons/paintbucket.js
new file mode 100644
index 000000000..26adbe631
--- /dev/null
+++ b/dist/ionicons/paintbucket.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paintbucket = void 0;
+var paintbucket = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,64l39.667,72.102L16,288l197.604,192l163.328-160l58.33-12.307L160,32L128,64z M325.131,288H104.857L215,177.863\r\n\t\tL325.131,288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,64l39.667,72.102L16,288l197.604,192l163.328-160l58.33-12.307L160,32L128,64z M325.131,288H104.857L215,177.863\r\n\t\tL325.131,288z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M435.262,307.693c0,0-60.734,66.179-60.732,99.207c0,33.028,27.192,59.803,60.731,59.801\r\n\t\tc33.548,0.002,60.74-26.772,60.739-59.801C496.001,373.872,435.262,307.693,435.262,307.693z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M435.262,307.693c0,0-60.734,66.179-60.732,99.207c0,33.028,27.192,59.803,60.731,59.801\r\n\t\tc33.548,0.002,60.74-26.772,60.739-59.801C496.001,373.872,435.262,307.693,435.262,307.693z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.paintbucket = paintbucket;
\ No newline at end of file
diff --git a/dist/ionicons/paperAirplane.js b/dist/ionicons/paperAirplane.js
new file mode 100644
index 000000000..befd74c11
--- /dev/null
+++ b/dist/ionicons/paperAirplane.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paperAirplane = void 0;
+var paperAirplane = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M32,272l128,48l16,160l80-112l112,112L480,32L32,272z M350.7,417.4L256,320l128-176L192,297.8l-82.6-31\r\n\tl322-172.5L350.7,417.4z"
+ },
+ "children": []
+ }]
+};
+exports.paperAirplane = paperAirplane;
\ No newline at end of file
diff --git a/dist/ionicons/paperclip.js b/dist/ionicons/paperclip.js
new file mode 100644
index 000000000..af94aed81
--- /dev/null
+++ b/dist/ionicons/paperclip.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.paperclip = void 0;
+var paperclip = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M324.6,154.9c-6.3-0.1-11.4,5.1-11.4,11.6L313,361.3c-0.1,43.8-29.7,63.4-57.2,63.2c-27.5-0.3-57.1-20.4-57-64.1\r\n\tc0-33.5,0.2-167.7,0.3-234.8c0-15.4,6-27.4,16.8-33.7c10.6-6.2,24.4-6.1,35,0.3c10.8,6.5,16.7,18.6,16.7,34l-0.3,224.5\r\n\tc0,7.3-1.7,13.3-4.7,17.1c-1.9,2.4-4.4,3.8-6.9,3.8c-5.6-0.1-11.4-7.3-11.3-20.8c0,0,0.2-166.3,0.3-172.7c0-6.5-5.1-11.8-11.4-11.8\r\n\tc-6.3,0-11.4,5.2-11.4,11.7l-0.3,172.7c0,29,17.2,44.3,34.2,44.5c9.4,0.1,18.3-4.4,24.6-12.4c6.3-8,9.7-19,9.7-31.8l0.3-224.5\r\n\tc0-23.8-10.2-43.6-28.1-54.3c-17.5-10.6-40.3-10.8-57.9-0.5c-17.9,10.5-28.2,30.1-28.3,53.9c-0.1,67-0.2,201.2-0.3,234.8\r\n\tc-0.1,57.2,40.1,87.4,79.8,87.8c20.5,0.2,41.1-7.7,56.3-23.1c14.2-14.5,23.7-35.7,23.7-63.4l0.1-194.9\r\n\tC336,160.2,330.9,154.9,324.6,154.9z"
+ },
+ "children": []
+ }]
+};
+exports.paperclip = paperclip;
\ No newline at end of file
diff --git a/dist/ionicons/pause.js b/dist/ionicons/pause.js
new file mode 100644
index 000000000..2ca2ffa41
--- /dev/null
+++ b/dist/ionicons/pause.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pause = void 0;
+var pause = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M224,435.8V76.1c0-6.7-5.4-12.1-12.2-12.1h-71.6c-6.8,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6\r\n\t\tC218.6,448,224,442.6,224,435.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M224,435.8V76.1c0-6.7-5.4-12.1-12.2-12.1h-71.6c-6.8,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6\r\n\t\tC218.6,448,224,442.6,224,435.8z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M371.8,64h-71.6c-6.7,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6c6.7,0,12.2-5.4,12.2-12.2V76.1\r\n\t\tC384,69.4,378.6,64,371.8,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M371.8,64h-71.6c-6.7,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6c6.7,0,12.2-5.4,12.2-12.2V76.1\r\n\t\tC384,69.4,378.6,64,371.8,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.pause = pause;
\ No newline at end of file
diff --git a/dist/ionicons/person.js b/dist/ionicons/person.js
new file mode 100644
index 000000000..176322611
--- /dev/null
+++ b/dist/ionicons/person.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.person = void 0;
+var person = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C345.4,119.3,325.9,64,256,64\r\n\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C64,421.6,64,448,64,448h192H448z"
+ },
+ "children": []
+ }]
+};
+exports.person = person;
\ No newline at end of file
diff --git a/dist/ionicons/personAdd.js b/dist/ionicons/personAdd.js
new file mode 100644
index 000000000..23dac797d
--- /dev/null
+++ b/dist/ionicons/personAdd.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.personAdd = void 0;
+var personAdd = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "429,328 429,277 480,277 480,235 429,235 429,184 387,184 387,235 336,235 336,277 387,277 387,328 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "429,328 429,277 480,277 480,235 429,235 429,184 387,184 387,235 336,235 336,277 387,277 387,328 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M416,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\t\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C313.4,119.3,293.9,64,224,64\r\n\t\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\t\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C32,421.6,32,448,32,448h192H416z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,448c0,0,0-26.4-2.2-40.2c-1.8-10.9-16.9-25.3-81.1-48.9c-63.2-23.2-59.3-11.9-59.3-54.6c0-27.7,14.1-11.6,23.1-64.2\r\n\t\tc3.5-20.7,6.3-6.9,13.9-40.1c4-17.4-2.7-18.7-1.9-27c0.8-8.3,1.6-15.7,3.1-32.7C313.4,119.3,293.9,64,224,64\r\n\t\tc-69.9,0-89.4,55.3-87.5,76.4c1.5,16.9,2.3,24.4,3.1,32.7c0.8,8.3-5.9,9.6-1.9,27c7.6,33.1,10.4,19.3,13.9,40.1\r\n\t\tc9,52.6,23.1,36.5,23.1,64.2c0,42.8,3.9,31.5-59.3,54.6c-64.2,23.5-79.4,38-81.1,48.9C32,421.6,32,448,32,448h192H416z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.personAdd = personAdd;
\ No newline at end of file
diff --git a/dist/ionicons/personStalker.js b/dist/ionicons/personStalker.js
new file mode 100644
index 000000000..0e97b4c6c
--- /dev/null
+++ b/dist/ionicons/personStalker.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.personStalker = void 0;
+var personStalker = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M425.3,324.8c-41.4-15.7-38.9-9.4-38.9-38.5c0-18.8,9.3-11.9,15.2-47.7c2.3-14.1,4.2-4.7,9.1-27.3\r\n\t\tc2.6-11.8-1.8-12.7-1.2-18.3c0.5-5.6,1-10.7,2-22.2c1.2-14.4-11.6-52-57.4-52c-45.8,0-58.6,37.6-57.4,52c0.9,11.6,1.5,16.6,2,22.2\r\n\t\tc0.5,5.6-3.8,6.5-1.2,18.3c4.9,22.6,6.8,13.1,9.1,27.3c5.9,35.8,15.1,29,15.1,47.7c0,13.4,3.1,19-14.9,27.5\r\n\t\tc5.4,1.9,11.7,4.2,19.3,7.1c54.4,20.7,53.1,40.8,54.5,50.3c1,6.5,1.5,58.3,1.7,76.8H480c0,0,0-80.5-1.5-89.9\r\n\t\tC477.4,350.7,467.5,340.9,425.3,324.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M425.3,324.8c-41.4-15.7-38.9-9.4-38.9-38.5c0-18.8,9.3-11.9,15.2-47.7c2.3-14.1,4.2-4.7,9.1-27.3\r\n\t\tc2.6-11.8-1.8-12.7-1.2-18.3c0.5-5.6,1-10.7,2-22.2c1.2-14.4-11.6-52-57.4-52c-45.8,0-58.6,37.6-57.4,52c0.9,11.6,1.5,16.6,2,22.2\r\n\t\tc0.5,5.6-3.8,6.5-1.2,18.3c4.9,22.6,6.8,13.1,9.1,27.3c5.9,35.8,15.1,29,15.1,47.7c0,13.4,3.1,19-14.9,27.5\r\n\t\tc5.4,1.9,11.7,4.2,19.3,7.1c54.4,20.7,53.1,40.8,54.5,50.3c1,6.5,1.5,58.3,1.7,76.8H480c0,0,0-80.5-1.5-89.9\r\n\t\tC477.4,350.7,467.5,340.9,425.3,324.8z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M357,448c0,0,0-14.1-0.2-30.4c-0.2-18.6-0.7-40-1.7-46.4c-1.5-9.5-14.3-22.2-68.6-42.9c-7.5-2.8-13.8-5.1-19.3-7.1\r\n\t\tc-33.3-11.8-30.9-15.7-30.9-48c0-24.3,12-8.5,19.6-54.6c3-18.2,5.4-6.1,11.7-35.2c3.4-15.2-2.3-16.4-1.6-23.7\r\n\t\tc0.7-7.3,1.4-13.8,2.6-28.7c1.6-18.5-14.9-67.1-74.1-67.1c-59.2,0-75.6,48.5-74.1,67.1c1.2,14.9,1.9,21.4,2.7,28.7\r\n\t\tc0.7,7.3-5,8.4-1.6,23.7c6.4,29.1,8.8,17,11.8,35.2c7.6,46.1,19.5,30.3,19.5,54.6c0,37.6,3.3,34.8-50.2,55.1\r\n\t\tc-54.3,20.7-67.1,33.4-68.6,42.9C32,383.3,32,448,32,448h162.5H357z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M357,448c0,0,0-14.1-0.2-30.4c-0.2-18.6-0.7-40-1.7-46.4c-1.5-9.5-14.3-22.2-68.6-42.9c-7.5-2.8-13.8-5.1-19.3-7.1\r\n\t\tc-33.3-11.8-30.9-15.7-30.9-48c0-24.3,12-8.5,19.6-54.6c3-18.2,5.4-6.1,11.7-35.2c3.4-15.2-2.3-16.4-1.6-23.7\r\n\t\tc0.7-7.3,1.4-13.8,2.6-28.7c1.6-18.5-14.9-67.1-74.1-67.1c-59.2,0-75.6,48.5-74.1,67.1c1.2,14.9,1.9,21.4,2.7,28.7\r\n\t\tc0.7,7.3-5,8.4-1.6,23.7c6.4,29.1,8.8,17,11.8,35.2c7.6,46.1,19.5,30.3,19.5,54.6c0,37.6,3.3,34.8-50.2,55.1\r\n\t\tc-54.3,20.7-67.1,33.4-68.6,42.9C32,383.3,32,448,32,448h162.5H357z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.personStalker = personStalker;
\ No newline at end of file
diff --git a/dist/ionicons/pieGraph.js b/dist/ionicons/pieGraph.js
new file mode 100644
index 000000000..79b0dc45f
--- /dev/null
+++ b/dist/ionicons/pieGraph.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pieGraph = void 0;
+var pieGraph = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32.6,256h32H256V64.6v-32c-5-0.4-10.6-0.6-16-0.6C125.1,32,32,125.1,32,240C32,245.4,32.2,251,32.6,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32.6,256h32H256V64.6v-32c-5-0.4-10.6-0.6-16-0.6C125.1,32,32,125.1,32,240C32,245.4,32.2,251,32.6,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M109.8,402.2C147.9,449.6,206.4,480,272,480c114.9,0,208-93.1,208-208c0-65.6-30.4-124.1-77.8-162.2\r\n\t\tC370.5,84.3,331,67.9,288,64.6V288H64.6C67.9,331,84.3,370.5,109.8,402.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M109.8,402.2C147.9,449.6,206.4,480,272,480c114.9,0,208-93.1,208-208c0-65.6-30.4-124.1-77.8-162.2\r\n\t\tC370.5,84.3,331,67.9,288,64.6V288H64.6C67.9,331,84.3,370.5,109.8,402.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.pieGraph = pieGraph;
\ No newline at end of file
diff --git a/dist/ionicons/pin.js b/dist/ionicons/pin.js
new file mode 100644
index 000000000..c8b87afe5
--- /dev/null
+++ b/dist/ionicons/pin.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pin = void 0;
+var pin = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M331.8,228C331.8,228,331.8,228,331.8,228c-1.2-0.5-2.4-1-3.5-1.7c-7-4-12.2-10.9-13.9-19.2L295.9,89.4l-0.2-5.8\r\n\tc0-7.1,4.1-10.2,10-13l0,0c0.7-0.3,1.4-0.6,2.1-0.9c7.2-3.4,12.1-7.8,12.1-16.3c0-20.1-6.5-21.4-18.2-21.4h-91.3\r\n\tc-11.7,0-18.2,1.2-18.2,21.4c0,8.5,4.9,12.9,12.1,16.3c0.7,0.3,1.4,0.5,2.1,0.9c0,0,0,0,0,0c5.9,2.9,10,6,10,13l-0.2,5.8\r\n\tl-18.5,117.7c-1.7,8.3-6.9,15.2-13.9,19.2c-1.1,0.7-2.3,1.2-3.5,1.7c0,0,0,0,0,0c-19.7,10.2-36.2,30.8-36.2,54.7\r\n\tc0,15.9,3.5,21.3,15.2,21.3H240l12,176h8l12-176h80.8c11.7,0,15.2-4.7,15.2-21.3C368,258.8,351.5,238.2,331.8,228z"
+ },
+ "children": []
+ }]
+};
+exports.pin = pin;
\ No newline at end of file
diff --git a/dist/ionicons/pinpoint.js b/dist/ionicons/pinpoint.js
new file mode 100644
index 000000000..59ab1add3
--- /dev/null
+++ b/dist/ionicons/pinpoint.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pinpoint = void 0;
+var pinpoint = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z\r\n\t M391.8,391.8c-32.5,32.5-74.6,51.9-119.8,55.6L264,384h-16l-7.9,63.3c-45.3-3.7-87.4-23.1-119.8-55.6\r\n\tc-32.5-32.5-51.9-74.6-55.6-119.8L128,264v-16l-63.3-7.9c3.7-45.3,23.1-87.4,55.6-119.8c32.5-32.5,74.6-51.9,119.8-55.6L248,128h16\r\n\tl7.9-63.3c45.3,3.7,87.4,23.1,119.8,55.6c32.5,32.5,51.9,74.6,55.6,119.8L384,248v16l63.3,7.9C443.6,317.2,424.2,359.3,391.8,391.8z\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.pinpoint = pinpoint;
\ No newline at end of file
diff --git a/dist/ionicons/pizza.js b/dist/ionicons/pizza.js
new file mode 100644
index 000000000..5b5921a85
--- /dev/null
+++ b/dist/ionicons/pizza.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pizza = void 0;
+var pizza = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M394.619,130.445c-42.658-18.924-89.266-28.472-138.649-28.425c-49.373-0.047-99.27,10.262-138.641,27.979\r\n\t\tc-7.396,3.312-14.004,8.957-9.296,19.479S255.941,480,255.941,480l147.621-329.874C406.452,143.25,404.318,134.748,394.619,130.445\r\n\t\tz M191.983,192.015c-17.67,0-31.995-14.323-31.995-31.993c0-17.669,14.325-31.992,31.995-31.992\r\n\t\tc17.671,0,31.996,14.323,31.996,31.992C223.979,177.691,209.654,192.015,191.983,192.015z M255.975,338.981\r\n\t\tc-17.671,0-31.995-14.323-31.995-31.993s14.324-31.992,31.995-31.992c17.67,0,31.995,14.322,31.995,31.992\r\n\t\tS273.645,338.981,255.975,338.981z M319.965,224.007c-17.67,0-31.995-14.322-31.995-31.992s14.325-31.993,31.995-31.993\r\n\t\tc17.671,0,31.996,14.323,31.996,31.993S337.636,224.007,319.965,224.007z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M394.619,130.445c-42.658-18.924-89.266-28.472-138.649-28.425c-49.373-0.047-99.27,10.262-138.641,27.979\r\n\t\tc-7.396,3.312-14.004,8.957-9.296,19.479S255.941,480,255.941,480l147.621-329.874C406.452,143.25,404.318,134.748,394.619,130.445\r\n\t\tz M191.983,192.015c-17.67,0-31.995-14.323-31.995-31.993c0-17.669,14.325-31.992,31.995-31.992\r\n\t\tc17.671,0,31.996,14.323,31.996,31.992C223.979,177.691,209.654,192.015,191.983,192.015z M255.975,338.981\r\n\t\tc-17.671,0-31.995-14.323-31.995-31.993s14.324-31.992,31.995-31.992c17.67,0,31.995,14.322,31.995,31.992\r\n\t\tS273.645,338.981,255.975,338.981z M319.965,224.007c-17.67,0-31.995-14.322-31.995-31.992s14.325-31.993,31.995-31.993\r\n\t\tc17.671,0,31.996,14.323,31.996,31.993S337.636,224.007,319.965,224.007z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M421.79,66c-47.808-20.603-106.867-33.977-165.811-34c-58.931,0-116.944,12.136-165.82,33.446\r\n\t\tC85.83,67.334,80,71.016,80,79.227c0,2.523,0.907,4.922,0.907,4.922l7.98,19.194c2.531,4.865,7.944,8.18,13.798,8.18\r\n\t\tc1.645,0,3.936-0.331,6.65-1.476c44.9-18.929,94.471-29.588,146.644-29.564c52.175-0.023,105.63,11.64,146.634,29.561\r\n\t\tc3.296,1.44,5.173,1.472,6.663,1.472c6.009,0,11.158-3.274,13.727-8.053l8.04-19.342c0.577-1.558,0.957-3.287,0.957-4.768\r\n\t\tC432,72,427.614,68.51,421.79,66z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M421.79,66c-47.808-20.603-106.867-33.977-165.811-34c-58.931,0-116.944,12.136-165.82,33.446\r\n\t\tC85.83,67.334,80,71.016,80,79.227c0,2.523,0.907,4.922,0.907,4.922l7.98,19.194c2.531,4.865,7.944,8.18,13.798,8.18\r\n\t\tc1.645,0,3.936-0.331,6.65-1.476c44.9-18.929,94.471-29.588,146.644-29.564c52.175-0.023,105.63,11.64,146.634,29.561\r\n\t\tc3.296,1.44,5.173,1.472,6.663,1.472c6.009,0,11.158-3.274,13.727-8.053l8.04-19.342c0.577-1.558,0.957-3.287,0.957-4.768\r\n\t\tC432,72,427.614,68.51,421.79,66z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.pizza = pizza;
\ No newline at end of file
diff --git a/dist/ionicons/plane.js b/dist/ionicons/plane.js
new file mode 100644
index 000000000..66510764b
--- /dev/null
+++ b/dist/ionicons/plane.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plane = void 0;
+var plane = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M281.7,311.9c0.4-6.9,8.3-4.5,8.3-4.5l62,12.6l128,48.7c0-24-3.8-26.5-9.4-30.7L288,207c0,0-4.9-60-4.9-112.9\r\n\tc0-24.5-11.8-78.1-27.1-78.1s-27.1,54.4-27.1,78.1c0,50.2-4.9,112.9-4.9,112.9L41.4,338c-7.1,5-9.4,7.7-9.4,30.7L160,320l61.9-12.6\r\n\tc0,0,7.9-2.4,8.3,4.5c0.4,6.9-1.2,69.1,5.9,102.1c0.9,4.4-2.5,4.7-4.8,7.4l-51.9,32.8c-1.7,1.9-2.5,7.3-2.5,7.3l-1,18.5l68-16l12,32\r\n\tl12-32l68,16l-1-18.5c0.1,0-0.7-5.4-2.4-7.3l-51.9-32.8c-2.3-2.7-5.7-3-4.8-7.4C282.7,381,281.3,318.8,281.7,311.9z"
+ },
+ "children": []
+ }]
+};
+exports.plane = plane;
\ No newline at end of file
diff --git a/dist/ionicons/planet.js b/dist/ionicons/planet.js
new file mode 100644
index 000000000..b1cb4ba7b
--- /dev/null
+++ b/dist/ionicons/planet.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.planet = void 0;
+var planet = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96.298,265.705C101.315,349.55,170.887,416,255.988,416c37.957,0,72.818-13.227,100.25-35.311\r\n\t\tC317.23,369.554,274,353.922,229.562,334.617C180.731,313.404,134.957,289.677,96.298,265.705z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96.298,265.705C101.315,349.55,170.887,416,255.988,416c37.957,0,72.818-13.227,100.25-35.311\r\n\t\tC317.23,369.554,274,353.922,229.562,334.617C180.731,313.404,134.957,289.677,96.298,265.705z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M107.381,196.629c39.911,27.11,92.07,55.13,147.679,79.287c43.591,18.938,87.113,34.555,125.859,45.164\r\n\t\tc6.496,1.779,12.834,3.406,18.988,4.883c1.685-3.462,3.249-6.994,4.688-10.591c7.341-18.358,11.386-38.393,11.386-59.372\r\n\t\tc0-3.26-0.109-6.493-0.301-9.705C410.661,162.45,341.09,96,255.988,96c-37.956,0-72.817,13.227-100.248,35.311\r\n\t\tc-18.296,14.729-33.284,33.398-43.67,54.726C110.383,189.499,108.819,193.032,107.381,196.629z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M107.381,196.629c39.911,27.11,92.07,55.13,147.679,79.287c43.591,18.938,87.113,34.555,125.859,45.164\r\n\t\tc6.496,1.779,12.834,3.406,18.988,4.883c1.685-3.462,3.249-6.994,4.688-10.591c7.341-18.358,11.386-38.393,11.386-59.372\r\n\t\tc0-3.26-0.109-6.493-0.301-9.705C410.661,162.45,341.09,96,255.988,96c-37.956,0-72.817,13.227-100.248,35.311\r\n\t\tc-18.296,14.729-33.284,33.398-43.67,54.726C110.383,189.499,108.819,193.032,107.381,196.629z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M429.667,284.531c-1.256,11.562-2.377,13.627-5.891,24.695c16.878,12.039,31.032,23.706,41.137,33.938\r\n\t\tc3.285,3.328,5.875,6.225,7.912,8.702c-1.684,0.084-3.557,0.133-5.631,0.133c-21.886,0-54.026-5.5-90.501-15.488\r\n\t\tc-39.467-10.806-83.73-26.685-128.008-45.92c-58.931-25.6-114.158-55.541-155.51-84.307c-19.081-13.275-35.027-26.226-46.113-37.45\r\n\t\tc-3.285-3.328-5.875-6.225-7.912-8.702c1.683-0.084,3.556-0.133,5.632-0.133c15.308,0,35.637,2.694,58.952,7.729\r\n\t\tc5.825-10.004,6.979-12.701,14.663-21.409C92.663,137,66.625,130.522,44.784,128c-24.403-2.818-40.34,5.521-43.984,17.14\r\n\t\tC-10.274,180.457,95,258.718,235.936,319.942C330.498,361.022,417.104,384,467.194,384c24.565,0,40.338-5.521,43.982-17.141\r\n\t\tC517.516,346.643,486.965,320,429.667,284.531z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M429.667,284.531c-1.256,11.562-2.377,13.627-5.891,24.695c16.878,12.039,31.032,23.706,41.137,33.938\r\n\t\tc3.285,3.328,5.875,6.225,7.912,8.702c-1.684,0.084-3.557,0.133-5.631,0.133c-21.886,0-54.026-5.5-90.501-15.488\r\n\t\tc-39.467-10.806-83.73-26.685-128.008-45.92c-58.931-25.6-114.158-55.541-155.51-84.307c-19.081-13.275-35.027-26.226-46.113-37.45\r\n\t\tc-3.285-3.328-5.875-6.225-7.912-8.702c1.683-0.084,3.556-0.133,5.632-0.133c15.308,0,35.637,2.694,58.952,7.729\r\n\t\tc5.825-10.004,6.979-12.701,14.663-21.409C92.663,137,66.625,130.522,44.784,128c-24.403-2.818-40.34,5.521-43.984,17.14\r\n\t\tC-10.274,180.457,95,258.718,235.936,319.942C330.498,361.022,417.104,384,467.194,384c24.565,0,40.338-5.521,43.982-17.141\r\n\t\tC517.516,346.643,486.965,320,429.667,284.531z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.planet = planet;
\ No newline at end of file
diff --git a/dist/ionicons/play.js b/dist/ionicons/play.js
new file mode 100644
index 000000000..efbe6adfc
--- /dev/null
+++ b/dist/ionicons/play.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.play = void 0;
+var play = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.2,232.9L126.8,67.2c-3.4-2-6.9-3.2-10.9-3.2c-10.9,0-19.8,9-19.8,20H96v344h0.1c0,11,8.9,20,19.8,20\r\n\tc4.1,0,7.5-1.4,11.2-3.4l278.1-165.5c6.6-5.5,10.8-13.8,10.8-23.1C416,246.7,411.8,238.5,405.2,232.9z"
+ },
+ "children": []
+ }]
+};
+exports.play = play;
\ No newline at end of file
diff --git a/dist/ionicons/playstation.js b/dist/ionicons/playstation.js
new file mode 100644
index 000000000..27474ff56
--- /dev/null
+++ b/dist/ionicons/playstation.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.playstation = void 0;
+var playstation = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M399.8,203c-0.8-17.1-3.3-34.5-10.8-50.1c-4.1-8.6-9.7-16.5-16.5-23.2c-6.3-6.4-13.6-11.7-21.3-16.3\r\n\t\tc-17.1-10.2-37.5-17-84.4-31S192,64,192,64v358.3l79.9,25.7c0,0,0.1-198.8,0.1-299.5v-3.8c0-9.3,7.5-16.8,16.1-16.8h0.5\r\n\t\tc8.5,0,15.5,7.5,15.5,16.8v2.2v131.1c11,5.3,29.2,9.3,41.8,9.1c8.3,0.2,16.7-1.7,24-5.7c7.6-4.1,13.9-10.4,18.4-17.8\r\n\t\tc5.1-8.3,8.2-17.8,9.9-27.3C400.1,225.5,400.2,214.2,399.8,203z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M399.8,203c-0.8-17.1-3.3-34.5-10.8-50.1c-4.1-8.6-9.7-16.5-16.5-23.2c-6.3-6.4-13.6-11.7-21.3-16.3\r\n\t\tc-17.1-10.2-37.5-17-84.4-31S192,64,192,64v358.3l79.9,25.7c0,0,0.1-198.8,0.1-299.5v-3.8c0-9.3,7.5-16.8,16.1-16.8h0.5\r\n\t\tc8.5,0,15.5,7.5,15.5,16.8v2.2v131.1c11,5.3,29.2,9.3,41.8,9.1c8.3,0.2,16.7-1.7,24-5.7c7.6-4.1,13.9-10.4,18.4-17.8\r\n\t\tc5.1-8.3,8.2-17.8,9.9-27.3C400.1,225.5,400.2,214.2,399.8,203z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M86.7,357.8c27.4-9.8,89.3-29.5,89.3-29.5v-47.2c0,0-76.5,24.8-111.3,37.1c-8.6,3.1-17.3,5.9-25.7,9.5\r\n\t\tc-9.8,4.1-19.4,8.7-28.1,14.8c-3.8,2.6-7.2,5.9-9.2,10.1c-2,4.2-2.2,9.2-0.5,13.6c2,5.1,5.8,9.3,10.1,12.6\r\n\t\tc7.8,5.9,17.1,9.5,26.4,12.2c28.4,9.4,58.4,14,88.4,13.3c14.5-0.2,36-1.9,50-4.4v-42c0,0-11,2.5-41.3,12.5c-4.6,1.5-9.2,3.3-14,4.3\r\n\t\tc-7.1,1.6-14.4,2.1-21.6,2.2c-6.5-0.3-13.2-0.7-19.3-3.1c-2.2-1-4.6-2.2-5.5-4.6c-0.8-2,0.3-4,1.7-5.4\r\n\t\tC78.9,360.9,82.9,359.3,86.7,357.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M86.7,357.8c27.4-9.8,89.3-29.5,89.3-29.5v-47.2c0,0-76.5,24.8-111.3,37.1c-8.6,3.1-17.3,5.9-25.7,9.5\r\n\t\tc-9.8,4.1-19.4,8.7-28.1,14.8c-3.8,2.6-7.2,5.9-9.2,10.1c-2,4.2-2.2,9.2-0.5,13.6c2,5.1,5.8,9.3,10.1,12.6\r\n\t\tc7.8,5.9,17.1,9.5,26.4,12.2c28.4,9.4,58.4,14,88.4,13.3c14.5-0.2,36-1.9,50-4.4v-42c0,0-11,2.5-41.3,12.5c-4.6,1.5-9.2,3.3-14,4.3\r\n\t\tc-7.1,1.6-14.4,2.1-21.6,2.2c-6.5-0.3-13.2-0.7-19.3-3.1c-2.2-1-4.6-2.2-5.5-4.6c-0.8-2,0.3-4,1.7-5.4\r\n\t\tC78.9,360.9,82.9,359.3,86.7,357.8z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M512,345.9c-0.1-6-3.7-11.2-7.9-15c-7.1-6.3-15.9-10.3-24.7-13.5c-5.5-1.9-9.3-3.3-14.7-5\r\n\t\tc-25.2-8.2-51.9-11.2-78.3-11.3c-8,0.3-23.1,0.5-31,1.4c-21.9,2.5-67.3,15.4-67.3,15.4v48.8c0,0,67.5-21.6,96.5-31.8\r\n\t\tc9.7-3.3,20.1-4.6,30.3-4.6c6.5,0.2,13.2,0.7,19.4,3.1c2.2,0.9,4.5,2.2,5.5,4.5c0.9,2.6-0.9,5-2.9,6.5c-4.7,3.8-10.7,5.3-16.2,7.4\r\n\t\tC379.7,366.3,288,396.5,288,396.5v47c0,0,117.2-39.6,170.8-58.8c8.9-3.3,17.9-6.1,26.4-10.4c7.9-4,15.8-8.6,21.8-15.3\r\n\t\tC510.1,355.4,512,351,512,345.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M512,345.9c-0.1-6-3.7-11.2-7.9-15c-7.1-6.3-15.9-10.3-24.7-13.5c-5.5-1.9-9.3-3.3-14.7-5\r\n\t\tc-25.2-8.2-51.9-11.2-78.3-11.3c-8,0.3-23.1,0.5-31,1.4c-21.9,2.5-67.3,15.4-67.3,15.4v48.8c0,0,67.5-21.6,96.5-31.8\r\n\t\tc9.7-3.3,20.1-4.6,30.3-4.6c6.5,0.2,13.2,0.7,19.4,3.1c2.2,0.9,4.5,2.2,5.5,4.5c0.9,2.6-0.9,5-2.9,6.5c-4.7,3.8-10.7,5.3-16.2,7.4\r\n\t\tC379.7,366.3,288,396.5,288,396.5v47c0,0,117.2-39.6,170.8-58.8c8.9-3.3,17.9-6.1,26.4-10.4c7.9-4,15.8-8.6,21.8-15.3\r\n\t\tC510.1,355.4,512,351,512,345.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.playstation = playstation;
\ No newline at end of file
diff --git a/dist/ionicons/plus.js b/dist/ionicons/plus.js
new file mode 100644
index 000000000..129fae190
--- /dev/null
+++ b/dist/ionicons/plus.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plus = void 0;
+var plus = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,224 288,224 288,64 224,64 224,224 64,224 64,288 224,288 224,448 288,448 288,288 448,288 "
+ },
+ "children": []
+ }]
+};
+exports.plus = plus;
\ No newline at end of file
diff --git a/dist/ionicons/plusCircled.js b/dist/ionicons/plusCircled.js
new file mode 100644
index 000000000..8bad8ebbd
--- /dev/null
+++ b/dist/ionicons/plusCircled.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plusCircled = void 0;
+var plusCircled = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H272v112h-32V272H128v-32\r\n\t\th112V128h32v112h112V272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M384,272H272v112h-32V272H128v-32\r\n\t\th112V128h32v112h112V272z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.plusCircled = plusCircled;
\ No newline at end of file
diff --git a/dist/ionicons/plusRound.js b/dist/ionicons/plusRound.js
new file mode 100644
index 000000000..15e94a6db
--- /dev/null
+++ b/dist/ionicons/plusRound.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.plusRound = void 0;
+var plusRound = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.4,224H288V94.6c0-16.9-14.3-30.6-32-30.6c-17.7,0-32,13.7-32,30.6V224H94.6C77.7,224,64,238.3,64,256\r\n\tc0,17.7,13.7,32,30.6,32H224v129.4c0,16.9,14.3,30.6,32,30.6c17.7,0,32-13.7,32-30.6V288h129.4c16.9,0,30.6-14.3,30.6-32\r\n\tC448,238.3,434.3,224,417.4,224z"
+ },
+ "children": []
+ }]
+};
+exports.plusRound = plusRound;
\ No newline at end of file
diff --git a/dist/ionicons/podium.js b/dist/ionicons/podium.js
new file mode 100644
index 000000000..bf53d3fd3
--- /dev/null
+++ b/dist/ionicons/podium.js
@@ -0,0 +1,69 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.podium = void 0;
+var podium = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "256",
+ "width": "128",
+ "height": "192"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "256",
+ "width": "128",
+ "height": "192"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "160",
+ "width": "128",
+ "height": "288"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "192",
+ "y": "160",
+ "width": "128",
+ "height": "288"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "352",
+ "y": "320",
+ "width": "128",
+ "height": "128"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "352",
+ "y": "320",
+ "width": "128",
+ "height": "128"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.podium = podium;
\ No newline at end of file
diff --git a/dist/ionicons/pound.js b/dist/ionicons/pound.js
new file mode 100644
index 000000000..68ba2efad
--- /dev/null
+++ b/dist/ionicons/pound.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pound = void 0;
+var pound = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M125.2,352.3H32v-54.6h101.2l13.1-83.3H47v-54.6h107.2L176,32h63.9l-21.8,127.7h105.6L345.5,32h63.1l-21.8,127.7H480v54.6\r\n\t\tH378.1l-12.3,83.3H465v54.6H358.5L336,480h-63.1l21.8-127.7H188.3L166.5,480h-63.1L125.2,352.3z M209.4,214.3L197,297.7h105.6\r\n\t\tl12.3-83.3H209.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M125.2,352.3H32v-54.6h101.2l13.1-83.3H47v-54.6h107.2L176,32h63.9l-21.8,127.7h105.6L345.5,32h63.1l-21.8,127.7H480v54.6\r\n\t\tH378.1l-12.3,83.3H465v54.6H358.5L336,480h-63.1l21.8-127.7H188.3L166.5,480h-63.1L125.2,352.3z M209.4,214.3L197,297.7h105.6\r\n\t\tl12.3-83.3H209.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.pound = pound;
\ No newline at end of file
diff --git a/dist/ionicons/power.js b/dist/ionicons/power.js
new file mode 100644
index 000000000..b1074bb21
--- /dev/null
+++ b/dist/ionicons/power.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.power = void 0;
+var power = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,256c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32s32,14.3,32,32v160C288,241.7,273.7,256,256,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,256c-17.7,0-32-14.3-32-32V64c0-17.7,14.3-32,32-32s32,14.3,32,32v160C288,241.7,273.7,256,256,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M379,68.8L379,68.8c-5-3-10.8-4.8-17-4.8c-17.7,0-32,14.3-32,32c0,6.2,1.8,12,4.8,16.9c2,3.2,4.6,6.1,7.6,8.4\r\n\t\tc1.2,0.9,2.4,1.7,3.7,2.5c8.1,5.6,15.8,11.9,23,19.1C399.4,173.1,416,213.3,416,256c0,42.7-16.6,82.9-46.9,113.1\r\n\t\tC338.9,399.4,298.7,416,256,416c-42.7,0-82.9-16.6-113.1-46.9C112.6,338.9,96,298.7,96,256c0-42.7,16.6-82.9,46.9-113.1\r\n\t\tc7.1-7.1,14.8-13.5,22.9-19c1.4-0.8,2.6-1.6,3.9-2.6c3-2.3,5.5-5.1,7.5-8.3c3.1-4.9,4.8-10.7,4.8-16.9c0-17.7-14.3-32-32-32\r\n\t\tc-6.2,0-12,1.8-16.9,4.8l-0.1-0.1C72.2,108.8,32,177.7,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,177.7,439.8,108.8,379,68.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M379,68.8L379,68.8c-5-3-10.8-4.8-17-4.8c-17.7,0-32,14.3-32,32c0,6.2,1.8,12,4.8,16.9c2,3.2,4.6,6.1,7.6,8.4\r\n\t\tc1.2,0.9,2.4,1.7,3.7,2.5c8.1,5.6,15.8,11.9,23,19.1C399.4,173.1,416,213.3,416,256c0,42.7-16.6,82.9-46.9,113.1\r\n\t\tC338.9,399.4,298.7,416,256,416c-42.7,0-82.9-16.6-113.1-46.9C112.6,338.9,96,298.7,96,256c0-42.7,16.6-82.9,46.9-113.1\r\n\t\tc7.1-7.1,14.8-13.5,22.9-19c1.4-0.8,2.6-1.6,3.9-2.6c3-2.3,5.5-5.1,7.5-8.3c3.1-4.9,4.8-10.7,4.8-16.9c0-17.7-14.3-32-32-32\r\n\t\tc-6.2,0-12,1.8-16.9,4.8l-0.1-0.1C72.2,108.8,32,177.7,32,256c0,123.7,100.3,224,224,224c123.7,0,224-100.3,224-224\r\n\t\tC480,177.7,439.8,108.8,379,68.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.power = power;
\ No newline at end of file
diff --git a/dist/ionicons/pricetag.js b/dist/ionicons/pricetag.js
new file mode 100644
index 000000000..100147208
--- /dev/null
+++ b/dist/ionicons/pricetag.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pricetag = void 0;
+var pricetag = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M471,261.4L471,261.4C471,261.4,471,261.4,471,261.4L260.9,49.8c0,0,0,0,0,0l-1.5-1.5c0,0-0.4,0-0.4,0\r\n\t\tc-8.3-7.9-17.9-12-29.9-12.3v0l-99.7-3.7l-4.4-0.2c-11.2,0.2-22.2,4.5-30.7,13.1L45.1,94.3c-9,9-13.1,20.9-13.1,32.7c0,0,0,0,0,0.1\r\n\t\tl0.3,4.2l6.7,97.3c0,0.1,0,0.2,0,0.2v1.9c0,0,0,0,0,0c1,8.7,4.5,17.3,10.4,24.4l5.5,5.4l206.3,208.8l3.1,3.1\r\n\t\tc11.9,10.5,30,10,41.3-1.4l165.4-166.6C482.8,292.6,483,273.3,471,261.4z M144,192c-26.5,0-48-21.5-48-48s21.5-48,48-48\r\n\t\ts48,21.5,48,48S170.5,192,144,192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M471,261.4L471,261.4C471,261.4,471,261.4,471,261.4L260.9,49.8c0,0,0,0,0,0l-1.5-1.5c0,0-0.4,0-0.4,0\r\n\t\tc-8.3-7.9-17.9-12-29.9-12.3v0l-99.7-3.7l-4.4-0.2c-11.2,0.2-22.2,4.5-30.7,13.1L45.1,94.3c-9,9-13.1,20.9-13.1,32.7c0,0,0,0,0,0.1\r\n\t\tl0.3,4.2l6.7,97.3c0,0.1,0,0.2,0,0.2v1.9c0,0,0,0,0,0c1,8.7,4.5,17.3,10.4,24.4l5.5,5.4l206.3,208.8l3.1,3.1\r\n\t\tc11.9,10.5,30,10,41.3-1.4l165.4-166.6C482.8,292.6,483,273.3,471,261.4z M144,192c-26.5,0-48-21.5-48-48s21.5-48,48-48\r\n\t\ts48,21.5,48,48S170.5,192,144,192z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.pricetag = pricetag;
\ No newline at end of file
diff --git a/dist/ionicons/pricetags.js b/dist/ionicons/pricetags.js
new file mode 100644
index 000000000..90e8ea28a
--- /dev/null
+++ b/dist/ionicons/pricetags.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pricetags = void 0;
+var pricetags = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M472,239.2L472,239.2C472,239.2,471.9,239.2,472,239.2L282.1,48.1c0,0,0,0,0,0l-1.4-1.4c0,0-0.5,0-0.5,0\r\n\t\tc-7.5-7.2-16.1-10.9-27.1-11.1v0l-89.9-3.3l-3.9-0.1c-10.1,0.1-20,4.1-27.7,11.8l-27.1,27.2c7.4-6.6,16.6-10,26-10.1l3.8,0.1\r\n\t\tl89.8,3.3v0c11,0.2,19.7,3.9,27.2,11.1c0,0,0.4,0,0.5,0l1.4,1.4c0,0,0,0,0,0L443,268.1c0,0,0,0,0,0v0c10,10.8,10.7,28.2,0,38.9\r\n\t\tl29-28.9C482.6,267.4,482,250,472,239.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M472,239.2L472,239.2C472,239.2,471.9,239.2,472,239.2L282.1,48.1c0,0,0,0,0,0l-1.4-1.4c0,0-0.5,0-0.5,0\r\n\t\tc-7.5-7.2-16.1-10.9-27.1-11.1v0l-89.9-3.3l-3.9-0.1c-10.1,0.1-20,4.1-27.7,11.8l-27.1,27.2c7.4-6.6,16.6-10,26-10.1l3.8,0.1\r\n\t\tl89.8,3.3v0c11,0.2,19.7,3.9,27.2,11.1c0,0,0.4,0,0.5,0l1.4,1.4c0,0,0,0,0,0L443,268.1c0,0,0,0,0,0v0c10,10.8,10.7,28.2,0,38.9\r\n\t\tl29-28.9C482.6,267.4,482,250,472,239.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M428,282.5c0,0,0.3,0,0.3,0L238.6,91.4c0,0,0,0,0,0l-1.3-1.4c0,0-0.3,0-0.3,0c-7.5-7.2-15.9-10.9-26.9-11.1v0l-90.1-3.3\r\n\t\tl-4-0.1c-9.2,0.1-18.2,3.4-25.6,9.8c-0.3,0.3-0.7,0.6-1,0.9c-0.4,0.4-0.8,0.8-1.2,1.2l-44.3,44.5c-8.1,8.1-11.9,18.9-11.9,29.5\r\n\t\tc0,0,0,0,0,0.1l0.1,3.8l5.9,87.9c0,0.1,0,0.1,0,0.2v1.7c0,0,0,0,0,0c1,7.9,4.2,15.6,9.6,22l5.1,4.9L239,470.4l2.8,2.8\r\n\t\tc10.7,9.4,27.1,9,37.3-1.3l13.1-13.2c0.5-0.4,0.9-0.8,1.4-1.3l26.9-27c-0.2,0.1-0.3,0.2-0.5,0.4l108.3-109.3\r\n\t\tC438.9,310.8,439,293.3,428,282.5L428,282.5z M110.6,139.5c6.6-4,14.3-6.3,22.6-6.3c23.9,0,43.4,19.4,43.4,43.4\r\n\t\tc0,8.3-2.3,16-6.3,22.6c-7.6,12.5-21.3,20.8-37,20.8c-23.9,0-43.4-19.4-43.4-43.4C89.8,160.8,98.1,147.1,110.6,139.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M428,282.5c0,0,0.3,0,0.3,0L238.6,91.4c0,0,0,0,0,0l-1.3-1.4c0,0-0.3,0-0.3,0c-7.5-7.2-15.9-10.9-26.9-11.1v0l-90.1-3.3\r\n\t\tl-4-0.1c-9.2,0.1-18.2,3.4-25.6,9.8c-0.3,0.3-0.7,0.6-1,0.9c-0.4,0.4-0.8,0.8-1.2,1.2l-44.3,44.5c-8.1,8.1-11.9,18.9-11.9,29.5\r\n\t\tc0,0,0,0,0,0.1l0.1,3.8l5.9,87.9c0,0.1,0,0.1,0,0.2v1.7c0,0,0,0,0,0c1,7.9,4.2,15.6,9.6,22l5.1,4.9L239,470.4l2.8,2.8\r\n\t\tc10.7,9.4,27.1,9,37.3-1.3l13.1-13.2c0.5-0.4,0.9-0.8,1.4-1.3l26.9-27c-0.2,0.1-0.3,0.2-0.5,0.4l108.3-109.3\r\n\t\tC438.9,310.8,439,293.3,428,282.5L428,282.5z M110.6,139.5c6.6-4,14.3-6.3,22.6-6.3c23.9,0,43.4,19.4,43.4,43.4\r\n\t\tc0,8.3-2.3,16-6.3,22.6c-7.6,12.5-21.3,20.8-37,20.8c-23.9,0-43.4-19.4-43.4-43.4C89.8,160.8,98.1,147.1,110.6,139.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.pricetags = pricetags;
\ No newline at end of file
diff --git a/dist/ionicons/printer.js b/dist/ionicons/printer.js
new file mode 100644
index 000000000..585784e0a
--- /dev/null
+++ b/dist/ionicons/printer.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.printer = void 0;
+var printer = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M423.8,128H384V64H128v64H88.2C60.3,128,32,144.9,32,182.6v123.8c0,38,28.3,61.6,56.2,61.6c0,0,30.4,0,39.8,0v112h5h11h224\r\n\t\th8h8V368c10.3,0,39.8,0,39.8,0c27.9,0,56.2-22.6,56.2-53.6V182.6C480,146.9,451.8,128,423.8,128z M368,464H144V288h224V464z\r\n\t\t M368,128H144V80h224V128z M416,192h-17v-16h17V192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M423.8,128H384V64H128v64H88.2C60.3,128,32,144.9,32,182.6v123.8c0,38,28.3,61.6,56.2,61.6c0,0,30.4,0,39.8,0v112h5h11h224\r\n\t\th8h8V368c10.3,0,39.8,0,39.8,0c27.9,0,56.2-22.6,56.2-53.6V182.6C480,146.9,451.8,128,423.8,128z M368,464H144V288h224V464z\r\n\t\t M368,128H144V80h224V128z M416,192h-17v-16h17V192z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "320",
+ "width": "192",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "320",
+ "width": "192",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "368",
+ "width": "192",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "368",
+ "width": "192",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "416",
+ "width": "192",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "160",
+ "y": "416",
+ "width": "192",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.printer = printer;
\ No newline at end of file
diff --git a/dist/ionicons/pullRequest.js b/dist/ionicons/pullRequest.js
new file mode 100644
index 000000000..cf602a6c1
--- /dev/null
+++ b/dist/ionicons/pullRequest.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.pullRequest = void 0;
+var pullRequest = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,64c-35.29,0-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v177.219C76.89,371.693,64,392.363,64,416\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391V183.391c19.11-11.084,32-31.754,32-55.391\r\n\t\tC192,92.71,163.29,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M128,160\r\n\t\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,160,128,160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M128,64c-35.29,0-64,28.71-64,64c0,23.637,12.89,44.307,32,55.391v177.219C76.89,371.693,64,392.363,64,416\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64c0-23.637-12.89-44.307-32-55.391V183.391c19.11-11.084,32-31.754,32-55.391\r\n\t\tC192,92.71,163.29,64,128,64z M128,448c-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,448,128,448z M128,160\r\n\t\tc-17.673,0-32-14.327-32-32s14.327-32,32-32s32,14.327,32,32S145.673,160,128,160z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M415,360.034V204.989c0-33.987-10.49-61.002-31.18-80.294c-22.111-20.618-54.314-30.388-95.82-29.106V32l-96,96l96,96v-64\r\n\t\tc26.5,0,42.67,2.642,52.175,11.504c7.183,6.698,10.825,17.964,10.825,33.485v156.196c-18.562,11.217-31,31.589-31,54.814\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64C448,391.951,434.662,370.969,415,360.034z M384,448c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S401.673,448,384,448z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M415,360.034V204.989c0-33.987-10.49-61.002-31.18-80.294c-22.111-20.618-54.314-30.388-95.82-29.106V32l-96,96l96,96v-64\r\n\t\tc26.5,0,42.67,2.642,52.175,11.504c7.183,6.698,10.825,17.964,10.825,33.485v156.196c-18.562,11.217-31,31.589-31,54.814\r\n\t\tc0,35.29,28.71,64,64,64s64-28.71,64-64C448,391.951,434.662,370.969,415,360.034z M384,448c-17.673,0-32-14.327-32-32\r\n\t\ts14.327-32,32-32s32,14.327,32,32S401.673,448,384,448z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.pullRequest = pullRequest;
\ No newline at end of file
diff --git a/dist/ionicons/qrScanner.js b/dist/ionicons/qrScanner.js
new file mode 100644
index 000000000..0c99e0b8a
--- /dev/null
+++ b/dist/ionicons/qrScanner.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.qrScanner = void 0;
+var qrScanner = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,124.171c0-6.938,5.232-12.171,12.171-12.171H176V64h-66.829C75.717,64,48,90.717,48,124.171V192h48V124.171z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M96,124.171c0-6.938,5.232-12.171,12.171-12.171H176V64h-66.829C75.717,64,48,90.717,48,124.171V192h48V124.171z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M403.579,64H336v48h67.219c6.938,0,12.781,5.232,12.781,12.171V192h48v-67.829C464,90.717,437.033,64,403.579,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M403.579,64H336v48h67.219c6.938,0,12.781,5.232,12.781,12.171V192h48v-67.829C464,90.717,437.033,64,403.579,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M416,386.829c0,6.938-5.232,12.171-12.171,12.171H336v49h67.829C437.283,448,464,420.283,464,386.829V320h-48V386.829z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,386.829c0,6.938-5.232,12.171-12.171,12.171H336v49h67.829C437.283,448,464,420.283,464,386.829V320h-48V386.829z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M108.171,399C101.232,399,96,393.768,96,386.829V320H48v66.829C48,420.283,75.717,448,109.171,448H176v-49H108.171z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M108.171,399C101.232,399,96,393.768,96,386.829V320H48v66.829C48,420.283,75.717,448,109.171,448H176v-49H108.171z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.qrScanner = qrScanner;
\ No newline at end of file
diff --git a/dist/ionicons/quote.js b/dist/ionicons/quote.js
new file mode 100644
index 000000000..2d8a099f1
--- /dev/null
+++ b/dist/ionicons/quote.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.quote = void 0;
+var quote = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192,64c-40.646,0-72.483,11.229-94.627,33.373C75.229,119.517,64,151.354,64,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C152.334,132.922,168.944,128,192,128"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M192,64c-40.646,0-72.483,11.229-94.627,33.373C75.229,119.517,64,151.354,64,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C152.334,132.922,168.944,128,192,128"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,64c-40.646,0-72.483,11.229-94.627,33.373C299.229,119.517,288,151.354,288,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C376.334,132.922,392.944,128,416,128"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,64c-40.646,0-72.483,11.229-94.627,33.373C299.229,119.517,288,151.354,288,192v256h160V192h-96\r\n\t\t\tc0-23.056,4.922-39.666,14.627-49.373C376.334,132.922,392.944,128,416,128"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.quote = quote;
\ No newline at end of file
diff --git a/dist/ionicons/radioWaves.js b/dist/ionicons/radioWaves.js
new file mode 100644
index 000000000..684630ba9
--- /dev/null
+++ b/dist/ionicons/radioWaves.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.radioWaves = void 0;
+var radioWaves = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "256",
+ "r": "64"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "256",
+ "r": "64"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,256c0-36.9,18.553-69.208,46.314-87.034l-23.141-24.512c-6.26,4.608-12.18,9.833-17.684,15.663\r\n\t\t\tC125.314,185.729,112,219.781,112,256c0,36.219,13.314,70.271,37.49,95.883c5.504,5.829,11.424,11.055,17.684,15.662\r\n\t\t\tl23.141-24.511C162.553,325.208,144,292.9,144,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,256c0-36.9,18.553-69.208,46.314-87.034l-23.141-24.512c-6.26,4.608-12.18,9.833-17.684,15.663\r\n\t\t\tC125.314,185.729,112,219.781,112,256c0,36.219,13.314,70.271,37.49,95.883c5.504,5.829,11.424,11.055,17.684,15.662\r\n\t\t\tl23.141-24.511C162.553,325.208,144,292.9,144,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M368,256c0,36.9-18.553,69.208-46.314,87.034l23.141,24.511c6.26-4.607,12.18-9.833,17.684-15.662\r\n\t\t\tC386.686,326.271,400,292.219,400,256c0-36.219-13.314-70.271-37.49-95.882c-5.504-5.83-11.424-11.055-17.684-15.663\r\n\t\t\tl-23.141,24.512C349.447,186.792,368,219.1,368,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,256c0,36.9-18.553,69.208-46.314,87.034l23.141,24.511c6.26-4.607,12.18-9.833,17.684-15.662\r\n\t\t\tC386.686,326.271,400,292.219,400,256c0-36.219-13.314-70.271-37.49-95.882c-5.504-5.83-11.424-11.055-17.684-15.663\r\n\t\t\tl-23.141,24.512C349.447,186.792,368,219.1,368,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M64,256c0-55.578,25.251-104.907,64.263-135.817L105.433,96c-5.999,5-11.739,10.396-17.197,16.178\r\n\t\t\tc-17.622,18.669-31.462,40.417-41.134,64.641C37.081,201.917,32,228.556,32,256c0,27.443,5.081,54.084,15.102,79.181\r\n\t\t\tc9.672,24.226,23.512,45.973,41.134,64.642c5.458,5.781,11.198,11.177,17.197,16.178l22.829-24.183\r\n\t\t\tC89.251,360.907,64,311.578,64,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,256c0-55.578,25.251-104.907,64.263-135.817L105.433,96c-5.999,5-11.739,10.396-17.197,16.178\r\n\t\t\tc-17.622,18.669-31.462,40.417-41.134,64.641C37.081,201.917,32,228.556,32,256c0,27.443,5.081,54.084,15.102,79.181\r\n\t\t\tc9.672,24.226,23.512,45.973,41.134,64.642c5.458,5.781,11.198,11.177,17.197,16.178l22.829-24.183\r\n\t\t\tC89.251,360.907,64,311.578,64,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M448,256c0,55.578-25.251,104.907-64.262,135.817l22.828,23.848c6-5.001,11.74-10.062,17.198-15.843\r\n\t\t\tc17.622-18.669,31.462-40.416,41.134-64.642C474.918,310.084,480,283.443,480,256c0-27.444-5.082-54.083-15.102-79.181\r\n\t\t\tc-9.672-24.225-23.512-45.972-41.134-64.641C418.307,106.396,412.566,101,406.566,96l-22.829,24.183\r\n\t\t\tC422.749,151.093,448,200.422,448,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,256c0,55.578-25.251,104.907-64.262,135.817l22.828,23.848c6-5.001,11.74-10.062,17.198-15.843\r\n\t\t\tc17.622-18.669,31.462-40.416,41.134-64.642C474.918,310.084,480,283.443,480,256c0-27.444-5.082-54.083-15.102-79.181\r\n\t\t\tc-9.672-24.225-23.512-45.972-41.134-64.641C418.307,106.396,412.566,101,406.566,96l-22.829,24.183\r\n\t\t\tC422.749,151.093,448,200.422,448,256z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.radioWaves = radioWaves;
\ No newline at end of file
diff --git a/dist/ionicons/record.js b/dist/ionicons/record.js
new file mode 100644
index 000000000..79322ae32
--- /dev/null
+++ b/dist/ionicons/record.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.record = void 0;
+var record = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,464c114.9,0,208-93.1,208-208c0-114.9-93.1-208-208-208C141.1,48,48,141.1,48,256C48,370.9,141.1,464,256,464z"
+ },
+ "children": []
+ }]
+};
+exports.record = record;
\ No newline at end of file
diff --git a/dist/ionicons/refresh.js b/dist/ionicons/refresh.js
new file mode 100644
index 000000000..3a852d93f
--- /dev/null
+++ b/dist/ionicons/refresh.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.refresh = void 0;
+var refresh = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,352l96-111.9h-64.7c-2.3-27.9-10.5-54-23.5-77.3c-27.4-49.2-75.8-85.1-133-95.6c-0.7-0.1-1.5-0.3-2.2-0.4\r\n\tc-0.5-0.1-0.9-0.2-1.4-0.2C277.1,64.9,266.6,64,256,64c-0.1,0-0.3,0-0.4,0c0,0,0,0,0,0c-90.9,0.2-167,63.6-186.7,148.6\r\n\tc0,0,0,0.1,0,0.1c-0.3,1.1-0.5,2.2-0.7,3.3c-0.1,0.5-0.2,0.9-0.3,1.4c-0.1,0.7-0.3,1.4-0.4,2.1c-0.2,0.9-0.3,1.7-0.5,2.6\r\n\tc-0.1,0.4-0.1,0.7-0.2,1.1c-0.2,1.2-0.4,2.4-0.6,3.6c0,0.1,0,0.1,0,0.2c-1,6.3-1.6,12.7-1.9,19.1c0,0.3,0,0.6,0,0.8\r\n\tc-0.1,1.4-0.1,2.7-0.2,4.1c0,1.6-0.1,3.3-0.1,5c0,1.7,0,3.3,0.1,5c0,1.4,0.1,2.7,0.2,4.1c0,0.3,0,0.6,0,0.9c0.3,6.5,1,12.9,1.9,19.1\r\n\tc0,0.1,0,0.1,0,0.2c0.2,1.2,0.4,2.4,0.6,3.6c0.1,0.4,0.1,0.7,0.2,1.1c0.2,0.9,0.3,1.8,0.5,2.6c0.1,0.7,0.3,1.4,0.4,2.1\r\n\tc0.1,0.5,0.2,1,0.3,1.4c0.2,1.1,0.5,2.2,0.7,3.2c0,0,0,0.1,0,0.1c19.7,85,96.1,148.4,187.1,148.6c42.9-0.1,83.1-14.2,116.9-40.7\r\n\tl7.5-5.9l-43.2-46.2l-6.2,4.6c-22.1,16.3-47.5,24.2-75,24.2c-70.6,0-128-57-128-128c0-71,57.4-128,128-128\r\n\tc66.4,0,122.8,46.6,129.5,112H312L416,352z"
+ },
+ "children": []
+ }]
+};
+exports.refresh = refresh;
\ No newline at end of file
diff --git a/dist/ionicons/reply.js b/dist/ionicons/reply.js
new file mode 100644
index 000000000..891c36e0a
--- /dev/null
+++ b/dist/ionicons/reply.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.reply = void 0;
+var reply = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,400c0,0-36.8-208-224-208v-80L64,256l160,134.4v-92.3C325.6,298.1,395,307,448,400z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,400c0,0-36.8-208-224-208v-80L64,256l160,134.4v-92.3C325.6,298.1,395,307,448,400z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.reply = reply;
\ No newline at end of file
diff --git a/dist/ionicons/replyAll.js b/dist/ionicons/replyAll.js
new file mode 100644
index 000000000..d09dd0b6e
--- /dev/null
+++ b/dist/ionicons/replyAll.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.replyAll = void 0;
+var replyAll = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M304.5,192v-80L152.7,255.8L304.5,390v-91.9c68,0,107.9,8.9,159.1,101.9C463.6,400,457.5,192,304.5,192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M304.5,192v-80L152.7,255.8L304.5,390v-91.9c68,0,107.9,8.9,159.1,101.9C463.6,400,457.5,192,304.5,192z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "47.5,256 191.5,382.5 191.5,324 109.3,256 191.5,177.4 191.5,120.4 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "47.5,256 191.5,382.5 191.5,324 109.3,256 191.5,177.4 191.5,120.4 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.replyAll = replyAll;
\ No newline at end of file
diff --git a/dist/ionicons/ribbonA.js b/dist/ionicons/ribbonA.js
new file mode 100644
index 000000000..e653270bf
--- /dev/null
+++ b/dist/ionicons/ribbonA.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ribbonA = void 0;
+var ribbonA = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,32l-82.9,176.612c39.996,3.608,75.273,23.554,99.096,53.128L432,128L352,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,32l-82.9,176.612c39.996,3.608,75.273,23.554,99.096,53.128L432,128L352,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M160,32l82.9,176.612c-39.996,3.608-75.273,23.554-99.096,53.128L80,128L160,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,32l82.9,176.612c-39.996,3.608-75.273,23.554-99.096,53.128L80,128L160,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "269.092,32 256,32 176,32 228.572,144 256,144 283.428,144 336,32 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "269.092,32 256,32 176,32 228.572,144 256,144 283.428,144 336,32 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,224c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,224,256,224z M256,448\r\n\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,448,256,448z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,224c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,224,256,224z M256,448\r\n\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,448,256,448z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,264c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,264,256,264z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,264c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,264,256,264z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ribbonA = ribbonA;
\ No newline at end of file
diff --git a/dist/ionicons/ribbonB.js b/dist/ionicons/ribbonB.js
new file mode 100644
index 000000000..b8aa99df6
--- /dev/null
+++ b/dist/ionicons/ribbonB.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ribbonB = void 0;
+var ribbonB = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,72c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,72,256,72z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,72c-48.523,0-88,39.477-88,88s39.477,88,88,88s88-39.477,88-88S304.523,72,256,72z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,32,256,32z M256,256\r\n\t\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,256,256,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32c-70.692,0-128,57.308-128,128s57.308,128,128,128s128-57.308,128-128S326.692,32,256,32z M256,256\r\n\t\t\tc-53.02,0-96-42.98-96-96s42.98-96,96-96s96,42.98,96,96S309.02,256,256,256z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M147.092,254.21L64,400h96l48,80l48-105.807l33.641-74.154C278.848,302.623,267.585,304,256,304\r\n\t\t\tC212.495,304,173.497,284.707,147.092,254.21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M147.092,254.21L64,400h96l48,80l48-105.807l33.641-74.154C278.848,302.623,267.585,304,256,304\r\n\t\t\tC212.495,304,173.497,284.707,147.092,254.21z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M364.908,254.211c-15.077,17.412-34.26,31.172-56.043,39.774l-44.752,98.092L304,480l48-80h96L364.908,254.211z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M364.908,254.211c-15.077,17.412-34.26,31.172-56.043,39.774l-44.752,98.092L304,480l48-80h96L364.908,254.211z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ribbonB = ribbonB;
\ No newline at end of file
diff --git a/dist/ionicons/sad.js b/dist/ionicons/sad.js
new file mode 100644
index 000000000..57998148e
--- /dev/null
+++ b/dist/ionicons/sad.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sad = void 0;
+var sad = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M145.062,291.696\r\n\t\tc-1.551,4.952-5.62,8.724-10.693,10.606c-3.358,1.246-6.816,1.774-10.236,0.938c-8.866-2.185-13.916-10.907-11.255-19.443\r\n\t\tc5.101-16.379,14.22-29.995,33.802-37.263s35.265-2.877,49.868,6.15c7.615,4.707,10.029,14.019,4.214,22.123\r\n\t\tc-2.049,2.854-5.019,4.717-8.376,5.963c-5.059,1.876-10.584,1.678-14.965-1.036c-4.778-2.957-10.643-6.526-19.607-3.199\r\n\t\tC148.805,279.878,146.712,286.374,145.062,291.696z M345.156,381.454c-2.789,1.946-5.982,2.881-9.144,2.881\r\n\t\tc-5.053,0-10.023-2.388-13.134-6.845C322.703,377.239,304,352,256,352c-47.98,0-66.704,25.239-66.879,25.49\r\n\t\tc-3.111,4.457-8.083,6.845-13.135,6.845c-3.161,0-6.354-0.935-9.143-2.881c-7.246-5.058-9.021-15.031-3.963-22.278\r\n\t\tC163.986,357.59,190.739,320,256,320c65,0,92.013,37.59,93.119,39.176C354.177,366.423,352.402,376.396,345.156,381.454z\r\n\t\t M388.029,303.24c-3.42,0.837-6.879,0.309-10.236-0.938c-5.073-1.883-9.143-5.654-10.693-10.606\r\n\t\tc-1.649-5.322-3.742-11.818-12.752-15.161c-8.964-3.327-14.829,0.242-19.607,3.199c-4.381,2.714-9.906,2.912-14.965,1.036\r\n\t\tc-3.357-1.246-6.327-3.108-8.376-5.963c-5.815-8.104-3.401-17.416,4.214-22.123c14.604-9.027,30.286-13.418,49.868-6.15\r\n\t\ts28.702,20.884,33.802,37.263C401.944,292.333,396.895,301.056,388.029,303.24z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M145.062,291.696\r\n\t\tc-1.551,4.952-5.62,8.724-10.693,10.606c-3.358,1.246-6.816,1.774-10.236,0.938c-8.866-2.185-13.916-10.907-11.255-19.443\r\n\t\tc5.101-16.379,14.22-29.995,33.802-37.263s35.265-2.877,49.868,6.15c7.615,4.707,10.029,14.019,4.214,22.123\r\n\t\tc-2.049,2.854-5.019,4.717-8.376,5.963c-5.059,1.876-10.584,1.678-14.965-1.036c-4.778-2.957-10.643-6.526-19.607-3.199\r\n\t\tC148.805,279.878,146.712,286.374,145.062,291.696z M345.156,381.454c-2.789,1.946-5.982,2.881-9.144,2.881\r\n\t\tc-5.053,0-10.023-2.388-13.134-6.845C322.703,377.239,304,352,256,352c-47.98,0-66.704,25.239-66.879,25.49\r\n\t\tc-3.111,4.457-8.083,6.845-13.135,6.845c-3.161,0-6.354-0.935-9.143-2.881c-7.246-5.058-9.021-15.031-3.963-22.278\r\n\t\tC163.986,357.59,190.739,320,256,320c65,0,92.013,37.59,93.119,39.176C354.177,366.423,352.402,376.396,345.156,381.454z\r\n\t\t M388.029,303.24c-3.42,0.837-6.879,0.309-10.236-0.938c-5.073-1.883-9.143-5.654-10.693-10.606\r\n\t\tc-1.649-5.322-3.742-11.818-12.752-15.161c-8.964-3.327-14.829,0.242-19.607,3.199c-4.381,2.714-9.906,2.912-14.965,1.036\r\n\t\tc-3.357-1.246-6.327-3.108-8.376-5.963c-5.815-8.104-3.401-17.416,4.214-22.123c14.604-9.027,30.286-13.418,49.868-6.15\r\n\t\ts28.702,20.884,33.802,37.263C401.944,292.333,396.895,301.056,388.029,303.24z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.sad = sad;
\ No newline at end of file
diff --git a/dist/ionicons/sadOutline.js b/dist/ionicons/sadOutline.js
new file mode 100644
index 000000000..0d8bfe740
--- /dev/null
+++ b/dist/ionicons/sadOutline.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.sadOutline = void 0;
+var sadOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.283,283.797c-5.1-16.379-14.22-29.995-33.802-37.263s-35.265-2.877-49.868,6.15\r\n\t\t\t\tc-7.615,4.707-10.029,14.019-4.214,22.123c2.049,2.854,5.019,4.717,8.376,5.963c5.059,1.876,10.584,1.678,14.965-1.036\r\n\t\t\t\tc4.778-2.957,10.644-6.526,19.607-3.199c9.01,3.343,11.103,9.839,12.752,15.161c1.551,4.952,5.62,8.724,10.693,10.606\r\n\t\t\t\tc3.357,1.246,6.816,1.774,10.236,0.938C396.895,301.056,401.944,292.333,399.283,283.797z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M399.283,283.797c-5.1-16.379-14.22-29.995-33.802-37.263s-35.265-2.877-49.868,6.15\r\n\t\t\t\tc-7.615,4.707-10.029,14.019-4.214,22.123c2.049,2.854,5.019,4.717,8.376,5.963c5.059,1.876,10.584,1.678,14.965-1.036\r\n\t\t\t\tc4.778-2.957,10.644-6.526,19.607-3.199c9.01,3.343,11.103,9.839,12.752,15.161c1.551,4.952,5.62,8.724,10.693,10.606\r\n\t\t\t\tc3.357,1.246,6.816,1.774,10.236,0.938C396.895,301.056,401.944,292.333,399.283,283.797z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M196.549,252.685c-14.603-9.027-30.286-13.418-49.868-6.15s-28.702,20.884-33.802,37.263\r\n\t\t\t\tc-2.661,8.536,2.389,17.259,11.255,19.443c3.42,0.837,6.878,0.309,10.236-0.938c5.073-1.883,9.143-5.654,10.693-10.606\r\n\t\t\t\tc1.649-5.322,3.743-11.818,12.752-15.161c8.964-3.327,14.829,0.242,19.607,3.199c4.381,2.714,9.907,2.912,14.965,1.036\r\n\t\t\t\tc3.357-1.246,6.327-3.108,8.376-5.963C206.578,266.703,204.164,257.392,196.549,252.685z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M196.549,252.685c-14.603-9.027-30.286-13.418-49.868-6.15s-28.702,20.884-33.802,37.263\r\n\t\t\t\tc-2.661,8.536,2.389,17.259,11.255,19.443c3.42,0.837,6.878,0.309,10.236-0.938c5.073-1.883,9.143-5.654,10.693-10.606\r\n\t\t\t\tc1.649-5.322,3.743-11.818,12.752-15.161c8.964-3.327,14.829,0.242,19.607,3.199c4.381,2.714,9.907,2.912,14.965,1.036\r\n\t\t\t\tc3.357-1.246,6.327-3.108,8.376-5.963C206.578,266.703,204.164,257.392,196.549,252.685z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M391.765,391.765\r\n\t\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\t\tC156.5,83.972,204.715,64,256,64s99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256S428.028,355.5,391.765,391.765z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M349.119,359.176C348.013,357.59,321,320,256,320c-65.261,0-92.014,37.59-93.121,39.176\r\n\t\tc-5.057,7.247-3.283,17.221,3.963,22.278c2.789,1.946,5.982,2.881,9.143,2.881c5.052,0,10.024-2.388,13.135-6.845\r\n\t\tC189.296,377.239,208.02,352,256,352c48,0,66.703,25.239,66.879,25.49c3.11,4.457,8.081,6.845,13.134,6.845\r\n\t\tc3.161,0,6.354-0.935,9.144-2.881C352.402,376.396,354.177,366.423,349.119,359.176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M349.119,359.176C348.013,357.59,321,320,256,320c-65.261,0-92.014,37.59-93.121,39.176\r\n\t\tc-5.057,7.247-3.283,17.221,3.963,22.278c2.789,1.946,5.982,2.881,9.143,2.881c5.052,0,10.024-2.388,13.135-6.845\r\n\t\tC189.296,377.239,208.02,352,256,352c48,0,66.703,25.239,66.879,25.49c3.11,4.457,8.081,6.845,13.134,6.845\r\n\t\tc3.161,0,6.354-0.935,9.144-2.881C352.402,376.396,354.177,366.423,349.119,359.176z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.sadOutline = sadOutline;
\ No newline at end of file
diff --git a/dist/ionicons/scissors.js b/dist/ionicons/scissors.js
new file mode 100644
index 000000000..10742d9a3
--- /dev/null
+++ b/dist/ionicons/scissors.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.scissors = void 0;
+var scissors = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.178,115.667c13.314-32.667,17.309-64-5.326-83.667L255.726,224l-16.976,23c0,0-27.627,40.011-37.28,58.667\r\n\t\ts-19.306,39.333-27.294,54c-7.01,12.871-10.438,15.221-14.322,11.548c-0.506-0.591-1.026-1.168-1.553-1.736\r\n\t\tc-0.037-0.047-0.073-0.09-0.11-0.138c-1.143-1.472-2.75-3.002-4.635-4.467C144.195,356.795,132.548,352,119.92,352\r\n\t\tC89.037,352,64,380.653,64,416s25.037,64,55.92,64c25.282,0,46.635-19.205,53.553-45.561l-0.004,0.043\r\n\t\tc0,0,13.355-41.482,32.661-71.482c19.306-30,49.596-43,49.596-43l31.954-32C287.68,288,391.863,148.334,405.178,115.667z\r\n\t\t M119.92,448c-15.418,0-27.918-14.353-27.918-32s12.5-32,27.918-32c15.419,0,27.918,14.353,27.918,32S135.339,448,119.92,448z\r\n\t\t M256,288c-8.836,0-16-7.163-16-16c0-8.836,7.164-16,16-16c8.837,0,16,7.164,16,16C272,280.837,264.837,288,256,288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M405.178,115.667c13.314-32.667,17.309-64-5.326-83.667L255.726,224l-16.976,23c0,0-27.627,40.011-37.28,58.667\r\n\t\ts-19.306,39.333-27.294,54c-7.01,12.871-10.438,15.221-14.322,11.548c-0.506-0.591-1.026-1.168-1.553-1.736\r\n\t\tc-0.037-0.047-0.073-0.09-0.11-0.138c-1.143-1.472-2.75-3.002-4.635-4.467C144.195,356.795,132.548,352,119.92,352\r\n\t\tC89.037,352,64,380.653,64,416s25.037,64,55.92,64c25.282,0,46.635-19.205,53.553-45.561l-0.004,0.043\r\n\t\tc0,0,13.355-41.482,32.661-71.482c19.306-30,49.596-43,49.596-43l31.954-32C287.68,288,391.863,148.334,405.178,115.667z\r\n\t\t M119.92,448c-15.418,0-27.918-14.353-27.918-32s12.5-32,27.918-32c15.419,0,27.918,14.353,27.918,32S135.339,448,119.92,448z\r\n\t\t M256,288c-8.836,0-16-7.163-16-16c0-8.836,7.164-16,16-16c8.837,0,16,7.164,16,16C272,280.837,264.837,288,256,288z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M207.28,265.255c9.18-14.114,17.671-26.43,18.304-27.346l0.143-0.208l0.15-0.203l16.976-23l0.038-0.052l0.039-0.052\r\n\t\tl2.941-3.918L111.896,32c-22.634,19.667-18.64,51-5.326,83.667C116.523,140.087,177.249,224.29,207.28,265.255z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M207.28,265.255c9.18-14.114,17.671-26.43,18.304-27.346l0.143-0.208l0.15-0.203l16.976-23l0.038-0.052l0.039-0.052\r\n\t\tl2.941-3.918L111.896,32c-22.634,19.667-18.64,51-5.326,83.667C116.523,140.087,177.249,224.29,207.28,265.255z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M391.828,352c-12.628,0-24.275,4.795-33.637,12.874c-1.885,1.465-3.492,2.995-4.635,4.467\r\n\t\tc-0.037,0.048-0.072,0.091-0.109,0.138c-0.526,0.568-1.047,1.146-1.553,1.736c-3.884,3.673-7.312,1.323-14.322-11.548\r\n\t\tc-7.988-14.667-17.641-35.344-27.294-54c-1.77-3.421-4.146-7.561-6.843-12.038c-1.272,1.712-2.264,3.043-2.932,3.938l-0.688,0.924\r\n\t\tl-0.813,0.815l-28.688,28.729c10.433,6.855,24.565,18.276,35.306,34.965c19.305,30,32.66,71.482,32.66,71.482l-0.004-0.043\r\n\t\tC345.193,460.795,366.546,480,391.828,480C422.711,480,448,451.347,448,416S422.711,352,391.828,352z M391.828,448\r\n\t\tc-15.42,0-27.918-14.353-27.918-32s12.498-32,27.918-32c15.418,0,27.918,14.353,27.918,32S407.246,448,391.828,448z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M391.828,352c-12.628,0-24.275,4.795-33.637,12.874c-1.885,1.465-3.492,2.995-4.635,4.467\r\n\t\tc-0.037,0.048-0.072,0.091-0.109,0.138c-0.526,0.568-1.047,1.146-1.553,1.736c-3.884,3.673-7.312,1.323-14.322-11.548\r\n\t\tc-7.988-14.667-17.641-35.344-27.294-54c-1.77-3.421-4.146-7.561-6.843-12.038c-1.272,1.712-2.264,3.043-2.932,3.938l-0.688,0.924\r\n\t\tl-0.813,0.815l-28.688,28.729c10.433,6.855,24.565,18.276,35.306,34.965c19.305,30,32.66,71.482,32.66,71.482l-0.004-0.043\r\n\t\tC345.193,460.795,366.546,480,391.828,480C422.711,480,448,451.347,448,416S422.711,352,391.828,352z M391.828,448\r\n\t\tc-15.42,0-27.918-14.353-27.918-32s12.498-32,27.918-32c15.418,0,27.918,14.353,27.918,32S407.246,448,391.828,448z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.scissors = scissors;
\ No newline at end of file
diff --git a/dist/ionicons/search.js b/dist/ionicons/search.js
new file mode 100644
index 000000000..d7784617d
--- /dev/null
+++ b/dist/ionicons/search.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.search = void 0;
+var search = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M445,386.7l-84.8-85.9c13.8-24.1,21-50.9,21-77.9c0-87.6-71.2-158.9-158.6-158.9C135.2,64,64,135.3,64,222.9\r\n\tc0,87.6,71.2,158.9,158.6,158.9c27.9,0,55.5-7.7,80.1-22.4l84.4,85.6c1.9,1.9,4.6,3.1,7.3,3.1c2.7,0,5.4-1.1,7.3-3.1l43.3-43.8\r\n\tC449,397.1,449,390.7,445,386.7z M222.6,125.9c53.4,0,96.8,43.5,96.8,97c0,53.5-43.4,97-96.8,97c-53.4,0-96.8-43.5-96.8-97\r\n\tC125.8,169.4,169.2,125.9,222.6,125.9z"
+ },
+ "children": []
+ }]
+};
+exports.search = search;
\ No newline at end of file
diff --git a/dist/ionicons/settings.js b/dist/ionicons/settings.js
new file mode 100644
index 000000000..1a93db71c
--- /dev/null
+++ b/dist/ionicons/settings.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.settings = void 0;
+var settings = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M450,138.3l-47.7,48.5l-2.7,2.8l-1.6,1.7c-1.1,0.8-2.4,1.2-3.9,1.2c-1.6,0-3.1-0.6-4.3-1.6l-0.9-0.9l-2.7-2.7l-41.3-42.1\r\n\tl-2.2-2.2l-1.7-1.7c-1-1.5-1.6-3.4-1.6-5.3c0-1.7,0.6-3.2,1.6-4.4l0.7-0.8l2.6-2.6l47.9-48.7c-5.1-10.1-24.7-14.9-35.1-14.1\r\n\tc-17.1,1.3-34.7,7-52.8,25.5c-0.7,0.8-1.5,1.6-2.2,2.3C277.5,120,272.6,156,282.6,189c0.7,1.4,1.3,3.1,1.6,4.6\r\n\tc1.1,5.5-0.4,10.2-4,13.5l-37.9,36.4c-11.8-12-13.5-13.6-13.5-13.6c-2-2-6-3.3-9.5-1.2l-5.9,3.6c-22.7-23.1-32.3-32.4-35.4-43.6\r\n\tc-3.2-11.7-0.3-27.3,2.7-33.1c2.5-4.6,10.3-8.9,16.9-9.4l8.6,8.8c2,2,5.1,2,7.1,0l30.9-31.4c2-2,2-5.3,0-7.3l-49.9-50.7\r\n\tc-2-2-5.2-2-7.1,0l-30.9,31.4c-2,2-2,5.3,0,7.3l3.3,3.4c0,4.9-0.7,12.5-4.7,16.6c-6.2,6.3-18.5-1-26.5,4.7\r\n\tc-7.9,5.6-17.9,14.6-24.3,21c-6.3,6.4-30.5,31.8-47.8,74.6c-17.3,42.8-4,82.5,5.4,92.9c5,5.5,14.1,11.1,12.5,0.7\r\n\tc-1.6-10.5-4.2-46.9,7.7-61.8c11.9-14.9,27.6-27.1,48-28.1c19.6-1,30.9,5.7,56.3,31.5l-2.8,5.2c-1.8,3.4-0.8,7.7,1.2,9.7\r\n\tc0,0,1.5,1.6,12.1,12.4l-97.2,93.2c-16.2,14.3-15.3,40.5-0.3,56c15.2,15.2,41.1,16.3,55.2-0.2l91.4-98.6\r\n\tc49.1,52.3,93.3,107.4,93.3,107.4c2,2,5.2,2,7.1,0l49.9-50.7c2-2,2-5.2,0-7.3c0,0-55.2-45.7-107-96.2l35.5-38.3\r\n\tc3.3-3.7,7.9-5.2,13.3-4.1c1.5,0.3,3.1,1,4.5,1.7c32.4,10.2,67.8,5.2,94-19.8c0.8-0.7,1.5-1.5,2.3-2.3c18.1-18.4,23.7-36.4,25-53.8\r\n\tC464.7,163.5,460.2,143.8,450,138.3z"
+ },
+ "children": []
+ }]
+};
+exports.settings = settings;
\ No newline at end of file
diff --git a/dist/ionicons/share.js b/dist/ionicons/share.js
new file mode 100644
index 000000000..78ed19f19
--- /dev/null
+++ b/dist/ionicons/share.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.share = void 0;
+var share = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,377.9H102.4V198.2h57.5c0,0,14.1-19.7,42.7-38.2H83.2c-10.6,0-19.2,8.5-19.2,19.1v217.9c0,10.5,8.6,19.1,19.2,19.1\r\n\t\th288c10.6,0,19.2-8.5,19.2-19.1V288L352,319.4V377.9z M320,224v63.9l128-95.5L320,96v59.7C165.2,155.7,160,320,160,320\r\n\t\tC203.8,248.5,236,224,320,224z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,377.9H102.4V198.2h57.5c0,0,14.1-19.7,42.7-38.2H83.2c-10.6,0-19.2,8.5-19.2,19.1v217.9c0,10.5,8.6,19.1,19.2,19.1\r\n\t\th288c10.6,0,19.2-8.5,19.2-19.1V288L352,319.4V377.9z M320,224v63.9l128-95.5L320,96v59.7C165.2,155.7,160,320,160,320\r\n\t\tC203.8,248.5,236,224,320,224z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.share = share;
\ No newline at end of file
diff --git a/dist/ionicons/shuffle.js b/dist/ionicons/shuffle.js
new file mode 100644
index 000000000..c2cb92137
--- /dev/null
+++ b/dist/ionicons/shuffle.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.shuffle = void 0;
+var shuffle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M370.1,181.3H399v47.3l81-83.2L399,64v54h-28.9c-82.7,0-129.4,61.9-170.6,116.5c-37,49.1-69,95.4-120.6,95.4H32v63.3h46.9\r\n\tc82.7,0,129.4-65.8,170.6-120.4C286.5,223.7,318.4,181.3,370.1,181.3z M153.2,217.5c3.5-4.6,7.1-9.3,10.7-14.1\r\n\tc8.8-11.6,18-23.9,28-36.1c-29.6-27.9-65.3-48.5-113-48.5H32v63.3c0,0,13.3-0.6,46.9,0C111.4,182.8,131.8,196.2,153.2,217.5z\r\n\t M399,330.4h-28.9c-31.5,0-55.7-15.8-78.2-39.3c-2.2,3-4.5,6-6.8,9c-9.9,13.1-20.5,27.2-32.2,41.1c30.4,29.9,67.2,52.5,117.2,52.5\r\n\tH399V448l81-81.4l-81-83.2V330.4z"
+ },
+ "children": []
+ }]
+};
+exports.shuffle = shuffle;
\ No newline at end of file
diff --git a/dist/ionicons/skipBackward.js b/dist/ionicons/skipBackward.js
new file mode 100644
index 000000000..3d126f3c4
--- /dev/null
+++ b/dist/ionicons/skipBackward.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skipBackward = void 0;
+var skipBackward = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M75.7,96h8.1c6.7,0,12.2,5,12.2,11.7v113.5L283.1,98.7c2.5-1.7,5.1-2.3,8.1-2.3c8.3,0,15.4,7,15.4,17v63.1\r\n\tl118.5-78.2c2.5-1.7,5-2.3,8.1-2.3c8.3,0,14.9,7.4,14.9,17.4v286c0,10-6.7,16.5-15,16.5c-3.1,0-5.4-1.2-8.2-2.9l-118.3-77.6v64\r\n\tc0,10-7.2,16.5-15.5,16.5c-3.1,0-5.5-1.2-8.2-2.9L96,290.8v113c0,6.7-5.4,12.2-12.2,12.2h-8.1c-6.7,0-11.7-5.5-11.7-12.2V107.7\r\n\tC64,101,68.9,96,75.7,96z"
+ },
+ "children": []
+ }]
+};
+exports.skipBackward = skipBackward;
\ No newline at end of file
diff --git a/dist/ionicons/skipForward.js b/dist/ionicons/skipForward.js
new file mode 100644
index 000000000..41d4282a6
--- /dev/null
+++ b/dist/ionicons/skipForward.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.skipForward = void 0;
+var skipForward = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M436.3,96h-8.1c-6.7,0-12.2,5-12.2,11.7v113.5L228.9,98.7c-2.5-1.7-5.1-2.3-8.1-2.3c-8.3,0-15.4,7-15.4,17v63.1\r\n\tL86.9,98.3c-2.5-1.7-5.1-2.3-8.1-2.3c-8.3,0-14.9,7.4-14.9,17.4v286c0,10,6.7,16.5,15,16.5c3.1,0,5.4-1.2,8.2-2.9l118.3-77.6v64\r\n\tc0,10,7.2,16.5,15.5,16.5c3.1,0,5.5-1.2,8.2-2.9L416,290.8v113c0,6.7,5.4,12.2,12.2,12.2h8.1c6.7,0,11.7-5.5,11.7-12.2V107.7\r\n\tC448,101,443.1,96,436.3,96z"
+ },
+ "children": []
+ }]
+};
+exports.skipForward = skipForward;
\ No newline at end of file
diff --git a/dist/ionicons/socialAndroid.js b/dist/ionicons/socialAndroid.js
new file mode 100644
index 000000000..248bc4eb0
--- /dev/null
+++ b/dist/ionicons/socialAndroid.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialAndroid = void 0;
+var socialAndroid = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,268.4V358c0,6.9,4.5,14,11.4,14H184v52c0,13.3,10.7,24,24,24s24-10.7,24-24v-52h49v52c0,7.5,3.4,14.2,8.8,18.6\r\n\t\t\tc3.9,3.4,9.1,5.4,14.7,5.4c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c13.3,0,24-10.7,24-24v-52h27.6c7,0,11.4-7.1,11.4-13.9v-89.6V192\r\n\t\t\tH144V268.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,268.4V358c0,6.9,4.5,14,11.4,14H184v52c0,13.3,10.7,24,24,24s24-10.7,24-24v-52h49v52c0,7.5,3.4,14.2,8.8,18.6\r\n\t\t\tc3.9,3.4,9.1,5.4,14.7,5.4c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c13.3,0,24-10.7,24-24v-52h27.6c7,0,11.4-7.1,11.4-13.9v-89.6V192\r\n\t\t\tH144V268.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M408,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M408,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M104,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M104,176c-13.3,0-24,10.7-24,24v96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M311.2,89.1l18.5-21.9c0.4-0.5-0.2-1.6-1.3-2.5c-1.1-0.8-2.4-1-2.7-0.4l-19.2,22.8c-13.6-5.4-30.2-8.8-50.6-8.8\r\n\t\t\tc-20.5-0.1-37.2,3.2-50.8,8.5l-19-22.4c-0.4-0.5-1.6-0.4-2.7,0.4c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,21.6\r\n\t\t\tc-48.2,20.9-55.4,72.2-56.4,87.2h223.6C366.7,161,359.6,110.4,311.2,89.1z M206.8,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.3,132.9,214.3,138.9,206.8,138.9z M305.2,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.7,132.9,312.6,138.9,305.2,138.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M311.2,89.1l18.5-21.9c0.4-0.5-0.2-1.6-1.3-2.5c-1.1-0.8-2.4-1-2.7-0.4l-19.2,22.8c-13.6-5.4-30.2-8.8-50.6-8.8\r\n\t\t\tc-20.5-0.1-37.2,3.2-50.8,8.5l-19-22.4c-0.4-0.5-1.6-0.4-2.7,0.4c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,21.6\r\n\t\t\tc-48.2,20.9-55.4,72.2-56.4,87.2h223.6C366.7,161,359.6,110.4,311.2,89.1z M206.8,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.3,132.9,214.3,138.9,206.8,138.9z M305.2,138.9c-7.4,0-13.5-6-13.5-13.3\r\n\t\t\tc0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.7,132.9,312.6,138.9,305.2,138.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialAndroid = socialAndroid;
\ No newline at end of file
diff --git a/dist/ionicons/socialAndroidOutline.js b/dist/ionicons/socialAndroidOutline.js
new file mode 100644
index 000000000..3383b6f76
--- /dev/null
+++ b/dist/ionicons/socialAndroidOutline.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialAndroidOutline = void 0;
+var socialAndroidOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,208v60.5V357h-22.5H313v15.5V424c0,4.4-3,7.9-7.3,8l0,0l-0.1,0c-0.1,0-0.2,0-0.3,0c-1.6,0-3.1-0.6-4.3-1.6l-0.1-0.1\r\n\t\t\tl-0.4-0.1c-2-1.6-3.4-4-3.4-6.2v-51.5V357h-15.5h-49H216v15.5V424c0,4.4-3.6,8-8,8s-8-3.6-8-8v-51.5V357h-15.5H160v-88.6V208H352\r\n\t\t\t M368,192H144v76.4V358c0,6.9,5.5,15,12.4,15H184v51c0,13.3,10.7,24,24,24s24-10.7,24-24v-51h49v51c0,7.5,3.9,14.2,9.3,18.6\r\n\t\t\tc3.9,3.4,9.3,5.4,15,5.4c0.1,0,0.3,0,0.4,0c0.1,0-0.3,0-0.2,0c13.3,0,23.6-10.7,23.6-24v-51h28.6c7,0,10.4-8.1,10.4-14.9v-89.6\r\n\t\t\tV192L368,192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,208v60.5V357h-22.5H313v15.5V424c0,4.4-3,7.9-7.3,8l0,0l-0.1,0c-0.1,0-0.2,0-0.3,0c-1.6,0-3.1-0.6-4.3-1.6l-0.1-0.1\r\n\t\t\tl-0.4-0.1c-2-1.6-3.4-4-3.4-6.2v-51.5V357h-15.5h-49H216v15.5V424c0,4.4-3.6,8-8,8s-8-3.6-8-8v-51.5V357h-15.5H160v-88.6V208H352\r\n\t\t\t M368,192H144v76.4V358c0,6.9,5.5,15,12.4,15H184v51c0,13.3,10.7,24,24,24s24-10.7,24-24v-51h49v51c0,7.5,3.9,14.2,9.3,18.6\r\n\t\t\tc3.9,3.4,9.3,5.4,15,5.4c0.1,0,0.3,0,0.4,0c0.1,0-0.3,0-0.2,0c13.3,0,23.6-10.7,23.6-24v-51h28.6c7,0,10.4-8.1,10.4-14.9v-89.6\r\n\t\t\tV192L368,192z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M408,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C400,195.6,403.6,192,408,192 M408,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176L408,176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M408,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C400,195.6,403.6,192,408,192 M408,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C432,186.7,421.3,176,408,176L408,176z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M104,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C96,195.6,99.6,192,104,192 M104,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176L104,176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M104,192c4.4,0,8,3.6,8,8v96c0,4.4-3.6,8-8,8s-8-3.6-8-8v-96C96,195.6,99.6,192,104,192 M104,176c-13.3,0-24,10.7-24,24\r\n\t\t\tv96c0,13.3,10.7,24,24,24s24-10.7,24-24v-96C128,186.7,117.3,176,104,176L104,176z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255,94.3l0.9,0h0h0c14.2,0,27.3,1.9,38.8,5.6l10,4.4c28.7,12.6,39.9,37.4,44.4,55.7H162.8c4.4-18.6,15.6-43.6,44.1-56\r\n\t\t\tl10.3-4.5C228.5,96.1,241.2,94.3,255,94.3 M185.4,64c-0.5,0-1.2,0.2-1.8,0.8c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,22.1\r\n\t\t\tc-48.2,20.9-55.4,71.7-56.4,86.7h223.6c-1.1-15-8.2-65.1-56.6-86.4l18.5-22.2c0.4-0.5-0.2-1.7-1.3-2.6c-0.7-0.5-1.5-0.8-2-0.8\r\n\t\t\tc-0.3,0-0.5,0.1-0.7,0.3l-19.2,22.7c-13.6-5.4-30.2-8.8-50.6-8.8c-0.3,0-0.6,0-1,0c-20,0-36.4,3.3-49.8,8.5l-19-22.5\r\n\t\t\tC186.1,64.1,185.8,64,185.4,64L185.4,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255,94.3l0.9,0h0h0c14.2,0,27.3,1.9,38.8,5.6l10,4.4c28.7,12.6,39.9,37.4,44.4,55.7H162.8c4.4-18.6,15.6-43.6,44.1-56\r\n\t\t\tl10.3-4.5C228.5,96.1,241.2,94.3,255,94.3 M185.4,64c-0.5,0-1.2,0.2-1.8,0.8c-1.1,0.8-1.7,1.8-1.3,2.5l18.3,22.1\r\n\t\t\tc-48.2,20.9-55.4,71.7-56.4,86.7h223.6c-1.1-15-8.2-65.1-56.6-86.4l18.5-22.2c0.4-0.5-0.2-1.7-1.3-2.6c-0.7-0.5-1.5-0.8-2-0.8\r\n\t\t\tc-0.3,0-0.5,0.1-0.7,0.3l-19.2,22.7c-13.6-5.4-30.2-8.8-50.6-8.8c-0.3,0-0.6,0-1,0c-20,0-36.4,3.3-49.8,8.5l-19-22.5\r\n\t\t\tC186.1,64.1,185.8,64,185.4,64L185.4,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M206.6,138.9c-7.4,0-13.5-6-13.5-13.3c0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C220.1,132.9,214.1,138.9,206.6,138.9z\r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M305,138.9c-7.4,0-13.5-6-13.5-13.3c0-7.3,6-13.3,13.5-13.3c7.4,0,13.5,6,13.5,13.3C318.5,132.9,312.4,138.9,305,138.9z"
+ },
+ "children": []
+ }]
+};
+exports.socialAndroidOutline = socialAndroidOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialAngular.js b/dist/ionicons/socialAngular.js
new file mode 100644
index 000000000..c1e2486e3
--- /dev/null
+++ b/dist/ionicons/socialAngular.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialAngular = void 0;
+var socialAngular = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "213.573,256 298.419,256 255.992,166.644 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "213.573,256 298.419,256 255.992,166.644 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M255.981,32L32,112l46.12,272L256,480l177.75-96L480,112L255.981,32z M344,352l-26.589-56H194.584L168,352h-40L256,72\r\n\t\tl128,280H344z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.981,32L32,112l46.12,272L256,480l177.75-96L480,112L255.981,32z M344,352l-26.589-56H194.584L168,352h-40L256,72\r\n\t\tl128,280H344z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialAngular = socialAngular;
\ No newline at end of file
diff --git a/dist/ionicons/socialAngularOutline.js b/dist/ionicons/socialAngularOutline.js
new file mode 100644
index 000000000..c22efa576
--- /dev/null
+++ b/dist/ionicons/socialAngularOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialAngularOutline = void 0;
+var socialAngularOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.982,64l187.967,69.105l-39.17,230.389l-148.881,79.949l-148.812-80.051L68.031,133.11L255.982,64 M255.981,32L32,112\r\n\t\tl46.12,272L256,480l177.75-96L480,112L255.981,32L255.981,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.982,64l187.967,69.105l-39.17,230.389l-148.881,79.949l-148.812-80.051L68.031,133.11L255.982,64 M255.981,32L32,112\r\n\t\tl46.12,272L256,480l177.75-96L480,112L255.981,32L255.981,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M344,352h40L256,72L128,352h40l26.584-56h122.827L344,352z M213.573,256l42.419-89.356L298.419,256H213.573z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344,352h40L256,72L128,352h40l26.584-56h122.827L344,352z M213.573,256l42.419-89.356L298.419,256H213.573z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialAngularOutline = socialAngularOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialApple.js b/dist/ionicons/socialApple.js
new file mode 100644
index 000000000..343a8a76e
--- /dev/null
+++ b/dist/ionicons/socialApple.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialApple = void 0;
+var socialApple = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4c-28.5,0-58.9,17.9-78.2,48.4\r\n\t\tc-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0c23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0\r\n\t\tc32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6c11.3-17.7,15.5-26.6,24.2-46.6\r\n\t\tc-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4c-28.5,0-58.9,17.9-78.2,48.4\r\n\t\tc-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0c23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0\r\n\t\tc32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6c11.3-17.7,15.5-26.6,24.2-46.6\r\n\t\tc-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0c21.3,0,43.1-13.2,55.8-30.1\r\n\t\tC320.3,110.2,329.6,87.4,326.2,64L326.2,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0c21.3,0,43.1-13.2,55.8-30.1\r\n\t\tC320.3,110.2,329.6,87.4,326.2,64L326.2,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialApple = socialApple;
\ No newline at end of file
diff --git a/dist/ionicons/socialAppleOutline.js b/dist/ionicons/socialAppleOutline.js
new file mode 100644
index 000000000..25f010819
--- /dev/null
+++ b/dist/ionicons/socialAppleOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialAppleOutline = void 0;
+var socialAppleOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M333.6,169.9c16.3,0,33.2,7.4,47.4,20.4c-9.9,8.5-17.9,18.7-23.7,30.2c-8,16-11.6,34.3-10.2,52.7\r\n\t\tc1.3,18.7,7.6,36.6,18,51.8c8,11.6,18.2,21.2,30,28.3c-5,10.7-9.2,18.4-16.8,30.5c-8.4,13.1-30.5,48-52,48.2l-0.4,0\r\n\t\tc-7.4,0-12.2-2.2-19.3-5.6c-10-4.7-22.3-10.6-43.4-10.6l-0.6,0c-21.1,0.1-33.8,5.9-43.9,10.6c-7.4,3.4-12.3,5.7-19.9,5.7l-0.4,0\r\n\t\tc-19.6-0.2-37.5-24.3-50.8-45.2c-19.3-30.4-31.7-65.6-34.9-99.1c-2.9-30.5,2-58.5,13.5-76.7c8-12.7,18.5-23.3,30.4-30.6\r\n\t\tc11.2-6.8,23-10.4,34.2-10.4c12.4,0,22.7,3.8,33.7,7.8c11.5,4.2,23.5,8.6,37.7,8.6c13.6,0,24.3-4.2,34.6-8.2\r\n\t\tC308,173.9,318.2,169.9,333.6,169.9 M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4\r\n\t\tc-28.5,0-58.9,17.9-78.2,48.4c-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0\r\n\t\tc23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0c32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6\r\n\t\tc11.3-17.7,15.5-26.6,24.2-46.6c-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M333.6,169.9c16.3,0,33.2,7.4,47.4,20.4c-9.9,8.5-17.9,18.7-23.7,30.2c-8,16-11.6,34.3-10.2,52.7\r\n\t\tc1.3,18.7,7.6,36.6,18,51.8c8,11.6,18.2,21.2,30,28.3c-5,10.7-9.2,18.4-16.8,30.5c-8.4,13.1-30.5,48-52,48.2l-0.4,0\r\n\t\tc-7.4,0-12.2-2.2-19.3-5.6c-10-4.7-22.3-10.6-43.4-10.6l-0.6,0c-21.1,0.1-33.8,5.9-43.9,10.6c-7.4,3.4-12.3,5.7-19.9,5.7l-0.4,0\r\n\t\tc-19.6-0.2-37.5-24.3-50.8-45.2c-19.3-30.4-31.7-65.6-34.9-99.1c-2.9-30.5,2-58.5,13.5-76.7c8-12.7,18.5-23.3,30.4-30.6\r\n\t\tc11.2-6.8,23-10.4,34.2-10.4c12.4,0,22.7,3.8,33.7,7.8c11.5,4.2,23.5,8.6,37.7,8.6c13.6,0,24.3-4.2,34.6-8.2\r\n\t\tC308,173.9,318.2,169.9,333.6,169.9 M333.6,153.9c-33.6,0-47.8,16.5-71.2,16.5c-24,0-42.3-16.4-71.4-16.4\r\n\t\tc-28.5,0-58.9,17.9-78.2,48.4c-27.1,43-22.5,124,21.4,193c15.7,24.7,36.7,52.4,64.2,52.7c0.2,0,0.3,0,0.5,0\r\n\t\tc23.9,0,31-16.1,63.9-16.3c0.2,0,0.3,0,0.5,0c32.4,0,38.9,16.2,62.7,16.2c0.2,0,0.3,0,0.5,0c27.5-0.3,49.6-31,65.3-55.6\r\n\t\tc11.3-17.7,15.5-26.6,24.2-46.6c-63.5-24.8-73.7-117.4-10.9-152.9C385.9,168.2,359,153.9,333.6,153.9L333.6,153.9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M309.9,84.5c-2.7,14.9-10.5,26.8-14.6,32.2c-7.4,9.8-18,17.4-28.8,21.1c0.5-3,1.3-6.1,2.4-9.2c3.5-10.2,8.9-18.2,12.8-23.1\r\n\t\tC288.8,96.7,299.3,89.1,309.9,84.5 M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0\r\n\t\tc21.3,0,43.1-13.2,55.8-30.1C320.3,110.2,329.6,87.4,326.2,64L326.2,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M309.9,84.5c-2.7,14.9-10.5,26.8-14.6,32.2c-7.4,9.8-18,17.4-28.8,21.1c0.5-3,1.3-6.1,2.4-9.2c3.5-10.2,8.9-18.2,12.8-23.1\r\n\t\tC288.8,96.7,299.3,89.1,309.9,84.5 M326.2,64c-20,1.4-43.3,14.5-57,31.6c-12.4,15.5-22.6,38.5-18.6,60.8c0.5,0,1,0,1.6,0\r\n\t\tc21.3,0,43.1-13.2,55.8-30.1C320.3,110.2,329.6,87.4,326.2,64L326.2,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialAppleOutline = socialAppleOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialBitcoin.js b/dist/ionicons/socialBitcoin.js
new file mode 100644
index 000000000..2904a3bb3
--- /dev/null
+++ b/dist/ionicons/socialBitcoin.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialBitcoin = void 0;
+var socialBitcoin = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M410.5,279.2c-5-11.5-12.7-21.6-28.1-30.1c-8.2-4.5-16.1-7.8-25.4-10c5.4-2.5,10-5.4,16.3-11c7.5-6.6,13.1-15.7,15.6-23.3\r\n\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.2-20.7-37.6-27c-12.6-4.8-25.5-7.8-45.5-8.9V32h-40v64h-32V32\r\n\th-41v64H96v48h27.9c8.7,0,14.6,0.8,17.6,2.3c3.1,1.5,5.3,3.5,6.5,6c1.3,2.5,1.9,8.4,1.9,17.5V343c0,9-0.6,14.8-1.9,17.4\r\n\tc-1.3,2.6-2,4.9-5.1,6.3c-3.1,1.4-3.2,1.3-11.8,1.3h-26.4L96,416h87v64h41v-64h32v64h40v-64.4c26-1.3,44.5-4.7,59.4-10.3\r\n\tc19.3-7.2,34.1-17.7,44.7-31.5c10.6-13.8,14.9-34.9,15.8-51.2C416.6,308.1,415,289.4,410.5,279.2z M224,150h32v74h-32V150z M224,362\r\n\tv-90h32v90H224z M296,153.9c6,2.5,9.9,7.5,13.8,12.7c4.3,5.7,6.5,13.3,6.5,21.4c0,7.8-2.9,14.5-7.5,20.5c-3.8,4.9-6.8,8.3-12.8,11.1\r\n\tV153.9z M324.8,340.6c-7.8,6.9-12.3,10.1-22.1,13.8c-2,0.8-4.7,1.4-6.7,1.9v-82.8c5,0.8,7.6,1.8,11.3,3.4\r\n\tc7.8,3.3,15.2,6.9,19.8,13.2c4.6,6.3,8,15.6,8,24.7C335.1,325.7,332.3,334,324.8,340.6z"
+ },
+ "children": []
+ }]
+};
+exports.socialBitcoin = socialBitcoin;
\ No newline at end of file
diff --git a/dist/ionicons/socialBitcoinOutline.js b/dist/ionicons/socialBitcoinOutline.js
new file mode 100644
index 000000000..1fba9ad8c
--- /dev/null
+++ b/dist/ionicons/socialBitcoinOutline.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialBitcoinOutline = void 0;
+var socialBitcoinOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M279.7,48v47v15.1l15.1,0.8c16.9,0.9,28.8,3.3,40.7,7.9c13.8,5.3,24.2,12.6,31.1,21.7c5.7,7.6,9,19.4,10,36.2\r\n\t\tc0.6,8.8-1,17.1-2.6,22c-1.5,4.4-5.3,11.3-11.1,16.4c-5.4,4.8-8.6,6.7-12.3,8.4l-42.1,19.3l45,10.8c7.4,1.8,14,4.4,21.4,8.5\r\n\t\tc13.2,7.3,18,15.1,21.2,22.5c2.9,6.7,4.6,22.2,3.9,36.2c-0.7,13.4-4.4,31.5-12.6,42.3c-8.6,11.2-21.3,20.1-37.8,26.3\r\n\t\tc-13.6,5.1-31.1,8.1-54.5,9.3l-15.2,0.7v15.2V464h-8v-48v-16h-16H224h-16v16v48h-9v-48v-16h-16h-67.2l3-16h12.8\r\n\t\tc8.6,0,12.1-0.4,17.5-3c0.2-0.1,0.4-0.2,0.7-0.3c8.1-3.7,11-10.6,12.2-13.6c0.1-0.3,0.3-0.7,0.3-0.8c2.9-5.9,3-13.1,3-24.4v-178\r\n\t\tc0-11.7-0.1-13.6-3.1-19.5c-2.9-5.8-7.3-10.1-13.4-13c-5.9-2.8-13.2-3.4-24.5-3.4h-12.9v-16h71.6h16V96V48h9v48v16h16h31.8h16V96\r\n\t\tV48H279.7 M295.7,32h-39.9v64H224V32h-40.9v64H96v48h28.4c8.7,0,14.5,0.3,17.6,1.8c3.1,1.5,4.7,3.3,6,5.8c1.3,2.5,1.4,3.1,1.4,12.3\r\n\t\tv178c0,9-0.1,14.7-0.9,17.6c-1.2,2.7-2.2,5.2-5.3,6.6c-3.1,1.4-2.9,1.9-11.6,1.9h-27.4L96,416h87.1v64H224v-64h31.8v64h39.9v-65.4\r\n\t\tc26-1.3,44.4-4.7,59.3-10.3c19.3-7.2,34.3-17.7,44.9-31.5c10.5-13.8,15-34.9,15.9-51.2c0.8-14.5-0.7-33.2-5.2-43.4\r\n\t\tc-5-11.5-12.7-21.6-28.1-30.1c-8.1-4.5-16.1-7.8-25.4-10c5.4-2.5,9.9-5.4,16.3-11c7.5-6.6,13-15.7,15.6-23.3\r\n\t\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.7-20.7-38.1-27c-12.6-4.8-25.5-7.8-45.5-8.9V32L295.7,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M279.7,48v47v15.1l15.1,0.8c16.9,0.9,28.8,3.3,40.7,7.9c13.8,5.3,24.2,12.6,31.1,21.7c5.7,7.6,9,19.4,10,36.2\r\n\t\tc0.6,8.8-1,17.1-2.6,22c-1.5,4.4-5.3,11.3-11.1,16.4c-5.4,4.8-8.6,6.7-12.3,8.4l-42.1,19.3l45,10.8c7.4,1.8,14,4.4,21.4,8.5\r\n\t\tc13.2,7.3,18,15.1,21.2,22.5c2.9,6.7,4.6,22.2,3.9,36.2c-0.7,13.4-4.4,31.5-12.6,42.3c-8.6,11.2-21.3,20.1-37.8,26.3\r\n\t\tc-13.6,5.1-31.1,8.1-54.5,9.3l-15.2,0.7v15.2V464h-8v-48v-16h-16H224h-16v16v48h-9v-48v-16h-16h-67.2l3-16h12.8\r\n\t\tc8.6,0,12.1-0.4,17.5-3c0.2-0.1,0.4-0.2,0.7-0.3c8.1-3.7,11-10.6,12.2-13.6c0.1-0.3,0.3-0.7,0.3-0.8c2.9-5.9,3-13.1,3-24.4v-178\r\n\t\tc0-11.7-0.1-13.6-3.1-19.5c-2.9-5.8-7.3-10.1-13.4-13c-5.9-2.8-13.2-3.4-24.5-3.4h-12.9v-16h71.6h16V96V48h9v48v16h16h31.8h16V96\r\n\t\tV48H279.7 M295.7,32h-39.9v64H224V32h-40.9v64H96v48h28.4c8.7,0,14.5,0.3,17.6,1.8c3.1,1.5,4.7,3.3,6,5.8c1.3,2.5,1.4,3.1,1.4,12.3\r\n\t\tv178c0,9-0.1,14.7-0.9,17.6c-1.2,2.7-2.2,5.2-5.3,6.6c-3.1,1.4-2.9,1.9-11.6,1.9h-27.4L96,416h87.1v64H224v-64h31.8v64h39.9v-65.4\r\n\t\tc26-1.3,44.4-4.7,59.3-10.3c19.3-7.2,34.3-17.7,44.9-31.5c10.5-13.8,15-34.9,15.9-51.2c0.8-14.5-0.7-33.2-5.2-43.4\r\n\t\tc-5-11.5-12.7-21.6-28.1-30.1c-8.1-4.5-16.1-7.8-25.4-10c5.4-2.5,9.9-5.4,16.3-11c7.5-6.6,13-15.7,15.6-23.3\r\n\t\tc2.6-7.5,4.1-18,3.5-28.2c-1.1-16.8-4.4-33.1-13.2-44.8c-8.8-11.7-21.7-20.7-38.1-27c-12.6-4.8-25.5-7.8-45.5-8.9V32L295.7,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,150 224,150 224,224 256,224 256,150 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,150 224,150 224,224 256,224 256,150 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,272h-32v90h32V272L256,272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,272h-32v90h32V272L256,272z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M296,153.9v65.6c6-2.9,9.5-6.8,13.3-11.7c4.6-6,7-12.9,7-20.7c0-8.1-2.4-15-6.7-20.8C305.7,161.2,302,156.4,296,153.9\r\n\t\t\tL296,153.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M296,153.9v65.6c6-2.9,9.5-6.8,13.3-11.7c4.6-6,7-12.9,7-20.7c0-8.1-2.4-15-6.7-20.8C305.7,161.2,302,156.4,296,153.9\r\n\t\t\tL296,153.9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M296,273.6v82.8c2-0.6,3.8-0.8,5.8-1.6c9.8-3.8,15.8-7.9,23.6-14.7c7.5-6.6,9.7-15.9,9.7-26.6c0-9.1-3.3-16.9-7.9-23.2\r\n\t\t\tc-4.6-6.3-11.7-9.9-19.4-13.2C304.1,275.4,301,274.4,296,273.6L296,273.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M296,273.6v82.8c2-0.6,3.8-0.8,5.8-1.6c9.8-3.8,15.8-7.9,23.6-14.7c7.5-6.6,9.7-15.9,9.7-26.6c0-9.1-3.3-16.9-7.9-23.2\r\n\t\t\tc-4.6-6.3-11.7-9.9-19.4-13.2C304.1,275.4,301,274.4,296,273.6L296,273.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialBitcoinOutline = socialBitcoinOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialBuffer.js b/dist/ionicons/socialBuffer.js
new file mode 100644
index 000000000..c0fb5c354
--- /dev/null
+++ b/dist/ionicons/socialBuffer.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialBuffer = void 0;
+var socialBuffer = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialBuffer = socialBuffer;
\ No newline at end of file
diff --git a/dist/ionicons/socialBufferOutline.js b/dist/ionicons/socialBufferOutline.js
new file mode 100644
index 000000000..eb42cd1be
--- /dev/null
+++ b/dist/ionicons/socialBufferOutline.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialBufferOutline = void 0;
+var socialBufferOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z M246.8,81.6\r\n\t\t\tc1.6-0.8,4.9-1.6,9.2-1.6c4.3,0,7.5,0.8,9.2,1.6l155.5,75.1l-155.5,75.1c-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6\r\n\t\t\tL91.3,156.7L246.8,81.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M70.7,164.5l169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7c8.9-4.3,8.9-11.3,0-15.6L272.1,67.2\r\n\t\t\tc-4.4-2.1-10.3-3.2-16.1-3.2s-11.7,1.1-16.1,3.2L70.7,148.9C61.8,153.2,61.8,160.2,70.7,164.5z M246.8,81.6\r\n\t\t\tc1.6-0.8,4.9-1.6,9.2-1.6c4.3,0,7.5,0.8,9.2,1.6l155.5,75.1l-155.5,75.1c-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6\r\n\t\t\tL91.3,156.7L246.8,81.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z M265.2,331.1\r\n\t\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,256l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\t\tl122.7-59.3l18.9,9.1L265.2,331.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M441.3,248.2c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1s-124.8,60.2-124.8,60.2c-4.5,2.1-10.3,3.2-16.1,3.2\r\n\t\t\ts-11.7-1.1-16.1-3.2c0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6\r\n\t\t\tl169.2,81.7c4.4,2.1,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,259.5,450.2,252.5,441.3,248.2z M265.2,331.1\r\n\t\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,256l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\t\tl122.7-59.3l18.9,9.1L265.2,331.1z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z M265.2,430.4\r\n\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,355.3l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\tl122.7-59.3l18.9,9.1L265.2,430.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M441.3,347.5c0,0-30.9-14.9-35-16.9s-5.2-1.9-9.5,0.1S272.1,391,272.1,391c-4.5,2.1-10.3,3.2-16.1,3.2s-11.7-1.1-16.1-3.2\r\n\t\tc0,0-117.3-56.6-122.8-59.3c-6-2.9-7.7-2.9-13.1-0.3c-5.6,2.7-33.4,16.1-33.4,16.1c-8.9,4.3-8.9,11.3,0,15.6l169.2,81.7\r\n\t\tc4.4,2.2,10.3,3.2,16.1,3.2s11.7-1.1,16.1-3.2l169.2-81.7C450.2,358.8,450.2,351.8,441.3,347.5z M265.2,430.4\r\n\t\tc-1.6,0.8-4.9,1.6-9.2,1.6c-4.3,0-7.5-0.8-9.2-1.6L91.3,355.3l18.9-9.1l122.7,59.3c6.4,3.1,14.6,4.8,23.1,4.8s16.6-1.7,23.1-4.8\r\n\t\tl122.7-59.3l18.9,9.1L265.2,430.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialBufferOutline = socialBufferOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialChrome.js b/dist/ionicons/socialChrome.js
new file mode 100644
index 000000000..97f0e3b93
--- /dev/null
+++ b/dist/ionicons/socialChrome.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialChrome = void 0;
+var socialChrome = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M188.8,255.925c0,36.946,30.243,67.178,67.2,67.178s67.199-30.231,67.199-67.178c0-36.945-30.242-67.179-67.199-67.179\r\n\t\tS188.8,218.98,188.8,255.925z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M188.8,255.925c0,36.946,30.243,67.178,67.2,67.178s67.199-30.231,67.199-67.178c0-36.945-30.242-67.179-67.199-67.179\r\n\t\tS188.8,218.98,188.8,255.925z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M476.752,217.795c-0.009,0.005-0.016,0.038-0.024,0.042c-1.701-9.877-4.04-19.838-6.989-28.838h-0.107\r\n\t\tc2.983,9,5.352,19,7.072,29h-0.002c-1.719-10-4.088-20-7.07-29h-155.39c19.044,17,31.358,40.175,31.358,67.052\r\n\t\tc0,16.796-4.484,31.284-12.314,44.724L231.044,478.452c0,0-0.009,0.264-0.014,0.264l-0.01,0.284c0.005,0,0.009,0,0.015,0\r\n\t\tl-0.005-0.262c8.203,0.92,16.531,1.262,24.97,1.262c6.842,0,13.609-0.393,20.299-1.002c10.135-0.911,20.077-2.519,29.777-4.733\r\n\t\tC405.68,451.525,480,362.404,480,255.941C480,242.942,478.879,230.188,476.752,217.795z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M476.752,217.795c-0.009,0.005-0.016,0.038-0.024,0.042c-1.701-9.877-4.04-19.838-6.989-28.838h-0.107\r\n\t\tc2.983,9,5.352,19,7.072,29h-0.002c-1.719-10-4.088-20-7.07-29h-155.39c19.044,17,31.358,40.175,31.358,67.052\r\n\t\tc0,16.796-4.484,31.284-12.314,44.724L231.044,478.452c0,0-0.009,0.264-0.014,0.264l-0.01,0.284c0.005,0,0.009,0,0.015,0\r\n\t\tl-0.005-0.262c8.203,0.92,16.531,1.262,24.97,1.262c6.842,0,13.609-0.393,20.299-1.002c10.135-0.911,20.077-2.519,29.777-4.733\r\n\t\tC405.68,451.525,480,362.404,480,255.941C480,242.942,478.879,230.188,476.752,217.795z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,345.496c-33.601,0-61.601-17.91-77.285-44.785L76.006,123.047l-0.137-0.236\r\n\t\tc-10.293,13.896-19.015,29.022-25.903,45.123C38.407,194.945,32,224.686,32,255.925c0,62.695,25.784,119.36,67.316,160.009\r\n\t\tc29.342,28.719,66.545,49.433,108.088,58.619l0.029-0.051l77.683-134.604C276.157,343.256,266.085,345.496,256,345.496z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,345.496c-33.601,0-61.601-17.91-77.285-44.785L76.006,123.047l-0.137-0.236\r\n\t\tc-10.293,13.896-19.015,29.022-25.903,45.123C38.407,194.945,32,224.686,32,255.925c0,62.695,25.784,119.36,67.316,160.009\r\n\t\tc29.342,28.719,66.545,49.433,108.088,58.619l0.029-0.051l77.683-134.604C276.157,343.256,266.085,345.496,256,345.496z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M91.292,104.575l77.35,133.25C176.483,197.513,212.315,166,256,166h205.172c-6.921-15-15.594-30.324-25.779-43.938\r\n\t\tc0.039,0.021,0.078,0.053,0.117,0.074C445.644,135.712,454.278,151,461.172,166h0.172c-6.884-15-15.514-30.38-25.668-43.99\r\n\t\tc-0.115-0.06-0.229-0.168-0.342-0.257C394.475,67.267,329.359,32,256,32c-26.372,0-51.673,4.569-75.172,12.936\r\n\t\tc-34.615,12.327-65.303,32.917-89.687,59.406l0.142,0.243C91.286,104.581,91.289,104.578,91.292,104.575z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M91.292,104.575l77.35,133.25C176.483,197.513,212.315,166,256,166h205.172c-6.921-15-15.594-30.324-25.779-43.938\r\n\t\tc0.039,0.021,0.078,0.053,0.117,0.074C445.644,135.712,454.278,151,461.172,166h0.172c-6.884-15-15.514-30.38-25.668-43.99\r\n\t\tc-0.115-0.06-0.229-0.168-0.342-0.257C394.475,67.267,329.359,32,256,32c-26.372,0-51.673,4.569-75.172,12.936\r\n\t\tc-34.615,12.327-65.303,32.917-89.687,59.406l0.142,0.243C91.286,104.581,91.289,104.578,91.292,104.575z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialChrome = socialChrome;
\ No newline at end of file
diff --git a/dist/ionicons/socialChromeOutline.js b/dist/ionicons/socialChromeOutline.js
new file mode 100644
index 000000000..134f4135b
--- /dev/null
+++ b/dist/ionicons/socialChromeOutline.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialChromeOutline = void 0;
+var socialChromeOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "Icon"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z M256,76.799\r\n\t\t\tc66.084,0,124.315,35.843,154.558,89.602H256c-43.685,0-79.517,31.358-87.358,71.684l-53.758-92.969\r\n\t\t\tC147.358,103.685,198.884,76.799,256,76.799z M323.2,256c0,36.957-30.243,67.2-67.2,67.2s-67.2-30.243-67.2-67.2\r\n\t\t\ts30.243-67.2,67.2-67.2S323.2,219.043,323.2,256z M76.799,256c0-32.484,8.958-62.716,24.644-89.6L178.715,300.8l0,0\r\n\t\t\tc15.685,26.885,43.685,44.8,77.285,44.8c10.085,0,20.157-2.241,29.116-5.6l-53.758,92.958C144,421.758,76.799,346.715,76.799,256z\r\n\t\t\t M256,435.201L333.285,300.8l0,0c7.831-13.442,12.314-28,12.314-44.8c0-26.885-12.314-50.399-31.358-67.2h107.517\r\n\t\t\tc8.957,21.284,13.443,43.685,13.443,67.2C435.201,354.557,354.557,435.201,256,435.201z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.8,32,32,132.8,32,256s100.8,224,224,224s224-100.8,224-224S379.2,32,256,32z M256,76.799\r\n\t\t\tc66.084,0,124.315,35.843,154.558,89.602H256c-43.685,0-79.517,31.358-87.358,71.684l-53.758-92.969\r\n\t\t\tC147.358,103.685,198.884,76.799,256,76.799z M323.2,256c0,36.957-30.243,67.2-67.2,67.2s-67.2-30.243-67.2-67.2\r\n\t\t\ts30.243-67.2,67.2-67.2S323.2,219.043,323.2,256z M76.799,256c0-32.484,8.958-62.716,24.644-89.6L178.715,300.8l0,0\r\n\t\t\tc15.685,26.885,43.685,44.8,77.285,44.8c10.085,0,20.157-2.241,29.116-5.6l-53.758,92.958C144,421.758,76.799,346.715,76.799,256z\r\n\t\t\t M256,435.201L333.285,300.8l0,0c7.831-13.442,12.314-28,12.314-44.8c0-26.885-12.314-50.399-31.358-67.2h107.517\r\n\t\t\tc8.957,21.284,13.443,43.685,13.443,67.2C435.201,354.557,354.557,435.201,256,435.201z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialChromeOutline = socialChromeOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialCodepen.js b/dist/ionicons/socialCodepen.js
new file mode 100644
index 000000000..699362461
--- /dev/null
+++ b/dist/ionicons/socialCodepen.js
@@ -0,0 +1,111 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialCodepen = void 0;
+var socialCodepen = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M241.239,303.936c-15.322-10.357-30.742-20.569-46.062-30.93c-2.03-1.373-3.43-1.472-5.502-0.029l-38.871,26.154\r\n\t\tC181.966,319.905,244,361.317,244,361.317v-53.786C243.988,306.307,242.447,304.751,241.239,303.936z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M241.239,303.936c-15.322-10.357-30.742-20.569-46.062-30.93c-2.03-1.373-3.43-1.472-5.502-0.029l-38.871,26.154\r\n\t\tC181.966,319.905,244,361.317,244,361.317v-53.786C243.988,306.307,242.447,304.751,241.239,303.936z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M195.092,240.666c15.454-10.16,30.851-20.409,46.109-30.86c1.486-1.018,2.775-3.509,2.799-5.334v-51.706\r\n\t\tc0,0-62.033,41.124-93.262,61.942c13.7,9.159,26.671,17.913,39.787,26.443C191.545,241.813,193.921,241.435,195.092,240.666z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M195.092,240.666c15.454-10.16,30.851-20.409,46.109-30.86c1.486-1.018,2.775-3.509,2.799-5.334v-51.706\r\n\t\tc0,0-62.033,41.124-93.262,61.942c13.7,9.159,26.671,17.913,39.787,26.443C191.545,241.813,193.921,241.435,195.092,240.666z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M269.838,209.354c15.811,10.703,31.683,21.314,47.627,31.815c0.916,0.604,2.92,0.602,3.839,0l39.751-26.467L268,152.484\r\n\t\tv53.35C268.01,207.035,268.805,208.655,269.838,209.354z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M269.838,209.354c15.811,10.703,31.683,21.314,47.627,31.815c0.916,0.604,2.92,0.602,3.839,0l39.751-26.467L268,152.484\r\n\t\tv53.35C268.01,207.035,268.805,208.655,269.838,209.354z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M258.109,230.369c-1.21-0.802-3.611-0.528-4.743,0.168c-4.817,2.962-9.463,6.203-14.164,9.355\r\n\t\tc-8.248,5.53-25.356,17.023-25.356,17.023l38.842,25.865c1.748,1.157,4.436,1.22,6.26,0.111l39.014-25.993\r\n\t\tC297.963,256.898,263.883,234.197,258.109,230.369z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M258.109,230.369c-1.21-0.802-3.611-0.528-4.743,0.168c-4.817,2.962-9.463,6.203-14.164,9.355\r\n\t\tc-8.248,5.53-25.356,17.023-25.356,17.023l38.842,25.865c1.748,1.157,4.436,1.22,6.26,0.111l39.014-25.993\r\n\t\tC297.963,256.898,263.883,234.197,258.109,230.369z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "141,237.116 141,276.725 170.622,256.887 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "141,237.116 141,276.725 170.622,256.887 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M395,297.006\r\n\t\tc0,5.785-2.652,9.868-7.511,13.094c-41.142,27.314-82.251,54.714-123.286,82.188c-5.854,3.918-11.174,3.754-16.984-0.137\r\n\t\tc-40.783-27.314-81.719-54.546-122.625-81.676c-5.11-3.389-7.594-7.557-7.594-13.73v-79.729c0-6.141,2.521-10.332,7.624-13.716\r\n\t\tc40.906-27.13,81.939-54.363,122.724-81.676c5.818-3.896,11.094-4.007,16.938-0.095c41.036,27.474,82.126,54.869,123.261,82.195\r\n\t\tc4.678,3.106,7.453,6.943,7.453,12.66V297.006z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32z M395,297.006\r\n\t\tc0,5.785-2.652,9.868-7.511,13.094c-41.142,27.314-82.251,54.714-123.286,82.188c-5.854,3.918-11.174,3.754-16.984-0.137\r\n\t\tc-40.783-27.314-81.719-54.546-122.625-81.676c-5.11-3.389-7.594-7.557-7.594-13.73v-79.729c0-6.141,2.521-10.332,7.624-13.716\r\n\t\tc40.906-27.13,81.939-54.363,122.724-81.676c5.818-3.896,11.094-4.007,16.938-0.095c41.036,27.474,82.126,54.869,123.261,82.195\r\n\t\tc4.678,3.106,7.453,6.943,7.453,12.66V297.006z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M316.247,273.234c-15.054,10.222-30.188,20.326-45.386,30.332c-2.412,1.588-2.888,3.318-2.861,6.189v51.346l93.039-62.004\r\n\t\tl-38.527-25.882C320.167,271.611,318.582,271.648,316.247,273.234z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M316.247,273.234c-15.054,10.222-30.188,20.326-45.386,30.332c-2.412,1.588-2.888,3.318-2.861,6.189v51.346l93.039-62.004\r\n\t\tl-38.527-25.882C320.167,271.611,318.582,271.648,316.247,273.234z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "370,276.676 370,237.06 340.41,256.933 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "370,276.676 370,237.06 340.41,256.933 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialCodepen = socialCodepen;
\ No newline at end of file
diff --git a/dist/ionicons/socialCodepenOutline.js b/dist/ionicons/socialCodepenOutline.js
new file mode 100644
index 000000000..aafb5abf4
--- /dev/null
+++ b/dist/ionicons/socialCodepenOutline.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialCodepenOutline = void 0;
+var socialCodepenOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M387.547,203.724c-41.135-27.326-82.225-54.721-123.261-82.195\r\n\t\tc-5.844-3.912-11.12-3.802-16.938,0.095c-40.785,27.313-81.818,54.546-122.724,81.676c-5.103,3.384-7.624,7.575-7.624,13.716\r\n\t\tv79.729c0,6.174,2.484,10.342,7.594,13.73c40.906,27.13,81.841,54.361,122.625,81.676c5.81,3.891,11.131,4.055,16.984,0.137\r\n\t\tc41.035-27.474,82.145-54.873,123.286-82.188c4.858-3.226,7.511-7.309,7.511-13.094v-80.623\r\n\t\tC395,210.667,392.225,206.83,387.547,203.724z M268,152.484l93.055,62.218l-39.751,26.467c-0.919,0.603-2.923,0.604-3.839,0\r\n\t\tc-15.944-10.501-31.816-21.113-47.627-31.815c-1.033-0.699-1.828-2.319-1.838-3.52V152.484z M244,152.765v51.706\r\n\t\tc-0.024,1.825-1.313,4.316-2.799,5.334c-15.258,10.451-30.655,20.701-46.109,30.86c-1.17,0.77-3.547,1.148-4.566,0.485\r\n\t\tc-13.116-8.531-26.087-17.284-39.787-26.443C181.967,193.889,244,152.765,244,152.765z M141,237.116l29.622,19.771L141,276.725\r\n\t\tV237.116z M244,361.317c0,0-62.034-41.412-93.196-62.187l38.871-26.154c2.072-1.442,3.473-1.344,5.502,0.029\r\n\t\tc15.32,10.36,30.74,20.572,46.062,30.93c1.208,0.815,2.749,2.371,2.761,3.596V361.317z M258.949,282.892\r\n\t\tc-1.824,1.108-4.512,1.046-6.26-0.111l-38.842-25.865c0,0,17.108-11.493,25.356-17.023c4.701-3.152,9.346-6.393,14.164-9.355\r\n\t\tc1.132-0.696,3.532-0.97,4.743-0.168c5.773,3.829,39.854,26.53,39.854,26.53L258.949,282.892z M268,361.102v-51.346\r\n\t\tc-0.026-2.871,0.449-4.602,2.861-6.189c15.198-10.006,30.332-20.11,45.386-30.332c2.335-1.586,3.92-1.623,6.265-0.019\r\n\t\tl38.527,25.882L268,361.102z M370,276.676l-29.59-19.743L370,237.06V276.676z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M387.547,203.724c-41.135-27.326-82.225-54.721-123.261-82.195\r\n\t\tc-5.844-3.912-11.12-3.802-16.938,0.095c-40.785,27.313-81.818,54.546-122.724,81.676c-5.103,3.384-7.624,7.575-7.624,13.716\r\n\t\tv79.729c0,6.174,2.484,10.342,7.594,13.73c40.906,27.13,81.841,54.361,122.625,81.676c5.81,3.891,11.131,4.055,16.984,0.137\r\n\t\tc41.035-27.474,82.145-54.873,123.286-82.188c4.858-3.226,7.511-7.309,7.511-13.094v-80.623\r\n\t\tC395,210.667,392.225,206.83,387.547,203.724z M268,152.484l93.055,62.218l-39.751,26.467c-0.919,0.603-2.923,0.604-3.839,0\r\n\t\tc-15.944-10.501-31.816-21.113-47.627-31.815c-1.033-0.699-1.828-2.319-1.838-3.52V152.484z M244,152.765v51.706\r\n\t\tc-0.024,1.825-1.313,4.316-2.799,5.334c-15.258,10.451-30.655,20.701-46.109,30.86c-1.17,0.77-3.547,1.148-4.566,0.485\r\n\t\tc-13.116-8.531-26.087-17.284-39.787-26.443C181.967,193.889,244,152.765,244,152.765z M141,237.116l29.622,19.771L141,276.725\r\n\t\tV237.116z M244,361.317c0,0-62.034-41.412-93.196-62.187l38.871-26.154c2.072-1.442,3.473-1.344,5.502,0.029\r\n\t\tc15.32,10.36,30.74,20.572,46.062,30.93c1.208,0.815,2.749,2.371,2.761,3.596V361.317z M258.949,282.892\r\n\t\tc-1.824,1.108-4.512,1.046-6.26-0.111l-38.842-25.865c0,0,17.108-11.493,25.356-17.023c4.701-3.152,9.346-6.393,14.164-9.355\r\n\t\tc1.132-0.696,3.532-0.97,4.743-0.168c5.773,3.829,39.854,26.53,39.854,26.53L258.949,282.892z M268,361.102v-51.346\r\n\t\tc-0.026-2.871,0.449-4.602,2.861-6.189c15.198-10.006,30.332-20.11,45.386-30.332c2.335-1.586,3.92-1.623,6.265-0.019\r\n\t\tl38.527,25.882L268,361.102z M370,276.676l-29.59-19.743L370,237.06V276.676z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c51.285,0,99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256s-19.972,99.5-56.235,135.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32\r\n\t\tL256,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64c51.285,0,99.5,19.972,135.765,56.235C428.028,156.5,448,204.715,448,256s-19.972,99.5-56.235,135.765\r\n\t\tC355.5,428.028,307.285,448,256,448s-99.5-19.972-135.765-56.235C83.972,355.5,64,307.285,64,256s19.972-99.5,56.235-135.765\r\n\t\tC156.5,83.972,204.715,64,256,64 M256,32C132.288,32,32,132.288,32,256s100.288,224,224,224s224-100.288,224-224S379.712,32,256,32\r\n\t\tL256,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialCodepenOutline = socialCodepenOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialCss3.js b/dist/ionicons/socialCss3.js
new file mode 100644
index 000000000..9afc76729
--- /dev/null
+++ b/dist/ionicons/socialCss3.js
@@ -0,0 +1,53 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialCss3 = void 0;
+var socialCss3 = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "transform": "translate(336 96)"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "icon-css3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "icon-css3"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M-79.718,243.488L-79.718,243.488z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M-79.718,243.488L-79.718,243.488z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M-272-64l34.946,403.219L-80.233,384l157.259-44.85L112-64H-272z M18.676,270.898l-98.607,28.125l-98.458-28.248\r\n\t\t\tL-185.136,193h48.253l3.433,39.562l53.586,15.163l0.132,0.273h0.034l53.467-14.852L-20.619,169H-133l-4-50h120.646l4.396-51H-196\r\n\t\t\tl-4-49H40.58L18.676,270.898z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M-272-64l34.946,403.219L-80.233,384l157.259-44.85L112-64H-272z M18.676,270.898l-98.607,28.125l-98.458-28.248\r\n\t\t\tL-185.136,193h48.253l3.433,39.562l53.586,15.163l0.132,0.273h0.034l53.467-14.852L-20.619,169H-133l-4-50h120.646l4.396-51H-196\r\n\t\t\tl-4-49H40.58L18.676,270.898z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialCss3 = socialCss3;
\ No newline at end of file
diff --git a/dist/ionicons/socialCss3Outline.js b/dist/ionicons/socialCss3Outline.js
new file mode 100644
index 000000000..d5d101cbe
--- /dev/null
+++ b/dist/ionicons/socialCss3Outline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialCss3Outline = void 0;
+var socialCss3Outline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M354.676,366.898l-98.608,28.125l-98.458-28.248L150.864,289h48.253l3.433,39.563l53.586,15.163l0.132,0.273h0.034\r\n\t\tl53.467-14.852L315.381,265H203l-4-50h120.646l4.396-51H140l-4-49h240.58L354.676,366.898z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M354.676,366.898l-98.608,28.125l-98.458-28.248L150.864,289h48.253l3.433,39.563l53.586,15.163l0.132,0.273h0.034\r\n\t\tl53.467-14.852L315.381,265H203l-4-50h120.646l4.396-51H140l-4-49h240.58L354.676,366.898z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialCss3Outline = socialCss3Outline;
\ No newline at end of file
diff --git a/dist/ionicons/socialDesignernews.js b/dist/ionicons/socialDesignernews.js
new file mode 100644
index 000000000..298e2759d
--- /dev/null
+++ b/dist/ionicons/socialDesignernews.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialDesignernews = void 0;
+var socialDesignernews = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "290.4,145 227,96 290.6,198.2 \t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "290.4,145 227,96 290.6,198.2 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M329,96v79.6V259h-36.4l-63.2-98.6l1.7,98.6H191V152l-37.3-29.3c1,1.2,2,2.4,2.9,3.7c10,13.9,15,30.5,15,50.5\r\n\t\t\tc0,49.2-30.6,82.1-76.9,82.1H32v0.4L231.6,416H480V214.1L329,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M329,96v79.6V259h-36.4l-63.2-98.6l1.7,98.6H191V152l-37.3-29.3c1,1.2,2,2.4,2.9,3.7c10,13.9,15,30.5,15,50.5\r\n\t\t\tc0,49.2-30.6,82.1-76.9,82.1H32v0.4L231.6,416H480V214.1L329,96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M129.9,178.1c0-29-14.2-45.1-39.7-45.1H71v89h19C116,222,129.9,206.6,129.9,178.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M129.9,178.1c0-29-14.2-45.1-39.7-45.1H71v89h19C116,222,129.9,206.6,129.9,178.1z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialDesignernews = socialDesignernews;
\ No newline at end of file
diff --git a/dist/ionicons/socialDesignernewsOutline.js b/dist/ionicons/socialDesignernewsOutline.js
new file mode 100644
index 000000000..a8f09b30d
--- /dev/null
+++ b/dist/ionicons/socialDesignernewsOutline.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialDesignernewsOutline = void 0;
+var socialDesignernewsOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "290.9,145.9 226.5,96 291.1,198.8 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "290.9,145.9 226.5,96 291.1,198.8 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32.5,260"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M32.5,260"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M329,96v80.3V260h-35.9l-63.2-98l1.7,98H191V152.9l-37.1-29.1c1,1.2,2.1,2.4,3,3.6c10,13.8,15,30.7,15,50.5\r\n\t\t\tc0,48.9-30.5,82-76.8,82H32l200.1,156H480V214.7L329,96z M464,400H237.7L78.6,276h16.5c13.5,0,26.2-2.7,37.7-7.4\r\n\t\t\tc11.5-4.7,21.4-11.8,29.8-20.7c4.8-5.1,9.4-11,12.4-17.1v28.7V276h16.2h40.4H248l-0.3-16.5l-0.7-41.9l32.6,50.7l4.7,7.6h8.8h36.8\r\n\t\t\tH345v-16.5v-83.1v-47l0.2,0.3L464,222.4V400z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M329,96v80.3V260h-35.9l-63.2-98l1.7,98H191V152.9l-37.1-29.1c1,1.2,2.1,2.4,3,3.6c10,13.8,15,30.7,15,50.5\r\n\t\t\tc0,48.9-30.5,82-76.8,82H32l200.1,156H480V214.7L329,96z M464,400H237.7L78.6,276h16.5c13.5,0,26.2-2.7,37.7-7.4\r\n\t\t\tc11.5-4.7,21.4-11.8,29.8-20.7c4.8-5.1,9.4-11,12.4-17.1v28.7V276h16.2h40.4H248l-0.3-16.5l-0.7-41.9l32.6,50.7l4.7,7.6h8.8h36.8\r\n\t\t\tH345v-16.5v-83.1v-47l0.2,0.3L464,222.4V400z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M90.6,150.4c11,0,23.7,3.2,23.7,28.8c0,6.9-1,16.3-6,21.8c-3.6,3.9-9.6,6-17.7,6H87v-57h3 M90.7,134H71v89h19.5\r\n\t\tc26,0,39.9-15.6,39.9-43.9C130.4,150.3,116.1,134,90.7,134L90.7,134z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M90.6,150.4c11,0,23.7,3.2,23.7,28.8c0,6.9-1,16.3-6,21.8c-3.6,3.9-9.6,6-17.7,6H87v-57h3 M90.7,134H71v89h19.5\r\n\t\tc26,0,39.9-15.6,39.9-43.9C130.4,150.3,116.1,134,90.7,134L90.7,134z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialDesignernewsOutline = socialDesignernewsOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialDribbble.js b/dist/ionicons/socialDribbble.js
new file mode 100644
index 000000000..0d083a63a
--- /dev/null
+++ b/dist/ionicons/socialDribbble.js
@@ -0,0 +1,115 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialDribbble = void 0;
+var socialDribbble = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M256,415.5\r\n\t\t\tc-88.1,0-159.5-71.4-159.5-159.5c0-88.1,71.4-159.5,159.5-159.5c88.1,0,159.5,71.4,159.5,159.5C415.5,344.1,344.1,415.5,256,415.5\r\n\t\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M256,415.5\r\n\t\t\tc-88.1,0-159.5-71.4-159.5-159.5c0-88.1,71.4-159.5,159.5-159.5c88.1,0,159.5,71.4,159.5,159.5C415.5,344.1,344.1,415.5,256,415.5\r\n\t\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M306.3,246.7c23.4-2.2,50.9-2.9,77.2-2.4c-2.3-25.4-12-48.7-27-67.6c-16.5,14.9-38,28.1-63.3,39\r\n\t\t\tC297.8,225.7,302.1,236.1,306.3,246.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M306.3,246.7c23.4-2.2,50.9-2.9,77.2-2.4c-2.3-25.4-12-48.7-27-67.6c-16.5,14.9-38,28.1-63.3,39\r\n\t\t\tC297.8,225.7,302.1,236.1,306.3,246.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M335.4,155.6C313.6,138.3,286,128,256,128c-5.1,0-10.2,0.3-15.2,0.9c13.8,17.7,26.7,37.6,38.6,59.5\r\n\t\t\tC301.1,179.2,320,168.1,335.4,155.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M335.4,155.6C313.6,138.3,286,128,256,128c-5.1,0-10.2,0.3-15.2,0.9c13.8,17.7,26.7,37.6,38.6,59.5\r\n\t\t\tC301.1,179.2,320,168.1,335.4,155.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M205.9,138.2c-34.1,14.5-60.7,43.4-72,79.1c41.1-0.7,79.6-7,113.4-17.3C234.7,177,220.7,156.3,205.9,138.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M205.9,138.2c-34.1,14.5-60.7,43.4-72,79.1c41.1-0.7,79.6-7,113.4-17.3C234.7,177,220.7,156.3,205.9,138.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M383,272.2c-22.3-0.6-46-0.2-66.9,1.5c4.1,12.3,8.1,24.9,11.5,37.9c3.8,14.6,7,29.1,9.6,43.4\r\n\t\t\tC361.8,334.7,378.8,305.4,383,272.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M383,272.2c-22.3-0.6-46-0.2-66.9,1.5c4.1,12.3,8.1,24.9,11.5,37.9c3.8,14.6,7,29.1,9.6,43.4\r\n\t\t\tC361.8,334.7,378.8,305.4,383,272.2z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M258,256.1c3.9-1.6,8.8-3,14.3-4.3c-3.4-8.3-7.1-16.4-10.8-24.3c-39.1,12.6-84.6,20.3-133.3,21.3\r\n\t\t\tc-0.1,2.4-0.2,4.8-0.2,7.3c0,29.1,9.7,55.9,26,77.4C178.9,301,214.9,274.2,258,256.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M258,256.1c3.9-1.6,8.8-3,14.3-4.3c-3.4-8.3-7.1-16.4-10.8-24.3c-39.1,12.6-84.6,20.3-133.3,21.3\r\n\t\t\tc-0.1,2.4-0.2,4.8-0.2,7.3c0,29.1,9.7,55.9,26,77.4C178.9,301,214.9,274.2,258,256.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M282.6,278.2c-6.9,1.5-12.9,3.2-17.4,5.3c-37.1,16.8-68.3,41.6-90.4,71.5c22.1,18.2,50.4,29,81.2,29\r\n\t\t\tc18.5,0,36-3.9,51.8-10.9c-2.7-15.1-6-30.3-10-45.7C293.4,310.5,288.2,294,282.6,278.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M282.6,278.2c-6.9,1.5-12.9,3.2-17.4,5.3c-37.1,16.8-68.3,41.6-90.4,71.5c22.1,18.2,50.4,29,81.2,29\r\n\t\t\tc18.5,0,36-3.9,51.8-10.9c-2.7-15.1-6-30.3-10-45.7C293.4,310.5,288.2,294,282.6,278.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialDribbble = socialDribbble;
\ No newline at end of file
diff --git a/dist/ionicons/socialDribbbleOutline.js b/dist/ionicons/socialDribbbleOutline.js
new file mode 100644
index 000000000..d295a3da6
--- /dev/null
+++ b/dist/ionicons/socialDribbbleOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialDribbbleOutline = void 0;
+var socialDribbbleOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,64C150,64,64,150,64,256c0,106.1,86,192,192,192s192-85.9,192-192C448,150,362,64,256,64z M377.9,152.5\r\n\tc21.6,25.4,35.3,57.6,37.7,92.9c-34.6-1.8-76-1.8-109.2,1.3c-4.2-10.6-8.5-21-13.2-31C331.5,199.1,361,177.3,377.9,152.5z M256,96\r\n\tc38.8,0,74.4,13.8,102.1,36.8c-17.4,22-44.7,41.1-78.7,55.6c-18.6-34.4-40-64-62.8-87.3C229.3,97.9,242.4,96,256,96z M183.6,113.5\r\n\tc23.1,23,44.8,52.3,63.8,86.6c-36.1,11-77.5,17.3-121.7,17.3c-8.4,0-16.6-0.3-24.7-0.8C112.5,171.5,143,134.1,183.6,113.5z\r\n\t M96.3,248.4c9.1,0.4,18.3,0.6,27.6,0.5c50.4-0.6,97.3-8.5,137.6-21.4c3.8,7.9,7.4,16,10.8,24.3c-5.5,1.3-10.4,2.7-14.3,4.3\r\n\tc-55.1,23.1-98.5,60.4-122,105.5c-24.8-28.2-40-65.1-40-105.6C96,253.4,96.1,250.9,96.3,248.4z M256,416c-37,0-71-12.6-98.1-33.7\r\n\tc21.3-42.2,59.3-77.1,107.2-98.8c4.5-2.1,10.5-3.8,17.4-5.3c5.7,15.8,10.8,32.2,15.3,49.2c6.9,26.5,11.8,52.7,14.8,78.1\r\n\tC295,412.2,276,416,256,416z M342.5,390.5c-3-25.7-7.9-52.1-14.9-78.9c-3.4-13-7.3-25.6-11.5-37.9c31.4-2.6,69-2.2,98.9,0\r\n\tC409.6,322.8,382,365,342.5,390.5z"
+ },
+ "children": []
+ }]
+};
+exports.socialDribbbleOutline = socialDribbbleOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialDropbox.js b/dist/ionicons/socialDropbox.js
new file mode 100644
index 000000000..543575c4c
--- /dev/null
+++ b/dist/ionicons/socialDropbox.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialDropbox = void 0;
+var socialDropbox = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "177,77 64,150.9 142.1,213.6 256,143.1 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "177,77 64,150.9 142.1,213.6 256,143.1 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "64,276.3 177,350.2 256,284.1 142.1,213.6 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "64,276.3 177,350.2 256,284.1 142.1,213.6 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "256,284.1 335,350.2 448,276.3 369.9,213.6 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,284.1 335,350.2 448,276.3 369.9,213.6 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "448,150.9 335,77 256,143.1 369.9,213.6 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "448,150.9 335,77 256,143.1 369.9,213.6 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "256.2,298.3 176.4,364.3 142,342.1 142,367 256,435 370,367 370,342.1 335.8,364.3 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256.2,298.3 176.4,364.3 142,342.1 142,367 256,435 370,367 370,342.1 335.8,364.3 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialDropbox = socialDropbox;
\ No newline at end of file
diff --git a/dist/ionicons/socialDropboxOutline.js b/dist/ionicons/socialDropboxOutline.js
new file mode 100644
index 000000000..9576dc78c
--- /dev/null
+++ b/dist/ionicons/socialDropboxOutline.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialDropboxOutline = void 0;
+var socialDropboxOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M177,77.1L64,151l78.3,63L256,143.2L177,77.1z M91.4,153.3l84.5-56.8l52.9,46L143.4,195L91.4,153.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M177,77.1L64,151l78.3,63L256,143.2L177,77.1z M91.4,153.3l84.5-56.8l52.9,46L143.4,195L91.4,153.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M369.8,213L256,284.1l79,66.1l19-12.6v20.2L256,417l-98-58.5V338l19,12.2l79-66.1L142.2,213L64,276.3l78,51.5v39.4\r\n\t\tl114,67.8l114-68.5v-39.2l78-51.2L369.8,213z M143.4,230.9l85.4,55.4l-52.9,44.1l-84.5-55.8L143.4,230.9z M283.2,286.3l85.4-55.4\r\n\t\tl52.1,43.6l-84.5,55.8L283.2,286.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M369.8,213L256,284.1l79,66.1l19-12.6v20.2L256,417l-98-58.5V338l19,12.2l79-66.1L142.2,213L64,276.3l78,51.5v39.4\r\n\t\tl114,67.8l114-68.5v-39.2l78-51.2L369.8,213z M143.4,230.9l85.4,55.4l-52.9,44.1l-84.5-55.8L143.4,230.9z M283.2,286.3l85.4-55.4\r\n\t\tl52.1,43.6l-84.5,55.8L283.2,286.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M448,151L335,77.1l-79,66.1l113.8,70.8L448,151z M283.2,142.6l52.9-46l84.5,56.8L368.6,195L283.2,142.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,151L335,77.1l-79,66.1l113.8,70.8L448,151z M283.2,142.6l52.9-46l84.5,56.8L368.6,195L283.2,142.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialDropboxOutline = socialDropboxOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialEuro.js b/dist/ionicons/socialEuro.js
new file mode 100644
index 000000000..e955cfde7
--- /dev/null
+++ b/dist/ionicons/socialEuro.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialEuro = void 0;
+var socialEuro = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M234,272v-48h131.094l7.149-48H234v-1.83c0-35.92,14.975-58.086,79.25-58.086c26.264,0,55.867,2.498,93.189,8.742\r\n\t\tL416,59.866C377.988,51.123,345.306,48,310.057,48C195.326,48,146,89.225,146,165.43V176H96v48h50v48H96v48h50v26.57\r\n\t\tC146,422.774,195.297,464,310.027,464c35.25,0,67.848-3.123,105.859-11.866l-9.619-64.96c-37.322,6.244-66.781,8.742-93.045,8.742\r\n\t\tc-64.276,0-79.223-18.739-79.223-63.086V320h116.795l7.148-48H234z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M234,272v-48h131.094l7.149-48H234v-1.83c0-35.92,14.975-58.086,79.25-58.086c26.264,0,55.867,2.498,93.189,8.742\r\n\t\tL416,59.866C377.988,51.123,345.306,48,310.057,48C195.326,48,146,89.225,146,165.43V176H96v48h50v48H96v48h50v26.57\r\n\t\tC146,422.774,195.297,464,310.027,464c35.25,0,67.848-3.123,105.859-11.866l-9.619-64.96c-37.322,6.244-66.781,8.742-93.045,8.742\r\n\t\tc-64.276,0-79.223-18.739-79.223-63.086V320h116.795l7.148-48H234z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialEuro = socialEuro;
\ No newline at end of file
diff --git a/dist/ionicons/socialEuroOutline.js b/dist/ionicons/socialEuroOutline.js
new file mode 100644
index 000000000..912af12b7
--- /dev/null
+++ b/dist/ionicons/socialEuroOutline.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialEuroOutline = void 0;
+var socialEuroOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M310.143,64c31.337,0,59.096,2.607,88.137,8.364l-5.06,34.148c-29.405-4.319-55.659-6.429-79.853-6.429\r\n\t\tc-35.025,0-58.535,6.153-74.129,19.365C220.142,135.627,218,158.428,218,174.17v2.33V193h15.867h120.184l-2.383,16H233.867H218\r\n\t\tv15.5v48V289h15.867h105.885l-2.384,16H233.867H218v15.5v12.33c0,19.546,2.338,44.061,21.084,60.274\r\n\t\tc15.042,13.01,37.921,18.812,74.258,18.812c24.534,0,50.197-2.055,79.771-6.42l5.014,34.138\r\n\t\tc-29.031,5.759-56.741,8.366-87.977,8.366c-52.591,0-91.43-9.08-115.565-26.987C172.615,404.711,162,380.361,162,346.57V320.5V305\r\n\t\th-16.133H112v-16h33.867H162v-16.5v-48V209h-16.133H112v-16h33.867H162v-16.5v-11.07c0-33.791,10.613-58.142,32.582-74.442\r\n\t\tC218.715,73.08,257.552,64,310.143,64 M310.209,48C195.479,48,146,89.225,146,165.43V177H96v48h50v48H96v48h50v25.57\r\n\t\tC146,422.774,195.481,464,310.211,464c35.25,0,67.777-3.123,105.789-11.866l-9.411-64.96c-37.323,6.244-66.942,8.742-93.206,8.742\r\n\t\tc-64.275,0-79.383-18.739-79.383-63.086V321h117.162l7.148-48H234v-48h131.461l7.149-48H234v-2.83\r\n\t\tc0-35.92,15.159-58.086,79.434-58.086c26.264,0,55.959,2.498,93.281,8.742L416,60C377.988,51.257,345.458,48,310.209,48L310.209,48\r\n\t\tz"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M310.143,64c31.337,0,59.096,2.607,88.137,8.364l-5.06,34.148c-29.405-4.319-55.659-6.429-79.853-6.429\r\n\t\tc-35.025,0-58.535,6.153-74.129,19.365C220.142,135.627,218,158.428,218,174.17v2.33V193h15.867h120.184l-2.383,16H233.867H218\r\n\t\tv15.5v48V289h15.867h105.885l-2.384,16H233.867H218v15.5v12.33c0,19.546,2.338,44.061,21.084,60.274\r\n\t\tc15.042,13.01,37.921,18.812,74.258,18.812c24.534,0,50.197-2.055,79.771-6.42l5.014,34.138\r\n\t\tc-29.031,5.759-56.741,8.366-87.977,8.366c-52.591,0-91.43-9.08-115.565-26.987C172.615,404.711,162,380.361,162,346.57V320.5V305\r\n\t\th-16.133H112v-16h33.867H162v-16.5v-48V209h-16.133H112v-16h33.867H162v-16.5v-11.07c0-33.791,10.613-58.142,32.582-74.442\r\n\t\tC218.715,73.08,257.552,64,310.143,64 M310.209,48C195.479,48,146,89.225,146,165.43V177H96v48h50v48H96v48h50v25.57\r\n\t\tC146,422.774,195.481,464,310.211,464c35.25,0,67.777-3.123,105.789-11.866l-9.411-64.96c-37.323,6.244-66.942,8.742-93.206,8.742\r\n\t\tc-64.275,0-79.383-18.739-79.383-63.086V321h117.162l7.148-48H234v-48h131.461l7.149-48H234v-2.83\r\n\t\tc0-35.92,15.159-58.086,79.434-58.086c26.264,0,55.959,2.498,93.281,8.742L416,60C377.988,51.257,345.458,48,310.209,48L310.209,48\r\n\t\tz"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialEuroOutline = socialEuroOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialFacebook.js b/dist/ionicons/socialFacebook.js
new file mode 100644
index 000000000..0f9764709
--- /dev/null
+++ b/dist/ionicons/socialFacebook.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialFacebook = void 0;
+var socialFacebook = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,192v-38.1c0-17.2,3.8-25.9,30.5-25.9H352V64h-55.9c-68.5,0-91.1,31.4-91.1,85.3V192h-45v64h45v192h83V256h56.4l7.6-64\r\n\tH288z"
+ },
+ "children": []
+ }]
+};
+exports.socialFacebook = socialFacebook;
\ No newline at end of file
diff --git a/dist/ionicons/socialFacebookOutline.js b/dist/ionicons/socialFacebookOutline.js
new file mode 100644
index 000000000..4dd2b2c4d
--- /dev/null
+++ b/dist/ionicons/socialFacebookOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialFacebookOutline = void 0;
+var socialFacebookOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M288,192v-38.1c0-17.2,3.8-25.9,30.5-25.9H352V64h-55.9c-68.5,0-91.1,31.4-91.1,85.3V192h-45v64h45v192h83V256h56.4l7.6-64\r\n\tH288z M330.2,240h-41.1H272v15.5V432h-51V255.5V240h-14.9H176v-32h30.1H221v-16.5v-42.2c0-24.5,5.4-41.2,15.5-51.8\r\n\tC247.7,85.5,267.6,80,296.1,80H336v32h-17.5c-12,0-27.5,1.1-37.1,11.7c-8.1,9-9.4,20.1-9.4,30.1v37.6V208h17.1H334L330.2,240z"
+ },
+ "children": []
+ }]
+};
+exports.socialFacebookOutline = socialFacebookOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialFoursquare.js b/dist/ionicons/socialFoursquare.js
new file mode 100644
index 000000000..611f63034
--- /dev/null
+++ b/dist/ionicons/socialFoursquare.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialFoursquare = void 0;
+var socialFoursquare = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-130.895,114.4-132.834\r\n\t\t\tc2.921-2.93,2.921-2.93,5.844-2.93c5.844,0,49.192,0,72.767,0c30.574,0,35.49-21.869,38.684-34.752\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559C421.143,51.993,411.745,32,376.764,32z M371.086,301.637\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559 M362.692,96.67l-9.999,51.734c-1.195,5.65-8.287,11.595-14.863,11.595\r\n\t\t\tc-6.575,0-95.917,0-95.917,0C231.473,160,224,166.138,224,176.602v13.448c0,10.473,7.519,17.894,17.965,17.894\r\n\t\t\tc0,0,74.482,0,81.848,0c7.374,0,14.61,8.109,13.016,16.005c-1.602,7.908-9.086,46.569-9.984,50.89\r\n\t\t\tc-0.902,4.328-5.845,11.725-14.611,11.725c-7.388,0-64.269,0-64.269,0c-11.705,0-15.244,1.533-23.074,11.293\r\n\t\t\tc-7.837,9.77-78.256,94.592-78.256,94.592c-0.713,0.822-1.41,0.584-1.41-0.312V95.896c0-6.684,5.793-14.523,14.479-14.523\r\n\t\t\tc0,0,183.713,0,191.173,0C357.912,81.372,364.488,88.004,362.692,96.67z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-130.895,114.4-132.834\r\n\t\t\tc2.921-2.93,2.921-2.93,5.844-2.93c5.844,0,49.192,0,72.767,0c30.574,0,35.49-21.869,38.684-34.752\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559C421.143,51.993,411.745,32,376.764,32z M371.086,301.637\r\n\t\t\tc2.659-10.789,32.489-163.962,42.452-212.559 M362.692,96.67l-9.999,51.734c-1.195,5.65-8.287,11.595-14.863,11.595\r\n\t\t\tc-6.575,0-95.917,0-95.917,0C231.473,160,224,166.138,224,176.602v13.448c0,10.473,7.519,17.894,17.965,17.894\r\n\t\t\tc0,0,74.482,0,81.848,0c7.374,0,14.61,8.109,13.016,16.005c-1.602,7.908-9.086,46.569-9.984,50.89\r\n\t\t\tc-0.902,4.328-5.845,11.725-14.611,11.725c-7.388,0-64.269,0-64.269,0c-11.705,0-15.244,1.533-23.074,11.293\r\n\t\t\tc-7.837,9.77-78.256,94.592-78.256,94.592c-0.713,0.822-1.41,0.584-1.41-0.312V95.896c0-6.684,5.793-14.523,14.479-14.523\r\n\t\t\tc0,0,183.713,0,191.173,0C357.912,81.372,364.488,88.004,362.692,96.67z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialFoursquare = socialFoursquare;
\ No newline at end of file
diff --git a/dist/ionicons/socialFoursquareOutline.js b/dist/ionicons/socialFoursquareOutline.js
new file mode 100644
index 000000000..0c699b46d
--- /dev/null
+++ b/dist/ionicons/socialFoursquareOutline.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialFoursquareOutline = void 0;
+var socialFoursquareOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M398.484,164.452l-27.399,137.185C372.848,294.486,386.545,224.793,398.484,164.452z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M398.484,164.452l-27.399,137.185C372.848,294.486,386.545,224.793,398.484,164.452z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-131.09,114.4-133.027\r\n\t\tc2.921-2.931,2.921-3.125,5.844-3.125c5.843,0,49.192,0,72.766,0c30.575,0,35.49-21.676,38.684-34.559l27.399-137.087\r\n\t\tc6.074-30.702,11.693-58.938,15.053-75.325C421.143,51.944,411.744,32,376.764,32z M376.426,96c0,0-31.575,156.209-36.034,176.834\r\n\t\tC335,297.771,332.75,304,307,304c-17.605,0-62.375,0-62.375,0c-2.747,0-3.868-0.147-6.049,2.041\r\n\t\tc-1.443,1.447-78.168,89.562-78.168,89.562c-19.034,23.396-26.909,31.795-29.033,31.795s-3.375,0-3.375-38.408V91.708\r\n\t\tC128,67.034,128.3,64,157.198,64C181.748,64,352,64,352,64C382,64,382.834,64.833,376.426,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M376.764,32c0,0-205.353,0-238.223,0C105.666,32,96,56.798,96,72.414c0,15.627,0,379.64,0,379.64\r\n\t\tc0,17.591,9.425,24.117,14.718,26.267c5.299,2.155,19.916,3.971,28.673-6.168c0,0,112.469-131.09,114.4-133.027\r\n\t\tc2.921-2.931,2.921-3.125,5.844-3.125c5.843,0,49.192,0,72.766,0c30.575,0,35.49-21.676,38.684-34.559l27.399-137.087\r\n\t\tc6.074-30.702,11.693-58.938,15.053-75.325C421.143,51.944,411.744,32,376.764,32z M376.426,96c0,0-31.575,156.209-36.034,176.834\r\n\t\tC335,297.771,332.75,304,307,304c-17.605,0-62.375,0-62.375,0c-2.747,0-3.868-0.147-6.049,2.041\r\n\t\tc-1.443,1.447-78.168,89.562-78.168,89.562c-19.034,23.396-26.909,31.795-29.033,31.795s-3.375,0-3.375-38.408V91.708\r\n\t\tC128,67.034,128.3,64,157.198,64C181.748,64,352,64,352,64C382,64,382.834,64.833,376.426,96z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M398.484,164.452l15.053-75.374C410.178,105.466,404.559,133.75,398.484,164.452z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M398.484,164.452l15.053-75.374C410.178,105.466,404.559,133.75,398.484,164.452z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M328.573,96c-5.571,0-157.995,0-157.995,0C164.091,96,160,101.594,160,106.586v231.255c0,0.67,0.402,0.975,0.935,0.36\r\n\t\tc0,0,48.202-55.725,54.056-63.021c5.848-7.289,8.491-8.182,17.233-8.182c0,0,56.695,0,62.212,0c6.549,0,10.24-5.75,10.913-8.982\r\n\t\tc0.671-3.228,10.536-48.213,11.732-54.119c1.191-5.897-4.214-11.898-9.722-11.898c-5.5,0-64.805,0-64.805,0\r\n\t\tc-7.803,0-7.554-5.653-7.554-13.476v-5.512c0-7.815-0.282-13.012,7.516-13.012c0,0,70.403,0,75.313,0\r\n\t\tc4.911,0,10.208-4.442,11.102-8.662l8.468-44.042C338.739,100.823,333.828,96,328.573,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M328.573,96c-5.571,0-157.995,0-157.995,0C164.091,96,160,101.594,160,106.586v231.255c0,0.67,0.402,0.975,0.935,0.36\r\n\t\tc0,0,48.202-55.725,54.056-63.021c5.848-7.289,8.491-8.182,17.233-8.182c0,0,56.695,0,62.212,0c6.549,0,10.24-5.75,10.913-8.982\r\n\t\tc0.671-3.228,10.536-48.213,11.732-54.119c1.191-5.897-4.214-11.898-9.722-11.898c-5.5,0-64.805,0-64.805,0\r\n\t\tc-7.803,0-7.554-5.653-7.554-13.476v-5.512c0-7.815-0.282-13.012,7.516-13.012c0,0,70.403,0,75.313,0\r\n\t\tc4.911,0,10.208-4.442,11.102-8.662l8.468-44.042C338.739,100.823,333.828,96,328.573,96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialFoursquareOutline = socialFoursquareOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialFreebsdDevil.js b/dist/ionicons/socialFreebsdDevil.js
new file mode 100644
index 000000000..aba45dbab
--- /dev/null
+++ b/dist/ionicons/socialFreebsdDevil.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialFreebsdDevil = void 0;
+var socialFreebsdDevil = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M502.6,115c-22.5-43.7-58-51-58-51s15.5,32,16,51c0.4,16.1-5.5,28-27.2,33.5s-30.8-2-47.8-17.5\r\n\tS344,104.5,313,103c-40-2-77,9-77,9c-20-25,20-80,20-80c-74.5,29.5-93.7,83.3-96,113.7c-1.9,24.1,8.5,40.8,8.5,40.8s-0.5,27.8-5,42\r\n\tc-3.1,9.8-16.9,25-26,34.5c-12.2,12.7-12.5,38.5,0,57s44,27.5,67,39.5s31.5,21,31.5,21s1,8.3,0.5,15.3s-3.2,14-9,18.2\r\n\tc-5.5,3.9-15.5,0.5-20.5-2s-5-6.2-10.5-8s-7.3-4-6.5-11s2-9-3.5-18.5s-18.5-9.5-29.5-8s-17.3,6.8-17.3,6.8l-16.3-10\r\n\tc0,0,8.5-15.6,5.2-35.6c-7.3-43.8-50-62.8-50-62.8l10.4,44.4c0,0,1.1-2.6,6.4-6.4s8.1-3.6,8.1-3.6s6.6,7.6,9.1,25.3\r\n\tc2.5,18-6.7,27.2-6.7,27.2l-28.3-18l1-14.5L39.8,309L56,345.7l15-4l24,22.7c0,0-15.7,11.7-33,11.7c-11,0-22-6-22-6s-1.4-1-0.8-5.5\r\n\tc0.7-5,6.8-12.5,6.8-12.5H0c0,0,27.3,38.7,65,38.7c31,0,44.2-12.5,44.2-12.5L128,397c0,0,3,5.5,0,7s-7,3.5-9,15s18,29,18,29\r\n\tc21.8,17.8,7,32,7,32h272c-9-13-22.5-18-32-32c0,0-44.8-58.4-1.8-90.4c57.4-42.7,42.8-69.4,41.2-101.4c0,0,31.8-6.6,59.3-33.6\r\n\tS521.6,151.8,502.6,115z M195,203c-16.9,4.5-22.5,35.5-22.5,35.5c1.5-63,57.5-93,65-89s-6.5,39-21,64\r\n\tC216.5,213.5,208.5,199.4,195,203z M232,218c0,0,18-56,37.5-59.5s41.5,21,41.5,62s-26,65.4-42.8,69.2c-16.5,3.8-23,2-23,2\r\n\ts27.5-21.6,23.5-56.8C265.9,210.2,237.3,210.7,232,218z"
+ },
+ "children": []
+ }]
+};
+exports.socialFreebsdDevil = socialFreebsdDevil;
\ No newline at end of file
diff --git a/dist/ionicons/socialGithub.js b/dist/ionicons/socialGithub.js
new file mode 100644
index 000000000..6a9ea64e8
--- /dev/null
+++ b/dist/ionicons/socialGithub.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialGithub = void 0;
+var socialGithub = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,134.9,32,261.7c0,101.5,64.2,187.5,153.2,217.9c1.4,0.3,2.6,0.4,3.8,0.4c8.3,0,11.5-6.1,11.5-11.4\r\n\tc0-5.5-0.2-19.9-0.3-39.1c-8.4,1.9-15.9,2.7-22.6,2.7c-43.1,0-52.9-33.5-52.9-33.5c-10.2-26.5-24.9-33.6-24.9-33.6\r\n\tc-19.5-13.7-0.1-14.1,1.4-14.1c0.1,0,0.1,0,0.1,0c22.5,2,34.3,23.8,34.3,23.8c11.2,19.6,26.2,25.1,39.6,25.1c10.5,0,20-3.4,25.6-6\r\n\tc2-14.8,7.8-24.9,14.2-30.7c-49.7-5.8-102-25.5-102-113.5c0-25.1,8.7-45.6,23-61.6c-2.3-5.8-10-29.2,2.2-60.8c0,0,1.6-0.5,5-0.5\r\n\tc8.1,0,26.4,3.1,56.6,24.1c17.9-5.1,37-7.6,56.1-7.7c19,0.1,38.2,2.6,56.1,7.7c30.2-21,48.5-24.1,56.6-24.1c3.4,0,5,0.5,5,0.5\r\n\tc12.2,31.6,4.5,55,2.2,60.8c14.3,16.1,23,36.6,23,61.6c0,88.2-52.4,107.6-102.3,113.3c8,7.1,15.2,21.1,15.2,42.5\r\n\tc0,30.7-0.3,55.5-0.3,63c0,5.4,3.1,11.5,11.4,11.5c1.2,0,2.6-0.1,4-0.4C415.9,449.2,480,363.1,480,261.7C480,134.9,379.7,32,256,32z\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.socialGithub = socialGithub;
\ No newline at end of file
diff --git a/dist/ionicons/socialGithubOutline.js b/dist/ionicons/socialGithubOutline.js
new file mode 100644
index 000000000..735c88104
--- /dev/null
+++ b/dist/ionicons/socialGithubOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialGithubOutline = void 0;
+var socialGithubOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,134.9,32,261.7c0,101.5,64.2,187.5,153.2,217.9c1.4,0.3,2.6,0.4,3.8,0.4c8.3,0,11.5-6.1,11.5-11.4\r\n\tc0-5.5-0.2-19.9-0.3-39.1c-8.4,1.9-15.9,2.7-22.6,2.7c-43.1,0-52.9-33.5-52.9-33.5c-10.2-26.5-24.9-33.6-24.9-33.6\r\n\tc-19.5-13.7-0.1-14.1,1.4-14.1c0.1,0,0.1,0,0.1,0c22.5,2,34.3,23.8,34.3,23.8c11.2,19.6,26.2,25.1,39.6,25.1c10.5,0,20-3.4,25.6-6\r\n\tc2-14.8,7.8-24.9,14.2-30.7c-49.7-5.8-102-25.5-102-113.5c0-25.1,8.7-45.6,23-61.6c-2.3-5.8-10-29.2,2.2-60.8c0,0,1.6-0.5,5-0.5\r\n\tc8.1,0,26.4,3.1,56.6,24.1c17.9-5.1,37-7.6,56.1-7.7c19,0.1,38.2,2.6,56.1,7.7c30.2-21,48.5-24.1,56.6-24.1c3.4,0,5,0.5,5,0.5\r\n\tc12.2,31.6,4.5,55,2.2,60.8c14.3,16.1,23,36.6,23,61.6c0,88.2-52.4,107.6-102.3,113.3c8,7.1,15.2,21.1,15.2,42.5\r\n\tc0,30.7-0.3,55.5-0.3,63c0,5.4,3.1,11.5,11.4,11.5c1.2,0,2.6-0.1,4-0.4C415.9,449.2,480,363.1,480,261.7C480,134.9,379.7,32,256,32z\r\n\t M177.6,448.1c2.2,0,4.4-0.1,6.7-0.2c0,2.8,0,5.5,0.1,7.9c0,2.4,0,4.6,0.1,6.5c-15.6-5.8-30.3-13.5-44.1-23\r\n\tC150.2,444.6,162.5,448.1,177.6,448.1z M189,375.2c-0.8,2.2-1.5,4.5-2.1,6.9c-3.4,1-7.5,1.8-11.7,1.8c-10.9,0-19-5.4-25.6-16.9\r\n\tc-2.4-4.6-6.8-10.7-12.9-16.3C153.5,364.8,173,371.6,189,375.2z M379,434.1c-15.8,11.9-33,21.3-51,28.2c0-1.9,0-4.1,0-6.5\r\n\tc0-11.9,0-29.8,0-50.4c0-12.4-2.1-22.5-5-30.5c37.2-8.3,92-33.7,92-125.4c0-24.6-7.1-46.5-21.2-65.1c3.1-12.9,5.5-35.6-5.1-63\r\n\tl-2.7-7.1l-7.2-2.4c-1.5-0.5-4.8-1.3-10-1.3c-11.5,0-30.9,4.1-59.5,22.8c-17-4.2-34.8-6.4-53.1-6.4H256h-0.1\r\n\tc-18.3,0-36.2,2.2-53.1,6.4c-28.6-18.7-48-22.8-59.5-22.8c-5.2,0-8.5,0.9-10,1.4l-7.2,2.4l-2.7,7.1c-10.6,27.5-8.2,50.2-5.1,63\r\n\tc-14.1,18.7-21.2,40.6-21.2,65.1c0,49.6,16,79.9,36.6,98.5c-8.1-6.6-18.6-12.1-31.2-13H102h-0.5h-0.3c-13.1,0-22.3,5.4-25.2,14.7\r\n\tc-4.7,14.8,9.8,25,14.6,28.4l0.5,0.6l1.5,0.6c1.6,1,10.1,7,16.9,24.5c2,6.2,6.3,14.5,13.6,22.2c-13.1-11.2-24.8-24-34.9-38.1\r\n\tC61.9,351.2,48,307.5,48,261.7c0-28.9,5.5-56.9,16.4-83.3c10.5-25.5,25.5-48.3,44.7-67.9c19.1-19.6,41.4-35,66.1-45.7\r\n\tC200.8,53.7,228,48,256,48s55.2,5.6,80.8,16.7c24.8,10.7,47,26.1,66.1,45.7c19.1,19.6,34.2,42.5,44.7,67.9\r\n\tc10.9,26.4,16.4,54.4,16.4,83.3c0,45.8-13.8,89.5-40.1,126.3C411.3,405.6,396.2,421.1,379,434.1z"
+ },
+ "children": []
+ }]
+};
+exports.socialGithubOutline = socialGithubOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialGoogle.js b/dist/ionicons/socialGoogle.js
new file mode 100644
index 000000000..8393928b5
--- /dev/null
+++ b/dist/ionicons/socialGoogle.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialGoogle = void 0;
+var socialGoogle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M325.862,275.558l-18.187-13.653l-0.063-0.051c-5.827-4.579-9.952-8.313-9.952-14.685c0-6.979,5.049-11.824,10.896-17.436\r\n\t\tl0.466-0.449c20.025-15.171,44.726-34.286,44.726-74.556c0-26.934-11.916-44.729-23.28-57.729h12.969l60.322-33H270.308\r\n\t\tc-25.324,0-62.68,3.225-94.561,28.576l-0.128,0.25c-21.809,18.111-34.828,44.584-34.828,70.691\r\n\t\tc0,21.197,8.706,42.159,23.885,57.447c21.428,21.579,48.302,26.127,67.074,26.127c1.462,0,2.956-0.028,4.47-0.093\r\n\t\tc-0.759,2.969-1.25,6.321-1.25,10.321c0,10.926,3.628,19.301,8.083,26.195c-23.963,1.932-58.148,6.477-84.897,22.278\r\n\t\tc-39.335,22.562-42.396,55.875-42.396,65.551c0,38.207,35.707,76.762,115.479,76.762c91.611,0,139.543-49.792,139.543-98.979\r\n\t\tC370.781,311.966,347.945,293.457,325.862,275.558z M200.485,139.894c0-13.359,3.02-23.457,9.255-30.9\r\n\t\tc6.514-7.852,18.18-13.129,29.028-13.129c19.881,0,32.938,15.008,40.388,27.598c9.199,15.539,14.913,36.095,14.913,53.643\r\n\t\tc0,4.942,0,19.983-10.188,29.796c-6.951,6.686-18.707,11.353-28.59,11.353c-20.503,0-33.453-14.705-40.707-27.041\r\n\t\tC204.189,173.53,200.485,153.109,200.485,139.894z M321.6,367.974c0,27.444-25.212,44.493-65.799,44.493\r\n\t\tc-48.058,0-80.347-20.603-80.347-51.265c0-26.14,21.54-36.789,37.8-42.521c18.944-6.064,44.297-7.305,50.062-7.305\r\n\t\tc3.907,0,6.087,0,8.683,0.229C308.7,336.816,321.6,347.733,321.6,367.974z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M325.862,275.558l-18.187-13.653l-0.063-0.051c-5.827-4.579-9.952-8.313-9.952-14.685c0-6.979,5.049-11.824,10.896-17.436\r\n\t\tl0.466-0.449c20.025-15.171,44.726-34.286,44.726-74.556c0-26.934-11.916-44.729-23.28-57.729h12.969l60.322-33H270.308\r\n\t\tc-25.324,0-62.68,3.225-94.561,28.576l-0.128,0.25c-21.809,18.111-34.828,44.584-34.828,70.691\r\n\t\tc0,21.197,8.706,42.159,23.885,57.447c21.428,21.579,48.302,26.127,67.074,26.127c1.462,0,2.956-0.028,4.47-0.093\r\n\t\tc-0.759,2.969-1.25,6.321-1.25,10.321c0,10.926,3.628,19.301,8.083,26.195c-23.963,1.932-58.148,6.477-84.897,22.278\r\n\t\tc-39.335,22.562-42.396,55.875-42.396,65.551c0,38.207,35.707,76.762,115.479,76.762c91.611,0,139.543-49.792,139.543-98.979\r\n\t\tC370.781,311.966,347.945,293.457,325.862,275.558z M200.485,139.894c0-13.359,3.02-23.457,9.255-30.9\r\n\t\tc6.514-7.852,18.18-13.129,29.028-13.129c19.881,0,32.938,15.008,40.388,27.598c9.199,15.539,14.913,36.095,14.913,53.643\r\n\t\tc0,4.942,0,19.983-10.188,29.796c-6.951,6.686-18.707,11.353-28.59,11.353c-20.503,0-33.453-14.705-40.707-27.041\r\n\t\tC204.189,173.53,200.485,153.109,200.485,139.894z M321.6,367.974c0,27.444-25.212,44.493-65.799,44.493\r\n\t\tc-48.058,0-80.347-20.603-80.347-51.265c0-26.14,21.54-36.789,37.8-42.521c18.944-6.064,44.297-7.305,50.062-7.305\r\n\t\tc3.907,0,6.087,0,8.683,0.229C308.7,336.816,321.6,347.733,321.6,367.974z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialGoogle = socialGoogle;
\ No newline at end of file
diff --git a/dist/ionicons/socialGoogleOutline.js b/dist/ionicons/socialGoogleOutline.js
new file mode 100644
index 000000000..549a3fa94
--- /dev/null
+++ b/dist/ionicons/socialGoogleOutline.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialGoogleOutline = void 0;
+var socialGoogleOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M319.408,82.141c11.779,9.576,36.43,29.718,36.43,68.043c0,37.295-21.547,54.934-43.094,71.545\r\n\t\tc-6.695,6.561-14.385,13.608-14.385,24.701c0,11.092,7.689,17.153,13.336,21.671l18.473,14.108\r\n\t\tc22.598,18.641,43.125,35.795,43.125,70.559c0,47.373-46.721,95.232-135.003,95.232c-74.428,0-110.343-34.766-110.343-72.061\r\n\t\tc0-18.139,9.245-43.827,39.525-61.48c31.798-19.142,74.952-21.657,98.023-23.172c-7.178-9.078-15.382-18.67-15.382-34.265\r\n\t\tc0-8.577,2.557-13.609,5.12-19.655c-5.648,0.5-11.283,1-16.42,1c-54.408,0-85.214-39.811-85.214-79.107\r\n\t\tc0-23.186,10.802-48.902,32.856-67.543C215.724,68.031,250.637,64,278.328,64h105.725l-32.846,18.141H319.408z M282.955,305.896\r\n\t\tc-4.137-0.501-6.684-0.501-11.793-0.501c-4.629,0-32.348,1.002-53.895,8.049c-11.3,4.046-44.146,16.125-44.146,51.918\r\n\t\tc0,35.78,35.393,61.467,90.339,61.467c49.283,0,75.432-23.156,75.432-54.404C338.893,346.707,321.971,333.113,282.955,305.896\r\n\t\t M297.834,210.148c11.824-11.592,12.844-27.73,12.844-36.793c0-36.281-22.086-92.73-64.671-92.73\r\n\t\tc-13.339,0-27.724,6.547-35.948,16.639c-8.722,10.593-11.284,24.188-11.284,37.281c0,33.764,20.005,89.727,64.163,89.727\r\n\t\tC275.764,224.271,289.594,218.212,297.834,210.148"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M319.408,82.141c11.779,9.576,36.43,29.718,36.43,68.043c0,37.295-21.547,54.934-43.094,71.545\r\n\t\tc-6.695,6.561-14.385,13.608-14.385,24.701c0,11.092,7.689,17.153,13.336,21.671l18.473,14.108\r\n\t\tc22.598,18.641,43.125,35.795,43.125,70.559c0,47.373-46.721,95.232-135.003,95.232c-74.428,0-110.343-34.766-110.343-72.061\r\n\t\tc0-18.139,9.245-43.827,39.525-61.48c31.798-19.142,74.952-21.657,98.023-23.172c-7.178-9.078-15.382-18.67-15.382-34.265\r\n\t\tc0-8.577,2.557-13.609,5.12-19.655c-5.648,0.5-11.283,1-16.42,1c-54.408,0-85.214-39.811-85.214-79.107\r\n\t\tc0-23.186,10.802-48.902,32.856-67.543C215.724,68.031,250.637,64,278.328,64h105.725l-32.846,18.141H319.408z M282.955,305.896\r\n\t\tc-4.137-0.501-6.684-0.501-11.793-0.501c-4.629,0-32.348,1.002-53.895,8.049c-11.3,4.046-44.146,16.125-44.146,51.918\r\n\t\tc0,35.78,35.393,61.467,90.339,61.467c49.283,0,75.432-23.156,75.432-54.404C338.893,346.707,321.971,333.113,282.955,305.896\r\n\t\t M297.834,210.148c11.824-11.592,12.844-27.73,12.844-36.793c0-36.281-22.086-92.73-64.671-92.73\r\n\t\tc-13.339,0-27.724,6.547-35.948,16.639c-8.722,10.593-11.284,24.188-11.284,37.281c0,33.764,20.005,89.727,64.163,89.727\r\n\t\tC275.764,224.271,289.594,218.212,297.834,210.148"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialGoogleOutline = socialGoogleOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialGoogleplus.js b/dist/ionicons/socialGoogleplus.js
new file mode 100644
index 000000000..603108860
--- /dev/null
+++ b/dist/ionicons/socialGoogleplus.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialGoogleplus = void 0;
+var socialGoogleplus = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M242.1,275.6l-18.2-13.7l-0.1-0.1c-5.8-4.6-10-8.3-10-14.7c0-7,5-11.8,10.9-17.4l0.5-0.4c20-15.2,44.7-34.3,44.7-74.6\r\n\t\tc0-26.9-11.9-44.7-23.3-57.7h13L320,64H186.5c-25.3,0-62.7,3.2-94.6,28.6l-0.1,0.3C70,110.9,57,137.4,57,163.5\r\n\t\tc0,21.2,8.7,42.2,23.9,57.4c21.4,21.6,48.3,26.1,67.1,26.1c1.5,0,3,0,4.5-0.1c-0.8,3-1.2,6.3-1.2,10.3c0,10.9,3.6,19.3,8.1,26.2\r\n\t\tc-24,1.9-58.1,6.5-84.9,22.3C35.1,328.4,32,361.7,32,371.3c0,38.2,35.7,76.8,115.5,76.8c91.6,0,139.5-49.8,139.5-99\r\n\t\tC287,312,264.2,293.5,242.1,275.6z M116.7,139.9c0-13.4,3-23.5,9.3-30.9c6.5-7.9,18.2-13.1,29-13.1c19.9,0,32.9,15,40.4,27.6\r\n\t\tc9.2,15.5,14.9,36.1,14.9,53.6c0,4.9,0,20-10.2,29.8c-7,6.7-18.7,11.4-28.6,11.4c-20.5,0-33.5-14.7-40.7-27\r\n\t\tC120.4,173.5,116.7,153.1,116.7,139.9z M237.8,368c0,27.4-25.2,44.5-65.8,44.5c-48.1,0-80.3-20.6-80.3-51.3\r\n\t\tc0-26.1,21.5-36.8,37.8-42.5c18.9-6.1,44.3-7.3,50.1-7.3c3.9,0,6.1,0,8.7,0.2C224.9,336.8,237.8,347.7,237.8,368z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M242.1,275.6l-18.2-13.7l-0.1-0.1c-5.8-4.6-10-8.3-10-14.7c0-7,5-11.8,10.9-17.4l0.5-0.4c20-15.2,44.7-34.3,44.7-74.6\r\n\t\tc0-26.9-11.9-44.7-23.3-57.7h13L320,64H186.5c-25.3,0-62.7,3.2-94.6,28.6l-0.1,0.3C70,110.9,57,137.4,57,163.5\r\n\t\tc0,21.2,8.7,42.2,23.9,57.4c21.4,21.6,48.3,26.1,67.1,26.1c1.5,0,3,0,4.5-0.1c-0.8,3-1.2,6.3-1.2,10.3c0,10.9,3.6,19.3,8.1,26.2\r\n\t\tc-24,1.9-58.1,6.5-84.9,22.3C35.1,328.4,32,361.7,32,371.3c0,38.2,35.7,76.8,115.5,76.8c91.6,0,139.5-49.8,139.5-99\r\n\t\tC287,312,264.2,293.5,242.1,275.6z M116.7,139.9c0-13.4,3-23.5,9.3-30.9c6.5-7.9,18.2-13.1,29-13.1c19.9,0,32.9,15,40.4,27.6\r\n\t\tc9.2,15.5,14.9,36.1,14.9,53.6c0,4.9,0,20-10.2,29.8c-7,6.7-18.7,11.4-28.6,11.4c-20.5,0-33.5-14.7-40.7-27\r\n\t\tC120.4,173.5,116.7,153.1,116.7,139.9z M237.8,368c0,27.4-25.2,44.5-65.8,44.5c-48.1,0-80.3-20.6-80.3-51.3\r\n\t\tc0-26.1,21.5-36.8,37.8-42.5c18.9-6.1,44.3-7.3,50.1-7.3c3.9,0,6.1,0,8.7,0.2C224.9,336.8,237.8,347.7,237.8,368z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "402,142 402,64 368,64 368,142 288,142 288,176 368,176 368,257 402,257 402,176 480,176 480,142 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "402,142 402,64 368,64 368,142 288,142 288,176 368,176 368,257 402,257 402,176 480,176 480,142 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialGoogleplus = socialGoogleplus;
\ No newline at end of file
diff --git a/dist/ionicons/socialGoogleplusOutline.js b/dist/ionicons/socialGoogleplusOutline.js
new file mode 100644
index 000000000..2d6adc480
--- /dev/null
+++ b/dist/ionicons/socialGoogleplusOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialGoogleplusOutline = void 0;
+var socialGoogleplusOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M223.5,82.1c11.8,9.6,36.4,29.7,36.4,68c0,37.3-21.5,54.9-43.1,71.5c-6.7,6.6-14.4,13.6-14.4,24.7\r\n\t\tc0,11.1,7.7,17.2,13.3,21.7l18.5,14.1c22.6,18.6,43.1,35.8,43.1,70.6c0,47.4-46.7,95.2-135,95.2C67.9,448,32,413.2,32,375.9\r\n\t\tc0-18.1,9.2-43.8,39.5-61.5c31.8-19.1,75-21.7,98-23.2c-7.2-9.1-15.4-18.7-15.4-34.3c0-8.6,2.6-13.6,5.1-19.7\r\n\t\tc-5.6,0.5-11.3,1-16.4,1c-54.4,0-85.2-39.8-85.2-79.1c0-23.2,10.8-48.9,32.9-67.5C119.8,68,154.7,64,182.4,64h105.7l-32.8,18.1\r\n\t\tH223.5z M187,305.9c-4.1-0.5-6.7-0.5-11.8-0.5c-4.6,0-32.3,1-53.9,8c-11.3,4-44.1,16.1-44.1,51.9c0,35.8,35.4,61.5,90.3,61.5\r\n\t\tc49.3,0,75.4-23.2,75.4-54.4C242.9,346.7,226,333.1,187,305.9 M201.9,210.1c11.8-11.6,12.8-27.7,12.8-36.8\r\n\t\tc0-36.3-22.1-92.7-64.7-92.7c-13.3,0-27.7,6.5-35.9,16.6c-8.7,10.6-11.3,24.2-11.3,37.3c0,33.8,20,89.7,64.2,89.7\r\n\t\tC179.8,224.3,193.6,218.2,201.9,210.1"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M223.5,82.1c11.8,9.6,36.4,29.7,36.4,68c0,37.3-21.5,54.9-43.1,71.5c-6.7,6.6-14.4,13.6-14.4,24.7\r\n\t\tc0,11.1,7.7,17.2,13.3,21.7l18.5,14.1c22.6,18.6,43.1,35.8,43.1,70.6c0,47.4-46.7,95.2-135,95.2C67.9,448,32,413.2,32,375.9\r\n\t\tc0-18.1,9.2-43.8,39.5-61.5c31.8-19.1,75-21.7,98-23.2c-7.2-9.1-15.4-18.7-15.4-34.3c0-8.6,2.6-13.6,5.1-19.7\r\n\t\tc-5.6,0.5-11.3,1-16.4,1c-54.4,0-85.2-39.8-85.2-79.1c0-23.2,10.8-48.9,32.9-67.5C119.8,68,154.7,64,182.4,64h105.7l-32.8,18.1\r\n\t\tH223.5z M187,305.9c-4.1-0.5-6.7-0.5-11.8-0.5c-4.6,0-32.3,1-53.9,8c-11.3,4-44.1,16.1-44.1,51.9c0,35.8,35.4,61.5,90.3,61.5\r\n\t\tc49.3,0,75.4-23.2,75.4-54.4C242.9,346.7,226,333.1,187,305.9 M201.9,210.1c11.8-11.6,12.8-27.7,12.8-36.8\r\n\t\tc0-36.3-22.1-92.7-64.7-92.7c-13.3,0-27.7,6.5-35.9,16.6c-8.7,10.6-11.3,24.2-11.3,37.3c0,33.8,20,89.7,64.2,89.7\r\n\t\tC179.8,224.3,193.6,218.2,201.9,210.1"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "480,142.3 401.7,142.3 401.7,64.1 384,64.1 384,142.3 304.3,142.3 304.3,160.1 384,160.1 384,241 401.7,241 \r\n\t\t401.7,160.1 480,160.1 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "480,142.3 401.7,142.3 401.7,64.1 384,64.1 384,142.3 304.3,142.3 304.3,160.1 384,160.1 384,241 401.7,241 \r\n\t\t401.7,160.1 480,160.1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialGoogleplusOutline = socialGoogleplusOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialHackernews.js b/dist/ionicons/socialHackernews.js
new file mode 100644
index 000000000..d5e682692
--- /dev/null
+++ b/dist/ionicons/socialHackernews.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialHackernews = void 0;
+var socialHackernews = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,64v384h384V64H64z M278,279v72h-40v-72l-66-120h47.1l39.7,83.6l38-83.6H342L278,279z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,64v384h384V64H64z M278,279v72h-40v-72l-66-120h47.1l39.7,83.6l38-83.6H342L278,279z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialHackernews = socialHackernews;
\ No newline at end of file
diff --git a/dist/ionicons/socialHackernewsOutline.js b/dist/ionicons/socialHackernewsOutline.js
new file mode 100644
index 000000000..8524052f5
--- /dev/null
+++ b/dist/ionicons/socialHackernewsOutline.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialHackernewsOutline = void 0;
+var socialHackernewsOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,96v320H96V96H416 M448,64H64v384h384V64L448,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M416,96v320H96V96H416 M448,64H64v384h384V64L448,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M296.7,159H342l-63.9,120v72h-39.9v-72L172,159h47.1l39.7,83.6L296.7,159z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M296.7,159H342l-63.9,120v72h-39.9v-72L172,159h47.1l39.7,83.6L296.7,159z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialHackernewsOutline = socialHackernewsOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialHtml5.js b/dist/ionicons/socialHtml5.js
new file mode 100644
index 000000000..1c7dbfc1c
--- /dev/null
+++ b/dist/ionicons/socialHtml5.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialHtml5 = void 0;
+var socialHtml5 = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,32l34.936,403.213L255.769,480l157.245-44.854L448,32H64z M371.997,164h-184l3.991,51h176.008l-13.505,151.386\r\n\tl-98.5,28.094l-98.682-27.976L150.545,289h48.254l3.423,39.287l53.769,14.781l53.422-14.915L314.987,264H147.986l-12.571-149.589\r\n\tl240.789,0.016L371.997,164z"
+ },
+ "children": []
+ }]
+};
+exports.socialHtml5 = socialHtml5;
\ No newline at end of file
diff --git a/dist/ionicons/socialHtml5Outline.js b/dist/ionicons/socialHtml5Outline.js
new file mode 100644
index 000000000..65d8d6a1b
--- /dev/null
+++ b/dist/ionicons/socialHtml5Outline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialHtml5Outline = void 0;
+var socialHtml5Outline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,32l34.936,403.301L255.769,480l157.245-44.705L448,32H64z M383.041,410.51l-127.262,36.187l-126.867-36.169L98.896,64\r\n\t\tH413.1L383.041,410.51z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "147.991,264 314.984,264 309.411,327.986 255.991,342.734 202.225,328.064 198.801,289 150.55,289 \r\n\t\t157.313,366.336 255.991,394.146 354.486,366.163 367.991,215 191.991,215 188,164 371.991,164 376.199,114.316 135.421,114.188 \t\r\n\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "147.991,264 314.984,264 309.411,327.986 255.991,342.734 202.225,328.064 198.801,289 150.55,289 \r\n\t\t157.313,366.336 255.991,394.146 354.486,366.163 367.991,215 191.991,215 188,164 371.991,164 376.199,114.316 135.421,114.188 \t\r\n\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialHtml5Outline = socialHtml5Outline;
\ No newline at end of file
diff --git a/dist/ionicons/socialInstagram.js b/dist/ionicons/socialInstagram.js
new file mode 100644
index 000000000..20f9faff2
--- /dev/null
+++ b/dist/ionicons/socialInstagram.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialInstagram = void 0;
+var socialInstagram = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "255.833",
+ "r": "80"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "256",
+ "cy": "255.833",
+ "r": "80"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M177.805,176.887c21.154-21.154,49.279-32.929,79.195-32.929s58.041,11.837,79.195,32.991\r\n\t\tc13.422,13.422,23.011,29.551,28.232,47.551H448.5v-113c0-26.51-20.49-47-47-47h-288c-26.51,0-49,20.49-49,47v113h85.072\r\n\t\tC154.794,206.5,164.383,190.309,177.805,176.887z M416.5,147.7c0,7.069-5.73,12.8-12.8,12.8h-38.4c-7.069,0-12.8-5.73-12.8-12.8\r\n\t\tv-38.4c0-7.069,5.73-12.8,12.8-12.8h38.4c7.069,0,12.8,5.73,12.8,12.8V147.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M177.805,176.887c21.154-21.154,49.279-32.929,79.195-32.929s58.041,11.837,79.195,32.991\r\n\t\tc13.422,13.422,23.011,29.551,28.232,47.551H448.5v-113c0-26.51-20.49-47-47-47h-288c-26.51,0-49,20.49-49,47v113h85.072\r\n\t\tC154.794,206.5,164.383,190.309,177.805,176.887z M416.5,147.7c0,7.069-5.73,12.8-12.8,12.8h-38.4c-7.069,0-12.8-5.73-12.8-12.8\r\n\t\tv-38.4c0-7.069,5.73-12.8,12.8-12.8h38.4c7.069,0,12.8,5.73,12.8,12.8V147.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M336.195,335.279c-21.154,21.154-49.279,32.679-79.195,32.679s-58.041-11.462-79.195-32.616\r\n\t\tc-21.115-21.115-32.759-49.842-32.803-78.842H64.5v143c0,26.51,22.49,49,49,49h288c26.51,0,47-22.49,47-49v-143h-79.502\r\n\t\tC368.955,285.5,357.311,314.164,336.195,335.279z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M336.195,335.279c-21.154,21.154-49.279,32.679-79.195,32.679s-58.041-11.462-79.195-32.616\r\n\t\tc-21.115-21.115-32.759-49.842-32.803-78.842H64.5v143c0,26.51,22.49,49,49,49h288c26.51,0,47-22.49,47-49v-143h-79.502\r\n\t\tC368.955,285.5,357.311,314.164,336.195,335.279z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialInstagram = socialInstagram;
\ No newline at end of file
diff --git a/dist/ionicons/socialInstagramOutline.js b/dist/ionicons/socialInstagramOutline.js
new file mode 100644
index 000000000..65efc1bf9
--- /dev/null
+++ b/dist/ionicons/socialInstagramOutline.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialInstagramOutline = void 0;
+var socialInstagramOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#231F20",
+ "d": "M448.5,112c0-26.233-21.267-47.5-47.5-47.5H112c-26.233,0-47.5,21.267-47.5,47.5v289\r\n\tc0,26.233,21.267,47.5,47.5,47.5h289c26.233,0,47.5-21.267,47.5-47.5V112z M257,175.833c44.182,0,80,35.816,80,80s-35.818,80-80,80\r\n\ts-80-35.816-80-80S212.818,175.833,257,175.833z M416.5,160.5c0,8.836-7.163,16-16,16h-48c-8.837,0-16-7.164-16-16v-48\r\n\tc0-8.836,7.163-16,16-16h48c8.837,0,16,7.164,16,16V160.5z M401.5,416.5h-288c-8.822,0-17-8.178-17-17v-175h53.072\r\n\tc-3.008,10-4.572,20.647-4.572,31.583C145,286,156.65,314,177.805,335.154s49.279,32.741,79.195,32.741s58.041-11.681,79.195-32.835\r\n\tS369,286.016,369,256.099c0-10.936-1.563-21.599-4.572-31.599H416.5v175C416.5,408.322,410.322,416.5,401.5,416.5z"
+ },
+ "children": []
+ }]
+};
+exports.socialInstagramOutline = socialInstagramOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialJavascript.js b/dist/ionicons/socialJavascript.js
new file mode 100644
index 000000000..ea04eab4c
--- /dev/null
+++ b/dist/ionicons/socialJavascript.js
@@ -0,0 +1,53 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialJavascript = void 0;
+var socialJavascript = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "transform": "translate(384 48)"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "icon-javascript_1_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "icon-javascript_1_1_"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261c-14.705,0-27.948-2.521-38.25-6.063L-352,375.904\r\n\t\t\tc14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02V40.001L-176,40.001z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261c-14.705,0-27.948-2.521-38.25-6.063L-352,375.904\r\n\t\t\tc14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02V40.001L-176,40.001z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M-1.537,32C-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665\r\n\t\t\tc39.7,14.158,55.392,26.808,55.392,47.539c0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021\r\n\t\t\tL-128,362.727c18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M-1.537,32C-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665\r\n\t\t\tc39.7,14.158,55.392,26.808,55.392,47.539c0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021\r\n\t\t\tL-128,362.727c18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialJavascript = socialJavascript;
\ No newline at end of file
diff --git a/dist/ionicons/socialJavascriptOutline.js b/dist/ionicons/socialJavascriptOutline.js
new file mode 100644
index 000000000..b86b2f55f
--- /dev/null
+++ b/dist/ionicons/socialJavascriptOutline.js
@@ -0,0 +1,53 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialJavascriptOutline = void 0;
+var socialJavascriptOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "transform": "translate(384 48)"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "icon-javascript_1_1_"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "icon-javascript_1_1_"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M-192,56.001v197.017c0,41.567-9.644,71.988-28.662,90.417c-17.06,16.53-42.061,24.565-76.431,24.565\r\n\t\t\tc-12.002,0-25.78-1.496-37.185-3.886l4.09-30.505c7.146,1.269,15.465,2.149,24.774,2.149c21.92,0,37.892-6.459,48.827-19.745\r\n\t\t\tC-245.27,302.268-240,282.085-240,252.499V56.001H-192 M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261\r\n\t\t\tc-14.705,0-27.948-2.521-38.25-6.063L-352,375.904c14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02\r\n\t\t\tV40.001L-176,40.001z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M-192,56.001v197.017c0,41.567-9.644,71.988-28.662,90.417c-17.06,16.53-42.061,24.565-76.431,24.565\r\n\t\t\tc-12.002,0-25.78-1.496-37.185-3.886l4.09-30.505c7.146,1.269,15.465,2.149,24.774,2.149c21.92,0,37.892-6.459,48.827-19.745\r\n\t\t\tC-245.27,302.268-240,282.085-240,252.499V56.001H-192 M-176,40.001h-80v212.498c0,52.58-18.032,67.261-49.412,67.261\r\n\t\t\tc-14.705,0-27.948-2.521-38.25-6.063L-352,375.904c14.7,5.062,37.259,8.096,54.907,8.096C-225.045,384-176,350.129-176,253.02\r\n\t\t\tV40.001L-176,40.001z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M-1.537,48c24.458,0,45.898,3.146,65.1,9.585l-9.581,32.062C40.37,84.142,21.446,78.71-2.504,78.71\r\n\t\t\tc-18.607,0-34.462,4.584-45.849,13.256c-11.732,8.936-18.194,21.583-18.194,35.613c0,34.974,33.062,48.149,71.347,63.405\r\n\t\t\tl0.107,0.043l0.108,0.041c26.977,10.299,45.938,22.261,57.969,36.572C74.593,241.451,80,257.543,80,278.284\r\n\t\t\tc0,25.177-9.333,46.71-26.99,62.274C32.66,358.497,1.593,367.98-36.833,367.98c-28.052,0-54.698-6.427-72.615-13.979l7.593-31.603\r\n\t\t\tc17.579,7.248,41.882,14.382,69.438,14.382c20.28,0,36.629-4.478,48.591-13.306c12.807-9.45,19.857-23.697,19.857-40.119\r\n\t\t\tc0-15.348-6.041-27.922-18.469-38.444c-10.157-8.603-24.801-16.048-47.467-24.136c-26.86-9.904-47.359-21.947-60.934-35.795\r\n\t\t\tC-105.078,170.455-112,153.829-112,134.154c0-24.149,9.831-45.101,28.43-60.591C-63.49,56.839-35.124,48-1.537,48 M-1.537,32\r\n\t\t\tC-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665c39.7,14.158,55.392,26.808,55.392,47.539\r\n\t\t\tc0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021L-128,362.727\r\n\t\t\tc18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M-1.537,48c24.458,0,45.898,3.146,65.1,9.585l-9.581,32.062C40.37,84.142,21.446,78.71-2.504,78.71\r\n\t\t\tc-18.607,0-34.462,4.584-45.849,13.256c-11.732,8.936-18.194,21.583-18.194,35.613c0,34.974,33.062,48.149,71.347,63.405\r\n\t\t\tl0.107,0.043l0.108,0.041c26.977,10.299,45.938,22.261,57.969,36.572C74.593,241.451,80,257.543,80,278.284\r\n\t\t\tc0,25.177-9.333,46.71-26.99,62.274C32.66,358.497,1.593,367.98-36.833,367.98c-28.052,0-54.698-6.427-72.615-13.979l7.593-31.603\r\n\t\t\tc17.579,7.248,41.882,14.382,69.438,14.382c20.28,0,36.629-4.478,48.591-13.306c12.807-9.45,19.857-23.697,19.857-40.119\r\n\t\t\tc0-15.348-6.041-27.922-18.469-38.444c-10.157-8.603-24.801-16.048-47.467-24.136c-26.86-9.904-47.359-21.947-60.934-35.795\r\n\t\t\tC-105.078,170.455-112,153.829-112,134.154c0-24.149,9.831-45.101,28.43-60.591C-63.49,56.839-35.124,48-1.537,48 M-1.537,32\r\n\t\t\tC-78.98,32-128,75.998-128,134.154c0,50.083,37.751,81.44,92.641,101.665c39.7,14.158,55.392,26.808,55.392,47.539\r\n\t\t\tc0,22.756-18.139,37.425-52.448,37.425c-31.863,0-60.789-10.64-80.394-21.255v-0.021L-128,362.727\r\n\t\t\tc18.639,10.638,53.441,21.255,91.167,21.255C53.854,383.98,96,335.43,96,278.284c0-48.55-26.958-79.9-85.278-102.163\r\n\t\t\tc-43.139-17.191-61.27-26.795-61.27-48.542c0-17.2,15.688-32.869,48.043-32.869c31.846,0,53.744,10.707,66.505,17.291l19.125-64\r\n\t\t\tC63.125,39.22,36.188,32-1.537,32L-1.537,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialJavascriptOutline = socialJavascriptOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialLinkedin.js b/dist/ionicons/socialLinkedin.js
new file mode 100644
index 000000000..109ef55f5
--- /dev/null
+++ b/dist/ionicons/socialLinkedin.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialLinkedin = void 0;
+var socialLinkedin = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M183,384h-55V213h55V384z M157.4,187H157c-17.6,0-29-13.1-29-29.5c0-16.7,11.7-29.5,29.7-29.5\r\n\t\tc18,0,29,12.7,29.4,29.5C187.1,173.9,175.7,187,157.4,187z M384,384h-55v-93.5c0-22.4-8-37.7-27.9-37.7\r\n\t\tc-15.2,0-24.2,10.3-28.2,20.3c-1.5,3.6-1.9,8.5-1.9,13.5V384h-55V213h55v23.8c8-11.4,20.5-27.8,49.6-27.8\r\n\t\tc36.1,0,63.4,23.8,63.4,75.1V384z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M183,384h-55V213h55V384z M157.4,187H157c-17.6,0-29-13.1-29-29.5c0-16.7,11.7-29.5,29.7-29.5\r\n\t\tc18,0,29,12.7,29.4,29.5C187.1,173.9,175.7,187,157.4,187z M384,384h-55v-93.5c0-22.4-8-37.7-27.9-37.7\r\n\t\tc-15.2,0-24.2,10.3-28.2,20.3c-1.5,3.6-1.9,8.5-1.9,13.5V384h-55V213h55v23.8c8-11.4,20.5-27.8,49.6-27.8\r\n\t\tc36.1,0,63.4,23.8,63.4,75.1V384z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialLinkedin = socialLinkedin;
\ No newline at end of file
diff --git a/dist/ionicons/socialLinkedinOutline.js b/dist/ionicons/socialLinkedinOutline.js
new file mode 100644
index 000000000..f35997cf7
--- /dev/null
+++ b/dist/ionicons/socialLinkedinOutline.js
@@ -0,0 +1,69 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialLinkedinOutline = void 0;
+var socialLinkedinOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M182.8,384V212.9h-54.9V384H182.8L182.8,384z M157.4,187c18.3,0,29.7-13.1,29.7-29.5\r\n\t\t\tc-0.3-16.7-11.4-29.5-29.4-29.5c-18,0-29.7,12.8-29.7,29.5c0,16.4,11.4,29.5,29,29.5H157.4L157.4,187z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M182.8,384V212.9h-54.9V384H182.8L182.8,384z M157.4,187c18.3,0,29.7-13.1,29.7-29.5\r\n\t\t\tc-0.3-16.7-11.4-29.5-29.4-29.5c-18,0-29.7,12.8-29.7,29.5c0,16.4,11.4,29.5,29,29.5H157.4L157.4,187z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M320.6,209c-29.1,0-41.6,16.4-49.6,27.8V213h-55v171h55v-97.4c0-5,0.4-10,1.9-13.5c4-10,13-20.3,28.2-20.3\r\n\t\t\tc19.9,0,27.9,15.3,27.9,37.7V384h55v-99.9C384,232.8,356.8,209,320.6,209z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M320.6,209c-29.1,0-41.6,16.4-49.6,27.8V213h-55v171h55v-97.4c0-5,0.4-10,1.9-13.5c4-10,13-20.3,28.2-20.3\r\n\t\t\tc19.9,0,27.9,15.3,27.9,37.7V384h55v-99.9C384,232.8,356.8,209,320.6,209z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M414,416c-1.1,0-313.1,0-314.9,0s-3.1-1.4-3.1-3.1S96,99.1,96,98s1-2,2-2s315,0,316,0s2,1,2,2\r\n\t\tc0,23.3,0,314.9,0,316C416,414.9,415.1,416,414,416z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M417.2,64H96.8C79.3,64,64,76.6,64,93.9v321.1c0,17.4,15.3,32.9,32.8,32.9h320.3c17.6,0,30.8-15.6,30.8-32.9V93.9\r\n\t\tC448,76.6,434.7,64,417.2,64z M414,416c-1.1,0-313.1,0-314.9,0s-3.1-1.4-3.1-3.1S96,99.1,96,98s1-2,2-2s315,0,316,0s2,1,2,2\r\n\t\tc0,23.3,0,314.9,0,316C416,414.9,415.1,416,414,416z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialLinkedinOutline = socialLinkedinOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialMarkdown.js b/dist/ionicons/socialMarkdown.js
new file mode 100644
index 000000000..25c193452
--- /dev/null
+++ b/dist/ionicons/socialMarkdown.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialMarkdown = void 0;
+var socialMarkdown = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "transform": "translate(96 48)"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "icon-markdown"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "icon-markdown"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#231F20",
+ "d": "M351.659,48H-31.659C-49.496,48-64,62.484-64,80.308v255.349C-64,353.493-49.496,368-31.659,368h383.318\r\n\t\t\tC369.496,368,384,353.493,384,335.656V80.308C384,62.484,369.496,48,351.659,48z M188.023,304h-56.048v-96l-42.04,53.878\r\n\t\t\tL47.913,208v96H-8.131V112h56.044l42.022,67.98l42.04-67.98h56.048V304L188.023,304z M271.68,304l-69.635-96h42v-96h56.043v96\r\n\t\t\th42.027l-70.453,96H271.68z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#231F20",
+ "d": "M351.659,48H-31.659C-49.496,48-64,62.484-64,80.308v255.349C-64,353.493-49.496,368-31.659,368h383.318\r\n\t\t\tC369.496,368,384,353.493,384,335.656V80.308C384,62.484,369.496,48,351.659,48z M188.023,304h-56.048v-96l-42.04,53.878\r\n\t\t\tL47.913,208v96H-8.131V112h56.044l42.022,67.98l42.04-67.98h56.048V304L188.023,304z M271.68,304l-69.635-96h42v-96h56.043v96\r\n\t\t\th42.027l-70.453,96H271.68z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialMarkdown = socialMarkdown;
\ No newline at end of file
diff --git a/dist/ionicons/socialNodejs.js b/dist/ionicons/socialNodejs.js
new file mode 100644
index 000000000..ef5ff78b8
--- /dev/null
+++ b/dist/ionicons/socialNodejs.js
@@ -0,0 +1,53 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialNodejs = void 0;
+var socialNodejs = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "transform": "translate(96 96)"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "icon-nodejs_small"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "id": "icon-nodejs_small"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M159.917,384c-5.77,0-11.536-1.562-16.633-4.599l-52.985-32.44c-7.914-4.562-4.023-6.203-1.443-7.141\r\n\t\t\tc10.565-3.781,13.713-5.657,24.947-12.285c1.206-0.667,2.747-0.424,3.955,0.322l39.71,23.504c1.476,0.85,3.557,0.85,4.931,0\r\n\t\t\tl155.188-92.246c1.475-0.877,2.415-2.646,2.415-4.441V67.869c0-1.85-0.94-3.592-2.449-4.528L162.433-31.331\r\n\t\t\tc-1.478-0.894-3.421-0.894-4.898,0L2.516,63.374C0.972,64.277,0,66.072,0,67.869v186.805c0,1.813,0.972,3.513,2.481,4.389\r\n\t\t\tl39.929,23.972C66.02,295.239,80,282.865,80,268.424V84.725c0-2.652,2.047-4.727,4.596-4.727h22.809\r\n\t\t\tc2.515,0,4.597,2.072,4.597,4.727v183.698c0,32.563-19.353,51.248-49.199,51.248c-9.156,0-16.397,0-36.552-10.279l-41.584-24.781\r\n\t\t\tC-25.629,278.459-32,266.965-32,254.656V65.191c0-12.316,6.371-23.784,16.665-29.917L143.35-59.59\r\n\t\t\tc10.027-5.88,23.374-5.88,33.332,0l158.65,94.864C345.63,41.423,352,52.899,352,65.191v189.465c0,12.309-6.37,23.75-16.668,29.953\r\n\t\t\tl-158.65,94.774c-5.097,3.036-10.832,4.599-16.698,4.599L159.917,384z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M159.917,384c-5.77,0-11.536-1.562-16.633-4.599l-52.985-32.44c-7.914-4.562-4.023-6.203-1.443-7.141\r\n\t\t\tc10.565-3.781,13.713-5.657,24.947-12.285c1.206-0.667,2.747-0.424,3.955,0.322l39.71,23.504c1.476,0.85,3.557,0.85,4.931,0\r\n\t\t\tl155.188-92.246c1.475-0.877,2.415-2.646,2.415-4.441V67.869c0-1.85-0.94-3.592-2.449-4.528L162.433-31.331\r\n\t\t\tc-1.478-0.894-3.421-0.894-4.898,0L2.516,63.374C0.972,64.277,0,66.072,0,67.869v186.805c0,1.813,0.972,3.513,2.481,4.389\r\n\t\t\tl39.929,23.972C66.02,295.239,80,282.865,80,268.424V84.725c0-2.652,2.047-4.727,4.596-4.727h22.809\r\n\t\t\tc2.515,0,4.597,2.072,4.597,4.727v183.698c0,32.563-19.353,51.248-49.199,51.248c-9.156,0-16.397,0-36.552-10.279l-41.584-24.781\r\n\t\t\tC-25.629,278.459-32,266.965-32,254.656V65.191c0-12.316,6.371-23.784,16.665-29.917L143.35-59.59\r\n\t\t\tc10.027-5.88,23.374-5.88,33.332,0l158.65,94.864C345.63,41.423,352,52.899,352,65.191v189.465c0,12.309-6.37,23.75-16.668,29.953\r\n\t\t\tl-158.65,94.774c-5.097,3.036-10.832,4.599-16.698,4.599L159.917,384z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M208.943,255.998c-64.61,0-84.006-31.61-84.006-59.271c0-2.629,2.048-4.729,4.562-4.729h20.521\r\n\t\t\tc2.282,0,4.227,1.7,4.562,4.016c3.084,21.602,16.748,31.15,54.324,31.15c33.399,0,47.091-10.346,47.091-28.684\r\n\t\t\tc0-10.592-3.463-18.424-55.407-23.697c-43.427-4.441-70.288-14.373-70.288-50.295c0-33.135,26.996-52.49,72.234-52.49\r\n\t\t\tc46.128,0,76.462,14,79.173,50.829c0.102,1.337-0.368,2.629-1.241,3.644c-0.871,0.965-2.078,1.527-3.353,1.527h-20.591\r\n\t\t\tc-2.146,0-4.024-1.562-4.459-3.713c-4.401-16.953-16.97-23.402-49.563-23.402c-36.486,0-40.746,12.753-40.746,22.607\r\n\t\t\tc0,11.963,5.031,15.441,54.294,22.172c48.761,6.663,71.933,16.117,71.933,51.552c0,35.781-28.808,58.783-79.075,58.783\r\n\t\t\tL208.943,255.998L208.943,255.998z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M208.943,255.998c-64.61,0-84.006-31.61-84.006-59.271c0-2.629,2.048-4.729,4.562-4.729h20.521\r\n\t\t\tc2.282,0,4.227,1.7,4.562,4.016c3.084,21.602,16.748,31.15,54.324,31.15c33.399,0,47.091-10.346,47.091-28.684\r\n\t\t\tc0-10.592-3.463-18.424-55.407-23.697c-43.427-4.441-70.288-14.373-70.288-50.295c0-33.135,26.996-52.49,72.234-52.49\r\n\t\t\tc46.128,0,76.462,14,79.173,50.829c0.102,1.337-0.368,2.629-1.241,3.644c-0.871,0.965-2.078,1.527-3.353,1.527h-20.591\r\n\t\t\tc-2.146,0-4.024-1.562-4.459-3.713c-4.401-16.953-16.97-23.402-49.563-23.402c-36.486,0-40.746,12.753-40.746,22.607\r\n\t\t\tc0,11.963,5.031,15.441,54.294,22.172c48.761,6.663,71.933,16.117,71.933,51.552c0,35.781-28.808,58.783-79.075,58.783\r\n\t\t\tL208.943,255.998L208.943,255.998z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialNodejs = socialNodejs;
\ No newline at end of file
diff --git a/dist/ionicons/socialOctocat.js b/dist/ionicons/socialOctocat.js
new file mode 100644
index 000000000..d1181142e
--- /dev/null
+++ b/dist/ionicons/socialOctocat.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialOctocat = void 0;
+var socialOctocat = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#231F20",
+ "d": "M178.354,287.478c-9.123,0-16.928,4.207-23.201,12.833c-6.291,8.478-9.398,18.973-9.398,31.431\r\n\t\tc0,12.474,3.166,23.008,9.398,31.509c6.273,8.54,14.039,12.771,23.201,12.771c8.494,0,15.889-4.27,22.121-12.771\r\n\t\tc6.271-8.501,9.398-19.035,9.398-31.509c0-12.419-3.166-22.93-9.398-31.431C194.242,291.724,186.908,287.478,178.354,287.478z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#231F20",
+ "d": "M178.354,287.478c-9.123,0-16.928,4.207-23.201,12.833c-6.291,8.478-9.398,18.973-9.398,31.431\r\n\t\tc0,12.474,3.166,23.008,9.398,31.509c6.273,8.54,14.039,12.771,23.201,12.771c8.494,0,15.889-4.27,22.121-12.771\r\n\t\tc6.271-8.501,9.398-19.035,9.398-31.509c0-12.419-3.166-22.93-9.398-31.431C194.242,291.724,186.908,287.478,178.354,287.478z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#231F20",
+ "d": "M334.668,287.478c-9.045,0-16.891,4.207-23.182,12.833c-6.271,8.478-9.359,18.973-9.359,31.431\r\n\t\tc0,12.474,3.186,23.008,9.359,31.509c6.291,8.54,14.098,12.771,23.182,12.771c8.533,0,15.906-4.27,22.178-12.771\r\n\t\tc6.293-8.501,9.418-19.035,9.418-31.509c0-12.419-3.164-22.93-9.418-31.431C350.574,291.724,343.299,287.478,334.668,287.478z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#231F20",
+ "d": "M334.668,287.478c-9.045,0-16.891,4.207-23.182,12.833c-6.271,8.478-9.359,18.973-9.359,31.431\r\n\t\tc0,12.474,3.186,23.008,9.359,31.509c6.291,8.54,14.098,12.771,23.182,12.771c8.533,0,15.906-4.27,22.178-12.771\r\n\t\tc6.293-8.501,9.418-19.035,9.418-31.509c0-12.419-3.164-22.93-9.418-31.431C350.574,291.724,343.299,287.478,334.668,287.478z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#231F20",
+ "d": "M445.777,172h-0.059c0,0,2.793-14.264,0.314-39.18c-2.182-24.916-7.471-47.838-16.123-68.82\r\n\t\tc0,0-4.422,0.76-12.76,2.896s-22.08,6.299-40.938,14.768c-18.541,8.54-37.986,19.788-58.297,33.505\r\n\t\tc-13.803-3.934-34.408-5.939-61.994-5.939c-26.289,0-46.914,2.012-61.977,5.945c-44.592-30.859-81.832-47.945-112.092-51.175\r\n\t\tc-8.594,20.982-13.883,43.991-16.045,68.97c-2.398,24.939,0.432,39.329,0.432,39.329C41.979,198.551,32,236.541,32,267.793\r\n\t\tc0,24.244,0.658,46.078,6.125,65.48c5.564,19.31,12.662,35.13,21.098,47.221c8.611,12.121,19.012,22.788,31.576,31.938\r\n\t\tc12.467,9.314,23.988,15.962,34.389,20.216c10.461,4.372,22.375,7.602,35.982,9.861c13.33,2.386,23.438,3.645,30.477,3.996\r\n\t\tc0,0,28,1.494,64.354,1.494c36.354,0,64.295-1.494,64.295-1.494c7.02-0.352,17.145-1.634,30.535-3.996\r\n\t\tc13.547-2.299,25.521-5.607,35.941-9.861c10.402-4.293,21.943-10.901,34.469-20.216c12.523-9.032,22.906-19.739,31.518-31.938\r\n\t\tc8.436-12.091,15.494-27.911,21.098-47.221c5.486-19.402,6.145-41.385,6.145-65.629C480,237.389,469.982,199,445.777,172z\r\n\t\t M380.383,405.645C352.521,418.736,311.486,424,257.061,424l-2.143-0.039c-54.443,0-95.361-5.248-122.848-18.41\r\n\t\tc-27.508-13.092-41.271-40.057-41.271-80.738c0-24.33,8.572-43.99,25.482-59.107c7.354-6.515,16.438-11.019,27.645-13.717\r\n\t\tc11.129-2.558,21.354-2.762,30.969-2.465c9.398,0.415,22.551,2.196,39.344,3.464C231.029,254.285,243.535,256,256,256\r\n\t\tc11.698,0,27.213-1.957,52.104-3.959c24.99-1.971,43.494-2.971,55.467-1c12.289,2.002,22.986,6.202,32.129,14.742\r\n\t\tc17.734,15.751,26.602,35.505,26.602,59.084C422.301,365.533,408.164,392.537,380.383,405.645z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#231F20",
+ "d": "M445.777,172h-0.059c0,0,2.793-14.264,0.314-39.18c-2.182-24.916-7.471-47.838-16.123-68.82\r\n\t\tc0,0-4.422,0.76-12.76,2.896s-22.08,6.299-40.938,14.768c-18.541,8.54-37.986,19.788-58.297,33.505\r\n\t\tc-13.803-3.934-34.408-5.939-61.994-5.939c-26.289,0-46.914,2.012-61.977,5.945c-44.592-30.859-81.832-47.945-112.092-51.175\r\n\t\tc-8.594,20.982-13.883,43.991-16.045,68.97c-2.398,24.939,0.432,39.329,0.432,39.329C41.979,198.551,32,236.541,32,267.793\r\n\t\tc0,24.244,0.658,46.078,6.125,65.48c5.564,19.31,12.662,35.13,21.098,47.221c8.611,12.121,19.012,22.788,31.576,31.938\r\n\t\tc12.467,9.314,23.988,15.962,34.389,20.216c10.461,4.372,22.375,7.602,35.982,9.861c13.33,2.386,23.438,3.645,30.477,3.996\r\n\t\tc0,0,28,1.494,64.354,1.494c36.354,0,64.295-1.494,64.295-1.494c7.02-0.352,17.145-1.634,30.535-3.996\r\n\t\tc13.547-2.299,25.521-5.607,35.941-9.861c10.402-4.293,21.943-10.901,34.469-20.216c12.523-9.032,22.906-19.739,31.518-31.938\r\n\t\tc8.436-12.091,15.494-27.911,21.098-47.221c5.486-19.402,6.145-41.385,6.145-65.629C480,237.389,469.982,199,445.777,172z\r\n\t\t M380.383,405.645C352.521,418.736,311.486,424,257.061,424l-2.143-0.039c-54.443,0-95.361-5.248-122.848-18.41\r\n\t\tc-27.508-13.092-41.271-40.057-41.271-80.738c0-24.33,8.572-43.99,25.482-59.107c7.354-6.515,16.438-11.019,27.645-13.717\r\n\t\tc11.129-2.558,21.354-2.762,30.969-2.465c9.398,0.415,22.551,2.196,39.344,3.464C231.029,254.285,243.535,256,256,256\r\n\t\tc11.698,0,27.213-1.957,52.104-3.959c24.99-1.971,43.494-2.971,55.467-1c12.289,2.002,22.986,6.202,32.129,14.742\r\n\t\tc17.734,15.751,26.602,35.505,26.602,59.084C422.301,365.533,408.164,392.537,380.383,405.645z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialOctocat = socialOctocat;
\ No newline at end of file
diff --git a/dist/ionicons/socialPinterest.js b/dist/ionicons/socialPinterest.js
new file mode 100644
index 000000000..d6790a00d
--- /dev/null
+++ b/dist/ionicons/socialPinterest.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialPinterest = void 0;
+var socialPinterest = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,91.7,55.2,170.5,134.1,205.2c-0.6-15.6-0.1-34.4,3.9-51.4\r\n\t\tc4.3-18.2,28.8-122.1,28.8-122.1s-7.2-14.3-7.2-35.4c0-33.2,19.2-58,43.2-58c20.4,0,30.2,15.3,30.2,33.6\r\n\t\tc0,20.5-13.1,51.1-19.8,79.5c-5.6,23.8,11.9,43.1,35.4,43.1c42.4,0,71-54.5,71-119.1c0-49.1-33.1-85.8-93.2-85.8\r\n\t\tc-67.9,0-110.3,50.7-110.3,107.3c0,19.5,5.8,33.3,14.8,43.9c4.1,4.9,4.7,6.9,3.2,12.5c-1.1,4.1-3.5,14-4.6,18\r\n\t\tc-1.5,5.7-6.1,7.7-11.2,5.6c-31.3-12.8-45.9-47-45.9-85.6c0-63.6,53.7-139.9,160.1-139.9c85.5,0,141.8,61.9,141.8,128.3\r\n\t\tc0,87.9-48.9,153.5-120.9,153.5c-24.2,0-46.9-13.1-54.7-27.9c0,0-13,51.6-15.8,61.6c-4.7,17.3-14,34.5-22.5,48\r\n\t\tc20.1,5.9,41.4,9.2,63.5,9.2c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256c0,91.7,55.2,170.5,134.1,205.2c-0.6-15.6-0.1-34.4,3.9-51.4\r\n\t\tc4.3-18.2,28.8-122.1,28.8-122.1s-7.2-14.3-7.2-35.4c0-33.2,19.2-58,43.2-58c20.4,0,30.2,15.3,30.2,33.6\r\n\t\tc0,20.5-13.1,51.1-19.8,79.5c-5.6,23.8,11.9,43.1,35.4,43.1c42.4,0,71-54.5,71-119.1c0-49.1-33.1-85.8-93.2-85.8\r\n\t\tc-67.9,0-110.3,50.7-110.3,107.3c0,19.5,5.8,33.3,14.8,43.9c4.1,4.9,4.7,6.9,3.2,12.5c-1.1,4.1-3.5,14-4.6,18\r\n\t\tc-1.5,5.7-6.1,7.7-11.2,5.6c-31.3-12.8-45.9-47-45.9-85.6c0-63.6,53.7-139.9,160.1-139.9c85.5,0,141.8,61.9,141.8,128.3\r\n\t\tc0,87.9-48.9,153.5-120.9,153.5c-24.2,0-46.9-13.1-54.7-27.9c0,0-13,51.6-15.8,61.6c-4.7,17.3-14,34.5-22.5,48\r\n\t\tc20.1,5.9,41.4,9.2,63.5,9.2c123.7,0,224-100.3,224-224C480,132.3,379.7,32,256,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialPinterest = socialPinterest;
\ No newline at end of file
diff --git a/dist/ionicons/socialPinterestOutline.js b/dist/ionicons/socialPinterestOutline.js
new file mode 100644
index 000000000..27e0815d7
--- /dev/null
+++ b/dist/ionicons/socialPinterestOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialPinterestOutline = void 0;
+var socialPinterestOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,32C132.3,32,32,132.3,32,256s100.3,224,224,224s224-100.3,224-224S379.7,32,256,32z M391.8,391.8\r\n\tC355.5,428,307.3,448,256,448c-16.2,0-32.1-2-47.4-5.9c2.8-6.3,5.2-12.8,7-19.3c2.8-10,15.8-61.6,15.8-61.6\r\n\tc7.8,14.8,30.5,27.9,54.7,27.9c72,0,120.9-65.6,120.9-153.5c0-66.4-56.3-128.3-141.8-128.3c-106.4,0-160.1,76.3-160.1,139.9\r\n\tc0,38.5,14.6,72.8,45.9,85.6c5.1,2.1,9.7,0.1,11.2-5.6c1-3.9,3.5-13.9,4.6-18c1.5-5.6,0.9-7.6-3.2-12.5c-9-10.7-14.8-24.4-14.8-43.9\r\n\tc0-56.6,42.3-107.3,110.3-107.3c60.1,0,93.2,36.7,93.2,85.8c0,64.6-28.6,119.1-71,119.1c-23.4,0-41-19.4-35.4-43.1\r\n\tc6.7-28.4,19.8-59,19.8-79.5c0-18.3-9.8-33.6-30.2-33.6c-24,0-43.2,24.8-43.2,58c0,21.1,7.2,35.4,7.2,35.4s-24.5,103.9-28.8,122.1\r\n\tc-1.3,5.5-2.2,11.1-2.9,16.8c-17.3-9-33.3-20.6-47.4-34.8C84,355.5,64,307.3,64,256s20-99.5,56.2-135.8C156.5,84,204.7,64,256,64\r\n\ts99.5,20,135.8,56.2C428,156.5,448,204.7,448,256S428,355.5,391.8,391.8z"
+ },
+ "children": []
+ }]
+};
+exports.socialPinterestOutline = socialPinterestOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialPython.js b/dist/ionicons/socialPython.js
new file mode 100644
index 000000000..439941072
--- /dev/null
+++ b/dist/ionicons/socialPython.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialPython = void 0;
+var socialPython = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M193.46,249.056c3.723-0.67,7.589-1.041,11.586-1.041L201.924,248h103.823c4.503,0,8.806-0.617,12.908-1.754\r\n\t\tc19.37-5.363,33.345-22.537,33.345-43.663v-30.822v-56.402c0-24.832-21.15-43.484-46.289-47.606\r\n\t\tc-15.931-2.624-39.258-3.827-55.089-3.749c-15.829,0.086-30.981,1.404-44.277,3.749C167.143,74.576,160,88.928,160,115.359V144h96\r\n\t\tv16H128.82c-35.628,0-64.538,42.571-64.813,95.242C64.005,255.495,64,255.747,64,256c0,9.523,0.94,18.72,2.685,27.404\r\n\t\tC74.648,323.07,99.451,352,128.82,352H144v-2.662v-43.273C144,279.238,164.146,254.332,193.46,249.056z M203.656,127.002\r\n\t\tc-9.592,0-17.384-7.785-17.384-17.403c0-9.664,7.774-17.52,17.384-17.52c9.574,0,17.399,7.855,17.399,17.52\r\n\t\tC221.056,119.217,213.246,127.002,203.656,127.002z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M193.46,249.056c3.723-0.67,7.589-1.041,11.586-1.041L201.924,248h103.823c4.503,0,8.806-0.617,12.908-1.754\r\n\t\tc19.37-5.363,33.345-22.537,33.345-43.663v-30.822v-56.402c0-24.832-21.15-43.484-46.289-47.606\r\n\t\tc-15.931-2.624-39.258-3.827-55.089-3.749c-15.829,0.086-30.981,1.404-44.277,3.749C167.143,74.576,160,88.928,160,115.359V144h96\r\n\t\tv16H128.82c-35.628,0-64.538,42.571-64.813,95.242C64.005,255.495,64,255.747,64,256c0,9.523,0.94,18.72,2.685,27.404\r\n\t\tC74.648,323.07,99.451,352,128.82,352H144v-2.662v-43.273C144,279.238,164.146,254.332,193.46,249.056z M203.656,127.002\r\n\t\tc-9.592,0-17.384-7.785-17.384-17.403c0-9.664,7.774-17.52,17.384-17.52c9.574,0,17.399,7.855,17.399,17.52\r\n\t\tC221.056,119.217,213.246,127.002,203.656,127.002z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M443.951,222.543C434.78,186.021,411.033,160,383.18,160H368v2.626v38.046c0,33.915-22.286,58.474-49.489,62.681\r\n\t\tc-2.737,0.424-5.483,0.646-8.301,0.646H206.351c-4.518,0-8.904,0.584-13.049,1.672C174.18,270.689,160,286.6,160,307.236v32.922\r\n\t\tv54.305c0,24.832,24.977,39.426,49.481,46.551c29.327,8.531,61.267,10.068,96.366,0C329.15,434.354,352,420.893,352,394.463V368\r\n\t\th-96v-16h127.18c25.24,0,47.107-21.365,57.814-52.549C445.474,286.404,448,271.641,448,256\r\n\t\tC448,244.232,446.567,232.962,443.951,222.543z M307.867,382.82c9.59,0,17.381,7.785,17.381,17.4\r\n\t\tc0,9.65-7.791,17.521-17.381,17.521c-9.577,0-17.399-7.871-17.399-17.521C290.468,390.59,298.274,382.82,307.867,382.82z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M443.951,222.543C434.78,186.021,411.033,160,383.18,160H368v2.626v38.046c0,33.915-22.286,58.474-49.489,62.681\r\n\t\tc-2.737,0.424-5.483,0.646-8.301,0.646H206.351c-4.518,0-8.904,0.584-13.049,1.672C174.18,270.689,160,286.6,160,307.236v32.922\r\n\t\tv54.305c0,24.832,24.977,39.426,49.481,46.551c29.327,8.531,61.267,10.068,96.366,0C329.15,434.354,352,420.893,352,394.463V368\r\n\t\th-96v-16h127.18c25.24,0,47.107-21.365,57.814-52.549C445.474,286.404,448,271.641,448,256\r\n\t\tC448,244.232,446.567,232.962,443.951,222.543z M307.867,382.82c9.59,0,17.381,7.785,17.381,17.4\r\n\t\tc0,9.65-7.791,17.521-17.381,17.521c-9.577,0-17.399-7.871-17.399-17.521C290.468,390.59,298.274,382.82,307.867,382.82z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialPython = socialPython;
\ No newline at end of file
diff --git a/dist/ionicons/socialReddit.js b/dist/ionicons/socialReddit.js
new file mode 100644
index 000000000..c468d3def
--- /dev/null
+++ b/dist/ionicons/socialReddit.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialReddit = void 0;
+var socialReddit = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-32.4-22.8-76.1-37.8-124.9-40.6l21.9-73.2l67.1,13.5\r\n\tc2.3,22.7,21.2,40.4,44.3,40.4c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64\r\n\tc-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c-17.2,0-32,9.8-39.5,24.3l-89.7-18l-30.8,103l-2.5,0.1c-50.3,2.2-95.5,17.4-128.7,40.7\r\n\tc-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8c-0.8,4.9-1.2,9.8-1.2,14.8\r\n\tC57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8C469.5,287.4,480.5,270.5,480.5,251z M65.8,271.1\r\n\tc-6.6-4.5-10.9-12.1-10.9-20.8c0-13.8,11.1-25.1,24.7-25.1c5.6,0,10.8,1.9,15,5.1C81.1,242.2,71.1,256,65.8,271.1z M389.3,109.1\r\n\tc0-9.2,7.4-16.8,16.5-16.8s16.5,7.5,16.5,16.8c0,9.2-7.4,16.8-16.5,16.8S389.3,118.4,389.3,109.1z M158.5,288.4\r\n\tc0-17.6,14.2-31.8,31.8-31.8s31.8,14.2,31.8,31.8c0,17.6-14.2,31.8-31.8,31.8S158.5,306,158.5,288.4z M256,400\r\n\tc-47.6-0.2-76-28.5-77.2-29.7l12.6-12.4c0.2,0.2,23.7,24.2,64.6,24.4c40.3-0.2,64.2-24.2,64.5-24.4l12.6,12.4\r\n\tC331.9,371.5,303.6,399.8,256,400z M322.3,320.2c-17.6,0-31.8-14.2-31.8-31.8c0-17.6,14.2-31.8,31.8-31.8s31.8,14.2,31.8,31.8\r\n\tC354.1,306,339.8,320.2,322.3,320.2z M446.4,271.5c-5.4-15.3-15.6-29.4-29.3-41.4c4.2-3.3,9.5-5.2,15.2-5.2\r\n\tc13.9,0,25.1,11.4,25.1,25.5C457.5,259.2,453.1,266.9,446.4,271.5z"
+ },
+ "children": []
+ }]
+};
+exports.socialReddit = socialReddit;
\ No newline at end of file
diff --git a/dist/ionicons/socialRedditOutline.js b/dist/ionicons/socialRedditOutline.js
new file mode 100644
index 000000000..2fa433eb6
--- /dev/null
+++ b/dist/ionicons/socialRedditOutline.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialRedditOutline = void 0;
+var socialRedditOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "322.3",
+ "cy": "288.4",
+ "r": "31.8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "322.3",
+ "cy": "288.4",
+ "r": "31.8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "190.3",
+ "cy": "288.4",
+ "r": "31.8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "190.3",
+ "cy": "288.4",
+ "r": "31.8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-33.2-23.4-78.4-38.5-128.7-40.7L292,95.7l69.6,13.9\r\n\t\t\tc0.2,24.7,20.1,44.7,44.5,44.7c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64c-18.6,0-34.5,11.6-41.2,28l-85.2-17l-29.4,98.2\r\n\t\t\tl-7.1,0.2c-50.3,2.2-95.5,17.4-128.7,40.7c-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8\r\n\t\t\tc-0.8,4.9-1.2,9.8-1.2,14.8C57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8\r\n\t\t\tC469.5,287.4,480.5,270.5,480.5,251z M406.1,81.9c14.8,0,26.8,12.2,26.8,27.2c0,15-12,27.2-26.8,27.2c-14.8,0-26.8-12.2-26.8-27.2\r\n\t\t\tC379.3,94.1,391.3,81.9,406.1,81.9z M49.2,251c0-17.8,14.3-32.2,31.8-32.2c7.2,0,13.9,2.5,19.2,6.6c-17.3,15.2-30.1,33-37,52.4\r\n\t\t\tC54.8,271.9,49.2,262.1,49.2,251z M386.4,392.9c-34.6,23.9-80.9,37.1-130.4,37.1s-95.8-13.2-130.4-37.1\r\n\t\t\tc-32.5-22.5-50.4-51.8-50.4-82.4c0-3.2,0.2-6.5,0.6-9.7c0.7-6,2.2-11.9,4.3-17.7c5.6-15.6,16-30.3,30.7-43.4\r\n\t\t\tc4.4-3.9,9.2-7.7,14.4-11.3c0.1-0.1,0.3-0.2,0.4-0.3C160.2,204.2,206.5,191,256,191c49.5,0,95.8,13.2,130.4,37.1\r\n\t\t\tc0.1,0.1,0.3,0.2,0.4,0.3c5.2,3.6,10,7.4,14.4,11.3c14.7,13.1,25.1,27.8,30.7,43.4c2.1,5.8,3.5,11.7,4.3,17.7\r\n\t\t\tc0.4,3.2,0.6,6.4,0.6,9.7C436.8,341.1,418.9,370.4,386.4,392.9z M448.8,277.7c-6.9-19.4-19.7-37.2-37-52.4\r\n\t\t\tc5.3-4.1,12-6.6,19.2-6.6c17.5,0,31.8,14.5,31.8,32.2C462.8,262.1,457.2,271.9,448.8,277.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480.5,251c0-27.7-22.2-50.2-49.5-50.2c-13,0-24.7,5-33.6,13.3c-33.2-23.4-78.4-38.5-128.7-40.7L292,95.7l69.6,13.9\r\n\t\t\tc0.2,24.7,20.1,44.7,44.5,44.7c24.6,0,44.5-20.2,44.5-45.1S430.7,64,406.1,64c-18.6,0-34.5,11.6-41.2,28l-85.2-17l-29.4,98.2\r\n\t\t\tl-7.1,0.2c-50.3,2.2-95.5,17.4-128.7,40.7c-8.8-8.3-20.6-13.3-33.6-13.3c-27.3,0-49.5,22.5-49.5,50.2c0,19.6,11,36.5,27.1,44.8\r\n\t\t\tc-0.8,4.9-1.2,9.8-1.2,14.8C57.5,386.4,146.4,448,256,448s198.5-61.6,198.5-137.5c0-5-0.4-9.9-1.1-14.8\r\n\t\t\tC469.5,287.4,480.5,270.5,480.5,251z M406.1,81.9c14.8,0,26.8,12.2,26.8,27.2c0,15-12,27.2-26.8,27.2c-14.8,0-26.8-12.2-26.8-27.2\r\n\t\t\tC379.3,94.1,391.3,81.9,406.1,81.9z M49.2,251c0-17.8,14.3-32.2,31.8-32.2c7.2,0,13.9,2.5,19.2,6.6c-17.3,15.2-30.1,33-37,52.4\r\n\t\t\tC54.8,271.9,49.2,262.1,49.2,251z M386.4,392.9c-34.6,23.9-80.9,37.1-130.4,37.1s-95.8-13.2-130.4-37.1\r\n\t\t\tc-32.5-22.5-50.4-51.8-50.4-82.4c0-3.2,0.2-6.5,0.6-9.7c0.7-6,2.2-11.9,4.3-17.7c5.6-15.6,16-30.3,30.7-43.4\r\n\t\t\tc4.4-3.9,9.2-7.7,14.4-11.3c0.1-0.1,0.3-0.2,0.4-0.3C160.2,204.2,206.5,191,256,191c49.5,0,95.8,13.2,130.4,37.1\r\n\t\t\tc0.1,0.1,0.3,0.2,0.4,0.3c5.2,3.6,10,7.4,14.4,11.3c14.7,13.1,25.1,27.8,30.7,43.4c2.1,5.8,3.5,11.7,4.3,17.7\r\n\t\t\tc0.4,3.2,0.6,6.4,0.6,9.7C436.8,341.1,418.9,370.4,386.4,392.9z M448.8,277.7c-6.9-19.4-19.7-37.2-37-52.4\r\n\t\t\tc5.3-4.1,12-6.6,19.2-6.6c17.5,0,31.8,14.5,31.8,32.2C462.8,262.1,457.2,271.9,448.8,277.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M320.5,357.9c-0.2,0.2-24.2,24.2-64.5,24.4c-40.9-0.2-64.4-24.2-64.6-24.4l-12.6,12.4c1.2,1.2,29.6,29.5,77.2,29.7\r\n\t\t\tc47.6-0.2,75.9-28.5,77.1-29.7L320.5,357.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320.5,357.9c-0.2,0.2-24.2,24.2-64.5,24.4c-40.9-0.2-64.4-24.2-64.6-24.4l-12.6,12.4c1.2,1.2,29.6,29.5,77.2,29.7\r\n\t\t\tc47.6-0.2,75.9-28.5,77.1-29.7L320.5,357.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialRedditOutline = socialRedditOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialRss.js b/dist/ionicons/socialRss.js
new file mode 100644
index 000000000..74e3cd980
--- /dev/null
+++ b/dist/ionicons/socialRss.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialRss = void 0;
+var socialRss = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialRss = socialRss;
\ No newline at end of file
diff --git a/dist/ionicons/socialRssOutline.js b/dist/ionicons/socialRssOutline.js
new file mode 100644
index 000000000..3837b7272
--- /dev/null
+++ b/dist/ionicons/socialRssOutline.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialRssOutline = void 0;
+var socialRssOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z M119.9,431.5c-22,0-39.9-17.8-39.9-39.6c0-21.9,17.9-39.8,39.9-39.8\r\n\t\tc22,0,39.9,17.9,39.9,39.8C159.8,413.7,141.9,431.5,119.9,431.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M119.9,336.1c-30.8,0-55.9,25.1-55.9,55.8c0,30.8,25.1,55.6,55.9,55.6c30.9,0,55.9-24.9,55.9-55.6\r\n\t\tC175.8,361.2,150.8,336.1,119.9,336.1z M119.9,431.5c-22,0-39.9-17.8-39.9-39.6c0-21.9,17.9-39.8,39.9-39.8\r\n\t\tc22,0,39.9,17.9,39.9,39.8C159.8,413.7,141.9,431.5,119.9,431.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z M303.5,432h-48\r\n\t\tc-3.1-49.7-21-92.1-52.2-123.3C172.1,277.4,130,259.5,80,256.4v-47.8c26,1.8,52.1,8,76.7,18.5c28.5,12.2,54.2,29.6,76.4,51.8\r\n\t\tc22.2,22.2,39.6,47.9,51.8,76.4C295.5,379.9,301.7,405.6,303.5,432z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,192v79.9c48,0,94.1,14.2,128,48.1c33.9,33.9,48,79.9,48,128h80C320,308.1,204,192,64,192z M303.5,432h-48\r\n\t\tc-3.1-49.7-21-92.1-52.2-123.3C172.1,277.4,130,259.5,80,256.4v-47.8c26,1.8,52.1,8,76.7,18.5c28.5,12.2,54.2,29.6,76.4,51.8\r\n\t\tc22.2,22.2,39.6,47.9,51.8,76.4C295.5,379.9,301.7,405.6,303.5,432z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z M291.4,220.5C235.4,164.4,161,132,80,128.2V80.3\r\n\t\tC270,88.5,423.5,241.8,431.7,432h-48.2C379.7,351.1,347.3,276.5,291.4,220.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M64,64v79.9c171,0,303.9,133,303.9,304.1H448C448,236.3,276,64,64,64z M291.4,220.5C235.4,164.4,161,132,80,128.2V80.3\r\n\t\tC270,88.5,423.5,241.8,431.7,432h-48.2C379.7,351.1,347.3,276.5,291.4,220.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialRssOutline = socialRssOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialSass.js b/dist/ionicons/socialSass.js
new file mode 100644
index 000000000..b4665becd
--- /dev/null
+++ b/dist/ionicons/socialSass.js
@@ -0,0 +1,18 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialSass = void 0;
+var socialSass = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#231F20",
+ "d": "M511.784,329.108c-1.67-13.599-9.236-24.146-20.795-32.416c2.857,2.04,5.275,3.766-0.055-0.041\r\n\tc-7.189-5.131-3.38-2.411-0.047-0.032c-28.5-20.301-65.676-15.789-96.733-4.511c-12.447-20.295-12.987-35.783-5.816-57.937\r\n\tc0.929-2.8,0.295-4.354-2.624-5.604c-7.086-3.03-17.291-1.427-24.422,0.463c-2.462,0.646-4.254,1.9-4.8,4.381\r\n\tc-5.154,24.243-21.009,46.448-34.828,66.886c-9.731-18.652-8.96-33.087-2.414-52.516c0.798-2.366,0.431-3.624-1.937-4.879\r\n\tc-7.26-3.757-18.401-1.912-25.8,0.276c-8.509,2.482-21.29,44.594-25.372,52.946c-8.531,17.442-16.091,44.665-30.585,58.502\r\n\tc-12.3-15.807,22.526-51.517,10.882-65.851c-3.938-4.848-11.063-4.723-15.586-0.616c1.085-7.608,1.648-12.609-0.32-19.063\r\n\tc-2.081-6.79-7.361-10.687-15.09-10.49c-17.995,0.527-33.843,13.815-44.641,26.397c-10.277,12.105-37.381,19.627-51.953,26.927\r\n\tc-25.032-21.807-79.221-44.947-80.632-82.081c-1.528-41.846,48.319-70.245,81.597-87.228\r\n\tc43.28-22.104,109.961-49.608,159.138-25.436c13.049,6.414,18.299,20.171,14.707,33.348c-9.368,34.366-47.198,57.293-80.103,67.807\r\n\tc-16.189,5.175-33.969,9.027-51.1,8.026c-22.955-1.343-40.83-15.224-43.281-16.086c-2.049-0.389-1.888,2.261-1.347,3.664\r\n\tc23.816,62.433,144.417,16.681,175.956-15.371c15.189-15.421,24.413-30.365,28.351-53.894c4.616-27.583-15.634-44.842-31.004-51.957\r\n\tC213.212,56.65,105.494,103.89,46.577,152.049c-25.568,20.901-57.552,54.11-42.874,88.946c15.93,37.805,64.736,57.19,96.503,80.312\r\n\tC74.502,334.08,42.344,347.29,25.688,371.24c-9.524,13.729-12.903,28.359-5.811,43.966c12.572,27.568,58.285,15.622,77.573,3.471\r\n\tc17.67-11.13,29.563-26.07,34.7-45.228c4.455-16.609,3.541-33.866-3.856-49.512l28.585-14.458\r\n\tc-7.697,23.076-11.097,52.003,4.881,72.855c6.402,8.338,23.017,8.675,29.817,0.311c8.816-10.943,14.664-24.655,20.503-37.206\r\n\tc-0.682,9.373-1.856,19.996,1.377,28.165c3.71,9.373,12.126,11.291,20.792,5.343c26.52-18.203,43.398-68.652,56.463-98.062\r\n\tc3.552,12.829,7.473,24.548,13.957,36.376c1.602,2.903,1.407,4.774-0.796,7.195c-9.685,10.675-32.826,28.479-35.069,42.899\r\n\tc-0.524,3.371,1.713,6.599,5.686,7.37c15.573,3.108,32.838-2.531,45.482-11.078c13.188-8.922,17.446-21.087,14.245-35.515\r\n\tc-4.576-20.771,10.993-43.98,25.801-61.03c2.719,12.908,6.816,25.331,14.143,36.606c-13.075,11.483-32.58,27.764-29.779,46.939\r\n\tc0.988,6.865,7.135,11.301,14.514,9.736c15.783-3.324,29.416-10.113,39.37-22.146c9.023-10.855,5.792-22.701,1.856-34.635\r\n\tc23.872-6.815,48.022-8.177,71.831-0.027c11.495,3.91,20.755,10.5,26.248,20.818c6.726,12.644,2.939,24.292-10.05,32.604\r\n\tc-3.287,2.104-5.562,3.833-4.45,4.743c1.112,0.911,4.9,2.113,13.284-3.152c8.384-5.267,13.51-12.383,14.823-21.725\r\n\tC512.071,334.28,512.063,331.696,511.784,329.108z M112.946,354.367c-1.358,16.673-9.636,30.193-23.175,41.114\r\n\tc-7.617,6.158-17.102,11.176-26.52,12.092c-9.418,0.917-16.751-1.461-17.378-11.23c-1.764-27.493,40.923-54.424,64.625-62.533\r\n\tc2.02,6.86,3.011,13.666,2.432,20.587L112.946,354.367z M216.048,281.914c-3.903,22.309-14.83,62.347-32.314,78.336\r\n\tc-2.356,2.143-4.61,2.018-5.809-0.771c-10.345-24.059,3.671-73.669,33.082-81.328C214.464,277.262,216.609,278.733,216.048,281.914z\r\n\t M286.359,363.682c8.422-8.962,16.834-17.916,25.269-26.927C312.671,346.776,294.057,366.719,286.359,363.682z M367.073,345.986\r\n\tc-2.348,1.273-7.621,2.515-7.827,0.835c-1.482-12.085,11.816-24.874,20.067-30.867C383.766,327.297,378.495,339.788,367.073,345.986\r\n\tz"
+ },
+ "children": []
+ }]
+};
+exports.socialSass = socialSass;
\ No newline at end of file
diff --git a/dist/ionicons/socialSkype.js b/dist/ionicons/socialSkype.js
new file mode 100644
index 000000000..fb813efcc
--- /dev/null
+++ b/dist/ionicons/socialSkype.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialSkype = void 0;
+var socialSkype = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M436.9,296.8c2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6\r\n\tC210.3,69.9,191,64,170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3\r\n\tc0,99.8,82,180.6,183.1,180.6c11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7\r\n\tC448,326.6,444,310.8,436.9,296.8z M351.9,344.3c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9\r\n\tc-26.3,0-48.3-4.6-65.6-13.6c-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7\r\n\tc6.3,0,11.7,1.8,16.1,5.5c4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7\r\n\tc6.7,3.1,15.6,4.7,26.6,4.7c15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1\r\n\tc-5-4.6-11.5-8.2-19.6-10.6c-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7\r\n\tc-7.9-9.7-11.8-21.9-11.8-36.2c0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4\r\n\tc16.4,0,30.7,1.9,42.7,5.5c12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4\r\n\tc-5,5.1-11.3,7.8-18.8,7.8c-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7\r\n\tc-13.1,0-23.8,2.6-31.7,7.7c-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2\r\n\tc4.8,2.4,9.8,4.3,14.7,5.6c5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1\r\n\tc8.8,5.6,15.7,12.9,20.7,21.5c4.9,8.6,7.4,19.4,7.4,31.8C364.8,318.9,360.5,332.5,351.9,344.3z"
+ },
+ "children": []
+ }]
+};
+exports.socialSkype = socialSkype;
\ No newline at end of file
diff --git a/dist/ionicons/socialSkypeOutline.js b/dist/ionicons/socialSkypeOutline.js
new file mode 100644
index 000000000..6c44d37c8
--- /dev/null
+++ b/dist/ionicons/socialSkypeOutline.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialSkypeOutline = void 0;
+var socialSkypeOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M170.2,96c14,0,27.7,3.9,39.6,11.3l10.3,6.4l12-2c8.5-1.5,17.2-2.2,25.9-2.2c40.5,0,78.5,15.5,107,43.7\r\n\t\tc28.4,28,44.1,65.3,44.1,104.9c0,10.7-1.2,21.4-3.5,31.8l-2.5,11.1l5.1,10.2c5.1,10.1,7.7,20.9,7.7,32.2\r\n\t\tc0,40.1-33.3,72.7-74.2,72.7c-12.5,0-24.3-2.9-35.2-8.7l-9.8-5.2l-10.9,2c-9.1,1.7-18.5,2.5-27.8,2.5c-40.5,0-78.5-15.5-107-43.7\r\n\t\tc-28.4-28-44.1-65.3-44.1-104.9c0-10,1-20.1,3-29.9l2.5-12.2l-6.4-10.7C99.5,194.2,96,181.6,96,168.7C96,128.6,129.3,96,170.2,96\r\n\t\t M170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3c0,99.8,82,180.6,183.1,180.6\r\n\t\tc11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7c0-16.7-4-32.5-11.1-46.5\r\n\t\tc2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6C210.3,69.9,191,64,170.2,64L170.2,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M170.2,96c14,0,27.7,3.9,39.6,11.3l10.3,6.4l12-2c8.5-1.5,17.2-2.2,25.9-2.2c40.5,0,78.5,15.5,107,43.7\r\n\t\tc28.4,28,44.1,65.3,44.1,104.9c0,10.7-1.2,21.4-3.5,31.8l-2.5,11.1l5.1,10.2c5.1,10.1,7.7,20.9,7.7,32.2\r\n\t\tc0,40.1-33.3,72.7-74.2,72.7c-12.5,0-24.3-2.9-35.2-8.7l-9.8-5.2l-10.9,2c-9.1,1.7-18.5,2.5-27.8,2.5c-40.5,0-78.5-15.5-107-43.7\r\n\t\tc-28.4-28-44.1-65.3-44.1-104.9c0-10,1-20.1,3-29.9l2.5-12.2l-6.4-10.7C99.5,194.2,96,181.6,96,168.7C96,128.6,129.3,96,170.2,96\r\n\t\t M170.2,64C111.6,64,64,110.9,64,168.7c0,19.4,5.3,37.5,14.6,53c-2.4,11.7-3.7,23.9-3.7,36.3c0,99.8,82,180.6,183.1,180.6\r\n\t\tc11.5,0,22.7-1,33.5-3c15,7.9,32.1,12.4,50.2,12.4c58.7,0,106.2-46.9,106.2-104.7c0-16.7-4-32.5-11.1-46.5\r\n\t\tc2.8-12.5,4.2-25.4,4.2-38.7c0-99.7-82-180.6-183.2-180.6c-10.7,0-21.1,0.9-31.3,2.6C210.3,69.9,191,64,170.2,64L170.2,64z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M351.9,344.1c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9c-26.3,0-48.3-4.6-65.6-13.6\r\n\t\tc-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7c6.3,0,11.7,1.8,16.1,5.5\r\n\t\tc4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7c6.7,3.1,15.6,4.7,26.6,4.7\r\n\t\tc15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1c-5-4.6-11.5-8.2-19.6-10.6\r\n\t\tc-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7C159,226.5,155,214.3,155,200\r\n\t\tc0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4c16.4,0,30.7,1.9,42.7,5.5\r\n\t\tc12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4c-5,5.1-11.3,7.8-18.8,7.8\r\n\t\tc-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7c-13.1,0-23.8,2.6-31.7,7.7\r\n\t\tc-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2c4.8,2.4,9.8,4.3,14.7,5.6\r\n\t\tc5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1c8.8,5.6,15.7,12.9,20.7,21.5\r\n\t\tc4.9,8.6,7.4,19.4,7.4,31.8C364.7,318.7,360.4,332.3,351.9,344.1z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M351.9,344.1c-8.5,11.8-21,21.2-37.2,27.8c-16.1,6.6-35.3,9.9-57.3,9.9c-26.3,0-48.3-4.6-65.6-13.6\r\n\t\tc-12.3-6.6-22.4-15.4-30.2-26.4c-7.8-11-11.7-22-11.7-32.6c0-6.6,2.6-12.3,7.6-17.1c5-4.6,11.5-7,19.1-7c6.3,0,11.7,1.8,16.1,5.5\r\n\t\tc4.2,3.5,7.8,8.7,10.7,15.5c3.3,7.3,6.8,13.5,10.6,18.4c3.6,4.7,8.7,8.6,15.3,11.7c6.7,3.1,15.6,4.7,26.6,4.7\r\n\t\tc15.1,0,27.5-3.2,36.8-9.5c9.2-6.1,13.6-13.5,13.6-22.5c0-7.1-2.3-12.7-7.1-17.1c-5-4.6-11.5-8.2-19.6-10.6\r\n\t\tc-8.3-2.6-19.6-5.3-33.6-8.2c-19-4-35.1-8.8-48-14.2c-13.1-5.5-23.7-13.2-31.5-22.7C159,226.5,155,214.3,155,200\r\n\t\tc0-13.7,4.2-25.9,12.4-36.5c8.2-10.5,20.1-18.7,35.6-24.3c15.2-5.6,33.3-8.4,53.7-8.4c16.4,0,30.7,1.9,42.7,5.5\r\n\t\tc12.1,3.7,22.2,8.7,30.3,14.9c8,6.2,14,12.8,17.8,19.7c3.8,7,5.7,13.9,5.7,20.6c0,6.4-2.5,12.3-7.5,17.4c-5,5.1-11.3,7.8-18.8,7.8\r\n\t\tc-6.8,0-12.1-1.6-15.8-4.8c-3.4-3-7-7.6-10.9-14.3c-4.6-8.5-10.1-15.3-16.4-20.1c-6.2-4.6-16.4-7-30.6-7c-13.1,0-23.8,2.6-31.7,7.7\r\n\t\tc-7.6,4.9-11.3,10.6-11.3,17.3c0,4.1,1.2,7.5,3.7,10.5c2.6,3.1,6.2,5.9,10.9,8.2c4.8,2.4,9.8,4.3,14.7,5.6\r\n\t\tc5.1,1.4,13.6,3.5,25.3,6.1c14.9,3.1,28.5,6.7,40.5,10.4c12.2,3.9,22.7,8.6,31.3,14.1c8.8,5.6,15.7,12.9,20.7,21.5\r\n\t\tc4.9,8.6,7.4,19.4,7.4,31.8C364.7,318.7,360.4,332.3,351.9,344.1z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialSkypeOutline = socialSkypeOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialSnapchat.js b/dist/ionicons/socialSnapchat.js
new file mode 100644
index 000000000..d6e5c0cbe
--- /dev/null
+++ b/dist/ionicons/socialSnapchat.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialSnapchat = void 0;
+var socialSnapchat = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M495.998,360.389l-0.189-14.501l-14.398-1.278c-15.413-1.396-43.8-7.219-54.301-16.9\r\n\t\tc-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186c4.985-3.174,12.589-5.584,19.297-7.71\r\n\t\tc5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807c-1.215-15.166-14.424-27.046-30.072-27.046\r\n\t\tc-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962c0.747-9.319,1.791-20.12,3.211-30.67\r\n\t\tc5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32H256c-41.093,0-79.215,16.208-104.591,45.341\r\n\t\tc-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618c-3.97-0.559-9.686-1.998-17.703-5.034\r\n\t\tc-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003c-1.027,12.818,8.235,24.393,17.47,28.783\r\n\t\tc4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703c4.147,2.639,4.147,4.168,4.147,5.182\r\n\t\tc0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311L16,360.603\r\n\t\tc0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518C495.822,370.982,496.021,362.074,495.998,360.389z M208,128c8.836,0,16,10.745,16,24\r\n\t\ts-7.164,24-16,24s-16-10.745-16-24S199.164,128,208,128z M311.615,205.698C296.368,220.725,276.617,229,256,229\r\n\t\tc-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tC314.799,197.531,314.762,202.597,311.615,205.698z M304,176c-8.836,0-16-10.746-16-24s7.164-24,16-24s16,10.746,16,24\r\n\t\tS312.836,176,304,176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M495.998,360.389l-0.189-14.501l-14.398-1.278c-15.413-1.396-43.8-7.219-54.301-16.9\r\n\t\tc-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186c4.985-3.174,12.589-5.584,19.297-7.71\r\n\t\tc5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807c-1.215-15.166-14.424-27.046-30.072-27.046\r\n\t\tc-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962c0.747-9.319,1.791-20.12,3.211-30.67\r\n\t\tc5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32H256c-41.093,0-79.215,16.208-104.591,45.341\r\n\t\tc-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618c-3.97-0.559-9.686-1.998-17.703-5.034\r\n\t\tc-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003c-1.027,12.818,8.235,24.393,17.47,28.783\r\n\t\tc4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703c4.147,2.639,4.147,4.168,4.147,5.182\r\n\t\tc0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311L16,360.603\r\n\t\tc0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518C495.822,370.982,496.021,362.074,495.998,360.389z M208,128c8.836,0,16,10.745,16,24\r\n\t\ts-7.164,24-16,24s-16-10.745-16-24S199.164,128,208,128z M311.615,205.698C296.368,220.725,276.617,229,256,229\r\n\t\tc-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tC314.799,197.531,314.762,202.597,311.615,205.698z M304,176c-8.836,0-16-10.746-16-24s7.164-24,16-24s16,10.746,16,24\r\n\t\tS312.836,176,304,176z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialSnapchat = socialSnapchat;
\ No newline at end of file
diff --git a/dist/ionicons/socialSnapchatOutline.js b/dist/ionicons/socialSnapchatOutline.js
new file mode 100644
index 000000000..ccb3a8662
--- /dev/null
+++ b/dist/ionicons/socialSnapchatOutline.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialSnapchatOutline = void 0;
+var socialSnapchatOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.283,47.553c70.693,0,128,54.682,118,128.931c-2.072,15.388-3.422,31.483-4.26,44.759c0,0,2.402,4.253,12.664,4.253\r\n\t\tc6.071,0,14.895-1.543,27.596-6.354c2.236-0.847,4.377-1.241,6.377-1.241c7.918,0,13.615,5.931,14.123,12.271\r\n\t\tc0.426,5.31-4.564,11.199-8.371,13.009c-13.766,6.542-46.991,10.063-46.991,32.638c0,22.576,22.362,46.656,40.862,63.713\r\n\t\tS480,360.602,480,360.602s0.283,21.57-31.717,29.097c-32,7.524-32.1,5.712-33.25,13.796c-2.133,14.979-1.535,21.378-11.248,21.378\r\n\t\tc-1.672,0-3.651-0.19-6.002-0.558c-8.23-1.291-19.239-3.644-31.121-3.644c-11.216,0-23.21,2.097-34.379,9.161\r\n\t\tc-23,14.549-41.283,34.114-76.283,34.114s-53-19.565-76-34.114c-11.17-7.065-23.162-9.161-34.379-9.161\r\n\t\tc-11.88,0-22.892,2.353-31.121,3.644c-2.352,0.367-4.33,0.558-6.002,0.558c-9.71,0-9.115-6.399-11.248-21.378\r\n\t\tc-1.151-8.084-1.25-6.27-33.25-13.795s-32-29.097-32-29.097s45.5-4.012,64-21.068c18.5-17.058,40.862-41.134,40.862-63.71\r\n\t\tc0-22.575-33.226-26.09-46.991-32.632c-3.807-1.81-8.796-7.687-8.371-12.997c0.507-6.336,6.196-12.251,14.107-12.25\r\n\t\tc2.004,0,4.152,0.38,6.393,1.229c12.749,4.829,21.588,6.342,27.662,6.342c10.204,0,12.598-4.273,12.598-4.273\r\n\t\tc-0.837-13.275-2.187-29.371-4.259-44.759c-10-74.249,47.307-128.931,118-128.931l0,0 M256.283,32H256\r\n\t\tc-41.093,0-79.215,16.208-104.591,45.341c-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618\r\n\t\tc-3.97-0.559-9.686-1.998-17.703-5.034c-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003\r\n\t\tc-1.027,12.818,8.235,24.393,17.47,28.783c4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703\r\n\t\tc4.147,2.639,4.147,4.168,4.147,5.182c0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311\r\n\t\tL16,360.603c0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518c6.098-9.828,6.296-18.736,6.273-20.422l-0.189-14.501l-14.398-1.278\r\n\t\tc-15.413-1.396-43.8-7.219-54.301-16.9c-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186\r\n\t\tc4.985-3.174,12.589-5.584,19.297-7.71c5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807\r\n\t\tc-1.215-15.166-14.424-27.046-30.072-27.046c-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962\r\n\t\tc0.747-9.319,1.791-20.12,3.211-30.67c5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32L256.283,32z\r\n\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.283,47.553c70.693,0,128,54.682,118,128.931c-2.072,15.388-3.422,31.483-4.26,44.759c0,0,2.402,4.253,12.664,4.253\r\n\t\tc6.071,0,14.895-1.543,27.596-6.354c2.236-0.847,4.377-1.241,6.377-1.241c7.918,0,13.615,5.931,14.123,12.271\r\n\t\tc0.426,5.31-4.564,11.199-8.371,13.009c-13.766,6.542-46.991,10.063-46.991,32.638c0,22.576,22.362,46.656,40.862,63.713\r\n\t\tS480,360.602,480,360.602s0.283,21.57-31.717,29.097c-32,7.524-32.1,5.712-33.25,13.796c-2.133,14.979-1.535,21.378-11.248,21.378\r\n\t\tc-1.672,0-3.651-0.19-6.002-0.558c-8.23-1.291-19.239-3.644-31.121-3.644c-11.216,0-23.21,2.097-34.379,9.161\r\n\t\tc-23,14.549-41.283,34.114-76.283,34.114s-53-19.565-76-34.114c-11.17-7.065-23.162-9.161-34.379-9.161\r\n\t\tc-11.88,0-22.892,2.353-31.121,3.644c-2.352,0.367-4.33,0.558-6.002,0.558c-9.71,0-9.115-6.399-11.248-21.378\r\n\t\tc-1.151-8.084-1.25-6.27-33.25-13.795s-32-29.097-32-29.097s45.5-4.012,64-21.068c18.5-17.058,40.862-41.134,40.862-63.71\r\n\t\tc0-22.575-33.226-26.09-46.991-32.632c-3.807-1.81-8.796-7.687-8.371-12.997c0.507-6.336,6.196-12.251,14.107-12.25\r\n\t\tc2.004,0,4.152,0.38,6.393,1.229c12.749,4.829,21.588,6.342,27.662,6.342c10.204,0,12.598-4.273,12.598-4.273\r\n\t\tc-0.837-13.275-2.187-29.371-4.259-44.759c-10-74.249,47.307-128.931,118-128.931l0,0 M256.283,32H256\r\n\t\tc-41.093,0-79.215,16.208-104.591,45.341c-23.982,27.534-34.375,63.345-29.265,101.292c1.416,10.51,2.46,21.231,3.21,30.618\r\n\t\tc-3.97-0.559-9.686-1.998-17.703-5.034c-3.965-1.502-8.017-2.295-12.043-2.295c-15.641-0.001-28.844,11.852-30.057,27.003\r\n\t\tc-1.027,12.818,8.235,24.393,17.47,28.783c4.251,2.02,9.181,3.578,14.4,5.232c6.707,2.125,14.309,4.532,19.293,7.703\r\n\t\tc4.147,2.639,4.147,4.168,4.147,5.182c0,8.66-6.191,24.691-35.688,51.888c-10.499,9.681-39.055,15.501-54.588,16.897l-14.572,1.311\r\n\t\tL16,360.603c0,1.679,0.312,10.546,6.485,20.319c5.246,8.306,16.073,19.283,37.863,24.407c6.179,1.453,11.186,2.563,15.208,3.454\r\n\t\tc2.306,0.512,4.555,1.01,6.454,1.453c0.027,0.209,0.054,0.417,0.081,0.623c0.9,7.004,1.611,12.535,4.392,17.75\r\n\t\tc2.453,4.6,8.574,12.316,22.015,12.316c2.478,0,5.249-0.246,8.472-0.751c1.672-0.263,3.386-0.554,5.2-0.863\r\n\t\tc7.116-1.212,15.182-2.587,23.451-2.587c10.277,0,18.732,2.188,25.846,6.688c4.531,2.867,8.892,5.972,13.509,9.26\r\n\t\tC202.967,465.481,223.358,480,256,480c32.726,0,53.293-14.582,71.439-27.446c4.576-3.244,8.898-6.309,13.377-9.142\r\n\t\tc7.113-4.5,15.568-6.688,25.846-6.688c8.27,0,16.334,1.375,23.449,2.586c1.814,0.311,3.529,0.602,5.202,0.864\r\n\t\tc3.223,0.505,5.993,0.751,8.472,0.751c13.44,0,19.562-7.715,22.015-12.313c2.781-5.214,3.492-10.746,4.392-17.749\r\n\t\tc0.027-0.208,0.055-0.418,0.082-0.629c1.898-0.441,4.148-0.941,6.455-1.452c4.023-0.892,9.029-2.001,15.206-3.454\r\n\t\tc21.851-5.139,32.611-16.17,37.79-24.518c6.098-9.828,6.296-18.736,6.273-20.422l-0.189-14.501l-14.398-1.278\r\n\t\tc-15.413-1.396-43.8-7.219-54.301-16.9c-16.281-15.011-35.688-36.199-35.688-51.893c0-1.014,0-2.546,4.15-5.186\r\n\t\tc4.985-3.174,12.589-5.584,19.297-7.71c5.217-1.654,10.144-3.217,14.394-5.236c9.236-4.39,18.498-15.978,17.471-28.807\r\n\t\tc-1.215-15.166-14.424-27.046-30.072-27.046c-4.021,0-8.068,0.76-12.027,2.259c-8.027,3.041-13.743,4.41-17.705,4.962\r\n\t\tc0.747-9.319,1.791-20.12,3.211-30.67c5.111-37.948-5.281-73.509-29.264-101.042C335.498,48.208,297.376,32,256.283,32L256.283,32z\r\n\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,229c-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tc3.102,3.147,3.064,8.212-0.082,11.313C296.368,220.725,276.617,229,256,229z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,229c-20.838,0-40.604-8.29-55.657-23.343c-3.125-3.124-3.124-8.189,0-11.313c3.125-3.124,8.19-3.124,11.313,0\r\n\t\tC223.688,206.374,239.436,213,256,213c16.387,0,32.15-6.64,44.385-18.698c3.148-3.102,8.213-3.063,11.312,0.082\r\n\t\tc3.102,3.147,3.064,8.212-0.082,11.313C296.368,220.725,276.617,229,256,229z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "ellipse",
+ "attribs": {
+ "cx": "208",
+ "cy": "152",
+ "rx": "16",
+ "ry": "24"
+ },
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "cx": "208",
+ "cy": "152",
+ "rx": "16",
+ "ry": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "ellipse",
+ "attribs": {
+ "cx": "304",
+ "cy": "152",
+ "rx": "16",
+ "ry": "24"
+ },
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "cx": "304",
+ "cy": "152",
+ "rx": "16",
+ "ry": "24"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialSnapchatOutline = socialSnapchatOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialTumblr.js b/dist/ionicons/socialTumblr.js
new file mode 100644
index 000000000..2ef703b5b
--- /dev/null
+++ b/dist/ionicons/socialTumblr.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialTumblr = void 0;
+var socialTumblr = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M321.2,396.3c-11.8,0-22.4-2.8-31.5-8.3c-6.9-4.1-11.5-9.6-14-16.4c-2.6-6.9-3.6-22.3-3.6-46.4V224h96v-64h-96V48h-61.9\r\n\tc-2.7,21.5-7.5,44.7-14.5,58.6c-7,13.9-14,25.8-25.6,35.7c-11.6,9.9-25.6,17.9-41.9,23.3V224h48v140.4c0,19,2,33.5,5.9,43.5\r\n\tc4,10,11.1,19.5,21.4,28.4c10.3,8.9,22.8,15.7,37.3,20.5c14.6,4.8,31.4,7.2,50.4,7.2c16.7,0,30.3-1.7,44.7-5.1\r\n\tc14.4-3.4,30.5-9.3,48.2-17.6v-65.6C363.2,389.4,342.3,396.3,321.2,396.3z"
+ },
+ "children": []
+ }]
+};
+exports.socialTumblr = socialTumblr;
\ No newline at end of file
diff --git a/dist/ionicons/socialTumblrOutline.js b/dist/ionicons/socialTumblrOutline.js
new file mode 100644
index 000000000..1b0b04755
--- /dev/null
+++ b/dist/ionicons/socialTumblrOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialTumblrOutline = void 0;
+var socialTumblrOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M321.2,396.3c-11.8,0-22.4-2.8-31.5-8.3c-6.9-4.1-11.5-9.6-14-16.4c-2.6-6.9-3.6-22.3-3.6-46.4V224h96v-64h-96V48h-61.9\r\n\tc-2.7,21.5-7.5,44.7-14.5,58.6s-14,25.8-25.6,35.7c-11.6,9.9-25.6,17.9-41.9,23.3V224h48v140.4c0,19,2,33.5,5.9,43.5\r\n\tc4,10,11.1,19.5,21.4,28.4c10.3,8.9,22.8,15.7,37.3,20.5c14.6,4.8,31.4,7.2,50.4,7.2c16.7,0,30.3-1.7,44.7-5.1\r\n\tc14.4-3.4,30.5-9.3,48.2-17.6v-65.6C363.2,389.4,342.3,396.3,321.2,396.3z M368,431c-13.1,5.7-25.1,9.9-35.9,12.4\r\n\tc-13.1,3.1-25.6,4.6-41.1,4.6c-17.2,0-32.5-2.2-45.4-6.4c-12.5-4.1-23.2-10-31.9-17.5c-8.3-7.2-14-14.6-17-22.2\r\n\tc-2.2-5.5-4.8-16.6-4.8-37.6V208H144v-31.3c13.4-5.6,25.5-13,36.3-22.2c13.2-11.2,21.6-24.9,29.6-40.7c7.1-14,11.6-34,14.1-49.8h32\r\n\tv112h96v32h-96v117.1c0,34.6,2.4,46,4.6,52c3.8,10.3,10.8,18.6,21,24.6c11.7,7,25,10.5,39.7,10.5c15.7,0,31.3-3.3,46.7-9.8V431z"
+ },
+ "children": []
+ }]
+};
+exports.socialTumblrOutline = socialTumblrOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialTux.js b/dist/ionicons/socialTux.js
new file mode 100644
index 000000000..184505043
--- /dev/null
+++ b/dist/ionicons/socialTux.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialTux = void 0;
+var socialTux = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#010101",
+ "d": "M254.7,101.3c-0.6,1-1.2,2-1.7,3.1c1.8-3.5,4.3-6.5,7.4-8.7C258.3,97,256.3,98.8,254.7,101.3\r\n\t\tC254.1,102.3,256.3,98.8,254.7,101.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#010101",
+ "d": "M254.7,101.3c-0.6,1-1.2,2-1.7,3.1c1.8-3.5,4.3-6.5,7.4-8.7C258.3,97,256.3,98.8,254.7,101.3\r\n\t\tC254.1,102.3,256.3,98.8,254.7,101.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "#010101",
+ "d": "M426.3,396c-6.7-4-13.2-11-12-18.8c2.3-15.3,2.5-21.5-0.2-25.8c-1.899-3.2-5.5-5-8.6-5.801\r\n\t\tc2-2.5,3.1-5.399,3.8-10.899c1.842-14.168-3.239-30.67-6.61-44.243c-4.445-17.9-10.319-34.014-20.432-49.522\r\n\t\tc-16.489-25.288-37.253-46.804-51.857-73.435c-9.7-29-4.301-47.1-4.801-66.2C324.7,64,298.7,32,261,32h-14c-37.5,0-58,26.9-58,60\r\n\t\tc0.697,16.666,1.352,33.333,2,50c0.769,19.756,1.98,37.667-8,55.3c-7.033,12.488-19.571,22.43-28.592,33.478\r\n\t\tc-9.525,11.665-13.06,23.669-17.859,37.619c-5.987,17.401-21.275,30.906-24.886,48.929c-1.658,8.271,2.726,17.857-0.83,24.693\r\n\t\tc-3.698,7.109-0.813,14.469-2.833,21.682c-3.505,11.729-20.731,10.729-30.215,11.508c-17.602,1.443-11.051,17.988-7.843,29.701\r\n\t\tc5.598,20.435-19.54,42.078,11.032,50.471c13.989,3.84,28.586,5.13,42.727,8.32c13.981,3.154,26.917,8.612,40.396,13.262\r\n\t\tc10.469,3.611,20.262,4.146,30.323-1.232c10.982-5.87,18.947-15.083,31.691-17c24.707-3.716,54.829-4.169,79.373,0.63\r\n\t\tc7.507,1.468,10.075,6.525,14.905,11.766c8.145,8.838,21.514,10.125,32.794,8.22c11.89-2.01,20.846-9.466,29.686-17.112\r\n\t\tc12.526-10.835,26.137-17.996,40.791-25.547c7.439-3.833,22.178-9.388,24.159-18.903C450.151,406.573,433.642,400.383,426.3,396z\r\n\t\t M202,451.3c-1.3,13-13.9,20.3-25.4,19.3c-19.502-1.649-37.86-12.237-57.164-15.75c-9.393-1.709-47.351-3.173-46.943-17.079\r\n\t\tc0.215-7.361,5.751-11.666,7.567-18.415c2.811-10.449-5.753-19.932-6.32-30.16c-0.447-8.081,10.73-7.607,16.288-8.053\r\n\t\tc8.761-0.702,19.157-2.012,23.572-11.043c1.6-3.3-0.5-15,1.9-21.8c3.527-10.155,15.489-8.949,23.3-4.899\r\n\t\tc17.762,9.067,28.943,35.546,38.533,51.821C187.058,411.728,204.045,430.843,202,451.3z M318.3,385.7\r\n\t\tc2.289,11.787,4.224,24.387,1.7,36.3c-2.016,9.516-8.562,15.614-12.7,24c-2.2-6.8,11.3-16.7,9.8-33.7\r\n\t\tc-0.042-0.475-0.947-10.882-1.036-10.834c-1.979,1.082-3.825,5.075-5.304,6.73c-4.809,5.383-10.771,9.658-16.729,13.677\r\n\t\tc-13.797,9.306-29.221,15.058-45.83,16.627c-21,2-38-10.5-38-10.5c2.517,8.305,8.992,21,1.1,28.3\r\n\t\tc1.743-15.648-4.876-28.06-11.6-41.7c46.374-24.639-41.363-64.397-53-79.8c-10.476-13.896-5.553-31.83-2.7-43.5\r\n\t\tc-3.443,13.775-3.959,41.956,14,46.8c7.922,2.169,5.605-37.071,5.984-41.463c1.58-18.312,7.721-35.997,18.343-51.015\r\n\t\tc3.399-4.806,1.863-9.533,2.673-15.322c1.693-10.668,7.295-20.547,13.488-29.225c5.169-7.243,1.735-12.618,3.014-21.055\r\n\t\tc0.727-4.795,5.118,3.193,5.798,4.279c4,6.5,16.7,22.7,24.7,22c13.277-1.161,24.692-15.938,36.015-22.046\r\n\t\tc3.591-1.937,14.41-5.242,15.866-9.632c1.768-5.33-12.666-0.161-14.114,0.583c-10.782,5.535-31.018,21.448-43.867,15.295\r\n\t\tc-8.762-4.195-10.691-14.994-17.2-20.5c15.4,13.6,21.5,10.5,27.6,9.1c9.665-2.182,18.797-6.486,27.8-10.5\r\n\t\tc4.217-1.88,20.107-4.041,22.301-8.7c2.745-5.834-5.05-6.726-8.068-3.58c-6.251,6.515-15.853,8.981-24.097,11.787\r\n\t\tc-18.885,6.427-37.644,9.131-51.835-8.607c-8.354-10.212,15.558-22.504,22.2-28.8c0,0,1-7.2-0.6-12.7c-1.9-6.5-7.8-9.3-11.9-8.1\r\n\t\tc-4.1,1.1-8,5.5-6.8,14.8c1,8.3,7,11,7,11s-2.7,3.5-5.2,4.7c0,0-0.8-0.3-3.5-6.3c-2.7-6-6.6-19.5-0.3-31.1\r\n\t\tc6.3-11.6,19.6-5.2,23.8,3.8c3.9,8.3,2.4,22.7,2.4,22.7c3.358-0.843,6.835-1.3,10.3-1.3c4.242,0,6.814,4.563,10.6,4.8\r\n\t\tc-0.635,0-0.564-18.124-0.233-20.078c1.099-6.49,4.112-13.619,9.933-17.222c16.087-11.491,34.6,3.916,34.6,21.2\r\n\t\tc0.024,4.486-0.137,9.215-1.199,13.6c-0.659,2.637-1.582,8.469-5.114,9.177c-1.145,0.23-10.683-0.431-7.985-3.277\r\n\t\tc12.807-12.812-1.822-38.207-17.4-24.5c-5.601,4.199-5.483,13.833-4.801,20c1.098,9.141,20.51,11.541,26.852,13.78\r\n\t\tc8.224,2.903,7.943,9.626,6.679,17.116c-1.9,11.26-2.815,18.792,4.381,28.214c7.344,9.616,12.929,20.086,15.915,31.878\r\n\t\tc1.483,5.859,1.665,10.843,5.621,15.57c5.983,7.151,10.619,14.805,13.291,23.817c5.225,17.621,6.513,35.422,6.162,53.625\r\n\t\tc-0.5,8.199-2.1,15,8.3,9.699c4-2,6.5-2.899,11-3.699c3.101-6.301,4.4-18.301,4.5-24.301c0.2-13.5-0.3-41.5-27.699-71.5\r\n\t\tc0,0,28.5,21.7,33,62c2.5,22.301-2,34.4-2,34.4c5.3,1.3,10.8,5.3,13.6,9.8c-0.133-0.22,1.038,1.748,1.179,1.864\r\n\t\tc-9.811-8.171-31.708-12.859-39.679,0.236c-2,3.3-3.1,7.6-3.2,11.699c-7.1-1.199-12.399,0-16.8,4.9\r\n\t\tC313.5,358.1,316.3,375.3,318.3,385.7C320.3,396,316.3,375.3,318.3,385.7z M220.6,124.9c-0.2-4.9-2.1-9-4.7-10.8\r\n\t\tc0.3-0.3,0.8-0.7,1.7-0.4c1.4,0.4,3.5,2.7,4.3,6.3c0.7,2.9,0.4,7.7-1.4,7.7C220.498,126.766,220.531,125.833,220.6,124.9\r\n\t\tC220.4,120,220.6,125.8,220.6,124.9z M275.3,112.9c0.4-0.3,1.101-0.6,2.3-0.3c1.801,0.4,4.4,2.8,5.301,6.2\r\n\t\tc0.699,2.8,0.1,7.4-2.2,7.3c-0.005-0.903,0.062-1.803,0.2-2.7C280.8,118.8,278.6,114.8,275.3,112.9\r\n\t\tC275.7,112.6,278.6,114.8,275.3,112.9z M412.4,432.9c-17.504,7.553-31.304,19.968-47.117,30.19\r\n\t\tc-13.824,8.937-38.156,8.313-40.022-12.879c-1.565-17.776,4.184-35.288,1.84-53.357c-1.587-12.239-8.534-28.906-2.301-40.854\r\n\t\tc2.7-5.1,8.101-5.5,12.5-4c3.193,13.267,13.932,23.6,28,23.6c17.031,0,23.542-14.008,34-24.5c3.4,0.2,7.4,1.101,8.8,4.801\r\n\t\tc2.301,5.8-1.899,17.5-1.8,22.3c0.3,15.7,9,19.2,26.4,29C448,416,436.9,422.3,412.4,432.9C388.3,443.3,436.9,422.3,412.4,432.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "#010101",
+ "d": "M426.3,396c-6.7-4-13.2-11-12-18.8c2.3-15.3,2.5-21.5-0.2-25.8c-1.899-3.2-5.5-5-8.6-5.801\r\n\t\tc2-2.5,3.1-5.399,3.8-10.899c1.842-14.168-3.239-30.67-6.61-44.243c-4.445-17.9-10.319-34.014-20.432-49.522\r\n\t\tc-16.489-25.288-37.253-46.804-51.857-73.435c-9.7-29-4.301-47.1-4.801-66.2C324.7,64,298.7,32,261,32h-14c-37.5,0-58,26.9-58,60\r\n\t\tc0.697,16.666,1.352,33.333,2,50c0.769,19.756,1.98,37.667-8,55.3c-7.033,12.488-19.571,22.43-28.592,33.478\r\n\t\tc-9.525,11.665-13.06,23.669-17.859,37.619c-5.987,17.401-21.275,30.906-24.886,48.929c-1.658,8.271,2.726,17.857-0.83,24.693\r\n\t\tc-3.698,7.109-0.813,14.469-2.833,21.682c-3.505,11.729-20.731,10.729-30.215,11.508c-17.602,1.443-11.051,17.988-7.843,29.701\r\n\t\tc5.598,20.435-19.54,42.078,11.032,50.471c13.989,3.84,28.586,5.13,42.727,8.32c13.981,3.154,26.917,8.612,40.396,13.262\r\n\t\tc10.469,3.611,20.262,4.146,30.323-1.232c10.982-5.87,18.947-15.083,31.691-17c24.707-3.716,54.829-4.169,79.373,0.63\r\n\t\tc7.507,1.468,10.075,6.525,14.905,11.766c8.145,8.838,21.514,10.125,32.794,8.22c11.89-2.01,20.846-9.466,29.686-17.112\r\n\t\tc12.526-10.835,26.137-17.996,40.791-25.547c7.439-3.833,22.178-9.388,24.159-18.903C450.151,406.573,433.642,400.383,426.3,396z\r\n\t\t M202,451.3c-1.3,13-13.9,20.3-25.4,19.3c-19.502-1.649-37.86-12.237-57.164-15.75c-9.393-1.709-47.351-3.173-46.943-17.079\r\n\t\tc0.215-7.361,5.751-11.666,7.567-18.415c2.811-10.449-5.753-19.932-6.32-30.16c-0.447-8.081,10.73-7.607,16.288-8.053\r\n\t\tc8.761-0.702,19.157-2.012,23.572-11.043c1.6-3.3-0.5-15,1.9-21.8c3.527-10.155,15.489-8.949,23.3-4.899\r\n\t\tc17.762,9.067,28.943,35.546,38.533,51.821C187.058,411.728,204.045,430.843,202,451.3z M318.3,385.7\r\n\t\tc2.289,11.787,4.224,24.387,1.7,36.3c-2.016,9.516-8.562,15.614-12.7,24c-2.2-6.8,11.3-16.7,9.8-33.7\r\n\t\tc-0.042-0.475-0.947-10.882-1.036-10.834c-1.979,1.082-3.825,5.075-5.304,6.73c-4.809,5.383-10.771,9.658-16.729,13.677\r\n\t\tc-13.797,9.306-29.221,15.058-45.83,16.627c-21,2-38-10.5-38-10.5c2.517,8.305,8.992,21,1.1,28.3\r\n\t\tc1.743-15.648-4.876-28.06-11.6-41.7c46.374-24.639-41.363-64.397-53-79.8c-10.476-13.896-5.553-31.83-2.7-43.5\r\n\t\tc-3.443,13.775-3.959,41.956,14,46.8c7.922,2.169,5.605-37.071,5.984-41.463c1.58-18.312,7.721-35.997,18.343-51.015\r\n\t\tc3.399-4.806,1.863-9.533,2.673-15.322c1.693-10.668,7.295-20.547,13.488-29.225c5.169-7.243,1.735-12.618,3.014-21.055\r\n\t\tc0.727-4.795,5.118,3.193,5.798,4.279c4,6.5,16.7,22.7,24.7,22c13.277-1.161,24.692-15.938,36.015-22.046\r\n\t\tc3.591-1.937,14.41-5.242,15.866-9.632c1.768-5.33-12.666-0.161-14.114,0.583c-10.782,5.535-31.018,21.448-43.867,15.295\r\n\t\tc-8.762-4.195-10.691-14.994-17.2-20.5c15.4,13.6,21.5,10.5,27.6,9.1c9.665-2.182,18.797-6.486,27.8-10.5\r\n\t\tc4.217-1.88,20.107-4.041,22.301-8.7c2.745-5.834-5.05-6.726-8.068-3.58c-6.251,6.515-15.853,8.981-24.097,11.787\r\n\t\tc-18.885,6.427-37.644,9.131-51.835-8.607c-8.354-10.212,15.558-22.504,22.2-28.8c0,0,1-7.2-0.6-12.7c-1.9-6.5-7.8-9.3-11.9-8.1\r\n\t\tc-4.1,1.1-8,5.5-6.8,14.8c1,8.3,7,11,7,11s-2.7,3.5-5.2,4.7c0,0-0.8-0.3-3.5-6.3c-2.7-6-6.6-19.5-0.3-31.1\r\n\t\tc6.3-11.6,19.6-5.2,23.8,3.8c3.9,8.3,2.4,22.7,2.4,22.7c3.358-0.843,6.835-1.3,10.3-1.3c4.242,0,6.814,4.563,10.6,4.8\r\n\t\tc-0.635,0-0.564-18.124-0.233-20.078c1.099-6.49,4.112-13.619,9.933-17.222c16.087-11.491,34.6,3.916,34.6,21.2\r\n\t\tc0.024,4.486-0.137,9.215-1.199,13.6c-0.659,2.637-1.582,8.469-5.114,9.177c-1.145,0.23-10.683-0.431-7.985-3.277\r\n\t\tc12.807-12.812-1.822-38.207-17.4-24.5c-5.601,4.199-5.483,13.833-4.801,20c1.098,9.141,20.51,11.541,26.852,13.78\r\n\t\tc8.224,2.903,7.943,9.626,6.679,17.116c-1.9,11.26-2.815,18.792,4.381,28.214c7.344,9.616,12.929,20.086,15.915,31.878\r\n\t\tc1.483,5.859,1.665,10.843,5.621,15.57c5.983,7.151,10.619,14.805,13.291,23.817c5.225,17.621,6.513,35.422,6.162,53.625\r\n\t\tc-0.5,8.199-2.1,15,8.3,9.699c4-2,6.5-2.899,11-3.699c3.101-6.301,4.4-18.301,4.5-24.301c0.2-13.5-0.3-41.5-27.699-71.5\r\n\t\tc0,0,28.5,21.7,33,62c2.5,22.301-2,34.4-2,34.4c5.3,1.3,10.8,5.3,13.6,9.8c-0.133-0.22,1.038,1.748,1.179,1.864\r\n\t\tc-9.811-8.171-31.708-12.859-39.679,0.236c-2,3.3-3.1,7.6-3.2,11.699c-7.1-1.199-12.399,0-16.8,4.9\r\n\t\tC313.5,358.1,316.3,375.3,318.3,385.7C320.3,396,316.3,375.3,318.3,385.7z M220.6,124.9c-0.2-4.9-2.1-9-4.7-10.8\r\n\t\tc0.3-0.3,0.8-0.7,1.7-0.4c1.4,0.4,3.5,2.7,4.3,6.3c0.7,2.9,0.4,7.7-1.4,7.7C220.498,126.766,220.531,125.833,220.6,124.9\r\n\t\tC220.4,120,220.6,125.8,220.6,124.9z M275.3,112.9c0.4-0.3,1.101-0.6,2.3-0.3c1.801,0.4,4.4,2.8,5.301,6.2\r\n\t\tc0.699,2.8,0.1,7.4-2.2,7.3c-0.005-0.903,0.062-1.803,0.2-2.7C280.8,118.8,278.6,114.8,275.3,112.9\r\n\t\tC275.7,112.6,278.6,114.8,275.3,112.9z M412.4,432.9c-17.504,7.553-31.304,19.968-47.117,30.19\r\n\t\tc-13.824,8.937-38.156,8.313-40.022-12.879c-1.565-17.776,4.184-35.288,1.84-53.357c-1.587-12.239-8.534-28.906-2.301-40.854\r\n\t\tc2.7-5.1,8.101-5.5,12.5-4c3.193,13.267,13.932,23.6,28,23.6c17.031,0,23.542-14.008,34-24.5c3.4,0.2,7.4,1.101,8.8,4.801\r\n\t\tc2.301,5.8-1.899,17.5-1.8,22.3c0.3,15.7,9,19.2,26.4,29C448,416,436.9,422.3,412.4,432.9C388.3,443.3,436.9,422.3,412.4,432.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialTux = socialTux;
\ No newline at end of file
diff --git a/dist/ionicons/socialTwitch.js b/dist/ionicons/socialTwitch.js
new file mode 100644
index 000000000..4acc0fcef
--- /dev/null
+++ b/dist/ionicons/socialTwitch.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialTwitch = void 0;
+var socialTwitch = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M256,272h-48V143h48V272z M368,272h-48V143h48V272z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M256,272h-48V143h48V272z M368,272h-48V143h48V272z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialTwitch = socialTwitch;
\ No newline at end of file
diff --git a/dist/ionicons/socialTwitchOutline.js b/dist/ionicons/socialTwitchOutline.js
new file mode 100644
index 000000000..419f27025
--- /dev/null
+++ b/dist/ionicons/socialTwitchOutline.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialTwitchOutline = void 0;
+var socialTwitchOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M416,288l-64,64h-96.001L192,416v-64h-80V80h304V288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M80,32l-32,80v304h96v64h64l64-64h80l112-112V32H80z M416,288l-64,64h-96.001L192,416v-64h-80V80h304V288z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "320",
+ "y": "143",
+ "width": "48",
+ "height": "129"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "320",
+ "y": "143",
+ "width": "48",
+ "height": "129"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "143",
+ "width": "48",
+ "height": "129"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "208",
+ "y": "143",
+ "width": "48",
+ "height": "129"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialTwitchOutline = socialTwitchOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialTwitter.js b/dist/ionicons/socialTwitter.js
new file mode 100644
index 000000000..e3b74f43b
--- /dev/null
+++ b/dist/ionicons/socialTwitter.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialTwitter = void 0;
+var socialTwitter = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M492,109.5c-17.4,7.7-36,12.9-55.6,15.3c20-12,35.4-31,42.6-53.6c-18.7,11.1-39.4,19.2-61.5,23.5\r\n\tC399.8,75.8,374.6,64,346.8,64c-53.5,0-96.8,43.4-96.8,96.9c0,7.6,0.8,15,2.5,22.1c-80.5-4-151.9-42.6-199.6-101.3\r\n\tc-8.3,14.3-13.1,31-13.1,48.7c0,33.6,17.2,63.3,43.2,80.7C67,210.7,52,206.3,39,199c0,0.4,0,0.8,0,1.2c0,47,33.4,86.1,77.7,95\r\n\tc-8.1,2.2-16.7,3.4-25.5,3.4c-6.2,0-12.3-0.6-18.2-1.8c12.3,38.5,48.1,66.5,90.5,67.3c-33.1,26-74.9,41.5-120.3,41.5\r\n\tc-7.8,0-15.5-0.5-23.1-1.4C62.8,432,113.7,448,168.3,448C346.6,448,444,300.3,444,172.2c0-4.2-0.1-8.4-0.3-12.5\r\n\tC462.6,146,479,129,492,109.5z"
+ },
+ "children": []
+ }]
+};
+exports.socialTwitter = socialTwitter;
\ No newline at end of file
diff --git a/dist/ionicons/socialTwitterOutline.js b/dist/ionicons/socialTwitterOutline.js
new file mode 100644
index 000000000..2f477468d
--- /dev/null
+++ b/dist/ionicons/socialTwitterOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialTwitterOutline = void 0;
+var socialTwitterOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M492,109.5c-17.4,7.7-36,12.9-55.6,15.3c20-12,35.4-31,42.6-53.6c-18.7,11.1-39.4,19.2-61.5,23.5\r\n\tC399.8,75.8,374.5,64,346.8,64c-53.5,0-96.8,43.4-96.8,96.9c0,7.6,0.8,15,2.5,22.1C172,179,100.5,140.4,52.8,81.7\r\n\tc-8.3,14.3-13.1,31-13.1,48.7c0,33.6,17.1,63.3,43.1,80.7C67,210.7,52,206.3,39,199c0,0.4,0,0.8,0,1.2c0,47,33.4,86.1,77.7,95\r\n\tc-8.1,2.2-16.7,3.4-25.5,3.4c-6.2,0-12.3-0.6-18.2-1.8c12.3,38.5,48.1,66.5,90.5,67.3c-33.1,26-74.9,41.5-120.3,41.5\r\n\tc-7.8,0-15.5-0.5-23.1-1.4C62.8,432,113.7,448,168.3,448C346.5,448,444,300.3,444,172.2c0-4.2-0.1-8.4-0.3-12.5\r\n\tC462.5,146,479,129,492,109.5z M434.2,146.7l-7,5.1l0.4,8.6c0.2,3.8,0.3,7.8,0.3,11.8c0,30.2-5.9,61.8-17,91.5\r\n\tc-11.7,31.2-28.5,59.4-50,83.8c-23,26.1-50.2,46.5-81.1,60.8c-33.8,15.7-71.3,23.6-111.5,23.6c-28.9,0-57.4-4.8-84.5-14.2\r\n\tc9.9-1.9,19.6-4.6,29.1-7.9c21.7-7.6,41.9-18.7,60.1-33l35.3-27.7l-44.9-0.8c-26.1-0.5-49.7-13.4-64.3-33.9\r\n\tc7.3-0.5,14.5-1.8,21.5-3.7l60.7-20.2l-61.7-10.9c-29.6-5.9-52.8-27.9-61.3-55.8c7.8,2,15.4,2.8,23.9,3.3c0,0,31.8,1.4,55.8-0.1\r\n\tc-13-6.2-46.4-29.2-46.4-29.2c-22.5-15.1-36-40.2-36-67.4c0-6.4,0.8-12.8,2.2-19c21.9,22.4,47,41.1,75.1,55.5\r\n\tc37,19.1,76.9,29.8,118.6,31.9l21.2,1.1l-4.8-20.7c-1.4-5.9-2.1-12.1-2.1-18.5c0-44.4,36.3-80.7,80.9-80.7c22.3,0,43.8,9.3,59,25.6\r\n\tl6.1,6.5l8.7-1.7c4.5-0.9,8.9-1.9,13.3-3.1c-1,1.4-5.7,6.1-11,10.8c-4.5,4-17.8,16.5-17.8,16.5s13,4.1,21.1,5\r\n\tc8.1,0.9,17.4-0.6,18.9-0.8C442.2,141.1,437.2,144.6,434.2,146.7z"
+ },
+ "children": []
+ }]
+};
+exports.socialTwitterOutline = socialTwitterOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialUsd.js b/dist/ionicons/socialUsd.js
new file mode 100644
index 000000000..0de118579
--- /dev/null
+++ b/dist/ionicons/socialUsd.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialUsd = void 0;
+var socialUsd = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M224,209.699c-12-3.743-23.912-9.088-32.051-16.048c-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102\r\n\t\tc4.58-6.161,9.912-11.038,16.88-14.631c6.18-3.189,13.84-5.565,20.84-7.138V209.699z M342.902,359.471\r\n\t\tc-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577c-4.5,1.378-8.223,2.444-14.223,3.236v-107.11\r\n\t\tc10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116c6.785,6.676,10.309,17.03,10.309,31.06\r\n\t\tC347.172,346.042,345.834,352.797,342.902,359.471z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M224,209.699c-12-3.743-23.912-9.088-32.051-16.048c-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102\r\n\t\tc4.58-6.161,9.912-11.038,16.88-14.631c6.18-3.189,13.84-5.565,20.84-7.138V209.699z M342.902,359.471\r\n\t\tc-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577c-4.5,1.378-8.223,2.444-14.223,3.236v-107.11\r\n\t\tc10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116c6.785,6.676,10.309,17.03,10.309,31.06\r\n\t\tC347.172,346.042,345.834,352.797,342.902,359.471z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialUsd = socialUsd;
\ No newline at end of file
diff --git a/dist/ionicons/socialUsdOutline.js b/dist/ionicons/socialUsdOutline.js
new file mode 100644
index 000000000..612e69f27
--- /dev/null
+++ b/dist/ionicons/socialUsdOutline.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialUsdOutline = void 0;
+var socialUsdOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M220.746,102.625c-7.788,1.683-17.44,4.813-24.641,8.529c-9.018,4.649-16.411,10.965-22.604,19.295\r\n\t\tc-6.706,9.002-10.105,19.989-10.105,32.657c0,17.916,6.197,32.288,18.405,42.702c9.334,7.983,21.504,14.431,36.687,19.165\r\n\t\tL240,230.667V100.244C240,100.244,231.766,100.244,220.746,102.625z M224,209.699c-12-3.743-23.912-9.088-32.051-16.048\r\n\t\tc-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102c4.58-6.161,9.912-11.038,16.88-14.631\r\n\t\tc6.18-3.189,13.84-5.565,20.84-7.138V209.699z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M220.746,102.625c-7.788,1.683-17.44,4.813-24.641,8.529c-9.018,4.649-16.411,10.965-22.604,19.295\r\n\t\tc-6.706,9.002-10.105,19.989-10.105,32.657c0,17.916,6.197,32.288,18.405,42.702c9.334,7.983,21.504,14.431,36.687,19.165\r\n\t\tL240,230.667V100.244C240,100.244,231.766,100.244,220.746,102.625z M224,209.699c-12-3.743-23.912-9.088-32.051-16.048\r\n\t\tc-8.621-7.355-12.673-17.534-12.673-30.545c0-9.241,2.414-16.94,7.004-23.102c4.58-6.161,9.912-11.038,16.88-14.631\r\n\t\tc6.18-3.189,13.84-5.565,20.84-7.138V209.699z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M348.217,296.725c-8.432-8.289-18.002-14.296-28.414-17.84c-8.949-3.075-17.441-5.848-27.465-8.477L272,265.145v145.188\r\n\t\tc0,0,12.051-0.642,18.371-1.476s10.703-1.971,16.67-3.798c12.727-3.89,23.309-9.02,31.32-15.25\r\n\t\tc8.678-6.747,15.145-14.785,19.164-23.907c3.775-8.595,5.706-17.581,5.706-26.711C363.231,320.822,358.188,306.536,348.217,296.725\r\n\t\tz M342.902,359.471c-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577\r\n\t\tc-4.5,1.378-8.223,2.444-14.223,3.236v-107.11c10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116\r\n\t\tc6.785,6.676,10.309,17.03,10.309,31.06C347.172,346.042,345.834,352.797,342.902,359.471z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M348.217,296.725c-8.432-8.289-18.002-14.296-28.414-17.84c-8.949-3.075-17.441-5.848-27.465-8.477L272,265.145v145.188\r\n\t\tc0,0,12.051-0.642,18.371-1.476s10.703-1.971,16.67-3.798c12.727-3.89,23.309-9.02,31.32-15.25\r\n\t\tc8.678-6.747,15.145-14.785,19.164-23.907c3.775-8.595,5.706-17.581,5.706-26.711C363.231,320.822,358.188,306.536,348.217,296.725\r\n\t\tz M342.902,359.471c-2.939,6.673-7.699,12.576-14.303,17.711c-6.602,5.133-15.744,9.328-26.377,12.577\r\n\t\tc-4.5,1.378-8.223,2.444-14.223,3.236v-107.11c10,2.624,18.18,5.332,26.326,8.131c8.062,2.744,15.748,7.443,22.537,14.116\r\n\t\tc6.785,6.676,10.309,17.03,10.309,31.06C347.172,346.042,345.834,352.797,342.902,359.471z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M388.904,376.218c-7.623,12.34-17.873,22.619-30.457,30.55c-13.035,8.21-28.248,14.339-45.219,18.217\r\n\t\tc-9.059,2.071-17.285,3.564-26.654,4.566L272,431.08V464h-32v-33.244l-13.508-1.943c-9.256-1.307-18.671-2.968-26.271-4.938\r\n\t\tc-17.865-4.633-32.876-11.51-46.031-21.032c-12.845-9.283-22.77-20.551-30.408-34.967c-5.004-9.437-8.418-20.876-10.268-31.876\r\n\t\th36.714c1.529,8,4.162,16.837,7.804,23.869c6.324,12.239,14.979,21.914,26.441,29.823c10.145,7.017,23.81,12.64,35.676,15.724\r\n\t\tS240,408.667,240,408.667V257.874l-11.786-3.074c-4.952-1.263-11.074-2.583-16.558-3.96c-3.395-0.854-6.814-1.729-10.37-2.626\r\n\t\tl-0.033-0.017l-0.051-0.017c-14.952-3.64-27.533-8.472-37.411-14.365c-9.487-5.657-17.021-11.92-22.399-18.611\r\n\t\tc-5.271-6.56-9.029-13.533-11.17-20.722c-2.307-7.755-3.476-15.721-3.476-23.675c0-15.66,3.274-28.636,10.002-39.665\r\n\t\tc7.097-11.622,16.187-20.973,27.786-28.585c12.201-8.003,25.666-13.764,41.155-17.611c6.334-1.571,12.865-2.901,19.926-3.954\r\n\t\tL240,78.958V48h32v31.363l13.127,1.877c7.371,0.999,14.236,2.404,22.637,4.699c16.389,4.482,30.91,11.189,43.023,19.929\r\n\t\tc11.691,8.443,21.182,19.333,28.133,31.862c3.805,6.865,6.504,14.27,8.137,22.27h-38.119c-5.078-19-15.352-33.637-30.172-43.021\r\n\t\tc-9.254-5.861-17.561-9.215-27.373-12.251C281.766,101.75,272,101.25,272,101.25v137.142l12.529,2.951\r\n\t\tc7.631,1.837,14.184,3.644,21.453,5.415l3.92,0.938l0.812,0.19c11.373,2.78,19.651,4.799,24.558,6.096\r\n\t\tc11.084,3.275,20.8,7.721,28.851,13.204c8.078,5.513,14.895,11.853,20.236,18.828c5.291,6.925,9.264,14.393,11.801,22.179\r\n\t\tc2.562,7.898,3.863,15.91,3.863,23.812C400.023,349.395,396.283,364.271,388.904,376.218z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M411.387,303.256c-3.119-9.577-7.891-18.561-14.301-26.952c-6.422-8.382-14.396-15.826-23.93-22.331\r\n\t\tc-9.539-6.498-20.721-11.63-33.553-15.4c-5.143-1.363-14.189-3.506-26.104-6.418c-8.516-2.074-16.5-4.2-25.5-6.367V120.065\r\n\t\tc9,2.396,15.252,6.202,21.926,10.43c14.279,9.04,23.232,24.505,25.855,45.505h69.174c-0.654-18-4.65-32.76-11.996-46.02\r\n\t\tc-8.07-14.543-18.977-27.024-32.73-36.956c-13.75-9.922-30.225-17.49-48.377-22.455C303.967,68.416,297,66.605,288,65.386V32h-64\r\n\t\tv33.167c-7,1.044-15.148,2.445-22.426,4.25c-17.242,4.283-32.388,10.868-45.951,19.764c-13.571,8.905-24.352,20.112-32.604,33.627\r\n\t\tc-8.251,13.523-12.312,29.52-12.312,48c0,9.585,1.407,18.993,4.157,28.235c2.752,9.241,7.442,17.967,14.042,26.181\r\n\t\tc6.603,8.214,15.495,15.658,26.687,22.332c11.183,6.672,24.705,12.064,41.576,16.171c9.287,2.345,18.83,4.534,26.83,6.576v119.586\r\n\t\tc-11-2.919-21.889-7.399-30.678-13.479c-9.17-6.327-16.066-13.953-21.198-23.884c-4.779-9.229-7.073-20.526-7.407-32.526H96\r\n\t\tc0.695,21,5.25,39.494,13.672,55.371c8.799,16.604,20.533,29.96,35.204,40.562c14.662,10.613,31.393,18.356,51.198,23.491\r\n\t\tc8.885,2.304,18.926,3.96,27.926,5.23V480h64v-34.54c10-1.069,18.957-2.69,28.527-4.879c18.701-4.273,35.645-11.036,50.316-20.276\r\n\t\tc14.662-9.24,26.621-21.128,35.611-35.681c8.98-14.541,13.545-32.085,13.545-52.619C416,322.427,414.498,312.841,411.387,303.256z\r\n\t\t M388.904,376.218c-7.623,12.34-17.873,22.619-30.457,30.55c-13.035,8.21-28.248,14.339-45.219,18.217\r\n\t\tc-9.059,2.071-17.285,3.564-26.654,4.566L272,431.08V464h-32v-33.244l-13.508-1.943c-9.256-1.307-18.671-2.968-26.271-4.938\r\n\t\tc-17.865-4.633-32.876-11.51-46.031-21.032c-12.845-9.283-22.77-20.551-30.408-34.967c-5.004-9.437-8.418-20.876-10.268-31.876\r\n\t\th36.714c1.529,8,4.162,16.837,7.804,23.869c6.324,12.239,14.979,21.914,26.441,29.823c10.145,7.017,23.81,12.64,35.676,15.724\r\n\t\tS240,408.667,240,408.667V257.874l-11.786-3.074c-4.952-1.263-11.074-2.583-16.558-3.96c-3.395-0.854-6.814-1.729-10.37-2.626\r\n\t\tl-0.033-0.017l-0.051-0.017c-14.952-3.64-27.533-8.472-37.411-14.365c-9.487-5.657-17.021-11.92-22.399-18.611\r\n\t\tc-5.271-6.56-9.029-13.533-11.17-20.722c-2.307-7.755-3.476-15.721-3.476-23.675c0-15.66,3.274-28.636,10.002-39.665\r\n\t\tc7.097-11.622,16.187-20.973,27.786-28.585c12.201-8.003,25.666-13.764,41.155-17.611c6.334-1.571,12.865-2.901,19.926-3.954\r\n\t\tL240,78.958V48h32v31.363l13.127,1.877c7.371,0.999,14.236,2.404,22.637,4.699c16.389,4.482,30.91,11.189,43.023,19.929\r\n\t\tc11.691,8.443,21.182,19.333,28.133,31.862c3.805,6.865,6.504,14.27,8.137,22.27h-38.119c-5.078-19-15.352-33.637-30.172-43.021\r\n\t\tc-9.254-5.861-17.561-9.215-27.373-12.251C281.766,101.75,272,101.25,272,101.25v137.142l12.529,2.951\r\n\t\tc7.631,1.837,14.184,3.644,21.453,5.415l3.92,0.938l0.812,0.19c11.373,2.78,19.651,4.799,24.558,6.096\r\n\t\tc11.084,3.275,20.8,7.721,28.851,13.204c8.078,5.513,14.895,11.853,20.236,18.828c5.291,6.925,9.264,14.393,11.801,22.179\r\n\t\tc2.562,7.898,3.863,15.91,3.863,23.812C400.023,349.395,396.283,364.271,388.904,376.218z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialUsdOutline = socialUsdOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialVimeo.js b/dist/ionicons/socialVimeo.js
new file mode 100644
index 000000000..853407596
--- /dev/null
+++ b/dist/ionicons/socialVimeo.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialVimeo = void 0;
+var socialVimeo = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M476.9,114c-5-23.4-17.5-38.8-40.6-46.3c-23.1-7.5-64.9-4.5-94.1,16.8c-29.9,21.8-47.6,59.7-53.8,83.8\r\n\tc14.7-6.3,24-7.7,39-6.9c15,0.8,24.5,12,24.9,25.3c0.3,9.8-0.2,18.7-3.6,27.7c-10.8,28.7-27.7,56.5-47.6,80.8\r\n\tc-2.9,3.6-6.4,6.9-10,9.9c-10.2,8.3-18.8,6.1-25.4-5.2c-5.4-9.3-9-18.9-12.2-29.1c-12.4-39.7-16.8-80.9-23.8-121.6\r\n\tc-3.3-19.5-7-39.8-18-56.9c-11.6-17.8-28.6-24.6-50-22c-14.7,1.8-36.9,17.5-47.8,26.4c0,0-56,46.9-81.8,71.4l21.2,27\r\n\tc0,0,17.9-12.5,27.5-18.3c5.7-3.4,12.4-4.1,17.2,0.2c4.5,3.9,9.6,9,12.3,14.1c5.7,10.7,11.2,21.9,14.7,33.4\r\n\tc13.2,44.3,25.5,88.7,37.8,133.3c6.3,22.8,13.9,44.2,28,63.6c19.3,26.6,39.6,32.7,70.9,21.5c25.4-9.1,46.6-26.2,66-43.9\r\n\tc33.1-30.2,59.1-65.4,85.5-101.2c20.4-27.7,37.3-55.7,51.4-87C478.5,179.8,484,147.3,476.9,114z"
+ },
+ "children": []
+ }]
+};
+exports.socialVimeo = socialVimeo;
\ No newline at end of file
diff --git a/dist/ionicons/socialVimeoOutline.js b/dist/ionicons/socialVimeoOutline.js
new file mode 100644
index 000000000..31071d12c
--- /dev/null
+++ b/dist/ionicons/socialVimeoOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialVimeoOutline = void 0;
+var socialVimeoOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M476.9,114c-5-23.4-17.5-38.8-40.6-46.3c-7.4-2.4-16.7-3.7-26.9-3.7c-21.7,0-47.4,6-67.2,20.5\r\n\tc-29.9,21.8-47.6,59.7-53.8,83.8c12.2-5.3,20.8-7.1,31.9-7.1c2.2,0,4.6,0.1,7.1,0.2c15,0.8,24.5,12,24.9,25.3\r\n\tc0.3,9.8-0.2,18.7-3.6,27.7c-10.8,28.7-27.7,56.5-47.6,80.8c-2.9,3.6-6.4,6.9-10,9.9c-4.1,3.4-8,5-11.6,5c-5.2,0-9.9-3.5-13.8-10.2\r\n\tc-5.4-9.3-9-18.9-12.2-29.1c-12.4-39.7-16.8-80.9-23.8-121.6c-3.3-19.5-7-39.8-18-56.9c-10-15.4-24-22.6-41.5-22.6\r\n\tc-2.8,0-5.6,0.2-8.6,0.5c-14.7,1.8-36.9,17.5-47.8,26.4c0,0-56,46.9-81.8,71.4l21.2,27c0,0,17.9-12.5,27.5-18.3\r\n\tc2.9-1.8,6.1-2.8,9.2-2.8c2.9,0,5.7,0.9,8,3c4.5,3.9,9.6,9,12.3,14.1c5.7,10.7,11.2,21.9,14.7,33.4c13.2,44.3,25.5,88.7,37.8,133.3\r\n\tc6.3,22.8,13.9,44.2,28,63.6c13.2,18.2,26.9,26.8,44.3,26.8c8,0,16.8-1.8,26.6-5.4c25.4-9.1,46.6-26.2,66-43.9\r\n\tc33.1-30.2,59.1-65.4,85.5-101.2c20.4-27.7,37.3-55.7,51.4-87C478.5,179.8,484,147.3,476.9,114z M450,203.9\r\n\tc-13.3,29.4-29.1,56.2-49.7,84.1l-0.3,0.4c-26.4,35.7-51.3,69.5-83.1,98.5c-17.8,16.3-37.5,32.4-60.6,40.7c-8.3,3-15.2,4.4-21.2,4.4\r\n\tc-8.2,0-18.4-2.4-31.4-20.2c-13.4-18.4-20.2-39-25.5-58.4c-12.4-45.1-24.6-89.2-37.9-133.6c-3.9-13.2-10.2-25.8-15.9-36.4\r\n\tc-3.2-5.9-8.4-12-15.9-18.6c-5.2-4.5-11.6-6.9-18.6-6.9c-5.9,0-12,1.8-17.5,5.1c-4.5,2.7-10.5,6.7-15.9,10.3l-2.8-3.6\r\n\tc26.9-24.4,68.3-59.1,70.3-60.8C138.8,96.8,155.8,87,163.5,86c2.3-0.3,4.5-0.4,6.6-0.4c12.4,0,21.3,4.9,28.1,15.3\r\n\tc9.5,14.7,12.8,33.9,15.7,50.9c1.6,9.7,3.2,19.6,4.7,29.1c4.8,31.1,9.8,63.3,19.6,94.6c3,9.7,7,21.2,13.6,32.5\r\n\tc8.8,15,19.9,18.1,27.6,18.1c7.4,0,14.7-2.9,21.7-8.6c4.6-3.7,8.7-7.8,12.3-12.2c21.9-26.8,39.3-56.3,50.2-85.3\r\n\tc4.5-12,4.9-23.3,4.6-33.8c-0.6-22.4-17.4-39.6-40-40.9c-2.9-0.2-5.5-0.2-8-0.2c-2.2,0-4.3,0.1-6.3,0.2\r\n\tc8.8-18.1,21.7-36.3,37.7-47.9c15-10.9,36.6-17.5,57.8-17.5c8.3,0,16.1,1,21.9,2.9c17,5.5,26,15.8,29.9,34.4\r\n\tC467.2,145.1,463.4,174.2,450,203.9z"
+ },
+ "children": []
+ }]
+};
+exports.socialVimeoOutline = socialVimeoOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialWhatsapp.js b/dist/ionicons/socialWhatsapp.js
new file mode 100644
index 000000000..caaf07f2b
--- /dev/null
+++ b/dist/ionicons/socialWhatsapp.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialWhatsapp = void 0;
+var socialWhatsapp = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.23,11.532,79.79,31.559,112.687L32,480l121.764-38.682\r\n\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32z\r\n\t\t M369.424,333.11c-5.174,12.827-28.574,24.533-38.899,25.072c-10.314,0.547-10.608,7.994-66.84-16.434\r\n\t\tc-56.225-24.434-90.052-83.844-92.719-87.67c-2.669-3.812-21.78-31.047-20.749-58.455c1.038-27.413,16.047-40.346,21.404-45.725\r\n\t\tc5.351-5.387,11.486-6.352,15.232-6.413c4.428-0.072,7.296-0.132,10.573-0.011c3.274,0.124,8.192-0.685,12.45,10.639\r\n\t\tc4.256,11.323,14.443,39.153,15.746,41.989c1.302,2.839,2.108,6.126,0.102,9.771c-2.012,3.653-3.042,5.935-5.961,9.083\r\n\t\tc-2.935,3.148-6.174,7.042-8.792,9.449c-2.92,2.665-5.97,5.572-2.9,11.269c3.068,5.693,13.653,24.356,29.779,39.736\r\n\t\tc20.725,19.771,38.598,26.329,44.098,29.317c5.515,3.004,8.806,2.67,12.226-0.929c3.404-3.599,14.639-15.746,18.596-21.169\r\n\t\tc3.955-5.438,7.661-4.373,12.742-2.329c5.078,2.052,32.157,16.556,37.673,19.551c5.51,2.989,9.193,4.529,10.51,6.9\r\n\t\tC375.012,309.131,374.596,320.282,369.424,333.11z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.23,11.532,79.79,31.559,112.687L32,480l121.764-38.682\r\n\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32z\r\n\t\t M369.424,333.11c-5.174,12.827-28.574,24.533-38.899,25.072c-10.314,0.547-10.608,7.994-66.84-16.434\r\n\t\tc-56.225-24.434-90.052-83.844-92.719-87.67c-2.669-3.812-21.78-31.047-20.749-58.455c1.038-27.413,16.047-40.346,21.404-45.725\r\n\t\tc5.351-5.387,11.486-6.352,15.232-6.413c4.428-0.072,7.296-0.132,10.573-0.011c3.274,0.124,8.192-0.685,12.45,10.639\r\n\t\tc4.256,11.323,14.443,39.153,15.746,41.989c1.302,2.839,2.108,6.126,0.102,9.771c-2.012,3.653-3.042,5.935-5.961,9.083\r\n\t\tc-2.935,3.148-6.174,7.042-8.792,9.449c-2.92,2.665-5.97,5.572-2.9,11.269c3.068,5.693,13.653,24.356,29.779,39.736\r\n\t\tc20.725,19.771,38.598,26.329,44.098,29.317c5.515,3.004,8.806,2.67,12.226-0.929c3.404-3.599,14.639-15.746,18.596-21.169\r\n\t\tc3.955-5.438,7.661-4.373,12.742-2.329c5.078,2.052,32.157,16.556,37.673,19.551c5.51,2.989,9.193,4.529,10.51,6.9\r\n\t\tC375.012,309.131,374.596,320.282,369.424,333.11z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialWhatsapp = socialWhatsapp;
\ No newline at end of file
diff --git a/dist/ionicons/socialWhatsappOutline.js b/dist/ionicons/socialWhatsappOutline.js
new file mode 100644
index 000000000..8d5e42bec
--- /dev/null
+++ b/dist/ionicons/socialWhatsappOutline.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialWhatsappOutline = void 0;
+var socialWhatsappOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M209.877,154.114c-4.258-11.323-9.176-10.515-12.45-10.639\r\n\t\tc-3.277-0.121-6.146-0.061-10.573,0.011c-3.746,0.061-9.882,1.026-15.232,6.413c-5.357,5.378-20.366,18.312-21.404,45.725\r\n\t\tc-1.031,27.408,18.08,54.643,20.749,58.455c2.667,3.826,36.494,63.236,92.719,87.67c56.231,24.427,56.525,16.981,66.84,16.435\r\n\t\tc10.325-0.54,33.726-12.246,38.899-25.073c5.172-12.827,5.588-23.979,4.271-26.358c-1.316-2.371-5-3.911-10.51-6.9\r\n\t\tc-5.516-2.995-32.595-17.498-37.673-19.55c-5.081-2.044-8.787-3.108-12.742,2.329c-3.957,5.422-15.191,17.569-18.596,21.168\r\n\t\tc-3.42,3.6-6.711,3.934-12.226,0.93c-5.5-2.988-23.373-9.548-44.098-29.317c-16.126-15.38-26.711-34.043-29.779-39.736\r\n\t\tc-3.069-5.697-0.02-8.604,2.9-11.269c2.618-2.407,5.857-6.301,8.792-9.449c2.919-3.148,3.949-5.43,5.961-9.083\r\n\t\tc2.007-3.645,1.2-6.932-0.102-9.771C224.32,193.267,214.133,165.437,209.877,154.114z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill-rule": "evenodd",
+ "clip-rule": "evenodd",
+ "d": "M209.877,154.114c-4.258-11.323-9.176-10.515-12.45-10.639\r\n\t\tc-3.277-0.121-6.146-0.061-10.573,0.011c-3.746,0.061-9.882,1.026-15.232,6.413c-5.357,5.378-20.366,18.312-21.404,45.725\r\n\t\tc-1.031,27.408,18.08,54.643,20.749,58.455c2.667,3.826,36.494,63.236,92.719,87.67c56.231,24.427,56.525,16.981,66.84,16.435\r\n\t\tc10.325-0.54,33.726-12.246,38.899-25.073c5.172-12.827,5.588-23.979,4.271-26.358c-1.316-2.371-5-3.911-10.51-6.9\r\n\t\tc-5.516-2.995-32.595-17.498-37.673-19.55c-5.081-2.044-8.787-3.108-12.742,2.329c-3.957,5.422-15.191,17.569-18.596,21.168\r\n\t\tc-3.42,3.6-6.711,3.934-12.226,0.93c-5.5-2.988-23.373-9.548-44.098-29.317c-16.126-15.38-26.711-34.043-29.779-39.736\r\n\t\tc-3.069-5.697-0.02-8.604,2.9-11.269c2.618-2.407,5.857-6.301,8.792-9.449c2.919-3.148,3.949-5.43,5.961-9.083\r\n\t\tc2.007-3.645,1.2-6.932-0.102-9.771C224.32,193.267,214.133,165.437,209.877,154.114z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M260.062,64c50.249,0,97.478,19.402,132.982,54.632C428.482,153.796,448,200.533,448,250.232\r\n\t\t\tc0,49.694-19.518,96.43-54.956,131.596c-35.507,35.232-82.735,54.637-132.982,54.637c-31.806,0-63.24-8.023-90.906-23.201\r\n\t\t\tl-12.017-6.593l-13.063,4.149l-61.452,19.522l19.375-57.149l4.798-14.151l-7.771-12.763\r\n\t\t\tc-17.593-28.898-26.892-62.111-26.892-96.047c0-49.699,19.518-96.436,54.957-131.601C162.596,83.402,209.819,64,260.062,64\r\n\t\t\t M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.229,11.532,79.791,31.559,112.687L32,480l121.764-38.682\r\n\t\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32\r\n\t\t\tL260.062,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M260.062,64c50.249,0,97.478,19.402,132.982,54.632C428.482,153.796,448,200.533,448,250.232\r\n\t\t\tc0,49.694-19.518,96.43-54.956,131.596c-35.507,35.232-82.735,54.637-132.982,54.637c-31.806,0-63.24-8.023-90.906-23.201\r\n\t\t\tl-12.017-6.593l-13.063,4.149l-61.452,19.522l19.375-57.149l4.798-14.151l-7.771-12.763\r\n\t\t\tc-17.593-28.898-26.892-62.111-26.892-96.047c0-49.699,19.518-96.436,54.957-131.601C162.596,83.402,209.819,64,260.062,64\r\n\t\t\t M260.062,32C138.605,32,40.134,129.701,40.134,250.232c0,41.229,11.532,79.791,31.559,112.687L32,480l121.764-38.682\r\n\t\t\tc31.508,17.285,67.745,27.146,106.298,27.146C381.535,468.464,480,370.749,480,250.232C480,129.701,381.535,32,260.062,32\r\n\t\t\tL260.062,32z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialWhatsappOutline = socialWhatsappOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialWindows.js b/dist/ionicons/socialWindows.js
new file mode 100644
index 000000000..b23d46057
--- /dev/null
+++ b/dist/ionicons/socialWindows.js
@@ -0,0 +1,77 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialWindows = void 0;
+var socialWindows = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M480,265H232v179l248,36V265L480,265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M480,265H232v179l248,36V265L480,265z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M216,265H32v150l184,26.7V265L216,265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M216,265H32v150l184,26.7V265L216,265z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M480,32L232,67.4V249h248V32L480,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M480,32L232,67.4V249h248V32L480,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M216,69.7L32,96v153h184V69.7L216,69.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M216,69.7L32,96v153h184V69.7L216,69.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialWindows = socialWindows;
\ No newline at end of file
diff --git a/dist/ionicons/socialWindowsOutline.js b/dist/ionicons/socialWindowsOutline.js
new file mode 100644
index 000000000..fb86c094a
--- /dev/null
+++ b/dist/ionicons/socialWindowsOutline.js
@@ -0,0 +1,77 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialWindowsOutline = void 0;
+var socialWindowsOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M464,281v180.5l-216-31.3V281H464 M480,265H232v179l248,36V265L480,265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M464,281v180.5l-216-31.3V281H464 M480,265H232v179l248,36V265L480,265z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M200,281v142.2L48,401.2V281H200 M216,265H32v150l184,26.7V265L216,265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M200,281v142.2L48,401.2V281H200 M216,265H32v150l184,26.7V265L216,265z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M464,50v183H248V81.3l216-30.9 M480,32L232,67.4V249h248V32L480,32z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M464,50v183H248V81.3l216-30.9 M480,32L232,67.4V249h248V32L480,32z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M200,88v145H48V109.9l152-21.7 M216,69.7L32,96v153h184V69.7L216,69.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M200,88v145H48V109.9l152-21.7 M216,69.7L32,96v153h184V69.7L216,69.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialWindowsOutline = socialWindowsOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialWordpress.js b/dist/ionicons/socialWordpress.js
new file mode 100644
index 000000000..9d715ff1a
--- /dev/null
+++ b/dist/ionicons/socialWordpress.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialWordpress = void 0;
+var socialWordpress = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M259,271.3L226.2,367h-0.1l-25.4,73.1c1.8,0.5,3.5,0.9,5.3,1.4c0.1,0,0.2,0,0.3,0c15.8,4.2,32.4,6.5,49.5,6.5\r\n\t\tc8.5,0,16.8-0.5,24.9-1.8c11.2-1.4,22-3.8,32.5-7.1c0,0,0,0,0,0c2.6-0.8,5.2-1.7,7.8-2.6c-2.8-6-8.8-19.3-9.1-19.9L259,271.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M259,271.3L226.2,367h-0.1l-25.4,73.1c1.8,0.5,3.5,0.9,5.3,1.4c0.1,0,0.2,0,0.3,0c15.8,4.2,32.4,6.5,49.5,6.5\r\n\t\tc8.5,0,16.8-0.5,24.9-1.8c11.2-1.4,22-3.8,32.5-7.1c0,0,0,0,0,0c2.6-0.8,5.2-1.7,7.8-2.6c-2.8-6-8.8-19.3-9.1-19.9L259,271.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M80.8,180.5c-10,22.6-16.8,50.4-16.8,75.5c0,6.3,0.3,12.6,0.9,18.8c6.9,71.2,52.9,131,116.1,157.9c2.6,1.1,5.3,2.2,8,3.2\r\n\t\tL96,180.6C88,180.3,86.5,180.8,80.8,180.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M80.8,180.5c-10,22.6-16.8,50.4-16.8,75.5c0,6.3,0.3,12.6,0.9,18.8c6.9,71.2,52.9,131,116.1,157.9c2.6,1.1,5.3,2.2,8,3.2\r\n\t\tL96,180.6C88,180.3,86.5,180.8,80.8,180.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M430.2,175.4c-4.3-9.3-9.4-18.2-15.1-26.6c-1.6-2.4-3.4-4.8-5.1-7.2c-21.5-28.8-50.8-51.4-84.9-64.6\r\n\t\tC303.7,68.6,280.3,64,255.9,64c-60.3,0-114.2,28-149.4,71.7c-6.5,8-12.3,16.6-17.5,25.6c14.2,0.1,31.8,0.1,33.8,0.1\r\n\t\tc18.1,0,46-2.2,46-2.2c9.4-0.6,10.4,13.1,1.1,14.2c0,0-9.4,1.1-19.8,1.6l62.9,187l37.8-113.3L224,175.1c-9.4-0.5-18.1-1.6-18.1-1.6\r\n\t\tc-9.4-0.5-8.2-14.8,1-14.2c0,0,28.5,2.2,45.5,2.2c18.1,0,46-2.2,46-2.2c9.3-0.6,10.5,13.1,1.1,14.2c0,0-9.3,1.1-19.7,1.6\r\n\t\tl62.3,185.6l17.3-57.6c8.7-22.4,13.1-40.9,13.1-55.7c0-21.3-7.7-36.1-14.3-47.6c-8.7-14.3-16.9-26.3-16.9-40.4\r\n\t\tc0-15.9,12-30.7,29-30.7c0.7,0,1.5,0,2.2,0c26.2-0.7,34.8,25.3,35.9,43c0,0,0,0.4,0,0.6c0.4,7.2,0.1,12.5,0.1,18.8\r\n\t\tc0,17.4-3.3,37.1-13.1,61.8l-39,112.8l-22.3,65.7c1.8-0.8,3.5-1.6,5.3-2.5c56.7-27.4,98-82,106.7-146.7c1.3-8.5,1.9-17.2,1.9-26\r\n\t\tC448,227.3,441.6,199.9,430.2,175.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M430.2,175.4c-4.3-9.3-9.4-18.2-15.1-26.6c-1.6-2.4-3.4-4.8-5.1-7.2c-21.5-28.8-50.8-51.4-84.9-64.6\r\n\t\tC303.7,68.6,280.3,64,255.9,64c-60.3,0-114.2,28-149.4,71.7c-6.5,8-12.3,16.6-17.5,25.6c14.2,0.1,31.8,0.1,33.8,0.1\r\n\t\tc18.1,0,46-2.2,46-2.2c9.4-0.6,10.4,13.1,1.1,14.2c0,0-9.4,1.1-19.8,1.6l62.9,187l37.8-113.3L224,175.1c-9.4-0.5-18.1-1.6-18.1-1.6\r\n\t\tc-9.4-0.5-8.2-14.8,1-14.2c0,0,28.5,2.2,45.5,2.2c18.1,0,46-2.2,46-2.2c9.3-0.6,10.5,13.1,1.1,14.2c0,0-9.3,1.1-19.7,1.6\r\n\t\tl62.3,185.6l17.3-57.6c8.7-22.4,13.1-40.9,13.1-55.7c0-21.3-7.7-36.1-14.3-47.6c-8.7-14.3-16.9-26.3-16.9-40.4\r\n\t\tc0-15.9,12-30.7,29-30.7c0.7,0,1.5,0,2.2,0c26.2-0.7,34.8,25.3,35.9,43c0,0,0,0.4,0,0.6c0.4,7.2,0.1,12.5,0.1,18.8\r\n\t\tc0,17.4-3.3,37.1-13.1,61.8l-39,112.8l-22.3,65.7c1.8-0.8,3.5-1.6,5.3-2.5c56.7-27.4,98-82,106.7-146.7c1.3-8.5,1.9-17.2,1.9-26\r\n\t\tC448,227.3,441.6,199.9,430.2,175.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialWordpress = socialWordpress;
\ No newline at end of file
diff --git a/dist/ionicons/socialWordpressOutline.js b/dist/ionicons/socialWordpressOutline.js
new file mode 100644
index 000000000..ab0a6ad8e
--- /dev/null
+++ b/dist/ionicons/socialWordpressOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialWordpressOutline = void 0;
+var socialWordpressOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.9,64C150.2,64,64,150.2,64,256.1C64,361.9,150.2,448,255.9,448c8.5,0,16.8-0.5,24.9-1.8\r\n\tc85.7-11,153.8-78.7,165.3-164.1c1.3-8.5,1.9-17.2,1.9-26C448,150.2,361.8,64,255.9,64z M83.4,256.1c0-25,5.4-48.8,15-70.2\r\n\tl82.3,225.5C123.1,383.4,83.4,324.3,83.4,256.1z M278.3,427.3c-7.3,0.9-14.8,1.4-22.4,1.4c-16.9,0-33.2-2.5-48.6-7.1l18.8-55h0.1\r\n\tl32.7-95.5L312,416.5c0.4,0.8,0.9,1.6,1.3,2.3C302.1,422.8,290.4,425.6,278.3,427.3z M279.8,175.1c10.4-0.5,19.7-1.6,19.7-1.6\r\n\tc9.4-1,8.2-14.8-1.1-14.2c0,0-28,2.2-46,2.2c-16.9,0-45.5-2.2-45.5-2.2c-9.2-0.6-10.4,13.7-1,14.2c0,0,8.7,1.1,18.1,1.6l26.9,73.7\r\n\tl-37.8,113.3l-62.9-187c10.5-0.5,19.8-1.6,19.8-1.6c9.2-1,8.2-14.8-1.1-14.2c0,0-27.9,2.2-46,2.2c-3.3,0-7.1-0.1-11.1-0.2\r\n\tc30.8-46.8,83.9-77.7,144.1-77.7c45,0,85.9,17.2,116.6,45.2c-0.8,0-1.5-0.1-2.3-0.1c-17,0-29,14.8-29,30.7\r\n\tc0,14.2,8.2,26.2,16.9,40.4c6.6,11.5,14.3,26.3,14.3,47.6c0,14.8-4.4,33.4-13.1,55.7l-17.3,57.6L279.8,175.1z M342.7,405.3\r\n\tl13.7-39.7l39-112.8c9.9-24.6,13.1-44.3,13.1-61.8c0-6.3-0.4-12.3-1.1-17.8c13.5,24.6,21.2,52.8,21.2,82.9c0,8-0.5,15.8-1.5,23.5\r\n\tC419.7,333.3,387.6,379.2,342.7,405.3z"
+ },
+ "children": []
+ }]
+};
+exports.socialWordpressOutline = socialWordpressOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialYahoo.js b/dist/ionicons/socialYahoo.js
new file mode 100644
index 000000000..5b30b3ec0
--- /dev/null
+++ b/dist/ionicons/socialYahoo.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialYahoo = void 0;
+var socialYahoo = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384.6,68.4c-11.3,0-22.5-0.8-32.6-4.4l-96,160L160,64c-10.1,3.6-20.7,4.4-32,4.4c-11.1,0-22.1-0.9-32-4.4l128,212.7V448\r\n\tc10-3.5,20.8-4.4,32-4.4s22,0.9,32,4.4V277L416,64C406.1,67.4,395.7,68.4,384.6,68.4z"
+ },
+ "children": []
+ }]
+};
+exports.socialYahoo = socialYahoo;
\ No newline at end of file
diff --git a/dist/ionicons/socialYahooOutline.js b/dist/ionicons/socialYahooOutline.js
new file mode 100644
index 000000000..224bce71e
--- /dev/null
+++ b/dist/ionicons/socialYahooOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialYahooOutline = void 0;
+var socialYahooOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384.6,68.4c-11.3,0-22.5-0.8-32.6-4.4l-96,160L160,64c-10.1,3.6-20.7,4.4-32,4.4c-11.1,0-22.1-0.9-32-4.4l128,212.7V448\r\n\tc10-3.5,20.8-4.4,32-4.4s22,0.9,32,4.4V277L416,64C406.1,67.4,395.7,68.4,384.6,68.4z M274.2,268.5l-2.2,4v4.4v151.3\r\n\tc-5-0.6-11.2-0.7-16-0.7c-4.8,0-10,0.1-16,0.7V276.7v-4.4l-2.4-3.8L127,84.4c0.3,0,0.7,0,1,0c7.6,0,16-0.3,24.7-1.9l89.8,149.8\r\n\tl13.4,22.8l14-22.9l89.8-149.9c9,1.6,17.6,1.7,24.8,1.7c0.2,0,0.3,0,0.5,0L274.2,268.5z"
+ },
+ "children": []
+ }]
+};
+exports.socialYahooOutline = socialYahooOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialYen.js b/dist/ionicons/socialYen.js
new file mode 100644
index 000000000..6f15d7f3e
--- /dev/null
+++ b/dist/ionicons/socialYen.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialYen = void 0;
+var socialYen = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,32h-80L256,253.128L144,32H64l112.368,208H128v48h73.564L216,319v17h-88v48h88v96h80v-96h88v-48h-88v-17l14.891-31H384\r\n\tv-48h-48.289L448,32z"
+ },
+ "children": []
+ }]
+};
+exports.socialYen = socialYen;
\ No newline at end of file
diff --git a/dist/ionicons/socialYenOutline.js b/dist/ionicons/socialYenOutline.js
new file mode 100644
index 000000000..f0674dde0
--- /dev/null
+++ b/dist/ionicons/socialYenOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialYenOutline = void 0;
+var socialYenOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M448,32h-80L256,253.128L144,32H64l112.368,208H128v48h73.564L216,319v17h-88v48h88v96h80v-96h88v-48h-88v-17l14.891-31H384\r\n\tv-48h-48.289L448,32z M368,256v16h-67l-21,43v37h88v16h-88v96h-48v-96h-88v-16h88v-35.75L212,272h-68v-16h59.197l-12.752-23.605\r\n\tL90.829,48H134l122,240L378,48h43h0.18l-99.548,184.399L308.891,256H368z"
+ },
+ "children": []
+ }]
+};
+exports.socialYenOutline = socialYenOutline;
\ No newline at end of file
diff --git a/dist/ionicons/socialYoutube.js b/dist/ionicons/socialYoutube.js
new file mode 100644
index 000000000..191ff42aa
--- /dev/null
+++ b/dist/ionicons/socialYoutube.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialYoutube = void 0;
+var socialYoutube = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M508.6,148.8c0-45-33.1-81.2-74-81.2C379.2,65,322.7,64,265,64c-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,1-169.6,3.6\r\n\t\tc-40.8,0-73.9,36.4-73.9,81.4C1,184.6-0.1,220.2,0,255.8C-0.1,291.4,1,327,3.4,362.7c0,45,33.1,81.5,73.9,81.5\r\n\t\tc58.2,2.7,117.9,3.9,178.6,3.8c60.8,0.2,120.3-1,178.6-3.8c40.9,0,74-36.5,74-81.5c2.4-35.7,3.5-71.3,3.4-107\r\n\t\tC512.1,220.1,511,184.5,508.6,148.8z M207,353.9V157.4l145,98.2L207,353.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M508.6,148.8c0-45-33.1-81.2-74-81.2C379.2,65,322.7,64,265,64c-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,1-169.6,3.6\r\n\t\tc-40.8,0-73.9,36.4-73.9,81.4C1,184.6-0.1,220.2,0,255.8C-0.1,291.4,1,327,3.4,362.7c0,45,33.1,81.5,73.9,81.5\r\n\t\tc58.2,2.7,117.9,3.9,178.6,3.8c60.8,0.2,120.3-1,178.6-3.8c40.9,0,74-36.5,74-81.5c2.4-35.7,3.5-71.3,3.4-107\r\n\t\tC512.1,220.1,511,184.5,508.6,148.8z M207,353.9V157.4l145,98.2L207,353.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.socialYoutube = socialYoutube;
\ No newline at end of file
diff --git a/dist/ionicons/socialYoutubeOutline.js b/dist/ionicons/socialYoutubeOutline.js
new file mode 100644
index 000000000..c63eceb79
--- /dev/null
+++ b/dist/ionicons/socialYoutubeOutline.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.socialYoutubeOutline = void 0;
+var socialYoutubeOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M265,96c65.3,0,118.7,1.1,168.1,3.3l0.7,0h0.7c23.1,0,42,22,42,49.1v1.1l0.1,1.1c2.3,34,3.4,69.3,3.4,104.9v0v0\r\n\t\t\tc0.1,35.6-1.1,70.9-3.4,104.9l-0.1,1.1v1.1c0,13.8-4.7,26.6-13.4,36.1c-7.8,8.6-18,13.4-28.6,13.4h-0.8l-0.8,0\r\n\t\t\tc-52.9,2.5-108.8,3.8-166.4,3.8c-3.5,0-7.1,0-10.6,0H256h-0.1c-3.6,0-7.2,0-10.8,0c-57.8,0-113.7-1.3-166.2-3.7l-0.8,0h-0.8\r\n\t\t\tc-10.6,0-20.7-4.8-28.5-13.4c-8.6-9.5-13.4-22.3-13.4-36.1v-1.1l-0.1-1.1c-2.4-34.1-3.5-69.4-3.3-104.7v-0.1v-0.1\r\n\t\t\tc-0.1-35.3,1-70.5,3.3-104.6l0.1-1.1v-1.1c0-27.2,18.8-49.3,41.9-49.3H78l0.7,0c49.5-2.3,102.9-3.3,168.2-3.3h9H265 M265,64\r\n\t\t\tc-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,0.8-169.6,3.3c-40.8,0-73.9,36.3-73.9,81.3C1,184.4-0.1,220,0,255.7\r\n\t\t\tc-0.1,35.7,0.9,71.3,3.4,107c0,45,33.1,81.6,73.9,81.6c54.8,2.6,110.7,3.8,167.8,3.8c3.6,0,7.3,0,10.9,0c3.6,0,7.2,0,10.7,0\r\n\t\t\tc57.1,0,113-1.2,167.9-3.8c40.9,0,74-36.6,74-81.6c2.4-35.7,3.5-71.4,3.4-107.1c0.1-35.7-1-71.3-3.4-107.1c0-45-33.1-81.1-74-81.1\r\n\t\t\tC379.2,64.8,322.7,64,265,64L265,64z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M265,96c65.3,0,118.7,1.1,168.1,3.3l0.7,0h0.7c23.1,0,42,22,42,49.1v1.1l0.1,1.1c2.3,34,3.4,69.3,3.4,104.9v0v0\r\n\t\t\tc0.1,35.6-1.1,70.9-3.4,104.9l-0.1,1.1v1.1c0,13.8-4.7,26.6-13.4,36.1c-7.8,8.6-18,13.4-28.6,13.4h-0.8l-0.8,0\r\n\t\t\tc-52.9,2.5-108.8,3.8-166.4,3.8c-3.5,0-7.1,0-10.6,0H256h-0.1c-3.6,0-7.2,0-10.8,0c-57.8,0-113.7-1.3-166.2-3.7l-0.8,0h-0.8\r\n\t\t\tc-10.6,0-20.7-4.8-28.5-13.4c-8.6-9.5-13.4-22.3-13.4-36.1v-1.1l-0.1-1.1c-2.4-34.1-3.5-69.4-3.3-104.7v-0.1v-0.1\r\n\t\t\tc-0.1-35.3,1-70.5,3.3-104.6l0.1-1.1v-1.1c0-27.2,18.8-49.3,41.9-49.3H78l0.7,0c49.5-2.3,102.9-3.3,168.2-3.3h9H265 M265,64\r\n\t\t\tc-3,0-6,0-9,0s-6,0-9,0c-57.6,0-114.2,0.8-169.6,3.3c-40.8,0-73.9,36.3-73.9,81.3C1,184.4-0.1,220,0,255.7\r\n\t\t\tc-0.1,35.7,0.9,71.3,3.4,107c0,45,33.1,81.6,73.9,81.6c54.8,2.6,110.7,3.8,167.8,3.8c3.6,0,7.3,0,10.9,0c3.6,0,7.2,0,10.7,0\r\n\t\t\tc57.1,0,113-1.2,167.9-3.8c40.9,0,74-36.6,74-81.6c2.4-35.7,3.5-71.4,3.4-107.1c0.1-35.7-1-71.3-3.4-107.1c0-45-33.1-81.1-74-81.1\r\n\t\t\tC379.2,64.8,322.7,64,265,64L265,64z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M207,353.8V157.4l145,98.2L207,353.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M207,353.8V157.4l145,98.2L207,353.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.socialYoutubeOutline = socialYoutubeOutline;
\ No newline at end of file
diff --git a/dist/ionicons/soupCan.js b/dist/ionicons/soupCan.js
new file mode 100644
index 000000000..500516f3e
--- /dev/null
+++ b/dist/ionicons/soupCan.js
@@ -0,0 +1,69 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.soupCan = void 0;
+var soupCan = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "cx": "256",
+ "cy": "80",
+ "rx": "160",
+ "ry": "64"
+ },
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "cx": "256",
+ "cy": "80",
+ "rx": "160",
+ "ry": "64"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,440c88.365,0,152-28.654,152-64V248c0,28.581-41.612,52.783-104.26,61.002C301.238,333.16,280.82,352,256,352\r\n\t\ts-45.238-18.84-47.74-42.998C145.612,300.783,104,276.581,104,248v128C104,411.346,167.634,440,256,440z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,440c88.365,0,152-28.654,152-64V248c0,28.581-41.612,52.783-104.26,61.002C301.238,333.16,280.82,352,256,352\r\n\t\ts-45.238-18.84-47.74-42.998C145.612,300.783,104,276.581,104,248v128C104,411.346,167.634,440,256,440z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,160c-88.366,0-160-28.654-160-64c0,0,0,32.834,8,40v96c0,28.732,42.049,53.042,105.25,61.134\r\n\t\tC214.176,271.861,233.229,256,256,256s41.824,15.861,46.75,37.134C365.951,285.042,408,260.732,408,232v-96c8-8.25,8-40,8-40\r\n\t\tC416,131.346,344.365,160,256,160z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,160c-88.366,0-160-28.654-160-64c0,0,0,32.834,8,40v96c0,28.732,42.049,53.042,105.25,61.134\r\n\t\tC214.176,271.861,233.229,256,256,256s41.824,15.861,46.75,37.134C365.951,285.042,408,260.732,408,232v-96c8-8.25,8-40,8-40\r\n\t\tC416,131.346,344.365,160,256,160z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M408,392c0,35.346-63.635,64-152,64c-88.366,0-152-28.654-152-64v23.999L96,432c0,6.994,2.815,13.725,8,20.025\r\n\t\tC125.016,477.562,185.121,496,256,496c70.879,0,130.984-18.438,152-43.975c5.186-6.301,8-13.031,8-20.025l-8-16.001V392z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M408,392c0,35.346-63.635,64-152,64c-88.366,0-152-28.654-152-64v23.999L96,432c0,6.994,2.815,13.725,8,20.025\r\n\t\tC125.016,477.562,185.121,496,256,496c70.879,0,130.984-18.438,152-43.975c5.186-6.301,8-13.031,8-20.025l-8-16.001V392z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.soupCan = soupCan;
\ No newline at end of file
diff --git a/dist/ionicons/soupCanOutline.js b/dist/ionicons/soupCanOutline.js
new file mode 100644
index 000000000..02e779d1b
--- /dev/null
+++ b/dist/ionicons/soupCanOutline.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.soupCanOutline = void 0;
+var soupCanOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.82,144c88.269,0,159.824-28.654,159.824-64S344.089,16,255.82,16C167.552,16,95.997,44.654,95.997,80\r\n\t\tS167.552,144,255.82,144z M255.82,33.041c69.729,0,126.26,19.234,126.26,42.959s-56.531,42.959-126.26,42.959\r\n\t\tc-69.729,0-126.258-19.234-126.258-42.959S186.091,33.041,255.82,33.041z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M255.82,144c88.269,0,159.824-28.654,159.824-64S344.089,16,255.82,16C167.552,16,95.997,44.654,95.997,80\r\n\t\tS167.552,144,255.82,144z M255.82,33.041c69.729,0,126.26,19.234,126.26,42.959s-56.531,42.959-126.26,42.959\r\n\t\tc-69.729,0-126.258-19.234-126.258-42.959S186.091,33.041,255.82,33.041z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256.57,160c-88.269,0-160.567-28.654-160.567-64c0,0-0.003,33.999,7.997,40v240c0,35.346,63.732,64,152,64\r\n\t\tc88.269,0,152-28.654,152-64V136c8-7.438,7.708-34.853,7.817-40C414.665,130.946,344.116,160,256.57,160z M376,375.588\r\n\t\tc0,2.232-7.961,10.682-29.423,18.688C322.853,403.126,290.812,408,256.273,408c-34.539,0-66.83-4.874-90.554-13.725\r\n\t\tC144.257,386.27,137,377.82,136,375.588v-79.564c18,9.721,42.742,17.115,72.156,20.979l1.588,0.237\r\n\t\tC215.487,337.308,233.936,352,255.826,352c21.89,0,40.338-14.689,46.084-34.754l1.755-0.244\r\n\t\tC333.08,313.139,358,305.744,376,296.023V375.588z M376,264.023c-18,9.831-43.476,17.284-73.325,21.11l-2.61,0.195\r\n\t\tC292.791,268.097,275.723,256,255.859,256c-19.867,0-36.919,12.102-44.19,29.34l-2.514-0.206\r\n\t\tc-29.85-3.826-55.155-11.279-73.155-21.11v-91.265C170,185.25,211.923,192,256.499,192C300.665,192,343,185.287,376,173.045\r\n\t\tV264.023z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.57,160c-88.269,0-160.567-28.654-160.567-64c0,0-0.003,33.999,7.997,40v240c0,35.346,63.732,64,152,64\r\n\t\tc88.269,0,152-28.654,152-64V136c8-7.438,7.708-34.853,7.817-40C414.665,130.946,344.116,160,256.57,160z M376,375.588\r\n\t\tc0,2.232-7.961,10.682-29.423,18.688C322.853,403.126,290.812,408,256.273,408c-34.539,0-66.83-4.874-90.554-13.725\r\n\t\tC144.257,386.27,137,377.82,136,375.588v-79.564c18,9.721,42.742,17.115,72.156,20.979l1.588,0.237\r\n\t\tC215.487,337.308,233.936,352,255.826,352c21.89,0,40.338-14.689,46.084-34.754l1.755-0.244\r\n\t\tC333.08,313.139,358,305.744,376,296.023V375.588z M376,264.023c-18,9.831-43.476,17.284-73.325,21.11l-2.61,0.195\r\n\t\tC292.791,268.097,275.723,256,255.859,256c-19.867,0-36.919,12.102-44.19,29.34l-2.514-0.206\r\n\t\tc-29.85-3.826-55.155-11.279-73.155-21.11v-91.265C170,185.25,211.923,192,256.499,192C300.665,192,343,185.287,376,173.045\r\n\t\tV264.023z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M274.002,463.58"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M274.002,463.58"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256.272,464c0.293,0,0.583-0.006,0.876-0.007c-0.351,0.001-0.699,0.005-1.051,0.005\r\n\t\t\tC256.156,463.998,256.214,464,256.272,464z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.272,464c0.293,0,0.583-0.006,0.876-0.007c-0.351,0.001-0.699,0.005-1.051,0.005\r\n\t\t\tC256.156,463.998,256.214,464,256.272,464z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M408,415.999V400c0,36.001-63.432,64-152,64c-88.569,0-152-28.654-152-64v15.999L96.261,432\r\n\t\t\tc0,6.994,2.938,13.725,8.117,20.025C125.37,477.562,185.471,496,256.273,496c70.801,0,130.87-18.438,151.863-43.975\r\n\t\t\tc5.18-6.301,7.923-13.031,7.923-20.025L408,415.999z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M408,415.999V400c0,36.001-63.432,64-152,64c-88.569,0-152-28.654-152-64v15.999L96.261,432\r\n\t\t\tc0,6.994,2.938,13.725,8.117,20.025C125.37,477.562,185.471,496,256.273,496c70.801,0,130.87-18.438,151.863-43.975\r\n\t\t\tc5.18-6.301,7.923-13.031,7.923-20.025L408,415.999z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.soupCanOutline = soupCanOutline;
\ No newline at end of file
diff --git a/dist/ionicons/speakerphone.js b/dist/ionicons/speakerphone.js
new file mode 100644
index 000000000..d1453f722
--- /dev/null
+++ b/dist/ionicons/speakerphone.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.speakerphone = void 0;
+var speakerphone = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M70.9,181.5c0-41,25-76.5,60.6-91.5h-7.7c-41.1,0-75.1,32.8-81.1,75.2c-6,1-10.7,7.9-10.7,16.1c0,8.6,5.1,15.4,11.6,15.9\r\n\t\tc7.2,36.4,35.1,65.8,69.7,68.8c0,0,0.1,0,0.1,0c1.4,0,2.8,0.6,4.2,0.9c1.1,0.2,2.2,0.4,3.3,0.7C91,250.5,70.9,218.4,70.9,181.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M70.9,181.5c0-41,25-76.5,60.6-91.5h-7.7c-41.1,0-75.1,32.8-81.1,75.2c-6,1-10.7,7.9-10.7,16.1c0,8.6,5.1,15.4,11.6,15.9\r\n\t\tc7.2,36.4,35.1,65.8,69.7,68.8c0,0,0.1,0,0.1,0c1.4,0,2.8,0.6,4.2,0.9c1.1,0.2,2.2,0.4,3.3,0.7C91,250.5,70.9,218.4,70.9,181.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M465.1,91c-1.1-2.9-2.3-5.6-3.5-8.3c-6.5-14.4-14.4-26-23.4-34.6C427,37.6,414.1,32,400.8,32c-8.3,0-16.4,2.2-24.1,6.4\r\n\t\tc0,0,0,0-0.1,0c-1.2,0.7-2.4,1.3-3.6,2c-49,29-104.1,46.2-162.6,49.4c-6.5,0.4-13,0.2-19.5,0.2h-42.3c-34,15-59,50.5-59,91.5\r\n\t\tc0,36.8,19.2,69.1,47.8,86.1c13,10.9,41.7,11.7,40,23.9c-1.9,13.2-5.5,21.9-7.8,30.7c-1.3,4.8-23.6,72.9-25.3,144.7\r\n\t\tc0,2,0,3.7,0.2,6.6c0.2,2.9,2.2,6.4,8.5,6.4h76.8c6.6,0,9.7-3.3,9.3-9.3c-0.2-1.9-0.6-4.3-0.8-6.5c-2.4-23.1-4.6-49.8-3.3-81.6\r\n\t\tc1.3-34,5.2-51.9,7-61.3c2.1-10.4,7.6-22.4,12.1-30.3c30.8,0.9,92.9,19.3,115.1,28.9c0,0,7.2,3.4,10.1,5.2c7,3.4,14.2,5.1,21.6,5.1\r\n\t\tc0.9,0,1.8,0,2.7-0.1c12.3-0.7,24.2-9.7,34.7-19.5c9.1-8.5,16.9-20.2,23.4-34.6c1.2-2.8,2.4-5.6,3.5-8.6\r\n\t\tc9.6-25,14.8-55.9,14.8-88.1C480,147,474.8,116,465.1,91z M442,267.5c-7.8,18.5-18.2,33.3-29.5,33.3c-11.3,0-21.6-14.7-29.4-33.3\r\n\t\tc-9.1-21.6-14.9-53.1-14.9-88.1c0-35.2,5.8-66.8,15-88.4c7.8-18.4,18.1-29.5,29.3-29.5c11.3,0,21.5,11.2,29.4,29.5\r\n\t\tc9.2,21.6,15,53.2,15,88.4C456.9,214.4,451.1,245.9,442,267.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M465.1,91c-1.1-2.9-2.3-5.6-3.5-8.3c-6.5-14.4-14.4-26-23.4-34.6C427,37.6,414.1,32,400.8,32c-8.3,0-16.4,2.2-24.1,6.4\r\n\t\tc0,0,0,0-0.1,0c-1.2,0.7-2.4,1.3-3.6,2c-49,29-104.1,46.2-162.6,49.4c-6.5,0.4-13,0.2-19.5,0.2h-42.3c-34,15-59,50.5-59,91.5\r\n\t\tc0,36.8,19.2,69.1,47.8,86.1c13,10.9,41.7,11.7,40,23.9c-1.9,13.2-5.5,21.9-7.8,30.7c-1.3,4.8-23.6,72.9-25.3,144.7\r\n\t\tc0,2,0,3.7,0.2,6.6c0.2,2.9,2.2,6.4,8.5,6.4h76.8c6.6,0,9.7-3.3,9.3-9.3c-0.2-1.9-0.6-4.3-0.8-6.5c-2.4-23.1-4.6-49.8-3.3-81.6\r\n\t\tc1.3-34,5.2-51.9,7-61.3c2.1-10.4,7.6-22.4,12.1-30.3c30.8,0.9,92.9,19.3,115.1,28.9c0,0,7.2,3.4,10.1,5.2c7,3.4,14.2,5.1,21.6,5.1\r\n\t\tc0.9,0,1.8,0,2.7-0.1c12.3-0.7,24.2-9.7,34.7-19.5c9.1-8.5,16.9-20.2,23.4-34.6c1.2-2.8,2.4-5.6,3.5-8.6\r\n\t\tc9.6-25,14.8-55.9,14.8-88.1C480,147,474.8,116,465.1,91z M442,267.5c-7.8,18.5-18.2,33.3-29.5,33.3c-11.3,0-21.6-14.7-29.4-33.3\r\n\t\tc-9.1-21.6-14.9-53.1-14.9-88.1c0-35.2,5.8-66.8,15-88.4c7.8-18.4,18.1-29.5,29.3-29.5c11.3,0,21.5,11.2,29.4,29.5\r\n\t\tc9.2,21.6,15,53.2,15,88.4C456.9,214.4,451.1,245.9,442,267.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.speakerphone = speakerphone;
\ No newline at end of file
diff --git a/dist/ionicons/speedometer.js b/dist/ionicons/speedometer.js
new file mode 100644
index 000000000..10bd53229
--- /dev/null
+++ b/dist/ionicons/speedometer.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.speedometer = void 0;
+var speedometer = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344,256l-84.4,64.2c-1.2-0.1-2.4-0.2-3.6-0.2c-17.7,0-32,14.3-32,32c0,17.7,14.3,32,32,32c17.7,0,32-14.3,32-32\r\n\t\tc0-1.2-0.1-2.4-0.2-3.6L352,264L344,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M344,256l-84.4,64.2c-1.2-0.1-2.4-0.2-3.6-0.2c-17.7,0-32,14.3-32,32c0,17.7,14.3,32,32,32c17.7,0,32-14.3,32-32\r\n\t\tc0-1.2-0.1-2.4-0.2-3.6L352,264L344,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256,96C132.3,96,32,196.3,32,320c0,34.4,7.8,66.9,21.6,96h36.1c-15.4-26.6-24.2-56.6-25.5-88H96v-16H64.2\r\n\t\tc1.2-28.8,8.7-56.5,21.8-81.4l27.5,15.9l8-13.9L94,216.8c7.4-11.6,16.2-22.6,26.2-32.6c10.2-10.1,21.3-19,33.1-26.5l15.8,27.3\r\n\t\tl13.9-8l-15.8-27.3c24.8-13,52.2-20.3,80.8-21.5V160h16v-31.8c28.6,1.2,56,8.6,80.8,21.5L329.1,177l13.9,8l15.8-27.3\r\n\t\tc11.8,7.5,22.9,16.4,33.1,26.5c10,10,18.7,20.9,26.2,32.6l-27.4,15.8l8,13.9l27.5-15.9c13.1,24.9,20.6,52.6,21.8,81.4H416v16h31.8\r\n\t\tc-1.3,31.4-10.1,61.4-25.5,88h36.1c13.8-29.1,21.6-61.6,21.6-96C480,196.3,379.7,96,256,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256,96C132.3,96,32,196.3,32,320c0,34.4,7.8,66.9,21.6,96h36.1c-15.4-26.6-24.2-56.6-25.5-88H96v-16H64.2\r\n\t\tc1.2-28.8,8.7-56.5,21.8-81.4l27.5,15.9l8-13.9L94,216.8c7.4-11.6,16.2-22.6,26.2-32.6c10.2-10.1,21.3-19,33.1-26.5l15.8,27.3\r\n\t\tl13.9-8l-15.8-27.3c24.8-13,52.2-20.3,80.8-21.5V160h16v-31.8c28.6,1.2,56,8.6,80.8,21.5L329.1,177l13.9,8l15.8-27.3\r\n\t\tc11.8,7.5,22.9,16.4,33.1,26.5c10,10,18.7,20.9,26.2,32.6l-27.4,15.8l8,13.9l27.5-15.9c13.1,24.9,20.6,52.6,21.8,81.4H416v16h31.8\r\n\t\tc-1.3,31.4-10.1,61.4-25.5,88h36.1c13.8-29.1,21.6-61.6,21.6-96C480,196.3,379.7,96,256,96z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.speedometer = speedometer;
\ No newline at end of file
diff --git a/dist/ionicons/spoon.js b/dist/ionicons/spoon.js
new file mode 100644
index 000000000..c745eeb3c
--- /dev/null
+++ b/dist/ionicons/spoon.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.spoon = void 0;
+var spoon = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M320,160C320,96,293.5,32,256,32s-64,64-64,128l0,0c0.9,25,15.7,54.3,36.6,64.3c0.5,0.2,0.9,0.4,1.4,0.6c0,0,0,0,0.1,0\r\n\tc3.4,1.9,9.8,5.5,9.8,9.7c0,0-16,198.7-16,210.1s5,20.5,10.5,26c5.5,5.5,13.1,9.2,21.3,9.2c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0\r\n\tc8.2,0,15.8-3.7,21.4-9.2c5.5-5.5,10.3-12.9,10.3-26s-16-210.1-16-210.1c0-4.2,6.4-7.9,9.8-9.8l1.7-0.9C304.9,214,320,186,320,160"
+ },
+ "children": []
+ }]
+};
+exports.spoon = spoon;
\ No newline at end of file
diff --git a/dist/ionicons/star.js b/dist/ionicons/star.js
new file mode 100644
index 000000000..c80c59ca8
--- /dev/null
+++ b/dist/ionicons/star.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.star = void 0;
+var star = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "480,200 308.519,200 256.029,32 203.519,200 32,200 170.946,304.209 116,480 256,368 396,480 341.073,304.195 "
+ },
+ "children": []
+ }]
+};
+exports.star = star;
\ No newline at end of file
diff --git a/dist/ionicons/statsBars.js b/dist/ionicons/statsBars.js
new file mode 100644
index 000000000..50e2e08fc
--- /dev/null
+++ b/dist/ionicons/statsBars.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.statsBars = void 0;
+var statsBars = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "176",
+ "y": "96",
+ "width": "64",
+ "height": "320"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "176",
+ "y": "96",
+ "width": "64",
+ "height": "320"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "320",
+ "width": "64",
+ "height": "96"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "80",
+ "y": "320",
+ "width": "64",
+ "height": "96"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "272",
+ "y": "256",
+ "width": "64",
+ "height": "160"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "272",
+ "y": "256",
+ "width": "64",
+ "height": "160"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "368",
+ "y": "192",
+ "width": "64",
+ "height": "224"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "368",
+ "y": "192",
+ "width": "64",
+ "height": "224"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.statsBars = statsBars;
\ No newline at end of file
diff --git a/dist/ionicons/steam.js b/dist/ionicons/steam.js
new file mode 100644
index 000000000..b5f4a6a0b
--- /dev/null
+++ b/dist/ionicons/steam.js
@@ -0,0 +1,25 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.steam = void 0;
+var steam = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "id": "Gears",
+ "class": "st0",
+ "d": "M480,208.2c0,20.5-16.6,37.2-37.2,37.2c-20.5,0-37.2-16.6-37.2-37.2c0-20.5,16.6-37.2,37.2-37.2\r\n\tC463.3,171,480,187.7,480,208.2z M442.6,139c-38.1,0-69,30.7-69.4,68.7L330,269.7c-1.8-0.2-3.6-0.3-5.4-0.3\r\n\tc-9.7,0-18.7,2.7-26.4,7.3l-195.8-78.7c-5.1-23.2-25.9-40.7-50.6-40.7C23.3,157.2,0,180.6,0,209.1c0,28.5,23.3,51.8,51.8,51.8\r\n\tc9.7,0,18.7-2.7,26.4-7.3L274,332.2c5.1,23.3,25.8,40.8,50.6,40.8c26.8,0,49-20.6,51.5-46.7l66.5-48.6c38.3,0,69.4-31,69.4-69.3\r\n\tC512,170.1,480.9,139,442.6,139z M442.6,161.9c25.7,0,46.5,20.9,46.5,46.5c0,25.7-20.9,46.4-46.5,46.4c-25.7,0-46.5-20.8-46.5-46.4\r\n\tC396.1,182.7,416.9,161.9,442.6,161.9z M51.8,170.9c14.6,0,27.3,8.2,33.7,20.2l-18.9-7.6v0.1c-15.3-5.5-32.2,2-38.3,17.1\r\n\tc-6.1,15.2,0.9,32.3,15.7,38.9v0.1l16.1,6.4c-2.6,0.6-5.4,0.9-8.2,0.9c-21.1,0-38.1-17-38.1-38.1C13.7,188,30.7,170.9,51.8,170.9z\r\n\t M324.6,283.1c21.1,0,38.1,17,38.1,38.1c0,21.1-17,38.1-38.1,38.1c-14.7,0-27.4-8.2-33.7-20.3c6.3,2.5,12.5,5,18.8,7.6\r\n\tc15.5,6.2,33.2-1.3,39.4-16.8c6.2-15.5-1.3-33.1-16.9-39.4l-15.9-6.4C319.1,283.5,321.8,283.1,324.6,283.1z"
+ },
+ "children": []
+ }]
+};
+exports.steam = steam;
\ No newline at end of file
diff --git a/dist/ionicons/stop.js b/dist/ionicons/stop.js
new file mode 100644
index 000000000..aea4b1243
--- /dev/null
+++ b/dist/ionicons/stop.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.stop = void 0;
+var stop = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M437.4,64H74.6C68.7,64,64,68.7,64,74.6v362.8c0,5.9,4.7,10.6,10.6,10.6h362.8c5.8,0,10.6-4.7,10.6-10.6V74.6\r\n\tC448,68.7,443.2,64,437.4,64z"
+ },
+ "children": []
+ }]
+};
+exports.stop = stop;
\ No newline at end of file
diff --git a/dist/ionicons/thermometer.js b/dist/ionicons/thermometer.js
new file mode 100644
index 000000000..2e295e68c
--- /dev/null
+++ b/dist/ionicons/thermometer.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thermometer = void 0;
+var thermometer = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M303,335.6V78.4c0-25.7-21-46.5-47-46.5c-26,0-47,20.8-47,46.5v256.8c-20,14.5-32.9,38.2-32.9,64.9c0,44.2,36,80,80.2,80\r\n\t\tc44.2,0,79.8-35.8,79.8-80C336,373.6,323,350.1,303,335.6z M241,78.4c0-8,6.7-14.5,15-14.5s15,6.5,15,14.5V128h-30V78.4z M272,288\r\n\t\th-16v-16h16V288z M272,256h-16v-64h16V256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M303,335.6V78.4c0-25.7-21-46.5-47-46.5c-26,0-47,20.8-47,46.5v256.8c-20,14.5-32.9,38.2-32.9,64.9c0,44.2,36,80,80.2,80\r\n\t\tc44.2,0,79.8-35.8,79.8-80C336,373.6,323,350.1,303,335.6z M241,78.4c0-8,6.7-14.5,15-14.5s15,6.5,15,14.5V128h-30V78.4z M272,288\r\n\t\th-16v-16h16V288z M272,256h-16v-64h16V256z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.thermometer = thermometer;
\ No newline at end of file
diff --git a/dist/ionicons/thumbsdown.js b/dist/ionicons/thumbsdown.js
new file mode 100644
index 000000000..c1afbfb95
--- /dev/null
+++ b/dist/ionicons/thumbsdown.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thumbsdown = void 0;
+var thumbsdown = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M87.8,252.7C74,257.2,64,270.2,64,285.5c0,19,15.4,34.5,34.5,34.5h102.6c-2,25-10,53.6-1.1,87.3\r\n\t\tc7.5,28.4,39.4,49.7,52.4,36.8c5-4.9,3.5-15.2,3.5-33.8c0-42.8,17.8-86.1,39.8-108.7c9.4-9.7,25.2-13,40.2-13.6v16h112V64H336v32\r\n\t\tc-20.6,0.5-52.6-5.2-75.8-6.6c-52-3.1-102,2.4-126.3,8.1c-24.3,5.7-35,13-35,30.6c0,6.4,1.9,12.3,5.1,17.3\r\n\t\tc-11.8,4.7-20.1,16.2-20.1,29.7c0,7.2,2.4,13.8,6.4,19.2c-11.9,4.6-20.4,16.2-20.4,29.8C70,236.6,77.3,247.5,87.8,252.7z M400,96.3\r\n\t\tc8.8,0,16,7.1,16,16c0,8.8-7.2,16-16,16s-16-7.1-16-16C384,103.5,391.2,96.3,400,96.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M87.8,252.7C74,257.2,64,270.2,64,285.5c0,19,15.4,34.5,34.5,34.5h102.6c-2,25-10,53.6-1.1,87.3\r\n\t\tc7.5,28.4,39.4,49.7,52.4,36.8c5-4.9,3.5-15.2,3.5-33.8c0-42.8,17.8-86.1,39.8-108.7c9.4-9.7,25.2-13,40.2-13.6v16h112V64H336v32\r\n\t\tc-20.6,0.5-52.6-5.2-75.8-6.6c-52-3.1-102,2.4-126.3,8.1c-24.3,5.7-35,13-35,30.6c0,6.4,1.9,12.3,5.1,17.3\r\n\t\tc-11.8,4.7-20.1,16.2-20.1,29.7c0,7.2,2.4,13.8,6.4,19.2c-11.9,4.6-20.4,16.2-20.4,29.8C70,236.6,77.3,247.5,87.8,252.7z M400,96.3\r\n\t\tc8.8,0,16,7.1,16,16c0,8.8-7.2,16-16,16s-16-7.1-16-16C384,103.5,391.2,96.3,400,96.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.thumbsdown = thumbsdown;
\ No newline at end of file
diff --git a/dist/ionicons/thumbsup.js b/dist/ionicons/thumbsup.js
new file mode 100644
index 000000000..4f1b6e619
--- /dev/null
+++ b/dist/ionicons/thumbsup.js
@@ -0,0 +1,27 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.thumbsup = void 0;
+var thumbsup = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M424.2,259.3c13.8-4.5,23.8-17.5,23.8-32.8c0-19-15.4-34.5-34.5-34.5H310.9c2-25,10-53.6,1.1-87.3\r\n\t\tc-7.5-28.4-39.4-49.7-52.4-36.8c-5,4.9-3.5,15.2-3.5,33.8c0,42.8-17.8,86.1-39.8,108.7c-9.4,9.7-25.2,13-40.2,13.6v-16H64v240h112\r\n\t\tv-32c20.6-0.5,52.6,5.2,75.8,6.6c52,3.1,102-2.4,126.3-8.1c24.3-5.7,35-13,35-30.6c0-6.4-1.9-12.3-5.1-17.3\r\n\t\tc11.8-4.7,20.1-16.2,20.1-29.7c0-7.2-2.4-13.8-6.4-19.2c11.9-4.6,20.4-16.2,20.4-29.8C442,275.4,434.7,264.5,424.2,259.3z\r\n\t\t M112,415.7c-8.8,0-16-7.1-16-16c0-8.8,7.2-16,16-16s16,7.1,16,16C128,408.5,120.8,415.7,112,415.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M424.2,259.3c13.8-4.5,23.8-17.5,23.8-32.8c0-19-15.4-34.5-34.5-34.5H310.9c2-25,10-53.6,1.1-87.3\r\n\t\tc-7.5-28.4-39.4-49.7-52.4-36.8c-5,4.9-3.5,15.2-3.5,33.8c0,42.8-17.8,86.1-39.8,108.7c-9.4,9.7-25.2,13-40.2,13.6v-16H64v240h112\r\n\t\tv-32c20.6-0.5,52.6,5.2,75.8,6.6c52,3.1,102-2.4,126.3-8.1c24.3-5.7,35-13,35-30.6c0-6.4-1.9-12.3-5.1-17.3\r\n\t\tc11.8-4.7,20.1-16.2,20.1-29.7c0-7.2-2.4-13.8-6.4-19.2c11.9-4.6,20.4-16.2,20.4-29.8C442,275.4,434.7,264.5,424.2,259.3z\r\n\t\t M112,415.7c-8.8,0-16-7.1-16-16c0-8.8,7.2-16,16-16s16,7.1,16,16C128,408.5,120.8,415.7,112,415.7z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.thumbsup = thumbsup;
\ No newline at end of file
diff --git a/dist/ionicons/toggle.js b/dist/ionicons/toggle.js
new file mode 100644
index 000000000..3f61c8f10
--- /dev/null
+++ b/dist/ionicons/toggle.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toggle = void 0;
+var toggle = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,160c52.934,0,96,43.065,96,96s-43.066,96-96,96H160c-52.935,0-96-43.065-96-96s43.065-96,96-96H352 M352,128H160\r\n\t\tc-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128L352,128z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,160c52.934,0,96,43.065,96,96s-43.066,96-96,96H160c-52.935,0-96-43.065-96-96s43.065-96,96-96H352 M352,128H160\r\n\t\tc-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128L352,128z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M160,208c26.467,0,48,21.533,48,48c0,26.467-21.533,48-48,48s-48-21.533-48-48C112,229.533,133.533,208,160,208 M160,176\r\n\t\tc-44.183,0-80,35.817-80,80s35.817,80,80,80s80-35.817,80-80S204.183,176,160,176L160,176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M160,208c26.467,0,48,21.533,48,48c0,26.467-21.533,48-48,48s-48-21.533-48-48C112,229.533,133.533,208,160,208 M160,176\r\n\t\tc-44.183,0-80,35.817-80,80s35.817,80,80,80s80-35.817,80-80S204.183,176,160,176L160,176z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.toggle = toggle;
\ No newline at end of file
diff --git a/dist/ionicons/toggleFilled.js b/dist/ionicons/toggleFilled.js
new file mode 100644
index 000000000..06cbd7fb8
--- /dev/null
+++ b/dist/ionicons/toggleFilled.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.toggleFilled = void 0;
+var toggleFilled = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,208c-26.467,0-48,21.533-48,48c0,26.467,21.533,48,48,48s48-21.533,48-48C400,229.533,378.467,208,352,208z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,208c-26.467,0-48,21.533-48,48c0,26.467,21.533,48,48,48s48-21.533,48-48C400,229.533,378.467,208,352,208z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M352,128H160c-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128z\r\n\t\t M352,336c-44.183,0-80-35.817-80-80s35.817-80,80-80s80,35.817,80,80S396.183,336,352,336z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M352,128H160c-70.692,0-128,57.308-128,128s57.308,128,128,128h192c70.692,0,128-57.308,128-128S422.692,128,352,128z\r\n\t\t M352,336c-44.183,0-80-35.817-80-80s35.817-80,80-80s80,35.817,80,80S396.183,336,352,336z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.toggleFilled = toggleFilled;
\ No newline at end of file
diff --git a/dist/ionicons/transgender.js b/dist/ionicons/transgender.js
new file mode 100644
index 000000000..35643ec6d
--- /dev/null
+++ b/dist/ionicons/transgender.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.transgender = void 0;
+var transgender = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M368,0v40h69.873l-93.046,91.97c-8.529-8.249-15.132-12.586-15.132-12.586C308.841,104.694,283.422,96,256,96\r\n\tc-34.525,0-65.86,13.669-88.903,35.894l-17.333-17.131l35.833-35.833L153.07,46.403l-36.022,36.021L74.127,40H144V0H0v144h40V67.806\r\n\tl46.085,45.582L50.402,149.07l32.526,32.526l35.862-35.861l22.185,21.942c-8.395,17.065-13.118,36.267-13.118,56.578\r\n\tC127.857,286.884,173,338.989,232,350.25V402h-72v46h72v64h48v-64h72v-46h-72v-51.75c58-11.261,104.222-63.397,104.222-126.025\r\n\tc0-20.202-4.794-39.738-13.094-56.649L472,67.806V144h40V0H368z M255.929,304.402c-44.156,0-80.079-35.968-80.079-80.178\r\n\tc0-44.211,35.923-80.18,80.079-80.18c44.155,0,80.078,35.969,80.078,80.18C336.007,268.435,300.084,304.402,255.929,304.402z"
+ },
+ "children": []
+ }]
+};
+exports.transgender = transgender;
\ No newline at end of file
diff --git a/dist/ionicons/trashA.js b/dist/ionicons/trashA.js
new file mode 100644
index 000000000..cf6d448ba
--- /dev/null
+++ b/dist/ionicons/trashA.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trashA = void 0;
+var trashA = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M341,128V99c0-19.1-14.5-35-34.5-35H205.4C185.5,64,171,79.9,171,99v29H80v32h9.2c0,0,5.4,0.6,8.2,3.4c2.8,2.8,3.9,9,3.9,9\r\n\tl19,241.7c1.5,29.4,1.5,33.9,36,33.9h199.4c34.5,0,34.5-4.4,36-33.8l19-241.6c0,0,1.1-6.3,3.9-9.1c2.8-2.8,8.2-3.4,8.2-3.4h9.2v-32\r\n\th-91V128z M192,99c0-9.6,7.8-15,17.7-15h91.7c9.9,0,18.6,5.5,18.6,15v29H192V99z M183.5,384l-10.3-192h20.3L204,384H183.5z\r\n\t M267.1,384h-22V192h22V384z M328.7,384h-20.4l10.5-192h20.3L328.7,384z"
+ },
+ "children": []
+ }]
+};
+exports.trashA = trashA;
\ No newline at end of file
diff --git a/dist/ionicons/trashB.js b/dist/ionicons/trashB.js
new file mode 100644
index 000000000..a3f1df136
--- /dev/null
+++ b/dist/ionicons/trashB.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trashB = void 0;
+var trashB = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M413.7,133.4c-2.4-9-4-14-4-14c-2.6-9.3-9.2-9.3-19-10.9l-53.1-6.7c-6.6-1.1-6.6-1.1-9.2-6.8c-8.7-19.6-11.4-31-20.9-31\r\n\t\th-103c-9.5,0-12.1,11.4-20.8,31.1c-2.6,5.6-2.6,5.6-9.2,6.8l-53.2,6.7c-9.7,1.6-16.7,2.5-19.3,11.8c0,0-1.2,4.1-3.7,13\r\n\t\tc-3.2,11.9-4.5,10.6,6.5,10.6h302.4C418.2,144.1,417,145.3,413.7,133.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M413.7,133.4c-2.4-9-4-14-4-14c-2.6-9.3-9.2-9.3-19-10.9l-53.1-6.7c-6.6-1.1-6.6-1.1-9.2-6.8c-8.7-19.6-11.4-31-20.9-31\r\n\t\th-103c-9.5,0-12.1,11.4-20.8,31.1c-2.6,5.6-2.6,5.6-9.2,6.8l-53.2,6.7c-9.7,1.6-16.7,2.5-19.3,11.8c0,0-1.2,4.1-3.7,13\r\n\t\tc-3.2,11.9-4.5,10.6,6.5,10.6h302.4C418.2,144.1,417,145.3,413.7,133.4z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M379.4,176H132.6c-16.6,0-17.4,2.2-16.4,14.7l18.7,242.6c1.6,12.3,2.8,14.8,17.5,14.8h207.2c14.7,0,15.9-2.5,17.5-14.8\r\n\t\tl18.7-242.6C396.8,178.1,396,176,379.4,176z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M379.4,176H132.6c-16.6,0-17.4,2.2-16.4,14.7l18.7,242.6c1.6,12.3,2.8,14.8,17.5,14.8h207.2c14.7,0,15.9-2.5,17.5-14.8\r\n\t\tl18.7-242.6C396.8,178.1,396,176,379.4,176z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.trashB = trashB;
\ No newline at end of file
diff --git a/dist/ionicons/trophy.js b/dist/ionicons/trophy.js
new file mode 100644
index 000000000..9ab0a275f
--- /dev/null
+++ b/dist/ionicons/trophy.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.trophy = void 0;
+var trophy = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M479.863,103.342c-0.051-2.833-0.096-5.279-0.096-7.342h-80.835c1.56-34.617,0.512-64,0.512-64s-95.591,0-142.568,0\r\n\tc-0.337,0-0.669,0.022-1,0.056c-0.33-0.034-0.662-0.056-1-0.056c-46.977,0-142.931,0-142.931,0s-1.048,29.383,0.512,64H32.232H32\r\n\tv20.548c0,0.114,0,0.228,0,0.342V128h0.161c0.811,26.096,4.98,60.999,22.333,96.729c14.718,30.307,35.912,55.664,62.996,75.367\r\n\tc22.422,16.312,48.041,28.064,76.205,35.084C209.96,352.539,226,362.109,240,365.957v35.625C238,412.165,225.86,448,141.234,448H128\r\n\tv32h256v-32h-13.178C271.538,448,272,398.666,272,398.666v-32.714c14-3.843,29.73-13.374,45.91-30.644\r\n\tc28.369-7.004,54.072-18.801,76.633-35.213c27.082-19.703,48.262-45.06,62.98-75.367\r\n\tC481.203,175.967,480.326,128.723,479.863,103.342z M83.262,210.745C68.802,180.966,65.018,150.996,64.187,128h50.487\r\n\tc0.868,8.914,1.966,17.701,3.356,25.98c8.513,50.709,20.213,95.493,42.354,135.009C126.546,271.848,99.97,245.149,83.262,210.745z\r\n\t M428.737,210.745c-16.807,34.61-43.603,61.421-77.729,78.55c22.215-39.591,33.816-84.475,42.352-135.314\r\n\tc1.39-8.28,2.488-17.067,3.356-25.98h51.096C446.981,150.996,443.198,180.966,428.737,210.745z"
+ },
+ "children": []
+ }]
+};
+exports.trophy = trophy;
\ No newline at end of file
diff --git a/dist/ionicons/tshirt.js b/dist/ionicons/tshirt.js
new file mode 100644
index 000000000..90412b07c
--- /dev/null
+++ b/dist/ionicons/tshirt.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tshirt = void 0;
+var tshirt = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M480,96L320,48c-13.988,27.227-30.771,40.223-63.769,40.223C223.723,87.676,205.722,75,192,48L32,96l32,88l64-8l-16,288h288\r\n\tl-16-288l64,8L480,96z"
+ },
+ "children": []
+ }]
+};
+exports.tshirt = tshirt;
\ No newline at end of file
diff --git a/dist/ionicons/tshirtOutline.js b/dist/ionicons/tshirtOutline.js
new file mode 100644
index 000000000..173d81aea
--- /dev/null
+++ b/dist/ionicons/tshirtOutline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.tshirtOutline = void 0;
+var tshirtOutline = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M178.249,85.534c18.761,22.976,43.909,34.009,77.445,34.572l0.269-0.106h0.269c22.638,0,41.169-4.861,56.653-15.091\r\n\tc7.801-5.154,14.721-11.47,21.029-19.382l104.461,31.367L426.59,149.41l-38.743-4.685l-37.912-4.589l2.114,38.133L366.176,433\r\n\tH145.824l14.127-254.729l2.106-37.981l-37.782,4.428l-38.854,4.553l-11.767-32.358L178.249,85.534 M320,48\r\n\tc-13.988,27.227-30.771,40.223-63.769,40.223C223.723,87.676,205.722,75,192,48L32,96l32,88l64-7.5L112,465h288l-16-288.5l64,7.75\r\n\tL480,96L320,48L320,48z"
+ },
+ "children": []
+ }]
+};
+exports.tshirtOutline = tshirtOutline;
\ No newline at end of file
diff --git a/dist/ionicons/umbrella.js b/dist/ionicons/umbrella.js
new file mode 100644
index 000000000..aa47623b8
--- /dev/null
+++ b/dist/ionicons/umbrella.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.umbrella = void 0;
+var umbrella = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M376.2,288c0,0.1,0,0.2,0,0.4C376.2,288.2,376.2,288.1,376.2,288L376.2,288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M376.2,288c0,0.1,0,0.2,0,0.4C376.2,288.2,376.2,288.1,376.2,288L376.2,288z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M136.2,288c0,0.1,0,0.2,0,0.4C136.2,288.2,136.2,288.1,136.2,288L136.2,288z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M136.2,288c0,0.1,0,0.2,0,0.4C136.2,288.2,136.2,288.1,136.2,288L136.2,288z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M272,48.8c0-0.3,0-0.5,0-0.8c0-8.8-7.2-16-16-16c-8.8,0-16,7.2-16,16c0,0.2,0,0.5,0,0.7c-116.3,8-208,103.1-208,221.4\r\n\t\tc0,3.6,0.2,14.2,0.4,17.8c2.7-26.3,24.7-51.7,51.7-51.7c28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7\r\n\t\tc26.5,0,50.9,21.1,51.7,45.5V416c0,17.9-14.1,32-32,32c-17.1,0-31-14.4-31-32c0-8.8-7.2-16-16-16s-16,7.2-16,16\r\n\t\tc0,35.3,28.3,64,63,64c17.3,0,33.5-6.7,45.5-18.8c11.9-12,18.5-28.1,18.5-45.2l0-135.3c3.3-32.7,23.4-44.4,52.1-44.4\r\n\t\tc28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7c26.1,0,47.6,26.7,51.4,51.7c0.1-2.8,0.2-9.1,0.2-11.8\r\n\t\tC480,157.8,388.2,57.3,272,48.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M272,48.8c0-0.3,0-0.5,0-0.8c0-8.8-7.2-16-16-16c-8.8,0-16,7.2-16,16c0,0.2,0,0.5,0,0.7c-116.3,8-208,103.1-208,221.4\r\n\t\tc0,3.6,0.2,14.2,0.4,17.8c2.7-26.3,24.7-51.7,51.7-51.7c28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7\r\n\t\tc26.5,0,50.9,21.1,51.7,45.5V416c0,17.9-14.1,32-32,32c-17.1,0-31-14.4-31-32c0-8.8-7.2-16-16-16s-16,7.2-16,16\r\n\t\tc0,35.3,28.3,64,63,64c17.3,0,33.5-6.7,45.5-18.8c11.9-12,18.5-28.1,18.5-45.2l0-135.3c3.3-32.7,23.4-44.4,52.1-44.4\r\n\t\tc28.7,0,51.9,23.1,52.1,51.7h0c0.2-28.6,23.4-51.7,52.1-51.7c26.1,0,47.6,26.7,51.4,51.7c0.1-2.8,0.2-9.1,0.2-11.8\r\n\t\tC480,157.8,388.2,57.3,272,48.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.umbrella = umbrella;
\ No newline at end of file
diff --git a/dist/ionicons/university.js b/dist/ionicons/university.js
new file mode 100644
index 000000000..b48cff765
--- /dev/null
+++ b/dist/ionicons/university.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.university = void 0;
+var university = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,64 32,176.295 64,197.367 64,400 96,416 96,217.849 255.852,320 387.996,234.549 480,174.727 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "256,64 32,176.295 64,197.367 64,400 96,416 96,217.849 255.852,320 387.996,234.549 480,174.727 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M390.13,256L256,343.768L120.531,256L112,337.529C128,349.984,224,416,256.002,448C288,416,384,350.031,400,337.561\r\n\t\tL390.13,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M390.13,256L256,343.768L120.531,256L112,337.529C128,349.984,224,416,256.002,448C288,416,384,350.031,400,337.561\r\n\t\tL390.13,256z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.university = university;
\ No newline at end of file
diff --git a/dist/ionicons/unlocked.js b/dist/ionicons/unlocked.js
new file mode 100644
index 000000000..7ba653450
--- /dev/null
+++ b/dist/ionicons/unlocked.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.unlocked = void 0;
+var unlocked = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M86.4,480h339.2c12.3,0,22.4-9.9,22.4-22.1V246c0-12.2-10-22-22.4-22H161v-30.9c0-27.3,9.9-61.1,28.1-80.3l0,0l0-0.3\r\n\tC206.7,93.9,231,83,255.9,83h0.1h0.1c24.9,0,49.2,10.9,66.8,29.5l0,0.2l0,0.1c11.3,11.9,19.4,29.3,24,47.3h53.4\r\n\tc-5.9-31.3-19.7-61.8-39.2-82.4C334.9,49.9,297.4,32,256.1,32c-0.1,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c-41.3,0-79,17.9-105.3,45.6\r\n\tc-26.4,27.8-42.6,73.9-42.6,115.4V224H89h-2.6C74,224,64,233.9,64,246v211.9C64,470.1,74,480,86.4,480z"
+ },
+ "children": []
+ }]
+};
+exports.unlocked = unlocked;
\ No newline at end of file
diff --git a/dist/ionicons/upload.js b/dist/ionicons/upload.js
new file mode 100644
index 000000000..3b21aaca8
--- /dev/null
+++ b/dist/ionicons/upload.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.upload = void 0;
+var upload = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M398.1,233.2c0-1.2,0.2-2.4,0.2-3.6c0-65-51.8-117.6-115.7-117.6c-46.1,0-85.7,27.4-104.3,67c-8.1-4.1-17.2-6.5-26.8-6.5\r\n\tc-29.5,0-54.1,21.9-58.8,50.5C57.3,235.2,32,269.1,32,309c0,50.2,40.1,91,89.5,91H224v-80l-48.2,0l80.2-83.7l80.2,83.6l-48.2,0v80\r\n\th110.3c45.2,0,81.7-37.5,81.7-83.4C480,270.6,443.3,233.3,398.1,233.2z"
+ },
+ "children": []
+ }]
+};
+exports.upload = upload;
\ No newline at end of file
diff --git a/dist/ionicons/usb.js b/dist/ionicons/usb.js
new file mode 100644
index 000000000..752ec72f7
--- /dev/null
+++ b/dist/ionicons/usb.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.usb = void 0;
+var usb = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,220C144,220,144.1,220.1,144,220L144,220z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M144,220C144,220,144.1,220.1,144,220L144,220z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M384,128.3c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.1c0,12.1,6.7,22.7,16.6,28.2c1.3,1.5,2.2,4.5,2.2,6\r\n\t\tc0,0.1,0,0.2,0,0.4c-0.8,17.6-3.8,31.9-7.1,41.7c-4.3,12.6-38.2,39.6-51.5,42.2c-5.8,1.2-7.9-0.6-7.9-10.2c0,0,0-138.9,0-140.4\r\n\t\ts0.2-3.5,1.9-5c0,0,0,0,0,0c8.6-5.8,14.3-15.6,14.3-26.8c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.2\r\n\t\tc0,11.3,5.8,21.3,14.6,27c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.1,0.4,0.2c0.2,0.1,0.4,0.2,0.6,0.4c2.3,1.5,3.3,3,3.3,4.2\r\n\t\tc0,1.3,0,189.3,0,196.3s-1.1,12.3-8.4,11.8s-41.7-23.5-51.4-44.1c-4.5-9.5-6.8-18.8-6.8-28h0c0,0,0-0.4,0-0.5\r\n\t\tc0-3.1,0-11.3,3.2-13.6c7.8-5.9,12.8-15.2,12.8-25.7c0-17.8-14.4-32.2-32.1-32.2S128,174.4,128,192.2c0,11.9,6.5,22.3,16,27.8\r\n\t\tc2.4,1.5,3,2.9,3.8,10.6s3,24.6,9.1,39.9c7.3,18.6,20.9,32.6,39.7,45.2c13.6,9.3,25.3,16.6,32.1,26.4s10.2,13.5,10.2,27\r\n\t\tc0,0,0-0.9,0,0c0,12.8-4,14-9.3,17.8c-14.1,8.7-23.5,24.2-23.5,42c0,0.1,0,0.3,0,0.4c0,0.2,0,0.5,0,0.7c0,27.5,22.3,49.8,49.8,49.8\r\n\t\tc27.5,0,49.8-22.3,49.8-49.8c0-13.3-5.2-25.4-13.7-34.3c-2.9-3.2-6-6-9.6-8.3c-7.5-5.2-10.3-11.5-10.3-18.1v-24.1\r\n\t\tc0-25.1,4.1-41.1,11.1-53.3c7.3-12.7,18.3-22.6,35.4-34.2c18.8-12.6,32.2-26.6,39.6-45.2c5.7-14.4,7.6-31,8.6-50.9\r\n\t\tc0.1-1.8,1.4-5.8,3.3-6.8h0C378.4,149,384,139.3,384,128.3z M160.1,208.3c-8.9,0-16.1-7.3-16.1-16.2s7.2-16.2,16.1-16.2\r\n\t\ts16.1,7.3,16.1,16.2S169,208.3,160.1,208.3z M256,80.3c-8.9,0-16.1-7.3-16.1-16.2S247.1,48,256,48s16.1,7.3,16.1,16.2\r\n\t\tS264.9,80.3,256,80.3z M351.9,144.3c-8.9,0-16.1-7.3-16.1-16.2S343,112,351.9,112s16.1,7.3,16.1,16.2S360.8,144.3,351.9,144.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M384,128.3c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.1c0,12.1,6.7,22.7,16.6,28.2c1.3,1.5,2.2,4.5,2.2,6\r\n\t\tc0,0.1,0,0.2,0,0.4c-0.8,17.6-3.8,31.9-7.1,41.7c-4.3,12.6-38.2,39.6-51.5,42.2c-5.8,1.2-7.9-0.6-7.9-10.2c0,0,0-138.9,0-140.4\r\n\t\ts0.2-3.5,1.9-5c0,0,0,0,0,0c8.6-5.8,14.3-15.6,14.3-26.8c0-17.8-14.4-32.2-32.1-32.2c-17.7,0-32.1,14.4-32.1,32.2\r\n\t\tc0,11.3,5.8,21.3,14.6,27c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.2,0.1,0.4,0.2c0.2,0.1,0.4,0.2,0.6,0.4c2.3,1.5,3.3,3,3.3,4.2\r\n\t\tc0,1.3,0,189.3,0,196.3s-1.1,12.3-8.4,11.8s-41.7-23.5-51.4-44.1c-4.5-9.5-6.8-18.8-6.8-28h0c0,0,0-0.4,0-0.5\r\n\t\tc0-3.1,0-11.3,3.2-13.6c7.8-5.9,12.8-15.2,12.8-25.7c0-17.8-14.4-32.2-32.1-32.2S128,174.4,128,192.2c0,11.9,6.5,22.3,16,27.8\r\n\t\tc2.4,1.5,3,2.9,3.8,10.6s3,24.6,9.1,39.9c7.3,18.6,20.9,32.6,39.7,45.2c13.6,9.3,25.3,16.6,32.1,26.4s10.2,13.5,10.2,27\r\n\t\tc0,0,0-0.9,0,0c0,12.8-4,14-9.3,17.8c-14.1,8.7-23.5,24.2-23.5,42c0,0.1,0,0.3,0,0.4c0,0.2,0,0.5,0,0.7c0,27.5,22.3,49.8,49.8,49.8\r\n\t\tc27.5,0,49.8-22.3,49.8-49.8c0-13.3-5.2-25.4-13.7-34.3c-2.9-3.2-6-6-9.6-8.3c-7.5-5.2-10.3-11.5-10.3-18.1v-24.1\r\n\t\tc0-25.1,4.1-41.1,11.1-53.3c7.3-12.7,18.3-22.6,35.4-34.2c18.8-12.6,32.2-26.6,39.6-45.2c5.7-14.4,7.6-31,8.6-50.9\r\n\t\tc0.1-1.8,1.4-5.8,3.3-6.8h0C378.4,149,384,139.3,384,128.3z M160.1,208.3c-8.9,0-16.1-7.3-16.1-16.2s7.2-16.2,16.1-16.2\r\n\t\ts16.1,7.3,16.1,16.2S169,208.3,160.1,208.3z M256,80.3c-8.9,0-16.1-7.3-16.1-16.2S247.1,48,256,48s16.1,7.3,16.1,16.2\r\n\t\tS264.9,80.3,256,80.3z M351.9,144.3c-8.9,0-16.1-7.3-16.1-16.2S343,112,351.9,112s16.1,7.3,16.1,16.2S360.8,144.3,351.9,144.3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.usb = usb;
\ No newline at end of file
diff --git a/dist/ionicons/videocamera.js b/dist/ionicons/videocamera.js
new file mode 100644
index 000000000..4bff1f367
--- /dev/null
+++ b/dist/ionicons/videocamera.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.videocamera = void 0;
+var videocamera = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M367,185.3c0-5.1-4-9.3-9.2-9.3H306v-32.2c0-35.2-29.3-63.8-64.9-63.8H63v48h176.1c4.5,0,9.9,5.6,9.9,10.1V176H41.4\r\n\tc-5.2,0-9.4,4.2-9.4,9.3v170.4v55.7v11.3c0,5.1,4.2,9.3,9.4,9.3h316.4c5.2,0,9.2-4.2,9.2-9.3v-64.5l113,34.7v-88.2v-88.2l-113,34.7\r\n\tV185.3z M258.2,341h-10.9H152h-11.9c-19.8,0-35.9-16-35.9-35.8s16.1-35.8,35.9-35.8c19.8,0,35.9,16.2,35.9,36\r\n\tc0,10-4.2,18.6-10.8,25.6h67.9c-6.6-7-10.8-15.6-10.8-25.6c0-19.8,16.1-35.9,35.9-35.9c19.8,0,35.9,15.9,35.9,35.7\r\n\tS278,341,258.2,341z"
+ },
+ "children": []
+ }]
+};
+exports.videocamera = videocamera;
\ No newline at end of file
diff --git a/dist/ionicons/volumeHigh.js b/dist/ionicons/volumeHigh.js
new file mode 100644
index 000000000..a457802a1
--- /dev/null
+++ b/dist/ionicons/volumeHigh.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeHigh = void 0;
+var volumeHigh = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "231,407.8 231,104.3 136.1,192 32,192 32,320 136.1,320 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "231,407.8 231,104.3 136.1,192 32,192 32,320 136.1,320 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M287.1,355.7c20.5-27.9,32.8-62.3,32.8-99.7c0-37.4-12.3-71.8-32.8-99.7l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.4\r\n\t\tc0,31.6-10.4,60.8-27.8,84.3L287.1,355.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M287.1,355.7c20.5-27.9,32.8-62.3,32.8-99.7c0-37.4-12.3-71.8-32.8-99.7l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.4\r\n\t\tc0,31.6-10.4,60.8-27.8,84.3L287.1,355.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M353.7,401.7c30-40.7,48-91.1,48-145.7s-18-104.9-48-145.7l-20.4,15.3c26.9,36.4,43,81.5,43,130.4\r\n\t\tc0,48.9-16.1,93.9-43,130.3L353.7,401.7z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M353.7,401.7c30-40.7,48-91.1,48-145.7s-18-104.9-48-145.7l-20.4,15.3c26.9,36.4,43,81.5,43,130.4\r\n\t\tc0,48.9-16.1,93.9-43,130.3L353.7,401.7z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M396.7,79.4c36.4,49.3,57.9,110.5,57.9,176.6c0,66.1-21.5,127.2-57.9,176.6l20.5,15.4c39.4-53.6,62.8-120,62.8-192\r\n\t\tc0-72-23.4-138.4-62.8-192L396.7,79.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M396.7,79.4c36.4,49.3,57.9,110.5,57.9,176.6c0,66.1-21.5,127.2-57.9,176.6l20.5,15.4c39.4-53.6,62.8-120,62.8-192\r\n\t\tc0-72-23.4-138.4-62.8-192L396.7,79.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.volumeHigh = volumeHigh;
\ No newline at end of file
diff --git a/dist/ionicons/volumeLow.js b/dist/ionicons/volumeLow.js
new file mode 100644
index 000000000..89e7e5086
--- /dev/null
+++ b/dist/ionicons/volumeLow.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeLow = void 0;
+var volumeLow = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "311,407.7 311,104.4 216.2,192 112,192 112,320 216.2,320 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "311,407.7 311,104.4 216.2,192 112,192 112,320 216.2,320 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M367.2,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L367.2,355.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M367.2,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L367.2,355.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.volumeLow = volumeLow;
\ No newline at end of file
diff --git a/dist/ionicons/volumeMedium.js b/dist/ionicons/volumeMedium.js
new file mode 100644
index 000000000..564a4d332
--- /dev/null
+++ b/dist/ionicons/volumeMedium.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeMedium = void 0;
+var volumeMedium = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "270,407.7 270,104.4 175.3,192 71,192 71,320 175.3,320 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "270,407.7 270,104.4 175.3,192 71,192 71,320 175.3,320 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M326.3,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L326.3,355.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M326.3,355.6c20.5-27.8,32.8-62.3,32.8-99.6c0-37.4-12.3-71.8-32.8-99.6l-20.4,15.3c17.4,23.6,27.8,52.7,27.8,84.3\r\n\t\tc0,31.6-10.4,60.7-27.8,84.3L326.3,355.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M392.8,401.6c30-40.7,48-91,48-145.6s-18-104.9-48-145.6l-20.4,15.3c26.9,36.4,43,81.4,43,130.3c0,48.9-16.1,93.8-43,130.3\r\n\t\tL392.8,401.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M392.8,401.6c30-40.7,48-91,48-145.6s-18-104.9-48-145.6l-20.4,15.3c26.9,36.4,43,81.4,43,130.3c0,48.9-16.1,93.8-43,130.3\r\n\t\tL392.8,401.6z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.volumeMedium = volumeMedium;
\ No newline at end of file
diff --git a/dist/ionicons/volumeMute.js b/dist/ionicons/volumeMute.js
new file mode 100644
index 000000000..be925049e
--- /dev/null
+++ b/dist/ionicons/volumeMute.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.volumeMute = void 0;
+var volumeMute = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "255.9,217 191,217 191,295 255.9,295 303,346.3 303,165.7 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "255.9,217 191,217 191,295 255.9,295 303,346.3 303,165.7 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M364.5,60.1c-0.4-0.2-0.7-0.4-1.1-0.6C331.5,42,294.9,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.9\r\n\t\tc0.4,0.2,0.7,0.5,1.1,0.7C180.5,470,217.1,480,256,480c123.7,0,224-100.3,224-224C480,171.7,433.4,98.3,364.5,60.1z M393.9,355.4\r\n\t\tL336,297.1v76.7l19.6,19.9c-28,20.3-62.3,32.7-99.5,32.7c-21.6,0-42.3-4.2-61.3-11.5c-6.5-2.5-12.9-5.3-19-8.6\r\n\t\tc-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l35.3,35.4h76.7l-73.6-73.8c28-20.2,62.1-32.6,99.4-32.6\r\n\t\tc21.6,0,42.2,4.2,61.3,11.5c6.1,2.4,12.2,5,17.9,8c54.2,28.5,91.3,85.3,91.3,150.8C426.5,293.3,414.2,327.4,393.9,355.4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M364.5,60.1c-0.4-0.2-0.7-0.4-1.1-0.6C331.5,42,294.9,32,256,32C132.3,32,32,132.3,32,256c0,84.3,46.6,157.6,115.4,195.9\r\n\t\tc0.4,0.2,0.7,0.5,1.1,0.7C180.5,470,217.1,480,256,480c123.7,0,224-100.3,224-224C480,171.7,433.4,98.3,364.5,60.1z M393.9,355.4\r\n\t\tL336,297.1v76.7l19.6,19.9c-28,20.3-62.3,32.7-99.5,32.7c-21.6,0-42.3-4.2-61.3-11.5c-6.5-2.5-12.9-5.3-19-8.6\r\n\t\tc-53.6-28.7-90.1-85.2-90.1-150.3c0-37.2,12.4-71.4,32.7-99.4l35.3,35.4h76.7l-73.6-73.8c28-20.2,62.1-32.6,99.4-32.6\r\n\t\tc21.6,0,42.2,4.2,61.3,11.5c6.1,2.4,12.2,5,17.9,8c54.2,28.5,91.3,85.3,91.3,150.8C426.5,293.3,414.2,327.4,393.9,355.4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.volumeMute = volumeMute;
\ No newline at end of file
diff --git a/dist/ionicons/wand.js b/dist/ionicons/wand.js
new file mode 100644
index 000000000..f91ce7411
--- /dev/null
+++ b/dist/ionicons/wand.js
@@ -0,0 +1,151 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wand = void 0;
+var wand = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "238.059",
+ "y": "206.059",
+ "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 249.3726 -122.0387)",
+ "width": "67.882",
+ "height": "67.882"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "238.059",
+ "y": "206.059",
+ "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 249.3726 -122.0387)",
+ "width": "67.882",
+ "height": "67.882"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "110.058",
+ "y": "243.549",
+ "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 302.3989 5.9646)",
+ "width": "67.884",
+ "height": "248.901"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "110.058",
+ "y": "243.549",
+ "transform": "matrix(0.7071 0.7071 -0.7071 0.7071 302.3989 5.9646)",
+ "width": "67.884",
+ "height": "248.901"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "256",
+ "y": "32",
+ "width": "32",
+ "height": "64"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "256",
+ "y": "32",
+ "width": "32",
+ "height": "64"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "380.451",
+ "y": "83.55",
+ "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 595.0701 477.5923)",
+ "width": "32",
+ "height": "63.999"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "380.451",
+ "y": "83.55",
+ "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 595.0701 477.5923)",
+ "width": "32",
+ "height": "63.999"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "131.549",
+ "y": "83.549",
+ "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -38.4898 138.1746)",
+ "width": "32",
+ "height": "64"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "131.549",
+ "y": "83.549",
+ "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -38.4898 138.1746)",
+ "width": "32",
+ "height": "64"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "380.451",
+ "y": "332.451",
+ "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -141.5881 387.0668)",
+ "width": "32",
+ "height": "64"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "380.451",
+ "y": "332.451",
+ "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -141.5881 387.0668)",
+ "width": "32",
+ "height": "64"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "416",
+ "y": "224",
+ "width": "64",
+ "height": "32"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "416",
+ "y": "224",
+ "width": "64",
+ "height": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.wand = wand;
\ No newline at end of file
diff --git a/dist/ionicons/waterdrop.js b/dist/ionicons/waterdrop.js
new file mode 100644
index 000000000..641e56fb3
--- /dev/null
+++ b/dist/ionicons/waterdrop.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.waterdrop = void 0;
+var waterdrop = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M271,38.6c-0.3-0.4-0.7-0.7-0.9-1c0,0-0.1-0.1-0.1-0.1c-3.6-3.4-8.5-5.5-13.9-5.5c-5.5,0-10.4,2.1-13.9,5.5\r\n\tc0,0-0.1,0.1-0.1,0.1c-0.3,0.3-0.6,0.6-0.9,1c-6.1,6.3-13.8,14.4-22.4,24.1c-17.4,19.7-38.6,46-58.5,76.8\r\n\tc-33.4,51.8-62.9,116.1-64.1,183.1c0,1.3-0.1,2.7-0.1,4c0,19.7,3.9,38.5,10.9,55.8c4.1,10,9.2,19.4,15.2,28.2\r\n\tC150.7,452.4,200,480,256,480c88.4,0,160-68.7,160-153.4C416,198.7,310.8,79.2,271,38.6z M256,424c-15.8,0-30.7-3.7-43.9-10.1\r\n\tc65.9-14.4,118.4-64.7,135.8-129.5c5.2,12.1,8.2,25.5,8.2,39.6C356,379.2,311.2,424,256,424z"
+ },
+ "children": []
+ }]
+};
+exports.waterdrop = waterdrop;
\ No newline at end of file
diff --git a/dist/ionicons/wifi.js b/dist/ionicons/wifi.js
new file mode 100644
index 000000000..4756e1960
--- /dev/null
+++ b/dist/ionicons/wifi.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wifi = void 0;
+var wifi = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.1,96L256.1,96c-79.9,0-155.7,29.9-213.9,84.1L32,189.6l9.9,9.8l32.3,32l9.3,9.2l9.6-8.8\r\n\t\tc44.5-40.9,102.3-63.5,162.8-63.5c60.5,0,118.4,22.6,162.8,63.5l9.6,8.8l9.3-9.2l32.3-32l9.9-9.8l-10.2-9.5\r\n\t\tC411.6,125.9,335.7,96,256.1,96z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.1,96L256.1,96c-79.9,0-155.7,29.9-213.9,84.1L32,189.6l9.9,9.8l32.3,32l9.3,9.2l9.6-8.8\r\n\t\tc44.5-40.9,102.3-63.5,162.8-63.5c60.5,0,118.4,22.6,162.8,63.5l9.6,8.8l9.3-9.2l32.3-32l9.9-9.8l-10.2-9.5\r\n\t\tC411.6,125.9,335.7,96,256.1,96z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M397.4,256.4c-38.8-35.1-88.9-54.4-141.1-54.4h-0.1h-0.3h-8.5l-0.1,0.2c-49.2,2-96,21.1-132.6,54.2l-10.5,9.5l10.1,10\r\n\t\tl32.7,32.4l9.1,9l9.6-8.4c25.3-22.2,57.4-34.5,90.3-34.5c33.1,0,65.2,12.3,90.5,34.5l9.6,8.4l9.1-9l32.7-32.4l10.1-10L397.4,256.4z\r\n\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M397.4,256.4c-38.8-35.1-88.9-54.4-141.1-54.4h-0.1h-0.3h-8.5l-0.1,0.2c-49.2,2-96,21.1-132.6,54.2l-10.5,9.5l10.1,10\r\n\t\tl32.7,32.4l9.1,9l9.6-8.4c25.3-22.2,57.4-34.5,90.3-34.5c33.1,0,65.2,12.3,90.5,34.5l9.6,8.4l9.1-9l32.7-32.4l10.1-10L397.4,256.4z\r\n\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M256.2,416l9.6-9.5l52.8-52.2l10.6-10.5l-11.6-9.5c-15.4-11.4-32.4-20-61.5-20c-29,0-44.9,9.4-61.5,20l-11.5,9.5l10.6,10.5\r\n\t\tl52.8,52.2L256.2,416z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M256.2,416l9.6-9.5l52.8-52.2l10.6-10.5l-11.6-9.5c-15.4-11.4-32.4-20-61.5-20c-29,0-44.9,9.4-61.5,20l-11.5,9.5l10.6,10.5\r\n\t\tl52.8,52.2L256.2,416z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.wifi = wifi;
\ No newline at end of file
diff --git a/dist/ionicons/wineglass.js b/dist/ionicons/wineglass.js
new file mode 100644
index 000000000..dc8cd121e
--- /dev/null
+++ b/dist/ionicons/wineglass.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wineglass = void 0;
+var wineglass = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M294.9,295.4c11-4.1,18-6.9,26.2-11.7c12-6.9,22.8-15.8,31.9-26.1c20.4-22.9,31-51.1,31-86.1c0-49.9-3.7-101.1-8.1-114.7\r\n\t\tC371.5,43,362.4,32,345.2,32H166.7c-17.1,0-26.2,11.1-30.6,24.6c-4.4,13.5-8.1,64.9-8.1,114.8c0,35.1,10.6,63.2,30.9,86.1\r\n\t\tc9.1,10.3,19.9,19.1,31.8,26c8.2,4.8,15.1,7.8,26,11.7s22.3,7.5,22.3,31.8v94.2c0,10.7-2.9,19-11.1,24.8c-2.8,2.1-6.3,4.3-14.3,6.5\r\n\t\tc-31.5,8.6-46.9,15.6-49.2,17.2c-2,1.4-4.5,3.6-4.5,7.1c0,0,13.8,3.1,96.2,3.1c82.4,0,96-3.1,96-3.1c0-3.5-2.5-5.7-4.6-7.1\r\n\t\tc-2.3-1.6-17.8-8.6-49.4-17.2c-8-2.2-12.2-4.4-15.1-6.5C275,440.3,271,432,271,421.3v-94.2C271,303.1,283.9,299.4,294.9,295.4z\r\n\t\t M255.9,270.3c-25.4,0-48.5-10-65.5-26.3c-2.7-2.4-5.2-5-7.6-7.7c-15.6-17.5-22.4-36.7-23.1-64.8C159,143.3,159.6,99,167,64h177\r\n\t\tc6.3,24,9.1,76.8,7.7,107.2c-1.4,30.5-7.2,47.3-22.8,64.9c-2,2.2-3.9,4.3-6.1,6.4C305.7,259.7,282,270.3,255.9,270.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M294.9,295.4c11-4.1,18-6.9,26.2-11.7c12-6.9,22.8-15.8,31.9-26.1c20.4-22.9,31-51.1,31-86.1c0-49.9-3.7-101.1-8.1-114.7\r\n\t\tC371.5,43,362.4,32,345.2,32H166.7c-17.1,0-26.2,11.1-30.6,24.6c-4.4,13.5-8.1,64.9-8.1,114.8c0,35.1,10.6,63.2,30.9,86.1\r\n\t\tc9.1,10.3,19.9,19.1,31.8,26c8.2,4.8,15.1,7.8,26,11.7s22.3,7.5,22.3,31.8v94.2c0,10.7-2.9,19-11.1,24.8c-2.8,2.1-6.3,4.3-14.3,6.5\r\n\t\tc-31.5,8.6-46.9,15.6-49.2,17.2c-2,1.4-4.5,3.6-4.5,7.1c0,0,13.8,3.1,96.2,3.1c82.4,0,96-3.1,96-3.1c0-3.5-2.5-5.7-4.6-7.1\r\n\t\tc-2.3-1.6-17.8-8.6-49.4-17.2c-8-2.2-12.2-4.4-15.1-6.5C275,440.3,271,432,271,421.3v-94.2C271,303.1,283.9,299.4,294.9,295.4z\r\n\t\t M255.9,270.3c-25.4,0-48.5-10-65.5-26.3c-2.7-2.4-5.2-5-7.6-7.7c-15.6-17.5-22.4-36.7-23.1-64.8C159,143.3,159.6,99,167,64h177\r\n\t\tc6.3,24,9.1,76.8,7.7,107.2c-1.4,30.5-7.2,47.3-22.8,64.9c-2,2.2-3.9,4.3-6.1,6.4C305.7,259.7,282,270.3,255.9,270.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M336.2,170.6c0-7.5-0.1-31.9-1.3-52.6c-0.5-8.4-1.2-16-2.1-22h-153c-0.9,3-1.8,11.6-2.5,22c-1.3,18.9-2.1,43.9-1.5,52.9\r\n\t\tc0.9,13.8,1.5,20.6,4.5,29.4c3.1,9.1,8,17.3,14.6,24.7c2,2.3,4.1,4.4,6.4,6.4c14.2,13.6,33.5,22,54.7,22c21.8,0,41.5-8.8,55.9-23.1\r\n\t\tc1.8-1.7,3.5-3.5,5.2-5.3c6.6-7.4,11.4-15.5,14.5-24.6C334.7,191.4,336.2,181.1,336.2,170.6z M320,179c0,5-3.9,8.1-8.3,8.1\r\n\t\tc-1.6,0-3-0.5-4.3-1.3c-2.2-1.4-3.5-3.9-3.5-6.7v-26c0-4.4,3.6-8,8-8s8,3.6,8,8V179z M318.9,131.8c-1.2,1.8-3,3-5.1,3.5\r\n\t\tc-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1c1.8,1.2,3,3,3.5,5.1\r\n\t\tC320.5,127.8,320.1,130,318.9,131.8z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M336.2,170.6c0-7.5-0.1-31.9-1.3-52.6c-0.5-8.4-1.2-16-2.1-22h-153c-0.9,3-1.8,11.6-2.5,22c-1.3,18.9-2.1,43.9-1.5,52.9\r\n\t\tc0.9,13.8,1.5,20.6,4.5,29.4c3.1,9.1,8,17.3,14.6,24.7c2,2.3,4.1,4.4,6.4,6.4c14.2,13.6,33.5,22,54.7,22c21.8,0,41.5-8.8,55.9-23.1\r\n\t\tc1.8-1.7,3.5-3.5,5.2-5.3c6.6-7.4,11.4-15.5,14.5-24.6C334.7,191.4,336.2,181.1,336.2,170.6z M320,179c0,5-3.9,8.1-8.3,8.1\r\n\t\tc-1.6,0-3-0.5-4.3-1.3c-2.2-1.4-3.5-3.9-3.5-6.7v-26c0-4.4,3.6-8,8-8s8,3.6,8,8V179z M318.9,131.8c-1.2,1.8-3,3-5.1,3.5\r\n\t\tc-2.1,0.4-4.3,0-6-1.1c-1.8-1.2-3-3-3.5-5.1c-0.4-2.1,0-4.3,1.1-6c1.2-1.8,3-3,5.1-3.5c2.1-0.4,4.3,0,6,1.1c1.8,1.2,3,3,3.5,5.1\r\n\t\tC320.5,127.8,320.1,130,318.9,131.8z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.wineglass = wineglass;
\ No newline at end of file
diff --git a/dist/ionicons/woman.js b/dist/ionicons/woman.js
new file mode 100644
index 000000000..cd18cd3c2
--- /dev/null
+++ b/dist/ionicons/woman.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.woman = void 0;
+var woman = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M190.4,148.6L161,252.9c-6.3,22.8,20.7,31.7,27.3,10.3l26.3-96.2h7.4l-45.2,169H219v127c0,23,32,23,32,0V336h10v127\r\n\t\tc0,23,31,23,31,0V336h43.4l-46.2-169h8.4l26.3,96.2c6.5,21.9,33.3,12.5,27.3-10.2l-29.4-104.4c-4-11.8-18.2-32.6-42-33.6h-47.3\r\n\t\tC207.9,116,193.8,136.6,190.4,148.6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M190.4,148.6L161,252.9c-6.3,22.8,20.7,31.7,27.3,10.3l26.3-96.2h7.4l-45.2,169H219v127c0,23,32,23,32,0V336h10v127\r\n\t\tc0,23,31,23,31,0V336h43.4l-46.2-169h8.4l26.3,96.2c6.5,21.9,33.3,12.5,27.3-10.2l-29.4-104.4c-4-11.8-18.2-32.6-42-33.6h-47.3\r\n\t\tC207.9,116,193.8,136.6,190.4,148.6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M292.6,69.2c0-20.6-16.4-37.3-36.6-37.3c-20.2,0-36.6,16.7-36.6,37.3c0,20.6,16.4,37.3,36.6,37.3\r\n\t\tC276.2,106.5,292.6,89.8,292.6,69.2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M292.6,69.2c0-20.6-16.4-37.3-36.6-37.3c-20.2,0-36.6,16.7-36.6,37.3c0,20.6,16.4,37.3,36.6,37.3\r\n\t\tC276.2,106.5,292.6,89.8,292.6,69.2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.woman = woman;
\ No newline at end of file
diff --git a/dist/ionicons/wrench.js b/dist/ionicons/wrench.js
new file mode 100644
index 000000000..88f6ed566
--- /dev/null
+++ b/dist/ionicons/wrench.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.wrench = void 0;
+var wrench = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M461.9,114.9l-56.5,56.7l-55.1-10l-9.9-55.1l56.5-56.7c-12.7-12.7-30.8-18.5-44.2-17.8c-13.5,0.7-42.3,8.3-64.6,32\r\n\tc-21.6,22.8-44.3,65.3-24.2,112.5c2.4,5.7,5.1,13.2-2.9,21.2c-8.1,8-215,202.8-215,202.8c-19.4,16.7-18,47.6-0.1,65.6\r\n\tc18.2,17.9,48.9,19,65.6-0.3c0,0,193.2-205.8,202.7-215.1c8.5-8.3,16.1-5.5,21.2-2.9c35.6,18.4,86.3,2.4,112.6-23.9\r\n\tc26.3-26.3,31.1-51.7,31.9-64.7C480.7,146.3,476.2,129.2,461.9,114.9z M91.3,443.2c-6.3,6.2-16.5,6.2-22.7,0\r\n\tc-6.2-6.3-6.2-16.5,0-22.7c6.3-6.2,16.5-6.2,22.7,0C97.5,426.8,97.5,437,91.3,443.2z"
+ },
+ "children": []
+ }]
+};
+exports.wrench = wrench;
\ No newline at end of file
diff --git a/dist/ionicons/xbox.js b/dist/ionicons/xbox.js
new file mode 100644
index 000000000..e4d8c2966
--- /dev/null
+++ b/dist/ionicons/xbox.js
@@ -0,0 +1,77 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.xbox = void 0;
+var xbox = {
+ "viewBox": "0 0 512 512",
+ "children": [{
+ "name": "style",
+ "attribs": {
+ "type": "text/css"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M126.8,248.3c39.7-58.6,77.9-92.8,77.9-92.8s-42.1-48.9-92.8-67.4l-3.3-0.8C61.7,128.4,32,188.7,32,256\r\n\t\tc0,50.7,16.9,97.5,45.2,135C77.2,386.6,77.8,320.7,126.8,248.3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M126.8,248.3c39.7-58.6,77.9-92.8,77.9-92.8s-42.1-48.9-92.8-67.4l-3.3-0.8C61.7,128.4,32,188.7,32,256\r\n\t\tc0,50.7,16.9,97.5,45.2,135C77.2,386.6,77.8,320.7,126.8,248.3z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M480,256c0-67.3-29.7-127.6-76.6-168.7l-3.2,0.9c-50.7,18.5-92.9,67.4-92.9,67.4s38.2,34.2,77.9,92.8\r\n\t\tc49,72.4,49.6,138.3,49.5,142.7C463.2,353.5,480,306.7,480,256z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M480,256c0-67.3-29.7-127.6-76.6-168.7l-3.2,0.9c-50.7,18.5-92.9,67.4-92.9,67.4s38.2,34.2,77.9,92.8\r\n\t\tc49,72.4,49.6,138.3,49.5,142.7C463.2,353.5,480,306.7,480,256z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M201.2,80.9c29.3,13.1,54.6,34.6,54.6,34.6s25.5-21.4,54.8-34.6c36.8-16.5,64.9-11.3,72.3-9.5\r\n\t\tC346.8,46.6,303.1,32,256,32c-47.1,0-90.8,14.6-126.9,39.4C136.3,69.6,164.3,64.3,201.2,80.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M201.2,80.9c29.3,13.1,54.6,34.6,54.6,34.6s25.5-21.4,54.8-34.6c36.8-16.5,64.9-11.3,72.3-9.5\r\n\t\tC346.8,46.6,303.1,32,256,32c-47.1,0-90.8,14.6-126.9,39.4C136.3,69.6,164.3,64.3,201.2,80.9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M358.7,292.9C312.4,236,255.8,199,255.8,199s-56.3,37-102.7,93.9c-39.8,48.9-54.6,84.8-62.6,107.8l-1.3,4.8\r\n\t\tc41,45.7,100.5,74.5,166.8,74.5c66.3,0,125.8-28.8,166.8-74.5l-1.4-4.8C413.4,377.7,398.5,341.8,358.7,292.9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "class": "st0",
+ "d": "M358.7,292.9C312.4,236,255.8,199,255.8,199s-56.3,37-102.7,93.9c-39.8,48.9-54.6,84.8-62.6,107.8l-1.3,4.8\r\n\t\tc41,45.7,100.5,74.5,166.8,74.5c66.3,0,125.8-28.8,166.8-74.5l-1.4-4.8C413.4,377.7,398.5,341.8,358.7,292.9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.xbox = xbox;
\ No newline at end of file
diff --git a/dist/linea/arrows_anticlockwise.js b/dist/linea/arrows_anticlockwise.js
new file mode 100644
index 000000000..09aa42dab
--- /dev/null
+++ b/dist/linea/arrows_anticlockwise.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_anticlockwise = void 0;
+var arrows_anticlockwise = {
+ 'viewBox': '0 0 64 64',
+ 'children': [{
+ 'name': 'path',
+ 'attribs': {
+ 'fill': 'none',
+ 'stroke': '#000000',
+ 'stroke-width': '2',
+ 'stroke-miterlimit': '10',
+ 'd': 'M32,1c17.121,0,31,13.879,31,31S49.121,63,32,63'
+ },
+ 'children': []
+ }, {
+ 'name': 'path',
+ 'attribs': {
+ 'fill': 'none',
+ 'stroke': '#000000',
+ 'stroke-width': '2',
+ 'stroke-miterlimit': '10',
+ 'd': 'M32,1C14.879,1,1,14.879,1,32\r\n\tc0,6.713,2.134,12.926,5.759,18l5.62,5.621'
+ },
+ 'children': []
+ }, {
+ 'name': 'polyline',
+ 'attribs': {
+ 'fill': 'none',
+ 'stroke': '#000000',
+ 'stroke-width': '2',
+ 'stroke-linejoin': 'bevel',
+ 'stroke-miterlimit': '10',
+ 'points': '13,45 13,56 2,56 \r\n\t'
+ },
+ 'children': []
+ }]
+};
+exports.arrows_anticlockwise = arrows_anticlockwise;
\ No newline at end of file
diff --git a/dist/linea/arrows_anticlockwise_dashed.js b/dist/linea/arrows_anticlockwise_dashed.js
new file mode 100644
index 000000000..b94fda211
--- /dev/null
+++ b/dist/linea/arrows_anticlockwise_dashed.js
@@ -0,0 +1,106 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_anticlockwise_dashed = void 0;
+var arrows_anticlockwise_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,1c0.672,0,1.339,0.021,2,0.063"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,1c0.672,0,1.339,0.021,2,0.063"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.0593,2.0296",
+ "d": "M36.021,1.258\r\n\t\t\tC51.242,3.229,63,16.241,63,32c0,16.104-12.279,29.34-27.986,30.855"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.0593,2.0296",
+ "d": "M36.021,1.258\r\n\t\t\tC51.242,3.229,63,16.241,63,32c0,16.104-12.279,29.34-27.986,30.855"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34,62.937C33.339,62.979,32.672,63,32,63"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34,62.937C33.339,62.979,32.672,63,32,63"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,1C14.879,1,1,14.879,1,32\r\n\tc0,6.713,2.134,12.926,5.759,18l5.62,5.621"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,45 13,56 2,56 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_anticlockwise_dashed = arrows_anticlockwise_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_button_down.js b/dist/linea/arrows_button_down.js
new file mode 100644
index 000000000..fa360399a
--- /dev/null
+++ b/dist/linea/arrows_button_down.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_button_down = void 0;
+var arrows_button_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48,17c0-8.837-7.163-16-16-16S16,8.163,16,17v30\r\n\tc0,8.837,7.163,16,16,16s16-7.163,16-16V17z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "47",
+ "r": "12"
+ },
+ "children": []
+ }]
+};
+exports.arrows_button_down = arrows_button_down;
\ No newline at end of file
diff --git a/dist/linea/arrows_button_off.js b/dist/linea/arrows_button_off.js
new file mode 100644
index 000000000..632912b09
--- /dev/null
+++ b/dist/linea/arrows_button_off.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_button_off = void 0;
+var arrows_button_off = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M47,48c8.837,0,16-7.163,16-16s-7.163-16-16-16H17\r\n\tC8.163,16,1,23.163,1,32s7.163,16,16,16H47z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "17",
+ "cy": "32",
+ "r": "12"
+ },
+ "children": []
+ }]
+};
+exports.arrows_button_off = arrows_button_off;
\ No newline at end of file
diff --git a/dist/linea/arrows_button_on.js b/dist/linea/arrows_button_on.js
new file mode 100644
index 000000000..c848307f5
--- /dev/null
+++ b/dist/linea/arrows_button_on.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_button_on = void 0;
+var arrows_button_on = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M47,48c8.837,0,16-7.163,16-16s-7.163-16-16-16H17\r\n\tC8.163,16,1,23.163,1,32s7.163,16,16,16H47z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "47",
+ "cy": "32",
+ "r": "12"
+ },
+ "children": []
+ }]
+};
+exports.arrows_button_on = arrows_button_on;
\ No newline at end of file
diff --git a/dist/linea/arrows_button_up.js b/dist/linea/arrows_button_up.js
new file mode 100644
index 000000000..20fbba702
--- /dev/null
+++ b/dist/linea/arrows_button_up.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_button_up = void 0;
+var arrows_button_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48,17c0-8.837-7.163-16-16-16S16,8.163,16,17v30\r\n\tc0,8.837,7.163,16,16,16s16-7.163,16-16V17z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "17",
+ "r": "12"
+ },
+ "children": []
+ }]
+};
+exports.arrows_button_up = arrows_button_up;
\ No newline at end of file
diff --git a/dist/linea/arrows_check.js b/dist/linea/arrows_check.js
new file mode 100644
index 000000000..be82f9c85
--- /dev/null
+++ b/dist/linea/arrows_check.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_check = void 0;
+var arrows_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,33 25,45 \r\n\t\t49,21 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,33 25,45 \r\n\t\t49,21 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_check = arrows_check;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_check.js b/dist/linea/arrows_circle_check.js
new file mode 100644
index 000000000..8175e80f4
--- /dev/null
+++ b/dist/linea/arrows_circle_check.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_check = void 0;
+var arrows_circle_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,33 25,45 \r\n\t\t49,21 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,33 25,45 \r\n\t\t49,21 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_check = arrows_circle_check;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_down.js b/dist/linea/arrows_circle_down.js
new file mode 100644
index 000000000..14bf7ae91
--- /dev/null
+++ b/dist/linea/arrows_circle_down.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_down = void 0;
+var arrows_circle_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,24 32,41 \r\n\t\t49,24 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,24 32,41 \r\n\t\t49,24 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_down = arrows_circle_down;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_downleft.js b/dist/linea/arrows_circle_downleft.js
new file mode 100644
index 000000000..162510c5c
--- /dev/null
+++ b/dist/linea/arrows_circle_downleft.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_downleft = void 0;
+var arrows_circle_downleft = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "47,41 23,41 \r\n\t\t23,17 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "47,41 23,41 \r\n\t\t23,17 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_downleft = arrows_circle_downleft;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_downright.js b/dist/linea/arrows_circle_downright.js
new file mode 100644
index 000000000..db9fb180f
--- /dev/null
+++ b/dist/linea/arrows_circle_downright.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_downright = void 0;
+var arrows_circle_downright = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,17 41,41 \r\n\t\t17,41 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,17 41,41 \r\n\t\t17,41 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_downright = arrows_circle_downright;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_left.js b/dist/linea/arrows_circle_left.js
new file mode 100644
index 000000000..b065cb7a1
--- /dev/null
+++ b/dist/linea/arrows_circle_left.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_left = void 0;
+var arrows_circle_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "27,15 44,32 \r\n\t\t27,49 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "27,15 44,32 \r\n\t\t27,49 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_left = arrows_circle_left;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_minus.js b/dist/linea/arrows_circle_minus.js
new file mode 100644
index 000000000..3881e1a81
--- /dev/null
+++ b/dist/linea/arrows_circle_minus.js
@@ -0,0 +1,69 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_minus = void 0;
+var arrows_circle_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "31",
+ "x2": "50",
+ "y2": "31"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "31",
+ "x2": "50",
+ "y2": "31"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_minus = arrows_circle_minus;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_plus.js b/dist/linea/arrows_circle_plus.js
new file mode 100644
index 000000000..741b634cd
--- /dev/null
+++ b/dist/linea/arrows_circle_plus.js
@@ -0,0 +1,95 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_plus = void 0;
+var arrows_circle_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "50",
+ "x2": "32",
+ "y2": "14"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "50",
+ "x2": "32",
+ "y2": "14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "32",
+ "x2": "50",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "32",
+ "x2": "50",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_plus = arrows_circle_plus;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_remove.js b/dist/linea/arrows_circle_remove.js
new file mode 100644
index 000000000..162c5fe3b
--- /dev/null
+++ b/dist/linea/arrows_circle_remove.js
@@ -0,0 +1,99 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_remove = void 0;
+var arrows_circle_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18.947",
+ "y1": "17.153",
+ "x2": "45.045",
+ "y2": "43.056"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18.947",
+ "y1": "17.153",
+ "x2": "45.045",
+ "y2": "43.056"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19.045",
+ "y1": "43.153",
+ "x2": "44.947",
+ "y2": "17.056"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19.045",
+ "y1": "43.153",
+ "x2": "44.947",
+ "y2": "17.056"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_remove = arrows_circle_remove;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_right.js b/dist/linea/arrows_circle_right.js
new file mode 100644
index 000000000..56a071a8f
--- /dev/null
+++ b/dist/linea/arrows_circle_right.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_right = void 0;
+var arrows_circle_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "37,15 20,32 \r\n\t\t37,49 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "37,15 20,32 \r\n\t\t37,49 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_right = arrows_circle_right;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_up.js b/dist/linea/arrows_circle_up.js
new file mode 100644
index 000000000..e0a1d0390
--- /dev/null
+++ b/dist/linea/arrows_circle_up.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_up = void 0;
+var arrows_circle_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,40 32,23 \r\n\t\t49,40 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,40 32,23 \r\n\t\t49,40 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_up = arrows_circle_up;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_upleft.js b/dist/linea/arrows_circle_upleft.js
new file mode 100644
index 000000000..32be30d3d
--- /dev/null
+++ b/dist/linea/arrows_circle_upleft.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_upleft = void 0;
+var arrows_circle_upleft = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,47 23,23 47,23 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,47 23,23 47,23 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_upleft = arrows_circle_upleft;
\ No newline at end of file
diff --git a/dist/linea/arrows_circle_upright.js b/dist/linea/arrows_circle_upright.js
new file mode 100644
index 000000000..3388f6a07
--- /dev/null
+++ b/dist/linea/arrows_circle_upright.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_circle_upright = void 0;
+var arrows_circle_upright = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "30.999"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "17,23 41,23 \r\n\t\t41,47 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "17,23 41,23 \r\n\t\t41,47 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_circle_upright = arrows_circle_upright;
\ No newline at end of file
diff --git a/dist/linea/arrows_clockwise.js b/dist/linea/arrows_clockwise.js
new file mode 100644
index 000000000..e604d2946
--- /dev/null
+++ b/dist/linea/arrows_clockwise.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_clockwise = void 0;
+var arrows_clockwise = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,1C14.879,1,1,14.879,1,32s13.879,31,31,31"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,1c17.121,0,31,13.879,31,31\r\n\tc0,6.713-2.134,12.926-5.759,18l-5.62,5.621"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "51,45 51,56 \r\n\t62,56 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_clockwise = arrows_clockwise;
\ No newline at end of file
diff --git a/dist/linea/arrows_clockwise_dashed.js b/dist/linea/arrows_clockwise_dashed.js
new file mode 100644
index 000000000..85fc45723
--- /dev/null
+++ b/dist/linea/arrows_clockwise_dashed.js
@@ -0,0 +1,106 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_clockwise_dashed = void 0;
+var arrows_clockwise_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,1c-0.672,0-1.339,0.021-2,0.063"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,1c-0.672,0-1.339,0.021-2,0.063"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.0593,2.0296",
+ "d": "M27.979,1.258\r\n\t\t\tC12.758,3.229,1,16.241,1,32c0,16.104,12.279,29.34,27.986,30.855"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.0593,2.0296",
+ "d": "M27.979,1.258\r\n\t\t\tC12.758,3.229,1,16.241,1,32c0,16.104,12.279,29.34,27.986,30.855"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M30,62.937C30.661,62.979,31.328,63,32,63"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M30,62.937C30.661,62.979,31.328,63,32,63"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,1c17.121,0,31,13.879,31,31\r\n\tc0,6.713-2.134,12.926-5.759,18l-5.62,5.621"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "51,45 51,56 \r\n\t62,56 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_clockwise_dashed = arrows_clockwise_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_compress.js b/dist/linea/arrows_compress.js
new file mode 100644
index 000000000..5185f3f81
--- /dev/null
+++ b/dist/linea/arrows_compress.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_compress = void 0;
+var arrows_compress = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "47,25 40,32 \r\n\t47,39 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "17,39 24,32 \r\n\t17,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "32",
+ "x2": "0",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "32",
+ "x2": "40",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,17 32,24 \r\n\t39,17 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,47 32,40 \r\n\t25,47 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "40",
+ "x2": "32",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "24"
+ },
+ "children": []
+ }]
+};
+exports.arrows_compress = arrows_compress;
\ No newline at end of file
diff --git a/dist/linea/arrows_deny.js b/dist/linea/arrows_deny.js
new file mode 100644
index 000000000..bf106cce0
--- /dev/null
+++ b/dist/linea/arrows_deny.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_deny = void 0;
+var arrows_deny = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.919,10.08c12.108,12.106,12.108,31.733,0,43.84\r\n\tc-12.105,12.107-31.732,12.107-43.838,0c-12.108-12.106-12.108-31.733,0-43.84C22.187-2.027,41.813-2.027,53.919,10.08z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10.08",
+ "y1": "10.08",
+ "x2": "53.92",
+ "y2": "53.92"
+ },
+ "children": []
+ }]
+};
+exports.arrows_deny = arrows_deny;
\ No newline at end of file
diff --git a/dist/linea/arrows_diagonal.js b/dist/linea/arrows_diagonal.js
new file mode 100644
index 000000000..797d7ee1e
--- /dev/null
+++ b/dist/linea/arrows_diagonal.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_diagonal = void 0;
+var arrows_diagonal = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "63,12 63,1 52,1 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "1,52 1,63 12,63 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "63",
+ "x2": "63",
+ "y2": "1"
+ },
+ "children": []
+ }]
+};
+exports.arrows_diagonal = arrows_diagonal;
\ No newline at end of file
diff --git a/dist/linea/arrows_diagonal2.js b/dist/linea/arrows_diagonal2.js
new file mode 100644
index 000000000..67d384ce8
--- /dev/null
+++ b/dist/linea/arrows_diagonal2.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_diagonal2 = void 0;
+var arrows_diagonal2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "52,63 63,63 \r\n\t63,52 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "12,1 1,1 1,12 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "1",
+ "x2": "63",
+ "y2": "63"
+ },
+ "children": []
+ }]
+};
+exports.arrows_diagonal2 = arrows_diagonal2;
\ No newline at end of file
diff --git a/dist/linea/arrows_down.js b/dist/linea/arrows_down.js
new file mode 100644
index 000000000..053da006d
--- /dev/null
+++ b/dist/linea/arrows_down.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_down = void 0;
+var arrows_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,24 32,41 \r\n\t\t49,24 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,24 32,41 \r\n\t\t49,24 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_down = arrows_down;
\ No newline at end of file
diff --git a/dist/linea/arrows_downleft.js b/dist/linea/arrows_downleft.js
new file mode 100644
index 000000000..0486565b6
--- /dev/null
+++ b/dist/linea/arrows_downleft.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_downleft = void 0;
+var arrows_downleft = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "47,41 23,41 \r\n\t\t23,17 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "47,41 23,41 \r\n\t\t23,17 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_downleft = arrows_downleft;
\ No newline at end of file
diff --git a/dist/linea/arrows_downright.js b/dist/linea/arrows_downright.js
new file mode 100644
index 000000000..26f660293
--- /dev/null
+++ b/dist/linea/arrows_downright.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_downright = void 0;
+var arrows_downright = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,17 41,41 \r\n\t\t17,41 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,17 41,41 \r\n\t\t17,41 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_downright = arrows_downright;
\ No newline at end of file
diff --git a/dist/linea/arrows_drag_down.js b/dist/linea/arrows_drag_down.js
new file mode 100644
index 000000000..53a80e532
--- /dev/null
+++ b/dist/linea/arrows_drag_down.js
@@ -0,0 +1,64 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_drag_down = void 0;
+var arrows_drag_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "31",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "31",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "16",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,54 32,63 \r\n\t41,54 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_drag_down = arrows_drag_down;
\ No newline at end of file
diff --git a/dist/linea/arrows_drag_down_dashed.js b/dist/linea/arrows_drag_down_dashed.js
new file mode 100644
index 000000000..85c41515c
--- /dev/null
+++ b/dist/linea/arrows_drag_down_dashed.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_drag_down_dashed = void 0;
+var arrows_drag_down_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "31",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "31",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "16",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,54 32,63 \r\n\t41,54 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_drag_down_dashed = arrows_drag_down_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_drag_horiz.js b/dist/linea/arrows_drag_horiz.js
new file mode 100644
index 000000000..e5ab00652
--- /dev/null
+++ b/dist/linea/arrows_drag_horiz.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_drag_horiz = void 0;
+var arrows_drag_horiz = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "0",
+ "x2": "24",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "0",
+ "x2": "40",
+ "y2": "64"
+ },
+ "children": []
+ }]
+};
+exports.arrows_drag_horiz = arrows_drag_horiz;
\ No newline at end of file
diff --git a/dist/linea/arrows_drag_left.js b/dist/linea/arrows_drag_left.js
new file mode 100644
index 000000000..012ad3442
--- /dev/null
+++ b/dist/linea/arrows_drag_left.js
@@ -0,0 +1,64 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_drag_left = void 0;
+var arrows_drag_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "32",
+ "x2": "1",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "32",
+ "x2": "1",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "48",
+ "cy": "32",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10,23 1,32 10,41 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_drag_left = arrows_drag_left;
\ No newline at end of file
diff --git a/dist/linea/arrows_drag_left_dashed.js b/dist/linea/arrows_drag_left_dashed.js
new file mode 100644
index 000000000..1506765b0
--- /dev/null
+++ b/dist/linea/arrows_drag_left_dashed.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_drag_left_dashed = void 0;
+var arrows_drag_left_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "33",
+ "y1": "32",
+ "x2": "1",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "33",
+ "y1": "32",
+ "x2": "1",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "48",
+ "cy": "32",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10,23 1,32 10,41 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_drag_left_dashed = arrows_drag_left_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_drag_right.js b/dist/linea/arrows_drag_right.js
new file mode 100644
index 000000000..f2fa3b810
--- /dev/null
+++ b/dist/linea/arrows_drag_right.js
@@ -0,0 +1,64 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_drag_right = void 0;
+var arrows_drag_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "16",
+ "cy": "32",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "54,41 63,32 \r\n\t54,23 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_drag_right = arrows_drag_right;
\ No newline at end of file
diff --git a/dist/linea/arrows_drag_right_dashed.js b/dist/linea/arrows_drag_right_dashed.js
new file mode 100644
index 000000000..c9ebdddac
--- /dev/null
+++ b/dist/linea/arrows_drag_right_dashed.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_drag_right_dashed = void 0;
+var arrows_drag_right_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "31",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "31",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "16",
+ "cy": "32",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "54,41 63,32 \r\n\t54,23 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_drag_right_dashed = arrows_drag_right_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_drag_up.js b/dist/linea/arrows_drag_up.js
new file mode 100644
index 000000000..903f63d01
--- /dev/null
+++ b/dist/linea/arrows_drag_up.js
@@ -0,0 +1,64 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_drag_up = void 0;
+var arrows_drag_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "33",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "33",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "48",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,10 32,1 23,10 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_drag_up = arrows_drag_up;
\ No newline at end of file
diff --git a/dist/linea/arrows_drag_up_dashed.js b/dist/linea/arrows_drag_up_dashed.js
new file mode 100644
index 000000000..c365fcbd6
--- /dev/null
+++ b/dist/linea/arrows_drag_up_dashed.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_drag_up_dashed = void 0;
+var arrows_drag_up_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "33",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "33",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "48",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,10 32,1 23,10 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_drag_up_dashed = arrows_drag_up_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_drag_vert.js b/dist/linea/arrows_drag_vert.js
new file mode 100644
index 000000000..6eb4a7941
--- /dev/null
+++ b/dist/linea/arrows_drag_vert.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_drag_vert = void 0;
+var arrows_drag_vert = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "40",
+ "x2": "64",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "32",
+ "x2": "64",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "24",
+ "x2": "64",
+ "y2": "24"
+ },
+ "children": []
+ }]
+};
+exports.arrows_drag_vert = arrows_drag_vert;
\ No newline at end of file
diff --git a/dist/linea/arrows_exclamation.js b/dist/linea/arrows_exclamation.js
new file mode 100644
index 000000000..c83813694
--- /dev/null
+++ b/dist/linea/arrows_exclamation.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_exclamation = void 0;
+var arrows_exclamation = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "17",
+ "x2": "32",
+ "y2": "39"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "43",
+ "x2": "32",
+ "y2": "47"
+ },
+ "children": []
+ }]
+};
+exports.arrows_exclamation = arrows_exclamation;
\ No newline at end of file
diff --git a/dist/linea/arrows_expand.js b/dist/linea/arrows_expand.js
new file mode 100644
index 000000000..b641b0782
--- /dev/null
+++ b/dist/linea/arrows_expand.js
@@ -0,0 +1,207 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_expand = void 0;
+var arrows_expand = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "1,12 1,1 12,1 \t\r\n\t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "1,12 1,1 12,1 \t\r\n\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "12,63 1,63 1,52 \r\n\t\t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "12,63 1,63 1,52 \r\n\t\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "63,52 63,63 \r\n\t\t52,63 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "63,52 63,63 \r\n\t\t52,63 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "52,1 63,1 63,12 \r\n\t\t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "52,1 63,1 63,12 \r\n\t\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "2",
+ "y1": "2",
+ "x2": "22",
+ "y2": "22"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "2",
+ "y1": "2",
+ "x2": "22",
+ "y2": "22"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "42",
+ "x2": "62",
+ "y2": "62"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "42",
+ "x2": "62",
+ "y2": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "2",
+ "y1": "62",
+ "x2": "22",
+ "y2": "42"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "2",
+ "y1": "62",
+ "x2": "22",
+ "y2": "42"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "22",
+ "x2": "62",
+ "y2": "2"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "22",
+ "x2": "62",
+ "y2": "2"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_expand = arrows_expand;
\ No newline at end of file
diff --git a/dist/linea/arrows_expand_diagonal1.js b/dist/linea/arrows_expand_diagonal1.js
new file mode 100644
index 000000000..640aa5622
--- /dev/null
+++ b/dist/linea/arrows_expand_diagonal1.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_expand_diagonal1 = void 0;
+var arrows_expand_diagonal1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "13",
+ "y1": "1",
+ "x2": "63",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "13",
+ "x2": "51.166",
+ "y2": "63.166"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "63,12 63,1 52,1 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "1,52 1,63 12,63 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "63",
+ "x2": "26",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "26",
+ "x2": "63",
+ "y2": "1"
+ },
+ "children": []
+ }]
+};
+exports.arrows_expand_diagonal1 = arrows_expand_diagonal1;
\ No newline at end of file
diff --git a/dist/linea/arrows_expand_horizontal1.js b/dist/linea/arrows_expand_horizontal1.js
new file mode 100644
index 000000000..4973258e9
--- /dev/null
+++ b/dist/linea/arrows_expand_horizontal1.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_expand_horizontal1 = void 0;
+var arrows_expand_horizontal1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "0",
+ "x2": "21",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "43",
+ "y1": "64",
+ "x2": "43",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "8,25 1,32 8,39 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "32",
+ "x2": "21",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "56,39 63,32 \r\n\t56,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "32",
+ "x2": "43",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.arrows_expand_horizontal1 = arrows_expand_horizontal1;
\ No newline at end of file
diff --git a/dist/linea/arrows_expand_vertical1.js b/dist/linea/arrows_expand_vertical1.js
new file mode 100644
index 000000000..d99605bfd
--- /dev/null
+++ b/dist/linea/arrows_expand_vertical1.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_expand_vertical1 = void 0;
+var arrows_expand_vertical1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "21",
+ "x2": "0",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "43",
+ "x2": "64",
+ "y2": "43"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,8 32,1 25,8 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "1",
+ "x2": "32",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,56 32,63 \r\n\t39,56 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "63",
+ "x2": "32",
+ "y2": "43"
+ },
+ "children": []
+ }]
+};
+exports.arrows_expand_vertical1 = arrows_expand_vertical1;
\ No newline at end of file
diff --git a/dist/linea/arrows_fit_horizontal.js b/dist/linea/arrows_fit_horizontal.js
new file mode 100644
index 000000000..a7e70e8b4
--- /dev/null
+++ b/dist/linea/arrows_fit_horizontal.js
@@ -0,0 +1,69 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_fit_horizontal = void 0;
+var arrows_fit_horizontal = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "16,25 9,32 16,39 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "48,39 55,32 \r\n\t48,25 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,32 43,32 9,32 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "0",
+ "x2": "63",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "0",
+ "x2": "1",
+ "y2": "64"
+ },
+ "children": []
+ }]
+};
+exports.arrows_fit_horizontal = arrows_fit_horizontal;
\ No newline at end of file
diff --git a/dist/linea/arrows_fit_vertical.js b/dist/linea/arrows_fit_vertical.js
new file mode 100644
index 000000000..201f4eb3a
--- /dev/null
+++ b/dist/linea/arrows_fit_vertical.js
@@ -0,0 +1,69 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_fit_vertical = void 0;
+var arrows_fit_vertical = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,16 32,9 25,16 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,48 32,55 \r\n\t39,48 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,55 32,43 32,9 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "1",
+ "x2": "64",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "63",
+ "x2": "64",
+ "y2": "63"
+ },
+ "children": []
+ }]
+};
+exports.arrows_fit_vertical = arrows_fit_vertical;
\ No newline at end of file
diff --git a/dist/linea/arrows_glide.js b/dist/linea/arrows_glide.js
new file mode 100644
index 000000000..3e1f54cc7
--- /dev/null
+++ b/dist/linea/arrows_glide.js
@@ -0,0 +1,128 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_glide = void 0;
+var arrows_glide = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "45.968,48.968 \r\n\t\t31.967,62.968 18,49 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "45.968,48.968 \r\n\t\t31.967,62.968 18,49 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "18,15 \r\n\t\t32.032,0.968 46.032,14.968 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "18,15 \r\n\t\t32.032,0.968 46.032,14.968 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "31.968",
+ "cy": "31.968",
+ "r": "5"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "49,18 63,32 \r\n\t\t49,46 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "49,18 63,32 \r\n\t\t49,46 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15.032,45.968 \r\n\t\t1,31.935 14.968,17.968 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15.032,45.968 \r\n\t\t1,31.935 14.968,17.968 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_glide = arrows_glide;
\ No newline at end of file
diff --git a/dist/linea/arrows_glide_horizontal.js b/dist/linea/arrows_glide_horizontal.js
new file mode 100644
index 000000000..c6480e75c
--- /dev/null
+++ b/dist/linea/arrows_glide_horizontal.js
@@ -0,0 +1,76 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_glide_horizontal = void 0;
+var arrows_glide_horizontal = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "46,15 63,32 \r\n\t\t46,49 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "46,15 63,32 \r\n\t\t46,49 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "18,48.935 \r\n\t\t1,31.935 18,14.935 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "18,48.935 \r\n\t\t1,31.935 18,14.935 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "5"
+ },
+ "children": []
+ }]
+};
+exports.arrows_glide_horizontal = arrows_glide_horizontal;
\ No newline at end of file
diff --git a/dist/linea/arrows_glide_vertical.js b/dist/linea/arrows_glide_vertical.js
new file mode 100644
index 000000000..cf10fa5f5
--- /dev/null
+++ b/dist/linea/arrows_glide_vertical.js
@@ -0,0 +1,76 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_glide_vertical = void 0;
+var arrows_glide_vertical = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "48.968,45.968 \r\n\t\t31.967,62.968 14.968,45.967 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "48.968,45.968 \r\n\t\t31.967,62.968 14.968,45.967 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15.032,17.967 \r\n\t\t32.032,0.968 49.032,17.968 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15.032,17.967 \r\n\t\t32.032,0.968 49.032,17.968 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "31.968",
+ "cy": "31.968",
+ "r": "5"
+ },
+ "children": []
+ }]
+};
+exports.arrows_glide_vertical = arrows_glide_vertical;
\ No newline at end of file
diff --git a/dist/linea/arrows_hamburger1.js b/dist/linea/arrows_hamburger1.js
new file mode 100644
index 000000000..a69c4d64e
--- /dev/null
+++ b/dist/linea/arrows_hamburger1.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_hamburger1 = void 0;
+var arrows_hamburger1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "21",
+ "x2": "6",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "21",
+ "x2": "64",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "33",
+ "x2": "6",
+ "y2": "33"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "33",
+ "x2": "64",
+ "y2": "33"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "45",
+ "x2": "6",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "45",
+ "x2": "64",
+ "y2": "45"
+ },
+ "children": []
+ }]
+};
+exports.arrows_hamburger1 = arrows_hamburger1;
\ No newline at end of file
diff --git a/dist/linea/arrows_horizontal.js b/dist/linea/arrows_horizontal.js
new file mode 100644
index 000000000..6a27b5c67
--- /dev/null
+++ b/dist/linea/arrows_horizontal.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_horizontal = void 0;
+var arrows_horizontal = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "8,25 1,32 8,39 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "56,39 63,32 \r\n\t56,25 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,32 43,32 1,32 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_horizontal = arrows_horizontal;
\ No newline at end of file
diff --git a/dist/linea/arrows_info.js b/dist/linea/arrows_info.js
new file mode 100644
index 000000000..3b0985202
--- /dev/null
+++ b/dist/linea/arrows_info.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_info = void 0;
+var arrows_info = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "47",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "21",
+ "x2": "32",
+ "y2": "17"
+ },
+ "children": []
+ }]
+};
+exports.arrows_info = arrows_info;
\ No newline at end of file
diff --git a/dist/linea/arrows_keyboard_alt.js b/dist/linea/arrows_keyboard_alt.js
new file mode 100644
index 000000000..dd52fc2af
--- /dev/null
+++ b/dist/linea/arrows_keyboard_alt.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_keyboard_alt = void 0;
+var arrows_keyboard_alt = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "6,24 18,24 30,42 \r\n\t58,42 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "58",
+ "y1": "24",
+ "x2": "30",
+ "y2": "24"
+ },
+ "children": []
+ }]
+};
+exports.arrows_keyboard_alt = arrows_keyboard_alt;
\ No newline at end of file
diff --git a/dist/linea/arrows_keyboard_delete.js b/dist/linea/arrows_keyboard_delete.js
new file mode 100644
index 000000000..eb7a1b2c2
--- /dev/null
+++ b/dist/linea/arrows_keyboard_delete.js
@@ -0,0 +1,61 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_keyboard_delete = void 0;
+var arrows_keyboard_delete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,44 19,44 9,32 19,20 55,20 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "39",
+ "x2": "41",
+ "y2": "25"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "25",
+ "x2": "41",
+ "y2": "39"
+ },
+ "children": []
+ }]
+};
+exports.arrows_keyboard_delete = arrows_keyboard_delete;
\ No newline at end of file
diff --git a/dist/linea/arrows_keyboard_left.js b/dist/linea/arrows_keyboard_left.js
new file mode 100644
index 000000000..fe807b6bd
--- /dev/null
+++ b/dist/linea/arrows_keyboard_left.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_keyboard_left = void 0;
+var arrows_keyboard_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "38,21 22,32 \r\n\t\t38,43 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "38,21 22,32 \r\n\t\t38,43 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_keyboard_left = arrows_keyboard_left;
\ No newline at end of file
diff --git a/dist/linea/arrows_keyboard_return.js b/dist/linea/arrows_keyboard_return.js
new file mode 100644
index 000000000..74a3c7e10
--- /dev/null
+++ b/dist/linea/arrows_keyboard_return.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_keyboard_return = void 0;
+var arrows_keyboard_return = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,37 55,37 55,18 44,18 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,37 55,37 55,18 44,18 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "18,46 9,37 18,28 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_keyboard_return = arrows_keyboard_return;
\ No newline at end of file
diff --git a/dist/linea/arrows_keyboard_right.js b/dist/linea/arrows_keyboard_right.js
new file mode 100644
index 000000000..f5c1ce491
--- /dev/null
+++ b/dist/linea/arrows_keyboard_right.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_keyboard_right = void 0;
+var arrows_keyboard_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "26,21 42,32 \r\n\t\t26,43 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "26,21 42,32 \r\n\t\t26,43 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_keyboard_right = arrows_keyboard_right;
\ No newline at end of file
diff --git a/dist/linea/arrows_keyboard_shift.js b/dist/linea/arrows_keyboard_shift.js
new file mode 100644
index 000000000..9acc59e97
--- /dev/null
+++ b/dist/linea/arrows_keyboard_shift.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_keyboard_shift = void 0;
+var arrows_keyboard_shift = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "17,36 32,18 \r\n\t\t47,36 39,36 39.001,46 25,46 25,36 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "17,36 32,18 \r\n\t\t47,36 39,36 39.001,46 25,46 25,36 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_keyboard_shift = arrows_keyboard_shift;
\ No newline at end of file
diff --git a/dist/linea/arrows_keyboard_tab.js b/dist/linea/arrows_keyboard_tab.js
new file mode 100644
index 000000000..5b30f3730
--- /dev/null
+++ b/dist/linea/arrows_keyboard_tab.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_keyboard_tab = void 0;
+var arrows_keyboard_tab = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,25 46,32 \r\n\t39,39 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,32 12,32 46,32 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "23",
+ "x2": "50",
+ "y2": "41"
+ },
+ "children": []
+ }]
+};
+exports.arrows_keyboard_tab = arrows_keyboard_tab;
\ No newline at end of file
diff --git a/dist/linea/arrows_keyboard_up.js b/dist/linea/arrows_keyboard_up.js
new file mode 100644
index 000000000..741de7172
--- /dev/null
+++ b/dist/linea/arrows_keyboard_up.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_keyboard_up = void 0;
+var arrows_keyboard_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#231F20",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "21,40 32,24 \r\n\t\t43,40 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "21,40 32,24 \r\n\t\t43,40 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_keyboard_up = arrows_keyboard_up;
\ No newline at end of file
diff --git a/dist/linea/arrows_left.js b/dist/linea/arrows_left.js
new file mode 100644
index 000000000..d23cfaa18
--- /dev/null
+++ b/dist/linea/arrows_left.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_left = void 0;
+var arrows_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "37,15 20,32 \r\n\t\t37,49 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "37,15 20,32 \r\n\t\t37,49 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_left = arrows_left;
\ No newline at end of file
diff --git a/dist/linea/arrows_minus.js b/dist/linea/arrows_minus.js
new file mode 100644
index 000000000..4a508e3f1
--- /dev/null
+++ b/dist/linea/arrows_minus.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_minus = void 0;
+var arrows_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "31",
+ "x2": "50",
+ "y2": "31"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "31",
+ "x2": "50",
+ "y2": "31"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_minus = arrows_minus;
\ No newline at end of file
diff --git a/dist/linea/arrows_move.js b/dist/linea/arrows_move.js
new file mode 100644
index 000000000..edc4bc162
--- /dev/null
+++ b/dist/linea/arrows_move.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_move = void 0;
+var arrows_move = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "56,39 63,32 \r\n\t56,25 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "8,25 1,32 8,39 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "32",
+ "x2": "27",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,8 32,1 25,8 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,56 32,63 \r\n\t39,56 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "63",
+ "x2": "32",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "27",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": []
+ }]
+};
+exports.arrows_move = arrows_move;
\ No newline at end of file
diff --git a/dist/linea/arrows_move2.js b/dist/linea/arrows_move2.js
new file mode 100644
index 000000000..05fbd052f
--- /dev/null
+++ b/dist/linea/arrows_move2.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_move2 = void 0;
+var arrows_move2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "56,39 63,32 \r\n\t56,25 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "8,25 1,32 8,39 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "32",
+ "x2": "32",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,8 32,1 25,8 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,56 32,63 \r\n\t39,56 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "63",
+ "x2": "32",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "32",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": []
+ }]
+};
+exports.arrows_move2 = arrows_move2;
\ No newline at end of file
diff --git a/dist/linea/arrows_move_bottom.js b/dist/linea/arrows_move_bottom.js
new file mode 100644
index 000000000..93eb054b4
--- /dev/null
+++ b/dist/linea/arrows_move_bottom.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_move_bottom = void 0;
+var arrows_move_bottom = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,44 32,51 \r\n\t39,44 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,51 32,39 32,5 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "59",
+ "x2": "64",
+ "y2": "59"
+ },
+ "children": []
+ }]
+};
+exports.arrows_move_bottom = arrows_move_bottom;
\ No newline at end of file
diff --git a/dist/linea/arrows_move_left.js b/dist/linea/arrows_move_left.js
new file mode 100644
index 000000000..5bbb708ec
--- /dev/null
+++ b/dist/linea/arrows_move_left.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_move_left = void 0;
+var arrows_move_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "20,25 13,32 \r\n\t20,39 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,32 47,32 13,32 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "5",
+ "y1": "0",
+ "x2": "5",
+ "y2": "64"
+ },
+ "children": []
+ }]
+};
+exports.arrows_move_left = arrows_move_left;
\ No newline at end of file
diff --git a/dist/linea/arrows_move_right.js b/dist/linea/arrows_move_right.js
new file mode 100644
index 000000000..364621dc6
--- /dev/null
+++ b/dist/linea/arrows_move_right.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_move_right = void 0;
+var arrows_move_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "44,39 51,32 \r\n\t44,25 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "51,32 39,32 5,32 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "59",
+ "y1": "0",
+ "x2": "59",
+ "y2": "64"
+ },
+ "children": []
+ }]
+};
+exports.arrows_move_right = arrows_move_right;
\ No newline at end of file
diff --git a/dist/linea/arrows_move_top.js b/dist/linea/arrows_move_top.js
new file mode 100644
index 000000000..c6dca19ff
--- /dev/null
+++ b/dist/linea/arrows_move_top.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_move_top = void 0;
+var arrows_move_top = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,20 32,13 \r\n\t25,20 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,59 32,47 32,13 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "5",
+ "x2": "64",
+ "y2": "5"
+ },
+ "children": []
+ }]
+};
+exports.arrows_move_top = arrows_move_top;
\ No newline at end of file
diff --git a/dist/linea/arrows_plus.js b/dist/linea/arrows_plus.js
new file mode 100644
index 000000000..a373df864
--- /dev/null
+++ b/dist/linea/arrows_plus.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_plus = void 0;
+var arrows_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "50",
+ "x2": "32",
+ "y2": "14"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "50",
+ "x2": "32",
+ "y2": "14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "32",
+ "x2": "50",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "32",
+ "x2": "50",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_plus = arrows_plus;
\ No newline at end of file
diff --git a/dist/linea/arrows_question.js b/dist/linea/arrows_question.js
new file mode 100644
index 000000000..9df9d2ec5
--- /dev/null
+++ b/dist/linea/arrows_question.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_question = void 0;
+var arrows_question = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "43",
+ "x2": "30",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,21c0-3,2-5,8-5c5,0,8,3,8,7s-6,7-6,7s-4,2-4,8v1\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_question = arrows_question;
\ No newline at end of file
diff --git a/dist/linea/arrows_remove.js b/dist/linea/arrows_remove.js
new file mode 100644
index 000000000..fa75e0a8a
--- /dev/null
+++ b/dist/linea/arrows_remove.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_remove = void 0;
+var arrows_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18.947",
+ "y1": "17.153",
+ "x2": "45.045",
+ "y2": "43.056"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18.947",
+ "y1": "17.153",
+ "x2": "45.045",
+ "y2": "43.056"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19.045",
+ "y1": "43.153",
+ "x2": "44.947",
+ "y2": "17.056"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19.045",
+ "y1": "43.153",
+ "x2": "44.947",
+ "y2": "17.056"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_remove = arrows_remove;
\ No newline at end of file
diff --git a/dist/linea/arrows_right.js b/dist/linea/arrows_right.js
new file mode 100644
index 000000000..8628c6c8c
--- /dev/null
+++ b/dist/linea/arrows_right.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_right = void 0;
+var arrows_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "27,15 44,32 \r\n\t\t27,49 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "27,15 44,32 \r\n\t\t27,49 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_right = arrows_right;
\ No newline at end of file
diff --git a/dist/linea/arrows_rotate.js b/dist/linea/arrows_rotate.js
new file mode 100644
index 000000000..847caac51
--- /dev/null
+++ b/dist/linea/arrows_rotate.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_rotate = void 0;
+var arrows_rotate = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M33,1c7.678,0,15.354,2.929,21.212,8.787\r\n\t\tC64.91,20.484,65.841,37.248,57.003,49l-6.001,6.002"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M33,1c7.678,0,15.354,2.929,21.212,8.787\r\n\t\tC64.91,20.484,65.841,37.248,57.003,49l-6.001,6.002"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M31,63c-7.678,0-15.354-2.929-21.212-8.787\r\n\t\tC-0.91,43.516-1.841,26.752,6.997,15l6.001-6.002"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M31,63c-7.678,0-15.354-2.929-21.212-8.787\r\n\t\tC-0.91,43.516-1.841,26.752,6.997,15l6.001-6.002"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "51,44 51,55 \r\n\t62,55 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,20 13,9 2,9 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_rotate = arrows_rotate;
\ No newline at end of file
diff --git a/dist/linea/arrows_rotate_anti.js b/dist/linea/arrows_rotate_anti.js
new file mode 100644
index 000000000..9e7939bb1
--- /dev/null
+++ b/dist/linea/arrows_rotate_anti.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_rotate_anti = void 0;
+var arrows_rotate_anti = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M31,1C23.322,1,15.646,3.929,9.788,9.787\r\n\t\tC-0.91,20.484-1.841,37.248,6.997,49l6.001,6.002"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M31,1C23.322,1,15.646,3.929,9.788,9.787\r\n\t\tC-0.91,20.484-1.841,37.248,6.997,49l6.001,6.002"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M33,63c7.678,0,15.354-2.929,21.212-8.787\r\n\t\tC64.91,43.516,65.841,26.752,57.003,15l-6.001-6.002"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M33,63c7.678,0,15.354-2.929,21.212-8.787\r\n\t\tC64.91,43.516,65.841,26.752,57.003,15l-6.001-6.002"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,44 13,55 2,55 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "51,20 51,9 62,9 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_rotate_anti = arrows_rotate_anti;
\ No newline at end of file
diff --git a/dist/linea/arrows_rotate_anti_dashed.js b/dist/linea/arrows_rotate_anti_dashed.js
new file mode 100644
index 000000000..5b6e0ac00
--- /dev/null
+++ b/dist/linea/arrows_rotate_anti_dashed.js
@@ -0,0 +1,209 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_rotate_anti_dashed = void 0;
+var arrows_rotate_anti_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M31,1c-0.667,0-1.333,0.022-1.998,0.066"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M31,1c-0.667,0-1.333,0.022-1.998,0.066"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1705,2.0853",
+ "d": "M26.929,1.275\r\n\t\t\t\tC20.659,2.13,14.607,4.967,9.788,9.787C-0.91,20.484-1.841,37.248,6.997,49l3.846,3.847"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1705,2.0853",
+ "d": "M26.929,1.275\r\n\t\t\t\tC20.659,2.13,14.607,4.967,9.788,9.787C-0.91,20.484-1.841,37.248,6.997,49l3.846,3.847"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11.584",
+ "y1": "53.588",
+ "x2": "12.998",
+ "y2": "55.002"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11.584",
+ "y1": "53.588",
+ "x2": "12.998",
+ "y2": "55.002"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M33,63c0.667,0,1.333-0.022,1.998-0.066"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M33,63c0.667,0,1.333-0.022,1.998-0.066"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1705,2.0853",
+ "d": "M37.071,62.725\r\n\t\t\t\tc6.27-0.854,12.321-3.691,17.141-8.512C64.91,43.516,65.841,26.752,57.003,15l-3.846-3.847"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1705,2.0853",
+ "d": "M37.071,62.725\r\n\t\t\t\tc6.27-0.854,12.321-3.691,17.141-8.512C64.91,43.516,65.841,26.752,57.003,15l-3.846-3.847"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52.416",
+ "y1": "10.412",
+ "x2": "51.002",
+ "y2": "8.998"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52.416",
+ "y1": "10.412",
+ "x2": "51.002",
+ "y2": "8.998"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,44 13,55 2,55 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "51,20 51,9 62,9 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_rotate_anti_dashed = arrows_rotate_anti_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_rotate_dashed.js b/dist/linea/arrows_rotate_dashed.js
new file mode 100644
index 000000000..af02f1da6
--- /dev/null
+++ b/dist/linea/arrows_rotate_dashed.js
@@ -0,0 +1,209 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_rotate_dashed = void 0;
+var arrows_rotate_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M33,1c0.666,0,1.333,0.022,1.998,0.066"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M33,1c0.666,0,1.333,0.022,1.998,0.066"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1705,2.0853",
+ "d": "M37.071,1.276\r\n\t\t\t\tc6.27,0.854,12.321,3.691,17.141,8.511C64.91,20.484,65.841,37.248,57.003,49l-3.846,3.846"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1705,2.0853",
+ "d": "M37.071,1.276\r\n\t\t\t\tc6.27,0.854,12.321,3.691,17.141,8.511C64.91,20.484,65.841,37.248,57.003,49l-3.846,3.846"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52.416",
+ "y1": "53.588",
+ "x2": "51.002",
+ "y2": "55.002"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52.416",
+ "y1": "53.588",
+ "x2": "51.002",
+ "y2": "55.002"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M31,63c-0.666,0-1.333-0.022-1.998-0.066"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M31,63c-0.666,0-1.333-0.022-1.998-0.066"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1705,2.0853",
+ "d": "M26.929,62.724\r\n\t\t\t\tc-6.27-0.854-12.321-3.691-17.141-8.511C-0.91,43.516-1.841,26.752,6.997,15l3.846-3.846"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1705,2.0853",
+ "d": "M26.929,62.724\r\n\t\t\t\tc-6.27-0.854-12.321-3.691-17.141-8.511C-0.91,43.516-1.841,26.752,6.997,15l3.846-3.846"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11.584",
+ "y1": "10.412",
+ "x2": "12.998",
+ "y2": "8.998"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11.584",
+ "y1": "10.412",
+ "x2": "12.998",
+ "y2": "8.998"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "51,44 51,55 \r\n\t62,55 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,20 13,9 2,9 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_rotate_dashed = arrows_rotate_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_shrink.js b/dist/linea/arrows_shrink.js
new file mode 100644
index 000000000..1262762c0
--- /dev/null
+++ b/dist/linea/arrows_shrink.js
@@ -0,0 +1,219 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_shrink = void 0;
+var arrows_shrink = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "63",
+ "x2": "23",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "63",
+ "x2": "23",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "12,41 23,41 \r\n\t\t23,52 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "12,41 23,41 \r\n\t\t23,52 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "63",
+ "x2": "41",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "63",
+ "x2": "41",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,52 41,41 \r\n\t\t52,41 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,52 41,41 \r\n\t\t52,41 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "1",
+ "x2": "41",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "1",
+ "x2": "41",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "52,23 41,23 \r\n\t\t41,12 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "52,23 41,23 \r\n\t\t41,12 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "1",
+ "x2": "23",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,12 23,23 \r\n\t\t12,23 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,12 23,23 \r\n\t\t12,23 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_shrink = arrows_shrink;
\ No newline at end of file
diff --git a/dist/linea/arrows_shrink_diagonal1.js b/dist/linea/arrows_shrink_diagonal1.js
new file mode 100644
index 000000000..95e438de4
--- /dev/null
+++ b/dist/linea/arrows_shrink_diagonal1.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_shrink_diagonal1 = void 0;
+var arrows_shrink_diagonal1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "1",
+ "x2": "63",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "37",
+ "x2": "27",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "35,18 35,29 \r\n\t46,29 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "28.771,45.771 \r\n\t28.771,34.771 17.771,34.771 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "50",
+ "x2": "29",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "29",
+ "x2": "50.5",
+ "y2": "13.5"
+ },
+ "children": []
+ }]
+};
+exports.arrows_shrink_diagonal1 = arrows_shrink_diagonal1;
\ No newline at end of file
diff --git a/dist/linea/arrows_shrink_diagonal2.js b/dist/linea/arrows_shrink_diagonal2.js
new file mode 100644
index 000000000..0098fbe54
--- /dev/null
+++ b/dist/linea/arrows_shrink_diagonal2.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_shrink_diagonal2 = void 0;
+var arrows_shrink_diagonal2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "35,18 35,29 \r\n\t46,29 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "28.771,45.771 \r\n\t28.771,34.771 17.771,34.771 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "63",
+ "x2": "29",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "29",
+ "x2": "63",
+ "y2": "1"
+ },
+ "children": []
+ }]
+};
+exports.arrows_shrink_diagonal2 = arrows_shrink_diagonal2;
\ No newline at end of file
diff --git a/dist/linea/arrows_shrink_horizonal2.js b/dist/linea/arrows_shrink_horizonal2.js
new file mode 100644
index 000000000..df4a38ea2
--- /dev/null
+++ b/dist/linea/arrows_shrink_horizonal2.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_shrink_horizonal2 = void 0;
+var arrows_shrink_horizonal2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "45,25 38,32 \r\n\t45,39 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "32",
+ "x2": "64",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "19,39 26,32 \r\n\t19,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "32",
+ "x2": "0",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.arrows_shrink_horizonal2 = arrows_shrink_horizonal2;
\ No newline at end of file
diff --git a/dist/linea/arrows_shrink_horizontal1.js b/dist/linea/arrows_shrink_horizontal1.js
new file mode 100644
index 000000000..7f564c182
--- /dev/null
+++ b/dist/linea/arrows_shrink_horizontal1.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_shrink_horizontal1 = void 0;
+var arrows_shrink_horizontal1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "5",
+ "y1": "0",
+ "x2": "5",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "59",
+ "y1": "0",
+ "x2": "59",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "45,25 38,32 \r\n\t45,39 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "32",
+ "x2": "59",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "19,39 26,32 \r\n\t19,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "32",
+ "x2": "5",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.arrows_shrink_horizontal1 = arrows_shrink_horizontal1;
\ No newline at end of file
diff --git a/dist/linea/arrows_shrink_vertical1.js b/dist/linea/arrows_shrink_vertical1.js
new file mode 100644
index 000000000..73c78c5e2
--- /dev/null
+++ b/dist/linea/arrows_shrink_vertical1.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_shrink_vertical1 = void 0;
+var arrows_shrink_vertical1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "5",
+ "x2": "0",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "59",
+ "x2": "0",
+ "y2": "59"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,19 32,26 \r\n\t39,19 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "26",
+ "x2": "32",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,45 32,38 \r\n\t25,45 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "38",
+ "x2": "32",
+ "y2": "59"
+ },
+ "children": []
+ }]
+};
+exports.arrows_shrink_vertical1 = arrows_shrink_vertical1;
\ No newline at end of file
diff --git a/dist/linea/arrows_shrink_vertical2.js b/dist/linea/arrows_shrink_vertical2.js
new file mode 100644
index 000000000..65c7f240b
--- /dev/null
+++ b/dist/linea/arrows_shrink_vertical2.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_shrink_vertical2 = void 0;
+var arrows_shrink_vertical2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,19 32,26 \r\n\t39,19 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "26",
+ "x2": "32",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,45 32,38 \r\n\t25,45 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "38",
+ "x2": "32",
+ "y2": "64"
+ },
+ "children": []
+ }]
+};
+exports.arrows_shrink_vertical2 = arrows_shrink_vertical2;
\ No newline at end of file
diff --git a/dist/linea/arrows_sign_down.js b/dist/linea/arrows_sign_down.js
new file mode 100644
index 000000000..2fc3f83d1
--- /dev/null
+++ b/dist/linea/arrows_sign_down.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_sign_down = void 0;
+var arrows_sign_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "15,45 15,1 49,1 49,45 31.999,63 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_sign_down = arrows_sign_down;
\ No newline at end of file
diff --git a/dist/linea/arrows_sign_left.js b/dist/linea/arrows_sign_left.js
new file mode 100644
index 000000000..40be347a0
--- /dev/null
+++ b/dist/linea/arrows_sign_left.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_sign_left = void 0;
+var arrows_sign_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "19,15 63,15 63,49 19,49 1,31.999 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_sign_left = arrows_sign_left;
\ No newline at end of file
diff --git a/dist/linea/arrows_sign_right.js b/dist/linea/arrows_sign_right.js
new file mode 100644
index 000000000..c426191e4
--- /dev/null
+++ b/dist/linea/arrows_sign_right.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_sign_right = void 0;
+var arrows_sign_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "45,49 1,49 1,15 45,15 63,32.001 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_sign_right = arrows_sign_right;
\ No newline at end of file
diff --git a/dist/linea/arrows_sign_up.js b/dist/linea/arrows_sign_up.js
new file mode 100644
index 000000000..3e1c2ba91
--- /dev/null
+++ b/dist/linea/arrows_sign_up.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_sign_up = void 0;
+var arrows_sign_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "49,19 49,63 15,63 15,19 32.001,1 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_sign_up = arrows_sign_up;
\ No newline at end of file
diff --git a/dist/linea/arrows_slide_down1.js b/dist/linea/arrows_slide_down1.js
new file mode 100644
index 000000000..2e6dc3118
--- /dev/null
+++ b/dist/linea/arrows_slide_down1.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slide_down1 = void 0;
+var arrows_slide_down1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,63 27,1 46,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,63 27,1 46,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "18,54 27,63 \r\n\t36,54 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_slide_down1 = arrows_slide_down1;
\ No newline at end of file
diff --git a/dist/linea/arrows_slide_down2.js b/dist/linea/arrows_slide_down2.js
new file mode 100644
index 000000000..4b5e628e4
--- /dev/null
+++ b/dist/linea/arrows_slide_down2.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slide_down2 = void 0;
+var arrows_slide_down2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "37,63 37,1 18,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "37,63 37,1 18,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "46,54 37,63 \r\n\t28,54 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_slide_down2 = arrows_slide_down2;
\ No newline at end of file
diff --git a/dist/linea/arrows_slide_left1.js b/dist/linea/arrows_slide_left1.js
new file mode 100644
index 000000000..170348299
--- /dev/null
+++ b/dist/linea/arrows_slide_left1.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slide_left1 = void 0;
+var arrows_slide_left1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,27 63,27 63,46 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,27 63,27 63,46 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10,18 1,27 10,36 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_slide_left1 = arrows_slide_left1;
\ No newline at end of file
diff --git a/dist/linea/arrows_slide_left2.js b/dist/linea/arrows_slide_left2.js
new file mode 100644
index 000000000..6e6f0af8b
--- /dev/null
+++ b/dist/linea/arrows_slide_left2.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slide_left2 = void 0;
+var arrows_slide_left2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,37 63,37 63,18 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,37 63,37 63,18 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10,46 1,37 10,28 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_slide_left2 = arrows_slide_left2;
\ No newline at end of file
diff --git a/dist/linea/arrows_slide_right1.js b/dist/linea/arrows_slide_right1.js
new file mode 100644
index 000000000..0bf2cc426
--- /dev/null
+++ b/dist/linea/arrows_slide_right1.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slide_right1 = void 0;
+var arrows_slide_right1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,27 1,27 1,46 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,27 1,27 1,46 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "54,18 63,27 \r\n\t54,36 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_slide_right1 = arrows_slide_right1;
\ No newline at end of file
diff --git a/dist/linea/arrows_slide_right2.js b/dist/linea/arrows_slide_right2.js
new file mode 100644
index 000000000..14d0abb16
--- /dev/null
+++ b/dist/linea/arrows_slide_right2.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slide_right2 = void 0;
+var arrows_slide_right2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,37 1,37 1,18 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,37 1,37 1,18 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "54,46 63,37 \r\n\t54,28 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_slide_right2 = arrows_slide_right2;
\ No newline at end of file
diff --git a/dist/linea/arrows_slide_up1.js b/dist/linea/arrows_slide_up1.js
new file mode 100644
index 000000000..fcf4e7bc8
--- /dev/null
+++ b/dist/linea/arrows_slide_up1.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slide_up1 = void 0;
+var arrows_slide_up1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "37,1 37,63 18,63 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "37,1 37,63 18,63 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "46,10 37,1 28,10 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_slide_up1 = arrows_slide_up1;
\ No newline at end of file
diff --git a/dist/linea/arrows_slide_up2.js b/dist/linea/arrows_slide_up2.js
new file mode 100644
index 000000000..627dcce69
--- /dev/null
+++ b/dist/linea/arrows_slide_up2.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slide_up2 = void 0;
+var arrows_slide_up2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,1 27,63 46,63 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,1 27,63 46,63 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "18,10 27,1 36,10 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_slide_up2 = arrows_slide_up2;
\ No newline at end of file
diff --git a/dist/linea/arrows_slim_down.js b/dist/linea/arrows_slim_down.js
new file mode 100644
index 000000000..7af9cd677
--- /dev/null
+++ b/dist/linea/arrows_slim_down.js
@@ -0,0 +1,52 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slim_down = void 0;
+var arrows_slim_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,54 32,63 \r\n\t23,54 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_slim_down = arrows_slim_down;
\ No newline at end of file
diff --git a/dist/linea/arrows_slim_down_dashed.js b/dist/linea/arrows_slim_down_dashed.js
new file mode 100644
index 000000000..aa7045463
--- /dev/null
+++ b/dist/linea/arrows_slim_down_dashed.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slim_down_dashed = void 0;
+var arrows_slim_down_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "55"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "55"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,54 32,63 \r\n\t23,54 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_slim_down_dashed = arrows_slim_down_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_slim_left.js b/dist/linea/arrows_slim_left.js
new file mode 100644
index 000000000..3e47304a2
--- /dev/null
+++ b/dist/linea/arrows_slim_left.js
@@ -0,0 +1,52 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slim_left = void 0;
+var arrows_slim_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "32",
+ "x2": "1",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "32",
+ "x2": "1",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10,23 1,32 10,41 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_slim_left = arrows_slim_left;
\ No newline at end of file
diff --git a/dist/linea/arrows_slim_left_dashed.js b/dist/linea/arrows_slim_left_dashed.js
new file mode 100644
index 000000000..ed4459c1f
--- /dev/null
+++ b/dist/linea/arrows_slim_left_dashed.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slim_left_dashed = void 0;
+var arrows_slim_left_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "64",
+ "y1": "32",
+ "x2": "1",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "64",
+ "y1": "32",
+ "x2": "1",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10,23 1,32 10,41 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_slim_left_dashed = arrows_slim_left_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_slim_right.js b/dist/linea/arrows_slim_right.js
new file mode 100644
index 000000000..6c9497158
--- /dev/null
+++ b/dist/linea/arrows_slim_right.js
@@ -0,0 +1,52 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slim_right = void 0;
+var arrows_slim_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "54,41 63,32 \r\n\t54,23 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_slim_right = arrows_slim_right;
\ No newline at end of file
diff --git a/dist/linea/arrows_slim_right_dashed.js b/dist/linea/arrows_slim_right_dashed.js
new file mode 100644
index 000000000..93482a632
--- /dev/null
+++ b/dist/linea/arrows_slim_right_dashed.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slim_right_dashed = void 0;
+var arrows_slim_right_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "0",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "0",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "54,41 63,32 \r\n\t54,23 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_slim_right_dashed = arrows_slim_right_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_slim_up.js b/dist/linea/arrows_slim_up.js
new file mode 100644
index 000000000..5f5ae128f
--- /dev/null
+++ b/dist/linea/arrows_slim_up.js
@@ -0,0 +1,52 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slim_up = void 0;
+var arrows_slim_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "64",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "64",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,10 32,1 23,10 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_slim_up = arrows_slim_up;
\ No newline at end of file
diff --git a/dist/linea/arrows_slim_up_dashed.js b/dist/linea/arrows_slim_up_dashed.js
new file mode 100644
index 000000000..18375c304
--- /dev/null
+++ b/dist/linea/arrows_slim_up_dashed.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_slim_up_dashed = void 0;
+var arrows_slim_up_dashed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "64",
+ "x2": "32",
+ "y2": "2"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "64",
+ "x2": "32",
+ "y2": "2"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,10 32,1 23,10 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.arrows_slim_up_dashed = arrows_slim_up_dashed;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_check.js b/dist/linea/arrows_square_check.js
new file mode 100644
index 000000000..cf846bc86
--- /dev/null
+++ b/dist/linea/arrows_square_check.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_check = void 0;
+var arrows_square_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,33 25,45 \r\n\t\t49,21 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,33 25,45 \r\n\t\t49,21 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_check = arrows_square_check;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_down.js b/dist/linea/arrows_square_down.js
new file mode 100644
index 000000000..3d07b88a2
--- /dev/null
+++ b/dist/linea/arrows_square_down.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_down = void 0;
+var arrows_square_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,24 32,41 \r\n\t\t49,24 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,24 32,41 \r\n\t\t49,24 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_down = arrows_square_down;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_downleft.js b/dist/linea/arrows_square_downleft.js
new file mode 100644
index 000000000..1aac48bc8
--- /dev/null
+++ b/dist/linea/arrows_square_downleft.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_downleft = void 0;
+var arrows_square_downleft = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "47,41 23,41 \r\n\t\t23,17 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "47,41 23,41 \r\n\t\t23,17 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_downleft = arrows_square_downleft;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_downright.js b/dist/linea/arrows_square_downright.js
new file mode 100644
index 000000000..9df5c3ad1
--- /dev/null
+++ b/dist/linea/arrows_square_downright.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_downright = void 0;
+var arrows_square_downright = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,17 41,41 \r\n\t\t17,41 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,17 41,41 \r\n\t\t17,41 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_downright = arrows_square_downright;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_left.js b/dist/linea/arrows_square_left.js
new file mode 100644
index 000000000..b529da660
--- /dev/null
+++ b/dist/linea/arrows_square_left.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_left = void 0;
+var arrows_square_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "37,15 20,32 \r\n\t\t37,49 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "37,15 20,32 \r\n\t\t37,49 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_left = arrows_square_left;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_minus.js b/dist/linea/arrows_square_minus.js
new file mode 100644
index 000000000..15f954d1a
--- /dev/null
+++ b/dist/linea/arrows_square_minus.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_minus = void 0;
+var arrows_square_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "31",
+ "x2": "50",
+ "y2": "31"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "31",
+ "x2": "50",
+ "y2": "31"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_minus = arrows_square_minus;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_plus.js b/dist/linea/arrows_square_plus.js
new file mode 100644
index 000000000..ff6d3ab73
--- /dev/null
+++ b/dist/linea/arrows_square_plus.js
@@ -0,0 +1,80 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_plus = void 0;
+var arrows_square_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "50",
+ "x2": "32",
+ "y2": "14"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "50",
+ "x2": "32",
+ "y2": "14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "32",
+ "x2": "50",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "32",
+ "x2": "50",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_plus = arrows_square_plus;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_remove.js b/dist/linea/arrows_square_remove.js
new file mode 100644
index 000000000..82ec94633
--- /dev/null
+++ b/dist/linea/arrows_square_remove.js
@@ -0,0 +1,84 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_remove = void 0;
+var arrows_square_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18.947",
+ "y1": "17.153",
+ "x2": "45.045",
+ "y2": "43.056"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18.947",
+ "y1": "17.153",
+ "x2": "45.045",
+ "y2": "43.056"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19.045",
+ "y1": "43.153",
+ "x2": "44.947",
+ "y2": "17.056"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19.045",
+ "y1": "43.153",
+ "x2": "44.947",
+ "y2": "17.056"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_remove = arrows_square_remove;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_right.js b/dist/linea/arrows_square_right.js
new file mode 100644
index 000000000..68a700117
--- /dev/null
+++ b/dist/linea/arrows_square_right.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_right = void 0;
+var arrows_square_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "27,15 44,32 \r\n\t\t27,49 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "27,15 44,32 \r\n\t\t27,49 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_right = arrows_square_right;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_up.js b/dist/linea/arrows_square_up.js
new file mode 100644
index 000000000..b84890d96
--- /dev/null
+++ b/dist/linea/arrows_square_up.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_up = void 0;
+var arrows_square_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,40 32,23 \r\n\t\t49,40 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,40 32,23 \r\n\t\t49,40 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_up = arrows_square_up;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_upleft.js b/dist/linea/arrows_square_upleft.js
new file mode 100644
index 000000000..03035b7c2
--- /dev/null
+++ b/dist/linea/arrows_square_upleft.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_upleft = void 0;
+var arrows_square_upleft = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,47 23,23 \r\n\t\t47,23 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,47 23,23 \r\n\t\t47,23 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_upleft = arrows_square_upleft;
\ No newline at end of file
diff --git a/dist/linea/arrows_square_upright.js b/dist/linea/arrows_square_upright.js
new file mode 100644
index 000000000..77fd0ad65
--- /dev/null
+++ b/dist/linea/arrows_square_upright.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_square_upright = void 0;
+var arrows_square_upright = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "17,23 41,23 \r\n\t\t41,47 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "17,23 41,23 \r\n\t\t41,47 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.arrows_square_upright = arrows_square_upright;
\ No newline at end of file
diff --git a/dist/linea/arrows_squares.js b/dist/linea/arrows_squares.js
new file mode 100644
index 000000000..9147a5e23
--- /dev/null
+++ b/dist/linea/arrows_squares.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_squares = void 0;
+var arrows_squares = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "27",
+ "height": "27"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "36",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "27",
+ "height": "27"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "36",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "27",
+ "height": "27"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "36",
+ "y": "36",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "27",
+ "height": "27"
+ },
+ "children": []
+ }]
+};
+exports.arrows_squares = arrows_squares;
\ No newline at end of file
diff --git a/dist/linea/arrows_stretch_diagonal1.js b/dist/linea/arrows_stretch_diagonal1.js
new file mode 100644
index 000000000..d870d11a5
--- /dev/null
+++ b/dist/linea/arrows_stretch_diagonal1.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_stretch_diagonal1 = void 0;
+var arrows_stretch_diagonal1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "63,12 63,1 52,1 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "1,52 1,63 12,63 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "63",
+ "x2": "26",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "26",
+ "x2": "63",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "24",
+ "x2": "40",
+ "y2": "40"
+ },
+ "children": []
+ }]
+};
+exports.arrows_stretch_diagonal1 = arrows_stretch_diagonal1;
\ No newline at end of file
diff --git a/dist/linea/arrows_stretch_diagonal2.js b/dist/linea/arrows_stretch_diagonal2.js
new file mode 100644
index 000000000..25e198653
--- /dev/null
+++ b/dist/linea/arrows_stretch_diagonal2.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_stretch_diagonal2 = void 0;
+var arrows_stretch_diagonal2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "1,12 1,1 12,1 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "63,52 63,63 \r\n\t52,63 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "63",
+ "x2": "38",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "26",
+ "x2": "1",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "24",
+ "x2": "24",
+ "y2": "40"
+ },
+ "children": []
+ }]
+};
+exports.arrows_stretch_diagonal2 = arrows_stretch_diagonal2;
\ No newline at end of file
diff --git a/dist/linea/arrows_stretch_diagonal3.js b/dist/linea/arrows_stretch_diagonal3.js
new file mode 100644
index 000000000..283d653ef
--- /dev/null
+++ b/dist/linea/arrows_stretch_diagonal3.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_stretch_diagonal3 = void 0;
+var arrows_stretch_diagonal3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "63,12 63,1 52,1 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "1,52 1,63 12,63 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "63",
+ "x2": "32",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "32",
+ "x2": "63",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "1",
+ "x2": "63",
+ "y2": "63"
+ },
+ "children": []
+ }]
+};
+exports.arrows_stretch_diagonal3 = arrows_stretch_diagonal3;
\ No newline at end of file
diff --git a/dist/linea/arrows_stretch_diagonal4.js b/dist/linea/arrows_stretch_diagonal4.js
new file mode 100644
index 000000000..d60ca680e
--- /dev/null
+++ b/dist/linea/arrows_stretch_diagonal4.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_stretch_diagonal4 = void 0;
+var arrows_stretch_diagonal4 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "1,12 1,1 12,1 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "63,52 63,63 \r\n\t52,63 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "63",
+ "x2": "32",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "32",
+ "x2": "1",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "1",
+ "x2": "1",
+ "y2": "63"
+ },
+ "children": []
+ }]
+};
+exports.arrows_stretch_diagonal4 = arrows_stretch_diagonal4;
\ No newline at end of file
diff --git a/dist/linea/arrows_stretch_horizontal1.js b/dist/linea/arrows_stretch_horizontal1.js
new file mode 100644
index 000000000..4588d4daf
--- /dev/null
+++ b/dist/linea/arrows_stretch_horizontal1.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_stretch_horizontal1 = void 0;
+var arrows_stretch_horizontal1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "55,40 63,32 \r\n\t55,24 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "9,24 1,32 9,40 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "2,32 11.677,32 26,32 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,32 41.677,32 62,32 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "21",
+ "x2": "32",
+ "y2": "43"
+ },
+ "children": []
+ }]
+};
+exports.arrows_stretch_horizontal1 = arrows_stretch_horizontal1;
\ No newline at end of file
diff --git a/dist/linea/arrows_stretch_horizontal2.js b/dist/linea/arrows_stretch_horizontal2.js
new file mode 100644
index 000000000..de4181477
--- /dev/null
+++ b/dist/linea/arrows_stretch_horizontal2.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_stretch_horizontal2 = void 0;
+var arrows_stretch_horizontal2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "55,40 63,32 \r\n\t55,24 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "9,24 1,32 9,40 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "2,32 11.677,32 32,32 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,32 41.677,32 62,32 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "64"
+ },
+ "children": []
+ }]
+};
+exports.arrows_stretch_horizontal2 = arrows_stretch_horizontal2;
\ No newline at end of file
diff --git a/dist/linea/arrows_stretch_vertical1.js b/dist/linea/arrows_stretch_vertical1.js
new file mode 100644
index 000000000..0b044a91d
--- /dev/null
+++ b/dist/linea/arrows_stretch_vertical1.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_stretch_vertical1 = void 0;
+var arrows_stretch_vertical1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,9 32,1 24,9 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "24,55 32,63 \r\n\t40,55 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,62 32,52.323 32,38 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,26 32,22.323 32,2 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "32",
+ "x2": "43",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.arrows_stretch_vertical1 = arrows_stretch_vertical1;
\ No newline at end of file
diff --git a/dist/linea/arrows_stretch_vertical2.js b/dist/linea/arrows_stretch_vertical2.js
new file mode 100644
index 000000000..b8c649155
--- /dev/null
+++ b/dist/linea/arrows_stretch_vertical2.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_stretch_vertical2 = void 0;
+var arrows_stretch_vertical2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,9 32,1 24,9 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "24,55 32,63 \r\n\t40,55 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,62 32,52.323 32,32 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,32 32,22.323 32,2 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "32",
+ "x2": "64",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.arrows_stretch_vertical2 = arrows_stretch_vertical2;
\ No newline at end of file
diff --git a/dist/linea/arrows_switch_horizontal.js b/dist/linea/arrows_switch_horizontal.js
new file mode 100644
index 000000000..ac343044b
--- /dev/null
+++ b/dist/linea/arrows_switch_horizontal.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_switch_horizontal = void 0;
+var arrows_switch_horizontal = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "54.083,51 \r\n\t63.083,42 54.083,33 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "42",
+ "x2": "9",
+ "y2": "42"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10.083,13 \r\n\t1.083,22 10.083,31 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "22",
+ "x2": "55",
+ "y2": "22"
+ },
+ "children": []
+ }]
+};
+exports.arrows_switch_horizontal = arrows_switch_horizontal;
\ No newline at end of file
diff --git a/dist/linea/arrows_switch_vertical.js b/dist/linea/arrows_switch_vertical.js
new file mode 100644
index 000000000..c6a9cb5f8
--- /dev/null
+++ b/dist/linea/arrows_switch_vertical.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_switch_vertical = void 0;
+var arrows_switch_vertical = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "51.083,10 \r\n\t42.083,1 33.083,10 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42.083",
+ "y1": "1",
+ "x2": "42",
+ "y2": "55"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13.083,54 \r\n\t22.083,63 31.083,54 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22.083",
+ "y1": "63",
+ "x2": "22",
+ "y2": "9"
+ },
+ "children": []
+ }]
+};
+exports.arrows_switch_vertical = arrows_switch_vertical;
\ No newline at end of file
diff --git a/dist/linea/arrows_up.js b/dist/linea/arrows_up.js
new file mode 100644
index 000000000..cd0e9016a
--- /dev/null
+++ b/dist/linea/arrows_up.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_up = void 0;
+var arrows_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,40 32,23 \r\n\t\t49,40 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,40 32,23 \r\n\t\t49,40 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_up = arrows_up;
\ No newline at end of file
diff --git a/dist/linea/arrows_up_double.js b/dist/linea/arrows_up_double.js
new file mode 100644
index 000000000..107f86698
--- /dev/null
+++ b/dist/linea/arrows_up_double.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_up_double = void 0;
+var arrows_up_double = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,32.936 \r\n\t\t32,15.936 49,32.936 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,32.936 \r\n\t\t32,15.936 49,32.936 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,47.936 \r\n\t\t32,30.936 49,47.936 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,47.936 \r\n\t\t32,30.936 49,47.936 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_up_double = arrows_up_double;
\ No newline at end of file
diff --git a/dist/linea/arrows_upright.js b/dist/linea/arrows_upright.js
new file mode 100644
index 000000000..05fb417e2
--- /dev/null
+++ b/dist/linea/arrows_upright.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_upright = void 0;
+var arrows_upright = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "17,23 41,23 \r\n\t\t41,47 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "17,23 41,23 \r\n\t\t41,47 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.arrows_upright = arrows_upright;
\ No newline at end of file
diff --git a/dist/linea/arrows_vertical.js b/dist/linea/arrows_vertical.js
new file mode 100644
index 000000000..12b7afa5b
--- /dev/null
+++ b/dist/linea/arrows_vertical.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.arrows_vertical = void 0;
+var arrows_vertical = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,8 32,1 25,8 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,56 32,63 \r\n\t39,56 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,63 32,43 32,1 "
+ },
+ "children": []
+ }]
+};
+exports.arrows_vertical = arrows_vertical;
\ No newline at end of file
diff --git a/dist/linea/basic_accelerator.js b/dist/linea/basic_accelerator.js
new file mode 100644
index 000000000..fe200b1c9
--- /dev/null
+++ b/dist/linea/basic_accelerator.js
@@ -0,0 +1,56 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_accelerator = void 0;
+var basic_accelerator = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32.001,0.887c17.184,0,31.113,13.929,31.112,31.113\r\n\tC63.114,49.185,49.184,63.115,32,63.113C14.815,63.114,0.887,49.185,0.888,32.001C0.885,14.816,14.815,0.887,32.001,0.887z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M10,32c0-5.63,2.148-11.26,6.444-15.556\r\n\tc8.591-8.593,22.521-8.593,31.112,0C51.852,20.74,54,26.37,54,32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "26",
+ "x2": "30.333",
+ "y2": "33.333"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "35",
+ "r": "2"
+ },
+ "children": []
+ }]
+};
+exports.basic_accelerator = basic_accelerator;
\ No newline at end of file
diff --git a/dist/linea/basic_alarm.js b/dist/linea/basic_alarm.js
new file mode 100644
index 000000000..05c19c2bb
--- /dev/null
+++ b/dist/linea/basic_alarm.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_alarm = void 0;
+var basic_alarm = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "26"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,20 32,32 40,36 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21.995",
+ "y1": "56.005",
+ "x2": "15",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "49",
+ "y1": "63",
+ "x2": "42.005",
+ "y2": "56.005"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,8 5,4 15,6 3,18 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,4 63,8 61,18 49,6 "
+ },
+ "children": []
+ }]
+};
+exports.basic_alarm = basic_alarm;
\ No newline at end of file
diff --git a/dist/linea/basic_anchor.js b/dist/linea/basic_anchor.js
new file mode 100644
index 000000000..122ab10a5
--- /dev/null
+++ b/dist/linea/basic_anchor.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_anchor = void 0;
+var basic_anchor = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "13",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "19,50 9,47 6,57 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "45,50 55,47 \r\n\t59,57 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M54.752,47\r\n\tC51.555,56.301,42.576,63,32,63c-10.575,0-19.553-6.698-22.751-15.998"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "17",
+ "x2": "41",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "7",
+ "r": "6"
+ },
+ "children": []
+ }]
+};
+exports.basic_anchor = basic_anchor;
\ No newline at end of file
diff --git a/dist/linea/basic_anticlockwise.js b/dist/linea/basic_anticlockwise.js
new file mode 100644
index 000000000..5908d4cb5
--- /dev/null
+++ b/dist/linea/basic_anticlockwise.js
@@ -0,0 +1,104 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_anticlockwise = void 0;
+var basic_anticlockwise = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,12 32,32 41,41 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "32",
+ "x2": "8",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "32",
+ "x2": "60",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "60",
+ "x2": "32",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "8",
+ "x2": "32",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,63C14.879,63,1,49.121,1,32S14.879,1,32,1"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,63c17.121,0,31-13.879,31-31\r\n\tc0-6.713-2.134-12.926-5.759-18l-5.62-5.621"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "51,19 51,8 62,8 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_anticlockwise = basic_anticlockwise;
\ No newline at end of file
diff --git a/dist/linea/basic_archive.js b/dist/linea/basic_archive.js
new file mode 100644
index 000000000..ea911cc14
--- /dev/null
+++ b/dist/linea/basic_archive.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_archive = void 0;
+var basic_archive = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }]
+};
+exports.basic_archive = basic_archive;
\ No newline at end of file
diff --git a/dist/linea/basic_archive_full.js b/dist/linea/basic_archive_full.js
new file mode 100644
index 000000000..71b67173e
--- /dev/null
+++ b/dist/linea/basic_archive_full.js
@@ -0,0 +1,70 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_archive_full = void 0;
+var basic_archive_full = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "31",
+ "x2": "52",
+ "y2": "31"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "21",
+ "x2": "50",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "11",
+ "x2": "48",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.basic_archive_full = basic_archive_full;
\ No newline at end of file
diff --git a/dist/linea/basic_ban.js b/dist/linea/basic_ban.js
new file mode 100644
index 000000000..3d7323eb4
--- /dev/null
+++ b/dist/linea/basic_ban.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_ban = void 0;
+var basic_ban = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.919,10.08c12.108,12.106,12.108,31.733,0,43.84\r\n\tc-12.105,12.107-31.732,12.107-43.838,0c-12.108-12.106-12.108-31.733,0-43.84C22.187-2.027,41.813-2.027,53.919,10.08z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10.08",
+ "y1": "10.08",
+ "x2": "53.92",
+ "y2": "53.92"
+ },
+ "children": []
+ }]
+};
+exports.basic_ban = basic_ban;
\ No newline at end of file
diff --git a/dist/linea/basic_battery_charge.js b/dist/linea/basic_battery_charge.js
new file mode 100644
index 000000000..444236231
--- /dev/null
+++ b/dist/linea/basic_battery_charge.js
@@ -0,0 +1,97 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_battery_charge = void 0;
+var basic_battery_charge = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "21",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "58",
+ "height": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "21",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "58",
+ "height": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,27 63,27 63,39 59,39 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,27 63,27 63,39 59,39 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "25",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "50",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "25",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "50",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,33 29,30 29,36 36,33 "
+ },
+ "children": []
+ }]
+};
+exports.basic_battery_charge = basic_battery_charge;
\ No newline at end of file
diff --git a/dist/linea/basic_battery_empty.js b/dist/linea/basic_battery_empty.js
new file mode 100644
index 000000000..127d4f8cf
--- /dev/null
+++ b/dist/linea/basic_battery_empty.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_battery_empty = void 0;
+var basic_battery_empty = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "21",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "58",
+ "height": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "21",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "58",
+ "height": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,27 63,27 63,39 59,39 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,27 63,27 63,39 59,39 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,41 5,41 5,25 14,25 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,41 5,41 5,25 14,25 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_battery_empty = basic_battery_empty;
\ No newline at end of file
diff --git a/dist/linea/basic_battery_full.js b/dist/linea/basic_battery_full.js
new file mode 100644
index 000000000..ed0f3abd1
--- /dev/null
+++ b/dist/linea/basic_battery_full.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_battery_full = void 0;
+var basic_battery_full = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "21",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "58",
+ "height": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "21",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "58",
+ "height": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,27 63,27 63,39 59,39 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,27 63,27 63,39 59,39 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "25",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "50",
+ "height": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "25",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "50",
+ "height": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_battery_full = basic_battery_full;
\ No newline at end of file
diff --git a/dist/linea/basic_battery_half.js b/dist/linea/basic_battery_half.js
new file mode 100644
index 000000000..1025430dc
--- /dev/null
+++ b/dist/linea/basic_battery_half.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_battery_half = void 0;
+var basic_battery_half = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "21",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "58",
+ "height": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "21",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "58",
+ "height": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,27 63,27 63,39 59,39 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,27 63,27 63,39 59,39 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "33,41 5,41 5,25 29,25 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "33,41 5,41 5,25 29,25 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_battery_half = basic_battery_half;
\ No newline at end of file
diff --git a/dist/linea/basic_bolt.js b/dist/linea/basic_bolt.js
new file mode 100644
index 000000000..6ef7f967d
--- /dev/null
+++ b/dist/linea/basic_bolt.js
@@ -0,0 +1,22 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_bolt = void 0;
+var basic_bolt = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,1 17,37 31,37 \r\n\t24,63 50,27 36,27 "
+ },
+ "children": []
+ }]
+};
+exports.basic_bolt = basic_bolt;
\ No newline at end of file
diff --git a/dist/linea/basic_book.js b/dist/linea/basic_book.js
new file mode 100644
index 000000000..3d9f474c4
--- /dev/null
+++ b/dist/linea/basic_book.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_book = void 0;
+var basic_book = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "7",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "46",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "63",
+ "x2": "15",
+ "y2": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "15",
+ "x2": "48",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "21",
+ "x2": "48",
+ "y2": "21"
+ },
+ "children": []
+ }]
+};
+exports.basic_book = basic_book;
\ No newline at end of file
diff --git a/dist/linea/basic_book_pen.js b/dist/linea/basic_book_pen.js
new file mode 100644
index 000000000..344c0f3fd
--- /dev/null
+++ b/dist/linea/basic_book_pen.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_book_pen = void 0;
+var basic_book_pen = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "46",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "9",
+ "y1": "63",
+ "x2": "9",
+ "y2": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "15",
+ "x2": "42",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "21",
+ "x2": "42",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,3 63,53 59,61 55,53 55,3 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,7 51,7 51,17 "
+ },
+ "children": []
+ }]
+};
+exports.basic_book_pen = basic_book_pen;
\ No newline at end of file
diff --git a/dist/linea/basic_book_pencil.js b/dist/linea/basic_book_pencil.js
new file mode 100644
index 000000000..40c2d9c6f
--- /dev/null
+++ b/dist/linea/basic_book_pencil.js
@@ -0,0 +1,86 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_book_pencil = void 0;
+var basic_book_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "46",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "9",
+ "y1": "63",
+ "x2": "9",
+ "y2": "2"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "15",
+ "x2": "42",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "21",
+ "x2": "42",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,1 55,54 59,62 63,54 63,1 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "55",
+ "y1": "11",
+ "x2": "63",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.basic_book_pencil = basic_book_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_bookmark.js b/dist/linea/basic_bookmark.js
new file mode 100644
index 000000000..1c26c8484
--- /dev/null
+++ b/dist/linea/basic_bookmark.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_bookmark = void 0;
+var basic_bookmark = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,1 46,1 46,62 32,48 18,62 "
+ },
+ "children": []
+ }]
+};
+exports.basic_bookmark = basic_bookmark;
\ No newline at end of file
diff --git a/dist/linea/basic_calculator.js b/dist/linea/basic_calculator.js
new file mode 100644
index 000000000..49ee46cfc
--- /dev/null
+++ b/dist/linea/basic_calculator.js
@@ -0,0 +1,132 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_calculator = void 0;
+var basic_calculator = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "8",
+ "x2": "18",
+ "y2": "28"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "18",
+ "x2": "8",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "18",
+ "x2": "36",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "54",
+ "x2": "26",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "38",
+ "x2": "26",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "43",
+ "x2": "56",
+ "y2": "43"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "49",
+ "x2": "56",
+ "y2": "49"
+ },
+ "children": []
+ }]
+};
+exports.basic_calculator = basic_calculator;
\ No newline at end of file
diff --git a/dist/linea/basic_calendar.js b/dist/linea/basic_calendar.js
new file mode 100644
index 000000000..ed1ccbee5
--- /dev/null
+++ b/dist/linea/basic_calendar.js
@@ -0,0 +1,282 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_calendar = void 0;
+var basic_calendar = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "10",
+ "y": "24",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "10",
+ "y": "24",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "10",
+ "y": "42",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "10",
+ "y": "42",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "44",
+ "y": "24",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "44",
+ "y": "24",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "44",
+ "y": "42",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "44",
+ "y": "42",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "27",
+ "y": "24",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "27",
+ "y": "24",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "27",
+ "y": "42",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "27",
+ "y": "42",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_calendar = basic_calendar;
\ No newline at end of file
diff --git a/dist/linea/basic_cards_diamonds.js b/dist/linea/basic_cards_diamonds.js
new file mode 100644
index 000000000..99ad71e23
--- /dev/null
+++ b/dist/linea/basic_cards_diamonds.js
@@ -0,0 +1,80 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_cards_diamonds = void 0;
+var basic_cards_diamonds = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,59 16,45 36,5 63,19 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "31.899,14.004 28,6 1,20 19,59 32,52.964 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "35,41 46,36 45,24 34,29 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "9",
+ "x2": "37",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "23",
+ "x2": "6",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "43",
+ "y1": "53",
+ "x2": "42",
+ "y2": "55"
+ },
+ "children": []
+ }]
+};
+exports.basic_cards_diamonds = basic_cards_diamonds;
\ No newline at end of file
diff --git a/dist/linea/basic_cards_hearts.js b/dist/linea/basic_cards_hearts.js
new file mode 100644
index 000000000..7e524dc15
--- /dev/null
+++ b/dist/linea/basic_cards_hearts.js
@@ -0,0 +1,80 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_cards_hearts = void 0;
+var basic_cards_hearts = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,59 16,45 36,5 63,19 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "31.899,14.004 28,6 1,20 19,59 32,52.964 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "9",
+ "x2": "37",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "23",
+ "x2": "6",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "43",
+ "y1": "53",
+ "x2": "42",
+ "y2": "55"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M33,25c-2.848,5.281,3,15,3,15s11.151,0.28,14-5\r\n\tc1.18-2.188,1.377-5.718-1-7c-2.188-1.18-5.82-1.188-7,1c1.18-2.188,0.188-4.82-2-6C37.624,21.718,34.181,22.813,33,25z"
+ },
+ "children": []
+ }]
+};
+exports.basic_cards_hearts = basic_cards_hearts;
\ No newline at end of file
diff --git a/dist/linea/basic_case.js b/dist/linea/basic_case.js
new file mode 100644
index 000000000..ad43f37ae
--- /dev/null
+++ b/dist/linea/basic_case.js
@@ -0,0 +1,74 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_case = void 0;
+var basic_case = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "18",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "36"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "18",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "36"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "30",
+ "x2": "63",
+ "y2": "30"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,30 27,36 37,36 37,30 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M23,18c0,0,0-8,9-8s9,8,9,8"
+ },
+ "children": []
+ }]
+};
+exports.basic_case = basic_case;
\ No newline at end of file
diff --git a/dist/linea/basic_chronometer.js b/dist/linea/basic_chronometer.js
new file mode 100644
index 000000000..0e30f492d
--- /dev/null
+++ b/dist/linea/basic_chronometer.js
@@ -0,0 +1,339 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_chronometer = void 0;
+var basic_chronometer = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M51.799,15.202\r\n\t\tc10.936,10.933,10.936,28.662,0,39.595c-10.935,10.938-28.664,10.938-39.598,0c-10.935-10.933-10.935-28.662,0-39.595\r\n\t\tC23.135,4.266,40.864,4.266,51.799,15.202z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M51.799,15.202\r\n\t\tc10.936,10.933,10.936,28.662,0,39.595c-10.935,10.938-28.664,10.938-39.598,0c-10.935-10.933-10.935-28.662,0-39.595\r\n\t\tC23.135,4.266,40.864,4.266,51.799,15.202z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,7 32,1 38,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,7 32,1 38,1 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "1",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "1",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "63",
+ "x2": "32",
+ "y2": "59"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "63",
+ "x2": "32",
+ "y2": "59"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "11",
+ "x2": "32",
+ "y2": "7"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "11",
+ "x2": "32",
+ "y2": "7"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "35",
+ "x2": "8",
+ "y2": "35"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "35",
+ "x2": "8",
+ "y2": "35"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "35",
+ "x2": "60",
+ "y2": "35"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "35",
+ "x2": "60",
+ "y2": "35"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14.564",
+ "y1": "17.565",
+ "x2": "17.394",
+ "y2": "20.394"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14.564",
+ "y1": "17.565",
+ "x2": "17.394",
+ "y2": "20.394"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46.606",
+ "y1": "49.606",
+ "x2": "49.436",
+ "y2": "52.436"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46.606",
+ "y1": "49.606",
+ "x2": "49.436",
+ "y2": "52.436"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "49.436",
+ "y1": "17.565",
+ "x2": "46.607",
+ "y2": "20.394"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "49.436",
+ "y1": "17.565",
+ "x2": "46.607",
+ "y2": "20.394"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17.395",
+ "y1": "49.606",
+ "x2": "14.564",
+ "y2": "52.436"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17.395",
+ "y1": "49.606",
+ "x2": "14.564",
+ "y2": "52.436"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "21",
+ "x2": "32",
+ "y2": "33"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "21",
+ "x2": "32",
+ "y2": "33"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "35",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "35",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_chronometer = basic_chronometer;
\ No newline at end of file
diff --git a/dist/linea/basic_clessidre.js b/dist/linea/basic_clessidre.js
new file mode 100644
index 000000000..7387e1a2e
--- /dev/null
+++ b/dist/linea/basic_clessidre.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_clessidre = void 0;
+var basic_clessidre = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "14",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "36",
+ "height": "4"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "14",
+ "y": "59",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "36",
+ "height": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M18,59c0,0,0-8,0-14s29-19,29-25c0-2,0-15,0-15"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M47,59c0,0,0-8,0-14S18,26,18,20c0-2,0-15,0-15"
+ },
+ "children": []
+ }]
+};
+exports.basic_clessidre = basic_clessidre;
\ No newline at end of file
diff --git a/dist/linea/basic_clock.js b/dist/linea/basic_clock.js
new file mode 100644
index 000000000..b0ac1a620
--- /dev/null
+++ b/dist/linea/basic_clock.js
@@ -0,0 +1,159 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_clock = void 0;
+var basic_clock = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,12 32,32 41,41 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,12 32,32 41,41 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "32",
+ "x2": "8",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "32",
+ "x2": "8",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "32",
+ "x2": "60",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "32",
+ "x2": "60",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "60",
+ "x2": "32",
+ "y2": "56"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "60",
+ "x2": "32",
+ "y2": "56"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "8",
+ "x2": "32",
+ "y2": "4"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "8",
+ "x2": "32",
+ "y2": "4"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_clock = basic_clock;
\ No newline at end of file
diff --git a/dist/linea/basic_clockwise.js b/dist/linea/basic_clockwise.js
new file mode 100644
index 000000000..830d872cb
--- /dev/null
+++ b/dist/linea/basic_clockwise.js
@@ -0,0 +1,104 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_clockwise = void 0;
+var basic_clockwise = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,12 32,32 41,41 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "32",
+ "x2": "8",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "32",
+ "x2": "60",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "60",
+ "x2": "32",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "8",
+ "x2": "32",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,63c17.121,0,31-13.879,31-31S49.121,1,32,1"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,63C14.879,63,1,49.121,1,32\r\n\tc0-6.713,2.134-12.926,5.759-18l5.62-5.621"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "13,19 13,8 2,8 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_clockwise = basic_clockwise;
\ No newline at end of file
diff --git a/dist/linea/basic_cloud.js b/dist/linea/basic_cloud.js
new file mode 100644
index 000000000..07e5a305c
--- /dev/null
+++ b/dist/linea/basic_cloud.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_cloud = void 0;
+var basic_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"
+ },
+ "children": []
+ }]
+};
+exports.basic_cloud = basic_cloud;
\ No newline at end of file
diff --git a/dist/linea/basic_clubs.js b/dist/linea/basic_clubs.js
new file mode 100644
index 000000000..d93220357
--- /dev/null
+++ b/dist/linea/basic_clubs.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_clubs = void 0;
+var basic_clubs = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M30,38v6c0,0,0,19-7,19h9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,63h9c-7,0-7-19-7-19v-6"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M34,38\r\n\tc0,7.457,8.044,12.125,15.5,12.125c7.455,0,13.5-6.043,13.5-13.5s-6.045-13.5-13.5-13.5c-2.678,0-5.168,0.789-7.267,2.135\r\n\tc1.995-2.345,3.204-5.378,3.204-8.697c0-7.422-6.017-13.438-13.438-13.438S18.562,9.141,18.562,16.562\r\n\tc0,3.32,1.21,6.353,3.205,8.697c-2.1-1.345-4.59-2.135-7.268-2.135c-7.456,0-13.5,6.043-13.5,13.5s6.044,13.5,13.5,13.5\r\n\tC21.955,50.125,30,45.457,30,38"
+ },
+ "children": []
+ }]
+};
+exports.basic_clubs = basic_clubs;
\ No newline at end of file
diff --git a/dist/linea/basic_compass.js b/dist/linea/basic_compass.js
new file mode 100644
index 000000000..c042b88fe
--- /dev/null
+++ b/dist/linea/basic_compass.js
@@ -0,0 +1,109 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_compass = void 0;
+var basic_compass = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "35",
+ "r": "28.292"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "37,40 45,21 26,29 \r\n\t19,47 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "29",
+ "x2": "37",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M36.9,7C36.965,6.677,37,6.342,37,6\r\n\tc0-2.761-2.239-5-5-5s-5,2.239-5,5c0,0.342,0.035,0.677,0.1,1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "7",
+ "x2": "32",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "58",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "60",
+ "y1": "35",
+ "x2": "55",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "9",
+ "y1": "35",
+ "x2": "4",
+ "y2": "35"
+ },
+ "children": []
+ }]
+};
+exports.basic_compass = basic_compass;
\ No newline at end of file
diff --git a/dist/linea/basic_cup.js b/dist/linea/basic_cup.js
new file mode 100644
index 000000000..333e27216
--- /dev/null
+++ b/dist/linea/basic_cup.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_cup = void 0;
+var basic_cup = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16,27c0,4.418,6.059,8,16,8s16-3.582,16-8V1H16V27z\r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "63",
+ "x2": "44",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "35",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16,7H7c0,0,0,9,9,9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48,7h9c0,0,0,9-9,9"
+ },
+ "children": []
+ }]
+};
+exports.basic_cup = basic_cup;
\ No newline at end of file
diff --git a/dist/linea/basic_diamonds.js b/dist/linea/basic_diamonds.js
new file mode 100644
index 000000000..f58a3ce73
--- /dev/null
+++ b/dist/linea/basic_diamonds.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_diamonds = void 0;
+var basic_diamonds = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "33,63 56,32 33,1 10,32 "
+ },
+ "children": []
+ }]
+};
+exports.basic_diamonds = basic_diamonds;
\ No newline at end of file
diff --git a/dist/linea/basic_display.js b/dist/linea/basic_display.js
new file mode 100644
index 000000000..284e8b037
--- /dev/null
+++ b/dist/linea/basic_display.js
@@ -0,0 +1,106 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_display = void 0;
+var basic_display = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "10",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "41"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "10",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "63",
+ "x2": "42",
+ "y2": "63"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "63",
+ "x2": "42",
+ "y2": "63"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "63",
+ "x2": "32",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "63",
+ "x2": "32",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "43",
+ "x2": "64",
+ "y2": "43"
+ },
+ "children": []
+ }]
+};
+exports.basic_display = basic_display;
\ No newline at end of file
diff --git a/dist/linea/basic_download.js b/dist/linea/basic_download.js
new file mode 100644
index 000000000..6963f326c
--- /dev/null
+++ b/dist/linea/basic_download.js
@@ -0,0 +1,62 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_download = void 0;
+var basic_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,50 32,58 \r\n\t24,50 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "58",
+ "x2": "32",
+ "y2": "26"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "58",
+ "x2": "32",
+ "y2": "26"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "24,42 1,42 1,6 63,6 63,42 40,42 "
+ },
+ "children": []
+ }]
+};
+exports.basic_download = basic_download;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_bookmark_checck.js b/dist/linea/basic_elaboration_bookmark_checck.js
new file mode 100644
index 000000000..78ab0b0b7
--- /dev/null
+++ b/dist/linea/basic_elaboration_bookmark_checck.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_bookmark_checck = void 0;
+var basic_elaboration_bookmark_checck = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,1 46,1 46,62 32,48 18,62 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,22 30,29 \r\n\t43,16 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_bookmark_checck = basic_elaboration_bookmark_checck;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_bookmark_minus.js b/dist/linea/basic_elaboration_bookmark_minus.js
new file mode 100644
index 000000000..70fb94cad
--- /dev/null
+++ b/dist/linea/basic_elaboration_bookmark_minus.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_bookmark_minus = void 0;
+var basic_elaboration_bookmark_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "22",
+ "x2": "41",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,1 46,1 46,62 32,48 18,62 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_bookmark_minus = basic_elaboration_bookmark_minus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_bookmark_plus.js b/dist/linea/basic_elaboration_bookmark_plus.js
new file mode 100644
index 000000000..3ef6ef64c
--- /dev/null
+++ b/dist/linea/basic_elaboration_bookmark_plus.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_bookmark_plus = void 0;
+var basic_elaboration_bookmark_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "22",
+ "x2": "41",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "13",
+ "x2": "32",
+ "y2": "31"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,1 46,1 46,62 32,48 18,62 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_bookmark_plus = basic_elaboration_bookmark_plus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_bookmark_remove.js b/dist/linea/basic_elaboration_bookmark_remove.js
new file mode 100644
index 000000000..fd4b4be76
--- /dev/null
+++ b/dist/linea/basic_elaboration_bookmark_remove.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_bookmark_remove = void 0;
+var basic_elaboration_bookmark_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,1 46,1 46,62 32,48 18,62 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "29",
+ "x2": "25",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "29",
+ "x2": "39",
+ "y2": "15"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_bookmark_remove = basic_elaboration_bookmark_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_briefcase_check.js b/dist/linea/basic_elaboration_briefcase_check.js
new file mode 100644
index 000000000..35575cb7b
--- /dev/null
+++ b/dist/linea/basic_elaboration_briefcase_check.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_briefcase_check = void 0;
+var basic_elaboration_briefcase_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,22 30,29 \r\n\t43,16 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_briefcase_check = basic_elaboration_briefcase_check;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_briefcase_download.js b/dist/linea/basic_elaboration_briefcase_download.js
new file mode 100644
index 000000000..4ca99154b
--- /dev/null
+++ b/dist/linea/basic_elaboration_briefcase_download.js
@@ -0,0 +1,72 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_briefcase_download = void 0;
+var basic_elaboration_briefcase_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,25 32,33 \r\n\t24,25 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "33",
+ "x2": "32",
+ "y2": "13"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "33",
+ "x2": "32",
+ "y2": "13"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_briefcase_download = basic_elaboration_briefcase_download;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_briefcase_flagged.js b/dist/linea/basic_elaboration_briefcase_flagged.js
new file mode 100644
index 000000000..62f7aea42
--- /dev/null
+++ b/dist/linea/basic_elaboration_briefcase_flagged.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_briefcase_flagged = void 0;
+var basic_elaboration_briefcase_flagged = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "11",
+ "x2": "27",
+ "y2": "34"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,14 42,14 39.484,18 42,22 27,22 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_briefcase_flagged = basic_elaboration_briefcase_flagged;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_briefcase_minus.js b/dist/linea/basic_elaboration_briefcase_minus.js
new file mode 100644
index 000000000..9e0bc4966
--- /dev/null
+++ b/dist/linea/basic_elaboration_briefcase_minus.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_briefcase_minus = void 0;
+var basic_elaboration_briefcase_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "24",
+ "x2": "23",
+ "y2": "24"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_briefcase_minus = basic_elaboration_briefcase_minus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_briefcase_plus.js b/dist/linea/basic_elaboration_briefcase_plus.js
new file mode 100644
index 000000000..99e4d4726
--- /dev/null
+++ b/dist/linea/basic_elaboration_briefcase_plus.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_briefcase_plus = void 0;
+var basic_elaboration_briefcase_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "15",
+ "x2": "32",
+ "y2": "33"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "24",
+ "x2": "23",
+ "y2": "24"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_briefcase_plus = basic_elaboration_briefcase_plus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_briefcase_refresh.js b/dist/linea/basic_elaboration_briefcase_refresh.js
new file mode 100644
index 000000000..8ff3a9ab3
--- /dev/null
+++ b/dist/linea/basic_elaboration_briefcase_refresh.js
@@ -0,0 +1,73 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_briefcase_refresh = void 0;
+var basic_elaboration_briefcase_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,24c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,37 36,33 \r\n\t33,29 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,24c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,11 30,15 \r\n\t33,19 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_briefcase_refresh = basic_elaboration_briefcase_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_briefcase_remove.js b/dist/linea/basic_elaboration_briefcase_remove.js
new file mode 100644
index 000000000..c4733e727
--- /dev/null
+++ b/dist/linea/basic_elaboration_briefcase_remove.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_briefcase_remove = void 0;
+var basic_elaboration_briefcase_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "31",
+ "x2": "25",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "31",
+ "x2": "39",
+ "y2": "17"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_briefcase_remove = basic_elaboration_briefcase_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_briefcase_search.js b/dist/linea/basic_elaboration_briefcase_search.js
new file mode 100644
index 000000000..bcb846220
--- /dev/null
+++ b/dist/linea/basic_elaboration_briefcase_search.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_briefcase_search = void 0;
+var basic_elaboration_briefcase_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "21",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "21",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "25",
+ "x2": "41",
+ "y2": "33"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "25",
+ "x2": "41",
+ "y2": "33"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_briefcase_search = basic_elaboration_briefcase_search;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_briefcase_star.js b/dist/linea/basic_elaboration_briefcase_star.js
new file mode 100644
index 000000000..73134908a
--- /dev/null
+++ b/dist/linea/basic_elaboration_briefcase_star.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_briefcase_star = void 0;
+var basic_elaboration_briefcase_star = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "round",
+ "stroke-miterlimit": "10",
+ "points": "32,27 25.875,31 \r\n\t28,24 22,20 29.213,20 32,12 35,20 42,20 36,24 37.938,31 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_briefcase_star = basic_elaboration_briefcase_star;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_briefcase_upload.js b/dist/linea/basic_elaboration_briefcase_upload.js
new file mode 100644
index 000000000..44fb01720
--- /dev/null
+++ b/dist/linea/basic_elaboration_briefcase_upload.js
@@ -0,0 +1,72 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_briefcase_upload = void 0;
+var basic_elaboration_briefcase_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,22 \r\n\t31.998,14 39.998,22 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "14",
+ "x2": "31.998",
+ "y2": "34"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "14",
+ "x2": "31.998",
+ "y2": "34"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_briefcase_upload = basic_elaboration_briefcase_upload;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_browser_check.js b/dist/linea/basic_elaboration_browser_check.js
new file mode 100644
index 000000000..a714afbba
--- /dev/null
+++ b/dist/linea/basic_elaboration_browser_check.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_browser_check = void 0;
+var basic_elaboration_browser_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,35 30,42 \r\n\t43,29 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_browser_check = basic_elaboration_browser_check;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_browser_download.js b/dist/linea/basic_elaboration_browser_download.js
new file mode 100644
index 000000000..72e4e4318
--- /dev/null
+++ b/dist/linea/basic_elaboration_browser_download.js
@@ -0,0 +1,117 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_browser_download = void 0;
+var basic_elaboration_browser_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,38 32,46 \r\n\t24,38 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "46",
+ "x2": "32",
+ "y2": "26"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "46",
+ "x2": "32",
+ "y2": "26"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_browser_download = basic_elaboration_browser_download;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_browser_minus.js b/dist/linea/basic_elaboration_browser_minus.js
new file mode 100644
index 000000000..270aa128c
--- /dev/null
+++ b/dist/linea/basic_elaboration_browser_minus.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_browser_minus = void 0;
+var basic_elaboration_browser_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "37",
+ "x2": "23",
+ "y2": "37"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_browser_minus = basic_elaboration_browser_minus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_browser_plus.js b/dist/linea/basic_elaboration_browser_plus.js
new file mode 100644
index 000000000..089659fb2
--- /dev/null
+++ b/dist/linea/basic_elaboration_browser_plus.js
@@ -0,0 +1,102 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_browser_plus = void 0;
+var basic_elaboration_browser_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "28",
+ "x2": "32",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "37",
+ "x2": "23",
+ "y2": "37"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_browser_plus = basic_elaboration_browser_plus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_browser_refresh.js b/dist/linea/basic_elaboration_browser_refresh.js
new file mode 100644
index 000000000..8507c5b44
--- /dev/null
+++ b/dist/linea/basic_elaboration_browser_refresh.js
@@ -0,0 +1,118 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_browser_refresh = void 0;
+var basic_elaboration_browser_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,37c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,50 36,46 \r\n\t33,42 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,37c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,24 30,28 \r\n\t33,32 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_browser_refresh = basic_elaboration_browser_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_browser_remove.js b/dist/linea/basic_elaboration_browser_remove.js
new file mode 100644
index 000000000..7bb287f5a
--- /dev/null
+++ b/dist/linea/basic_elaboration_browser_remove.js
@@ -0,0 +1,102 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_browser_remove = void 0;
+var basic_elaboration_browser_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "44",
+ "x2": "25",
+ "y2": "30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "44",
+ "x2": "39",
+ "y2": "30"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_browser_remove = basic_elaboration_browser_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_browser_search.js b/dist/linea/basic_elaboration_browser_search.js
new file mode 100644
index 000000000..fb50f72e1
--- /dev/null
+++ b/dist/linea/basic_elaboration_browser_search.js
@@ -0,0 +1,130 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_browser_search = void 0;
+var basic_elaboration_browser_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "33",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "33",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "37",
+ "x2": "41",
+ "y2": "45"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "37",
+ "x2": "41",
+ "y2": "45"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_browser_search = basic_elaboration_browser_search;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_browser_star.js b/dist/linea/basic_elaboration_browser_star.js
new file mode 100644
index 000000000..b18842e21
--- /dev/null
+++ b/dist/linea/basic_elaboration_browser_star.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_browser_star = void 0;
+var basic_elaboration_browser_star = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "round",
+ "stroke-miterlimit": "10",
+ "points": "32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_browser_star = basic_elaboration_browser_star;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_browser_upload.js b/dist/linea/basic_elaboration_browser_upload.js
new file mode 100644
index 000000000..bd300158b
--- /dev/null
+++ b/dist/linea/basic_elaboration_browser_upload.js
@@ -0,0 +1,117 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_browser_upload = void 0;
+var basic_elaboration_browser_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,35 \r\n\t31.998,27 39.998,35 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "27",
+ "x2": "31.998",
+ "y2": "47"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "27",
+ "x2": "31.998",
+ "y2": "47"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_browser_upload = basic_elaboration_browser_upload;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_check.js b/dist/linea/basic_elaboration_calendar_check.js
new file mode 100644
index 000000000..dedd24d8e
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_check.js
@@ -0,0 +1,137 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_check = void 0;
+var basic_elaboration_calendar_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,36 30,43 \r\n\t43,30 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_check = basic_elaboration_calendar_check;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_cloud.js b/dist/linea/basic_elaboration_calendar_cloud.js
new file mode 100644
index 000000000..4ac21e5ce
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_cloud.js
@@ -0,0 +1,136 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_cloud = void 0;
+var basic_elaboration_calendar_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34.887,44H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_cloud = basic_elaboration_calendar_cloud;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_download.js b/dist/linea/basic_elaboration_calendar_download.js
new file mode 100644
index 000000000..9abceafef
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_download.js
@@ -0,0 +1,167 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_download = void 0;
+var basic_elaboration_calendar_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,39 32,47 \r\n\t24,39 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "47",
+ "x2": "32",
+ "y2": "27"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "47",
+ "x2": "32",
+ "y2": "27"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_download = basic_elaboration_calendar_download;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_empty.js b/dist/linea/basic_elaboration_calendar_empty.js
new file mode 100644
index 000000000..48f4e2271
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_empty.js
@@ -0,0 +1,126 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_empty = void 0;
+var basic_elaboration_calendar_empty = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_empty = basic_elaboration_calendar_empty;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_flagged.js b/dist/linea/basic_elaboration_calendar_flagged.js
new file mode 100644
index 000000000..5fbf3a5b3
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_flagged.js
@@ -0,0 +1,149 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_flagged = void 0;
+var basic_elaboration_calendar_flagged = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "27",
+ "x2": "27",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,30 42,30 39.484,34 42,38 27,38 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_flagged = basic_elaboration_calendar_flagged;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_heart.js b/dist/linea/basic_elaboration_calendar_heart.js
new file mode 100644
index 000000000..96c44370b
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_heart.js
@@ -0,0 +1,136 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_heart = void 0;
+var basic_elaboration_calendar_heart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,35c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,30,22,32.238,22,35z"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_heart = basic_elaboration_calendar_heart;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_minus.js b/dist/linea/basic_elaboration_calendar_minus.js
new file mode 100644
index 000000000..38149589e
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_minus.js
@@ -0,0 +1,139 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_minus = void 0;
+var basic_elaboration_calendar_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "38",
+ "x2": "23",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_minus = basic_elaboration_calendar_minus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_next.js b/dist/linea/basic_elaboration_calendar_next.js
new file mode 100644
index 000000000..cc856f8ee
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_next.js
@@ -0,0 +1,167 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_next = void 0;
+var basic_elaboration_calendar_next = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "34,30 42,38 \r\n\t34,46 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "38",
+ "x2": "22",
+ "y2": "38"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "38",
+ "x2": "22",
+ "y2": "38"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_next = basic_elaboration_calendar_next;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_noaccess.js b/dist/linea/basic_elaboration_calendar_noaccess.js
new file mode 100644
index 000000000..f3205d7b2
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_noaccess.js
@@ -0,0 +1,151 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_noaccess = void 0;
+var basic_elaboration_calendar_noaccess = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "38",
+ "r": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25.834",
+ "y1": "31.834",
+ "x2": "38.166",
+ "y2": "44.166"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_noaccess = basic_elaboration_calendar_noaccess;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_pencil.js b/dist/linea/basic_elaboration_calendar_pencil.js
new file mode 100644
index 000000000..325b9657a
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_pencil.js
@@ -0,0 +1,176 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_pencil = void 0;
+var basic_elaboration_calendar_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,43 22,48 27,47 42,32 38,28 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,43 22,48 27,47 42,32 38,28 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "35",
+ "x2": "35",
+ "y2": "31"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "35",
+ "x2": "35",
+ "y2": "31"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_calendar_pencil = basic_elaboration_calendar_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_plus.js b/dist/linea/basic_elaboration_calendar_plus.js
new file mode 100644
index 000000000..8267908c2
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_plus.js
@@ -0,0 +1,152 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_plus = void 0;
+var basic_elaboration_calendar_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "29",
+ "x2": "32",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "38",
+ "x2": "23",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_plus = basic_elaboration_calendar_plus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_previous.js b/dist/linea/basic_elaboration_calendar_previous.js
new file mode 100644
index 000000000..118ca6d26
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_previous.js
@@ -0,0 +1,150 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_previous = void 0;
+var basic_elaboration_calendar_previous = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "30.001,46 \r\n\t22.001,38 30.001,30 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22.001",
+ "y1": "38",
+ "x2": "42.001",
+ "y2": "38"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_previous = basic_elaboration_calendar_previous;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_refresh.js b/dist/linea/basic_elaboration_calendar_refresh.js
new file mode 100644
index 000000000..f1d497f0d
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_refresh.js
@@ -0,0 +1,168 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_refresh = void 0;
+var basic_elaboration_calendar_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,38c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,51 36,47 \r\n\t33,43 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,38c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,25 30,29 \r\n\t33,33 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_refresh = basic_elaboration_calendar_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_remove.js b/dist/linea/basic_elaboration_calendar_remove.js
new file mode 100644
index 000000000..a84dd6361
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_remove.js
@@ -0,0 +1,152 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_remove = void 0;
+var basic_elaboration_calendar_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "45",
+ "x2": "25",
+ "y2": "31"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "45",
+ "x2": "39",
+ "y2": "31"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_remove = basic_elaboration_calendar_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_search.js b/dist/linea/basic_elaboration_calendar_search.js
new file mode 100644
index 000000000..5a7ae4cfc
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_search.js
@@ -0,0 +1,180 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_search = void 0;
+var basic_elaboration_calendar_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "35",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "35",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "39",
+ "x2": "41",
+ "y2": "47"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "39",
+ "x2": "41",
+ "y2": "47"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_search = basic_elaboration_calendar_search;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_star.js b/dist/linea/basic_elaboration_calendar_star.js
new file mode 100644
index 000000000..fa464f06d
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_star.js
@@ -0,0 +1,137 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_star = void 0;
+var basic_elaboration_calendar_star = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "round",
+ "stroke-miterlimit": "10",
+ "points": "32,43 25.875,47 \r\n\t28,40 22,36 29.213,36 32,28 35,36 42,36 36,40 37.938,47 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_star = basic_elaboration_calendar_star;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_calendar_upload.js b/dist/linea/basic_elaboration_calendar_upload.js
new file mode 100644
index 000000000..c7c7e5a2f
--- /dev/null
+++ b/dist/linea/basic_elaboration_calendar_upload.js
@@ -0,0 +1,167 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_calendar_upload = void 0;
+var basic_elaboration_calendar_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,36 \r\n\t31.998,28 39.998,36 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "28",
+ "x2": "31.998",
+ "y2": "48"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "28",
+ "x2": "31.998",
+ "y2": "48"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "10",
+ "x2": "18",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,10 1,10 1,58 63,58 63,10 52,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "8"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "18",
+ "x2": "63",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_calendar_upload = basic_elaboration_calendar_upload;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_cloud_check.js b/dist/linea/basic_elaboration_cloud_check.js
new file mode 100644
index 000000000..5ef10c86b
--- /dev/null
+++ b/dist/linea/basic_elaboration_cloud_check.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_cloud_check = void 0;
+var basic_elaboration_cloud_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,34 30,41 \r\n\t43,28 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_cloud_check = basic_elaboration_cloud_check;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_cloud_download.js b/dist/linea/basic_elaboration_cloud_download.js
new file mode 100644
index 000000000..a1660d322
--- /dev/null
+++ b/dist/linea/basic_elaboration_cloud_download.js
@@ -0,0 +1,62 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_cloud_download = void 0;
+var basic_elaboration_cloud_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,37 32,45 \r\n\t24,37 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "45",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "45",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_cloud_download = basic_elaboration_cloud_download;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_cloud_minus.js b/dist/linea/basic_elaboration_cloud_minus.js
new file mode 100644
index 000000000..02c4da11b
--- /dev/null
+++ b/dist/linea/basic_elaboration_cloud_minus.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_cloud_minus = void 0;
+var basic_elaboration_cloud_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "34",
+ "x2": "23",
+ "y2": "34"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_cloud_minus = basic_elaboration_cloud_minus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_cloud_noaccess.js b/dist/linea/basic_elaboration_cloud_noaccess.js
new file mode 100644
index 000000000..7a09a512d
--- /dev/null
+++ b/dist/linea/basic_elaboration_cloud_noaccess.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_cloud_noaccess = void 0;
+var basic_elaboration_cloud_noaccess = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "34",
+ "r": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25.834",
+ "y1": "27.834",
+ "x2": "38.166",
+ "y2": "40.166"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_cloud_noaccess = basic_elaboration_cloud_noaccess;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_cloud_plus.js b/dist/linea/basic_elaboration_cloud_plus.js
new file mode 100644
index 000000000..9b2bdec05
--- /dev/null
+++ b/dist/linea/basic_elaboration_cloud_plus.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_cloud_plus = void 0;
+var basic_elaboration_cloud_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "25",
+ "x2": "32",
+ "y2": "43"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "34",
+ "x2": "23",
+ "y2": "34"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_cloud_plus = basic_elaboration_cloud_plus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_cloud_refresh.js b/dist/linea/basic_elaboration_cloud_refresh.js
new file mode 100644
index 000000000..20f6e73f6
--- /dev/null
+++ b/dist/linea/basic_elaboration_cloud_refresh.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_cloud_refresh = void 0;
+var basic_elaboration_cloud_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,32c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,45 36,41 \r\n\t33,37 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,32c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,19 30,23 \r\n\t33,27 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_cloud_refresh = basic_elaboration_cloud_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_cloud_remove.js b/dist/linea/basic_elaboration_cloud_remove.js
new file mode 100644
index 000000000..8ecc70474
--- /dev/null
+++ b/dist/linea/basic_elaboration_cloud_remove.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_cloud_remove = void 0;
+var basic_elaboration_cloud_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "41",
+ "x2": "25",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "41",
+ "x2": "39",
+ "y2": "27"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_cloud_remove = basic_elaboration_cloud_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_cloud_search.js b/dist/linea/basic_elaboration_cloud_search.js
new file mode 100644
index 000000000..3de8f2bb0
--- /dev/null
+++ b/dist/linea/basic_elaboration_cloud_search.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_cloud_search = void 0;
+var basic_elaboration_cloud_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "31",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "31",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "35",
+ "x2": "41",
+ "y2": "43"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "35",
+ "x2": "41",
+ "y2": "43"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_cloud_search = basic_elaboration_cloud_search;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_cloud_upload.js b/dist/linea/basic_elaboration_cloud_upload.js
new file mode 100644
index 000000000..545b2bccd
--- /dev/null
+++ b/dist/linea/basic_elaboration_cloud_upload.js
@@ -0,0 +1,62 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_cloud_upload = void 0;
+var basic_elaboration_cloud_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,34 \r\n\t31.998,26 39.998,34 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "26",
+ "x2": "31.998",
+ "y2": "46"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "26",
+ "x2": "31.998",
+ "y2": "46"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_cloud_upload = basic_elaboration_cloud_upload;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_check.js b/dist/linea/basic_elaboration_document_check.js
new file mode 100644
index 000000000..25c32af74
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_check.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_check = void 0;
+var basic_elaboration_document_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,36 30,43 \r\n\t43,30 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_check = basic_elaboration_document_check;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_cloud.js b/dist/linea/basic_elaboration_document_cloud.js
new file mode 100644
index 000000000..1710a5be4
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_cloud.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_cloud = void 0;
+var basic_elaboration_document_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_cloud = basic_elaboration_document_cloud;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_download.js b/dist/linea/basic_elaboration_document_download.js
new file mode 100644
index 000000000..ad6d88e0d
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_download.js
@@ -0,0 +1,96 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_download = void 0;
+var basic_elaboration_document_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,37 32,45 \r\n\t24,37 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "45",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "45",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_document_download = basic_elaboration_document_download;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_flagged.js b/dist/linea/basic_elaboration_document_flagged.js
new file mode 100644
index 000000000..b174641d1
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_flagged.js
@@ -0,0 +1,78 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_flagged = void 0;
+var basic_elaboration_document_flagged = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "21",
+ "x2": "27",
+ "y2": "44"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,24 42,24 39.484,28 42,32 27,32 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_flagged = basic_elaboration_document_flagged;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_graph.js b/dist/linea/basic_elaboration_document_graph.js
new file mode 100644
index 000000000..b2b35c533
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_graph.js
@@ -0,0 +1,153 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_graph = void 0;
+var basic_elaboration_document_graph = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,44 27,37 23,37 23,44 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,44 27,37 23,37 23,44 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "34,44 34,27 30,27 30,44 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "34,44 34,27 30,27 30,44 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,44 41,34 37,34 37,44 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,44 41,34 37,34 37,44 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "45",
+ "x2": "44",
+ "y2": "45"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "45",
+ "x2": "44",
+ "y2": "45"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_document_graph = basic_elaboration_document_graph;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_heart.js b/dist/linea/basic_elaboration_document_heart.js
new file mode 100644
index 000000000..0f9876ca8
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_heart.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_heart = void 0;
+var basic_elaboration_document_heart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,33c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,28,22,30.238,22,33z"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_heart = basic_elaboration_document_heart;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_minus.js b/dist/linea/basic_elaboration_document_minus.js
new file mode 100644
index 000000000..09eb6c294
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_minus.js
@@ -0,0 +1,68 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_minus = void 0;
+var basic_elaboration_document_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "36",
+ "x2": "23",
+ "y2": "36"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_minus = basic_elaboration_document_minus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_next.js b/dist/linea/basic_elaboration_document_next.js
new file mode 100644
index 000000000..cef1f8d2f
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_next.js
@@ -0,0 +1,96 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_next = void 0;
+var basic_elaboration_document_next = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "34,28 42,36 \r\n\t34,44 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "36",
+ "x2": "22",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "36",
+ "x2": "22",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_document_next = basic_elaboration_document_next;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_noaccess.js b/dist/linea/basic_elaboration_document_noaccess.js
new file mode 100644
index 000000000..48868cb0a
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_noaccess.js
@@ -0,0 +1,80 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_noaccess = void 0;
+var basic_elaboration_document_noaccess = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "36",
+ "r": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25.834",
+ "y1": "29.834",
+ "x2": "38.166",
+ "y2": "42.166"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_noaccess = basic_elaboration_document_noaccess;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_note.js b/dist/linea/basic_elaboration_document_note.js
new file mode 100644
index 000000000..22f1d6f2c
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_note.js
@@ -0,0 +1,153 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_note = void 0;
+var basic_elaboration_document_note = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "41",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "41",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "43",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "43",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,41 38,26 28,28 28,43 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,41 38,26 28,28 28,43 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "32",
+ "x2": "38",
+ "y2": "30"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "32",
+ "x2": "38",
+ "y2": "30"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_document_note = basic_elaboration_document_note;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_pencil.js b/dist/linea/basic_elaboration_document_pencil.js
new file mode 100644
index 000000000..53976f007
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_pencil.js
@@ -0,0 +1,105 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_pencil = void 0;
+var basic_elaboration_document_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 22,46 27,45 42,30 38,26 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 22,46 27,45 42,30 38,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "33",
+ "x2": "35",
+ "y2": "29"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "33",
+ "x2": "35",
+ "y2": "29"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_document_pencil = basic_elaboration_document_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_picture.js b/dist/linea/basic_elaboration_document_picture.js
new file mode 100644
index 000000000..6be3c60b2
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_picture.js
@@ -0,0 +1,117 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_picture = void 0;
+var basic_elaboration_document_picture = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "29",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "14"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "29",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,41 29,34 33,39 35,37 41,42 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,41 29,34 33,39 35,37 41,42 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "39",
+ "cy": "32",
+ "r": "3"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_picture = basic_elaboration_document_picture;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_plus.js b/dist/linea/basic_elaboration_document_plus.js
new file mode 100644
index 000000000..2c5ebf5ae
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_plus.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_plus = void 0;
+var basic_elaboration_document_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "27",
+ "x2": "32",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "36",
+ "x2": "23",
+ "y2": "36"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_plus = basic_elaboration_document_plus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_previous.js b/dist/linea/basic_elaboration_document_previous.js
new file mode 100644
index 000000000..448e8c040
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_previous.js
@@ -0,0 +1,96 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_previous = void 0;
+var basic_elaboration_document_previous = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "30.001,44 \r\n\t22.001,36 30.001,28 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22.001",
+ "y1": "36",
+ "x2": "42.001",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22.001",
+ "y1": "36",
+ "x2": "42.001",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_document_previous = basic_elaboration_document_previous;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_refresh.js b/dist/linea/basic_elaboration_document_refresh.js
new file mode 100644
index 000000000..3a7e034ef
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_refresh.js
@@ -0,0 +1,97 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_refresh = void 0;
+var basic_elaboration_document_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,36c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,49 36,45 \r\n\t33,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,36c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,23 30,27 \r\n\t33,31 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_refresh = basic_elaboration_document_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_remove.js b/dist/linea/basic_elaboration_document_remove.js
new file mode 100644
index 000000000..e8f5e6a8d
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_remove.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_remove = void 0;
+var basic_elaboration_document_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "44",
+ "x2": "25",
+ "y2": "30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "44",
+ "x2": "39",
+ "y2": "30"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_remove = basic_elaboration_document_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_search.js b/dist/linea/basic_elaboration_document_search.js
new file mode 100644
index 000000000..e595bdbd4
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_search.js
@@ -0,0 +1,109 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_search = void 0;
+var basic_elaboration_document_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "35",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "35",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "39",
+ "x2": "41",
+ "y2": "47"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "39",
+ "x2": "41",
+ "y2": "47"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_document_search = basic_elaboration_document_search;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_star.js b/dist/linea/basic_elaboration_document_star.js
new file mode 100644
index 000000000..bc9113bf8
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_star.js
@@ -0,0 +1,66 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_star = void 0;
+var basic_elaboration_document_star = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "round",
+ "stroke-miterlimit": "10",
+ "points": "32,39 25.875,43 \r\n\t28,36 22,32 29.213,32 32,24 35,32 42,32 36,36 37.938,43 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_document_star = basic_elaboration_document_star;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_document_upload.js b/dist/linea/basic_elaboration_document_upload.js
new file mode 100644
index 000000000..31ba6a504
--- /dev/null
+++ b/dist/linea/basic_elaboration_document_upload.js
@@ -0,0 +1,96 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_document_upload = void 0;
+var basic_elaboration_document_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,34 \r\n\t31.998,26 39.998,34 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "26",
+ "x2": "31.998",
+ "y2": "46"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "26",
+ "x2": "31.998",
+ "y2": "46"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_document_upload = basic_elaboration_document_upload;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_check.js b/dist/linea/basic_elaboration_folder_check.js
new file mode 100644
index 000000000..dfb47706e
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_check.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_check = void 0;
+var basic_elaboration_folder_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,36 30,43 \r\n\t43,30 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_check = basic_elaboration_folder_check;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_cloud.js b/dist/linea/basic_elaboration_folder_cloud.js
new file mode 100644
index 000000000..bbf9ad989
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_cloud.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_cloud = void 0;
+var basic_elaboration_folder_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_cloud = basic_elaboration_folder_cloud;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_document.js b/dist/linea/basic_elaboration_folder_document.js
new file mode 100644
index 000000000..37aa00b1b
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_document.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_document = void 0;
+var basic_elaboration_folder_document = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,26 39,26 39,46 25,46 25,33 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,26 39,26 39,46 25,46 25,33 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,33 32,33 32,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,33 32,33 32,26 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_folder_document = basic_elaboration_folder_document;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_download.js b/dist/linea/basic_elaboration_folder_download.js
new file mode 100644
index 000000000..98c5e4db7
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_download.js
@@ -0,0 +1,62 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_download = void 0;
+var basic_elaboration_folder_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,37 32,45 \r\n\t24,37 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "45",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "45",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_folder_download = basic_elaboration_folder_download;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_flagged.js b/dist/linea/basic_elaboration_folder_flagged.js
new file mode 100644
index 000000000..42729016c
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_flagged.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_flagged = void 0;
+var basic_elaboration_folder_flagged = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "23",
+ "x2": "27",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,26 42,26 39.484,30 42,34 27,34 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_flagged = basic_elaboration_folder_flagged;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_graph.js b/dist/linea/basic_elaboration_folder_graph.js
new file mode 100644
index 000000000..300f7a9fc
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_graph.js
@@ -0,0 +1,119 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_graph = void 0;
+var basic_elaboration_folder_graph = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,44 27,37 23,37 23,44 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,44 27,37 23,37 23,44 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "34,44 34,27 30,27 30,44 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "34,44 34,27 30,27 30,44 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,44 41,34 37,34 37,44 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,44 41,34 37,34 37,44 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "45",
+ "x2": "44",
+ "y2": "45"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "45",
+ "x2": "44",
+ "y2": "45"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_folder_graph = basic_elaboration_folder_graph;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_heart.js b/dist/linea/basic_elaboration_folder_heart.js
new file mode 100644
index 000000000..c59a137cc
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_heart.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_heart = void 0;
+var basic_elaboration_folder_heart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,33c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,28,22,30.238,22,33z"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_heart = basic_elaboration_folder_heart;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_minus.js b/dist/linea/basic_elaboration_folder_minus.js
new file mode 100644
index 000000000..898ab0ebe
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_minus.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_minus = void 0;
+var basic_elaboration_folder_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "36",
+ "x2": "23",
+ "y2": "36"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_minus = basic_elaboration_folder_minus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_next.js b/dist/linea/basic_elaboration_folder_next.js
new file mode 100644
index 000000000..78123dc98
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_next.js
@@ -0,0 +1,62 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_next = void 0;
+var basic_elaboration_folder_next = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "34,28 42,36 \r\n\t34,44 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "36",
+ "x2": "22",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "36",
+ "x2": "22",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_folder_next = basic_elaboration_folder_next;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_noaccess.js b/dist/linea/basic_elaboration_folder_noaccess.js
new file mode 100644
index 000000000..17c2a978f
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_noaccess.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_noaccess = void 0;
+var basic_elaboration_folder_noaccess = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "36",
+ "r": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25.834",
+ "y1": "29.834",
+ "x2": "38.166",
+ "y2": "42.166"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_noaccess = basic_elaboration_folder_noaccess;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_note.js b/dist/linea/basic_elaboration_folder_note.js
new file mode 100644
index 000000000..5bcba4d06
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_note.js
@@ -0,0 +1,119 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_note = void 0;
+var basic_elaboration_folder_note = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "41",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "41",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "43",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "43",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,41 38,26 28,28 28,43 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,41 38,26 28,28 28,43 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "32",
+ "x2": "38",
+ "y2": "30"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "32",
+ "x2": "38",
+ "y2": "30"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_folder_note = basic_elaboration_folder_note;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_pencil.js b/dist/linea/basic_elaboration_folder_pencil.js
new file mode 100644
index 000000000..13a059f5b
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_pencil.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_pencil = void 0;
+var basic_elaboration_folder_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 22,46 27,45 42,30 38,26 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 22,46 27,45 42,30 38,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "33",
+ "x2": "35",
+ "y2": "29"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "33",
+ "x2": "35",
+ "y2": "29"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_folder_pencil = basic_elaboration_folder_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_picture.js b/dist/linea/basic_elaboration_folder_picture.js
new file mode 100644
index 000000000..a607cd9cd
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_picture.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_picture = void 0;
+var basic_elaboration_folder_picture = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "29",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "14"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "29",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,41 29,34 33,39 35,37 41,42 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,41 29,34 33,39 35,37 41,42 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "39",
+ "cy": "32",
+ "r": "3"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_picture = basic_elaboration_folder_picture;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_plus.js b/dist/linea/basic_elaboration_folder_plus.js
new file mode 100644
index 000000000..6a9c0d097
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_plus.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_plus = void 0;
+var basic_elaboration_folder_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "27",
+ "x2": "32",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "36",
+ "x2": "23",
+ "y2": "36"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_plus = basic_elaboration_folder_plus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_previous.js b/dist/linea/basic_elaboration_folder_previous.js
new file mode 100644
index 000000000..ec9296632
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_previous.js
@@ -0,0 +1,62 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_previous = void 0;
+var basic_elaboration_folder_previous = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "30.001,44 \r\n\t22.001,36 30.001,28 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22.001",
+ "y1": "36",
+ "x2": "42.001",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22.001",
+ "y1": "36",
+ "x2": "42.001",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_folder_previous = basic_elaboration_folder_previous;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_refresh.js b/dist/linea/basic_elaboration_folder_refresh.js
new file mode 100644
index 000000000..55caf2d5a
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_refresh.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_refresh = void 0;
+var basic_elaboration_folder_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,36c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,49 36,45 \r\n\t33,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,36c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,23 30,27 \r\n\t33,31 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_refresh = basic_elaboration_folder_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_remove.js b/dist/linea/basic_elaboration_folder_remove.js
new file mode 100644
index 000000000..61ae2b2b5
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_remove.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_remove = void 0;
+var basic_elaboration_folder_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "44",
+ "x2": "25",
+ "y2": "30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "44",
+ "x2": "39",
+ "y2": "30"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_remove = basic_elaboration_folder_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_search.js b/dist/linea/basic_elaboration_folder_search.js
new file mode 100644
index 000000000..5bf24b7ad
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_search.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_search = void 0;
+var basic_elaboration_folder_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "35",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "35",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "39",
+ "x2": "41",
+ "y2": "47"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "39",
+ "x2": "41",
+ "y2": "47"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_folder_search = basic_elaboration_folder_search;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_star.js b/dist/linea/basic_elaboration_folder_star.js
new file mode 100644
index 000000000..403068336
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_star.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_star = void 0;
+var basic_elaboration_folder_star = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "round",
+ "stroke-miterlimit": "10",
+ "points": "32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_folder_star = basic_elaboration_folder_star;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_folder_upload.js b/dist/linea/basic_elaboration_folder_upload.js
new file mode 100644
index 000000000..508766167
--- /dev/null
+++ b/dist/linea/basic_elaboration_folder_upload.js
@@ -0,0 +1,62 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_folder_upload = void 0;
+var basic_elaboration_folder_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,34 \r\n\t31.998,26 39.998,34 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "26",
+ "x2": "31.998",
+ "y2": "46"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "26",
+ "x2": "31.998",
+ "y2": "46"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_folder_upload = basic_elaboration_folder_upload;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_check.js b/dist/linea/basic_elaboration_mail_check.js
new file mode 100644
index 000000000..32a43ea4e
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_check.js
@@ -0,0 +1,86 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_check = void 0;
+var basic_elaboration_mail_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,20 30,27 \r\n\t43,14 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_check = basic_elaboration_mail_check;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_cloud.js b/dist/linea/basic_elaboration_mail_cloud.js
new file mode 100644
index 000000000..8a2f0a3ce
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_cloud.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_cloud = void 0;
+var basic_elaboration_mail_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34.887,28H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_cloud = basic_elaboration_mail_cloud;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_document.js b/dist/linea/basic_elaboration_mail_document.js
new file mode 100644
index 000000000..1a3750e8f
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_document.js
@@ -0,0 +1,119 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_document = void 0;
+var basic_elaboration_mail_document = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,10 39,10 39,30 25,30 25,17 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,10 39,10 39,30 25,30 25,17 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,17 32,17 32,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,17 32,17 32,10 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_document = basic_elaboration_mail_document;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_download.js b/dist/linea/basic_elaboration_mail_download.js
new file mode 100644
index 000000000..47e1ff4bb
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_download.js
@@ -0,0 +1,116 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_download = void 0;
+var basic_elaboration_mail_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,23 32,31 \r\n\t24,23 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "31",
+ "x2": "32",
+ "y2": "11"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "31",
+ "x2": "32",
+ "y2": "11"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_download = basic_elaboration_mail_download;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_flagged.js b/dist/linea/basic_elaboration_mail_flagged.js
new file mode 100644
index 000000000..1a81ac371
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_flagged.js
@@ -0,0 +1,98 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_flagged = void 0;
+var basic_elaboration_mail_flagged = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "9",
+ "x2": "27",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,12 42,12 39.484,16 42,20 27,20 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_mail_flagged = basic_elaboration_mail_flagged;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_heart.js b/dist/linea/basic_elaboration_mail_heart.js
new file mode 100644
index 000000000..2fde4b582
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_heart.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_heart = void 0;
+var basic_elaboration_mail_heart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,19c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,14,22,16.238,22,19z"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_mail_heart = basic_elaboration_mail_heart;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_next.js b/dist/linea/basic_elaboration_mail_next.js
new file mode 100644
index 000000000..fb3a77da6
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_next.js
@@ -0,0 +1,116 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_next = void 0;
+var basic_elaboration_mail_next = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "34,14 42,22 \r\n\t34,30 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "22",
+ "x2": "22",
+ "y2": "22"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "22",
+ "x2": "22",
+ "y2": "22"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_next = basic_elaboration_mail_next;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_noaccess.js b/dist/linea/basic_elaboration_mail_noaccess.js
new file mode 100644
index 000000000..6c8f9e0fe
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_noaccess.js
@@ -0,0 +1,100 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_noaccess = void 0;
+var basic_elaboration_mail_noaccess = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "22",
+ "r": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25.834",
+ "y1": "15.834",
+ "x2": "38.166",
+ "y2": "28.166"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_noaccess = basic_elaboration_mail_noaccess;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_note.js b/dist/linea/basic_elaboration_mail_note.js
new file mode 100644
index 000000000..0f4d615d3
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_note.js
@@ -0,0 +1,173 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_note = void 0;
+var basic_elaboration_mail_note = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "27",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "27",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "29",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "29",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,27 38,12 28,14 28,29 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,27 38,12 28,14 28,29 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "18",
+ "x2": "38",
+ "y2": "16"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "18",
+ "x2": "38",
+ "y2": "16"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_note = basic_elaboration_mail_note;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_pencil.js b/dist/linea/basic_elaboration_mail_pencil.js
new file mode 100644
index 000000000..724f3edf4
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_pencil.js
@@ -0,0 +1,125 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_pencil = void 0;
+var basic_elaboration_mail_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,27 22,32 27,31 42,16 38,12 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,27 22,32 27,31 42,16 38,12 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "19",
+ "x2": "35",
+ "y2": "15"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "19",
+ "x2": "35",
+ "y2": "15"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_pencil = basic_elaboration_mail_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_picture.js b/dist/linea/basic_elaboration_mail_picture.js
new file mode 100644
index 000000000..2d435adc0
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_picture.js
@@ -0,0 +1,137 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_picture = void 0;
+var basic_elaboration_mail_picture = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "14"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,27 29,20 33,25 35,23 41,28 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,27 29,20 33,25 35,23 41,28 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "39",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_picture = basic_elaboration_mail_picture;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_previous.js b/dist/linea/basic_elaboration_mail_previous.js
new file mode 100644
index 000000000..86de9f952
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_previous.js
@@ -0,0 +1,116 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_previous = void 0;
+var basic_elaboration_mail_previous = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "30.001,30 \r\n\t22.001,22 30.001,14 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22.001",
+ "y1": "22",
+ "x2": "42.001",
+ "y2": "22"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22.001",
+ "y1": "22",
+ "x2": "42.001",
+ "y2": "22"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_previous = basic_elaboration_mail_previous;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_refresh.js b/dist/linea/basic_elaboration_mail_refresh.js
new file mode 100644
index 000000000..78fc95465
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_refresh.js
@@ -0,0 +1,117 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_refresh = void 0;
+var basic_elaboration_mail_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,22c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,35 36,31 \r\n\t33,27 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,22c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,9 30,13 33,17 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_refresh = basic_elaboration_mail_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_remove.js b/dist/linea/basic_elaboration_mail_remove.js
new file mode 100644
index 000000000..ebe05d031
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_remove.js
@@ -0,0 +1,101 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_remove = void 0;
+var basic_elaboration_mail_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "29",
+ "x2": "25",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "29",
+ "x2": "39",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_remove = basic_elaboration_mail_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_search.js b/dist/linea/basic_elaboration_mail_search.js
new file mode 100644
index 000000000..8ca06b898
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_search.js
@@ -0,0 +1,129 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_search = void 0;
+var basic_elaboration_mail_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "19",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "19",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "23",
+ "x2": "41",
+ "y2": "31"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "23",
+ "x2": "41",
+ "y2": "31"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_search = basic_elaboration_mail_search;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_star.js b/dist/linea/basic_elaboration_mail_star.js
new file mode 100644
index 000000000..c67cc9078
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_star.js
@@ -0,0 +1,86 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_star = void 0;
+var basic_elaboration_mail_star = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "round",
+ "stroke-miterlimit": "10",
+ "points": "32,27 25.875,31 \r\n\t28,24 22,20 29.213,20 32,12 35,20 42,20 36,24 37.938,31 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_mail_star = basic_elaboration_mail_star;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_mail_upload.js b/dist/linea/basic_elaboration_mail_upload.js
new file mode 100644
index 000000000..966cd8588
--- /dev/null
+++ b/dist/linea/basic_elaboration_mail_upload.js
@@ -0,0 +1,116 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_mail_upload = void 0;
+var basic_elaboration_mail_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,20 \r\n\t31.998,12 39.998,20 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "12",
+ "x2": "31.998",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "12",
+ "x2": "31.998",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_mail_upload = basic_elaboration_mail_upload;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_message_check.js b/dist/linea/basic_elaboration_message_check.js
new file mode 100644
index 000000000..8049db0da
--- /dev/null
+++ b/dist/linea/basic_elaboration_message_check.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_message_check = void 0;
+var basic_elaboration_message_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,26 30,33 \r\n\t43,20 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_message_check = basic_elaboration_message_check;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_message_dots.js b/dist/linea/basic_elaboration_message_dots.js
new file mode 100644
index 000000000..8c4895515
--- /dev/null
+++ b/dist/linea/basic_elaboration_message_dots.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_message_dots = void 0;
+var basic_elaboration_message_dots = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "26",
+ "x2": "35",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "26",
+ "x2": "45",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "26",
+ "x2": "25",
+ "y2": "26"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_message_dots = basic_elaboration_message_dots;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_message_happy.js b/dist/linea/basic_elaboration_message_happy.js
new file mode 100644
index 000000000..58ecd97a7
--- /dev/null
+++ b/dist/linea/basic_elaboration_message_happy.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_message_happy = void 0;
+var basic_elaboration_message_happy = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,30c0,4.418,3.582,8,8,8s8-3.582,8-8"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,30c0,4.418,3.582,8,8,8s8-3.582,8-8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "20",
+ "x2": "20",
+ "y2": "20"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "20",
+ "x2": "20",
+ "y2": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "20",
+ "x2": "44",
+ "y2": "20"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "20",
+ "x2": "44",
+ "y2": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_message_happy = basic_elaboration_message_happy;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_message_heart.js b/dist/linea/basic_elaboration_message_heart.js
new file mode 100644
index 000000000..d422055d3
--- /dev/null
+++ b/dist/linea/basic_elaboration_message_heart.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_message_heart = void 0;
+var basic_elaboration_message_heart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,23c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,18,22,20.238,22,23z"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_message_heart = basic_elaboration_message_heart;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_message_minus.js b/dist/linea/basic_elaboration_message_minus.js
new file mode 100644
index 000000000..f21a56b47
--- /dev/null
+++ b/dist/linea/basic_elaboration_message_minus.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_message_minus = void 0;
+var basic_elaboration_message_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "26",
+ "x2": "23",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_message_minus = basic_elaboration_message_minus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_message_note.js b/dist/linea/basic_elaboration_message_note.js
new file mode 100644
index 000000000..7627642b0
--- /dev/null
+++ b/dist/linea/basic_elaboration_message_note.js
@@ -0,0 +1,119 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_message_note = void 0;
+var basic_elaboration_message_note = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "31",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "31",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "33",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "33",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,31 38,16 28,18 28,33 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,31 38,16 28,18 28,33 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "22",
+ "x2": "38",
+ "y2": "20"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "22",
+ "x2": "38",
+ "y2": "20"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_message_note = basic_elaboration_message_note;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_message_plus.js b/dist/linea/basic_elaboration_message_plus.js
new file mode 100644
index 000000000..a1b33551e
--- /dev/null
+++ b/dist/linea/basic_elaboration_message_plus.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_message_plus = void 0;
+var basic_elaboration_message_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "17",
+ "x2": "32",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "26",
+ "x2": "23",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_message_plus = basic_elaboration_message_plus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_message_refresh.js b/dist/linea/basic_elaboration_message_refresh.js
new file mode 100644
index 000000000..8286f3d15
--- /dev/null
+++ b/dist/linea/basic_elaboration_message_refresh.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_message_refresh = void 0;
+var basic_elaboration_message_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,26c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,39 36,35 \r\n\t33,31 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,26c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,13 30,17 \r\n\t33,21 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_message_refresh = basic_elaboration_message_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_message_remove.js b/dist/linea/basic_elaboration_message_remove.js
new file mode 100644
index 000000000..7ffb471a9
--- /dev/null
+++ b/dist/linea/basic_elaboration_message_remove.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_message_remove = void 0;
+var basic_elaboration_message_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "33",
+ "x2": "25",
+ "y2": "19"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "33",
+ "x2": "39",
+ "y2": "19"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_message_remove = basic_elaboration_message_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_message_sad.js b/dist/linea/basic_elaboration_message_sad.js
new file mode 100644
index 000000000..2ccfc2802
--- /dev/null
+++ b/dist/linea/basic_elaboration_message_sad.js
@@ -0,0 +1,97 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_message_sad = void 0;
+var basic_elaboration_message_sad = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "20",
+ "x2": "20",
+ "y2": "20"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "20",
+ "x2": "20",
+ "y2": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "20",
+ "x2": "44",
+ "y2": "20"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "20",
+ "x2": "44",
+ "y2": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M40,38c0-4.418-3.582-8-8-8s-8,3.582-8,8"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_message_sad = basic_elaboration_message_sad;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_smartphone_cloud.js b/dist/linea/basic_elaboration_smartphone_cloud.js
new file mode 100644
index 000000000..4a02d92b7
--- /dev/null
+++ b/dist/linea/basic_elaboration_smartphone_cloud.js
@@ -0,0 +1,155 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_smartphone_cloud = void 0;
+var basic_elaboration_smartphone_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34.887,36H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_smartphone_cloud = basic_elaboration_smartphone_cloud;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_smartphone_heart.js b/dist/linea/basic_elaboration_smartphone_heart.js
new file mode 100644
index 000000000..52ada2180
--- /dev/null
+++ b/dist/linea/basic_elaboration_smartphone_heart.js
@@ -0,0 +1,155 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_smartphone_heart = void 0;
+var basic_elaboration_smartphone_heart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,27c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,22,22,24.238,22,27z"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_smartphone_heart = basic_elaboration_smartphone_heart;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_smartphone_noaccess.js b/dist/linea/basic_elaboration_smartphone_noaccess.js
new file mode 100644
index 000000000..a7133cc25
--- /dev/null
+++ b/dist/linea/basic_elaboration_smartphone_noaccess.js
@@ -0,0 +1,170 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_smartphone_noaccess = void 0;
+var basic_elaboration_smartphone_noaccess = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "30",
+ "r": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25.834",
+ "y1": "23.834",
+ "x2": "38.166",
+ "y2": "36.166"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_smartphone_noaccess = basic_elaboration_smartphone_noaccess;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_smartphone_note.js b/dist/linea/basic_elaboration_smartphone_note.js
new file mode 100644
index 000000000..12d1e974f
--- /dev/null
+++ b/dist/linea/basic_elaboration_smartphone_note.js
@@ -0,0 +1,243 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_smartphone_note = void 0;
+var basic_elaboration_smartphone_note = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "35",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "35",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "37",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "37",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,35 38,20 28,22 28,37 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,35 38,20 28,22 28,37 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "26",
+ "x2": "38",
+ "y2": "24"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "26",
+ "x2": "38",
+ "y2": "24"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_smartphone_note = basic_elaboration_smartphone_note;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_smartphone_pencil.js b/dist/linea/basic_elaboration_smartphone_pencil.js
new file mode 100644
index 000000000..6c37d3fea
--- /dev/null
+++ b/dist/linea/basic_elaboration_smartphone_pencil.js
@@ -0,0 +1,195 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_smartphone_pencil = void 0;
+var basic_elaboration_smartphone_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,35 22,40 27,39 42,24 38,20 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,35 22,40 27,39 42,24 38,20 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "27",
+ "x2": "35",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "27",
+ "x2": "35",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_smartphone_pencil = basic_elaboration_smartphone_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_smartphone_picture.js b/dist/linea/basic_elaboration_smartphone_picture.js
new file mode 100644
index 000000000..82f5c687e
--- /dev/null
+++ b/dist/linea/basic_elaboration_smartphone_picture.js
@@ -0,0 +1,207 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_smartphone_picture = void 0;
+var basic_elaboration_smartphone_picture = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "23",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "14"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "23",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,35 29,28 33,33 35,31 41,36 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,35 29,28 33,33 35,31 41,36 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "39",
+ "cy": "26",
+ "r": "3"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_smartphone_picture = basic_elaboration_smartphone_picture;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_smartphone_refresh.js b/dist/linea/basic_elaboration_smartphone_refresh.js
new file mode 100644
index 000000000..227947eac
--- /dev/null
+++ b/dist/linea/basic_elaboration_smartphone_refresh.js
@@ -0,0 +1,187 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_smartphone_refresh = void 0;
+var basic_elaboration_smartphone_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,30c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,43 36,39 \r\n\t33,35 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,30c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,17 30,21 \r\n\t33,25 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_smartphone_refresh = basic_elaboration_smartphone_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_smartphone_search.js b/dist/linea/basic_elaboration_smartphone_search.js
new file mode 100644
index 000000000..29760a6c6
--- /dev/null
+++ b/dist/linea/basic_elaboration_smartphone_search.js
@@ -0,0 +1,199 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_smartphone_search = void 0;
+var basic_elaboration_smartphone_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "27",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "27",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "31",
+ "x2": "41",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "31",
+ "x2": "41",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_elaboration_smartphone_search = basic_elaboration_smartphone_search;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_tablet_cloud.js b/dist/linea/basic_elaboration_tablet_cloud.js
new file mode 100644
index 000000000..d3ff7fd33
--- /dev/null
+++ b/dist/linea/basic_elaboration_tablet_cloud.js
@@ -0,0 +1,103 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_tablet_cloud = void 0;
+var basic_elaboration_tablet_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34.887,36H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "51",
+ "x2": "53",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "9",
+ "x2": "53",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_tablet_cloud = basic_elaboration_tablet_cloud;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_tablet_heart.js b/dist/linea/basic_elaboration_tablet_heart.js
new file mode 100644
index 000000000..5f5e09274
--- /dev/null
+++ b/dist/linea/basic_elaboration_tablet_heart.js
@@ -0,0 +1,103 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_tablet_heart = void 0;
+var basic_elaboration_tablet_heart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,27c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,22,22,24.238,22,27z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "51",
+ "x2": "53",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "9",
+ "x2": "53",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_tablet_heart = basic_elaboration_tablet_heart;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_tablet_noaccess.js b/dist/linea/basic_elaboration_tablet_noaccess.js
new file mode 100644
index 000000000..c953c6fd4
--- /dev/null
+++ b/dist/linea/basic_elaboration_tablet_noaccess.js
@@ -0,0 +1,118 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_tablet_noaccess = void 0;
+var basic_elaboration_tablet_noaccess = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "30",
+ "r": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25.834",
+ "y1": "23.834",
+ "x2": "38.166",
+ "y2": "36.166"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "51",
+ "x2": "53",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "9",
+ "x2": "53",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_tablet_noaccess = basic_elaboration_tablet_noaccess;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_tablet_note.js b/dist/linea/basic_elaboration_tablet_note.js
new file mode 100644
index 000000000..95b458e2a
--- /dev/null
+++ b/dist/linea/basic_elaboration_tablet_note.js
@@ -0,0 +1,191 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_tablet_note = void 0;
+var basic_elaboration_tablet_note = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "35",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "35",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "37",
+ "r": "3"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "37",
+ "r": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,35 38,20 28,22 28,37 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,35 38,20 28,22 28,37 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "26",
+ "x2": "38",
+ "y2": "24"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "26",
+ "x2": "38",
+ "y2": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "51",
+ "x2": "53",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "9",
+ "x2": "53",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_tablet_note = basic_elaboration_tablet_note;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_tablet_pencil.js b/dist/linea/basic_elaboration_tablet_pencil.js
new file mode 100644
index 000000000..32bc0988c
--- /dev/null
+++ b/dist/linea/basic_elaboration_tablet_pencil.js
@@ -0,0 +1,143 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_tablet_pencil = void 0;
+var basic_elaboration_tablet_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,35 22,40 27,39 42,24 38,20 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,35 22,40 27,39 42,24 38,20 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "27",
+ "x2": "35",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "27",
+ "x2": "35",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "51",
+ "x2": "53",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "9",
+ "x2": "53",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_tablet_pencil = basic_elaboration_tablet_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_tablet_picture.js b/dist/linea/basic_elaboration_tablet_picture.js
new file mode 100644
index 000000000..4612295ee
--- /dev/null
+++ b/dist/linea/basic_elaboration_tablet_picture.js
@@ -0,0 +1,155 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_tablet_picture = void 0;
+var basic_elaboration_tablet_picture = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "23",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "14"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "23",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,35 29,28 33,33 35,31 41,36 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,35 29,28 33,33 35,31 41,36 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "39",
+ "cy": "26",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "51",
+ "x2": "53",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "9",
+ "x2": "53",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_tablet_picture = basic_elaboration_tablet_picture;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_tablet_refresh.js b/dist/linea/basic_elaboration_tablet_refresh.js
new file mode 100644
index 000000000..041e08865
--- /dev/null
+++ b/dist/linea/basic_elaboration_tablet_refresh.js
@@ -0,0 +1,135 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_tablet_refresh = void 0;
+var basic_elaboration_tablet_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,30c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,43 36,39 \r\n\t33,35 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,30c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,17 30,21 \r\n\t33,25 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "51",
+ "x2": "53",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "9",
+ "x2": "53",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_tablet_refresh = basic_elaboration_tablet_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_tablet_search.js b/dist/linea/basic_elaboration_tablet_search.js
new file mode 100644
index 000000000..2c7b002fe
--- /dev/null
+++ b/dist/linea/basic_elaboration_tablet_search.js
@@ -0,0 +1,147 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_tablet_search = void 0;
+var basic_elaboration_tablet_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "27",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "27",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "31",
+ "x2": "41",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "31",
+ "x2": "41",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "51",
+ "x2": "53",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "9",
+ "x2": "53",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_tablet_search = basic_elaboration_tablet_search;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_2.js b/dist/linea/basic_elaboration_todolist_2.js
new file mode 100644
index 000000000..ce49b9e8d
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_2.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_2 = void 0;
+var basic_elaboration_todolist_2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "14",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "36",
+ "height": "46"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_2 = basic_elaboration_todolist_2;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_check.js b/dist/linea/basic_elaboration_todolist_check.js
new file mode 100644
index 000000000..93f76b617
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_check.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_check = void 0;
+var basic_elaboration_todolist_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,34 30,41 \r\n\t43,28 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_check = basic_elaboration_todolist_check;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_cloud.js b/dist/linea/basic_elaboration_todolist_cloud.js
new file mode 100644
index 000000000..c4b5dde3f
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_cloud.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_cloud = void 0;
+var basic_elaboration_todolist_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_cloud = basic_elaboration_todolist_cloud;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_download.js b/dist/linea/basic_elaboration_todolist_download.js
new file mode 100644
index 000000000..dfd7caeef
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_download.js
@@ -0,0 +1,72 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_download = void 0;
+var basic_elaboration_todolist_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,37 32,45 \r\n\t24,37 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "45",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "45",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_download = basic_elaboration_todolist_download;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_flagged.js b/dist/linea/basic_elaboration_todolist_flagged.js
new file mode 100644
index 000000000..321a818a4
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_flagged.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_flagged = void 0;
+var basic_elaboration_todolist_flagged = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "23",
+ "x2": "27",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,26 42,26 39.484,30 42,34 27,34 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_flagged = basic_elaboration_todolist_flagged;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_minus.js b/dist/linea/basic_elaboration_todolist_minus.js
new file mode 100644
index 000000000..58a89cfd5
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_minus.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_minus = void 0;
+var basic_elaboration_todolist_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "36",
+ "x2": "23",
+ "y2": "36"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_minus = basic_elaboration_todolist_minus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_noaccess.js b/dist/linea/basic_elaboration_todolist_noaccess.js
new file mode 100644
index 000000000..c9d7b0556
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_noaccess.js
@@ -0,0 +1,56 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_noaccess = void 0;
+var basic_elaboration_todolist_noaccess = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "36",
+ "r": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25.834",
+ "y1": "29.834",
+ "x2": "38.166",
+ "y2": "42.166"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_noaccess = basic_elaboration_todolist_noaccess;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_pencil.js b/dist/linea/basic_elaboration_todolist_pencil.js
new file mode 100644
index 000000000..31821b9b4
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_pencil.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_pencil = void 0;
+var basic_elaboration_todolist_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 22,46 27,45 42,30 38,26 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 22,46 27,45 42,30 38,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "33",
+ "x2": "35",
+ "y2": "29"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "33",
+ "x2": "35",
+ "y2": "29"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_pencil = basic_elaboration_todolist_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_plus.js b/dist/linea/basic_elaboration_todolist_plus.js
new file mode 100644
index 000000000..567203d1b
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_plus.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_plus = void 0;
+var basic_elaboration_todolist_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "27",
+ "x2": "32",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "36",
+ "x2": "23",
+ "y2": "36"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_plus = basic_elaboration_todolist_plus;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_refresh.js b/dist/linea/basic_elaboration_todolist_refresh.js
new file mode 100644
index 000000000..c50367332
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_refresh.js
@@ -0,0 +1,73 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_refresh = void 0;
+var basic_elaboration_todolist_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,36c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,49 36,45 \r\n\t33,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,36c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,23 30,27 \r\n\t33,31 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_refresh = basic_elaboration_todolist_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_remove.js b/dist/linea/basic_elaboration_todolist_remove.js
new file mode 100644
index 000000000..72b09d776
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_remove.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_remove = void 0;
+var basic_elaboration_todolist_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "43",
+ "x2": "25",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "43",
+ "x2": "39",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_remove = basic_elaboration_todolist_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_search.js b/dist/linea/basic_elaboration_todolist_search.js
new file mode 100644
index 000000000..da6d12b00
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_search.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_search = void 0;
+var basic_elaboration_todolist_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "33",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "33",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "37",
+ "x2": "41",
+ "y2": "45"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "37",
+ "x2": "41",
+ "y2": "45"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_search = basic_elaboration_todolist_search;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_star.js b/dist/linea/basic_elaboration_todolist_star.js
new file mode 100644
index 000000000..804fe11cb
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_star.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_star = void 0;
+var basic_elaboration_todolist_star = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "round",
+ "stroke-miterlimit": "10",
+ "points": "32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 "
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_star = basic_elaboration_todolist_star;
\ No newline at end of file
diff --git a/dist/linea/basic_elaboration_todolist_upload.js b/dist/linea/basic_elaboration_todolist_upload.js
new file mode 100644
index 000000000..a5213be19
--- /dev/null
+++ b/dist/linea/basic_elaboration_todolist_upload.js
@@ -0,0 +1,72 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_elaboration_todolist_upload = void 0;
+var basic_elaboration_todolist_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,34 \r\n\t31.998,26 39.998,34 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "26",
+ "x2": "31.998",
+ "y2": "46"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "26",
+ "x2": "31.998",
+ "y2": "46"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_elaboration_todolist_upload = basic_elaboration_todolist_upload;
\ No newline at end of file
diff --git a/dist/linea/basic_exclamation.js b/dist/linea/basic_exclamation.js
new file mode 100644
index 000000000..9c9a8861c
--- /dev/null
+++ b/dist/linea/basic_exclamation.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_exclamation = void 0;
+var basic_exclamation = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "17",
+ "x2": "32",
+ "y2": "39"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "43",
+ "x2": "32",
+ "y2": "47"
+ },
+ "children": []
+ }]
+};
+exports.basic_exclamation = basic_exclamation;
\ No newline at end of file
diff --git a/dist/linea/basic_eye.js b/dist/linea/basic_eye.js
new file mode 100644
index 000000000..052fcecb3
--- /dev/null
+++ b/dist/linea/basic_eye.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_eye = void 0;
+var basic_eye = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M1,32c0,0,11,15,31,15s31-15,31-15S52,17,32,17\r\n\tS1,32,1,32z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "7"
+ },
+ "children": []
+ }]
+};
+exports.basic_eye = basic_eye;
\ No newline at end of file
diff --git a/dist/linea/basic_eye_closed.js b/dist/linea/basic_eye_closed.js
new file mode 100644
index 000000000..e357efb10
--- /dev/null
+++ b/dist/linea/basic_eye_closed.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_eye_closed = void 0;
+var basic_eye_closed = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M1,32c0,0,11,15,31,15s31-15,31-15S52,17,32,17\r\n\tS1,32,1,32z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "9",
+ "y1": "55",
+ "x2": "55",
+ "y2": "9"
+ },
+ "children": []
+ }]
+};
+exports.basic_eye_closed = basic_eye_closed;
\ No newline at end of file
diff --git a/dist/linea/basic_female.js b/dist/linea/basic_female.js
new file mode 100644
index 000000000..54ff0dcba
--- /dev/null
+++ b/dist/linea/basic_female.js
@@ -0,0 +1,49 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_female = void 0;
+var basic_female = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "39",
+ "cy": "25",
+ "r": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "63",
+ "x2": "22",
+ "y2": "42"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "46",
+ "x2": "18",
+ "y2": "63"
+ },
+ "children": []
+ }]
+};
+exports.basic_female = basic_female;
\ No newline at end of file
diff --git a/dist/linea/basic_flag1.js b/dist/linea/basic_flag1.js
new file mode 100644
index 000000000..5117045a2
--- /dev/null
+++ b/dist/linea/basic_flag1.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_flag1 = void 0;
+var basic_flag1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "0",
+ "x2": "12",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,6 53,6 47,18 53,30 12,30 "
+ },
+ "children": []
+ }]
+};
+exports.basic_flag1 = basic_flag1;
\ No newline at end of file
diff --git a/dist/linea/basic_flag2.js b/dist/linea/basic_flag2.js
new file mode 100644
index 000000000..f036ecb21
--- /dev/null
+++ b/dist/linea/basic_flag2.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_flag2 = void 0;
+var basic_flag2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "0",
+ "x2": "7",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32.062,6 26,11 26,35 57,35 51,23 57,11 \r\n\t26,11 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "26,30 7,30 7,6 32,6 32,11 "
+ },
+ "children": []
+ }]
+};
+exports.basic_flag2 = basic_flag2;
\ No newline at end of file
diff --git a/dist/linea/basic_floppydisk.js b/dist/linea/basic_floppydisk.js
new file mode 100644
index 000000000..e74a9c8d9
--- /dev/null
+++ b/dist/linea/basic_floppydisk.js
@@ -0,0 +1,113 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_floppydisk = void 0;
+var basic_floppydisk = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,63 1,63 1,1 51,1 63,13 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,63 1,63 1,1 51,1 63,13 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "7",
+ "y": "31",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "50",
+ "height": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "39",
+ "x2": "50",
+ "y2": "39"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "47",
+ "x2": "50",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "55",
+ "x2": "50",
+ "y2": "55"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "15",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "34",
+ "height": "19"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "38",
+ "y": "5",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "5",
+ "height": "11"
+ },
+ "children": []
+ }]
+};
+exports.basic_floppydisk = basic_floppydisk;
\ No newline at end of file
diff --git a/dist/linea/basic_folder.js b/dist/linea/basic_folder.js
new file mode 100644
index 000000000..467438436
--- /dev/null
+++ b/dist/linea/basic_folder.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_folder = void 0;
+var basic_folder = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,18 63,54 1,54 1,10 22,10 30,18 "
+ },
+ "children": []
+ }]
+};
+exports.basic_folder = basic_folder;
\ No newline at end of file
diff --git a/dist/linea/basic_folder_multiple.js b/dist/linea/basic_folder_multiple.js
new file mode 100644
index 000000000..87d68b332
--- /dev/null
+++ b/dist/linea/basic_folder_multiple.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_folder_multiple = void 0;
+var basic_folder_multiple = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "56,22 56,54 1,54 1,15 19.629,15 26.726,22 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "8,13 8,7 26.629,7 33.726,14 63,14 63,46 \r\n\t58,46 "
+ },
+ "children": []
+ }]
+};
+exports.basic_folder_multiple = basic_folder_multiple;
\ No newline at end of file
diff --git a/dist/linea/basic_gear.js b/dist/linea/basic_gear.js
new file mode 100644
index 000000000..b3829ea8e
--- /dev/null
+++ b/dist/linea/basic_gear.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_gear = void 0;
+var basic_gear = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,1 26,1 26,10 20,12 14,6 6,14 12,20 \r\n\t\t10,26 1,26 1,38 10,38 12,44 6,50 14,58 20,52 26,54 26,63 32,63 38,63 38,54 44,52 50,58 58,50 52,44 54,38 63,38 63,26 54,26 \r\n\t\t52,20 58,14 50,6 44,12 38,10 38,1 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,1 26,1 26,10 20,12 14,6 6,14 12,20 \r\n\t\t10,26 1,26 1,38 10,38 12,44 6,50 14,58 20,52 26,54 26,63 32,63 38,63 38,54 44,52 50,58 58,50 52,44 54,38 63,38 63,26 54,26 \r\n\t\t52,20 58,14 50,6 44,12 38,10 38,1 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_gear = basic_gear;
\ No newline at end of file
diff --git a/dist/linea/basic_globe.js b/dist/linea/basic_globe.js
new file mode 100644
index 000000000..051fa847e
--- /dev/null
+++ b/dist/linea/basic_globe.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_globe = void 0;
+var basic_globe = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,1c14.359,0,27,12.641,27,27S46.359,55,32,55\r\n\tc-10,0-13-4-13-4"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "28",
+ "r": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "54",
+ "x2": "32",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "63",
+ "x2": "42",
+ "y2": "63"
+ },
+ "children": []
+ }]
+};
+exports.basic_globe = basic_globe;
\ No newline at end of file
diff --git a/dist/linea/basic_gunsight.js b/dist/linea/basic_gunsight.js
new file mode 100644
index 000000000..99f6c8b23
--- /dev/null
+++ b/dist/linea/basic_gunsight.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_gunsight = void 0;
+var basic_gunsight = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "48",
+ "x2": "32",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "32",
+ "x2": "0",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "32",
+ "x2": "48",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "24"
+ },
+ "children": []
+ }]
+};
+exports.basic_gunsight = basic_gunsight;
\ No newline at end of file
diff --git a/dist/linea/basic_hammer.js b/dist/linea/basic_hammer.js
new file mode 100644
index 000000000..33454bcf9
--- /dev/null
+++ b/dist/linea/basic_hammer.js
@@ -0,0 +1,48 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_hammer = void 0;
+var basic_hammer = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "20",
+ "x2": "41",
+ "y2": "39"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46.257",
+ "y": "35.065",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 120.5036 47.0858)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "8.485",
+ "height": "26.87"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M1,19L17,3c6,6,13,1,13,1l4,4L12,30L1,19z"
+ },
+ "children": []
+ }]
+};
+exports.basic_hammer = basic_hammer;
\ No newline at end of file
diff --git a/dist/linea/basic_headset.js b/dist/linea/basic_headset.js
new file mode 100644
index 000000000..40f7931d6
--- /dev/null
+++ b/dist/linea/basic_headset.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_headset = void 0;
+var basic_headset = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M11,48C5.477,48,1,43.523,1,38s4.477-10,10-10h2v20\r\n\tH11z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53,28c5.523,0,10,4.477,10,10s-4.477,10-10,10h-2\r\n\tV28H53z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M13,31v-9c0,0,0-16,19-16s19,16,19,16v6"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "51,48 51,53 36,59 28,59 28,55 36,55 \r\n\t36,58 "
+ },
+ "children": []
+ }]
+};
+exports.basic_headset = basic_headset;
\ No newline at end of file
diff --git a/dist/linea/basic_heart.js b/dist/linea/basic_heart.js
new file mode 100644
index 000000000..637c5b79e
--- /dev/null
+++ b/dist/linea/basic_heart.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_heart = void 0;
+var basic_heart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M1,21c0,20,31,38,31,38s31-18,31-38\r\n\tc0-8.285-6-16-15-16c-8.285,0-16,5.715-16,14c0-8.285-7.715-14-16-14C7,5,1,12.715,1,21z"
+ },
+ "children": []
+ }]
+};
+exports.basic_heart = basic_heart;
\ No newline at end of file
diff --git a/dist/linea/basic_heart_broken.js b/dist/linea/basic_heart_broken.js
new file mode 100644
index 000000000..fdbeb4cd7
--- /dev/null
+++ b/dist/linea/basic_heart_broken.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_heart_broken = void 0;
+var basic_heart_broken = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M1,21c0,20,31,38,31,38s31-18,31-38\r\n\tc0-8.285-6-16-15-16c-8.285,0-16,5.715-16,14c0-8.285-7.715-14-16-14C7,5,1,12.715,1,21z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29,57 36,50 30,44 36,38 30,32 38,24 \r\n\t32,19 32,17 "
+ },
+ "children": []
+ }]
+};
+exports.basic_heart_broken = basic_heart_broken;
\ No newline at end of file
diff --git a/dist/linea/basic_helm.js b/dist/linea/basic_helm.js
new file mode 100644
index 000000000..4d5c89161
--- /dev/null
+++ b/dist/linea/basic_helm.js
@@ -0,0 +1,113 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_helm = void 0;
+var basic_helm = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "40",
+ "x2": "32",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "37",
+ "x2": "59",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "5",
+ "y1": "10",
+ "x2": "26",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "27",
+ "x2": "59",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "5",
+ "y1": "53",
+ "x2": "26",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "8"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "24"
+ },
+ "children": []
+ }]
+};
+exports.basic_helm = basic_helm;
\ No newline at end of file
diff --git a/dist/linea/basic_home.js b/dist/linea/basic_home.js
new file mode 100644
index 000000000..f7a0f4fd1
--- /dev/null
+++ b/dist/linea/basic_home.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_home = void 0;
+var basic_home = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,3 2,33 11,33 11,63 23,63 23,47 39,47 \r\n\t39,63 51,63 51,33 62,33 "
+ },
+ "children": []
+ }]
+};
+exports.basic_home = basic_home;
\ No newline at end of file
diff --git a/dist/linea/basic_info.js b/dist/linea/basic_info.js
new file mode 100644
index 000000000..caad2a875
--- /dev/null
+++ b/dist/linea/basic_info.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_info = void 0;
+var basic_info = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "47",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "21",
+ "x2": "32",
+ "y2": "17"
+ },
+ "children": []
+ }]
+};
+exports.basic_info = basic_info;
\ No newline at end of file
diff --git a/dist/linea/basic_ipod.js b/dist/linea/basic_ipod.js
new file mode 100644
index 000000000..8c56c5c53
--- /dev/null
+++ b/dist/linea/basic_ipod.js
@@ -0,0 +1,145 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_ipod = void 0;
+var basic_ipod = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "36",
+ "x2": "48",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "36",
+ "x2": "48",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "5",
+ "x2": "48",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "5",
+ "x2": "48",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "31.5",
+ "cy": "49.5",
+ "r": "9.5"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "31.5",
+ "cy": "49.5",
+ "r": "9.5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "31.5",
+ "cy": "49.5",
+ "r": "2.5"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "31.5",
+ "cy": "49.5",
+ "r": "2.5"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_ipod = basic_ipod;
\ No newline at end of file
diff --git a/dist/linea/basic_joypad.js b/dist/linea/basic_joypad.js
new file mode 100644
index 000000000..6e6d79994
--- /dev/null
+++ b/dist/linea/basic_joypad.js
@@ -0,0 +1,100 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_joypad = void 0;
+var basic_joypad = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M50,27H14C6.82,27,1,32.82,1,40s5.82,13,13,13\r\n\tc4.6,0,8.632-2.396,10.943-6h14.113C41.368,50.604,45.4,53,50,53c7.18,0,13-5.82,13-13S57.18,27,50,27z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "32",
+ "x2": "14",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "40",
+ "x2": "6",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "50",
+ "cy": "39.99",
+ "r": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "33",
+ "x2": "50",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "40",
+ "x2": "43",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,27 32,21 46,21 46,14 36,14 36,11 "
+ },
+ "children": []
+ }]
+};
+exports.basic_joypad = basic_joypad;
\ No newline at end of file
diff --git a/dist/linea/basic_key.js b/dist/linea/basic_key.js
new file mode 100644
index 000000000..d6c26710f
--- /dev/null
+++ b/dist/linea/basic_key.js
@@ -0,0 +1,62 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_key = void 0;
+var basic_key = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "51",
+ "cy": "32",
+ "r": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "32",
+ "x2": "38",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "32",
+ "x2": "6",
+ "y2": "42"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "32",
+ "x2": "14",
+ "y2": "38"
+ },
+ "children": []
+ }]
+};
+exports.basic_key = basic_key;
\ No newline at end of file
diff --git a/dist/linea/basic_keyboard.js b/dist/linea/basic_keyboard.js
new file mode 100644
index 000000000..fa583bb74
--- /dev/null
+++ b/dist/linea/basic_keyboard.js
@@ -0,0 +1,346 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_keyboard = void 0;
+var basic_keyboard = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "22",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "30"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "7,22 7,14 21,14 21,7 11,7 11,4 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "29",
+ "x2": "8",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "29",
+ "x2": "14",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "29",
+ "x2": "20",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "29",
+ "x2": "26",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "29",
+ "x2": "32",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "29",
+ "x2": "38",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "29",
+ "x2": "44",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "29",
+ "x2": "50",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52",
+ "y1": "29",
+ "x2": "56",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "45",
+ "x2": "8",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "45",
+ "x2": "14",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "45",
+ "x2": "42",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "45",
+ "x2": "54",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "45",
+ "x2": "60",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "45",
+ "x2": "48",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "37",
+ "x2": "12",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "37",
+ "x2": "18",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "37",
+ "x2": "24",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "37",
+ "x2": "30",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "37",
+ "x2": "36",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "37",
+ "x2": "42",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "37",
+ "x2": "48",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "37",
+ "x2": "54",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "37",
+ "x2": "60",
+ "y2": "37"
+ },
+ "children": []
+ }]
+};
+exports.basic_keyboard = basic_keyboard;
\ No newline at end of file
diff --git a/dist/linea/basic_laptop.js b/dist/linea/basic_laptop.js
new file mode 100644
index 000000000..95d435635
--- /dev/null
+++ b/dist/linea/basic_laptop.js
@@ -0,0 +1,93 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_laptop = void 0;
+var basic_laptop = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "8",
+ "y": "12",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "48",
+ "height": "34"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "8",
+ "y": "12",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "48",
+ "height": "34"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "46",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "6"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "46",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "16",
+ "x2": "30",
+ "y2": "16"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "16",
+ "x2": "30",
+ "y2": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_laptop = basic_laptop;
\ No newline at end of file
diff --git a/dist/linea/basic_life_buoy.js b/dist/linea/basic_life_buoy.js
new file mode 100644
index 000000000..74b161a60
--- /dev/null
+++ b/dist/linea/basic_life_buoy.js
@@ -0,0 +1,139 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_life_buoy = void 0;
+var basic_life_buoy = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "18",
+ "x2": "26",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "18",
+ "x2": "38",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "63",
+ "x2": "26",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "63",
+ "x2": "38",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "26",
+ "x2": "63",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "38",
+ "x2": "63",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "26",
+ "x2": "18",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "38",
+ "x2": "18",
+ "y2": "38"
+ },
+ "children": []
+ }]
+};
+exports.basic_life_buoy = basic_life_buoy;
\ No newline at end of file
diff --git a/dist/linea/basic_lightbulb.js b/dist/linea/basic_lightbulb.js
new file mode 100644
index 000000000..4b942c06b
--- /dev/null
+++ b/dist/linea/basic_lightbulb.js
@@ -0,0 +1,96 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_lightbulb = void 0;
+var basic_lightbulb = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M21,40v5h22l0.001-5.107C49,36.195,53,29.564,53,22\r\n\tc0-11.598-9.402-21-21-21s-21,9.402-21,21C11,29.565,14.998,36.304,21,40z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "45",
+ "x2": "25",
+ "y2": "25"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "45",
+ "x2": "39",
+ "y2": "25"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,26 29,29 32,26 35,29 39,26 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "21",
+ "y": "45",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "22",
+ "height": "6"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "23",
+ "y": "51",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "18",
+ "height": "6"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "25",
+ "y": "57",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "14",
+ "height": "6"
+ },
+ "children": []
+ }]
+};
+exports.basic_lightbulb = basic_lightbulb;
\ No newline at end of file
diff --git a/dist/linea/basic_link.js b/dist/linea/basic_link.js
new file mode 100644
index 000000000..23d42b70f
--- /dev/null
+++ b/dist/linea/basic_link.js
@@ -0,0 +1,64 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_link = void 0;
+var basic_link = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M37.004,32.166c1.224,0.533,2.576,0.829,3.997,0.828\r\n\tc3.271-0.003,6.175-1.576,7.998-4.006L60.99,16.98c1.255-1.673,1.998-3.751,1.996-6.002c-0.003-5.522-4.484-9.997-10.007-9.993\r\n\tc-2.251,0.002-4.327,0.747-5.999,2.004L33.989,15.998c-1.768,1.805-2.997,4.277-2.996,7.003c0.001,1.424,0.3,2.778,0.837,4.003"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M37.004,32.166"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M31.831,27.004c0.053,0.121,0.107,0.24,0.166,0.358"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M26.997,31.836c-1.225-0.535-2.577-0.831-3.998-0.83\r\n\tc-2.251,0.002-4.328,0.747-5.999,2.004L4.01,46.02c-1.768,1.804-2.997,4.276-2.995,7.002c0.003,5.522,4.484,9.997,10.007,9.993\r\n\tc3.271-0.003,6.174-1.576,7.997-4.006L31.01,47.001c1.255-1.673,1.998-3.751,1.996-6.002c-0.001-1.422-0.299-2.774-0.835-3.998"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23.006",
+ "y1": "41.006",
+ "x2": "40.994",
+ "y2": "22.994"
+ },
+ "children": []
+ }]
+};
+exports.basic_link = basic_link;
\ No newline at end of file
diff --git a/dist/linea/basic_lock.js b/dist/linea/basic_lock.js
new file mode 100644
index 000000000..36a808fc5
--- /dev/null
+++ b/dist/linea/basic_lock.js
@@ -0,0 +1,111 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_lock = void 0;
+var basic_lock = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "8",
+ "y": "33",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "48",
+ "height": "30"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "8",
+ "y": "33",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "48",
+ "height": "30"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16\r\n\t\tv16"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16\r\n\t\tv16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "47",
+ "r": "4"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "47",
+ "r": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "51",
+ "x2": "32",
+ "y2": "55"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "51",
+ "x2": "32",
+ "y2": "55"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_lock = basic_lock;
\ No newline at end of file
diff --git a/dist/linea/basic_lock_open.js b/dist/linea/basic_lock_open.js
new file mode 100644
index 000000000..bf08b41ab
--- /dev/null
+++ b/dist/linea/basic_lock_open.js
@@ -0,0 +1,111 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_lock_open = void 0;
+var basic_lock_open = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "8",
+ "y": "33",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "48",
+ "height": "30"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "8",
+ "y": "33",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "48",
+ "height": "30"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16v3\r\n\t\t"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16v3\r\n\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "47",
+ "r": "4"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "47",
+ "r": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "51",
+ "x2": "32",
+ "y2": "55"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "51",
+ "x2": "32",
+ "y2": "55"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_lock_open = basic_lock_open;
\ No newline at end of file
diff --git a/dist/linea/basic_magic_mouse.js b/dist/linea/basic_magic_mouse.js
new file mode 100644
index 000000000..2146bbf40
--- /dev/null
+++ b/dist/linea/basic_magic_mouse.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_magic_mouse = void 0;
+var basic_magic_mouse = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48,17c0-8.836-7.164-16-16-16S16,8.164,16,17v30\r\n\tc0,8.836,7.164,16,16,16s16-7.164,16-16V17z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "10",
+ "x2": "32",
+ "y2": "18"
+ },
+ "children": []
+ }]
+};
+exports.basic_magic_mouse = basic_magic_mouse;
\ No newline at end of file
diff --git a/dist/linea/basic_magnifier.js b/dist/linea/basic_magnifier.js
new file mode 100644
index 000000000..c70e6a064
--- /dev/null
+++ b/dist/linea/basic_magnifier.js
@@ -0,0 +1,93 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_magnifier = void 0;
+var basic_magnifier = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "21",
+ "cy": "21",
+ "r": "20"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "21",
+ "cy": "21",
+ "r": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "35",
+ "x2": "41",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "35",
+ "x2": "41",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46.257",
+ "y": "37.065",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "8.485",
+ "height": "26.87"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46.257",
+ "y": "37.065",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "8.485",
+ "height": "26.87"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_magnifier = basic_magnifier;
\ No newline at end of file
diff --git a/dist/linea/basic_magnifier_minus.js b/dist/linea/basic_magnifier_minus.js
new file mode 100644
index 000000000..814bf91d2
--- /dev/null
+++ b/dist/linea/basic_magnifier_minus.js
@@ -0,0 +1,123 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_magnifier_minus = void 0;
+var basic_magnifier_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "21",
+ "x2": "30",
+ "y2": "21"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "21",
+ "x2": "30",
+ "y2": "21"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "21",
+ "cy": "21",
+ "r": "20"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "21",
+ "cy": "21",
+ "r": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "35",
+ "x2": "41",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "35",
+ "x2": "41",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46.257",
+ "y": "37.065",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "8.485",
+ "height": "26.87"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46.257",
+ "y": "37.065",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "8.485",
+ "height": "26.87"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_magnifier_minus = basic_magnifier_minus;
\ No newline at end of file
diff --git a/dist/linea/basic_magnifier_plus.js b/dist/linea/basic_magnifier_plus.js
new file mode 100644
index 000000000..035c3bd89
--- /dev/null
+++ b/dist/linea/basic_magnifier_plus.js
@@ -0,0 +1,149 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_magnifier_plus = void 0;
+var basic_magnifier_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "21",
+ "x2": "30",
+ "y2": "21"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "21",
+ "x2": "30",
+ "y2": "21"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "12",
+ "x2": "21",
+ "y2": "30"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "12",
+ "x2": "21",
+ "y2": "30"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "21",
+ "cy": "21",
+ "r": "20"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "21",
+ "cy": "21",
+ "r": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "35",
+ "x2": "41",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "35",
+ "x2": "41",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46.257",
+ "y": "37.065",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "8.485",
+ "height": "26.87"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "46.257",
+ "y": "37.065",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "8.485",
+ "height": "26.87"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_magnifier_plus = basic_magnifier_plus;
\ No newline at end of file
diff --git a/dist/linea/basic_mail.js b/dist/linea/basic_mail.js
new file mode 100644
index 000000000..71fc8162d
--- /dev/null
+++ b/dist/linea/basic_mail.js
@@ -0,0 +1,61 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_mail = void 0;
+var basic_mail = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "37"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "37"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,13 32,33 63,13 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,13 32,33 63,13 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_mail = basic_mail;
\ No newline at end of file
diff --git a/dist/linea/basic_mail_multiple.js b/dist/linea/basic_mail_multiple.js
new file mode 100644
index 000000000..3ef1d8e17
--- /dev/null
+++ b/dist/linea/basic_mail_multiple.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_mail_multiple = void 0;
+var basic_mail_multiple = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "18",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "32"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9.887,16 9.887,9 63,9 63,41 55,41 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "0.887,18 27,33.062 53,18 "
+ },
+ "children": []
+ }]
+};
+exports.basic_mail_multiple = basic_mail_multiple;
\ No newline at end of file
diff --git a/dist/linea/basic_mail_open.js b/dist/linea/basic_mail_open.js
new file mode 100644
index 000000000..b4ba11165
--- /dev/null
+++ b/dist/linea/basic_mail_open.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_mail_open = void 0;
+var basic_mail_open = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_mail_open = basic_mail_open;
\ No newline at end of file
diff --git a/dist/linea/basic_mail_open_text.js b/dist/linea/basic_mail_open_text.js
new file mode 100644
index 000000000..9b94aa1f3
--- /dev/null
+++ b/dist/linea/basic_mail_open_text.js
@@ -0,0 +1,161 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_mail_open_text = void 0;
+var basic_mail_open_text = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "9",
+ "x2": "45",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "9",
+ "x2": "45",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "17",
+ "x2": "45",
+ "y2": "17"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "17",
+ "x2": "45",
+ "y2": "17"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "25",
+ "x2": "45",
+ "y2": "25"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "25",
+ "x2": "45",
+ "y2": "25"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,26 32,45.434 63,26 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t\t63,26 52.666,21.667 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t\t63,26 52.666,21.667 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,32 11,1 53,1 53,32 \t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.basic_mail_open_text = basic_mail_open_text;
\ No newline at end of file
diff --git a/dist/linea/basic_male.js b/dist/linea/basic_male.js
new file mode 100644
index 000000000..e2168bf44
--- /dev/null
+++ b/dist/linea/basic_male.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_male = void 0;
+var basic_male = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "25",
+ "cy": "39",
+ "r": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "1",
+ "x2": "42",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "45,1 63,1 63,19 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_male = basic_male;
\ No newline at end of file
diff --git a/dist/linea/basic_map.js b/dist/linea/basic_map.js
new file mode 100644
index 000000000..6672822b1
--- /dev/null
+++ b/dist/linea/basic_map.js
@@ -0,0 +1,103 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_map = void 0;
+var basic_map = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,59 22,51 42,59 63,51 63,5 42,13 22,5 \r\n\t\t1,13 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,59 22,51 42,59 63,51 63,5 42,13 22,5 \r\n\t\t1,13 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "5",
+ "x2": "22",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "5",
+ "x2": "22",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "13",
+ "x2": "42",
+ "y2": "59"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "13",
+ "x2": "42",
+ "y2": "59"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.basic_map = basic_map;
\ No newline at end of file
diff --git a/dist/linea/basic_message.js b/dist/linea/basic_message.js
new file mode 100644
index 000000000..38e0f9d1e
--- /dev/null
+++ b/dist/linea/basic_message.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_message = void 0;
+var basic_message = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 "
+ },
+ "children": []
+ }]
+};
+exports.basic_message = basic_message;
\ No newline at end of file
diff --git a/dist/linea/basic_message_multiple.js b/dist/linea/basic_message_multiple.js
new file mode 100644
index 000000000..24b7e7209
--- /dev/null
+++ b/dist/linea/basic_message_multiple.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_message_multiple = void 0;
+var basic_message_multiple = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "26,49.042 54.963,49.042 54.963,11.042 \r\n\t1,11.042 1,49.042 14,49.042 14,59.486 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "57,41.042 62.963,41.042 62.963,3.042 \r\n\t9,3.042 9,9 "
+ },
+ "children": []
+ }]
+};
+exports.basic_message_multiple = basic_message_multiple;
\ No newline at end of file
diff --git a/dist/linea/basic_message_txt.js b/dist/linea/basic_message_txt.js
new file mode 100644
index 000000000..6f29b861a
--- /dev/null
+++ b/dist/linea/basic_message_txt.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_message_txt = void 0;
+var basic_message_txt = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "16",
+ "x2": "54",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "26",
+ "x2": "54",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "36",
+ "x2": "54",
+ "y2": "36"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 63,47 63,5 1,5 1,47 18,47 18,59 "
+ },
+ "children": []
+ }]
+};
+exports.basic_message_txt = basic_message_txt;
\ No newline at end of file
diff --git a/dist/linea/basic_mixer2.js b/dist/linea/basic_mixer2.js
new file mode 100644
index 000000000..406c1ec19
--- /dev/null
+++ b/dist/linea/basic_mixer2.js
@@ -0,0 +1,125 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_mixer2 = void 0;
+var basic_mixer2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "19",
+ "x2": "12",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52",
+ "y1": "0",
+ "x2": "52",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "38",
+ "x2": "32",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "12",
+ "cy": "13",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "52",
+ "cy": "51",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "0",
+ "x2": "12",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52",
+ "y1": "57",
+ "x2": "52",
+ "y2": "64"
+ },
+ "children": []
+ }]
+};
+exports.basic_mixer2 = basic_mixer2;
\ No newline at end of file
diff --git a/dist/linea/basic_mouse.js b/dist/linea/basic_mouse.js
new file mode 100644
index 000000000..fa8a0a8a1
--- /dev/null
+++ b/dist/linea/basic_mouse.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_mouse = void 0;
+var basic_mouse = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48,17c0-8.836-7.164-16-16-16S16,8.164,16,17v30\r\n\tc0,8.836,7.164,16,16,16s16-7.164,16-16V17z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "1",
+ "x2": "32",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "21",
+ "x2": "48",
+ "y2": "21"
+ },
+ "children": []
+ }]
+};
+exports.basic_mouse = basic_mouse;
\ No newline at end of file
diff --git a/dist/linea/basic_notebook.js b/dist/linea/basic_notebook.js
new file mode 100644
index 000000000..c49283953
--- /dev/null
+++ b/dist/linea/basic_notebook.js
@@ -0,0 +1,128 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_notebook = void 0;
+var basic_notebook = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "1",
+ "x2": "41",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "16",
+ "x2": "7",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "8",
+ "x2": "7",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "24",
+ "x2": "7",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "32",
+ "x2": "7",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "40",
+ "x2": "7",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "48",
+ "x2": "7",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "56",
+ "x2": "7",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.basic_notebook = basic_notebook;
\ No newline at end of file
diff --git a/dist/linea/basic_notebook_pen.js b/dist/linea/basic_notebook_pen.js
new file mode 100644
index 000000000..8aa9b58c8
--- /dev/null
+++ b/dist/linea/basic_notebook_pen.js
@@ -0,0 +1,148 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_notebook_pen = void 0;
+var basic_notebook_pen = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,3 63,53 59,61 55,53 55,3 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,7 51,7 51,17 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "4",
+ "y": "3",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "40",
+ "height": "58"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "3",
+ "x2": "34",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "16",
+ "x2": "0",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "8",
+ "x2": "0",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "24",
+ "x2": "0",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "32",
+ "x2": "0",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "40",
+ "x2": "0",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "48",
+ "x2": "0",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "56",
+ "x2": "0",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.basic_notebook_pen = basic_notebook_pen;
\ No newline at end of file
diff --git a/dist/linea/basic_notebook_pencil.js b/dist/linea/basic_notebook_pencil.js
new file mode 100644
index 000000000..3a1d5fa8b
--- /dev/null
+++ b/dist/linea/basic_notebook_pencil.js
@@ -0,0 +1,151 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_notebook_pencil = void 0;
+var basic_notebook_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "4",
+ "y": "3",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "40",
+ "height": "58"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "3",
+ "x2": "34",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "16",
+ "x2": "0",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "8",
+ "x2": "0",
+ "y2": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "24",
+ "x2": "0",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "32",
+ "x2": "0",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "40",
+ "x2": "0",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "48",
+ "x2": "0",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "56",
+ "x2": "0",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,1 55,54 59,62 63,54 63,1 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "55",
+ "y1": "11",
+ "x2": "63",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.basic_notebook_pencil = basic_notebook_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_paperplane.js b/dist/linea/basic_paperplane.js
new file mode 100644
index 000000000..dfa261923
--- /dev/null
+++ b/dist/linea/basic_paperplane.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_paperplane = void 0;
+var basic_paperplane = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "1,30 63,1 23,41 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "34,63 63,1 23,41 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_paperplane = basic_paperplane;
\ No newline at end of file
diff --git a/dist/linea/basic_pencil_ruler.js b/dist/linea/basic_pencil_ruler.js
new file mode 100644
index 000000000..2e19148a4
--- /dev/null
+++ b/dist/linea/basic_pencil_ruler.js
@@ -0,0 +1,119 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_pencil_ruler = void 0;
+var basic_pencil_ruler = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,63 1,2 62,63 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,54 14,30 38,54 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "22",
+ "x2": "2",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "30",
+ "x2": "2",
+ "y2": "30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "38",
+ "x2": "2",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "46",
+ "x2": "2",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "54",
+ "x2": "2",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,1 19,7 55,43 63,45 61,37 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "13",
+ "x2": "31",
+ "y2": "7"
+ },
+ "children": []
+ }]
+};
+exports.basic_pencil_ruler = basic_pencil_ruler;
\ No newline at end of file
diff --git a/dist/linea/basic_photo.js b/dist/linea/basic_photo.js
new file mode 100644
index 000000000..ad57948c9
--- /dev/null
+++ b/dist/linea/basic_photo.js
@@ -0,0 +1,111 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_photo = void 0;
+var basic_photo = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "46,20 38,10 26,10 18,20 1,20 1,52 63,52 \r\n\t\t63,20 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "46,20 38,10 26,10 18,20 1,20 1,52 63,52 \r\n\t\t63,20 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "36",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "36",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "9",
+ "y1": "20",
+ "x2": "9",
+ "y2": "52"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "9",
+ "y1": "20",
+ "x2": "9",
+ "y2": "52"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "54",
+ "y1": "28",
+ "x2": "54",
+ "y2": "28"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "54",
+ "y1": "28",
+ "x2": "54",
+ "y2": "28"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_photo = basic_photo;
\ No newline at end of file
diff --git a/dist/linea/basic_picture.js b/dist/linea/basic_picture.js
new file mode 100644
index 000000000..0721a860a
--- /dev/null
+++ b/dist/linea/basic_picture.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_picture = void 0;
+var basic_picture = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "11",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "42"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "11",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "42"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,47 24,27 36,39 42,31 63,49 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,47 24,27 36,39 42,31 63,49 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "51",
+ "cy": "22",
+ "r": "5"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "51",
+ "cy": "22",
+ "r": "5"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_picture = basic_picture;
\ No newline at end of file
diff --git a/dist/linea/basic_picture_multiple.js b/dist/linea/basic_picture_multiple.js
new file mode 100644
index 000000000..bde62a1b9
--- /dev/null
+++ b/dist/linea/basic_picture_multiple.js
@@ -0,0 +1,73 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_picture_multiple = void 0;
+var basic_picture_multiple = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "16",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "40"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "16",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "40"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "10,14 10,8 63,8 63,48 55,48 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,46 15,32 29,48 39,42 53,54 "
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "40",
+ "cy": "29",
+ "r": "5"
+ },
+ "children": []
+ }]
+};
+exports.basic_picture_multiple = basic_picture_multiple;
\ No newline at end of file
diff --git a/dist/linea/basic_pin1.js b/dist/linea/basic_pin1.js
new file mode 100644
index 000000000..6e9671f15
--- /dev/null
+++ b/dist/linea/basic_pin1.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_pin1 = void 0;
+var basic_pin1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "16",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22.083,16c0-5.477,4.44-9.917,9.917-9.917"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "64",
+ "x2": "32",
+ "y2": "31"
+ },
+ "children": []
+ }]
+};
+exports.basic_pin1 = basic_pin1;
\ No newline at end of file
diff --git a/dist/linea/basic_pin2.js b/dist/linea/basic_pin2.js
new file mode 100644
index 000000000..b718f581b
--- /dev/null
+++ b/dist/linea/basic_pin2.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_pin2 = void 0;
+var basic_pin2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "64",
+ "x2": "32",
+ "y2": "36"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,1 22,1 22,5 27,9 25,26 16,30 15,36 \r\n\t32,36 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,1 42,1 42,5 37,9 39,26 48,30 49,36 \r\n\t32,36 "
+ },
+ "children": []
+ }]
+};
+exports.basic_pin2 = basic_pin2;
\ No newline at end of file
diff --git a/dist/linea/basic_postcard.js b/dist/linea/basic_postcard.js
new file mode 100644
index 000000000..412fffd47
--- /dev/null
+++ b/dist/linea/basic_postcard.js
@@ -0,0 +1,106 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_postcard = void 0;
+var basic_postcard = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "41"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "41"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "49",
+ "y": "19",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "8",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "18",
+ "x2": "39",
+ "y2": "49"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "21",
+ "x2": "34",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "27",
+ "x2": "30",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "33",
+ "x2": "32",
+ "y2": "33"
+ },
+ "children": []
+ }]
+};
+exports.basic_postcard = basic_postcard;
\ No newline at end of file
diff --git a/dist/linea/basic_postcard_multiple.js b/dist/linea/basic_postcard_multiple.js
new file mode 100644
index 000000000..1e89ece63
--- /dev/null
+++ b/dist/linea/basic_postcard_multiple.js
@@ -0,0 +1,130 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_postcard_multiple = void 0;
+var basic_postcard_multiple = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "20",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "53",
+ "height": "34"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "20",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "53",
+ "height": "34"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "10,16.999 10,11 63,11 63,45 57,45 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "10,16.999 10,11 63,11 63,45 57,45 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "42",
+ "y": "25",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "7",
+ "height": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "24",
+ "x2": "33",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "5",
+ "y1": "27",
+ "x2": "29",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "5",
+ "y1": "32",
+ "x2": "26",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "5",
+ "y1": "37",
+ "x2": "27",
+ "y2": "37"
+ },
+ "children": []
+ }]
+};
+exports.basic_postcard_multiple = basic_postcard_multiple;
\ No newline at end of file
diff --git a/dist/linea/basic_printer.js b/dist/linea/basic_printer.js
new file mode 100644
index 000000000..33d6c462d
--- /dev/null
+++ b/dist/linea/basic_printer.js
@@ -0,0 +1,247 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_printer = void 0;
+var basic_printer = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "19"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "19"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16.5,52"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16.5,52"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "16,52 1,52 1,20 63,20 63,52 48,52 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "16,52 1,52 1,20 63,20 63,52 48,52 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "39",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "39",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "27",
+ "x2": "10",
+ "y2": "27"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "27",
+ "x2": "10",
+ "y2": "27"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "27",
+ "x2": "16",
+ "y2": "27"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "27",
+ "x2": "16",
+ "y2": "27"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "47",
+ "x2": "42",
+ "y2": "47"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "47",
+ "x2": "42",
+ "y2": "47"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "55",
+ "x2": "42",
+ "y2": "55"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "55",
+ "x2": "42",
+ "y2": "55"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16,52"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16,52"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.basic_printer = basic_printer;
\ No newline at end of file
diff --git a/dist/linea/basic_question.js b/dist/linea/basic_question.js
new file mode 100644
index 000000000..a0d4eb021
--- /dev/null
+++ b/dist/linea/basic_question.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_question = void 0;
+var basic_question = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "43",
+ "x2": "30",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,21c0-3,2-5,8-5c5,0,8,3,8,7s-6,7-6,7s-4,2-4,8v1\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_question = basic_question;
\ No newline at end of file
diff --git a/dist/linea/basic_rss.js b/dist/linea/basic_rss.js
new file mode 100644
index 000000000..98202858d
--- /dev/null
+++ b/dist/linea/basic_rss.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_rss = void 0;
+var basic_rss = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M63.051,56\r\n\tc0-13.416-4.804-25.711-12.786-35.256"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M50.265,20.744\r\n\tC40.177,8.677,25.01,1,8.051,1"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M51.769,56\r\n\tc0-24.145-19.574-43.718-43.718-43.718"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M40.486,56\r\n\tc0-17.913-14.523-32.436-32.436-32.436"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M29.205,56\r\n\tc0-11.684-9.472-21.154-21.154-21.154"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "8.051",
+ "cy": "56",
+ "r": "7.051"
+ },
+ "children": []
+ }]
+};
+exports.basic_rss = basic_rss;
\ No newline at end of file
diff --git a/dist/linea/basic_server.js b/dist/linea/basic_server.js
new file mode 100644
index 000000000..774d5496a
--- /dev/null
+++ b/dist/linea/basic_server.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_server = void 0;
+var basic_server = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "41",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "54",
+ "height": "22"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "48",
+ "cy": "52",
+ "r": "3"
+ },
+ "children": []
+ }]
+};
+exports.basic_server = basic_server;
\ No newline at end of file
diff --git a/dist/linea/basic_server2.js b/dist/linea/basic_server2.js
new file mode 100644
index 000000000..7b2f2c02c
--- /dev/null
+++ b/dist/linea/basic_server2.js
@@ -0,0 +1,86 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_server2 = void 0;
+var basic_server2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M59,56\r\n\tc0,3.866-11.641,7-26,7S7,59.866,7,56"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M59,40\r\n\tc0,3.866-11.641,7-26,7S7,43.866,7,40"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M59,24\r\n\tc0,3.866-11.641,7-26,7S7,27.866,7,24"
+ },
+ "children": []
+ }, {
+ "name": "ellipse",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "33",
+ "cy": "8",
+ "rx": "26",
+ "ry": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "8",
+ "x2": "7",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "x1": "59",
+ "y1": "8",
+ "x2": "59",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.basic_server2 = basic_server2;
\ No newline at end of file
diff --git a/dist/linea/basic_server_cloud.js b/dist/linea/basic_server_cloud.js
new file mode 100644
index 000000000..c2a6e5acb
--- /dev/null
+++ b/dist/linea/basic_server_cloud.js
@@ -0,0 +1,56 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_server_cloud = void 0;
+var basic_server_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "41",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "54",
+ "height": "22"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "48",
+ "cy": "52",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34.887,27H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }]
+};
+exports.basic_server_cloud = basic_server_cloud;
\ No newline at end of file
diff --git a/dist/linea/basic_server_download.js b/dist/linea/basic_server_download.js
new file mode 100644
index 000000000..735d0dd59
--- /dev/null
+++ b/dist/linea/basic_server_download.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_server_download = void 0;
+var basic_server_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "41",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "54",
+ "height": "22"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "48",
+ "cy": "52",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,23 32,31 \r\n\t24,23 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "31",
+ "x2": "32",
+ "y2": "11"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "31",
+ "x2": "32",
+ "y2": "11"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_server_download = basic_server_download;
\ No newline at end of file
diff --git a/dist/linea/basic_server_upload.js b/dist/linea/basic_server_upload.js
new file mode 100644
index 000000000..91b84e0a6
--- /dev/null
+++ b/dist/linea/basic_server_upload.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_server_upload = void 0;
+var basic_server_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,41 11,1 53,1 59,41 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "41",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "54",
+ "height": "22"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "48",
+ "cy": "52",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,20 \r\n\t31.998,12 39.998,20 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "12",
+ "x2": "31.998",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "12",
+ "x2": "31.998",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_server_upload = basic_server_upload;
\ No newline at end of file
diff --git a/dist/linea/basic_settings.js b/dist/linea/basic_settings.js
new file mode 100644
index 000000000..892920058
--- /dev/null
+++ b/dist/linea/basic_settings.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_settings = void 0;
+var basic_settings = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "34",
+ "x2": "41",
+ "y2": "39"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "46.257",
+ "y": "35.065",
+ "transform": "matrix(-0.7071 0.7071 -0.7071 -0.7071 120.5036 47.0858)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "8.485",
+ "height": "26.87"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,16 18,10 8,4 6,6 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "26",
+ "x2": "15",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M58,12.5l-8,3.75l-4-4.125l3.5-8.062l0,0\r\n\tC39.5,4.062,37,9,37,14v4L3.5,52l-1.75,6l2.125,2l6.062-1.5L44,25h4C53,25,58,22.5,58,12.5L58,12.5z"
+ },
+ "children": []
+ }]
+};
+exports.basic_settings = basic_settings;
\ No newline at end of file
diff --git a/dist/linea/basic_share.js b/dist/linea/basic_share.js
new file mode 100644
index 000000000..460d6ad84
--- /dev/null
+++ b/dist/linea/basic_share.js
@@ -0,0 +1,73 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_share = void 0;
+var basic_share = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "51",
+ "cy": "13",
+ "r": "12"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "11",
+ "cy": "42",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "48",
+ "cy": "55",
+ "r": "8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "54",
+ "x2": "20",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "35",
+ "x2": "41",
+ "y2": "21"
+ },
+ "children": []
+ }]
+};
+exports.basic_share = basic_share;
\ No newline at end of file
diff --git a/dist/linea/basic_sheet.js b/dist/linea/basic_sheet.js
new file mode 100644
index 000000000..4af05dc25
--- /dev/null
+++ b/dist/linea/basic_sheet.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_sheet = void 0;
+var basic_sheet = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,1 55,1 55,63 9,63 9,15 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,15 23,15 23,1 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_sheet = basic_sheet;
\ No newline at end of file
diff --git a/dist/linea/basic_sheet_pen.js b/dist/linea/basic_sheet_pen.js
new file mode 100644
index 000000000..11017ea94
--- /dev/null
+++ b/dist/linea/basic_sheet_pen.js
@@ -0,0 +1,116 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_sheet_pen = void 0;
+var basic_sheet_pen = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,3 63,53 59,61 55,53 55,3 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,7 51,7 51,17 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,15 42,61 1,61 1,3 30,3 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "13",
+ "x2": "20",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "23",
+ "x2": "35",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "31",
+ "x2": "35",
+ "y2": "31"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "39",
+ "x2": "35",
+ "y2": "39"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "47",
+ "x2": "35",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,15 30,15 30,3 "
+ },
+ "children": []
+ }]
+};
+exports.basic_sheet_pen = basic_sheet_pen;
\ No newline at end of file
diff --git a/dist/linea/basic_sheet_pencil.js b/dist/linea/basic_sheet_pencil.js
new file mode 100644
index 000000000..d1d955fa3
--- /dev/null
+++ b/dist/linea/basic_sheet_pencil.js
@@ -0,0 +1,119 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_sheet_pencil = void 0;
+var basic_sheet_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,15 42,61 1,61 1,3 30,3 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,1 55,54 59,62 63,54 63,1 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "13",
+ "x2": "20",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "23",
+ "x2": "35",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "31",
+ "x2": "35",
+ "y2": "31"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "39",
+ "x2": "35",
+ "y2": "39"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "47",
+ "x2": "35",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,15 30,15 30,3 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "55",
+ "y1": "11",
+ "x2": "63",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.basic_sheet_pencil = basic_sheet_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_signs.js b/dist/linea/basic_signs.js
new file mode 100644
index 000000000..a2265740f
--- /dev/null
+++ b/dist/linea/basic_signs.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_signs = void 0;
+var basic_signs = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,24 22,24 22,12 55,12 62,18 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,28 42,28 42,40 9,40 2,34 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "40",
+ "x2": "32",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "28",
+ "x2": "32",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "12",
+ "x2": "32",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "63",
+ "x2": "40",
+ "y2": "63"
+ },
+ "children": []
+ }]
+};
+exports.basic_signs = basic_signs;
\ No newline at end of file
diff --git a/dist/linea/basic_smartphone.js b/dist/linea/basic_smartphone.js
new file mode 100644
index 000000000..261ed8ebb
--- /dev/null
+++ b/dist/linea/basic_smartphone.js
@@ -0,0 +1,145 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_smartphone = void 0;
+var basic_smartphone = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "51",
+ "x2": "48",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "9",
+ "x2": "48",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_smartphone = basic_smartphone;
\ No newline at end of file
diff --git a/dist/linea/basic_spades.js b/dist/linea/basic_spades.js
new file mode 100644
index 000000000..9662a4525
--- /dev/null
+++ b/dist/linea/basic_spades.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_spades = void 0;
+var basic_spades = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,63h9c-7,0-7-19-7-19v-6c0,7.671,6,13,13,13\r\n\tc8.334,0,14-7.329,14-15C61,17.48,32,1,32,1S3,17.48,3,36c0,7.671,6.667,15,15,15c7,0,11.395-5.87,12-13v6c0,0,0,19-7,19H32"
+ },
+ "children": []
+ }]
+};
+exports.basic_spades = basic_spades;
\ No newline at end of file
diff --git a/dist/linea/basic_spread.js b/dist/linea/basic_spread.js
new file mode 100644
index 000000000..0a2b36b99
--- /dev/null
+++ b/dist/linea/basic_spread.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_spread = void 0;
+var basic_spread = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,6 1,54 32,58 63,54 63,6 32,10 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "58",
+ "x2": "32",
+ "y2": "10"
+ },
+ "children": []
+ }]
+};
+exports.basic_spread = basic_spread;
\ No newline at end of file
diff --git a/dist/linea/basic_spread_bookmark.js b/dist/linea/basic_spread_bookmark.js
new file mode 100644
index 000000000..ed88f699f
--- /dev/null
+++ b/dist/linea/basic_spread_bookmark.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_spread_bookmark = void 0;
+var basic_spread_bookmark = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,6 1,54 32,58 63,54 63,6 32,10 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "58",
+ "x2": "32",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "43,8 43,27 47,25 51,27 51,7 "
+ },
+ "children": []
+ }]
+};
+exports.basic_spread_bookmark = basic_spread_bookmark;
\ No newline at end of file
diff --git a/dist/linea/basic_spread_text.js b/dist/linea/basic_spread_text.js
new file mode 100644
index 000000000..2fa1f9840
--- /dev/null
+++ b/dist/linea/basic_spread_text.js
@@ -0,0 +1,269 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_spread_text = void 0;
+var basic_spread_text = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,6 1,54 32,58 63,54 63,6 32,10 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,6 1,54 32,58 63,54 63,6 32,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "58",
+ "x2": "32",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "58",
+ "x2": "32",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "16",
+ "x2": "26",
+ "y2": "18"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "16",
+ "x2": "26",
+ "y2": "18"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "26",
+ "x2": "26",
+ "y2": "28"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "26",
+ "x2": "26",
+ "y2": "28"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "36",
+ "x2": "26",
+ "y2": "38"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "36",
+ "x2": "26",
+ "y2": "38"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "46",
+ "x2": "26",
+ "y2": "48"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "46",
+ "x2": "26",
+ "y2": "48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "16",
+ "x2": "38",
+ "y2": "18"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "16",
+ "x2": "38",
+ "y2": "18"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "26",
+ "x2": "38",
+ "y2": "28"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "26",
+ "x2": "38",
+ "y2": "28"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "36",
+ "x2": "38",
+ "y2": "38"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "36",
+ "x2": "38",
+ "y2": "38"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "46",
+ "x2": "38",
+ "y2": "48"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "46",
+ "x2": "38",
+ "y2": "48"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_spread_text = basic_spread_text;
\ No newline at end of file
diff --git a/dist/linea/basic_spread_text_bookmark.js b/dist/linea/basic_spread_text_bookmark.js
new file mode 100644
index 000000000..5a938a269
--- /dev/null
+++ b/dist/linea/basic_spread_text_bookmark.js
@@ -0,0 +1,122 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_spread_text_bookmark = void 0;
+var basic_spread_text_bookmark = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,6 1,54 32,58 63,54 63,6 32,10 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "58",
+ "x2": "32",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "43,8 43,27 47,25 51,27 51,7 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "16",
+ "x2": "26",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "26",
+ "x2": "26",
+ "y2": "28"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "36",
+ "x2": "26",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "46",
+ "x2": "26",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "36",
+ "x2": "38",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "46",
+ "x2": "38",
+ "y2": "48"
+ },
+ "children": []
+ }]
+};
+exports.basic_spread_text_bookmark = basic_spread_text_bookmark;
\ No newline at end of file
diff --git a/dist/linea/basic_star.js b/dist/linea/basic_star.js
new file mode 100644
index 000000000..9094eddb7
--- /dev/null
+++ b/dist/linea/basic_star.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_star = void 0;
+var basic_star = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 12,62 20,38 2,24 24,24 32,1 40,24 \r\n\t62,24 44,38 52,62 "
+ },
+ "children": []
+ }]
+};
+exports.basic_star = basic_star;
\ No newline at end of file
diff --git a/dist/linea/basic_tablet.js b/dist/linea/basic_tablet.js
new file mode 100644
index 000000000..8b586cf8e
--- /dev/null
+++ b/dist/linea/basic_tablet.js
@@ -0,0 +1,93 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_tablet = void 0;
+var basic_tablet = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "5",
+ "x2": "36",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "51",
+ "x2": "53",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "9",
+ "x2": "53",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "57",
+ "r": "2"
+ },
+ "children": []
+ }]
+};
+exports.basic_tablet = basic_tablet;
\ No newline at end of file
diff --git a/dist/linea/basic_target.js b/dist/linea/basic_target.js
new file mode 100644
index 000000000..76eb6aa61
--- /dev/null
+++ b/dist/linea/basic_target.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_target = void 0;
+var basic_target = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "22.999"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "15"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "6.999"
+ },
+ "children": []
+ }]
+};
+exports.basic_target = basic_target;
\ No newline at end of file
diff --git a/dist/linea/basic_todo.js b/dist/linea/basic_todo.js
new file mode 100644
index 000000000..626d25e41
--- /dev/null
+++ b/dist/linea/basic_todo.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_todo = void 0;
+var basic_todo = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_todo = basic_todo;
\ No newline at end of file
diff --git a/dist/linea/basic_todo_pencil.js b/dist/linea/basic_todo_pencil.js
new file mode 100644
index 000000000..770186bb1
--- /dev/null
+++ b/dist/linea/basic_todo_pencil.js
@@ -0,0 +1,54 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_todo_pencil = void 0;
+var basic_todo_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,1 55,54 59,62 63,54 63,1 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "55",
+ "y1": "11",
+ "x2": "63",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,8 1,8 1,63 45,63 45,8 32,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_todo_pencil = basic_todo_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_todo_txt.js b/dist/linea/basic_todo_txt.js
new file mode 100644
index 000000000..282abdd2c
--- /dev/null
+++ b/dist/linea/basic_todo_txt.js
@@ -0,0 +1,135 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_todo_txt = void 0;
+var basic_todo_txt = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "24",
+ "x2": "47",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "34",
+ "x2": "47",
+ "y2": "34"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "44",
+ "x2": "47",
+ "y2": "44"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "54",
+ "x2": "47",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "24",
+ "x2": "17",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "34",
+ "x2": "17",
+ "y2": "34"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "44",
+ "x2": "17",
+ "y2": "44"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "54",
+ "x2": "17",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,8 10,8 10,63 54,63 54,8 41,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.basic_todo_txt = basic_todo_txt;
\ No newline at end of file
diff --git a/dist/linea/basic_todolist_pen.js b/dist/linea/basic_todolist_pen.js
new file mode 100644
index 000000000..ebba7ebd5
--- /dev/null
+++ b/dist/linea/basic_todolist_pen.js
@@ -0,0 +1,155 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_todolist_pen = void 0;
+var basic_todolist_pen = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "24",
+ "x2": "38",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "34",
+ "x2": "38",
+ "y2": "34"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "44",
+ "x2": "38",
+ "y2": "44"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "54",
+ "x2": "38",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "24",
+ "x2": "8",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "34",
+ "x2": "8",
+ "y2": "34"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "44",
+ "x2": "8",
+ "y2": "44"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "54",
+ "x2": "8",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,8 1,8 1,63 45,63 45,8 32,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,3 63,53 59,61 55,53 55,3 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,7 51,7 51,17 "
+ },
+ "children": []
+ }]
+};
+exports.basic_todolist_pen = basic_todolist_pen;
\ No newline at end of file
diff --git a/dist/linea/basic_todolist_pencil.js b/dist/linea/basic_todolist_pencil.js
new file mode 100644
index 000000000..1b456f6c5
--- /dev/null
+++ b/dist/linea/basic_todolist_pencil.js
@@ -0,0 +1,158 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_todolist_pencil = void 0;
+var basic_todolist_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "24",
+ "x2": "38",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "34",
+ "x2": "38",
+ "y2": "34"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "44",
+ "x2": "38",
+ "y2": "44"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "54",
+ "x2": "38",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "24",
+ "x2": "8",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "34",
+ "x2": "8",
+ "y2": "34"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "44",
+ "x2": "8",
+ "y2": "44"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "54",
+ "x2": "8",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,8 1,8 1,63 45,63 45,8 32,8 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,1 55,54 59,62 63,54 63,1 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "55",
+ "y1": "11",
+ "x2": "63",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.basic_todolist_pencil = basic_todolist_pencil;
\ No newline at end of file
diff --git a/dist/linea/basic_trashcan.js b/dist/linea/basic_trashcan.js
new file mode 100644
index 000000000..1d4f88c07
--- /dev/null
+++ b/dist/linea/basic_trashcan.js
@@ -0,0 +1,133 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_trashcan = void 0;
+var basic_trashcan = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,8 25,1 39,1 39,8 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,8 25,1 39,1 39,8 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,10 14,63 50,63 50,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,10 14,63 50,63 50,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "20",
+ "x2": "26",
+ "y2": "54"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "20",
+ "x2": "26",
+ "y2": "54"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "20",
+ "x2": "38",
+ "y2": "54"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "20",
+ "x2": "38",
+ "y2": "54"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "9",
+ "x2": "54",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "9",
+ "x2": "54",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_trashcan = basic_trashcan;
\ No newline at end of file
diff --git a/dist/linea/basic_trashcan_full.js b/dist/linea/basic_trashcan_full.js
new file mode 100644
index 000000000..51abc3f9e
--- /dev/null
+++ b/dist/linea/basic_trashcan_full.js
@@ -0,0 +1,159 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_trashcan_full = void 0;
+var basic_trashcan_full = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,36 58,34 62,48 56,50 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,36 58,34 62,48 56,50 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "10",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "36",
+ "height": "50"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "10",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "36",
+ "height": "50"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "22",
+ "x2": "22",
+ "y2": "56"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "22",
+ "x2": "22",
+ "y2": "56"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "22",
+ "x2": "34",
+ "y2": "56"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "22",
+ "x2": "34",
+ "y2": "56"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47.926",
+ "y1": "21.895",
+ "x2": "60",
+ "y2": "63"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47.926",
+ "y1": "21.895",
+ "x2": "60",
+ "y2": "63"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,13 14,6 22.857,6.143 25,13 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22.857,6.143 27,1 39,1 44,13 "
+ },
+ "children": []
+ }]
+};
+exports.basic_trashcan_full = basic_trashcan_full;
\ No newline at end of file
diff --git a/dist/linea/basic_trashcan_refresh.js b/dist/linea/basic_trashcan_refresh.js
new file mode 100644
index 000000000..324c8945b
--- /dev/null
+++ b/dist/linea/basic_trashcan_refresh.js
@@ -0,0 +1,123 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_trashcan_refresh = void 0;
+var basic_trashcan_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,8 25,1 39,1 39,8 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,8 25,1 39,1 39,8 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,10 14,63 50,63 50,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,10 14,63 50,63 50,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "9",
+ "x2": "54",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "9",
+ "x2": "54",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M23,36c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "32,49 35,45 \r\n\t32,41 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,36c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "32,23 29,27 \r\n\t32,31 "
+ },
+ "children": []
+ }]
+};
+exports.basic_trashcan_refresh = basic_trashcan_refresh;
\ No newline at end of file
diff --git a/dist/linea/basic_trashcan_remove.js b/dist/linea/basic_trashcan_remove.js
new file mode 100644
index 000000000..1ff43f87f
--- /dev/null
+++ b/dist/linea/basic_trashcan_remove.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_trashcan_remove = void 0;
+var basic_trashcan_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,8 25,1 39,1 39,8 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,8 25,1 39,1 39,8 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,10 14,63 50,63 50,10 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,10 14,63 50,63 50,10 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "9",
+ "x2": "54",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "9",
+ "x2": "54",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "43",
+ "x2": "25",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "43",
+ "x2": "39",
+ "y2": "29"
+ },
+ "children": []
+ }]
+};
+exports.basic_trashcan_remove = basic_trashcan_remove;
\ No newline at end of file
diff --git a/dist/linea/basic_upload.js b/dist/linea/basic_upload.js
new file mode 100644
index 000000000..103a111e9
--- /dev/null
+++ b/dist/linea/basic_upload.js
@@ -0,0 +1,62 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_upload = void 0;
+var basic_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "24,34 32,26 \r\n\t40,34 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "26",
+ "x2": "32",
+ "y2": "58"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "26",
+ "x2": "32",
+ "y2": "58"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "24,42 1,42 1,6 63,6 63,42 40,42 "
+ },
+ "children": []
+ }]
+};
+exports.basic_upload = basic_upload;
\ No newline at end of file
diff --git a/dist/linea/basic_usb.js b/dist/linea/basic_usb.js
new file mode 100644
index 000000000..4e4cf3776
--- /dev/null
+++ b/dist/linea/basic_usb.js
@@ -0,0 +1,65 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_usb = void 0;
+var basic_usb = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "5.308",
+ "y": "4.601",
+ "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -6.0061 14.5)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "18.385",
+ "height": "19.799"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "22.151",
+ "y": "15.08",
+ "transform": "matrix(0.7071 -0.7071 0.7071 0.7071 -15.3259 37)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "29.698",
+ "height": "43.841"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "13",
+ "x2": "16",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "13",
+ "y1": "7",
+ "x2": "22",
+ "y2": "16"
+ },
+ "children": []
+ }]
+};
+exports.basic_usb = basic_usb;
\ No newline at end of file
diff --git a/dist/linea/basic_video.js b/dist/linea/basic_video.js
new file mode 100644
index 000000000..0cfd0aa1a
--- /dev/null
+++ b/dist/linea/basic_video.js
@@ -0,0 +1,133 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_video = void 0;
+var basic_video = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "46,30 63,20 63,52 46,42 46,52 1,52 1,20 \r\n\t\t46,20 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "46,30 63,20 63,52 46,42 46,52 1,52 1,20 \r\n\t\t46,20 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "28",
+ "x2": "10",
+ "y2": "28"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "28",
+ "x2": "10",
+ "y2": "28"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "28",
+ "x2": "18",
+ "y2": "28"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "28",
+ "x2": "18",
+ "y2": "28"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "7",
+ "y": "36",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "18",
+ "height": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "7",
+ "y": "36",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "18",
+ "height": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "6,12 32,12 40,20 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "6,12 32,12 40,20 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_video = basic_video;
\ No newline at end of file
diff --git a/dist/linea/basic_watch.js b/dist/linea/basic_watch.js
new file mode 100644
index 000000000..5fb6a39da
--- /dev/null
+++ b/dist/linea/basic_watch.js
@@ -0,0 +1,53 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_watch = void 0;
+var basic_watch = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "20"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "20,15 20,1 44,1 44,15 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,49 44,63 20,63 20,49 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,20 32,32 40,36 "
+ },
+ "children": []
+ }]
+};
+exports.basic_watch = basic_watch;
\ No newline at end of file
diff --git a/dist/linea/basic_webpage.js b/dist/linea/basic_webpage.js
new file mode 100644
index 000000000..50cec7328
--- /dev/null
+++ b/dist/linea/basic_webpage.js
@@ -0,0 +1,76 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_webpage = void 0;
+var basic_webpage = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.basic_webpage = basic_webpage;
\ No newline at end of file
diff --git a/dist/linea/basic_webpage_img_txt.js b/dist/linea/basic_webpage_img_txt.js
new file mode 100644
index 000000000..8466bad67
--- /dev/null
+++ b/dist/linea/basic_webpage_img_txt.js
@@ -0,0 +1,128 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_webpage_img_txt = void 0;
+var basic_webpage_img_txt = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "25",
+ "x2": "33",
+ "y2": "25"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "33",
+ "x2": "33",
+ "y2": "33"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "41",
+ "x2": "33",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "38",
+ "y": "25",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "19",
+ "height": "16"
+ },
+ "children": []
+ }]
+};
+exports.basic_webpage_img_txt = basic_webpage_img_txt;
\ No newline at end of file
diff --git a/dist/linea/basic_webpage_multiple.js b/dist/linea/basic_webpage_multiple.js
new file mode 100644
index 000000000..1df382c80
--- /dev/null
+++ b/dist/linea/basic_webpage_multiple.js
@@ -0,0 +1,165 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_webpage_multiple = void 0;
+var basic_webpage_multiple = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "54",
+ "height": "42"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "54",
+ "height": "42"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,12 11,7 63,7 63,50 58,50 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,12 11,7 63,7 63,50 58,50 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "23",
+ "x2": "55",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "23",
+ "x2": "55",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "19",
+ "x2": "6",
+ "y2": "19"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "19",
+ "x2": "6",
+ "y2": "19"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "19",
+ "x2": "14",
+ "y2": "19"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "19",
+ "x2": "14",
+ "y2": "19"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "19",
+ "x2": "22",
+ "y2": "19"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "19",
+ "x2": "22",
+ "y2": "19"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.basic_webpage_multiple = basic_webpage_multiple;
\ No newline at end of file
diff --git a/dist/linea/basic_webpage_txt.js b/dist/linea/basic_webpage_txt.js
new file mode 100644
index 000000000..165e32d79
--- /dev/null
+++ b/dist/linea/basic_webpage_txt.js
@@ -0,0 +1,115 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_webpage_txt = void 0;
+var basic_webpage_txt = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "25",
+ "x2": "58",
+ "y2": "25"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "33",
+ "x2": "58",
+ "y2": "33"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "41",
+ "x2": "58",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "15",
+ "x2": "63",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "11",
+ "x2": "6",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "11",
+ "x2": "14",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "11",
+ "x2": "22",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.basic_webpage_txt = basic_webpage_txt;
\ No newline at end of file
diff --git a/dist/linea/basic_world.js b/dist/linea/basic_world.js
new file mode 100644
index 000000000..e91ec55df
--- /dev/null
+++ b/dist/linea/basic_world.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.basic_world = void 0;
+var basic_world = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32.001,0.887c17.184,0,31.113,13.929,31.112,31.113\r\n\tC63.114,49.185,49.184,63.115,32,63.113C14.815,63.114,0.887,49.185,0.888,32.001C0.885,14.816,14.815,0.887,32.001,0.887z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "1",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "32",
+ "x2": "1",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M30,1c0,0-14,11-14,31s14,31,14,31"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34,1c0,0,14,11,14,31S34,63,34,63"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M8,12c0,0,5,10,24,10s24-10,24-10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M8,52c0,0,5-10,24-10s24,10,24,10"
+ },
+ "children": []
+ }]
+};
+exports.basic_world = basic_world;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bag.js b/dist/linea/ecommerce_bag.js
new file mode 100644
index 000000000..1ac139e19
--- /dev/null
+++ b/dist/linea/ecommerce_bag.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bag = void 0;
+var ecommerce_bag = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,18 54,18 54,63 10,63 10,18 20,18 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bag = ecommerce_bag;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bag_check.js b/dist/linea/ecommerce_bag_check.js
new file mode 100644
index 000000000..bd2a4f479
--- /dev/null
+++ b/dist/linea/ecommerce_bag_check.js
@@ -0,0 +1,42 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bag_check = void 0;
+var ecommerce_bag_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,18 54,18 54,63 10,63 10,18 20,18 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,40 30,47 \r\n\t43,34 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bag_check = ecommerce_bag_check;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bag_cloud.js b/dist/linea/ecommerce_bag_cloud.js
new file mode 100644
index 000000000..603824cef
--- /dev/null
+++ b/dist/linea/ecommerce_bag_cloud.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bag_cloud = void 0;
+var ecommerce_bag_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,18 54,18 54,63 10,63 10,18 20,18 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34.887,48H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bag_cloud = ecommerce_bag_cloud;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bag_download.js b/dist/linea/ecommerce_bag_download.js
new file mode 100644
index 000000000..b3408cb1c
--- /dev/null
+++ b/dist/linea/ecommerce_bag_download.js
@@ -0,0 +1,72 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bag_download = void 0;
+var ecommerce_bag_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,43 32,51 \r\n\t24,43 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "51",
+ "x2": "32",
+ "y2": "31"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "51",
+ "x2": "32",
+ "y2": "31"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,18 54,18 54,63 10,63 10,18 20,18 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bag_download = ecommerce_bag_download;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bag_minus.js b/dist/linea/ecommerce_bag_minus.js
new file mode 100644
index 000000000..1f6ad032d
--- /dev/null
+++ b/dist/linea/ecommerce_bag_minus.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bag_minus = void 0;
+var ecommerce_bag_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,18 54,18 54,63 10,63 10,18 20,18 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "42",
+ "x2": "23",
+ "y2": "42"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bag_minus = ecommerce_bag_minus;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bag_plus.js b/dist/linea/ecommerce_bag_plus.js
new file mode 100644
index 000000000..1614b7cb1
--- /dev/null
+++ b/dist/linea/ecommerce_bag_plus.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bag_plus = void 0;
+var ecommerce_bag_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "33",
+ "x2": "32",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "42",
+ "x2": "23",
+ "y2": "42"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,18 54,18 54,63 10,63 10,18 20,18 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bag_plus = ecommerce_bag_plus;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bag_refresh.js b/dist/linea/ecommerce_bag_refresh.js
new file mode 100644
index 000000000..321379460
--- /dev/null
+++ b/dist/linea/ecommerce_bag_refresh.js
@@ -0,0 +1,73 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bag_refresh = void 0;
+var ecommerce_bag_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,42c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,55 36,51 \r\n\t33,47 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,42c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "33,29 30,33 \r\n\t33,37 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,18 54,18 54,63 10,63 10,18 20,18 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bag_refresh = ecommerce_bag_refresh;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bag_remove.js b/dist/linea/ecommerce_bag_remove.js
new file mode 100644
index 000000000..a299d4a47
--- /dev/null
+++ b/dist/linea/ecommerce_bag_remove.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bag_remove = void 0;
+var ecommerce_bag_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,18 54,18 54,63 10,63 10,18 20,18 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "49",
+ "x2": "25",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "49",
+ "x2": "39",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bag_remove = ecommerce_bag_remove;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bag_search.js b/dist/linea/ecommerce_bag_search.js
new file mode 100644
index 000000000..08ffc08e8
--- /dev/null
+++ b/dist/linea/ecommerce_bag_search.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bag_search = void 0;
+var ecommerce_bag_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "39",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "39",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "43",
+ "x2": "41",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "43",
+ "x2": "41",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,18 54,18 54,63 10,63 10,18 20,18 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bag_search = ecommerce_bag_search;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bag_upload.js b/dist/linea/ecommerce_bag_upload.js
new file mode 100644
index 000000000..5579c9dd2
--- /dev/null
+++ b/dist/linea/ecommerce_bag_upload.js
@@ -0,0 +1,72 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bag_upload = void 0;
+var ecommerce_bag_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,40 \r\n\t31.998,32 39.998,40 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "32",
+ "x2": "31.998",
+ "y2": "52"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "32",
+ "x2": "31.998",
+ "y2": "52"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,18 54,18 54,63 10,63 10,18 20,18 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bag_upload = ecommerce_bag_upload;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_banknote.js b/dist/linea/ecommerce_banknote.js
new file mode 100644
index 000000000..1bafc653b
--- /dev/null
+++ b/dist/linea/ecommerce_banknote.js
@@ -0,0 +1,46 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_banknote = void 0;
+var ecommerce_banknote = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "16",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "32"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M10,44c0-2.762-2.238-5-5-5V25c2.762,0,5-2.238,5-5\r\n\th44c0,2.762,2.238,5,5,5v14c-2.762,0-5,2.238-5,5H10z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "8"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_banknote = ecommerce_banknote;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_banknotes.js b/dist/linea/ecommerce_banknotes.js
new file mode 100644
index 000000000..9d9031a44
--- /dev/null
+++ b/dist/linea/ecommerce_banknotes.js
@@ -0,0 +1,56 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_banknotes = void 0;
+var ecommerce_banknotes = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "24",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "26"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,22 11,14 63,14 63,40 55,40 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M10,46c0-3-2-4-5-4V32c3,0,5-1,5-4h35c0,3,2,4,4,4\r\n\tv10c-2,0-4,1-4,4H10z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "27",
+ "cy": "37",
+ "r": "5"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_banknotes = ecommerce_banknotes;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_basket.js b/dist/linea/ecommerce_basket.js
new file mode 100644
index 000000000..f5c576986
--- /dev/null
+++ b/dist/linea/ecommerce_basket.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_basket = void 0;
+var ecommerce_basket = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,25 12,59 52,59 63,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "25",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "25",
+ "x2": "42",
+ "y2": "5"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_basket = ecommerce_basket;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_basket_check.js b/dist/linea/ecommerce_basket_check.js
new file mode 100644
index 000000000..7010d1284
--- /dev/null
+++ b/dist/linea/ecommerce_basket_check.js
@@ -0,0 +1,58 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_basket_check = void 0;
+var ecommerce_basket_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,25 12,59 52,59 63,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "25",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "25",
+ "x2": "42",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23,41 30,48 \r\n\t43,35 "
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_basket_check = ecommerce_basket_check;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_basket_cloud.js b/dist/linea/ecommerce_basket_cloud.js
new file mode 100644
index 000000000..223531022
--- /dev/null
+++ b/dist/linea/ecommerce_basket_cloud.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_basket_cloud = void 0;
+var ecommerce_basket_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,25 12,59 52,59 63,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "25",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "25",
+ "x2": "42",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M34.887,48H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_basket_cloud = ecommerce_basket_cloud;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_basket_download.js b/dist/linea/ecommerce_basket_download.js
new file mode 100644
index 000000000..d2e872add
--- /dev/null
+++ b/dist/linea/ecommerce_basket_download.js
@@ -0,0 +1,88 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_basket_download = void 0;
+var ecommerce_basket_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,25 12,59 52,59 63,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "25",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "25",
+ "x2": "42",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,44 32,52 \r\n\t24,44 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "52",
+ "x2": "32",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "52",
+ "x2": "32",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_basket_download = ecommerce_basket_download;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_basket_minus.js b/dist/linea/ecommerce_basket_minus.js
new file mode 100644
index 000000000..746e581a1
--- /dev/null
+++ b/dist/linea/ecommerce_basket_minus.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_basket_minus = void 0;
+var ecommerce_basket_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,25 12,59 52,59 63,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "25",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "25",
+ "x2": "42",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "43",
+ "x2": "23",
+ "y2": "43"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_basket_minus = ecommerce_basket_minus;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_basket_plus.js b/dist/linea/ecommerce_basket_plus.js
new file mode 100644
index 000000000..f7b53d102
--- /dev/null
+++ b/dist/linea/ecommerce_basket_plus.js
@@ -0,0 +1,73 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_basket_plus = void 0;
+var ecommerce_basket_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,25 12,59 52,59 63,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "25",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "25",
+ "x2": "42",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "34",
+ "x2": "32",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "43",
+ "x2": "23",
+ "y2": "43"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_basket_plus = ecommerce_basket_plus;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_basket_refresh.js b/dist/linea/ecommerce_basket_refresh.js
new file mode 100644
index 000000000..0624b2761
--- /dev/null
+++ b/dist/linea/ecommerce_basket_refresh.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_basket_refresh = void 0;
+var ecommerce_basket_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,25 12,59 52,59 63,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "25",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "25",
+ "x2": "42",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M23,42c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "32,55 35,51 \r\n\t32,47 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,42c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "32,29 29,33 \r\n\t32,37 "
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_basket_refresh = ecommerce_basket_refresh;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_basket_remove.js b/dist/linea/ecommerce_basket_remove.js
new file mode 100644
index 000000000..d4a581095
--- /dev/null
+++ b/dist/linea/ecommerce_basket_remove.js
@@ -0,0 +1,73 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_basket_remove = void 0;
+var ecommerce_basket_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,25 12,59 52,59 63,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "25",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "25",
+ "x2": "42",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "50",
+ "x2": "25",
+ "y2": "36"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "50",
+ "x2": "39",
+ "y2": "36"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_basket_remove = ecommerce_basket_remove;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_basket_search.js b/dist/linea/ecommerce_basket_search.js
new file mode 100644
index 000000000..6af7c799b
--- /dev/null
+++ b/dist/linea/ecommerce_basket_search.js
@@ -0,0 +1,101 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_basket_search = void 0;
+var ecommerce_basket_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,25 12,59 52,59 63,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "25",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "25",
+ "x2": "42",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "40",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "29",
+ "cy": "40",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "44",
+ "x2": "41",
+ "y2": "52"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "44",
+ "x2": "41",
+ "y2": "52"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_basket_search = ecommerce_basket_search;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_basket_upload.js b/dist/linea/ecommerce_basket_upload.js
new file mode 100644
index 000000000..186732a42
--- /dev/null
+++ b/dist/linea/ecommerce_basket_upload.js
@@ -0,0 +1,88 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_basket_upload = void 0;
+var ecommerce_basket_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,25 12,59 52,59 63,25 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "25",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "25",
+ "x2": "42",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "23.998,41 \r\n\t31.998,33 39.998,41 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "33",
+ "x2": "31.998",
+ "y2": "53"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31.998",
+ "y1": "33",
+ "x2": "31.998",
+ "y2": "53"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_basket_upload = ecommerce_basket_upload;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_bath.js b/dist/linea/ecommerce_bath.js
new file mode 100644
index 000000000..3f4214072
--- /dev/null
+++ b/dist/linea/ecommerce_bath.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_bath = void 0;
+var ecommerce_bath = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "48",
+ "x2": "24",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,17h5.443c0,0,8.562-0.783,8.562,7\r\n\ts-8.562,7-8.562,7H24"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,31h6.221c0,0,9.781-0.893,9.781,8\r\n\ts-9.781,8-9.781,8H24"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "29",
+ "y": "13",
+ "width": "2",
+ "height": "39"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_bath = ecommerce_bath;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart.js b/dist/linea/ecommerce_cart.js
new file mode 100644
index 000000000..61af73dff
--- /dev/null
+++ b/dist/linea/ecommerce_cart.js
@@ -0,0 +1,88 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart = void 0;
+var ecommerce_cart = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "20,10 22,4 32,4 34,10 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,4 37,1 53,1 56,10 "
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_cart = ecommerce_cart;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart_check.js b/dist/linea/ecommerce_cart_check.js
new file mode 100644
index 000000000..11700f8d3
--- /dev/null
+++ b/dist/linea/ecommerce_cart_check.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart_check = void 0;
+var ecommerce_cart_check = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "27,24 34,31 \r\n\t47,18 "
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_cart_check = ecommerce_cart_check;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart_cloud.js b/dist/linea/ecommerce_cart_cloud.js
new file mode 100644
index 000000000..304298b61
--- /dev/null
+++ b/dist/linea/ecommerce_cart_cloud.js
@@ -0,0 +1,78 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart_cloud = void 0;
+var ecommerce_cart_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M38.887,31H43c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_cart_cloud = ecommerce_cart_cloud;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart_content.js b/dist/linea/ecommerce_cart_content.js
new file mode 100644
index 000000000..aeb08d5e2
--- /dev/null
+++ b/dist/linea/ecommerce_cart_content.js
@@ -0,0 +1,68 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart_content = void 0;
+var ecommerce_cart_content = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_cart_content = ecommerce_cart_content;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart_download.js b/dist/linea/ecommerce_cart_download.js
new file mode 100644
index 000000000..901e20a6a
--- /dev/null
+++ b/dist/linea/ecommerce_cart_download.js
@@ -0,0 +1,109 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart_download = void 0;
+var ecommerce_cart_download = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "44,27 36,35 \r\n\t28,27 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "35",
+ "x2": "36",
+ "y2": "15"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "35",
+ "x2": "36",
+ "y2": "15"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_cart_download = ecommerce_cart_download;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart_minus.js b/dist/linea/ecommerce_cart_minus.js
new file mode 100644
index 000000000..4fbaaddcf
--- /dev/null
+++ b/dist/linea/ecommerce_cart_minus.js
@@ -0,0 +1,81 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart_minus = void 0;
+var ecommerce_cart_minus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "26",
+ "x2": "27",
+ "y2": "26"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_cart_minus = ecommerce_cart_minus;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart_plus.js b/dist/linea/ecommerce_cart_plus.js
new file mode 100644
index 000000000..642758777
--- /dev/null
+++ b/dist/linea/ecommerce_cart_plus.js
@@ -0,0 +1,94 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart_plus = void 0;
+var ecommerce_cart_plus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "17",
+ "x2": "36",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "26",
+ "x2": "27",
+ "y2": "26"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_cart_plus = ecommerce_cart_plus;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart_refresh.js b/dist/linea/ecommerce_cart_refresh.js
new file mode 100644
index 000000000..305255e1f
--- /dev/null
+++ b/dist/linea/ecommerce_cart_refresh.js
@@ -0,0 +1,110 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart_refresh = void 0;
+var ecommerce_cart_refresh = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M28,26c0,4.418,3.582,9,8,9h4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "37,39 40,35 \r\n\t37,31 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M46,26c0-4.418-3.582-9-8-9h-4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "37,13 34,17 \r\n\t37,21 "
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_cart_refresh = ecommerce_cart_refresh;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart_remove.js b/dist/linea/ecommerce_cart_remove.js
new file mode 100644
index 000000000..d08864f14
--- /dev/null
+++ b/dist/linea/ecommerce_cart_remove.js
@@ -0,0 +1,94 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart_remove = void 0;
+var ecommerce_cart_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "43",
+ "y1": "33",
+ "x2": "29",
+ "y2": "19"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "33",
+ "x2": "43",
+ "y2": "19"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_cart_remove = ecommerce_cart_remove;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart_search.js b/dist/linea/ecommerce_cart_search.js
new file mode 100644
index 000000000..11cee7332
--- /dev/null
+++ b/dist/linea/ecommerce_cart_search.js
@@ -0,0 +1,122 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart_search = void 0;
+var ecommerce_cart_search = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "33",
+ "cy": "23",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "33",
+ "cy": "23",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "27",
+ "x2": "45",
+ "y2": "35"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "27",
+ "x2": "45",
+ "y2": "35"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_cart_search = ecommerce_cart_search;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cart_upload.js b/dist/linea/ecommerce_cart_upload.js
new file mode 100644
index 000000000..8bc436b60
--- /dev/null
+++ b/dist/linea/ecommerce_cart_upload.js
@@ -0,0 +1,109 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cart_upload = void 0;
+var ecommerce_cart_upload = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "57",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "57",
+ "x2": "38",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "14,57 10,2 0,2 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "13,43 56,40 63,10 11,10 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "27.998,24 \r\n\t35.998,16 43.998,24 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35.998",
+ "y1": "16",
+ "x2": "35.998",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35.998",
+ "y1": "16",
+ "x2": "35.998",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_cart_upload = ecommerce_cart_upload;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_cent.js b/dist/linea/ecommerce_cent.js
new file mode 100644
index 000000000..4bbdc7274
--- /dev/null
+++ b/dist/linea/ecommerce_cent.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_cent = void 0;
+var ecommerce_cent = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "12",
+ "x2": "32",
+ "y2": "52"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_cent = ecommerce_cent;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_colon.js b/dist/linea/ecommerce_colon.js
new file mode 100644
index 000000000..6c8f28bc0
--- /dev/null
+++ b/dist/linea/ecommerce_colon.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_colon = void 0;
+var ecommerce_colon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "14",
+ "x2": "21",
+ "y2": "49"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "14",
+ "x2": "26",
+ "y2": "49"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_colon = ecommerce_colon;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_creditcard.js b/dist/linea/ecommerce_creditcard.js
new file mode 100644
index 000000000..bb8a0f441
--- /dev/null
+++ b/dist/linea/ecommerce_creditcard.js
@@ -0,0 +1,76 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_creditcard = void 0;
+var ecommerce_creditcard = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "11",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "42"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "17",
+ "x2": "63",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "25",
+ "x2": "63",
+ "y2": "25"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "47",
+ "x2": "10",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "47",
+ "x2": "41",
+ "y2": "47"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_creditcard = ecommerce_creditcard;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_diamond.js b/dist/linea/ecommerce_diamond.js
new file mode 100644
index 000000000..ceaa70739
--- /dev/null
+++ b/dist/linea/ecommerce_diamond.js
@@ -0,0 +1,101 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_diamond = void 0;
+var ecommerce_diamond = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29,6 46,6 63,27 32,58 1,27 18,6 32,6 \r\n\t\t32,58 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29,6 46,6 63,27 32,58 1,27 18,6 32,6 \r\n\t\t32,58 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,57 18,27 24,6 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,57 18,27 24,6 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,57 46,27 40,6 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,57 46,27 40,6 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "27",
+ "x2": "63",
+ "y2": "27"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "27",
+ "x2": "63",
+ "y2": "27"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_diamond = ecommerce_diamond;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_dollar.js b/dist/linea/ecommerce_dollar.js
new file mode 100644
index 000000000..62fa1de64
--- /dev/null
+++ b/dist/linea/ecommerce_dollar.js
@@ -0,0 +1,49 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_dollar = void 0;
+var ecommerce_dollar = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "29",
+ "y": "13",
+ "width": "2",
+ "height": "39"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "33",
+ "y": "13",
+ "width": "2",
+ "height": "39"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M40.988,23c0,0,0-6-9-6s-8,7-8,7s0,7,8,7\r\n\tc9,0,10.012,6,10.012,7c0,2,0.988,8-10.012,8c-9,0-8.988-4-8.988-5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_dollar = ecommerce_dollar;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_euro.js b/dist/linea/ecommerce_euro.js
new file mode 100644
index 000000000..65b91f086
--- /dev/null
+++ b/dist/linea/ecommerce_euro.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_euro = void 0;
+var ecommerce_euro = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "30",
+ "x2": "34",
+ "y2": "30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "34",
+ "x2": "34",
+ "y2": "34"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_euro = ecommerce_euro;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_franc.js b/dist/linea/ecommerce_franc.js
new file mode 100644
index 000000000..2c19a8e92
--- /dev/null
+++ b/dist/linea/ecommerce_franc.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_franc = void 0;
+var ecommerce_franc = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,48 25,18 41,18 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "32",
+ "x2": "39",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "38",
+ "x2": "34",
+ "y2": "38"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_franc = ecommerce_franc;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_gift.js b/dist/linea/ecommerce_gift.js
new file mode 100644
index 000000000..038932576
--- /dev/null
+++ b/dist/linea/ecommerce_gift.js
@@ -0,0 +1,70 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_gift = void 0;
+var ecommerce_gift = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "18",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "9"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "6",
+ "y": "27",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "31"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "58",
+ "x2": "32",
+ "y2": "18"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,18c0,0-13,0.101-13-9c0-7,13-4.068,13,2\r\n\tC32,17.067,32,18,32,18z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,18c0,0,13,0.101,13-9c0-7-13-4.068-13,2\r\n\tC32,17.067,32,18,32,18z"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_gift = ecommerce_gift;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_graph1.js b/dist/linea/ecommerce_graph1.js
new file mode 100644
index 000000000..569d0bcb5
--- /dev/null
+++ b/dist/linea/ecommerce_graph1.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_graph1 = void 0;
+var ecommerce_graph1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M54.999,36.001C55,50.913,42.912,63,28,62.999\r\n\tC13.087,63,1,50.912,1.001,36C1,21.088,13.088,9,28,9.001V36L54.999,36.001z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M63,28C63.001,13.087,50.914,0.998,36.001,1v27H63z"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_graph1 = ecommerce_graph1;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_graph2.js b/dist/linea/ecommerce_graph2.js
new file mode 100644
index 000000000..f7aeaa048
--- /dev/null
+++ b/dist/linea/ecommerce_graph2.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_graph2 = void 0;
+var ecommerce_graph2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "10",
+ "y": "29",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "12",
+ "height": "34"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "42",
+ "y": "39",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "12",
+ "height": "24"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "26",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "12",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_graph2 = ecommerce_graph2;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_graph3.js b/dist/linea/ecommerce_graph3.js
new file mode 100644
index 000000000..aed017e97
--- /dev/null
+++ b/dist/linea/ecommerce_graph3.js
@@ -0,0 +1,111 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_graph3 = void 0;
+var ecommerce_graph3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "56",
+ "cy": "34",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "22",
+ "cy": "4",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "40",
+ "cy": "50",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "7",
+ "cy": "31",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "28",
+ "x2": "20",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "43",
+ "y1": "48",
+ "x2": "54",
+ "y2": "36"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "57",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "6",
+ "x2": "38",
+ "y2": "47"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_graph3 = ecommerce_graph3;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_graph_decrease.js b/dist/linea/ecommerce_graph_decrease.js
new file mode 100644
index 000000000..98a2c9861
--- /dev/null
+++ b/dist/linea/ecommerce_graph_decrease.js
@@ -0,0 +1,102 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_graph_decrease = void 0;
+var ecommerce_graph_decrease = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "10",
+ "y": "16",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "12",
+ "height": "47"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "42",
+ "y": "45",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "12",
+ "height": "18"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "26",
+ "y": "32",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "12",
+ "height": "31"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "1",
+ "x2": "54",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "1",
+ "x2": "54",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "43,39 54,39 \r\n\t\t54,28 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "43,39 54,39 \r\n\t\t54,28 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_graph_decrease = ecommerce_graph_decrease;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_graph_increase.js b/dist/linea/ecommerce_graph_increase.js
new file mode 100644
index 000000000..9105756f7
--- /dev/null
+++ b/dist/linea/ecommerce_graph_increase.js
@@ -0,0 +1,102 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_graph_increase = void 0;
+var ecommerce_graph_increase = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "10",
+ "y": "45",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "12",
+ "height": "18"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "42",
+ "y": "18",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "12",
+ "height": "45"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "26",
+ "y": "32",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "12",
+ "height": "31"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "38",
+ "x2": "51",
+ "y2": "1"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "38",
+ "x2": "51",
+ "y2": "1"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,1 51,1 51,12 \r\n\t\t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,1 51,1 51,12 \r\n\t\t\t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_graph_increase = ecommerce_graph_increase;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_guarani.js b/dist/linea/ecommerce_guarani.js
new file mode 100644
index 000000000..cbc64557f
--- /dev/null
+++ b/dist/linea/ecommerce_guarani.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_guarani = void 0;
+var ecommerce_guarani = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,21c0,0-1-4-10-4s-12,7-12,15s3,15,12,15\r\n\ts10-4,10-4v-7h-6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "12",
+ "x2": "32",
+ "y2": "52"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_guarani = ecommerce_guarani;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_kips.js b/dist/linea/ecommerce_kips.js
new file mode 100644
index 000000000..a05977215
--- /dev/null
+++ b/dist/linea/ecommerce_kips.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_kips = void 0;
+var ecommerce_kips = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "16",
+ "x2": "25",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "43,48 26,31 42,16 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "31",
+ "x2": "39",
+ "y2": "31"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_kips = ecommerce_kips;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_lira.js b/dist/linea/ecommerce_lira.js
new file mode 100644
index 000000000..1c58e8077
--- /dev/null
+++ b/dist/linea/ecommerce_lira.js
@@ -0,0 +1,70 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_lira = void 0;
+var ecommerce_lira = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,19c0,0-1.059-3-6-3s-9,2-9,7s0,26,0,26h14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "49",
+ "x2": "27",
+ "y2": "49"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "32",
+ "x2": "35",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "38",
+ "x2": "35",
+ "y2": "38"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_lira = ecommerce_lira;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_megaphone.js b/dist/linea/ecommerce_megaphone.js
new file mode 100644
index 000000000..a1f1730a8
--- /dev/null
+++ b/dist/linea/ecommerce_megaphone.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_megaphone = void 0;
+var ecommerce_megaphone = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,29 1,35 7,41 45.5,41 61,53 63,53 63,29 \r\n\t63,5 61,5 45.5,17 7,17 1,23 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "19,41 12,59 18,59 28,41 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "43",
+ "y1": "17",
+ "x2": "43",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "36",
+ "y1": "41",
+ "x2": "36",
+ "y2": "17"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_megaphone = ecommerce_megaphone;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_money.js b/dist/linea/ecommerce_money.js
new file mode 100644
index 000000000..bf515f405
--- /dev/null
+++ b/dist/linea/ecommerce_money.js
@@ -0,0 +1,118 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_money = void 0;
+var ecommerce_money = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "38",
+ "r": "19"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "38",
+ "r": "13"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "30,51 1,51 1,57 38,57 38,56 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,45 3,45 3,51 30,51 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "26,39 5,39 5,45 27,45 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "26,33 1,33 1,39 26,39 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29,27 3,27 3,33 26,33 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "35,21 1,21 1,27 29,27 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "40,20 40,15 3,15 3,21 35,21 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "9",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "37",
+ "height": "6"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_money = ecommerce_money;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_naira.js b/dist/linea/ecommerce_naira.js
new file mode 100644
index 000000000..29163d8c8
--- /dev/null
+++ b/dist/linea/ecommerce_naira.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_naira = void 0;
+var ecommerce_naira = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,49 22,18 23,18 39,48 40,48 40,17 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "30",
+ "x2": "45",
+ "y2": "30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "36",
+ "x2": "45",
+ "y2": "36"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_naira = ecommerce_naira;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_pesos.js b/dist/linea/ecommerce_pesos.js
new file mode 100644
index 000000000..eb6853ea4
--- /dev/null
+++ b/dist/linea/ecommerce_pesos.js
@@ -0,0 +1,70 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_pesos = void 0;
+var ecommerce_pesos = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "48",
+ "x2": "24",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,17h7c0,0,11-1,11,9s-11,9-11,9h-7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "24",
+ "x2": "47",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "28",
+ "x2": "47",
+ "y2": "28"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_pesos = ecommerce_pesos;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_pound.js b/dist/linea/ecommerce_pound.js
new file mode 100644
index 000000000..aa0bcdd5f
--- /dev/null
+++ b/dist/linea/ecommerce_pound.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_pound = void 0;
+var ecommerce_pound = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,19c0,0-1.059-3-6-3c-4.941,0-9,2-9,7s0,26,0,26\r\n\th14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "49",
+ "x2": "27",
+ "y2": "49"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "32",
+ "x2": "35",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_pound = ecommerce_pound;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt.js b/dist/linea/ecommerce_receipt.js
new file mode 100644
index 000000000..8b2ff7b96
--- /dev/null
+++ b/dist/linea/ecommerce_receipt.js
@@ -0,0 +1,189 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt = void 0;
+var ecommerce_receipt = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "14.999",
+ "x2": "46",
+ "y2": "14.999"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "14.999",
+ "x2": "46",
+ "y2": "14.999"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "23.999",
+ "x2": "46",
+ "y2": "23.999"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "23.999",
+ "x2": "46",
+ "y2": "23.999"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "33.999",
+ "x2": "46",
+ "y2": "33.999"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "33.999",
+ "x2": "46",
+ "y2": "33.999"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "43.999",
+ "x2": "46",
+ "y2": "43.999"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "43.999",
+ "x2": "46",
+ "y2": "43.999"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "53.999",
+ "x2": "46",
+ "y2": "53.999"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "53.999",
+ "x2": "46",
+ "y2": "53.999"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_receipt = ecommerce_receipt;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_bath.js b/dist/linea/ecommerce_receipt_bath.js
new file mode 100644
index 000000000..f9d585f68
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_bath.js
@@ -0,0 +1,101 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_bath = void 0;
+var ecommerce_receipt_bath = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "48",
+ "x2": "26",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M26,23h5c0,0,6,0,6,6c0,5-6,5-6,5h-5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M27,34h5c0,0,7-0.226,7,7c0,6-7,6-7,6h-6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "20",
+ "x2": "32",
+ "y2": "50"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_bath = ecommerce_receipt_bath;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_cent.js b/dist/linea/ecommerce_receipt_cent.js
new file mode 100644
index 000000000..1211acfb5
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_cent.js
@@ -0,0 +1,78 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_cent = void 0;
+var ecommerce_receipt_cent = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "20",
+ "x2": "34",
+ "y2": "49"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_cent = ecommerce_receipt_cent;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_dollar.js b/dist/linea/ecommerce_receipt_dollar.js
new file mode 100644
index 000000000..6f0aa95ee
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_dollar.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_dollar = void 0;
+var ecommerce_receipt_dollar = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M38,28c0,0,0.161-4-6-4s-6,3-6,5s0.523,4,6,4\r\n\tc6.161,0,7,4.315,7,5c0,1.369,0.53,6-7,6c-6.161,0-6-3.315-6-4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "21",
+ "x2": "34",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "21",
+ "x2": "30",
+ "y2": "48"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_dollar = ecommerce_receipt_dollar;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_euro.js b/dist/linea/ecommerce_receipt_euro.js
new file mode 100644
index 000000000..3e0a69ed0
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_euro.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_euro = void 0;
+var ecommerce_receipt_euro = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "33",
+ "x2": "36",
+ "y2": "33"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "37",
+ "x2": "36",
+ "y2": "37"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_euro = ecommerce_receipt_euro;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_franc.js b/dist/linea/ecommerce_receipt_franc.js
new file mode 100644
index 000000000..756f10d67
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_franc.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_franc = void 0;
+var ecommerce_receipt_franc = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27,48 27,21 40,21 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "34",
+ "x2": "38",
+ "y2": "34"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "39",
+ "x2": "34",
+ "y2": "39"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_franc = ecommerce_receipt_franc;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_guarani.js b/dist/linea/ecommerce_receipt_guarani.js
new file mode 100644
index 000000000..6406788bb
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_guarani.js
@@ -0,0 +1,78 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_guarani = void 0;
+var ecommerce_receipt_guarani = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,26c0,0-0.933-3-8-3c-7.066,0-9,4.719-9,11\r\n\ts1.934,12,9,12c7.067,0,8-4,8-4v-5h-4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "20",
+ "x2": "34",
+ "y2": "49"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_guarani = ecommerce_receipt_guarani;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_kips.js b/dist/linea/ecommerce_receipt_kips.js
new file mode 100644
index 000000000..da8a061f5
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_kips.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_kips = void 0;
+var ecommerce_receipt_kips = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "20",
+ "x2": "27",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,48 26.916,33.125 40.024,20 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "33",
+ "x2": "37",
+ "y2": "33"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_kips = ecommerce_receipt_kips;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_lira.js b/dist/linea/ecommerce_receipt_lira.js
new file mode 100644
index 000000000..9d60af1e8
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_lira.js
@@ -0,0 +1,104 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_lira = void 0;
+var ecommerce_receipt_lira = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M39,23c0,0-1.062-1.916-4.941-1.916\r\n\tC30.178,21.084,27,22.074,27,26c0,3.927,0,21,0,21h11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "34",
+ "x2": "34",
+ "y2": "34"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "38",
+ "x2": "34",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "47",
+ "x2": "27",
+ "y2": "47"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_lira = ecommerce_receipt_lira;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_naira.js b/dist/linea/ecommerce_receipt_naira.js
new file mode 100644
index 000000000..ac3bdcb5d
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_naira.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_naira = void 0;
+var ecommerce_receipt_naira = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,48 25,21 25.929,21 39.071,47 40,47 \r\n\t40,20 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "31",
+ "x2": "44",
+ "y2": "31"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "37",
+ "x2": "44",
+ "y2": "37"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_naira = ecommerce_receipt_naira;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_pesos.js b/dist/linea/ecommerce_receipt_pesos.js
new file mode 100644
index 000000000..cbb94e024
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_pesos.js
@@ -0,0 +1,104 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_pesos = void 0;
+var ecommerce_receipt_pesos = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "48",
+ "x2": "24",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,21h6c0,0,10.018-0.703,10.018,8S30,37,30,37h-6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "27",
+ "x2": "44",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "31",
+ "x2": "44",
+ "y2": "31"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_pesos = ecommerce_receipt_pesos;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_pound.js b/dist/linea/ecommerce_receipt_pound.js
new file mode 100644
index 000000000..10b1d2e40
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_pound.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_pound = void 0;
+var ecommerce_receipt_pound = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M39,23c0,0-1.062-1.916-4.941-1.916\r\n\tC30.178,21.084,27,22.074,27,26c0,3.927,0,21,0,21h11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "34",
+ "x2": "34",
+ "y2": "34"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "47",
+ "x2": "27",
+ "y2": "47"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_pound = ecommerce_receipt_pound;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_rublo.js b/dist/linea/ecommerce_receipt_rublo.js
new file mode 100644
index 000000000..41deeead2
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_rublo.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_rublo = void 0;
+var ecommerce_receipt_rublo = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "48",
+ "x2": "26",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M26,21h5.953c0,0,10.078-0.723,10.078,8\r\n\ts-10.078,8-10.078,8H22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "42",
+ "x2": "33",
+ "y2": "42"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_rublo = ecommerce_receipt_rublo;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_rupee.js b/dist/linea/ecommerce_receipt_rupee.js
new file mode 100644
index 000000000..4488995fc
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_rupee.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_rupee = void 0;
+var ecommerce_receipt_rupee = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M35.062,49.938L22,38v-1h6c0,0,10,0.75,10-8\r\n\tc0-7.875-10-8-10-8h-7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "21",
+ "x2": "43",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "26",
+ "x2": "43",
+ "y2": "26"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_rupee = ecommerce_receipt_rupee;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_tugrik.js b/dist/linea/ecommerce_receipt_tugrik.js
new file mode 100644
index 000000000..99b5ae2a1
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_tugrik.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_tugrik = void 0;
+var ecommerce_receipt_tugrik = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "21",
+ "x2": "32",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "21",
+ "x2": "43",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "26",
+ "x2": "27",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "31",
+ "x2": "27",
+ "y2": "37"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_tugrik = ecommerce_receipt_tugrik;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_won.js b/dist/linea/ecommerce_receipt_won.js
new file mode 100644
index 000000000..c2edda9ad
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_won.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_won = void 0;
+var ecommerce_receipt_won = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,20 24,47 25,47 31,22 33,22 39,47 \r\n\t40,47 46,20 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "32",
+ "x2": "48",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "37",
+ "x2": "48",
+ "y2": "37"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_won = ecommerce_receipt_won;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_yen.js b/dist/linea/ecommerce_receipt_yen.js
new file mode 100644
index 000000000..80527b69d
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_yen.js
@@ -0,0 +1,183 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_yen = void 0;
+var ecommerce_receipt_yen = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,22 32,36 32,48 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,22 32,36 32,48 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "22",
+ "x2": "32",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "22",
+ "x2": "32",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "38",
+ "x2": "41",
+ "y2": "38"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "38",
+ "x2": "41",
+ "y2": "38"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "33",
+ "x2": "41",
+ "y2": "33"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "33",
+ "x2": "41",
+ "y2": "33"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "33",
+ "x2": "30",
+ "y2": "33"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "33",
+ "x2": "30",
+ "y2": "33"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_receipt_yen = ecommerce_receipt_yen;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_receipt_yen2.js b/dist/linea/ecommerce_receipt_yen2.js
new file mode 100644
index 000000000..0607b63be
--- /dev/null
+++ b/dist/linea/ecommerce_receipt_yen2.js
@@ -0,0 +1,101 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_receipt_yen2 = void 0;
+var ecommerce_receipt_yen2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "21",
+ "x2": "42",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "26",
+ "x2": "45",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M28,27v16c0,0-0.602,4-3.121,4H22"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M36,27v17c0,0,0.637,3,3.997,3H42"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_receipt_yen2 = ecommerce_receipt_yen2;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_recept_colon.js b/dist/linea/ecommerce_recept_colon.js
new file mode 100644
index 000000000..153032ce4
--- /dev/null
+++ b/dist/linea/ecommerce_recept_colon.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_recept_colon = void 0;
+var ecommerce_recept_colon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,14.999 26,14.999 26,0.999 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37.869",
+ "y1": "20",
+ "x2": "24",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "21",
+ "x2": "28",
+ "y2": "48"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_recept_colon = ecommerce_recept_colon;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_rublo.js b/dist/linea/ecommerce_rublo.js
new file mode 100644
index 000000000..afa317c0e
--- /dev/null
+++ b/dist/linea/ecommerce_rublo.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_rublo = void 0;
+var ecommerce_rublo = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "48",
+ "x2": "24",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,17h7c0,0,11-1,11,9s-11,9-11,9H19"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "41",
+ "x2": "32",
+ "y2": "41"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_rublo = ecommerce_rublo;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_rupee.js b/dist/linea/ecommerce_rupee.js
new file mode 100644
index 000000000..b93127b16
--- /dev/null
+++ b/dist/linea/ecommerce_rupee.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_rupee = void 0;
+var ecommerce_rupee = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M36,50L21,36v-1h7c0,0,11,1,11-9c0-9-11-9-11-9h-8"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "17",
+ "x2": "44",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "23",
+ "x2": "44",
+ "y2": "23"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_rupee = ecommerce_rupee;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_safe.js b/dist/linea/ecommerce_safe.js
new file mode 100644
index 000000000..1ce8df37c
--- /dev/null
+++ b/dist/linea/ecommerce_safe.js
@@ -0,0 +1,217 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_safe = void 0;
+var ecommerce_safe = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "5",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "54"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "11",
+ "y": "11",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "46",
+ "height": "42"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "17",
+ "x2": "12",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "27",
+ "x2": "12",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "37",
+ "x2": "12",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "47",
+ "x2": "12",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "32",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "32",
+ "r": "9"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "32",
+ "x2": "41",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "29",
+ "x2": "44",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "32",
+ "x2": "53",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "35",
+ "x2": "44",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "34",
+ "x2": "50",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "46",
+ "y1": "30",
+ "x2": "50",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "30",
+ "x2": "38",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "34",
+ "x2": "38.026",
+ "y2": "38"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_safe = ecommerce_safe;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_sale.js b/dist/linea/ecommerce_sale.js
new file mode 100644
index 000000000..1d45161e9
--- /dev/null
+++ b/dist/linea/ecommerce_sale.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_sale = void 0;
+var ecommerce_sale = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,1 63,39 39,63 1,25 1,1 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,1 63,39 39,63 1,25 1,1 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "17",
+ "cy": "17",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "17",
+ "cy": "17",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_sale = ecommerce_sale;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_sales.js b/dist/linea/ecommerce_sales.js
new file mode 100644
index 000000000..0acf0dff1
--- /dev/null
+++ b/dist/linea/ecommerce_sales.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_sales = void 0;
+var ecommerce_sales = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "21.903,5 55,38.097 34.097,59 1,25.903 \r\n\t\t1,5 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "21.903,5 55,38.097 34.097,59 1,25.903 \r\n\t\t1,5 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29.903,5 63,38.097 42.097,59 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29.903,5 63,38.097 42.097,59 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "14",
+ "cy": "18",
+ "r": "5"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "14",
+ "cy": "18",
+ "r": "5"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_sales = ecommerce_sales;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_ticket.js b/dist/linea/ecommerce_ticket.js
new file mode 100644
index 000000000..a75172cb7
--- /dev/null
+++ b/dist/linea/ecommerce_ticket.js
@@ -0,0 +1,113 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_ticket = void 0;
+var ecommerce_ticket = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M57,18c-1.504,1.504-2.705,2-5,2\r\n\t\tc-4.59,0-8-3.41-8-8c0-2.295,0.496-3.496,2-5l-6-6L1,40l6,6c1.504-1.504,2.705-2,5-2c4.59,0,8,3.41,8,8c0,2.295-0.496,3.496-2,5\r\n\t\tl6,6l39-39L57,18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M57,18c-1.504,1.504-2.705,2-5,2\r\n\t\tc-4.59,0-8-3.41-8-8c0-2.295,0.496-3.496,2-5l-6-6L1,40l6,6c1.504-1.504,2.705-2,5-2c4.59,0,8,3.41,8,8c0,2.295-0.496,3.496-2,5\r\n\t\tl6,6l39-39L57,18z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "15",
+ "x2": "30",
+ "y2": "19"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "15",
+ "x2": "30",
+ "y2": "19"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "34",
+ "x2": "49",
+ "y2": "38"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "34",
+ "x2": "49",
+ "y2": "38"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "21",
+ "x2": "36",
+ "y2": "25"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "28",
+ "x2": "43",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_ticket = ecommerce_ticket;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_tugriks.js b/dist/linea/ecommerce_tugriks.js
new file mode 100644
index 000000000..1d715d709
--- /dev/null
+++ b/dist/linea/ecommerce_tugriks.js
@@ -0,0 +1,73 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_tugriks = void 0;
+var ecommerce_tugriks = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "17",
+ "x2": "32",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "18",
+ "y1": "17",
+ "x2": "46",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "24",
+ "x2": "25",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "30",
+ "x2": "25",
+ "y2": "38"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_tugriks = ecommerce_tugriks;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_wallet.js b/dist/linea/ecommerce_wallet.js
new file mode 100644
index 000000000..cdb1e55d8
--- /dev/null
+++ b/dist/linea/ecommerce_wallet.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_wallet = void 0;
+var ecommerce_wallet = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "61,44 61,55 1,55 1,15 61,15 61,26 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "6,9 54,9 54,15 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M6,9c-2.762,0-5,2.239-5,5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M43.125,26c-4.972,0-9,4.029-9,9c0,4.97,4.028,9,9,9\r\n\tH63V26H43.125z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "44",
+ "cy": "35",
+ "r": "3"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_wallet = ecommerce_wallet;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_won.js b/dist/linea/ecommerce_won.js
new file mode 100644
index 000000000..c10b5276c
--- /dev/null
+++ b/dist/linea/ecommerce_won.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_won = void 0;
+var ecommerce_won = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "15,16 23,48 24,48 31,18 33,18 40,48 \r\n\t41,48 49,16 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "13",
+ "y1": "30",
+ "x2": "51",
+ "y2": "30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "13",
+ "y1": "36",
+ "x2": "51",
+ "y2": "36"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_won = ecommerce_won;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_yen.js b/dist/linea/ecommerce_yen.js
new file mode 100644
index 000000000..99787fa51
--- /dev/null
+++ b/dist/linea/ecommerce_yen.js
@@ -0,0 +1,149 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_yen = void 0;
+var ecommerce_yen = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "20,16 32,33 32,48 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "20,16 32,33 32,48 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "16",
+ "x2": "32",
+ "y2": "33"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "16",
+ "x2": "32",
+ "y2": "33"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "36",
+ "x2": "43",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "36",
+ "x2": "43",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "30",
+ "x2": "43",
+ "y2": "30"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "30",
+ "x2": "43",
+ "y2": "30"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "30",
+ "x2": "30",
+ "y2": "30"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "30",
+ "x2": "30",
+ "y2": "30"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ecommerce_yen = ecommerce_yen;
\ No newline at end of file
diff --git a/dist/linea/ecommerce_yen2.js b/dist/linea/ecommerce_yen2.js
new file mode 100644
index 000000000..a6b32548c
--- /dev/null
+++ b/dist/linea/ecommerce_yen2.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ecommerce_yen2 = void 0;
+var ecommerce_yen2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "17",
+ "x2": "44",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "23",
+ "x2": "48",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M26,23v20c0,0,0,5-3,5h-4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M37,23v21c0,0,0,4,4,4h2"
+ },
+ "children": []
+ }]
+};
+exports.ecommerce_yen2 = ecommerce_yen2;
\ No newline at end of file
diff --git a/dist/linea/index.js b/dist/linea/index.js
new file mode 100644
index 000000000..a67806bc5
--- /dev/null
+++ b/dist/linea/index.js
@@ -0,0 +1 @@
+"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.arrows_slim_right_dashed=exports.arrows_slim_right=exports.arrows_slim_left_dashed=exports.arrows_slim_left=exports.arrows_slim_down_dashed=exports.arrows_slim_down=exports.arrows_slide_up2=exports.arrows_slide_up1=exports.arrows_slide_right2=exports.arrows_slide_right1=exports.arrows_slide_left2=exports.arrows_slide_left1=exports.arrows_slide_down2=exports.arrows_slide_down1=exports.arrows_sign_up=exports.arrows_sign_right=exports.arrows_sign_left=exports.arrows_sign_down=exports.arrows_shrink_vertical2=exports.arrows_shrink_vertical1=exports.arrows_shrink_horizontal1=exports.arrows_shrink_horizonal2=exports.arrows_shrink_diagonal2=exports.arrows_shrink_diagonal1=exports.arrows_shrink=exports.arrows_rotate_dashed=exports.arrows_rotate_anti_dashed=exports.arrows_rotate_anti=exports.arrows_rotate=exports.arrows_right=exports.arrows_remove=exports.arrows_question=exports.arrows_plus=exports.arrows_move_top=exports.arrows_move_right=exports.arrows_move_left=exports.arrows_move_bottom=exports.arrows_move2=exports.arrows_move=exports.arrows_minus=exports.arrows_left=exports.arrows_keyboard_up=exports.arrows_keyboard_tab=exports.arrows_keyboard_shift=exports.arrows_keyboard_right=exports.arrows_keyboard_return=exports.arrows_keyboard_left=exports.arrows_keyboard_delete=exports.arrows_keyboard_alt=exports.arrows_info=exports.arrows_horizontal=exports.arrows_hamburger1=exports.arrows_glide_vertical=exports.arrows_glide_horizontal=exports.arrows_glide=exports.arrows_fit_vertical=exports.arrows_fit_horizontal=exports.arrows_expand_vertical1=exports.arrows_expand_horizontal1=exports.arrows_expand_diagonal1=exports.arrows_expand=exports.arrows_exclamation=exports.arrows_drag_vert=exports.arrows_drag_up_dashed=exports.arrows_drag_up=exports.arrows_drag_right_dashed=exports.arrows_drag_right=exports.arrows_drag_left_dashed=exports.arrows_drag_left=exports.arrows_drag_horiz=exports.arrows_drag_down_dashed=exports.arrows_drag_down=exports.arrows_downright=exports.arrows_downleft=exports.arrows_down=exports.arrows_diagonal2=exports.arrows_diagonal=exports.arrows_deny=exports.arrows_compress=exports.arrows_clockwise_dashed=exports.arrows_clockwise=exports.arrows_circle_upright=exports.arrows_circle_upleft=exports.arrows_circle_up=exports.arrows_circle_right=exports.arrows_circle_remove=exports.arrows_circle_plus=exports.arrows_circle_minus=exports.arrows_circle_left=exports.arrows_circle_downright=exports.arrows_circle_downleft=exports.arrows_circle_down=exports.arrows_circle_check=exports.arrows_check=exports.arrows_button_up=exports.arrows_button_on=exports.arrows_button_off=exports.arrows_button_down=exports.arrows_anticlockwise_dashed=exports.arrows_anticlockwise=void 0;exports.basic_elaboration_calendar_star=exports.basic_elaboration_calendar_search=exports.basic_elaboration_calendar_remove=exports.basic_elaboration_calendar_refresh=exports.basic_elaboration_calendar_previous=exports.basic_elaboration_calendar_plus=exports.basic_elaboration_calendar_pencil=exports.basic_elaboration_calendar_noaccess=exports.basic_elaboration_calendar_next=exports.basic_elaboration_calendar_minus=exports.basic_elaboration_calendar_heart=exports.basic_elaboration_calendar_flagged=exports.basic_elaboration_calendar_empty=exports.basic_elaboration_calendar_download=exports.basic_elaboration_calendar_cloud=exports.basic_elaboration_calendar_check=exports.basic_elaboration_browser_upload=exports.basic_elaboration_browser_star=exports.basic_elaboration_browser_search=exports.basic_elaboration_browser_remove=exports.basic_elaboration_browser_refresh=exports.basic_elaboration_browser_plus=exports.basic_elaboration_browser_minus=exports.basic_elaboration_browser_download=exports.basic_elaboration_browser_check=exports.basic_elaboration_briefcase_upload=exports.basic_elaboration_briefcase_star=exports.basic_elaboration_briefcase_search=exports.basic_elaboration_briefcase_remove=exports.basic_elaboration_briefcase_refresh=exports.basic_elaboration_briefcase_plus=exports.basic_elaboration_briefcase_minus=exports.basic_elaboration_briefcase_flagged=exports.basic_elaboration_briefcase_download=exports.basic_elaboration_briefcase_check=exports.basic_elaboration_bookmark_remove=exports.basic_elaboration_bookmark_plus=exports.basic_elaboration_bookmark_minus=exports.basic_elaboration_bookmark_checck=exports.basic_download=exports.basic_display=exports.basic_diamonds=exports.basic_cup=exports.basic_compass=exports.basic_clubs=exports.basic_cloud=exports.basic_clockwise=exports.basic_clock=exports.basic_clessidre=exports.basic_chronometer=exports.basic_case=exports.basic_cards_hearts=exports.basic_cards_diamonds=exports.basic_calendar=exports.basic_calculator=exports.basic_bookmark=exports.basic_book_pencil=exports.basic_book_pen=exports.basic_book=exports.basic_bolt=exports.basic_battery_half=exports.basic_battery_full=exports.basic_battery_empty=exports.basic_battery_charge=exports.basic_ban=exports.basic_archive_full=exports.basic_archive=exports.basic_anticlockwise=exports.basic_anchor=exports.basic_alarm=exports.basic_accelerator=exports.arrows_vertical=exports.arrows_upright=exports.arrows_up_double=exports.arrows_up=exports.arrows_switch_vertical=exports.arrows_switch_horizontal=exports.arrows_stretch_vertical2=exports.arrows_stretch_vertical1=exports.arrows_stretch_horizontal2=exports.arrows_stretch_horizontal1=exports.arrows_stretch_diagonal4=exports.arrows_stretch_diagonal3=exports.arrows_stretch_diagonal2=exports.arrows_stretch_diagonal1=exports.arrows_squares=exports.arrows_square_upright=exports.arrows_square_upleft=exports.arrows_square_up=exports.arrows_square_right=exports.arrows_square_remove=exports.arrows_square_plus=exports.arrows_square_minus=exports.arrows_square_left=exports.arrows_square_downright=exports.arrows_square_downleft=exports.arrows_square_down=exports.arrows_square_check=exports.arrows_slim_up_dashed=exports.arrows_slim_up=void 0;exports.basic_elaboration_todolist_pencil=exports.basic_elaboration_todolist_noaccess=exports.basic_elaboration_todolist_minus=exports.basic_elaboration_todolist_flagged=exports.basic_elaboration_todolist_download=exports.basic_elaboration_todolist_cloud=exports.basic_elaboration_todolist_check=exports.basic_elaboration_todolist_2=exports.basic_elaboration_tablet_search=exports.basic_elaboration_tablet_refresh=exports.basic_elaboration_tablet_picture=exports.basic_elaboration_tablet_pencil=exports.basic_elaboration_tablet_note=exports.basic_elaboration_tablet_noaccess=exports.basic_elaboration_tablet_heart=exports.basic_elaboration_tablet_cloud=exports.basic_elaboration_smartphone_search=exports.basic_elaboration_smartphone_refresh=exports.basic_elaboration_smartphone_picture=exports.basic_elaboration_smartphone_pencil=exports.basic_elaboration_smartphone_note=exports.basic_elaboration_smartphone_noaccess=exports.basic_elaboration_smartphone_heart=exports.basic_elaboration_smartphone_cloud=exports.basic_elaboration_message_sad=exports.basic_elaboration_message_remove=exports.basic_elaboration_message_refresh=exports.basic_elaboration_message_plus=exports.basic_elaboration_message_note=exports.basic_elaboration_message_minus=exports.basic_elaboration_message_heart=exports.basic_elaboration_message_happy=exports.basic_elaboration_message_dots=exports.basic_elaboration_message_check=exports.basic_elaboration_mail_upload=exports.basic_elaboration_mail_star=exports.basic_elaboration_mail_search=exports.basic_elaboration_mail_remove=exports.basic_elaboration_mail_refresh=exports.basic_elaboration_mail_previous=exports.basic_elaboration_mail_picture=exports.basic_elaboration_mail_pencil=exports.basic_elaboration_mail_note=exports.basic_elaboration_mail_noaccess=exports.basic_elaboration_mail_next=exports.basic_elaboration_mail_heart=exports.basic_elaboration_mail_flagged=exports.basic_elaboration_mail_download=exports.basic_elaboration_mail_document=exports.basic_elaboration_mail_cloud=exports.basic_elaboration_mail_check=exports.basic_elaboration_folder_upload=exports.basic_elaboration_folder_star=exports.basic_elaboration_folder_search=exports.basic_elaboration_folder_remove=exports.basic_elaboration_folder_refresh=exports.basic_elaboration_folder_previous=exports.basic_elaboration_folder_plus=exports.basic_elaboration_folder_picture=exports.basic_elaboration_folder_pencil=exports.basic_elaboration_folder_note=exports.basic_elaboration_folder_noaccess=exports.basic_elaboration_folder_next=exports.basic_elaboration_folder_minus=exports.basic_elaboration_folder_heart=exports.basic_elaboration_folder_graph=exports.basic_elaboration_folder_flagged=exports.basic_elaboration_folder_download=exports.basic_elaboration_folder_document=exports.basic_elaboration_folder_cloud=exports.basic_elaboration_folder_check=exports.basic_elaboration_document_upload=exports.basic_elaboration_document_star=exports.basic_elaboration_document_search=exports.basic_elaboration_document_remove=exports.basic_elaboration_document_refresh=exports.basic_elaboration_document_previous=exports.basic_elaboration_document_plus=exports.basic_elaboration_document_picture=exports.basic_elaboration_document_pencil=exports.basic_elaboration_document_note=exports.basic_elaboration_document_noaccess=exports.basic_elaboration_document_next=exports.basic_elaboration_document_minus=exports.basic_elaboration_document_heart=exports.basic_elaboration_document_graph=exports.basic_elaboration_document_flagged=exports.basic_elaboration_document_download=exports.basic_elaboration_document_cloud=exports.basic_elaboration_document_check=exports.basic_elaboration_cloud_upload=exports.basic_elaboration_cloud_search=exports.basic_elaboration_cloud_remove=exports.basic_elaboration_cloud_refresh=exports.basic_elaboration_cloud_plus=exports.basic_elaboration_cloud_noaccess=exports.basic_elaboration_cloud_minus=exports.basic_elaboration_cloud_download=exports.basic_elaboration_cloud_check=exports.basic_elaboration_calendar_upload=void 0;exports.basic_webpage_img_txt=exports.basic_webpage=exports.basic_watch=exports.basic_video=exports.basic_usb=exports.basic_upload=exports.basic_trashcan_remove=exports.basic_trashcan_refresh=exports.basic_trashcan_full=exports.basic_trashcan=exports.basic_todolist_pencil=exports.basic_todolist_pen=exports.basic_todo_txt=exports.basic_todo_pencil=exports.basic_todo=exports.basic_target=exports.basic_tablet=exports.basic_star=exports.basic_spread_text_bookmark=exports.basic_spread_text=exports.basic_spread_bookmark=exports.basic_spread=exports.basic_spades=exports.basic_smartphone=exports.basic_signs=exports.basic_sheet_pencil=exports.basic_sheet_pen=exports.basic_sheet=exports.basic_share=exports.basic_settings=exports.basic_server_upload=exports.basic_server_download=exports.basic_server_cloud=exports.basic_server2=exports.basic_server=exports.basic_rss=exports.basic_question=exports.basic_printer=exports.basic_postcard_multiple=exports.basic_postcard=exports.basic_pin2=exports.basic_pin1=exports.basic_picture_multiple=exports.basic_picture=exports.basic_photo=exports.basic_pencil_ruler=exports.basic_paperplane=exports.basic_notebook_pencil=exports.basic_notebook_pen=exports.basic_notebook=exports.basic_mouse=exports.basic_mixer2=exports.basic_message_txt=exports.basic_message_multiple=exports.basic_message=exports.basic_map=exports.basic_male=exports.basic_mail_open_text=exports.basic_mail_open=exports.basic_mail_multiple=exports.basic_mail=exports.basic_magnifier_plus=exports.basic_magnifier_minus=exports.basic_magnifier=exports.basic_magic_mouse=exports.basic_lock_open=exports.basic_lock=exports.basic_link=exports.basic_lightbulb=exports.basic_life_buoy=exports.basic_laptop=exports.basic_keyboard=exports.basic_key=exports.basic_joypad=exports.basic_ipod=exports.basic_info=exports.basic_home=exports.basic_helm=exports.basic_heart_broken=exports.basic_heart=exports.basic_headset=exports.basic_hammer=exports.basic_gunsight=exports.basic_globe=exports.basic_gear=exports.basic_folder_multiple=exports.basic_folder=exports.basic_floppydisk=exports.basic_flag2=exports.basic_flag1=exports.basic_female=exports.basic_eye_closed=exports.basic_eye=exports.basic_exclamation=exports.basic_elaboration_todolist_upload=exports.basic_elaboration_todolist_star=exports.basic_elaboration_todolist_search=exports.basic_elaboration_todolist_remove=exports.basic_elaboration_todolist_refresh=exports.basic_elaboration_todolist_plus=void 0;exports.music_microphone_old=exports.music_microphone=exports.music_loudspeaker=exports.music_ipod=exports.music_headphones=exports.music_fastforward_button=exports.music_end_button=exports.music_eject_button=exports.music_diapason=exports.music_cd=exports.music_bell=exports.music_beginning_button=exports.ecommerce_yen2=exports.ecommerce_yen=exports.ecommerce_won=exports.ecommerce_wallet=exports.ecommerce_tugriks=exports.ecommerce_ticket=exports.ecommerce_sales=exports.ecommerce_sale=exports.ecommerce_safe=exports.ecommerce_rupee=exports.ecommerce_rublo=exports.ecommerce_recept_colon=exports.ecommerce_receipt_yen2=exports.ecommerce_receipt_yen=exports.ecommerce_receipt_won=exports.ecommerce_receipt_tugrik=exports.ecommerce_receipt_rupee=exports.ecommerce_receipt_rublo=exports.ecommerce_receipt_pound=exports.ecommerce_receipt_pesos=exports.ecommerce_receipt_naira=exports.ecommerce_receipt_lira=exports.ecommerce_receipt_kips=exports.ecommerce_receipt_guarani=exports.ecommerce_receipt_franc=exports.ecommerce_receipt_euro=exports.ecommerce_receipt_dollar=exports.ecommerce_receipt_cent=exports.ecommerce_receipt_bath=exports.ecommerce_receipt=exports.ecommerce_pound=exports.ecommerce_pesos=exports.ecommerce_naira=exports.ecommerce_money=exports.ecommerce_megaphone=exports.ecommerce_lira=exports.ecommerce_kips=exports.ecommerce_guarani=exports.ecommerce_graph_increase=exports.ecommerce_graph_decrease=exports.ecommerce_graph3=exports.ecommerce_graph2=exports.ecommerce_graph1=exports.ecommerce_gift=exports.ecommerce_franc=exports.ecommerce_euro=exports.ecommerce_dollar=exports.ecommerce_diamond=exports.ecommerce_creditcard=exports.ecommerce_colon=exports.ecommerce_cent=exports.ecommerce_cart_upload=exports.ecommerce_cart_search=exports.ecommerce_cart_remove=exports.ecommerce_cart_refresh=exports.ecommerce_cart_plus=exports.ecommerce_cart_minus=exports.ecommerce_cart_download=exports.ecommerce_cart_content=exports.ecommerce_cart_cloud=exports.ecommerce_cart_check=exports.ecommerce_cart=exports.ecommerce_bath=exports.ecommerce_basket_upload=exports.ecommerce_basket_search=exports.ecommerce_basket_remove=exports.ecommerce_basket_refresh=exports.ecommerce_basket_plus=exports.ecommerce_basket_minus=exports.ecommerce_basket_download=exports.ecommerce_basket_cloud=exports.ecommerce_basket_check=exports.ecommerce_basket=exports.ecommerce_banknotes=exports.ecommerce_banknote=exports.ecommerce_bag_upload=exports.ecommerce_bag_search=exports.ecommerce_bag_remove=exports.ecommerce_bag_refresh=exports.ecommerce_bag_plus=exports.ecommerce_bag_minus=exports.ecommerce_bag_download=exports.ecommerce_bag_cloud=exports.ecommerce_bag_check=exports.ecommerce_bag=exports.basic_world=exports.basic_webpage_txt=exports.basic_webpage_multiple=void 0;exports.software_selection_polygon=exports.software_selection_oval=exports.software_scale_reduce=exports.software_scale_expand=exports.software_remove_vectorpoint=exports.software_reflect_vertical=exports.software_reflect_horizontal=exports.software_polygonallasso=exports.software_pencil=exports.software_pen_remove=exports.software_pen_add=exports.software_pen=exports.software_pathfinder_unite=exports.software_pathfinder_subtract=exports.software_pathfinder_intersect=exports.software_pathfinder_exclude=exports.software_paragraph_space_before=exports.software_paragraph_space_after=exports.software_paragraph_justify_right=exports.software_paragraph_justify_left=exports.software_paragraph_justify_center=exports.software_paragraph_justify_all=exports.software_paragraph_center=exports.software_paragraph_align_right=exports.software_paragraph_align_left=exports.software_paragraph=exports.software_paintroller=exports.software_paintbucket=exports.software_paintbrush=exports.software_pages=exports.software_magnete=exports.software_layout_sidebar_right=exports.software_layout_sidebar_left=exports.software_layout_header_sideright=exports.software_layout_header_sideleft=exports.software_layout_header_complex4=exports.software_layout_header_complex3=exports.software_layout_header_complex2=exports.software_layout_header_complex=exports.software_layout_header_4columns=exports.software_layout_header_4boxes=exports.software_layout_header_3columns=exports.software_layout_header_2columns=exports.software_layout_header=exports.software_layout_4lines=exports.software_layout_4columns=exports.software_layout_4boxes=exports.software_layout_3columns=exports.software_layout_2columns=exports.software_layout=exports.software_layers2=exports.software_layers1=exports.software_lasso=exports.software_indent_right=exports.software_indent_left=exports.software_indent_firstline=exports.software_horizontal_distribute_right=exports.software_horizontal_distribute_left=exports.software_horizontal_distribute_center=exports.software_horizontal_align_right=exports.software_horizontal_align_left=exports.software_horizontal_align_center=exports.software_font_vertical_scale=exports.software_font_underline=exports.software_font_tracking=exports.software_font_strikethrough=exports.software_font_smallcaps=exports.software_font_smallcapital=exports.software_font_size=exports.software_font_leading=exports.software_font_kerning=exports.software_font_horizontal_scale=exports.software_font_baseline_shift=exports.software_font_allcaps=exports.software_eyedropper=exports.software_crop=exports.software_character=exports.software_box_roundedrectangle=exports.software_box_rectangle=exports.software_box_polygon=exports.software_box_oval=exports.software_add_vectorpoint=exports.music_volume_up=exports.music_volume_down=exports.music_tape=exports.music_stop_button=exports.music_shuffle_button=exports.music_rewind_button=exports.music_repeat_button=exports.music_recordplayer=exports.music_record=exports.music_radio_portable=exports.music_radio_ghettoblaster=exports.music_playlist=exports.music_play_button=exports.music_pause_button=exports.music_note_single=exports.music_note_multiple=exports.music_mute=exports.music_mixer=void 0;exports.weather_windgust=exports.weather_wind_sun=exports.weather_wind_halfmoon=exports.weather_wind_fullmoon=exports.weather_wind_W=exports.weather_wind_SW=exports.weather_wind_SE=exports.weather_wind_S=exports.weather_wind_NW=exports.weather_wind_NE=exports.weather_wind_N=exports.weather_wind_E=exports.weather_wind=exports.weather_waxing_gibbous=exports.weather_waxing_cresent=exports.weather_waning_gibbous=exports.weather_waning_cresent=exports.weather_virgo=exports.weather_variable_sun=exports.weather_variable_halfmoon=exports.weather_variable_fullmoon=exports.weather_tempest_sun=exports.weather_tempest_halfmoon=exports.weather_tempest_fullmoon=exports.weather_tempest=exports.weather_taurus=exports.weather_sunset=exports.weather_sundown=exports.weather_sun=exports.weather_storm_sun=exports.weather_storm_halfmoon=exports.weather_storm_fullmoon=exports.weather_star=exports.weather_snowflake=exports.weather_snow_sun=exports.weather_snow_halfmoon=exports.weather_snow_fullmoon=exports.weather_snow=exports.weather_scorpio=exports.weather_sagittarius=exports.weather_rain_sun=exports.weather_rain_halfmoon=exports.weather_rain_fullmoon=exports.weather_rain=exports.weather_pisces=exports.weather_newmoon=exports.weather_move2=exports.weather_moonset_half=exports.weather_moonset_full=exports.weather_moondown_half=exports.weather_moondown_full=exports.weather_moon=exports.weather_mistyrain_sun=exports.weather_mistyrain_halfmoon=exports.weather_mistyrain_fullmoon=exports.weather_mistyrain=exports.weather_lightning=exports.weather_libra=exports.weather_leo=exports.weather_last_quarter=exports.weather_hail_sun=exports.weather_hail_halfmoon=exports.weather_hail_fullmoon=exports.weather_hail=exports.weather_gemini=exports.weather_fullmoon=exports.weather_fog_sun=exports.weather_fog_halfmoon=exports.weather_fog_fullmoon=exports.weather_fog=exports.weather_drop=exports.weather_downpour_sun=exports.weather_downpour_halfmoon=exports.weather_downpour_fullmoon=exports.weather_cloud_snowflake=exports.weather_cloud_lightning=exports.weather_cloud_drop=exports.weather_cloud=exports.weather_capricorn=exports.weather_cancer=exports.weather_aries=exports.weather_aquarius=exports.software_vertical_distribute_top=exports.software_vertical_distribute_center=exports.software_vertical_distribute_bottom=exports.software_vertical_align_top=exports.software_vertical_align_center=exports.software_vertical_align_bottom=exports.software_vector_line=exports.software_vector_composite=exports.software_vector_box=exports.software_transform_bezier=exports.software_slice=exports.software_shape_roundedrectangle=exports.software_shape_rectangle=exports.software_shape_polygon=exports.software_shape_oval=exports.software_selection_roundedrectangle=exports.software_selection_rectangle=void 0;var arrows_anticlockwise={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c17.121,0,31,13.879,31,31S49.121,63,32,63"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1C14.879,1,1,14.879,1,32\r\n\tc0,6.713,2.134,12.926,5.759,18l5.62,5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,45 13,56 2,56 \r\n\t"},"children":[]}]};exports.arrows_anticlockwise=arrows_anticlockwise;var arrows_anticlockwise_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c0.672,0,1.339,0.021,2,0.063"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c0.672,0,1.339,0.021,2,0.063"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0593,2.0296","d":"M36.021,1.258\r\n\t\t\tC51.242,3.229,63,16.241,63,32c0,16.104-12.279,29.34-27.986,30.855"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0593,2.0296","d":"M36.021,1.258\r\n\t\t\tC51.242,3.229,63,16.241,63,32c0,16.104-12.279,29.34-27.986,30.855"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34,62.937C33.339,62.979,32.672,63,32,63"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34,62.937C33.339,62.979,32.672,63,32,63"},"children":[]}]}]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1C14.879,1,1,14.879,1,32\r\n\tc0,6.713,2.134,12.926,5.759,18l5.62,5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,45 13,56 2,56 \r\n\t"},"children":[]}]};exports.arrows_anticlockwise_dashed=arrows_anticlockwise_dashed;var arrows_button_down={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,17c0-8.837-7.163-16-16-16S16,8.163,16,17v30\r\n\tc0,8.837,7.163,16,16,16s16-7.163,16-16V17z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"47","r":"12"},"children":[]}]};exports.arrows_button_down=arrows_button_down;var arrows_button_off={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M47,48c8.837,0,16-7.163,16-16s-7.163-16-16-16H17\r\n\tC8.163,16,1,23.163,1,32s7.163,16,16,16H47z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"17","cy":"32","r":"12"},"children":[]}]};exports.arrows_button_off=arrows_button_off;var arrows_button_on={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M47,48c8.837,0,16-7.163,16-16s-7.163-16-16-16H17\r\n\tC8.163,16,1,23.163,1,32s7.163,16,16,16H47z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"47","cy":"32","r":"12"},"children":[]}]};exports.arrows_button_on=arrows_button_on;var arrows_button_up={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,17c0-8.837-7.163-16-16-16S16,8.163,16,17v30\r\n\tc0,8.837,7.163,16,16,16s16-7.163,16-16V17z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"17","r":"12"},"children":[]}]};exports.arrows_button_up=arrows_button_up;var arrows_check={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[]}]}]}]};exports.arrows_check=arrows_check;var arrows_circle_check={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_check=arrows_circle_check;var arrows_circle_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_down=arrows_circle_down;var arrows_circle_downleft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[]}]}]}]};exports.arrows_circle_downleft=arrows_circle_downleft;var arrows_circle_downright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[]}]}]}]};exports.arrows_circle_downright=arrows_circle_downright;var arrows_circle_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_left=arrows_circle_left;var arrows_circle_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_minus=arrows_circle_minus;var arrows_circle_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_plus=arrows_circle_plus;var arrows_circle_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_remove=arrows_circle_remove;var arrows_circle_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_right=arrows_circle_right;var arrows_circle_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]}]};exports.arrows_circle_up=arrows_circle_up;var arrows_circle_upleft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,47 23,23 47,23 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,47 23,23 47,23 \t"},"children":[]}]}]}]};exports.arrows_circle_upleft=arrows_circle_upleft;var arrows_circle_upright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"30.999"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[]}]}]}]};exports.arrows_circle_upright=arrows_circle_upright;var arrows_clockwise={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1C14.879,1,1,14.879,1,32s13.879,31,31,31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c17.121,0,31,13.879,31,31\r\n\tc0,6.713-2.134,12.926-5.759,18l-5.62,5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,45 51,56 \r\n\t62,56 "},"children":[]}]};exports.arrows_clockwise=arrows_clockwise;var arrows_clockwise_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c-0.672,0-1.339,0.021-2,0.063"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c-0.672,0-1.339,0.021-2,0.063"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0593,2.0296","d":"M27.979,1.258\r\n\t\t\tC12.758,3.229,1,16.241,1,32c0,16.104,12.279,29.34,27.986,30.855"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0593,2.0296","d":"M27.979,1.258\r\n\t\t\tC12.758,3.229,1,16.241,1,32c0,16.104,12.279,29.34,27.986,30.855"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M30,62.937C30.661,62.979,31.328,63,32,63"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M30,62.937C30.661,62.979,31.328,63,32,63"},"children":[]}]}]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c17.121,0,31,13.879,31,31\r\n\tc0,6.713-2.134,12.926-5.759,18l-5.62,5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,45 51,56 \r\n\t62,56 "},"children":[]}]};exports.arrows_clockwise_dashed=arrows_clockwise_dashed;var arrows_compress={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,25 40,32 \r\n\t47,39 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,39 24,32 \r\n\t17,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"32","x2":"0","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"32","x2":"40","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,17 32,24 \r\n\t39,17 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,47 32,40 \r\n\t25,47 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"24"},"children":[]}]};exports.arrows_compress=arrows_compress;var arrows_deny={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.919,10.08c12.108,12.106,12.108,31.733,0,43.84\r\n\tc-12.105,12.107-31.732,12.107-43.838,0c-12.108-12.106-12.108-31.733,0-43.84C22.187-2.027,41.813-2.027,53.919,10.08z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10.08","y1":"10.08","x2":"53.92","y2":"53.92"},"children":[]}]};exports.arrows_deny=arrows_deny;var arrows_diagonal={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,12 63,1 52,1 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,52 1,63 12,63 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"63","y2":"1"},"children":[]}]};exports.arrows_diagonal=arrows_diagonal;var arrows_diagonal2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,63 63,63 \r\n\t63,52 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,1 1,1 1,12 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"1","x2":"63","y2":"63"},"children":[]}]};exports.arrows_diagonal2=arrows_diagonal2;var arrows_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[]}]}]}]};exports.arrows_down=arrows_down;var arrows_downleft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[]}]}]}]};exports.arrows_downleft=arrows_downleft;var arrows_downright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[]}]}]}]};exports.arrows_downright=arrows_downright;var arrows_drag_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"63"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"16","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,54 32,63 \r\n\t41,54 "},"children":[]}]};exports.arrows_drag_down=arrows_drag_down;var arrows_drag_down_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"31","x2":"32","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"31","x2":"32","y2":"63"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"16","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,54 32,63 \r\n\t41,54 "},"children":[]}]};exports.arrows_drag_down_dashed=arrows_drag_down_dashed;var arrows_drag_horiz={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"0","x2":"24","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"0","x2":"40","y2":"64"},"children":[]}]};exports.arrows_drag_horiz=arrows_drag_horiz;var arrows_drag_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"32","x2":"1","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"32","x2":"1","y2":"32"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"32","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,23 1,32 10,41 \r\n\t"},"children":[]}]};exports.arrows_drag_left=arrows_drag_left;var arrows_drag_left_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"33","y1":"32","x2":"1","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"33","y1":"32","x2":"1","y2":"32"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"32","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,23 1,32 10,41 \r\n\t"},"children":[]}]};exports.arrows_drag_left_dashed=arrows_drag_left_dashed;var arrows_drag_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"32","x2":"63","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"32","x2":"63","y2":"32"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"16","cy":"32","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,41 63,32 \r\n\t54,23 "},"children":[]}]};exports.arrows_drag_right=arrows_drag_right;var arrows_drag_right_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"31","y1":"32","x2":"63","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"31","y1":"32","x2":"63","y2":"32"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"16","cy":"32","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,41 63,32 \r\n\t54,23 "},"children":[]}]};exports.arrows_drag_right_dashed=arrows_drag_right_dashed;var arrows_drag_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"33","x2":"32","y2":"1"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"33","x2":"32","y2":"1"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"48","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,10 32,1 23,10 \r\n\t"},"children":[]}]};exports.arrows_drag_up=arrows_drag_up;var arrows_drag_up_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"33","x2":"32","y2":"1"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"33","x2":"32","y2":"1"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"48","r":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,10 32,1 23,10 \r\n\t"},"children":[]}]};exports.arrows_drag_up_dashed=arrows_drag_up_dashed;var arrows_drag_vert={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"40","x2":"64","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"64","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"24","x2":"64","y2":"24"},"children":[]}]};exports.arrows_drag_vert=arrows_drag_vert;var arrows_exclamation={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"32","y2":"39"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"43","x2":"32","y2":"47"},"children":[]}]};exports.arrows_exclamation=arrows_exclamation;var arrows_expand={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,12 1,1 12,1 \t\r\n\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,12 1,1 12,1 \t\r\n\t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,63 1,63 1,52 \r\n\t\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,63 1,63 1,52 \r\n\t\t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,52 63,63 \r\n\t\t52,63 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,52 63,63 \r\n\t\t52,63 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,1 63,1 63,12 \r\n\t\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,1 63,1 63,12 \r\n\t\t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"2","x2":"22","y2":"22"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"2","x2":"22","y2":"22"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"42","x2":"62","y2":"62"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"42","x2":"62","y2":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"62","x2":"22","y2":"42"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"62","x2":"22","y2":"42"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"62","y2":"2"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"62","y2":"2"},"children":[]}]}]}]};exports.arrows_expand=arrows_expand;var arrows_expand_diagonal1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"1","x2":"63","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"13","x2":"51.166","y2":"63.166"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,12 63,1 52,1 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,52 1,63 12,63 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"26","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"38","y1":"26","x2":"63","y2":"1"},"children":[]}]};exports.arrows_expand_diagonal1=arrows_expand_diagonal1;var arrows_expand_horizontal1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"0","x2":"21","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"64","x2":"43","y2":"0"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"8,25 1,32 8,39 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"32","x2":"21","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,39 63,32 \r\n\t56,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"32","x2":"43","y2":"32"},"children":[]}]};exports.arrows_expand_horizontal1=arrows_expand_horizontal1;var arrows_expand_vertical1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"21","x2":"0","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"43","x2":"64","y2":"43"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,8 32,1 25,8 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"1","x2":"32","y2":"21"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,56 32,63 \r\n\t39,56 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"43"},"children":[]}]};exports.arrows_expand_vertical1=arrows_expand_vertical1;var arrows_fit_horizontal={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"16,25 9,32 16,39 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"48,39 55,32 \r\n\t48,25 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,32 43,32 9,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"0","x2":"63","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"0","x2":"1","y2":"64"},"children":[]}]};exports.arrows_fit_horizontal=arrows_fit_horizontal;var arrows_fit_vertical={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,16 32,9 25,16 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,48 32,55 \r\n\t39,48 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,55 32,43 32,9 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"1","x2":"64","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"63","x2":"64","y2":"63"},"children":[]}]};exports.arrows_fit_vertical=arrows_fit_vertical;var arrows_glide={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45.968,48.968 \r\n\t\t31.967,62.968 18,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45.968,48.968 \r\n\t\t31.967,62.968 18,49 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,15 \r\n\t\t32.032,0.968 46.032,14.968 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,15 \r\n\t\t32.032,0.968 46.032,14.968 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.968","cy":"31.968","r":"5"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"49,18 63,32 \r\n\t\t49,46 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"49,18 63,32 \r\n\t\t49,46 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15.032,45.968 \r\n\t\t1,31.935 14.968,17.968 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15.032,45.968 \r\n\t\t1,31.935 14.968,17.968 \t"},"children":[]}]}]}]};exports.arrows_glide=arrows_glide;var arrows_glide_horizontal={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"46,15 63,32 \r\n\t\t46,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"46,15 63,32 \r\n\t\t46,49 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,48.935 \r\n\t\t1,31.935 18,14.935 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,48.935 \r\n\t\t1,31.935 18,14.935 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"32","r":"5"},"children":[]}]};exports.arrows_glide_horizontal=arrows_glide_horizontal;var arrows_glide_vertical={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"48.968,45.968 \r\n\t\t31.967,62.968 14.968,45.967 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"48.968,45.968 \r\n\t\t31.967,62.968 14.968,45.967 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15.032,17.967 \r\n\t\t32.032,0.968 49.032,17.968 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15.032,17.967 \r\n\t\t32.032,0.968 49.032,17.968 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.968","cy":"31.968","r":"5"},"children":[]}]};exports.arrows_glide_vertical=arrows_glide_vertical;var arrows_hamburger1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"21","x2":"6","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"21","x2":"64","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"33","x2":"6","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"33","x2":"64","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"45","x2":"6","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"45","x2":"64","y2":"45"},"children":[]}]};exports.arrows_hamburger1=arrows_hamburger1;var arrows_horizontal={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"8,25 1,32 8,39 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,39 63,32 \r\n\t56,25 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,32 43,32 1,32 "},"children":[]}]};exports.arrows_horizontal=arrows_horizontal;var arrows_info={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"32","y2":"25"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"17"},"children":[]}]};exports.arrows_info=arrows_info;var arrows_keyboard_alt={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"6,24 18,24 30,42 \r\n\t58,42 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"58","y1":"24","x2":"30","y2":"24"},"children":[]}]};exports.arrows_keyboard_alt=arrows_keyboard_alt;var arrows_keyboard_delete={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#231F20","stroke-width":"2","stroke-miterlimit":"10","points":"55,44 19,44 9,32 19,20 55,20 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#231F20","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"39","x2":"41","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#231F20","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"25","x2":"41","y2":"39"},"children":[]}]};exports.arrows_keyboard_delete=arrows_keyboard_delete;var arrows_keyboard_left={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"38,21 22,32 \r\n\t\t38,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"38,21 22,32 \r\n\t\t38,43 \t"},"children":[]}]}]}]};exports.arrows_keyboard_left=arrows_keyboard_left;var arrows_keyboard_return={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,37 55,37 55,18 44,18 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,37 55,37 55,18 44,18 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,46 9,37 18,28 \r\n\t"},"children":[]}]};exports.arrows_keyboard_return=arrows_keyboard_return;var arrows_keyboard_right={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"26,21 42,32 \r\n\t\t26,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"26,21 42,32 \r\n\t\t26,43 \t"},"children":[]}]}]}]};exports.arrows_keyboard_right=arrows_keyboard_right;var arrows_keyboard_shift={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,36 32,18 \r\n\t\t47,36 39,36 39.001,46 25,46 25,36 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,36 32,18 \r\n\t\t47,36 39,36 39.001,46 25,46 25,36 \t"},"children":[]}]}]}]};exports.arrows_keyboard_shift=arrows_keyboard_shift;var arrows_keyboard_tab={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,25 46,32 \r\n\t39,39 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,32 12,32 46,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"23","x2":"50","y2":"41"},"children":[]}]};exports.arrows_keyboard_tab=arrows_keyboard_tab;var arrows_keyboard_up={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#231F20","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"21,40 32,24 \r\n\t\t43,40 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"21,40 32,24 \r\n\t\t43,40 \t"},"children":[]}]}]}]};exports.arrows_keyboard_up=arrows_keyboard_up;var arrows_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[]}]}]}]};exports.arrows_left=arrows_left;var arrows_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[]}]}]}]};exports.arrows_minus=arrows_minus;var arrows_move={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,39 63,32 \r\n\t56,25 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"8,25 1,32 8,39 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"32","x2":"27","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"32","x2":"63","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,8 32,1 25,8 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,56 32,63 \r\n\t39,56 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"27","x2":"32","y2":"1"},"children":[]}]};exports.arrows_move=arrows_move;var arrows_move2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,39 63,32 \r\n\t56,25 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"8,25 1,32 8,39 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"32","x2":"32","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"32","x2":"63","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,8 32,1 25,8 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,56 32,63 \r\n\t39,56 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"32","x2":"32","y2":"1"},"children":[]}]};exports.arrows_move2=arrows_move2;var arrows_move_bottom={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,44 32,51 \r\n\t39,44 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,51 32,39 32,5 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"59","x2":"64","y2":"59"},"children":[]}]};exports.arrows_move_bottom=arrows_move_bottom;var arrows_move_left={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"20,25 13,32 \r\n\t20,39 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,32 47,32 13,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"0","x2":"5","y2":"64"},"children":[]}]};exports.arrows_move_left=arrows_move_left;var arrows_move_right={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"44,39 51,32 \r\n\t44,25 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"51,32 39,32 5,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"59","y1":"0","x2":"59","y2":"64"},"children":[]}]};exports.arrows_move_right=arrows_move_right;var arrows_move_top={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,20 32,13 \r\n\t25,20 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,59 32,47 32,13 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"5","x2":"64","y2":"5"},"children":[]}]};exports.arrows_move_top=arrows_move_top;var arrows_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[]}]}]}]};exports.arrows_plus=arrows_plus;var arrows_question={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"43","x2":"30","y2":"47"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,21c0-3,2-5,8-5c5,0,8,3,8,7s-6,7-6,7s-4,2-4,8v1\r\n\t"},"children":[]}]};exports.arrows_question=arrows_question;var arrows_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[]}]}]}]};exports.arrows_remove=arrows_remove;var arrows_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[]}]}]}]};exports.arrows_right=arrows_right;var arrows_rotate={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,1c7.678,0,15.354,2.929,21.212,8.787\r\n\t\tC64.91,20.484,65.841,37.248,57.003,49l-6.001,6.002"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,1c7.678,0,15.354,2.929,21.212,8.787\r\n\t\tC64.91,20.484,65.841,37.248,57.003,49l-6.001,6.002"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,63c-7.678,0-15.354-2.929-21.212-8.787\r\n\t\tC-0.91,43.516-1.841,26.752,6.997,15l6.001-6.002"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,63c-7.678,0-15.354-2.929-21.212-8.787\r\n\t\tC-0.91,43.516-1.841,26.752,6.997,15l6.001-6.002"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,44 51,55 \r\n\t62,55 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,20 13,9 2,9 \r\n\t"},"children":[]}]};exports.arrows_rotate=arrows_rotate;var arrows_rotate_anti={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,1C23.322,1,15.646,3.929,9.788,9.787\r\n\t\tC-0.91,20.484-1.841,37.248,6.997,49l6.001,6.002"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,1C23.322,1,15.646,3.929,9.788,9.787\r\n\t\tC-0.91,20.484-1.841,37.248,6.997,49l6.001,6.002"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,63c7.678,0,15.354-2.929,21.212-8.787\r\n\t\tC64.91,43.516,65.841,26.752,57.003,15l-6.001-6.002"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,63c7.678,0,15.354-2.929,21.212-8.787\r\n\t\tC64.91,43.516,65.841,26.752,57.003,15l-6.001-6.002"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,44 13,55 2,55 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,20 51,9 62,9 \r\n\t"},"children":[]}]};exports.arrows_rotate_anti=arrows_rotate_anti;var arrows_rotate_anti_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,1c-0.667,0-1.333,0.022-1.998,0.066"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,1c-0.667,0-1.333,0.022-1.998,0.066"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M26.929,1.275\r\n\t\t\t\tC20.659,2.13,14.607,4.967,9.788,9.787C-0.91,20.484-1.841,37.248,6.997,49l3.846,3.847"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M26.929,1.275\r\n\t\t\t\tC20.659,2.13,14.607,4.967,9.788,9.787C-0.91,20.484-1.841,37.248,6.997,49l3.846,3.847"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11.584","y1":"53.588","x2":"12.998","y2":"55.002"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11.584","y1":"53.588","x2":"12.998","y2":"55.002"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,63c0.667,0,1.333-0.022,1.998-0.066"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,63c0.667,0,1.333-0.022,1.998-0.066"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M37.071,62.725\r\n\t\t\t\tc6.27-0.854,12.321-3.691,17.141-8.512C64.91,43.516,65.841,26.752,57.003,15l-3.846-3.847"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M37.071,62.725\r\n\t\t\t\tc6.27-0.854,12.321-3.691,17.141-8.512C64.91,43.516,65.841,26.752,57.003,15l-3.846-3.847"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52.416","y1":"10.412","x2":"51.002","y2":"8.998"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52.416","y1":"10.412","x2":"51.002","y2":"8.998"},"children":[]}]}]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,44 13,55 2,55 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,20 51,9 62,9 \r\n\t"},"children":[]}]};exports.arrows_rotate_anti_dashed=arrows_rotate_anti_dashed;var arrows_rotate_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,1c0.666,0,1.333,0.022,1.998,0.066"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,1c0.666,0,1.333,0.022,1.998,0.066"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M37.071,1.276\r\n\t\t\t\tc6.27,0.854,12.321,3.691,17.141,8.511C64.91,20.484,65.841,37.248,57.003,49l-3.846,3.846"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M37.071,1.276\r\n\t\t\t\tc6.27,0.854,12.321,3.691,17.141,8.511C64.91,20.484,65.841,37.248,57.003,49l-3.846,3.846"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52.416","y1":"53.588","x2":"51.002","y2":"55.002"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52.416","y1":"53.588","x2":"51.002","y2":"55.002"},"children":[]}]}]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,63c-0.666,0-1.333-0.022-1.998-0.066"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31,63c-0.666,0-1.333-0.022-1.998-0.066"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M26.929,62.724\r\n\t\t\t\tc-6.27-0.854-12.321-3.691-17.141-8.511C-0.91,43.516-1.841,26.752,6.997,15l3.846-3.846"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1705,2.0853","d":"M26.929,62.724\r\n\t\t\t\tc-6.27-0.854-12.321-3.691-17.141-8.511C-0.91,43.516-1.841,26.752,6.997,15l3.846-3.846"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11.584","y1":"10.412","x2":"12.998","y2":"8.998"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11.584","y1":"10.412","x2":"12.998","y2":"8.998"},"children":[]}]}]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,44 51,55 \r\n\t62,55 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,20 13,9 2,9 \r\n\t"},"children":[]}]};exports.arrows_rotate_dashed=arrows_rotate_dashed;var arrows_shrink={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"23","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"23","y2":"41"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,41 23,41 \r\n\t\t23,52 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,41 23,41 \r\n\t\t23,52 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"63","x2":"41","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"63","x2":"41","y2":"41"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,52 41,41 \r\n\t\t52,41 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,52 41,41 \r\n\t\t52,41 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"1","x2":"41","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"1","x2":"41","y2":"23"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,23 41,23 \r\n\t\t41,12 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,23 41,23 \r\n\t\t41,12 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"1","x2":"23","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"1","x2":"23","y2":"23"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,12 23,23 \r\n\t\t12,23 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,12 23,23 \r\n\t\t12,23 \t"},"children":[]}]}]}]};exports.arrows_shrink=arrows_shrink;var arrows_shrink_diagonal1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"1","x2":"63","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"37","x2":"27","y2":"63"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"35,18 35,29 \r\n\t46,29 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"28.771,45.771 \r\n\t28.771,34.771 17.771,34.771 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"50","x2":"29","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"29","x2":"50.5","y2":"13.5"},"children":[]}]};exports.arrows_shrink_diagonal1=arrows_shrink_diagonal1;var arrows_shrink_diagonal2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"35,18 35,29 \r\n\t46,29 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"28.771,45.771 \r\n\t28.771,34.771 17.771,34.771 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"29","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"29","x2":"63","y2":"1"},"children":[]}]};exports.arrows_shrink_diagonal2=arrows_shrink_diagonal2;var arrows_shrink_horizonal2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45,25 38,32 \r\n\t45,39 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"32","x2":"64","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"19,39 26,32 \r\n\t19,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"32","x2":"0","y2":"32"},"children":[]}]};exports.arrows_shrink_horizonal2=arrows_shrink_horizonal2;var arrows_shrink_horizontal1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"0","x2":"5","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"59","y1":"0","x2":"59","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45,25 38,32 \r\n\t45,39 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"32","x2":"59","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"19,39 26,32 \r\n\t19,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"32","x2":"5","y2":"32"},"children":[]}]};exports.arrows_shrink_horizontal1=arrows_shrink_horizontal1;var arrows_shrink_vertical1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"5","x2":"0","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"59","x2":"0","y2":"59"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,19 32,26 \r\n\t39,19 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"26","x2":"32","y2":"5"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,45 32,38 \r\n\t25,45 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"38","x2":"32","y2":"59"},"children":[]}]};exports.arrows_shrink_vertical1=arrows_shrink_vertical1;var arrows_shrink_vertical2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,19 32,26 \r\n\t39,19 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"26","x2":"32","y2":"0"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,45 32,38 \r\n\t25,45 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"38","x2":"32","y2":"64"},"children":[]}]};exports.arrows_shrink_vertical2=arrows_shrink_vertical2;var arrows_sign_down={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"15,45 15,1 49,1 49,45 31.999,63 "},"children":[]}]};exports.arrows_sign_down=arrows_sign_down;var arrows_sign_left={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"19,15 63,15 63,49 19,49 1,31.999 "},"children":[]}]};exports.arrows_sign_left=arrows_sign_left;var arrows_sign_right={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"45,49 1,49 1,15 45,15 63,32.001 "},"children":[]}]};exports.arrows_sign_right=arrows_sign_right;var arrows_sign_up={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"49,19 49,63 15,63 15,19 32.001,1 "},"children":[]}]};exports.arrows_sign_up=arrows_sign_up;var arrows_slide_down1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,63 27,1 46,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,63 27,1 46,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,54 27,63 \r\n\t36,54 "},"children":[]}]};exports.arrows_slide_down1=arrows_slide_down1;var arrows_slide_down2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,63 37,1 18,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,63 37,1 18,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"46,54 37,63 \r\n\t28,54 "},"children":[]}]};exports.arrows_slide_down2=arrows_slide_down2;var arrows_slide_left1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,27 63,27 63,46 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,27 63,27 63,46 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,18 1,27 10,36 \r\n\t"},"children":[]}]};exports.arrows_slide_left1=arrows_slide_left1;var arrows_slide_left2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,37 63,37 63,18 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,37 63,37 63,18 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,46 1,37 10,28 \r\n\t"},"children":[]}]};exports.arrows_slide_left2=arrows_slide_left2;var arrows_slide_right1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,27 1,27 1,46 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,27 1,27 1,46 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,18 63,27 \r\n\t54,36 "},"children":[]}]};exports.arrows_slide_right1=arrows_slide_right1;var arrows_slide_right2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,37 1,37 1,18 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,37 1,37 1,18 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,46 63,37 \r\n\t54,28 "},"children":[]}]};exports.arrows_slide_right2=arrows_slide_right2;var arrows_slide_up1={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,1 37,63 18,63 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,1 37,63 18,63 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"46,10 37,1 28,10 \r\n\t"},"children":[]}]};exports.arrows_slide_up1=arrows_slide_up1;var arrows_slide_up2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,1 27,63 46,63 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,1 27,63 46,63 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"18,10 27,1 36,10 \r\n\t"},"children":[]}]};exports.arrows_slide_up2=arrows_slide_up2;var arrows_slim_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"63"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,54 32,63 \r\n\t23,54 "},"children":[]}]};exports.arrows_slim_down=arrows_slim_down;var arrows_slim_down_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"0","x2":"32","y2":"55"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"0","x2":"32","y2":"55"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,54 32,63 \r\n\t23,54 "},"children":[]}]};exports.arrows_slim_down_dashed=arrows_slim_down_dashed;var arrows_slim_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"32","x2":"1","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"32","x2":"1","y2":"32"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,23 1,32 10,41 \r\n\t"},"children":[]}]};exports.arrows_slim_left=arrows_slim_left;var arrows_slim_left_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"64","y1":"32","x2":"1","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"64","y1":"32","x2":"1","y2":"32"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,23 1,32 10,41 \r\n\t"},"children":[]}]};exports.arrows_slim_left_dashed=arrows_slim_left_dashed;var arrows_slim_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"63","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"63","y2":"32"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,41 63,32 \r\n\t54,23 "},"children":[]}]};exports.arrows_slim_right=arrows_slim_right;var arrows_slim_right_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"0","y1":"32","x2":"63","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"0","y1":"32","x2":"63","y2":"32"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54,41 63,32 \r\n\t54,23 "},"children":[]}]};exports.arrows_slim_right_dashed=arrows_slim_right_dashed;var arrows_slim_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"1"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"1"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,10 32,1 23,10 \r\n\t"},"children":[]}]};exports.arrows_slim_up=arrows_slim_up;var arrows_slim_up_dashed={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"64","x2":"32","y2":"2"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"64","x2":"32","y2":"2"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,10 32,1 23,10 \r\n\t"},"children":[]}]};exports.arrows_slim_up_dashed=arrows_slim_up_dashed;var arrows_square_check={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,33 25,45 \r\n\t\t49,21 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_check=arrows_square_check;var arrows_square_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,24 32,41 \r\n\t\t49,24 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_down=arrows_square_down;var arrows_square_downleft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"47,41 23,41 \r\n\t\t23,17 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_downleft=arrows_square_downleft;var arrows_square_downright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,17 41,41 \r\n\t\t17,41 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_downright=arrows_square_downright;var arrows_square_left={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,15 20,32 \r\n\t\t37,49 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_left=arrows_square_left;var arrows_square_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"31","x2":"50","y2":"31"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_minus=arrows_square_minus;var arrows_square_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"50","x2":"32","y2":"14"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"50","y2":"32"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_plus=arrows_square_plus;var arrows_square_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18.947","y1":"17.153","x2":"45.045","y2":"43.056"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19.045","y1":"43.153","x2":"44.947","y2":"17.056"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_remove=arrows_square_remove;var arrows_square_right={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,15 44,32 \r\n\t\t27,49 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_right=arrows_square_right;var arrows_square_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_up=arrows_square_up;var arrows_square_upleft={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,47 23,23 \r\n\t\t47,23 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,47 23,23 \r\n\t\t47,23 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_upleft=arrows_square_upleft;var arrows_square_upright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.arrows_square_upright=arrows_square_upright;var arrows_squares={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"27","height":"27"},"children":[]},{"name":"rect","attribs":{"x":"36","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"27","height":"27"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"36","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"27","height":"27"},"children":[]},{"name":"rect","attribs":{"x":"36","y":"36","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"27","height":"27"},"children":[]}]};exports.arrows_squares=arrows_squares;var arrows_stretch_diagonal1={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,12 63,1 52,1 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,52 1,63 12,63 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"26","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"38","y1":"26","x2":"63","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"24","y1":"24","x2":"40","y2":"40"},"children":[]}]};exports.arrows_stretch_diagonal1=arrows_stretch_diagonal1;var arrows_stretch_diagonal2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,12 1,1 12,1 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,52 63,63 \r\n\t52,63 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"63","y1":"63","x2":"38","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"26","y1":"26","x2":"1","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"40","y1":"24","x2":"24","y2":"40"},"children":[]}]};exports.arrows_stretch_diagonal2=arrows_stretch_diagonal2;var arrows_stretch_diagonal3={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,12 63,1 52,1 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,52 1,63 12,63 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"32","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"32","y1":"32","x2":"63","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"1","y1":"1","x2":"63","y2":"63"},"children":[]}]};exports.arrows_stretch_diagonal3=arrows_stretch_diagonal3;var arrows_stretch_diagonal4={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,12 1,1 12,1 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"63,52 63,63 \r\n\t52,63 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"63","y1":"63","x2":"32","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"32","y1":"32","x2":"1","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"63","y1":"1","x2":"1","y2":"63"},"children":[]}]};exports.arrows_stretch_diagonal4=arrows_stretch_diagonal4;var arrows_stretch_horizontal1={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"55,40 63,32 \r\n\t55,24 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"9,24 1,32 9,40 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"2,32 11.677,32 26,32 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,32 41.677,32 62,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"43"},"children":[]}]};exports.arrows_stretch_horizontal1=arrows_stretch_horizontal1;var arrows_stretch_horizontal2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"55,40 63,32 \r\n\t55,24 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"9,24 1,32 9,40 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"2,32 11.677,32 32,32 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,32 41.677,32 62,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"64"},"children":[]}]};exports.arrows_stretch_horizontal2=arrows_stretch_horizontal2;var arrows_stretch_vertical1={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,9 32,1 24,9 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"24,55 32,63 \r\n\t40,55 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,62 32,52.323 32,38 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,26 32,22.323 32,2 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"32","x2":"43","y2":"32"},"children":[]}]};exports.arrows_stretch_vertical1=arrows_stretch_vertical1;var arrows_stretch_vertical2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,9 32,1 24,9 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"24,55 32,63 \r\n\t40,55 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,62 32,52.323 32,32 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,32 32,22.323 32,2 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"64","y2":"32"},"children":[]}]};exports.arrows_stretch_vertical2=arrows_stretch_vertical2;var arrows_switch_horizontal={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"54.083,51 \r\n\t63.083,42 54.083,33 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"42","x2":"9","y2":"42"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10.083,13 \r\n\t1.083,22 10.083,31 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"22","x2":"55","y2":"22"},"children":[]}]};exports.arrows_switch_horizontal=arrows_switch_horizontal;var arrows_switch_vertical={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51.083,10 \r\n\t42.083,1 33.083,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42.083","y1":"1","x2":"42","y2":"55"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13.083,54 \r\n\t22.083,63 31.083,54 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.083","y1":"63","x2":"22","y2":"9"},"children":[]}]};exports.arrows_switch_vertical=arrows_switch_vertical;var arrows_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,40 32,23 \r\n\t\t49,40 \t"},"children":[]}]}]}]};exports.arrows_up=arrows_up;var arrows_up_double={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,32.936 \r\n\t\t32,15.936 49,32.936 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,32.936 \r\n\t\t32,15.936 49,32.936 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,47.936 \r\n\t\t32,30.936 49,47.936 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,47.936 \r\n\t\t32,30.936 49,47.936 \t"},"children":[]}]}]}]};exports.arrows_up_double=arrows_up_double;var arrows_upright={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"17,23 41,23 \r\n\t\t41,47 \t"},"children":[]}]}]}]};exports.arrows_upright=arrows_upright;var arrows_vertical={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,8 32,1 25,8 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,56 32,63 \r\n\t39,56 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,63 32,43 32,1 "},"children":[]}]};exports.arrows_vertical=arrows_vertical;var basic_accelerator={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.001,0.887c17.184,0,31.113,13.929,31.112,31.113\r\n\tC63.114,49.185,49.184,63.115,32,63.113C14.815,63.114,0.887,49.185,0.888,32.001C0.885,14.816,14.815,0.887,32.001,0.887z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M10,32c0-5.63,2.148-11.26,6.444-15.556\r\n\tc8.591-8.593,22.521-8.593,31.112,0C51.852,20.74,54,26.37,54,32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"26","x2":"30.333","y2":"33.333"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"35","r":"2"},"children":[]}]};exports.basic_accelerator=basic_accelerator;var basic_alarm={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"26"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,20 32,32 40,36 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21.995","y1":"56.005","x2":"15","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"63","x2":"42.005","y2":"56.005"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,8 5,4 15,6 3,18 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,4 63,8 61,18 49,6 "},"children":[]}]};exports.basic_alarm=basic_alarm;var basic_anchor={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"13","x2":"32","y2":"63"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"19,50 9,47 6,57 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45,50 55,47 \r\n\t59,57 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M54.752,47\r\n\tC51.555,56.301,42.576,63,32,63c-10.575,0-19.553-6.698-22.751-15.998"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"23","y1":"17","x2":"41","y2":"17"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"7","r":"6"},"children":[]}]};exports.basic_anchor=basic_anchor;var basic_anticlockwise={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,12 32,32 41,41 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"32","x2":"8","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"32","x2":"60","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"60","x2":"32","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"8","x2":"32","y2":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63C14.879,63,1,49.121,1,32S14.879,1,32,1"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63c17.121,0,31-13.879,31-31\r\n\tc0-6.713-2.134-12.926-5.759-18l-5.62-5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,19 51,8 62,8 \r\n\t"},"children":[]}]};exports.basic_anticlockwise=basic_anticlockwise;var basic_archive={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]}]};exports.basic_archive=basic_archive;var basic_archive_full={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"31","x2":"52","y2":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"21","x2":"50","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"11","x2":"48","y2":"11"},"children":[]}]};exports.basic_archive_full=basic_archive_full;var basic_ban={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.919,10.08c12.108,12.106,12.108,31.733,0,43.84\r\n\tc-12.105,12.107-31.732,12.107-43.838,0c-12.108-12.106-12.108-31.733,0-43.84C22.187-2.027,41.813-2.027,53.919,10.08z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10.08","y1":"10.08","x2":"53.92","y2":"53.92"},"children":[]}]};exports.basic_ban=basic_ban;var basic_battery_charge={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"5","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"50","height":"16"},"children":[{"name":"rect","attribs":{"x":"5","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"50","height":"16"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,33 29,30 29,36 36,33 "},"children":[]}]};exports.basic_battery_charge=basic_battery_charge;var basic_battery_empty={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,41 5,41 5,25 14,25 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,41 5,41 5,25 14,25 \t"},"children":[]}]}]}]};exports.basic_battery_empty=basic_battery_empty;var basic_battery_full={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"5","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"50","height":"16"},"children":[{"name":"rect","attribs":{"x":"5","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"50","height":"16"},"children":[]}]}]}]};exports.basic_battery_full=basic_battery_full;var basic_battery_half={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"58","height":"24"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,27 63,27 63,39 59,39 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"33,41 5,41 5,25 29,25 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"33,41 5,41 5,25 29,25 \t"},"children":[]}]}]}]};exports.basic_battery_half=basic_battery_half;var basic_bolt={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,1 17,37 31,37 \r\n\t24,63 50,27 36,27 "},"children":[]}]};exports.basic_bolt=basic_bolt;var basic_book={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"7","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"46","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"63","x2":"15","y2":"2"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"15","x2":"48","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"21","x2":"48","y2":"21"},"children":[]}]};exports.basic_book=basic_book;var basic_book_pen={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"46","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"63","x2":"9","y2":"2"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"15","x2":"42","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"21","x2":"42","y2":"21"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,3 63,53 59,61 55,53 55,3 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,7 51,7 51,17 "},"children":[]}]};exports.basic_book_pen=basic_book_pen;var basic_book_pencil={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"46","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"63","x2":"9","y2":"2"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"15","x2":"42","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"21","x2":"42","y2":"21"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,1 55,54 59,62 63,54 63,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"63","y2":"11"},"children":[]}]};exports.basic_book_pencil=basic_book_pencil;var basic_bookmark={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,1 46,1 46,62 32,48 18,62 "},"children":[]}]};exports.basic_bookmark=basic_bookmark;var basic_calculator={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"8","x2":"18","y2":"28"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"18","x2":"8","y2":"18"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"18","x2":"36","y2":"18"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"54","x2":"26","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"38","x2":"26","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"43","x2":"56","y2":"43"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"49","x2":"56","y2":"49"},"children":[]}]};exports.basic_calculator=basic_calculator;var basic_calendar={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"10","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"10","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]},{"name":"rect","attribs":{"x":"10","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"10","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]},{"name":"rect","attribs":{"x":"44","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"44","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]},{"name":"rect","attribs":{"x":"44","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"44","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]},{"name":"rect","attribs":{"x":"27","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"27","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]},{"name":"rect","attribs":{"x":"27","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[{"name":"rect","attribs":{"x":"27","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_calendar=basic_calendar;var basic_cards_diamonds={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,59 16,45 36,5 63,19 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31.899,14.004 28,6 1,20 19,59 32,52.964 \r\n\t"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"35,41 46,36 45,24 34,29 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"9","x2":"37","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"23","x2":"6","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"53","x2":"42","y2":"55"},"children":[]}]};exports.basic_cards_diamonds=basic_cards_diamonds;var basic_cards_hearts={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,59 16,45 36,5 63,19 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31.899,14.004 28,6 1,20 19,59 32,52.964 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"9","x2":"37","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"23","x2":"6","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"53","x2":"42","y2":"55"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M33,25c-2.848,5.281,3,15,3,15s11.151,0.28,14-5\r\n\tc1.18-2.188,1.377-5.718-1-7c-2.188-1.18-5.82-1.188-7,1c1.18-2.188,0.188-4.82-2-6C37.624,21.718,34.181,22.813,33,25z"},"children":[]}]};exports.basic_cards_hearts=basic_cards_hearts;var basic_case={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"18","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"36"},"children":[{"name":"rect","attribs":{"x":"1","y":"18","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"36"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"30","x2":"63","y2":"30"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,30 27,36 37,36 37,30 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,18c0,0,0-8,9-8s9,8,9,8"},"children":[]}]};exports.basic_case=basic_case;var basic_chronometer={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M51.799,15.202\r\n\t\tc10.936,10.933,10.936,28.662,0,39.595c-10.935,10.938-28.664,10.938-39.598,0c-10.935-10.933-10.935-28.662,0-39.595\r\n\t\tC23.135,4.266,40.864,4.266,51.799,15.202z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M51.799,15.202\r\n\t\tc10.936,10.933,10.936,28.662,0,39.595c-10.935,10.938-28.664,10.938-39.598,0c-10.935-10.933-10.935-28.662,0-39.595\r\n\t\tC23.135,4.266,40.864,4.266,51.799,15.202z"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,7 32,1 38,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,7 32,1 38,1 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"1","x2":"32","y2":"1"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"1","x2":"32","y2":"1"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"59"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"59"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"11","x2":"32","y2":"7"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"11","x2":"32","y2":"7"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"35","x2":"8","y2":"35"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"35","x2":"8","y2":"35"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"35","x2":"60","y2":"35"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"35","x2":"60","y2":"35"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14.564","y1":"17.565","x2":"17.394","y2":"20.394"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14.564","y1":"17.565","x2":"17.394","y2":"20.394"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46.606","y1":"49.606","x2":"49.436","y2":"52.436"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46.606","y1":"49.606","x2":"49.436","y2":"52.436"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49.436","y1":"17.565","x2":"46.607","y2":"20.394"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49.436","y1":"17.565","x2":"46.607","y2":"20.394"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17.395","y1":"49.606","x2":"14.564","y2":"52.436"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17.395","y1":"49.606","x2":"14.564","y2":"52.436"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"33"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"35","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"35","r":"3"},"children":[]}]}]}]};exports.basic_chronometer=basic_chronometer;var basic_clessidre={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"14","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"36","height":"4"},"children":[]},{"name":"rect","attribs":{"x":"14","y":"59","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"36","height":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M18,59c0,0,0-8,0-14s29-19,29-25c0-2,0-15,0-15"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M47,59c0,0,0-8,0-14S18,26,18,20c0-2,0-15,0-15"},"children":[]}]};exports.basic_clessidre=basic_clessidre;var basic_clock={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,12 32,32 41,41 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,12 32,32 41,41 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"32","x2":"8","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"32","x2":"8","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"32","x2":"60","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"32","x2":"60","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"60","x2":"32","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"60","x2":"32","y2":"56"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"8","x2":"32","y2":"4"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"8","x2":"32","y2":"4"},"children":[]}]}]}]};exports.basic_clock=basic_clock;var basic_clockwise={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,12 32,32 41,41 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"32","x2":"8","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"32","x2":"60","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"60","x2":"32","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"8","x2":"32","y2":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63c17.121,0,31-13.879,31-31S49.121,1,32,1"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63C14.879,63,1,49.121,1,32\r\n\tc0-6.713,2.134-12.926,5.759-18l5.62-5.621"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"13,19 13,8 2,8 \r\n\t"},"children":[]}]};exports.basic_clockwise=basic_clockwise;var basic_cloud={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]}]};exports.basic_cloud=basic_cloud;var basic_clubs={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M30,38v6c0,0,0,19-7,19h9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63h9c-7,0-7-19-7-19v-6"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M34,38\r\n\tc0,7.457,8.044,12.125,15.5,12.125c7.455,0,13.5-6.043,13.5-13.5s-6.045-13.5-13.5-13.5c-2.678,0-5.168,0.789-7.267,2.135\r\n\tc1.995-2.345,3.204-5.378,3.204-8.697c0-7.422-6.017-13.438-13.438-13.438S18.562,9.141,18.562,16.562\r\n\tc0,3.32,1.21,6.353,3.205,8.697c-2.1-1.345-4.59-2.135-7.268-2.135c-7.456,0-13.5,6.043-13.5,13.5s6.044,13.5,13.5,13.5\r\n\tC21.955,50.125,30,45.457,30,38"},"children":[]}]};exports.basic_clubs=basic_clubs;var basic_compass={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"35","r":"28.292"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,40 45,21 26,29 \r\n\t19,47 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"29","x2":"37","y2":"40"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M36.9,7C36.965,6.677,37,6.342,37,6\r\n\tc0-2.761-2.239-5-5-5s-5,2.239-5,5c0,0.342,0.035,0.677,0.1,1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"7","x2":"32","y2":"12"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"60","y1":"35","x2":"55","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"35","x2":"4","y2":"35"},"children":[]}]};exports.basic_compass=basic_compass;var basic_cup={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,27c0,4.418,6.059,8,16,8s16-3.582,16-8V1H16V27z\r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"63","x2":"44","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"32","y2":"63"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,7H7c0,0,0,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,7h9c0,0,0,9-9,9"},"children":[]}]};exports.basic_cup=basic_cup;var basic_diamonds={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"33,63 56,32 33,1 10,32 "},"children":[]}]};exports.basic_diamonds=basic_diamonds;var basic_display={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"10","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"41"},"children":[{"name":"rect","attribs":{"x":"1","y":"10","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"41"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"63","x2":"42","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"63","x2":"42","y2":"63"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"51"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"43","x2":"64","y2":"43"},"children":[]}]};exports.basic_display=basic_display;var basic_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,50 32,58 \r\n\t24,50 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"26"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"26"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"24,42 1,42 1,6 63,6 63,42 40,42 "},"children":[]}]};exports.basic_download=basic_download;var basic_exclamation={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"32","y2":"39"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"43","x2":"32","y2":"47"},"children":[]}]};exports.basic_exclamation=basic_exclamation;var basic_eye={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M1,32c0,0,11,15,31,15s31-15,31-15S52,17,32,17\r\n\tS1,32,1,32z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"7"},"children":[]}]};exports.basic_eye=basic_eye;var basic_eye_closed={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M1,32c0,0,11,15,31,15s31-15,31-15S52,17,32,17\r\n\tS1,32,1,32z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"55","x2":"55","y2":"9"},"children":[]}]};exports.basic_eye_closed=basic_eye_closed;var basic_female={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"25","r":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"63","x2":"22","y2":"42"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"46","x2":"18","y2":"63"},"children":[]}]};exports.basic_female=basic_female;var basic_flag1={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"0","x2":"12","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,6 53,6 47,18 53,30 12,30 "},"children":[]}]};exports.basic_flag1=basic_flag1;var basic_flag2={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"0","x2":"7","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32.062,6 26,11 26,35 57,35 51,23 57,11 \r\n\t26,11 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"26,30 7,30 7,6 32,6 32,11 "},"children":[]}]};exports.basic_flag2=basic_flag2;var basic_floppydisk={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,63 1,63 1,1 51,1 63,13 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,63 1,63 1,1 51,1 63,13 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"7","y":"31","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"50","height":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"39","x2":"50","y2":"39"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"47","x2":"50","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"55","x2":"50","y2":"55"},"children":[]},{"name":"rect","attribs":{"x":"15","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"34","height":"19"},"children":[]},{"name":"rect","attribs":{"x":"38","y":"5","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"11"},"children":[]}]};exports.basic_floppydisk=basic_floppydisk;var basic_folder={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]}]};exports.basic_folder=basic_folder;var basic_folder_multiple={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"56,22 56,54 1,54 1,15 19.629,15 26.726,22 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"8,13 8,7 26.629,7 33.726,14 63,14 63,46 \r\n\t58,46 "},"children":[]}]};exports.basic_folder_multiple=basic_folder_multiple;var basic_gear={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,1 26,1 26,10 20,12 14,6 6,14 12,20 \r\n\t\t10,26 1,26 1,38 10,38 12,44 6,50 14,58 20,52 26,54 26,63 32,63 38,63 38,54 44,52 50,58 58,50 52,44 54,38 63,38 63,26 54,26 \r\n\t\t52,20 58,14 50,6 44,12 38,10 38,1 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,1 26,1 26,10 20,12 14,6 6,14 12,20 \r\n\t\t10,26 1,26 1,38 10,38 12,44 6,50 14,58 20,52 26,54 26,63 32,63 38,63 38,54 44,52 50,58 58,50 52,44 54,38 63,38 63,26 54,26 \r\n\t\t52,20 58,14 50,6 44,12 38,10 38,1 \t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6"},"children":[]}]}]}]};exports.basic_gear=basic_gear;var basic_globe={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,1c14.359,0,27,12.641,27,27S46.359,55,32,55\r\n\tc-10,0-13-4-13-4"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"28","r":"20"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"54","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"63","x2":"42","y2":"63"},"children":[]}]};exports.basic_globe=basic_globe;var basic_gunsight={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"48","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"32","x2":"0","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"32","x2":"48","y2":"32"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"24"},"children":[]}]};exports.basic_gunsight=basic_gunsight;var basic_hammer={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"20","x2":"41","y2":"39"},"children":[]},{"name":"rect","attribs":{"x":"46.257","y":"35.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 120.5036 47.0858)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M1,19L17,3c6,6,13,1,13,1l4,4L12,30L1,19z"},"children":[]}]};exports.basic_hammer=basic_hammer;var basic_headset={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M11,48C5.477,48,1,43.523,1,38s4.477-10,10-10h2v20\r\n\tH11z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53,28c5.523,0,10,4.477,10,10s-4.477,10-10,10h-2\r\n\tV28H53z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M13,31v-9c0,0,0-16,19-16s19,16,19,16v6"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"51,48 51,53 36,59 28,59 28,55 36,55 \r\n\t36,58 "},"children":[]}]};exports.basic_headset=basic_headset;var basic_heart={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M1,21c0,20,31,38,31,38s31-18,31-38\r\n\tc0-8.285-6-16-15-16c-8.285,0-16,5.715-16,14c0-8.285-7.715-14-16-14C7,5,1,12.715,1,21z"},"children":[]}]};exports.basic_heart=basic_heart;var basic_heart_broken={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M1,21c0,20,31,38,31,38s31-18,31-38\r\n\tc0-8.285-6-16-15-16c-8.285,0-16,5.715-16,14c0-8.285-7.715-14-16-14C7,5,1,12.715,1,21z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,57 36,50 30,44 36,38 30,32 38,24 \r\n\t32,19 32,17 "},"children":[]}]};exports.basic_heart_broken=basic_heart_broken;var basic_helm={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"37","x2":"59","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"10","x2":"26","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"27","x2":"59","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"53","x2":"26","y2":"37"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"8"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"24"},"children":[]}]};exports.basic_helm=basic_helm;var basic_home={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,3 2,33 11,33 11,63 23,63 23,47 39,47 \r\n\t39,63 51,63 51,33 62,33 "},"children":[]}]};exports.basic_home=basic_home;var basic_info={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"32","y2":"25"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"17"},"children":[]}]};exports.basic_info=basic_info;var basic_ipod={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"36","x2":"48","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"36","x2":"48","y2":"36"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"5","x2":"48","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"5","x2":"48","y2":"5"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"9.5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"9.5"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"2.5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"2.5"},"children":[]}]}]}]};exports.basic_ipod=basic_ipod;var basic_joypad={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M50,27H14C6.82,27,1,32.82,1,40s5.82,13,13,13\r\n\tc4.6,0,8.632-2.396,10.943-6h14.113C41.368,50.604,45.4,53,50,53c7.18,0,13-5.82,13-13S57.18,27,50,27z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"14","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"22","y1":"40","x2":"6","y2":"40"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"50","cy":"39.99","r":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"50","y1":"33","x2":"50","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"57","y1":"40","x2":"43","y2":"40"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,27 32,21 46,21 46,14 36,14 36,11 "},"children":[]}]};exports.basic_joypad=basic_joypad;var basic_key={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"51","cy":"32","r":"12"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"38","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"32","x2":"6","y2":"42"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"32","x2":"14","y2":"38"},"children":[]}]};exports.basic_key=basic_key;var basic_keyboard={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"22","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"30"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"7,22 7,14 21,14 21,7 11,7 11,4 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"29","x2":"8","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"29","x2":"14","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"29","x2":"20","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"29","x2":"26","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"29","x2":"32","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"29","x2":"38","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"29","x2":"44","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"29","x2":"50","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"29","x2":"56","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"45","x2":"8","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"45","x2":"14","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"45","x2":"42","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"45","x2":"54","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"45","x2":"60","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"45","x2":"48","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"37","x2":"12","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"37","x2":"18","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"37","x2":"24","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"37","x2":"30","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"37","x2":"36","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"37","x2":"42","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"37","x2":"48","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"37","x2":"54","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"37","x2":"60","y2":"37"},"children":[]}]};exports.basic_keyboard=basic_keyboard;var basic_laptop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"8","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"34"},"children":[{"name":"rect","attribs":{"x":"8","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"34"},"children":[]}]},{"name":"rect","attribs":{"x":"1","y":"46","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"6"},"children":[{"name":"rect","attribs":{"x":"1","y":"46","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"16","x2":"30","y2":"16"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"16","x2":"30","y2":"16"},"children":[]}]}]}]};exports.basic_laptop=basic_laptop;var basic_life_buoy={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"18","x2":"26","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"18","x2":"38","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"63","x2":"26","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"63","x2":"38","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"26","x2":"63","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"38","x2":"63","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"26","x2":"18","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"38","x2":"18","y2":"38"},"children":[]}]};exports.basic_life_buoy=basic_life_buoy;var basic_lightbulb={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,40v5h22l0.001-5.107C49,36.195,53,29.564,53,22\r\n\tc0-11.598-9.402-21-21-21s-21,9.402-21,21C11,29.565,14.998,36.304,21,40z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"45","x2":"25","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"45","x2":"39","y2":"25"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,26 29,29 32,26 35,29 39,26 "},"children":[]},{"name":"rect","attribs":{"x":"21","y":"45","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"22","height":"6"},"children":[]},{"name":"rect","attribs":{"x":"23","y":"51","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"6"},"children":[]},{"name":"rect","attribs":{"x":"25","y":"57","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"14","height":"6"},"children":[]}]};exports.basic_lightbulb=basic_lightbulb;var basic_link={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M37.004,32.166c1.224,0.533,2.576,0.829,3.997,0.828\r\n\tc3.271-0.003,6.175-1.576,7.998-4.006L60.99,16.98c1.255-1.673,1.998-3.751,1.996-6.002c-0.003-5.522-4.484-9.997-10.007-9.993\r\n\tc-2.251,0.002-4.327,0.747-5.999,2.004L33.989,15.998c-1.768,1.805-2.997,4.277-2.996,7.003c0.001,1.424,0.3,2.778,0.837,4.003"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M37.004,32.166"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31.831,27.004c0.053,0.121,0.107,0.24,0.166,0.358"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M26.997,31.836c-1.225-0.535-2.577-0.831-3.998-0.83\r\n\tc-2.251,0.002-4.328,0.747-5.999,2.004L4.01,46.02c-1.768,1.804-2.997,4.276-2.995,7.002c0.003,5.522,4.484,9.997,10.007,9.993\r\n\tc3.271-0.003,6.174-1.576,7.997-4.006L31.01,47.001c1.255-1.673,1.998-3.751,1.996-6.002c-0.001-1.422-0.299-2.774-0.835-3.998"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23.006","y1":"41.006","x2":"40.994","y2":"22.994"},"children":[]}]};exports.basic_link=basic_link;var basic_lock={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"8","y":"33","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"30"},"children":[{"name":"rect","attribs":{"x":"8","y":"33","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"30"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16\r\n\t\tv16"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16\r\n\t\tv16"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"47","r":"4"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"47","r":"4"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"55"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"55"},"children":[]}]}]}]};exports.basic_lock=basic_lock;var basic_lock_open={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"8","y":"33","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"30"},"children":[{"name":"rect","attribs":{"x":"8","y":"33","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"30"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16v3\r\n\t\t"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,33V17c0-8.837,7.163-16,16-16s16,7.163,16,16v3\r\n\t\t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"47","r":"4"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"47","r":"4"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"55"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"55"},"children":[]}]}]}]};exports.basic_lock_open=basic_lock_open;var basic_magic_mouse={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,17c0-8.836-7.164-16-16-16S16,8.164,16,17v30\r\n\tc0,8.836,7.164,16,16,16s16-7.164,16-16V17z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"10","x2":"32","y2":"18"},"children":[]}]};exports.basic_magic_mouse=basic_magic_mouse;var basic_magnifier={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[]}]},{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[]}]}]}]};exports.basic_magnifier=basic_magnifier;var basic_magnifier_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"21","x2":"30","y2":"21"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"21","x2":"30","y2":"21"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[]}]},{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[]}]}]}]};exports.basic_magnifier_minus=basic_magnifier_minus;var basic_magnifier_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"21","x2":"30","y2":"21"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"21","x2":"30","y2":"21"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"12","x2":"21","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"12","x2":"21","y2":"30"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"21","r":"20"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"35","x2":"41","y2":"41"},"children":[]}]},{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[{"name":"rect","attribs":{"x":"46.257","y":"37.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 121.9178 50.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[]}]}]}]};exports.basic_magnifier_plus=basic_magnifier_plus;var basic_mail={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"37"},"children":[{"name":"rect","attribs":{"x":"1","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"37"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,13 32,33 63,13 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,13 32,33 63,13 \t"},"children":[]}]}]}]};exports.basic_mail=basic_mail;var basic_mail_multiple={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"18","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9.887,16 9.887,9 63,9 63,41 55,41 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0.887,18 27,33.062 53,18 "},"children":[]}]};exports.basic_mail_multiple=basic_mail_multiple;var basic_mail_open={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_mail_open=basic_mail_open;var basic_mail_open_text={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"9","x2":"45","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"9","x2":"45","y2":"9"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"17","x2":"45","y2":"17"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"17","x2":"45","y2":"17"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"25","x2":"45","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"25","x2":"45","y2":"25"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t\t63,26 52.666,21.667 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t\t63,26 52.666,21.667 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t\t"},"children":[]}]}]}]}]}]};exports.basic_mail_open_text=basic_mail_open_text;var basic_male={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"39","r":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"1","x2":"42","y2":"22"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"45,1 63,1 63,19 \r\n\t"},"children":[]}]};exports.basic_male=basic_male;var basic_map={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,59 22,51 42,59 63,51 63,5 42,13 22,5 \r\n\t\t1,13 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,59 22,51 42,59 63,51 63,5 42,13 22,5 \r\n\t\t1,13 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"5","x2":"22","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"5","x2":"22","y2":"51"},"children":[]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"13","x2":"42","y2":"59"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"13","x2":"42","y2":"59"},"children":[]}]}]}]}]}]};exports.basic_map=basic_map;var basic_message={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]}]};exports.basic_message=basic_message;var basic_message_multiple={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"26,49.042 54.963,49.042 54.963,11.042 \r\n\t1,11.042 1,49.042 14,49.042 14,59.486 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,41.042 62.963,41.042 62.963,3.042 \r\n\t9,3.042 9,9 "},"children":[]}]};exports.basic_message_multiple=basic_message_multiple;var basic_message_txt={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"16","x2":"54","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"26","x2":"54","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"36","x2":"54","y2":"36"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]}]};exports.basic_message_txt=basic_message_txt;var basic_mixer2={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"19","x2":"12","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"0","x2":"52","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"38","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"26"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"12","cy":"13","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"52","cy":"51","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"0","x2":"12","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"57","x2":"52","y2":"64"},"children":[]}]};exports.basic_mixer2=basic_mixer2;var basic_mouse={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,17c0-8.836-7.164-16-16-16S16,8.164,16,17v30\r\n\tc0,8.836,7.164,16,16,16s16-7.164,16-16V17z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"1","x2":"32","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"21","x2":"48","y2":"21"},"children":[]}]};exports.basic_mouse=basic_mouse;var basic_notebook={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"1","x2":"41","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"16","x2":"7","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"8","x2":"7","y2":"8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"24","x2":"7","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"32","x2":"7","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"40","x2":"7","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"48","x2":"7","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"56","x2":"7","y2":"56"},"children":[]}]};exports.basic_notebook=basic_notebook;var basic_notebook_pen={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,3 63,53 59,61 55,53 55,3 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,7 51,7 51,17 "},"children":[]},{"name":"rect","attribs":{"x":"4","y":"3","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"3","x2":"34","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"16","x2":"0","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"8","x2":"0","y2":"8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"24","x2":"0","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"32","x2":"0","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"40","x2":"0","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"48","x2":"0","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"56","x2":"0","y2":"56"},"children":[]}]};exports.basic_notebook_pen=basic_notebook_pen;var basic_notebook_pencil={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"4","y":"3","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"3","x2":"34","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"16","x2":"0","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"8","x2":"0","y2":"8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"24","x2":"0","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"32","x2":"0","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"40","x2":"0","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"48","x2":"0","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"56","x2":"0","y2":"56"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,1 55,54 59,62 63,54 63,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"63","y2":"11"},"children":[]}]};exports.basic_notebook_pencil=basic_notebook_pencil;var basic_paperplane={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,30 63,1 23,41 \r\n\t"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"34,63 63,1 23,41 \r\n\t"},"children":[]}]};exports.basic_paperplane=basic_paperplane;var basic_pencil_ruler={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,63 1,2 62,63 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,54 14,30 38,54 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"22","x2":"2","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"30","x2":"2","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"38","x2":"2","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"46","x2":"2","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"54","x2":"2","y2":"54"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,1 19,7 55,43 63,45 61,37 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"13","x2":"31","y2":"7"},"children":[]}]};exports.basic_pencil_ruler=basic_pencil_ruler;var basic_photo={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"46,20 38,10 26,10 18,20 1,20 1,52 63,52 \r\n\t\t63,20 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"46,20 38,10 26,10 18,20 1,20 1,52 63,52 \r\n\t\t63,20 \t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"36","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"36","r":"8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"20","x2":"9","y2":"52"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"20","x2":"9","y2":"52"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"28","x2":"54","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"28","x2":"54","y2":"28"},"children":[]}]}]}]};exports.basic_photo=basic_photo;var basic_picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"11","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"42"},"children":[{"name":"rect","attribs":{"x":"1","y":"11","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"42"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,47 24,27 36,39 42,31 63,49 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,47 24,27 36,39 42,31 63,49 \t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"51","cy":"22","r":"5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"51","cy":"22","r":"5"},"children":[]}]}]}]};exports.basic_picture=basic_picture;var basic_picture_multiple={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"16","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"40"},"children":[{"name":"rect","attribs":{"x":"1","y":"16","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"40"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"10,14 10,8 63,8 63,48 55,48 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,46 15,32 29,48 39,42 53,54 "},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"40","cy":"29","r":"5"},"children":[]}]};exports.basic_picture_multiple=basic_picture_multiple;var basic_pin1={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"16","r":"15"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22.083,16c0-5.477,4.44-9.917,9.917-9.917"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"31"},"children":[]}]};exports.basic_pin1=basic_pin1;var basic_pin2={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"36"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,1 22,1 22,5 27,9 25,26 16,30 15,36 \r\n\t32,36 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,1 42,1 42,5 37,9 39,26 48,30 49,36 \r\n\t32,36 "},"children":[]}]};exports.basic_pin2=basic_pin2;var basic_postcard={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"41"},"children":[{"name":"rect","attribs":{"x":"1","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"41"},"children":[]}]}]},{"name":"rect","attribs":{"x":"49","y":"19","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8","height":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"18","x2":"39","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"21","x2":"34","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"27","x2":"30","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"33","x2":"32","y2":"33"},"children":[]}]};exports.basic_postcard=basic_postcard;var basic_postcard_multiple={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"20","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"53","height":"34"},"children":[{"name":"rect","attribs":{"x":"1","y":"20","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"53","height":"34"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"10,16.999 10,11 63,11 63,45 57,45 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"10,16.999 10,11 63,11 63,45 57,45 \t"},"children":[]}]}]},{"name":"rect","attribs":{"x":"42","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"7","height":"8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"24","x2":"33","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"27","x2":"29","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"32","x2":"26","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"37","x2":"27","y2":"37"},"children":[]}]};exports.basic_postcard_multiple=basic_postcard_multiple;var basic_printer={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"19"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"19"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16.5,52"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16.5,52"},"children":[]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"16,52 1,52 1,20 63,20 63,52 48,52 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"16,52 1,52 1,20 63,20 63,52 48,52 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"16","y":"39","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"24"},"children":[{"name":"rect","attribs":{"x":"16","y":"39","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"24"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"27","x2":"10","y2":"27"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"27","x2":"10","y2":"27"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"27","x2":"16","y2":"27"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"27","x2":"16","y2":"27"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"47","x2":"42","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"47","x2":"42","y2":"47"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"55","x2":"42","y2":"55"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"55","x2":"42","y2":"55"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,52"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,52"},"children":[]}]}]}]}]}]};exports.basic_printer=basic_printer;var basic_question={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"43","x2":"30","y2":"47"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,21c0-3,2-5,8-5c5,0,8,3,8,7s-6,7-6,7s-4,2-4,8v1\r\n\t"},"children":[]}]};exports.basic_question=basic_question;var basic_rss={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M63.051,56\r\n\tc0-13.416-4.804-25.711-12.786-35.256"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M50.265,20.744\r\n\tC40.177,8.677,25.01,1,8.051,1"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M51.769,56\r\n\tc0-24.145-19.574-43.718-43.718-43.718"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M40.486,56\r\n\tc0-17.913-14.523-32.436-32.436-32.436"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M29.205,56\r\n\tc0-11.684-9.472-21.154-21.154-21.154"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"8.051","cy":"56","r":"7.051"},"children":[]}]};exports.basic_rss=basic_rss;var basic_server={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"22"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"52","r":"3"},"children":[]}]};exports.basic_server=basic_server;var basic_server2={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M59,56\r\n\tc0,3.866-11.641,7-26,7S7,59.866,7,56"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M59,40\r\n\tc0,3.866-11.641,7-26,7S7,43.866,7,40"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M59,24\r\n\tc0,3.866-11.641,7-26,7S7,27.866,7,24"},"children":[]},{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"33","cy":"8","rx":"26","ry":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"7","y1":"8","x2":"7","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","x1":"59","y1":"8","x2":"59","y2":"56"},"children":[]}]};exports.basic_server2=basic_server2;var basic_server_cloud={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"22"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"52","r":"3"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,27H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.basic_server_cloud=basic_server_cloud;var basic_server_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"22"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"52","r":"3"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,23 32,31 \r\n\t24,23 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"11"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"11"},"children":[]}]}]}]};exports.basic_server_download=basic_server_download;var basic_server_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"22"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"52","r":"3"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,20 \r\n\t31.998,12 39.998,20 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"12","x2":"31.998","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"12","x2":"31.998","y2":"32"},"children":[]}]}]}]};exports.basic_server_upload=basic_server_upload;var basic_settings={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"34","x2":"41","y2":"39"},"children":[]},{"name":"rect","attribs":{"x":"46.257","y":"35.065","transform":"matrix(-0.7071 0.7071 -0.7071 -0.7071 120.5036 47.0858)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8.485","height":"26.87"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,16 18,10 8,4 6,6 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"26","x2":"15","y2":"13"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M58,12.5l-8,3.75l-4-4.125l3.5-8.062l0,0\r\n\tC39.5,4.062,37,9,37,14v4L3.5,52l-1.75,6l2.125,2l6.062-1.5L44,25h4C53,25,58,22.5,58,12.5L58,12.5z"},"children":[]}]};exports.basic_settings=basic_settings;var basic_share={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"51","cy":"13","r":"12"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"11","cy":"42","r":"10"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"55","r":"8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"54","x2":"20","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"35","x2":"41","y2":"21"},"children":[]}]};exports.basic_share=basic_share;var basic_sheet={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]}]};exports.basic_sheet=basic_sheet;var basic_sheet_pen={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,3 63,53 59,61 55,53 55,3 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,7 51,7 51,17 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,15 42,61 1,61 1,3 30,3 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"13","x2":"20","y2":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"23","x2":"35","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"31","x2":"35","y2":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"39","x2":"35","y2":"39"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"47","x2":"35","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,15 30,15 30,3 "},"children":[]}]};exports.basic_sheet_pen=basic_sheet_pen;var basic_sheet_pencil={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,15 42,61 1,61 1,3 30,3 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,1 55,54 59,62 63,54 63,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"13","x2":"20","y2":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"23","x2":"35","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"31","x2":"35","y2":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"39","x2":"35","y2":"39"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"47","x2":"35","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,15 30,15 30,3 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"63","y2":"11"},"children":[]}]};exports.basic_sheet_pencil=basic_sheet_pencil;var basic_signs={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,24 22,24 22,12 55,12 62,18 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,28 42,28 42,40 9,40 2,34 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"28","x2":"32","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"12","x2":"32","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"63","x2":"40","y2":"63"},"children":[]}]};exports.basic_signs=basic_signs;var basic_smartphone={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]}]};exports.basic_smartphone=basic_smartphone;var basic_spades={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,63h9c-7,0-7-19-7-19v-6c0,7.671,6,13,13,13\r\n\tc8.334,0,14-7.329,14-15C61,17.48,32,1,32,1S3,17.48,3,36c0,7.671,6.667,15,15,15c7,0,11.395-5.87,12-13v6c0,0,0,19-7,19H32"},"children":[]}]};exports.basic_spades=basic_spades;var basic_spread={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,6 1,54 32,58 63,54 63,6 32,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"10"},"children":[]}]};exports.basic_spread=basic_spread;var basic_spread_bookmark={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,6 1,54 32,58 63,54 63,6 32,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,8 43,27 47,25 51,27 51,7 "},"children":[]}]};exports.basic_spread_bookmark=basic_spread_bookmark;var basic_spread_text={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,6 1,54 32,58 63,54 63,6 32,10 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,6 1,54 32,58 63,54 63,6 32,10 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"10"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"16","x2":"26","y2":"18"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"16","x2":"26","y2":"18"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"26","x2":"26","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"26","x2":"26","y2":"28"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"36","x2":"26","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"36","x2":"26","y2":"38"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"46","x2":"26","y2":"48"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"46","x2":"26","y2":"48"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"16","x2":"38","y2":"18"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"16","x2":"38","y2":"18"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"26","x2":"38","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"26","x2":"38","y2":"28"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"36","x2":"38","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"36","x2":"38","y2":"38"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"46","x2":"38","y2":"48"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"46","x2":"38","y2":"48"},"children":[]}]}]}]};exports.basic_spread_text=basic_spread_text;var basic_spread_text_bookmark={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,6 1,54 32,58 63,54 63,6 32,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,8 43,27 47,25 51,27 51,7 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"16","x2":"26","y2":"18"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"26","x2":"26","y2":"28"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"36","x2":"26","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"46","x2":"26","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"36","x2":"38","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"46","x2":"38","y2":"48"},"children":[]}]};exports.basic_spread_text_bookmark=basic_spread_text_bookmark;var basic_star={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 12,62 20,38 2,24 24,24 32,1 40,24 \r\n\t62,24 44,38 52,62 "},"children":[]}]};exports.basic_star=basic_star;var basic_tablet={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_tablet=basic_tablet;var basic_target={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"22.999"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"15"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6.999"},"children":[]}]};exports.basic_target=basic_target;var basic_todo={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_todo=basic_todo;var basic_todo_pencil={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,1 55,54 59,62 63,54 63,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"63","y2":"11"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,8 1,8 1,63 45,63 45,8 32,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t"},"children":[]}]};exports.basic_todo_pencil=basic_todo_pencil;var basic_todo_txt={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"24","x2":"47","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"34","x2":"47","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"44","x2":"47","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"54","x2":"47","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"24","x2":"17","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"34","x2":"17","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"44","x2":"17","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"54","x2":"17","y2":"54"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_todo_txt=basic_todo_txt;var basic_todolist_pen={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"24","x2":"38","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"34","x2":"38","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"44","x2":"38","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"54","x2":"38","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"24","x2":"8","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"34","x2":"8","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"44","x2":"8","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"54","x2":"8","y2":"54"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,8 1,8 1,63 45,63 45,8 32,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,3 63,53 59,61 55,53 55,3 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,7 51,7 51,17 "},"children":[]}]};exports.basic_todolist_pen=basic_todolist_pen;var basic_todolist_pencil={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"24","x2":"38","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"34","x2":"38","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"44","x2":"38","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"54","x2":"38","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"24","x2":"8","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"34","x2":"8","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"44","x2":"8","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"54","x2":"8","y2":"54"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,8 1,8 1,63 45,63 45,8 32,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,5 27,1 19,1 19,5 15,5 13,13 33,13 31,5 \r\n\t"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,1 55,54 59,62 63,54 63,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"63","y2":"11"},"children":[]}]};exports.basic_todolist_pencil=basic_todolist_pencil;var basic_trashcan={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"20","x2":"26","y2":"54"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"20","x2":"26","y2":"54"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"20","x2":"38","y2":"54"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"20","x2":"38","y2":"54"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[]}]}]}]};exports.basic_trashcan=basic_trashcan;var basic_trashcan_full={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,36 58,34 62,48 56,50 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,36 58,34 62,48 56,50 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"10","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"36","height":"50"},"children":[{"name":"rect","attribs":{"x":"10","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"36","height":"50"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"22","x2":"22","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"22","x2":"22","y2":"56"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"22","x2":"34","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"22","x2":"34","y2":"56"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47.926","y1":"21.895","x2":"60","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47.926","y1":"21.895","x2":"60","y2":"63"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,13 14,6 22.857,6.143 25,13 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22.857,6.143 27,1 39,1 44,13 "},"children":[]}]};exports.basic_trashcan_full=basic_trashcan_full;var basic_trashcan_refresh={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,36c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,49 35,45 \r\n\t32,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,36c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,23 29,27 \r\n\t32,31 "},"children":[]}]};exports.basic_trashcan_refresh=basic_trashcan_refresh;var basic_trashcan_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,8 25,1 39,1 39,8 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,10 14,63 50,63 50,10 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"9","x2":"54","y2":"9"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"43","x2":"25","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"43","x2":"39","y2":"29"},"children":[]}]};exports.basic_trashcan_remove=basic_trashcan_remove;var basic_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"24,34 32,26 \r\n\t40,34 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"26","x2":"32","y2":"58"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"26","x2":"32","y2":"58"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"24,42 1,42 1,6 63,6 63,42 40,42 "},"children":[]}]};exports.basic_upload=basic_upload;var basic_usb={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"5.308","y":"4.601","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -6.0061 14.5)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18.385","height":"19.799"},"children":[]},{"name":"rect","attribs":{"x":"22.151","y":"15.08","transform":"matrix(0.7071 -0.7071 0.7071 0.7071 -15.3259 37)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"29.698","height":"43.841"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"13","x2":"16","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"7","x2":"22","y2":"16"},"children":[]}]};exports.basic_usb=basic_usb;var basic_video={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"46,30 63,20 63,52 46,42 46,52 1,52 1,20 \r\n\t\t46,20 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"46,30 63,20 63,52 46,42 46,52 1,52 1,20 \r\n\t\t46,20 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"28","x2":"10","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"28","x2":"10","y2":"28"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"28","x2":"18","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"28","x2":"18","y2":"28"},"children":[]}]},{"name":"rect","attribs":{"x":"7","y":"36","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"10"},"children":[{"name":"rect","attribs":{"x":"7","y":"36","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"6,12 32,12 40,20 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"6,12 32,12 40,20 \t"},"children":[]}]}]}]};exports.basic_video=basic_video;var basic_watch={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"20"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,15 20,1 44,1 44,15 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,49 44,63 20,63 20,49 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,20 32,32 40,36 "},"children":[]}]};exports.basic_watch=basic_watch;var basic_webpage={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]}]};exports.basic_webpage=basic_webpage;var basic_webpage_img_txt={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"25","x2":"33","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"33","x2":"33","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"41","x2":"33","y2":"41"},"children":[]},{"name":"rect","attribs":{"x":"38","y":"25","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"19","height":"16"},"children":[]}]};exports.basic_webpage_img_txt=basic_webpage_img_txt;var basic_webpage_multiple={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"42"},"children":[{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"54","height":"42"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,12 11,7 63,7 63,50 58,50 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,12 11,7 63,7 63,50 58,50 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"23","x2":"55","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"23","x2":"55","y2":"23"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"19","x2":"6","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"19","x2":"6","y2":"19"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"19","x2":"14","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"19","x2":"14","y2":"19"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"19","x2":"22","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"19","x2":"22","y2":"19"},"children":[]}]}]}]};exports.basic_webpage_multiple=basic_webpage_multiple;var basic_webpage_txt={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"25","x2":"58","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"33","x2":"58","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"41","x2":"58","y2":"41"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]}]};exports.basic_webpage_txt=basic_webpage_txt;var basic_world={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.001,0.887c17.184,0,31.113,13.929,31.112,31.113\r\n\tC63.114,49.185,49.184,63.115,32,63.113C14.815,63.114,0.887,49.185,0.888,32.001C0.885,14.816,14.815,0.887,32.001,0.887z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"1","x2":"32","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"32","x2":"1","y2":"32"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M30,1c0,0-14,11-14,31s14,31,14,31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34,1c0,0,14,11,14,31S34,63,34,63"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M8,12c0,0,5,10,24,10s24-10,24-10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M8,52c0,0,5-10,24-10s24,10,24,10"},"children":[]}]};exports.basic_world=basic_world;var basic_elaboration_bookmark_checck={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,1 46,1 46,62 32,48 18,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,22 30,29 \r\n\t43,16 "},"children":[]}]};exports.basic_elaboration_bookmark_checck=basic_elaboration_bookmark_checck;var basic_elaboration_bookmark_minus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"22","x2":"41","y2":"22"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,1 46,1 46,62 32,48 18,62 "},"children":[]}]};exports.basic_elaboration_bookmark_minus=basic_elaboration_bookmark_minus;var basic_elaboration_bookmark_plus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"22","x2":"41","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"13","x2":"32","y2":"31"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,1 46,1 46,62 32,48 18,62 "},"children":[]}]};exports.basic_elaboration_bookmark_plus=basic_elaboration_bookmark_plus;var basic_elaboration_bookmark_remove={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,1 46,1 46,62 32,48 18,62 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"29","x2":"25","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"29","x2":"39","y2":"15"},"children":[]}]};exports.basic_elaboration_bookmark_remove=basic_elaboration_bookmark_remove;var basic_elaboration_briefcase_check={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,22 30,29 \r\n\t43,16 "},"children":[]}]};exports.basic_elaboration_briefcase_check=basic_elaboration_briefcase_check;var basic_elaboration_briefcase_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,25 32,33 \r\n\t24,25 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"33","x2":"32","y2":"13"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"33","x2":"32","y2":"13"},"children":[]}]}]}]};exports.basic_elaboration_briefcase_download=basic_elaboration_briefcase_download;var basic_elaboration_briefcase_flagged={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"11","x2":"27","y2":"34"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,14 42,14 39.484,18 42,22 27,22 "},"children":[]}]};exports.basic_elaboration_briefcase_flagged=basic_elaboration_briefcase_flagged;var basic_elaboration_briefcase_minus={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"24","x2":"23","y2":"24"},"children":[]}]};exports.basic_elaboration_briefcase_minus=basic_elaboration_briefcase_minus;var basic_elaboration_briefcase_plus={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"15","x2":"32","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"24","x2":"23","y2":"24"},"children":[]}]};exports.basic_elaboration_briefcase_plus=basic_elaboration_briefcase_plus;var basic_elaboration_briefcase_refresh={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,24c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,37 36,33 \r\n\t33,29 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,24c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,11 30,15 \r\n\t33,19 "},"children":[]}]};exports.basic_elaboration_briefcase_refresh=basic_elaboration_briefcase_refresh;var basic_elaboration_briefcase_remove={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"31","x2":"25","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"31","x2":"39","y2":"17"},"children":[]}]};exports.basic_elaboration_briefcase_remove=basic_elaboration_briefcase_remove;var basic_elaboration_briefcase_search={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"21","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"21","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"25","x2":"41","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"25","x2":"41","y2":"33"},"children":[]}]}]}]};exports.basic_elaboration_briefcase_search=basic_elaboration_briefcase_search;var basic_elaboration_briefcase_star={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,27 25.875,31 \r\n\t28,24 22,20 29.213,20 32,12 35,20 42,20 36,24 37.938,31 "},"children":[]}]};exports.basic_elaboration_briefcase_star=basic_elaboration_briefcase_star;var basic_elaboration_briefcase_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,41 11,1 53,1 59,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M21,41c0,6.075,4.925,11,11,11s11-4.925,11-11h16v22\r\n\tH5V41H21z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,22 \r\n\t31.998,14 39.998,22 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"14","x2":"31.998","y2":"34"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"14","x2":"31.998","y2":"34"},"children":[]}]}]}]};exports.basic_elaboration_briefcase_upload=basic_elaboration_briefcase_upload;var basic_elaboration_browser_check={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,35 30,42 \r\n\t43,29 "},"children":[]}]};exports.basic_elaboration_browser_check=basic_elaboration_browser_check;var basic_elaboration_browser_download={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,38 32,46 \r\n\t24,38 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"46","x2":"32","y2":"26"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"46","x2":"32","y2":"26"},"children":[]}]}]}]};exports.basic_elaboration_browser_download=basic_elaboration_browser_download;var basic_elaboration_browser_minus={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"37","x2":"23","y2":"37"},"children":[]}]};exports.basic_elaboration_browser_minus=basic_elaboration_browser_minus;var basic_elaboration_browser_plus={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"28","x2":"32","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"37","x2":"23","y2":"37"},"children":[]}]};exports.basic_elaboration_browser_plus=basic_elaboration_browser_plus;var basic_elaboration_browser_refresh={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,37c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,50 36,46 \r\n\t33,42 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,37c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,24 30,28 \r\n\t33,32 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]}]};exports.basic_elaboration_browser_refresh=basic_elaboration_browser_refresh;var basic_elaboration_browser_remove={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"44","x2":"25","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"44","x2":"39","y2":"30"},"children":[]}]};exports.basic_elaboration_browser_remove=basic_elaboration_browser_remove;var basic_elaboration_browser_search={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"33","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"33","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"41","y2":"45"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"41","y2":"45"},"children":[]}]}]}]};exports.basic_elaboration_browser_search=basic_elaboration_browser_search;var basic_elaboration_browser_star={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]}]};exports.basic_elaboration_browser_star=basic_elaboration_browser_star;var basic_elaboration_browser_upload={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"15","x2":"63","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"11","x2":"6","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"11","x2":"14","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"11","x2":"22","y2":"11"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,35 \r\n\t31.998,27 39.998,35 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"27","x2":"31.998","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"27","x2":"31.998","y2":"47"},"children":[]}]}]}]};exports.basic_elaboration_browser_upload=basic_elaboration_browser_upload;var basic_elaboration_calendar_check={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,36 30,43 \r\n\t43,30 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_check=basic_elaboration_calendar_check;var basic_elaboration_calendar_cloud={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,44H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_cloud=basic_elaboration_calendar_cloud;var basic_elaboration_calendar_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,39 32,47 \r\n\t24,39 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"32","y2":"27"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"32","y2":"27"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_download=basic_elaboration_calendar_download;var basic_elaboration_calendar_empty={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_empty=basic_elaboration_calendar_empty;var basic_elaboration_calendar_flagged={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"27","x2":"27","y2":"50"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,30 42,30 39.484,34 42,38 27,38 "},"children":[]}]};exports.basic_elaboration_calendar_flagged=basic_elaboration_calendar_flagged;var basic_elaboration_calendar_heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,35c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,30,22,32.238,22,35z"},"children":[]}]};exports.basic_elaboration_calendar_heart=basic_elaboration_calendar_heart;var basic_elaboration_calendar_minus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"38","x2":"23","y2":"38"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_minus=basic_elaboration_calendar_minus;var basic_elaboration_calendar_next={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"34,30 42,38 \r\n\t34,46 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"38","x2":"22","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"38","x2":"22","y2":"38"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_next=basic_elaboration_calendar_next;var basic_elaboration_calendar_noaccess={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"38","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"31.834","x2":"38.166","y2":"44.166"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_noaccess=basic_elaboration_calendar_noaccess;var basic_elaboration_calendar_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,43 22,48 27,47 42,32 38,28 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,43 22,48 27,47 42,32 38,28 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"35","x2":"35","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"35","x2":"35","y2":"31"},"children":[]}]}]}]};exports.basic_elaboration_calendar_pencil=basic_elaboration_calendar_pencil;var basic_elaboration_calendar_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"29","x2":"32","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"38","x2":"23","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_plus=basic_elaboration_calendar_plus;var basic_elaboration_calendar_previous={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"30.001,46 \r\n\t22.001,38 30.001,30 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"38","x2":"42.001","y2":"38"},"children":[]}]};exports.basic_elaboration_calendar_previous=basic_elaboration_calendar_previous;var basic_elaboration_calendar_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,38c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,51 36,47 \r\n\t33,43 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,38c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,25 30,29 \r\n\t33,33 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_refresh=basic_elaboration_calendar_refresh;var basic_elaboration_calendar_remove={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"45","x2":"25","y2":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"45","x2":"39","y2":"31"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_remove=basic_elaboration_calendar_remove;var basic_elaboration_calendar_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_search=basic_elaboration_calendar_search;var basic_elaboration_calendar_star={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,43 25.875,47 \r\n\t28,40 22,36 29.213,36 32,28 35,36 42,36 36,40 37.938,47 "},"children":[]}]};exports.basic_elaboration_calendar_star=basic_elaboration_calendar_star;var basic_elaboration_calendar_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,36 \r\n\t31.998,28 39.998,36 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"28","x2":"31.998","y2":"48"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"28","x2":"31.998","y2":"48"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"10","x2":"18","y2":"10"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,10 1,10 1,58 63,58 63,10 52,10 \t"},"children":[]}]},{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"12","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]},{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[{"name":"rect","attribs":{"x":"46","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"8"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"18","x2":"63","y2":"18"},"children":[]}]};exports.basic_elaboration_calendar_upload=basic_elaboration_calendar_upload;var basic_elaboration_cloud_check={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,34 30,41 \r\n\t43,28 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]}]};exports.basic_elaboration_cloud_check=basic_elaboration_cloud_check;var basic_elaboration_cloud_download={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,37 32,45 \r\n\t24,37 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[]}]}]}]};exports.basic_elaboration_cloud_download=basic_elaboration_cloud_download;var basic_elaboration_cloud_minus={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"34","x2":"23","y2":"34"},"children":[]}]};exports.basic_elaboration_cloud_minus=basic_elaboration_cloud_minus;var basic_elaboration_cloud_noaccess={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"34","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"27.834","x2":"38.166","y2":"40.166"},"children":[]}]};exports.basic_elaboration_cloud_noaccess=basic_elaboration_cloud_noaccess;var basic_elaboration_cloud_plus={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"25","x2":"32","y2":"43"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"34","x2":"23","y2":"34"},"children":[]}]};exports.basic_elaboration_cloud_plus=basic_elaboration_cloud_plus;var basic_elaboration_cloud_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,32c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,45 36,41 \r\n\t33,37 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,32c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,19 30,23 \r\n\t33,27 "},"children":[]}]};exports.basic_elaboration_cloud_refresh=basic_elaboration_cloud_refresh;var basic_elaboration_cloud_remove={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"41","x2":"25","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"41","x2":"39","y2":"27"},"children":[]}]};exports.basic_elaboration_cloud_remove=basic_elaboration_cloud_remove;var basic_elaboration_cloud_search={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"31","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"31","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"35","x2":"41","y2":"43"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"35","x2":"41","y2":"43"},"children":[]}]}]}]};exports.basic_elaboration_cloud_search=basic_elaboration_cloud_search;var basic_elaboration_cloud_upload={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,50h14c4.565,0,8-3.582,8-8s-3.435-8-8-8\r\n\tc0-11.046-9.52-20-20.934-20C23.966,14,14.8,20.732,13,30c0,0-0.831,0-1.667,0C5.626,30,1,34.477,1,40s4.293,10,10,10H41"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,34 \r\n\t31.998,26 39.998,34 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[]}]}]}]};exports.basic_elaboration_cloud_upload=basic_elaboration_cloud_upload;var basic_elaboration_document_check={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,36 30,43 \r\n\t43,30 "},"children":[]}]};exports.basic_elaboration_document_check=basic_elaboration_document_check;var basic_elaboration_document_cloud={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.basic_elaboration_document_cloud=basic_elaboration_document_cloud;var basic_elaboration_document_download={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,37 32,45 \r\n\t24,37 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[]}]}]}]};exports.basic_elaboration_document_download=basic_elaboration_document_download;var basic_elaboration_document_flagged={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"21","x2":"27","y2":"44"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,24 42,24 39.484,28 42,32 27,32 "},"children":[]}]};exports.basic_elaboration_document_flagged=basic_elaboration_document_flagged;var basic_elaboration_document_graph={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,44 27,37 23,37 23,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,44 27,37 23,37 23,44 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"34,44 34,27 30,27 30,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"34,44 34,27 30,27 30,44 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,44 41,34 37,34 37,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,44 41,34 37,34 37,44 \t\t"},"children":[]}]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"45","x2":"44","y2":"45"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"45","x2":"44","y2":"45"},"children":[]}]}]}]};exports.basic_elaboration_document_graph=basic_elaboration_document_graph;var basic_elaboration_document_heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,33c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,28,22,30.238,22,33z"},"children":[]}]};exports.basic_elaboration_document_heart=basic_elaboration_document_heart;var basic_elaboration_document_minus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]}]};exports.basic_elaboration_document_minus=basic_elaboration_document_minus;var basic_elaboration_document_next={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"34,28 42,36 \r\n\t34,44 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"36","x2":"22","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"36","x2":"22","y2":"36"},"children":[]}]}]}]};exports.basic_elaboration_document_next=basic_elaboration_document_next;var basic_elaboration_document_noaccess={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"36","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"29.834","x2":"38.166","y2":"42.166"},"children":[]}]};exports.basic_elaboration_document_noaccess=basic_elaboration_document_noaccess;var basic_elaboration_document_note={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"41","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"41","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"43","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"43","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,41 38,26 28,28 28,43 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,41 38,26 28,28 28,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"32","x2":"38","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"32","x2":"38","y2":"30"},"children":[]}]}]}]};exports.basic_elaboration_document_note=basic_elaboration_document_note;var basic_elaboration_document_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[]}]}]}]};exports.basic_elaboration_document_pencil=basic_elaboration_document_pencil;var basic_elaboration_document_picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"22","y":"29","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[{"name":"rect","attribs":{"x":"22","y":"29","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,41 29,34 33,39 35,37 41,42 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,41 29,34 33,39 35,37 41,42 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"32","r":"3"},"children":[]}]};exports.basic_elaboration_document_picture=basic_elaboration_document_picture;var basic_elaboration_document_plus={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"27","x2":"32","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]}]};exports.basic_elaboration_document_plus=basic_elaboration_document_plus;var basic_elaboration_document_previous={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"30.001,44 \r\n\t22.001,36 30.001,28 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"36","x2":"42.001","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"36","x2":"42.001","y2":"36"},"children":[]}]}]}]};exports.basic_elaboration_document_previous=basic_elaboration_document_previous;var basic_elaboration_document_refresh={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,36c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,49 36,45 \r\n\t33,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,36c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,23 30,27 \r\n\t33,31 "},"children":[]}]};exports.basic_elaboration_document_refresh=basic_elaboration_document_refresh;var basic_elaboration_document_remove={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"44","x2":"25","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"44","x2":"39","y2":"30"},"children":[]}]};exports.basic_elaboration_document_remove=basic_elaboration_document_remove;var basic_elaboration_document_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[]}]}]}]};exports.basic_elaboration_document_search=basic_elaboration_document_search;var basic_elaboration_document_star={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,39 25.875,43 \r\n\t28,36 22,32 29.213,32 32,24 35,32 42,32 36,36 37.938,43 "},"children":[]}]};exports.basic_elaboration_document_star=basic_elaboration_document_star;var basic_elaboration_document_upload={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,1 55,1 55,63 9,63 9,15 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,15 23,15 23,1 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,34 \r\n\t31.998,26 39.998,34 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[]}]}]}]};exports.basic_elaboration_document_upload=basic_elaboration_document_upload;var basic_elaboration_folder_check={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,36 30,43 \r\n\t43,30 "},"children":[]}]};exports.basic_elaboration_folder_check=basic_elaboration_folder_check;var basic_elaboration_folder_cloud={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.basic_elaboration_folder_cloud=basic_elaboration_folder_cloud;var basic_elaboration_folder_document={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,26 39,26 39,46 25,46 25,33 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,26 39,26 39,46 25,46 25,33 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,33 32,33 32,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,33 32,33 32,26 \t"},"children":[]}]}]}]};exports.basic_elaboration_folder_document=basic_elaboration_folder_document;var basic_elaboration_folder_download={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,37 32,45 \r\n\t24,37 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[]}]}]}]};exports.basic_elaboration_folder_download=basic_elaboration_folder_download;var basic_elaboration_folder_flagged={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"23","x2":"27","y2":"46"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,26 42,26 39.484,30 42,34 27,34 "},"children":[]}]};exports.basic_elaboration_folder_flagged=basic_elaboration_folder_flagged;var basic_elaboration_folder_graph={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,44 27,37 23,37 23,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,44 27,37 23,37 23,44 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"34,44 34,27 30,27 30,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"34,44 34,27 30,27 30,44 \t\t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,44 41,34 37,34 37,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,44 41,34 37,34 37,44 \t\t"},"children":[]}]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"45","x2":"44","y2":"45"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"45","x2":"44","y2":"45"},"children":[]}]}]}]};exports.basic_elaboration_folder_graph=basic_elaboration_folder_graph;var basic_elaboration_folder_heart={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,33c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,28,22,30.238,22,33z"},"children":[]}]};exports.basic_elaboration_folder_heart=basic_elaboration_folder_heart;var basic_elaboration_folder_minus={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]}]};exports.basic_elaboration_folder_minus=basic_elaboration_folder_minus;var basic_elaboration_folder_next={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"34,28 42,36 \r\n\t34,44 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"36","x2":"22","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"36","x2":"22","y2":"36"},"children":[]}]}]}]};exports.basic_elaboration_folder_next=basic_elaboration_folder_next;var basic_elaboration_folder_noaccess={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"36","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"29.834","x2":"38.166","y2":"42.166"},"children":[]}]};exports.basic_elaboration_folder_noaccess=basic_elaboration_folder_noaccess;var basic_elaboration_folder_note={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"41","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"41","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"43","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"43","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,41 38,26 28,28 28,43 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,41 38,26 28,28 28,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"32","x2":"38","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"32","x2":"38","y2":"30"},"children":[]}]}]}]};exports.basic_elaboration_folder_note=basic_elaboration_folder_note;var basic_elaboration_folder_pencil={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[]}]}]}]};exports.basic_elaboration_folder_pencil=basic_elaboration_folder_pencil;var basic_elaboration_folder_picture={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"22","y":"29","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[{"name":"rect","attribs":{"x":"22","y":"29","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,41 29,34 33,39 35,37 41,42 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,41 29,34 33,39 35,37 41,42 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"32","r":"3"},"children":[]}]};exports.basic_elaboration_folder_picture=basic_elaboration_folder_picture;var basic_elaboration_folder_plus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"27","x2":"32","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]}]};exports.basic_elaboration_folder_plus=basic_elaboration_folder_plus;var basic_elaboration_folder_previous={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"30.001,44 \r\n\t22.001,36 30.001,28 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"36","x2":"42.001","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"36","x2":"42.001","y2":"36"},"children":[]}]}]}]};exports.basic_elaboration_folder_previous=basic_elaboration_folder_previous;var basic_elaboration_folder_refresh={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,36c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,49 36,45 \r\n\t33,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,36c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,23 30,27 \r\n\t33,31 "},"children":[]}]};exports.basic_elaboration_folder_refresh=basic_elaboration_folder_refresh;var basic_elaboration_folder_remove={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"44","x2":"25","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"44","x2":"39","y2":"30"},"children":[]}]};exports.basic_elaboration_folder_remove=basic_elaboration_folder_remove;var basic_elaboration_folder_search={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"35","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"39","x2":"41","y2":"47"},"children":[]}]}]}]};exports.basic_elaboration_folder_search=basic_elaboration_folder_search;var basic_elaboration_folder_star={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 "},"children":[]}]};exports.basic_elaboration_folder_star=basic_elaboration_folder_star;var basic_elaboration_folder_upload={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,18 63,54 1,54 1,10 22,10 30,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,34 \r\n\t31.998,26 39.998,34 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[]}]}]}]};exports.basic_elaboration_folder_upload=basic_elaboration_folder_upload;var basic_elaboration_mail_check={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,20 30,27 \r\n\t43,14 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_check=basic_elaboration_mail_check;var basic_elaboration_mail_cloud={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,28H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_cloud=basic_elaboration_mail_cloud;var basic_elaboration_mail_document={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,10 39,10 39,30 25,30 25,17 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,10 39,10 39,30 25,30 25,17 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,17 32,17 32,10 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,17 32,17 32,10 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_document=basic_elaboration_mail_document;var basic_elaboration_mail_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,23 32,31 \r\n\t24,23 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"11"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"11"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_download=basic_elaboration_mail_download;var basic_elaboration_mail_flagged={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"9","x2":"27","y2":"32"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,12 42,12 39.484,16 42,20 27,20 "},"children":[]}]};exports.basic_elaboration_mail_flagged=basic_elaboration_mail_flagged;var basic_elaboration_mail_heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,19c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,14,22,16.238,22,19z"},"children":[]}]};exports.basic_elaboration_mail_heart=basic_elaboration_mail_heart;var basic_elaboration_mail_next={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"34,14 42,22 \r\n\t34,30 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"22","y2":"22"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"22","y2":"22"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_next=basic_elaboration_mail_next;var basic_elaboration_mail_noaccess={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"22","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"15.834","x2":"38.166","y2":"28.166"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_noaccess=basic_elaboration_mail_noaccess;var basic_elaboration_mail_note={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"27","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"27","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"29","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"29","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,27 38,12 28,14 28,29 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,27 38,12 28,14 28,29 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"18","x2":"38","y2":"16"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"18","x2":"38","y2":"16"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_note=basic_elaboration_mail_note;var basic_elaboration_mail_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,27 22,32 27,31 42,16 38,12 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,27 22,32 27,31 42,16 38,12 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"19","x2":"35","y2":"15"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"19","x2":"35","y2":"15"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_pencil=basic_elaboration_mail_pencil;var basic_elaboration_mail_picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"22","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[{"name":"rect","attribs":{"x":"22","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,27 29,20 33,25 35,23 41,28 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,27 29,20 33,25 35,23 41,28 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"18","r":"3"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_picture=basic_elaboration_mail_picture;var basic_elaboration_mail_previous={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"30.001,30 \r\n\t22.001,22 30.001,14 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"22","x2":"42.001","y2":"22"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22.001","y1":"22","x2":"42.001","y2":"22"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_previous=basic_elaboration_mail_previous;var basic_elaboration_mail_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,22c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,35 36,31 \r\n\t33,27 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,22c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,9 30,13 33,17 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_refresh=basic_elaboration_mail_refresh;var basic_elaboration_mail_remove={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"29","x2":"25","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"29","x2":"39","y2":"15"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.333,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.667,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_remove=basic_elaboration_mail_remove;var basic_elaboration_mail_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"19","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"19","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"23","x2":"41","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"23","x2":"41","y2":"31"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_search=basic_elaboration_mail_search;var basic_elaboration_mail_star={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,27 25.875,31 \r\n\t28,24 22,20 29.213,20 32,12 35,20 42,20 36,24 37.938,31 "},"children":[]}]};exports.basic_elaboration_mail_star=basic_elaboration_mail_star;var basic_elaboration_mail_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,20 \r\n\t31.998,12 39.998,20 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"12","x2":"31.998","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"12","x2":"31.998","y2":"32"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,26 32,45.434 63,26 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11.334,21.667 1,26 1,63 63,63 63,26 \r\n\t\t63,26 52.666,21.667 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,32 11,1 53,1 53,32 \t"},"children":[]}]}]}]};exports.basic_elaboration_mail_upload=basic_elaboration_mail_upload;var basic_elaboration_message_check={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,26 30,33 \r\n\t43,20 "},"children":[]}]};exports.basic_elaboration_message_check=basic_elaboration_message_check;var basic_elaboration_message_dots={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"26","x2":"35","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"26","x2":"45","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"26","x2":"25","y2":"26"},"children":[]}]};exports.basic_elaboration_message_dots=basic_elaboration_message_dots;var basic_elaboration_message_happy={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,30c0,4.418,3.582,8,8,8s8-3.582,8-8"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,30c0,4.418,3.582,8,8,8s8-3.582,8-8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"20","x2":"20","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"20","x2":"20","y2":"20"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"20","x2":"44","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"20","x2":"44","y2":"20"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"},"children":[]}]}]}]};exports.basic_elaboration_message_happy=basic_elaboration_message_happy;var basic_elaboration_message_heart={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,23c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,18,22,20.238,22,23z"},"children":[]}]};exports.basic_elaboration_message_heart=basic_elaboration_message_heart;var basic_elaboration_message_minus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"26","x2":"23","y2":"26"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]}]};exports.basic_elaboration_message_minus=basic_elaboration_message_minus;var basic_elaboration_message_note={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"31","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"31","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"33","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"33","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,31 38,16 28,18 28,33 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,31 38,16 28,18 28,33 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"22","x2":"38","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"22","x2":"38","y2":"20"},"children":[]}]}]}]};exports.basic_elaboration_message_note=basic_elaboration_message_note;var basic_elaboration_message_plus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"32","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"26","x2":"23","y2":"26"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]}]};exports.basic_elaboration_message_plus=basic_elaboration_message_plus;var basic_elaboration_message_refresh={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,26c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,39 36,35 \r\n\t33,31 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,26c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,13 30,17 \r\n\t33,21 "},"children":[]}]};exports.basic_elaboration_message_refresh=basic_elaboration_message_refresh;var basic_elaboration_message_remove={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"25","y2":"19"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"33","x2":"39","y2":"19"},"children":[]}]};exports.basic_elaboration_message_remove=basic_elaboration_message_remove;var basic_elaboration_message_sad={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"20","x2":"20","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"20","x2":"20","y2":"20"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"20","x2":"44","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"20","x2":"44","y2":"20"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 63,47 63,5 1,5 1,47 18,47 18,59 \t\r\n\t\t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,38c0-4.418-3.582-8-8-8s-8,3.582-8,8"},"children":[]}]};exports.basic_elaboration_message_sad=basic_elaboration_message_sad;var basic_elaboration_smartphone_cloud={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,36H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.basic_elaboration_smartphone_cloud=basic_elaboration_smartphone_cloud;var basic_elaboration_smartphone_heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,27c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,22,22,24.238,22,27z"},"children":[]}]};exports.basic_elaboration_smartphone_heart=basic_elaboration_smartphone_heart;var basic_elaboration_smartphone_noaccess={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"30","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"23.834","x2":"38.166","y2":"36.166"},"children":[]}]};exports.basic_elaboration_smartphone_noaccess=basic_elaboration_smartphone_noaccess;var basic_elaboration_smartphone_note={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"35","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"35","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"37","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"37","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 38,20 28,22 28,37 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 38,20 28,22 28,37 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"26","x2":"38","y2":"24"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"26","x2":"38","y2":"24"},"children":[]}]}]}]};exports.basic_elaboration_smartphone_note=basic_elaboration_smartphone_note;var basic_elaboration_smartphone_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,35 22,40 27,39 42,24 38,20 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,35 22,40 27,39 42,24 38,20 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"27","x2":"35","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"27","x2":"35","y2":"23"},"children":[]}]}]}]};exports.basic_elaboration_smartphone_pencil=basic_elaboration_smartphone_pencil;var basic_elaboration_smartphone_picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"22","y":"23","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[{"name":"rect","attribs":{"x":"22","y":"23","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,35 29,28 33,33 35,31 41,36 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,35 29,28 33,33 35,31 41,36 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"26","r":"3"},"children":[]}]};exports.basic_elaboration_smartphone_picture=basic_elaboration_smartphone_picture;var basic_elaboration_smartphone_refresh={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,30c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,43 36,39 \r\n\t33,35 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,30c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,17 30,21 \r\n\t33,25 "},"children":[]}]};exports.basic_elaboration_smartphone_refresh=basic_elaboration_smartphone_refresh;var basic_elaboration_smartphone_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"51","x2":"48","y2":"51"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"9","x2":"48","y2":"9"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"27","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"27","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"31","x2":"41","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"31","x2":"41","y2":"39"},"children":[]}]}]}]};exports.basic_elaboration_smartphone_search=basic_elaboration_smartphone_search;var basic_elaboration_tablet_cloud={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,36H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_cloud=basic_elaboration_tablet_cloud;var basic_elaboration_tablet_heart={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,27c0,6.666,10,12,10,12s10-5.334,10-12\r\n\tc0-2.762-2-5-5-5c-2.762,0-5,2.238-5,5c0-2.762-2.238-5-5-5C24,22,22,24.238,22,27z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_heart=basic_elaboration_tablet_heart;var basic_elaboration_tablet_noaccess={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"30","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"23.834","x2":"38.166","y2":"36.166"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_noaccess=basic_elaboration_tablet_noaccess;var basic_elaboration_tablet_note={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"35","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"35","r":"3"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"37","r":"3"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"25","cy":"37","r":"3"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 38,20 28,22 28,37 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 38,20 28,22 28,37 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"26","x2":"38","y2":"24"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"26","x2":"38","y2":"24"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_note=basic_elaboration_tablet_note;var basic_elaboration_tablet_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,35 22,40 27,39 42,24 38,20 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,35 22,40 27,39 42,24 38,20 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"27","x2":"35","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"27","x2":"35","y2":"23"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_pencil=basic_elaboration_tablet_pencil;var basic_elaboration_tablet_picture={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"22","y":"23","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[{"name":"rect","attribs":{"x":"22","y":"23","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"14"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,35 29,28 33,33 35,31 41,36 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,35 29,28 33,33 35,31 41,36 \t"},"children":[]}]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"39","cy":"26","r":"3"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_picture=basic_elaboration_tablet_picture;var basic_elaboration_tablet_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,30c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,43 36,39 \r\n\t33,35 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,30c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,17 30,21 \r\n\t33,25 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_refresh=basic_elaboration_tablet_refresh;var basic_elaboration_tablet_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"27","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"27","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"31","x2":"41","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"31","x2":"41","y2":"39"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[{"name":"rect","attribs":{"x":"11","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"5","x2":"36","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"51","x2":"53","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"9","x2":"53","y2":"9"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"32","cy":"57","r":"2"},"children":[]}]};exports.basic_elaboration_tablet_search=basic_elaboration_tablet_search;var basic_elaboration_todolist_2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]},{"name":"rect","attribs":{"x":"14","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"36","height":"46"},"children":[]}]};exports.basic_elaboration_todolist_2=basic_elaboration_todolist_2;var basic_elaboration_todolist_check={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,34 30,41 \r\n\t43,28 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_check=basic_elaboration_todolist_check;var basic_elaboration_todolist_cloud={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,42H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_cloud=basic_elaboration_todolist_cloud;var basic_elaboration_todolist_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,37 32,45 \r\n\t24,37 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"45","x2":"32","y2":"25"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_download=basic_elaboration_todolist_download;var basic_elaboration_todolist_flagged={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"23","x2":"27","y2":"46"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,26 42,26 39.484,30 42,34 27,34 "},"children":[]}]};exports.basic_elaboration_todolist_flagged=basic_elaboration_todolist_flagged;var basic_elaboration_todolist_minus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_minus=basic_elaboration_todolist_minus;var basic_elaboration_todolist_noaccess={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"36","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25.834","y1":"29.834","x2":"38.166","y2":"42.166"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_noaccess=basic_elaboration_todolist_noaccess;var basic_elaboration_todolist_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 22,46 27,45 42,30 38,26 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"33","x2":"35","y2":"29"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_pencil=basic_elaboration_todolist_pencil;var basic_elaboration_todolist_plus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"27","x2":"32","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"36","x2":"23","y2":"36"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_plus=basic_elaboration_todolist_plus;var basic_elaboration_todolist_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,36c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,49 36,45 \r\n\t33,41 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,36c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,23 30,27 \r\n\t33,31 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_refresh=basic_elaboration_todolist_refresh;var basic_elaboration_todolist_remove={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"43","x2":"25","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"43","x2":"39","y2":"29"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_remove=basic_elaboration_todolist_remove;var basic_elaboration_todolist_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"33","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"33","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"41","y2":"45"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"41","y2":"45"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_search=basic_elaboration_todolist_search;var basic_elaboration_todolist_star={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"round","stroke-miterlimit":"10","points":"32,41 25.875,45 \r\n\t28,38 22,34 29.213,34 32,26 35,34 42,34 36,38 37.938,45 "},"children":[]}]};exports.basic_elaboration_todolist_star=basic_elaboration_todolist_star;var basic_elaboration_todolist_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,34 \r\n\t31.998,26 39.998,34 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"26","x2":"31.998","y2":"46"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,8 10,8 10,63 54,63 54,8 41,8 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,5 36,1 28,1 28,5 24,5 22,13 42,13 40,5 \r\n\t"},"children":[]}]};exports.basic_elaboration_todolist_upload=basic_elaboration_todolist_upload;var ecommerce_bag={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag=ecommerce_bag;var ecommerce_bag_check={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,40 30,47 \r\n\t43,34 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_check=ecommerce_bag_check;var ecommerce_bag_cloud={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,48H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.ecommerce_bag_cloud=ecommerce_bag_cloud;var ecommerce_bag_download={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,43 32,51 \r\n\t24,43 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"31"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"31"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_download=ecommerce_bag_download;var ecommerce_bag_minus={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"42","x2":"23","y2":"42"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_minus=ecommerce_bag_minus;var ecommerce_bag_plus={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"33","x2":"32","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"42","x2":"23","y2":"42"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_plus=ecommerce_bag_plus;var ecommerce_bag_refresh={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,42c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,55 36,51 \r\n\t33,47 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,42c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"33,29 30,33 \r\n\t33,37 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_refresh=ecommerce_bag_refresh;var ecommerce_bag_remove={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"49","x2":"25","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"49","x2":"39","y2":"35"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_remove=ecommerce_bag_remove;var ecommerce_bag_search={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"39","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"39","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"43","x2":"41","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"43","x2":"41","y2":"51"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_search=ecommerce_bag_search;var ecommerce_bag_upload={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,40 \r\n\t31.998,32 39.998,40 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"32","x2":"31.998","y2":"52"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"32","x2":"31.998","y2":"52"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,18 54,18 54,63 10,63 10,18 20,18 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22,24V11c0-5.523,4.477-10,10-10s10,4.477,10,10v13\r\n\t"},"children":[]}]};exports.ecommerce_bag_upload=ecommerce_bag_upload;var ecommerce_banknote={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"16","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"32"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M10,44c0-2.762-2.238-5-5-5V25c2.762,0,5-2.238,5-5\r\n\th44c0,2.762,2.238,5,5,5v14c-2.762,0-5,2.238-5,5H10z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"8"},"children":[]}]};exports.ecommerce_banknote=ecommerce_banknote;var ecommerce_banknotes={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"24","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"26"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,22 11,14 63,14 63,40 55,40 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M10,46c0-3-2-4-5-4V32c3,0,5-1,5-4h35c0,3,2,4,4,4\r\n\tv10c-2,0-4,1-4,4H10z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"27","cy":"37","r":"5"},"children":[]}]};exports.ecommerce_banknotes=ecommerce_banknotes;var ecommerce_basket={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]}]};exports.ecommerce_basket=ecommerce_basket;var ecommerce_basket_check={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23,41 30,48 \r\n\t43,35 "},"children":[]}]};exports.ecommerce_basket_check=ecommerce_basket_check;var ecommerce_basket_cloud={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M34.887,48H39c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.ecommerce_basket_cloud=ecommerce_basket_cloud;var ecommerce_basket_download={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,44 32,52 \r\n\t24,44 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"52","x2":"32","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"52","x2":"32","y2":"32"},"children":[]}]}]}]};exports.ecommerce_basket_download=ecommerce_basket_download;var ecommerce_basket_minus={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"43","x2":"23","y2":"43"},"children":[]}]};exports.ecommerce_basket_minus=ecommerce_basket_minus;var ecommerce_basket_plus={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"34","x2":"32","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"43","x2":"23","y2":"43"},"children":[]}]};exports.ecommerce_basket_plus=ecommerce_basket_plus;var ecommerce_basket_refresh={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,42c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,55 35,51 \r\n\t32,47 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,42c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,29 29,33 \r\n\t32,37 "},"children":[]}]};exports.ecommerce_basket_refresh=ecommerce_basket_refresh;var ecommerce_basket_remove={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"50","x2":"25","y2":"36"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"50","x2":"39","y2":"36"},"children":[]}]};exports.ecommerce_basket_remove=ecommerce_basket_remove;var ecommerce_basket_search={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"40","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"29","cy":"40","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"44","x2":"41","y2":"52"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"44","x2":"41","y2":"52"},"children":[]}]}]}]};exports.ecommerce_basket_search=ecommerce_basket_search;var ecommerce_basket_upload={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,25 12,59 52,59 63,25 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"25","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"25","x2":"42","y2":"5"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"23.998,41 \r\n\t31.998,33 39.998,41 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"33","x2":"31.998","y2":"53"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31.998","y1":"33","x2":"31.998","y2":"53"},"children":[]}]}]}]};exports.ecommerce_basket_upload=ecommerce_basket_upload;var ecommerce_bath={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"16"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,17h5.443c0,0,8.562-0.783,8.562,7\r\n\ts-8.562,7-8.562,7H24"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,31h6.221c0,0,9.781-0.893,9.781,8\r\n\ts-9.781,8-9.781,8H24"},"children":[]},{"name":"rect","attribs":{"x":"29","y":"13","width":"2","height":"39"},"children":[]}]};exports.ecommerce_bath=ecommerce_bath;var ecommerce_cart={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,10 22,4 32,4 34,10 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,4 37,1 53,1 56,10 "},"children":[]}]};exports.ecommerce_cart=ecommerce_cart;var ecommerce_cart_check={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,24 34,31 \r\n\t47,18 "},"children":[]}]};exports.ecommerce_cart_check=ecommerce_cart_check;var ecommerce_cart_cloud={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M38.887,31H43c1.887,0,3-1,3-3c0-1-1-3-3-3\r\n\tc0-3.604-3.277-6-7-6c-3.295,0-6.413,2.978-7,6l0,0c-2,0-3,2-3,3c0,2,1,3,3,3h10.434"},"children":[]}]};exports.ecommerce_cart_cloud=ecommerce_cart_cloud;var ecommerce_cart_content={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]}]};exports.ecommerce_cart_content=ecommerce_cart_content;var ecommerce_cart_download={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"44,27 36,35 \r\n\t28,27 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"35","x2":"36","y2":"15"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"35","x2":"36","y2":"15"},"children":[]}]}]}]};exports.ecommerce_cart_download=ecommerce_cart_download;var ecommerce_cart_minus={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"26","x2":"27","y2":"26"},"children":[]}]};exports.ecommerce_cart_minus=ecommerce_cart_minus;var ecommerce_cart_plus={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"17","x2":"36","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"26","x2":"27","y2":"26"},"children":[]}]};exports.ecommerce_cart_plus=ecommerce_cart_plus;var ecommerce_cart_refresh={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M28,26c0,4.418,3.582,9,8,9h4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,39 40,35 \r\n\t37,31 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M46,26c0-4.418-3.582-9-8-9h-4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,13 34,17 \r\n\t37,21 "},"children":[]}]};exports.ecommerce_cart_refresh=ecommerce_cart_refresh;var ecommerce_cart_remove={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"33","x2":"29","y2":"19"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"33","x2":"43","y2":"19"},"children":[]}]};exports.ecommerce_cart_remove=ecommerce_cart_remove;var ecommerce_cart_search={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"33","cy":"23","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"33","cy":"23","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"27","x2":"45","y2":"35"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"27","x2":"45","y2":"35"},"children":[]}]}]}]};exports.ecommerce_cart_search=ecommerce_cart_search;var ecommerce_cart_upload={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"57","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"57","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"57","x2":"38","y2":"57"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"14,57 10,2 0,2 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"13,43 56,40 63,10 11,10 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27.998,24 \r\n\t35.998,16 43.998,24 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35.998","y1":"16","x2":"35.998","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35.998","y1":"16","x2":"35.998","y2":"36"},"children":[]}]}]}]};exports.ecommerce_cart_upload=ecommerce_cart_upload;var ecommerce_cent={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"12","x2":"32","y2":"52"},"children":[]}]};exports.ecommerce_cent=ecommerce_cent;var ecommerce_colon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"14","x2":"21","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"14","x2":"26","y2":"49"},"children":[]}]};exports.ecommerce_colon=ecommerce_colon;var ecommerce_creditcard={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"11","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"42"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"17","x2":"63","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"25","x2":"63","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"47","x2":"10","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"47","x2":"41","y2":"47"},"children":[]}]};exports.ecommerce_creditcard=ecommerce_creditcard;var ecommerce_diamond={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,6 46,6 63,27 32,58 1,27 18,6 32,6 \r\n\t\t32,58 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,6 46,6 63,27 32,58 1,27 18,6 32,6 \r\n\t\t32,58 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,57 18,27 24,6 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,57 18,27 24,6 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,57 46,27 40,6 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,57 46,27 40,6 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"27","x2":"63","y2":"27"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"27","x2":"63","y2":"27"},"children":[]}]}]}]};exports.ecommerce_diamond=ecommerce_diamond;var ecommerce_dollar={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"29","y":"13","width":"2","height":"39"},"children":[]},{"name":"rect","attribs":{"x":"33","y":"13","width":"2","height":"39"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40.988,23c0,0,0-6-9-6s-8,7-8,7s0,7,8,7\r\n\tc9,0,10.012,6,10.012,7c0,2,0.988,8-10.012,8c-9,0-8.988-4-8.988-5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]};exports.ecommerce_dollar=ecommerce_dollar;var ecommerce_euro={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,43c0,0-1,4-10,4s-12-7-12-15s3-15,12-15\r\n\ts10,4,10,4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"30","x2":"34","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"34","x2":"34","y2":"34"},"children":[]}]};exports.ecommerce_euro=ecommerce_euro;var ecommerce_franc={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,48 25,18 41,18 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"32","x2":"39","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"38","x2":"34","y2":"38"},"children":[]}]};exports.ecommerce_franc=ecommerce_franc;var ecommerce_gift={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"18","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"9"},"children":[]},{"name":"rect","attribs":{"x":"6","y":"27","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"58","x2":"32","y2":"18"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,18c0,0-13,0.101-13-9c0-7,13-4.068,13,2\r\n\tC32,17.067,32,18,32,18z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,18c0,0,13,0.101,13-9c0-7-13-4.068-13,2\r\n\tC32,17.067,32,18,32,18z"},"children":[]}]};exports.ecommerce_gift=ecommerce_gift;var ecommerce_graph1={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M54.999,36.001C55,50.913,42.912,63,28,62.999\r\n\tC13.087,63,1,50.912,1.001,36C1,21.088,13.088,9,28,9.001V36L54.999,36.001z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M63,28C63.001,13.087,50.914,0.998,36.001,1v27H63z"},"children":[]}]};exports.ecommerce_graph1=ecommerce_graph1;var ecommerce_graph2={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"10","y":"29","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"34"},"children":[]},{"name":"rect","attribs":{"x":"42","y":"39","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"24"},"children":[]},{"name":"rect","attribs":{"x":"26","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"62"},"children":[]}]};exports.ecommerce_graph2=ecommerce_graph2;var ecommerce_graph3={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"56","cy":"34","r":"3"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"22","cy":"4","r":"3"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"40","cy":"50","r":"3"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"7","cy":"31","r":"3"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"28","x2":"20","y2":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"48","x2":"54","y2":"36"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"57","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"6","x2":"38","y2":"47"},"children":[]}]};exports.ecommerce_graph3=ecommerce_graph3;var ecommerce_graph_decrease={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"10","y":"16","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"47"},"children":[]},{"name":"rect","attribs":{"x":"42","y":"45","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"18"},"children":[]},{"name":"rect","attribs":{"x":"26","y":"32","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"31"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"1","x2":"54","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"1","x2":"54","y2":"39"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"43,39 54,39 \r\n\t\t54,28 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"43,39 54,39 \r\n\t\t54,28 \t"},"children":[]}]}]}]};exports.ecommerce_graph_decrease=ecommerce_graph_decrease;var ecommerce_graph_increase={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"10","y":"45","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"18"},"children":[]},{"name":"rect","attribs":{"x":"42","y":"18","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"45"},"children":[]},{"name":"rect","attribs":{"x":"26","y":"32","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"31"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"38","x2":"51","y2":"1"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"38","x2":"51","y2":"1"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,1 51,1 51,12 \r\n\t\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,1 51,1 51,12 \r\n\t\t\t"},"children":[]}]}]}]};exports.ecommerce_graph_increase=ecommerce_graph_increase;var ecommerce_guarani={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,21c0,0-1-4-10-4s-12,7-12,15s3,15,12,15\r\n\ts10-4,10-4v-7h-6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"12","x2":"32","y2":"52"},"children":[]}]};exports.ecommerce_guarani=ecommerce_guarani;var ecommerce_kips={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"16","x2":"25","y2":"48"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,48 26,31 42,16 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"31","x2":"39","y2":"31"},"children":[]}]};exports.ecommerce_kips=ecommerce_kips;var ecommerce_lira={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,19c0,0-1.059-3-6-3s-9,2-9,7s0,26,0,26h14"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"49","x2":"27","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"32","x2":"35","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"38","x2":"35","y2":"38"},"children":[]}]};exports.ecommerce_lira=ecommerce_lira;var ecommerce_megaphone={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,29 1,35 7,41 45.5,41 61,53 63,53 63,29 \r\n\t63,5 61,5 45.5,17 7,17 1,23 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"19,41 12,59 18,59 28,41 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"17","x2":"43","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"36","y1":"41","x2":"36","y2":"17"},"children":[]}]};exports.ecommerce_megaphone=ecommerce_megaphone;var ecommerce_money={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"38","r":"19"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"38","r":"13"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"30,51 1,51 1,57 38,57 38,56 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,45 3,45 3,51 30,51 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"26,39 5,39 5,45 27,45 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"26,33 1,33 1,39 26,39 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,27 3,27 3,33 26,33 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"35,21 1,21 1,27 29,27 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"40,20 40,15 3,15 3,21 35,21 "},"children":[]},{"name":"rect","attribs":{"x":"1","y":"9","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"37","height":"6"},"children":[]}]};exports.ecommerce_money=ecommerce_money;var ecommerce_naira={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,49 22,18 23,18 39,48 40,48 40,17 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"30","x2":"45","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"36","x2":"45","y2":"36"},"children":[]}]};exports.ecommerce_naira=ecommerce_naira;var ecommerce_pesos={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"16"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,17h7c0,0,11-1,11,9s-11,9-11,9h-7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"24","x2":"47","y2":"24"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"28","x2":"47","y2":"28"},"children":[]}]};exports.ecommerce_pesos=ecommerce_pesos;var ecommerce_pound={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,19c0,0-1.059-3-6-3c-4.941,0-9,2-9,7s0,26,0,26\r\n\th14"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"49","x2":"27","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"32","x2":"35","y2":"32"},"children":[]}]};exports.ecommerce_pound=ecommerce_pound;var ecommerce_receipt={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"14.999","x2":"46","y2":"14.999"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"14.999","x2":"46","y2":"14.999"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"23.999","x2":"46","y2":"23.999"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"23.999","x2":"46","y2":"23.999"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"33.999","x2":"46","y2":"33.999"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"33.999","x2":"46","y2":"33.999"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"43.999","x2":"46","y2":"43.999"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"43.999","x2":"46","y2":"43.999"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"53.999","x2":"46","y2":"53.999"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"53.999","x2":"46","y2":"53.999"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]}]};exports.ecommerce_receipt=ecommerce_receipt;var ecommerce_receipt_bath={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"48","x2":"26","y2":"22"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M26,23h5c0,0,6,0,6,6c0,5-6,5-6,5h-5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,34h5c0,0,7-0.226,7,7c0,6-7,6-7,6h-6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"20","x2":"32","y2":"50"},"children":[]}]};exports.ecommerce_receipt_bath=ecommerce_receipt_bath;var ecommerce_receipt_cent={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"20","x2":"34","y2":"49"},"children":[]}]};exports.ecommerce_receipt_cent=ecommerce_receipt_cent;var ecommerce_receipt_dollar={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M38,28c0,0,0.161-4-6-4s-6,3-6,5s0.523,4,6,4\r\n\tc6.161,0,7,4.315,7,5c0,1.369,0.53,6-7,6c-6.161,0-6-3.315-6-4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"21","x2":"34","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"21","x2":"30","y2":"48"},"children":[]}]};exports.ecommerce_receipt_dollar=ecommerce_receipt_dollar;var ecommerce_receipt_euro={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"33","x2":"36","y2":"33"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"37","x2":"36","y2":"37"},"children":[]}]};exports.ecommerce_receipt_euro=ecommerce_receipt_euro;var ecommerce_receipt_franc={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27,48 27,21 40,21 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"34","x2":"38","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"39","x2":"34","y2":"39"},"children":[]}]};exports.ecommerce_receipt_franc=ecommerce_receipt_franc;var ecommerce_receipt_guarani={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,26c0,0-0.933-3-8-3c-7.066,0-9,4.719-9,11\r\n\ts1.934,12,9,12c7.067,0,8-4,8-4v-5h-4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"20","x2":"34","y2":"49"},"children":[]}]};exports.ecommerce_receipt_guarani=ecommerce_receipt_guarani;var ecommerce_receipt_kips={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"20","x2":"27","y2":"48"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,48 26.916,33.125 40.024,20 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"33","x2":"37","y2":"33"},"children":[]}]};exports.ecommerce_receipt_kips=ecommerce_receipt_kips;var ecommerce_receipt_lira={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M39,23c0,0-1.062-1.916-4.941-1.916\r\n\tC30.178,21.084,27,22.074,27,26c0,3.927,0,21,0,21h11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"34","x2":"34","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"38","x2":"34","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"47","x2":"27","y2":"47"},"children":[]}]};exports.ecommerce_receipt_lira=ecommerce_receipt_lira;var ecommerce_receipt_naira={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,48 25,21 25.929,21 39.071,47 40,47 \r\n\t40,20 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"31","x2":"44","y2":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"37","x2":"44","y2":"37"},"children":[]}]};exports.ecommerce_receipt_naira=ecommerce_receipt_naira;var ecommerce_receipt_pesos={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"20"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,21h6c0,0,10.018-0.703,10.018,8S30,37,30,37h-6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"27","x2":"44","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"31","x2":"44","y2":"31"},"children":[]}]};exports.ecommerce_receipt_pesos=ecommerce_receipt_pesos;var ecommerce_receipt_pound={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M39,23c0,0-1.062-1.916-4.941-1.916\r\n\tC30.178,21.084,27,22.074,27,26c0,3.927,0,21,0,21h11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"34","x2":"34","y2":"34"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"47","x2":"27","y2":"47"},"children":[]}]};exports.ecommerce_receipt_pound=ecommerce_receipt_pound;var ecommerce_receipt_rublo={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"48","x2":"26","y2":"20"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M26,21h5.953c0,0,10.078-0.723,10.078,8\r\n\ts-10.078,8-10.078,8H22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"42","x2":"33","y2":"42"},"children":[]}]};exports.ecommerce_receipt_rublo=ecommerce_receipt_rublo;var ecommerce_receipt_rupee={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M35.062,49.938L22,38v-1h6c0,0,10,0.75,10-8\r\n\tc0-7.875-10-8-10-8h-7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"21","x2":"43","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"26","x2":"43","y2":"26"},"children":[]}]};exports.ecommerce_receipt_rupee=ecommerce_receipt_rupee;var ecommerce_receipt_tugrik={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"32","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"21","x2":"43","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"26","x2":"27","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"31","x2":"27","y2":"37"},"children":[]}]};exports.ecommerce_receipt_tugrik=ecommerce_receipt_tugrik;var ecommerce_receipt_won={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,20 24,47 25,47 31,22 33,22 39,47 \r\n\t40,47 46,20 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"32","x2":"48","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"37","x2":"48","y2":"37"},"children":[]}]};exports.ecommerce_receipt_won=ecommerce_receipt_won;var ecommerce_receipt_yen={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,22 32,36 32,48 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,22 32,36 32,48 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"32","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"22","x2":"32","y2":"36"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"38","x2":"41","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"38","x2":"41","y2":"38"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"33","x2":"41","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"33","x2":"41","y2":"33"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"33","x2":"30","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"33","x2":"30","y2":"33"},"children":[]}]}]}]};exports.ecommerce_receipt_yen=ecommerce_receipt_yen;var ecommerce_receipt_yen2={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"21","x2":"42","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"26","x2":"45","y2":"26"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M28,27v16c0,0-0.602,4-3.121,4H22"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M36,27v17c0,0,0.637,3,3.997,3H42"},"children":[]}]};exports.ecommerce_receipt_yen2=ecommerce_receipt_yen2;var ecommerce_recept_colon={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"52,62.999 52,0.999 26,0.999 12,14.999 \r\n\t\t12,63 16,61 20,63 24,61 28,63 32,61 36,63 40,61 44,63 48,61 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,14.999 26,14.999 26,0.999 \t"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M42,42c0,0-0.933,4-8,4c-7.066,0-9-5.719-9-12\r\n\ts1.934-11,9-11c7.067,0,8,3,8,3"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37.869","y1":"20","x2":"24","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"21","x2":"28","y2":"48"},"children":[]}]};exports.ecommerce_recept_colon=ecommerce_recept_colon;var ecommerce_rublo={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"16"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,17h7c0,0,11-1,11,9s-11,9-11,9H19"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"41","x2":"32","y2":"41"},"children":[]}]};exports.ecommerce_rublo=ecommerce_rublo;var ecommerce_rupee={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M36,50L21,36v-1h7c0,0,11,1,11-9c0-9-11-9-11-9h-8"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"17","x2":"44","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"23","x2":"44","y2":"23"},"children":[]}]};exports.ecommerce_rupee=ecommerce_rupee;var ecommerce_safe={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"5","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"54"},"children":[]},{"name":"rect","attribs":{"x":"11","y":"11","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"46","height":"42"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"17","x2":"12","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"27","x2":"12","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"37","x2":"12","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"47","x2":"12","y2":"47"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"32","r":"3"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"32","r":"9"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"32","x2":"41","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"29","x2":"44","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"32","x2":"53","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"35","x2":"44","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"34","x2":"50","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"46","y1":"30","x2":"50","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"30","x2":"38","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"34","x2":"38.026","y2":"38"},"children":[]}]};exports.ecommerce_safe=ecommerce_safe;var ecommerce_sale={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,1 63,39 39,63 1,25 1,1 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,1 63,39 39,63 1,25 1,1 \t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"17","cy":"17","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"17","cy":"17","r":"6"},"children":[]}]}]}]};exports.ecommerce_sale=ecommerce_sale;var ecommerce_sales={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"21.903,5 55,38.097 34.097,59 1,25.903 \r\n\t\t1,5 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"21.903,5 55,38.097 34.097,59 1,25.903 \r\n\t\t1,5 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29.903,5 63,38.097 42.097,59 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29.903,5 63,38.097 42.097,59 \t"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"14","cy":"18","r":"5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"14","cy":"18","r":"5"},"children":[]}]}]}]};exports.ecommerce_sales=ecommerce_sales;var ecommerce_ticket={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M57,18c-1.504,1.504-2.705,2-5,2\r\n\t\tc-4.59,0-8-3.41-8-8c0-2.295,0.496-3.496,2-5l-6-6L1,40l6,6c1.504-1.504,2.705-2,5-2c4.59,0,8,3.41,8,8c0,2.295-0.496,3.496-2,5\r\n\t\tl6,6l39-39L57,18z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M57,18c-1.504,1.504-2.705,2-5,2\r\n\t\tc-4.59,0-8-3.41-8-8c0-2.295,0.496-3.496,2-5l-6-6L1,40l6,6c1.504-1.504,2.705-2,5-2c4.59,0,8,3.41,8,8c0,2.295-0.496,3.496-2,5\r\n\t\tl6,6l39-39L57,18z"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"15","x2":"30","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"15","x2":"30","y2":"19"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"34","x2":"49","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"34","x2":"49","y2":"38"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"21","x2":"36","y2":"25"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"28","x2":"43","y2":"32"},"children":[]}]};exports.ecommerce_ticket=ecommerce_ticket;var ecommerce_tugriks={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"32","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"18","y1":"17","x2":"46","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"24","x2":"25","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"30","x2":"25","y2":"38"},"children":[]}]};exports.ecommerce_tugriks=ecommerce_tugriks;var ecommerce_wallet={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61,44 61,55 1,55 1,15 61,15 61,26 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"6,9 54,9 54,15 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M6,9c-2.762,0-5,2.239-5,5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M43.125,26c-4.972,0-9,4.029-9,9c0,4.97,4.028,9,9,9\r\n\tH63V26H43.125z"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"44","cy":"35","r":"3"},"children":[]}]};exports.ecommerce_wallet=ecommerce_wallet;var ecommerce_won={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"15,16 23,48 24,48 31,18 33,18 40,48 \r\n\t41,48 49,16 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"30","x2":"51","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"36","x2":"51","y2":"36"},"children":[]}]};exports.ecommerce_won=ecommerce_won;var ecommerce_yen={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,16 32,33 32,48 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,16 32,33 32,48 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"16","x2":"32","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"16","x2":"32","y2":"33"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"36","x2":"43","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"36","x2":"43","y2":"36"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"30","x2":"43","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"30","x2":"43","y2":"30"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"30","x2":"30","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"30","x2":"30","y2":"30"},"children":[]}]}]}]};exports.ecommerce_yen=ecommerce_yen;var ecommerce_yen2={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"17","x2":"44","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"23","x2":"48","y2":"23"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M26,23v20c0,0,0,5-3,5h-4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M37,23v21c0,0,0,4,4,4h2"},"children":[]}]};exports.ecommerce_yen2=ecommerce_yen2;var music_beginning_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,43 18,32 \r\n\t\t32,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,43 18,32 \r\n\t\t32,21 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,43 38,32 \r\n\t\t52,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,43 38,32 \r\n\t\t52,21 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"41","x2":"12","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"41","x2":"12","y2":"23"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_beginning_button=music_beginning_button;var music_bell={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,55h25v-4l-7-7V25c0-9.941-8.059-18-18-18\r\n\ts-18,8.059-18,18v19l-7,7v4H32z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"41","x2":"50","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"35","x2":"50","y2":"35"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M39,55c0,4.418-3.582,8-8,8s-8-3.582-8-8"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"28,7 28,1 36,1 36,7 "},"children":[]}]};exports.music_bell=music_bell;var music_cd={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"6"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"30","x2":"5","y2":"17"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"30","x2":"5","y2":"17"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"26","x2":"18","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"26","x2":"18","y2":"5"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"34","x2":"59","y2":"47"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"34","x2":"59","y2":"47"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"38","x2":"47","y2":"59"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"38","x2":"47","y2":"59"},"children":[]}]}]}]};exports.music_cd=music_cd;var music_diapason={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"5","cy":"59","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,29c-3.124,3.124-3.124,8.876,0,12\r\n\tc3.124,3.124,8.876,2.124,12-1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"29","x2":"51","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"40","x2":"63","y2":"12"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"41","x2":"8","y2":"56"},"children":[]}]};exports.music_diapason=music_diapason;var music_eject_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"21,34 32,20 \r\n\t\t43,34 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"21,34 32,20 \r\n\t\t43,34 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"40","x2":"42","y2":"40"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"40","x2":"42","y2":"40"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_eject_button=music_eject_button;var music_end_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,21 46,32 \r\n\t\t32,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"32,21 46,32 \r\n\t\t32,43 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,21 26,32 \r\n\t\t12,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,21 26,32 \r\n\t\t12,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"23","x2":"52","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"23","x2":"52","y2":"41"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_end_button=music_end_button;var music_fastforward_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"36,21 50,32 \r\n\t\t36,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"36,21 50,32 \r\n\t\t36,43 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"16,21 30,32 \r\n\t\t16,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"16,21 30,32 \r\n\t\t16,43 \t"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_fastforward_button=music_fastforward_button;var music_headphones={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M11,53C5.477,53,1,48.523,1,43s4.477-10,10-10h2v20\r\n\tH11z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53,33c5.523,0,10,4.477,10,10s-4.477,10-10,10h-2\r\n\tV33H53z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M13,36v-9c0,0,0-16,19-16s19,16,19,16v6"},"children":[]}]};exports.music_headphones=music_headphones;var music_ipod={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"32","height":"62"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"36","x2":"48","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"36","x2":"48","y2":"36"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"5","x2":"48","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"5","x2":"48","y2":"5"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"9.5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"9.5"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"2.5"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","cx":"31.5","cy":"49.5","r":"2.5"},"children":[]}]}]}]};exports.music_ipod=music_ipod;var music_loudspeaker={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"12","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"62"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"42","r":"12"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"16","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"42","r":"2.5"},"children":[]}]};exports.music_loudspeaker=music_loudspeaker;var music_microphone={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"45","cy":"15","r":"14"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,20 6,46 14,54 40,28 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"28","x2":"32","y2":"36"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"10,50 6,54 15,63 20,63 42,41 47,46 40,53 \r\n\t"},"children":[]}]};exports.music_microphone=music_microphone;var music_microphone_old={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"63","x2":"47","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"62","x2":"32","y2":"42"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,26c0,8-8,16-16,16s-16-8-16-16"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,27c0,4.418-3.582,8-8,8s-8-3.582-8-8V9\r\n\tc0-4.418,3.582-8,8-8s8,3.582,8,8V27z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"13","x2":"24","y2":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"23","x2":"24","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"13","x2":"35","y2":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"23","x2":"35","y2":"23"},"children":[]}]};exports.music_microphone_old=music_microphone_old;var music_mixer={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"16","y1":"10","x2":"16","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"10","x2":"48","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"10","x2":"32","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"14","x2":"22","y2":"14"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"50","x2":"54","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"32","x2":"38","y2":"32"},"children":[]}]};exports.music_mixer=music_mixer;var music_mute={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"4,32 4,20 16,20 34,2 34,32 34,62 16,44 \r\n\t\t4,44 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"4,32 4,20 16,20 34,2 34,32 34,62 16,44 \r\n\t\t4,44 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"23","x2":"60","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"23","x2":"60","y2":"41"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"41","x2":"60","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"41","x2":"60","y2":"23"},"children":[]}]}]}]};exports.music_mute=music_mute;var music_note_multiple={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"18","cy":"55","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"18","cy":"55","r":"8"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"46","cy":"49","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"46","cy":"49","r":"8"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"54,49 54,1 26,7 26,55 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"54,49 54,1 26,7 26,55 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"23","x2":"54","y2":"17"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"26","y1":"23","x2":"54","y2":"17"},"children":[]}]}]}]};exports.music_note_multiple=music_note_multiple;var music_note_single={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"22","cy":"55","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"22","cy":"55","r":"8"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"30,55 30,7 50,1 50,15 30,21 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"30,55 30,7 50,1 50,15 30,21 \t"},"children":[]}]}]}]};exports.music_note_single=music_note_single;var music_pause_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"23","x2":"25","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"23","x2":"25","y2":"41"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"23","x2":"38","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"23","x2":"38","y2":"41"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_pause_button=music_pause_button;var music_play_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,21 41,32 \r\n\t\t27,43 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"27,21 41,32 \r\n\t\t27,43 \t"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_play_button=music_play_button;var music_playlist={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"55","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"35","cy":"55","r":"8"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,55 43,7 63,1 63,15 43,21 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,55 43,7 63,1 63,15 43,21 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"16","x2":"38","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"26","x2":"38","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"36","x2":"38","y2":"36"},"children":[]}]};exports.music_playlist=music_playlist;var music_radio_ghettoblaster={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"21","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"35"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"17.5","cy":"38.5","r":"10.5"},"children":[]},{"name":"rect","attribs":{"x":"34","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"23","height":"15"},"children":[]},{"name":"rect","attribs":{"x":"52","y":"27","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"4"},"children":[]},{"name":"rect","attribs":{"x":"43","y":"27","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"4"},"children":[]},{"name":"rect","attribs":{"x":"34","y":"27","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,21 5,8 59,8 59,21 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"12","x2":"59","y2":"12"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"48","x2":"14","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"48","x2":"21","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"35","x2":"27","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"42","x2":"27","y2":"42"},"children":[]}]};exports.music_radio_ghettoblaster=music_radio_ghettoblaster;var music_radio_portable={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"22","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"38"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"20","cy":"41","r":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"36","x2":"32","y2":"36"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"8","y1":"46","x2":"32","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"29","x2":"25","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"29","x2":"15","y2":"53"},"children":[]},{"name":"rect","attribs":{"x":"43","y":"28","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"4"},"children":[]},{"name":"rect","attribs":{"x":"52","y":"28","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"5","height":"4"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"52","cy":"49","r":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"44","x2":"52","y2":"48"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,22 3,18 9,18 9,22 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"53,4 6,16 6,18 "},"children":[]}]};exports.music_radio_portable=music_radio_portable;var music_record={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]}]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"8"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"8"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,48c-8.838,0-16-7.16-16-16"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,48c-8.838,0-16-7.16-16-16"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.002,48"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.002,48"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,16c8.838,0,16,7.162,16,16"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,16c8.838,0,16,7.162,16,16"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,9"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,9"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.003,55C19.299,55,9,44.707,9,32"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.003,55C19.299,55,9,44.707,9,32"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.003,55"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32.003,55"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,32.002"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,32.002"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,9c12.704,0,23,10.295,23,23"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,9c12.704,0,23,10.295,23,23"},"children":[]}]}]}]};exports.music_record=music_record;var music_recordplayer={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"4","height":"8"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"27.5","cy":"27.5","r":"22.5"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"27.5","cy":"27.5","r":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"15","x2":"57","y2":"48"},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"57,49 51,52 51,48 \r\n\t57,45 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"56","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"3"},"children":[]},{"name":"rect","attribs":{"x":"15","y":"56","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"6","height":"3"},"children":[]}]};exports.music_recordplayer=music_recordplayer;var music_repeat_button={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"56,48 8,48 8,24 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"8,16 56,16 56,40 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"49,33 56,40 \r\n\t63,33 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"15,31 8,24 1,31 \r\n\t"},"children":[]}]};exports.music_repeat_button=music_repeat_button;var music_rewind_button={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"28,43 14,32 \r\n\t\t28,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"28,43 14,32 \r\n\t\t28,21 \t"},"children":[]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"48,43 34,32 \r\n\t\t48,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"48,43 34,32 \r\n\t\t48,21 \t"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]}]}]};exports.music_rewind_button=music_rewind_button;var music_shuffle_button={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0,48 15,48 47,16 63,16 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,38 47,48 63,48 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0,16 15,16 25,26 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M56,23"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,23 63,16 56,9 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,55 63,48 \r\n\t56,41 "},"children":[]}]};exports.music_shuffle_button=music_shuffle_button;var music_stop_button={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"22","y":"22","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"20"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"},"children":[]}]};exports.music_stop_button=music_stop_button;var music_tape={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"11","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"42"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"16","cy":"31","r":"6"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"48","cy":"31","r":"6"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,53 54,43 32,43 10,43 7,53 "},"children":[]},{"name":"rect","attribs":{"x":"5","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"55","height":"4"},"children":[]},{"name":"rect","attribs":{"x":"26","y":"28","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"12","height":"6"},"children":[]}]};exports.music_tape=music_tape;var music_volume_down={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"8,32 8,20 20,20 38,2 38,32 38,62 20,44 \r\n\t\t8,44 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"8,32 8,20 20,20 38,2 38,32 38,62 20,44 \r\n\t\t8,44 \t"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M46,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M46,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"},"children":[]}]}]}]};exports.music_volume_down=music_volume_down;var music_volume_up={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,32 3,20 15,20 33,2 33,32 33,62 15,44 \r\n\t\t3,44 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,32 3,20 15,20 33,2 33,32 33,62 15,44 \r\n\t\t3,44 \t"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"},"children":[]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,12c11.046,0,20,8.954,20,20s-8.954,20-20,20"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,12c11.046,0,20,8.954,20,20s-8.954,20-20,20"},"children":[]}]}]}]};exports.music_volume_up=music_volume_up;var software_add_vectorpoint={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,22 44,20 42,20 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,22 44,20 42,20 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"40","y1":"20","x2":"23","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"40","y1":"20","x2":"23","y2":"20"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,20 20,20 20,22 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,20 20,20 20,22 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"20","y1":"24","x2":"20","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"20","y1":"24","x2":"20","y2":"41"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,42 20,44 22,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,42 20,44 22,44 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"24","y1":"44","x2":"41","y2":"44"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"24","y1":"44","x2":"41","y2":"44"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,44 44,44 44,42 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,44 44,44 44,42 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"44","y1":"40","x2":"44","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"44","y1":"40","x2":"44","y2":"23"},"children":[]}]}]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"20","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"20","x2":"53","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"25","x2":"32","y2":"39"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"32","x2":"25","y2":"32"},"children":[]}]};exports.software_add_vectorpoint=software_add_vectorpoint;var software_box_oval={"viewBox":"0 0 64 64","children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","rx":"31","ry":"20"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"32","x2":"63","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"12","x2":"32","y2":"52"},"children":[]}]};exports.software_box_oval=software_box_oval;var software_box_polygon={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"16.676,59 1.351,32 16.676,5 47.324,5 \r\n\t62.649,32 47.324,59 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"5","x2":"47","y2":"59"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"5","x2":"17","y2":"59"},"children":[]}]};exports.software_box_polygon=software_box_polygon;var software_box_rectangle={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"12","x2":"63","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"12","x2":"1","y2":"52"},"children":[]}]};exports.software_box_rectangle=software_box_rectangle;var software_box_roundedrectangle={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M63,40c0,6.627-5.373,12-12,12H13\r\n\tC6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"15","x2":"59","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"59","y1":"15","x2":"5","y2":"49"},"children":[]}]};exports.software_box_roundedrectangle=software_box_roundedrectangle;var software_character={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,52.5 27,10 28,10 43,52.75 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"12,52.5 27,10 28,10 43,52.75 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"38","x2":"38","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"38","x2":"38","y2":"38"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"0","x2":"52","y2":"64"},"children":[]}]};exports.software_character=software_character;var software_crop={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0,11 53,11 53,64 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,0 11,53 64,53 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"63","y2":"1"},"children":[]}]};exports.software_crop=software_crop;var software_eyedropper={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M47,26l12-12l4-4c0-4.371-4.628-9-9-9\r\n\tc0,0-2.563,2.533-4,4L38,17"},"children":[]},{"name":"rect","attribs":{"x":"28.479","y":"20.672","transform":"matrix(-0.7071 -0.7071 0.7071 -0.7071 52.5208 68.7548)","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"24.042","height":"5.657"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"34,22 4,54 4,56 1,59 5,63 8,60 10,60 \r\n\t42,30 "},"children":[]}]};exports.software_eyedropper=software_eyedropper;var software_font_allcaps={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31,50.987 18,16 17,16 4,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31,50.987 18,16 17,16 4,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"39","x2":"8","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"39","x2":"8","y2":"39"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"60,50.987 47,16 46,16 33,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"60,50.987 47,16 46,16 33,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"39","x2":"37","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"39","x2":"37","y2":"39"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.software_font_allcaps=software_font_allcaps;var software_font_baseline_shift={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,43 21,1 20,1 5,43 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,43 21,1 20,1 5,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"29","x2":"10","y2":"29"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"29","x2":"10","y2":"29"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,31 51,8 50,8 42,31 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,31 51,8 50,8 42,31 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"24","x2":"44","y2":"24"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"24","x2":"44","y2":"24"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"47","x2":"2","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"35","x2":"40","y2":"35"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"58,47 51,40 \r\n\t44,47 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"51","y1":"64","x2":"51","y2":"40"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"51","y1":"64","x2":"51","y2":"40"},"children":[]}]}]}]};exports.software_font_baseline_shift=software_font_baseline_shift;var software_font_horizontal_scale={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"17,44 32,2 33,2 48,44 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"17,44 32,2 33,2 48,44 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"30","x2":"43","y2":"30"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"30","x2":"43","y2":"30"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M55,63"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"55,63 62,56 \r\n\t55,49 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"9,49 2,56 9,63 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[]}]}]}]};exports.software_font_horizontal_scale=software_font_horizontal_scale;var software_font_kerning={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,35 13,12 14,12 22,35 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,35 13,12 14,12 22,35 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"28","x2":"20","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"28","x2":"20","y2":"28"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,35 50,12 51,12 59,35 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,35 50,12 51,12 59,35 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"28","x2":"57","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"28","x2":"57","y2":"28"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"6","x2":"32","y2":"8"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"6","x2":"32","y2":"8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"10","x2":"32","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"10","x2":"32","y2":"39"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"42"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"42"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"55,63 62,56 \r\n\t55,49 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"9,49 2,56 9,63 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[]}]}]}]};exports.software_font_kerning=software_font_kerning;var software_font_leading={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,24 44,1 45,1 53,24 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,24 44,1 45,1 53,24 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"17","x2":"51","y2":"17"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"17","x2":"51","y2":"17"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"28","x2":"61","y2":"28"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,57 44,34 45,34 53,57 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,57 44,34 45,34 53,57 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"50","x2":"51","y2":"50"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"50","x2":"51","y2":"50"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"61","x2":"61","y2":"61"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"5,55 12,62 19,55 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"19,34 12,27 5,34 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"62","x2":"12","y2":"27"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"62","x2":"12","y2":"27"},"children":[]}]}]}]};exports.software_font_leading=software_font_leading;var software_font_size={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"28,43 43,1 44,1 59,43 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"28,43 43,1 44,1 59,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"29","x2":"54","y2":"29"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"29","x2":"54","y2":"29"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,43 13,20 14,20 22,43 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,43 13,20 14,20 22,43 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"36","x2":"20","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"36","x2":"20","y2":"36"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"56,63 63,56 \r\n\t56,49 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"8,49 1,56 8,63 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"56","x2":"1","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"56","x2":"1","y2":"56"},"children":[]}]}]}]};exports.software_font_size=software_font_size;var software_font_smallcapital={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,51 22,9 21,9 6,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37,51 22,9 21,9 6,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"37","x2":"11","y2":"37"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"37","x2":"11","y2":"37"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"58,51 50,28 49,28 41,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"58,51 50,28 49,28 41,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"44","x2":"43","y2":"44"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"56","y1":"44","x2":"43","y2":"44"},"children":[]}]}]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.software_font_smallcapital=software_font_smallcapital;var software_font_smallcaps={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"12","y2":"37"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"33","y1":"37","x2":"12","y2":"37"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.software_font_smallcaps=software_font_smallcaps;var software_font_strikethrough={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"13","y2":"35"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"13","y2":"35"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"44","x2":"58","y2":"44"},"children":[]}]};exports.software_font_strikethrough=software_font_strikethrough;var software_font_tracking={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,35 17,12 18,12 26,35 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"9,35 17,12 18,12 26,35 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"28","x2":"24","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"28","x2":"24","y2":"28"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 46,12 47,12 55,35 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,35 46,12 47,12 55,35 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"28","x2":"53","y2":"28"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"28","x2":"53","y2":"28"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"6","x2":"32","y2":"8"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"6","x2":"32","y2":"8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"10","x2":"32","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"10","x2":"32","y2":"39"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"42"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"42"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"6","x2":"4","y2":"8"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"6","x2":"4","y2":"8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"4","y1":"10","x2":"4","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"4","y1":"10","x2":"4","y2":"39"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"40","x2":"4","y2":"42"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"4","y1":"40","x2":"4","y2":"42"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"60","y1":"6","x2":"60","y2":"8"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"60","y1":"6","x2":"60","y2":"8"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"60","y1":"10","x2":"60","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"60","y1":"10","x2":"60","y2":"39"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"60","y1":"40","x2":"60","y2":"42"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"60","y1":"40","x2":"60","y2":"42"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"55,63 62,56 \r\n\t55,49 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"9,49 2,56 9,63 \r\n\t"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"56","x2":"2","y2":"56"},"children":[]}]}]}]};exports.software_font_tracking=software_font_tracking;var software_font_underline={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"38,51 23,9 22,9 7,51 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"13","y2":"35"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"13","y2":"35"},"children":[]}]}]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"55","x2":"58","y2":"55"},"children":[]}]};exports.software_font_underline=software_font_underline;var software_font_vertical_scale={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,53 44,11 45,11 60,53 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,53 44,11 45,11 60,53 \t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"39","x2":"55","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"39","x2":"55","y2":"39"},"children":[]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"5,55 12,62 19,55 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"19,9 12,2 5,9 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"62","x2":"12","y2":"2"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"62","x2":"12","y2":"2"},"children":[]}]}]}]};exports.software_font_vertical_scale=software_font_vertical_scale;var software_horizontal_align_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"51","x2":"32","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"0","x2":"32","y2":"13"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"29","x2":"32","y2":"35"},"children":[]},{"name":"rect","attribs":{"x":"6","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"12","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]}]};exports.software_horizontal_align_center=software_horizontal_align_center;var software_horizontal_align_left={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"0","x2":"1","y2":"64"},"children":[]},{"name":"rect","attribs":{"x":"7","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"7","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]}]};exports.software_horizontal_align_left=software_horizontal_align_left;var software_horizontal_align_right={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"0","x2":"63","y2":"64"},"children":[]},{"name":"rect","attribs":{"x":"5","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"17","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]}]};exports.software_horizontal_align_right=software_horizontal_align_right;var software_horizontal_distribute_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"0","x2":"43","y2":"12"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"52","x2":"43","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"0","x2":"21","y2":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"58","x2":"21","y2":"64"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]}]};exports.software_horizontal_distribute_center=software_horizontal_distribute_center;var software_horizontal_distribute_left={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"0","x2":"35","y2":"64"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"0","x2":"13","y2":"64"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]}]};exports.software_horizontal_distribute_left=software_horizontal_distribute_left;var software_horizontal_distribute_right={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"64","x2":"29","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"51","y1":"64","x2":"51","y2":"0"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]}]};exports.software_horizontal_distribute_right=software_horizontal_distribute_right;var software_indent_firstline={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"10","x2":"64","y2":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"20","x2":"53","y2":"20"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"30","x2":"64","y2":"30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"40","x2":"56","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"50","x2":"64","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"60","x2":"58","y2":"60"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"16,17 23,10 \r\n\t\t16,3 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"16,17 23,10 \r\n\t\t16,3 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"10","x2":"0","y2":"10"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"10","x2":"0","y2":"10"},"children":[]}]}]}]}]}]};exports.software_indent_firstline=software_indent_firstline;var software_indent_left={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"7","x2":"64","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"17","x2":"52","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"27","x2":"64","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"37","x2":"55","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"57","x2":"57","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"0","x2":"25","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"12,39 19,32 \r\n\t12,25 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"32","x2":"0","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"32","x2":"0","y2":"32"},"children":[]}]}]}]};exports.software_indent_left=software_indent_left;var software_indent_right={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"7","x2":"0","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"17","x2":"12","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"37","x2":"9","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"47","x2":"0","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"57","x2":"7","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"0","x2":"39","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,25 45,32 \r\n\t52,39 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"32","x2":"64","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"32","x2":"64","y2":"32"},"children":[]}]}]}]};exports.software_indent_right=software_indent_right;var software_lasso={"viewBox":"0 0 64 64","children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"25.5","rx":"31","ry":"19.5"},"children":[]},{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"48","rx":"6","ry":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M25,51c0,0,2,1,2,4s-2,3-2,3"},"children":[]}]};exports.software_lasso=software_lasso;var software_layers1={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,32.066 2,39 32,51 62,39 46,32.067 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,38 62,26 32,13 2,26 "},"children":[]}]};exports.software_layers1=software_layers1;var software_layers2={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,26.066 2,33 32,45 62,33 46,26.067 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"18,39.066 2,46 32,58 62,46 46,39.067 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,32 62,20 32,7 2,20 "},"children":[]}]};exports.software_layers2=software_layers2;var software_layout={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"62"},"children":[]}]};exports.software_layout=software_layout;var software_layout_2columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"62"},"children":[]}]};exports.software_layout_2columns=software_layout_2columns;var software_layout_3columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"43","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"21","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"22","height":"62"},"children":[]}]};exports.software_layout_3columns=software_layout_3columns;var software_layout_4boxes={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"32","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"31"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"32","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"31"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"31"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"31"},"children":[]}]};exports.software_layout_4boxes=software_layout_4boxes;var software_layout_4columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"16","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"47","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"62"},"children":[]}]};exports.software_layout_4columns=software_layout_4columns;var software_layout_4lines={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"15"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"16","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"32","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"15"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"47","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"16"},"children":[]}]};exports.software_layout_4lines=software_layout_4lines;var software_layout_header={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"48"},"children":[]}]};exports.software_layout_header=software_layout_header;var software_layout_header_2columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"48"},"children":[]}]};exports.software_layout_header_2columns=software_layout_header_2columns;var software_layout_header_3columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"43","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"21","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"22","height":"48"},"children":[]}]};exports.software_layout_header_3columns=software_layout_header_3columns;var software_layout_header_4boxes={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"39","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"24"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"39","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"24"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"24"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"24"},"children":[]}]};exports.software_layout_header_4boxes=software_layout_header_4boxes;var software_layout_header_4columns={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"16","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"47","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"48"},"children":[]}]};exports.software_layout_header_4columns=software_layout_header_4columns;var software_layout_header_complex={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"15","x2":"22","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"38","x2":"63","y2":"38"},"children":[]}]};exports.software_layout_header_complex=software_layout_header_complex;var software_layout_header_complex2={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"15","x2":"42","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"38","x2":"42","y2":"38"},"children":[]}]};exports.software_layout_header_complex2=software_layout_header_complex2;var software_layout_header_complex3={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"47","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"48"},"children":[]}]};exports.software_layout_header_complex3=software_layout_header_complex3;var software_layout_header_complex4={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"31","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"32","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"15","height":"48"},"children":[]},{"name":"rect","attribs":{"x":"47","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"48"},"children":[]}]};exports.software_layout_header_complex4=software_layout_header_complex4;var software_layout_header_sideleft={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"15","x2":"22","y2":"63"},"children":[]}]};exports.software_layout_header_sideleft=software_layout_header_sideleft;var software_layout_header_sideright={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"14"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"15","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"15","x2":"42","y2":"63"},"children":[]}]};exports.software_layout_header_sideright=software_layout_header_sideright;var software_layout_sidebar_left={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"21","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]};exports.software_layout_sidebar_left=software_layout_sidebar_left;var software_layout_sidebar_right={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"43","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"20","height":"62"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"42","height":"62"},"children":[]}]};exports.software_layout_sidebar_right=software_layout_sidebar_right;var software_magnete={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24,42c0,4.418,3.582,8,8,8s8-3.582,8-8V1h13v41\r\n\tc0,11.598-9.402,21-21,21s-21-9.402-21-21V1h13V42z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"10","x2":"24","y2":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"10","x2":"53","y2":"10"},"children":[]}]};exports.software_magnete=software_magnete;var software_pages={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,11 32,11 32,53 1,53 1,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"11,11 32,11 32,53 1,53 1,21 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,21 11,21 11,11 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,21 11,21 11,11 \t"},"children":[]}]}]},{"name":"g","attribs":{},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"53,11 32,11 32,53 63,53 63,21 \t"},"children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"53,11 32,11 32,53 63,53 63,21 \t"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,21 53,21 53,11 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,21 53,21 53,11 \t"},"children":[]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"6","x2":"32","y2":"58"},"children":[]}]};exports.software_pages=software_pages;var software_paintbrush={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"30,42 26,46 18,38 22,34 62,1 63,2 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"34","x2":"30","y2":"42"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M26,46c0,0-8,17-25,17c0,0,2.752-16.314,9-21\r\n\tc4-3,8-4,8-4"},"children":[]}]};exports.software_paintbrush=software_paintbrush;var software_paintbucket={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"3,38 28,63 54,37 \r\n\t61,36 33,8 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","d":"M32,27V6\r\n\tc0-2.762-2.238-5-5-5s-5,2.238-5,5v13"},"children":[]}]};exports.software_paintbucket=software_paintbucket;var software_paintroller={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"7","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"48","height":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"9","x2":"7","y2":"9"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"55,9 61,9 61,24 32,24 32,41 "},"children":[]},{"name":"rect","attribs":{"x":"28","y":"42","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"8","height":"21"},"children":[]}]};exports.software_paintroller=software_paintroller;var software_paragraph={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"51,64 51,1 41,1 41,64 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"33","x2":"41","y2":"33"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29,33c0,0-16,0-16-16S29,1,29,1h12"},"children":[]}]};exports.software_paragraph=software_paragraph;var software_paragraph_align_left={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"7","x2":"64","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"17","x2":"46","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"27","x2":"64","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"37","x2":"50","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"57","x2":"54","y2":"57"},"children":[]}]};exports.software_paragraph_align_left=software_paragraph_align_left;var software_paragraph_align_right={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"7","x2":"0","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"17","x2":"18","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"14","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"47","x2":"0","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"57","x2":"10","y2":"57"},"children":[]}]};exports.software_paragraph_align_right=software_paragraph_align_right;var software_paragraph_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"7","x2":"64","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"17","x2":"55","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"27","x2":"64","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"37","x2":"57","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"5","y1":"57","x2":"59","y2":"57"},"children":[]}]};exports.software_paragraph_center=software_paragraph_center;var software_paragraph_justify_all={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"7","x2":"0","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"17","x2":"0","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"0","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"47","x2":"0","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"57","x2":"0","y2":"57"},"children":[]}]};exports.software_paragraph_justify_all=software_paragraph_justify_all;var software_paragraph_justify_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"7","x2":"0","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"17","x2":"0","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"0","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"47","x2":"0","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"57","x2":"10","y2":"57"},"children":[]}]};exports.software_paragraph_justify_center=software_paragraph_justify_center;var software_paragraph_justify_left={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"7","x2":"64","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"17","x2":"64","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"27","x2":"64","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"37","x2":"64","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"57","x2":"44","y2":"57"},"children":[]}]};exports.software_paragraph_justify_left=software_paragraph_justify_left;var software_paragraph_justify_right={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"7","x2":"0","y2":"7"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"17","x2":"0","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"0","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"47","x2":"0","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"57","x2":"20","y2":"57"},"children":[]}]};exports.software_paragraph_justify_right=software_paragraph_justify_right;var software_paragraph_space_after={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"64","y2":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"16","x2":"56","y2":"16"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"26","x2":"64","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"36","x2":"58","y2":"36"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,48 59,46 57,46 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,48 59,46 57,46 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"55","y1":"46","x2":"26","y2":"46"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"55","y1":"46","x2":"26","y2":"46"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,46 23,46 23,48 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,46 23,46 23,48 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"23","y1":"50","x2":"23","y2":"53"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"23","y1":"50","x2":"23","y2":"53"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,54 23,56 25,56 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,54 23,56 25,56 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"56","x2":"56","y2":"56"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"56","x2":"56","y2":"56"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,56 59,56 59,54 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,56 59,56 59,54 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"59","y1":"53","x2":"59","y2":"49"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"59","y1":"53","x2":"59","y2":"49"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,58 17,51 \r\n\t\t10,44 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,58 17,51 \r\n\t\t10,44 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"51","x2":"0","y2":"51"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"51","x2":"0","y2":"51"},"children":[]}]}]}]}]}]};exports.software_paragraph_space_after=software_paragraph_space_after;var software_paragraph_space_before={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"29","x2":"64","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"39","x2":"56","y2":"39"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"49","x2":"64","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"59","x2":"58","y2":"59"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,11 59,9 57,9 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,11 59,9 57,9 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"55","y1":"9","x2":"26","y2":"9"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"55","y1":"9","x2":"26","y2":"9"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,9 23,9 23,11 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,9 23,9 23,11 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"23","y1":"13","x2":"23","y2":"16"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"23","y1":"13","x2":"23","y2":"16"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,17 23,19 25,19 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,17 23,19 25,19 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"19","x2":"56","y2":"19"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"19","x2":"56","y2":"19"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,19 59,19 59,17 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"57,19 59,19 59,17 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"59","y1":"16","x2":"59","y2":"12"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3,2","x1":"59","y1":"16","x2":"59","y2":"12"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,21 17,14 \r\n\t\t10,7 \t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"10,21 17,14 \r\n\t\t10,7 \t"},"children":[]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"14","x2":"0","y2":"14"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"14","x2":"0","y2":"14"},"children":[]}]}]}]}]}]};exports.software_paragraph_space_before=software_paragraph_space_before;var software_pathfinder_exclude={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,23 41,41 23,41 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 1,41 1,1 41,1 41,23 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,23 63,23 63,63 23,63 23,41 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 23,23 41,23 "},"children":[]}]};exports.software_pathfinder_exclude=software_pathfinder_exclude;var software_pathfinder_intersect={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,23 41,41 23,41 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","points":"23,41 1,41 1,1 \r\n\t41,1 41,23 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","points":"41,23 63,23 63,63 \r\n\t23,63 23,41 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 23,23 41,23 "},"children":[]}]};exports.software_pathfinder_intersect=software_pathfinder_intersect;var software_pathfinder_subtract={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 1,41 1,1 41,1 41,23 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"23","x2":"43","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"23","x2":"43","y2":"23"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"45","y1":"23","x2":"60","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"45","y1":"23","x2":"60","y2":"23"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61,23 63,23 63,25 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61,23 63,23 63,25 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"27","x2":"63","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"27","x2":"63","y2":"60"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,61 63,63 61,63 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,61 63,63 61,63 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"59","y1":"63","x2":"26","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"59","y1":"63","x2":"26","y2":"63"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,63 23,63 23,61 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"25,63 23,63 23,61 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"23","y1":"59","x2":"23","y2":"44"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"23","y1":"59","x2":"23","y2":"44"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"43","x2":"23","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"43","x2":"23","y2":"41"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 23,23 41,23 "},"children":[]}]};exports.software_pathfinder_subtract=software_pathfinder_subtract;var software_pathfinder_unite={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"23","x2":"41","y2":"25"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"23","x2":"41","y2":"25"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"41","y1":"27","x2":"41","y2":"38"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"41","y1":"27","x2":"41","y2":"38"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,39 41,41 39,41 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,39 41,41 39,41 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"37","y1":"41","x2":"26","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"37","y1":"41","x2":"26","y2":"41"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"41","x2":"23","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"41","x2":"23","y2":"41"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,41 1,41 1,1 41,1 41,23 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,23 63,23 63,63 23,63 23,41 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"41","x2":"23","y2":"39"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"41","x2":"23","y2":"39"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"23","y1":"37","x2":"23","y2":"26"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"23","y1":"37","x2":"23","y2":"26"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,25 23,23 25,23 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"23,25 23,23 25,23 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"23","x2":"38","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"23","x2":"38","y2":"23"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"23","x2":"41","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"23","x2":"41","y2":"23"},"children":[]}]}]}]}]}]};exports.software_pathfinder_unite=software_pathfinder_unite;var software_pen={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"23","y":"57","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"6"},"children":[]},{"name":"rect","attribs":{"x":"19","y":"47","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"26","height":"10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"28.875","r":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"1","x2":"32","y2":"25"},"children":[]}]};exports.software_pen=software_pen;var software_pen_add={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"23","y":"57","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"6"},"children":[]},{"name":"rect","attribs":{"x":"19","y":"47","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"26","height":"10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"23","x2":"32","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"30","x2":"25","y2":"30"},"children":[]}]};exports.software_pen_add=software_pen_add;var software_pen_remove={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"23","y":"57","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"18","height":"6"},"children":[]},{"name":"rect","attribs":{"x":"19","y":"47","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"26","height":"10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"30","x2":"25","y2":"30"},"children":[]}]};exports.software_pen_remove=software_pen_remove;var software_pencil={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"54","x2":"10","y2":"44"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"54","x2":"10","y2":"44"},"children":[]}]}]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"10,44 1,62 2,63 20,54 63,11 53,1 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"20","x2":"44","y2":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"58","y1":"16","x2":"48","y2":"6"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,54 9,55 10,59 "},"children":[]}]};exports.software_pencil=software_pencil;var software_polygonallasso={"viewBox":"0 0 64 64","children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"21","cy":"53","rx":"6","ry":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M25,56c0,0,2,1,2,4s-2,3-2,3"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,49 5,12 40,18 59,1 59,41 26,51 "},"children":[]}]};exports.software_polygonallasso=software_polygonallasso;var software_reflect_horizontal={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,17 1,57 21,37 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61.586,55.586 63,57 63,55 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61.586,55.586 63,57 63,55 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"53","x2":"63","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"53","x2":"63","y2":"20"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,19 63,17 61.586,18.414 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,19 63,17 61.586,18.414 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"60.265","y1":"19.735","x2":"45.075","y2":"34.925"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"60.265","y1":"19.735","x2":"45.075","y2":"34.925"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44.414,35.586 43,37 44.414,38.414 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44.414,35.586 43,37 44.414,38.414 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"45.735","y1":"39.735","x2":"60.925","y2":"54.925"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"45.735","y1":"39.735","x2":"60.925","y2":"54.925"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"61","x2":"32","y2":"59"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"61","x2":"32","y2":"59"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"57","x2":"32","y2":"16"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"32","y1":"57","x2":"32","y2":"16"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"15","x2":"32","y2":"13"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"15","x2":"32","y2":"13"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"46,13 57,13 57,2 \r\n\t"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M57,13C51.378,5.132,42.408,1,32,1\r\n\tC21.591,1,12.622,5.13,7,13"},"children":[]}]};exports.software_reflect_horizontal=software_reflect_horizontal;var software_reflect_vertical={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"46,1 6,1 26,21 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"7.414,61.586 6,63 8,63 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"7.414,61.586 6,63 8,63 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"10","y1":"63","x2":"43","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"10","y1":"63","x2":"43","y2":"63"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,63 46,63 44.586,61.586 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,63 46,63 44.586,61.586 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"43.265","y1":"60.265","x2":"28.075","y2":"45.075"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"43.265","y1":"60.265","x2":"28.075","y2":"45.075"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27.414,44.414 26,43 24.586,44.414 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"27.414,44.414 26,43 24.586,44.414 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"23.265","y1":"45.735","x2":"8.075","y2":"60.925"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.736,1.868","x1":"23.265","y1":"45.735","x2":"8.075","y2":"60.925"},"children":[]}]}]}]}]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"32","x2":"4","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"2","y1":"32","x2":"4","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"6","y1":"32","x2":"47","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"6","y1":"32","x2":"47","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"32","x2":"50","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"32","x2":"50","y2":"32"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"51,46 51,57 \r\n\t62,57 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M51,57c7.868-5.622,12-14.592,12-25\r\n\tc0-10.409-4.13-19.378-12-25"},"children":[]}]};exports.software_reflect_vertical=software_reflect_vertical;var software_remove_vectorpoint={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,22 44,20 42,20 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"44,22 44,20 42,20 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"40","y1":"20","x2":"23","y2":"20"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"40","y1":"20","x2":"23","y2":"20"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,20 20,20 20,22 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,20 20,20 20,22 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"20","y1":"24","x2":"20","y2":"41"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"20","y1":"24","x2":"20","y2":"41"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,42 20,44 22,44 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"20,42 20,44 22,44 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"24","y1":"44","x2":"41","y2":"44"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"24","y1":"44","x2":"41","y2":"44"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,44 44,44 44,42 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,44 44,44 44,42 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"44","y1":"40","x2":"44","y2":"23"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"44","y1":"40","x2":"44","y2":"23"},"children":[]}]}]}]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"20","y2":"44"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"20","x2":"53","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"32","x2":"25","y2":"32"},"children":[]}]};exports.software_remove_vectorpoint=software_remove_vectorpoint;var software_scale_expand={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","points":"1,28 1,1 63,1 \r\n\t63,63 36,63 "},"children":[]},{"name":"rect","attribs":{"x":"1","y":"33","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"30","height":"30"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"57,18 57,7 46,7 \r\n\t"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"57","y1":"7","x2":"41","y2":"23"},"children":[]}]};exports.software_scale_expand=software_scale_expand;var software_scale_reduce={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,30 1,1 63,1 63,63 34,63 "},"children":[]},{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31,35 31,33 29,33 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"31,35 31,33 29,33 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"33","x2":"4","y2":"33"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"27","y1":"33","x2":"4","y2":"33"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,33 1,33 1,35 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,33 1,33 1,35 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"1","y1":"37","x2":"1","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"1","y1":"37","x2":"1","y2":"60"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,61 1,63 3,63 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,61 1,63 3,63 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"5","y1":"63","x2":"28","y2":"63"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"5","y1":"63","x2":"28","y2":"63"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,63 31,63 31,61 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,63 31,63 31,61 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"31","y1":"59","x2":"31","y2":"36"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"31","y1":"59","x2":"31","y2":"36"},"children":[]}]}]}]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"41,12 41,23 \r\n\t52,23 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"23","x2":"57","y2":"7"},"children":[]}]};exports.software_scale_reduce=software_scale_reduce;var software_selection_oval={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0012,2.0006","cx":"32","cy":"32","rx":"31","ry":"20"},"children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.0012,2.0006","cx":"32","cy":"32","rx":"31","ry":"20"},"children":[]}]}]}]};exports.software_selection_oval=software_selection_oval;var software_selection_polygon={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"19,59 16.675,59 15.851,57.261 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"19,59 16.675,59 15.851,57.261 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"14.661","y1":"55.451","x2":"2.851","y2":"34.644"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"14.661","y1":"55.451","x2":"2.851","y2":"34.644"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"2.338,33.739 1.351,32 2.338,30.261 \t\t\r\n\t\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"2.338,33.739 1.351,32 2.338,30.261 \t\t\r\n\t\t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"3.365","y1":"28.451","x2":"15.175","y2":"7.644"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"3.365","y1":"28.451","x2":"15.175","y2":"7.644"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"15.851,6.739 16.675,5 19,5 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"15.851,6.739 16.675,5 19,5 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"21","y1":"5","x2":"44","y2":"5"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"21","y1":"5","x2":"44","y2":"5"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"45,5 47.325,5 48.149,6.739 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"45,5 47.325,5 48.149,6.739 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"49.339","y1":"8.549","x2":"61.149","y2":"29.356"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"49.339","y1":"8.549","x2":"61.149","y2":"29.356"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61.662,30.261 62.649,32 61.662,33.739 \r\n\t\t\t\t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61.662,30.261 62.649,32 61.662,33.739 \r\n\t\t\t\t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"60.635","y1":"35.549","x2":"48.825","y2":"56.356"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4.1609,2.0805","x1":"60.635","y1":"35.549","x2":"48.825","y2":"56.356"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"48.149,57.261 47.325,59 45,59 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"48.149,57.261 47.325,59 45,59 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"43","y1":"59","x2":"20","y2":"59"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"43","y1":"59","x2":"20","y2":"59"},"children":[]}]}]}]}]}]};exports.software_selection_polygon=software_selection_polygon;var software_selection_rectangle={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"g","attribs":{},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,50 63,52 61,52 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,50 63,52 61,52 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"59","y1":"52","x2":"4","y2":"52"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"59","y1":"52","x2":"4","y2":"52"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,52 1,52 1,50 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"3,52 1,52 1,50 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"1","y1":"48","x2":"1","y2":"15"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"1","y1":"48","x2":"1","y2":"15"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,14 1,12 3,12 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,14 1,12 3,12 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"5","y1":"12","x2":"60","y2":"12"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"5","y1":"12","x2":"60","y2":"12"},"children":[]}]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61,12 63,12 63,14 \t\t"},"children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"61,12 63,12 63,14 \t\t"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"16","x2":"63","y2":"49"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"4,2","x1":"63","y1":"16","x2":"63","y2":"49"},"children":[]}]}]}]}]}]};exports.software_selection_rectangle=software_selection_rectangle;var software_selection_roundedrectangle={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.9436,1.9718","d":"M63,40\r\n\t\tc0,6.627-5.373,12-12,12H13C6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","stroke-dasharray":"3.9436,1.9718","d":"M63,40\r\n\t\tc0,6.627-5.373,12-12,12H13C6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"},"children":[]}]}]}]};exports.software_selection_roundedrectangle=software_selection_roundedrectangle;var software_shape_oval={"viewBox":"0 0 64 64","children":[{"name":"ellipse","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","rx":"31","ry":"20"},"children":[]}]};exports.software_shape_oval=software_shape_oval;var software_shape_polygon={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"16.675,59 1.351,32 16.675,5 47.325,5 \r\n\t62.649,32 47.325,59 "},"children":[]}]};exports.software_shape_polygon=software_shape_polygon;var software_shape_rectangle={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"62","height":"40"},"children":[]}]};exports.software_shape_rectangle=software_shape_rectangle;var software_shape_roundedrectangle={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M63,40c0,6.627-5.373,12-12,12H13\r\n\tC6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"},"children":[]}]};exports.software_shape_roundedrectangle=software_shape_roundedrectangle;var software_slice={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"1,59 37,23 44,30 \r\n\t36,45 "},"children":[]},{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,20 57,3 63,9 \r\n\t47,27 "},"children":[]}]};exports.software_slice=software_slice;var software_transform_bezier={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"41","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"27","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"4","cy":"18","r":"3"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"60","cy":"18","r":"3"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7,18h20C6,18,6,41,6,41"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M57,18H37c21,0,21,23,21,23"},"children":[]}]};exports.software_transform_bezier=software_transform_bezier;var software_vector_box={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"1","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"11","x2":"6","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"58","y1":"11","x2":"58","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"53","y1":"6","x2":"11","y2":"6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"53","y1":"58","x2":"11","y2":"58"},"children":[]}]};exports.software_vector_box=software_vector_box;var software_vector_composite={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"27","y":"27","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"27","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"27","x2":"53","y2":"11"},"children":[]}]};exports.software_vector_composite=software_vector_composite;var software_vector_line={"viewBox":"0 0 64 64","children":[{"name":"rect","attribs":{"x":"1","y":"53","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"rect","attribs":{"x":"53","y":"1","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"10","height":"10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"53","y2":"11"},"children":[]}]};exports.software_vector_line=software_vector_line;var software_vertical_align_bottom={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"63","x2":"0","y2":"63"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"5","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"17","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]}]};exports.software_vertical_align_bottom=software_vertical_align_bottom;var software_vertical_align_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"32","x2":"0","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"32","x2":"51","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"32","x2":"29","y2":"32"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"6","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"12","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]}]};exports.software_vertical_align_center=software_vertical_align_center;var software_vertical_align_top={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"1","x2":"64","y2":"1"},"children":[]},{"name":"rect","attribs":{"x":"13","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"52"},"children":[]},{"name":"rect","attribs":{"x":"35","y":"7","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"16","height":"40"},"children":[]}]};exports.software_vertical_align_top=software_vertical_align_top;var software_vertical_distribute_bottom={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"29","x2":"64","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"51","x2":"64","y2":"51"},"children":[]},{"name":"rect","attribs":{"x":"12","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"6","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]}]};exports.software_vertical_distribute_bottom=software_vertical_distribute_bottom;var software_vertical_distribute_center={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"21","x2":"12","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"21","x2":"64","y2":"21"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"43","x2":"6","y2":"43"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"58","y1":"43","x2":"64","y2":"43"},"children":[]},{"name":"rect","attribs":{"x":"12","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"6","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]}]};exports.software_vertical_distribute_center=software_vertical_distribute_center;var software_vertical_distribute_top={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"35","x2":"0","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"13","x2":"0","y2":"13"},"children":[]},{"name":"rect","attribs":{"x":"6","y":"35","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"52","height":"16"},"children":[]},{"name":"rect","attribs":{"x":"12","y":"13","fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","width":"40","height":"16"},"children":[]}]};exports.software_vertical_distribute_top=software_vertical_distribute_top;var weather_aquarius={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0,28 16,16 20,28 36,16 40,28 55,16 63,28 \r\n\t"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"0,48 16,36 20,48 36,36 40,48 55,36 63,48 \r\n\t"},"children":[]}]};exports.weather_aquarius=weather_aquarius;var weather_aries={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M6,25c0,0-5-5-5-11S3,1,13,1c13.25,0,19,22,19,63"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M58,25c0,0,5-5,5-11S61,1,51,1C37.75,1,32,23,32,64"},"children":[]}]};exports.weather_aries=weather_aries;var weather_cancer={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"11","cy":"27","r":"10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M5,19c0,0,7-6,28-6c15,0,31,10,31,10"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"53","cy":"37","r":"10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M59,45c0,0-7,6-28,6C16,51,0,41,0,41"},"children":[]}]};exports.weather_cancer=weather_cancer;var weather_capricorn={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M9,5c0,0,0-4,6-4c5,0,4,10,4,10v29"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M19,11c0,0,0-10,7-10s7,10,7,10v29c0,0-1,14,15,14"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,40c-3,0-12,1-12,12c0,1,1,11-12,11"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,54c3.866,0,7-3.134,7-7s-3.134-7-7-7"},"children":[]}]};exports.weather_capricorn=weather_capricorn;var weather_cloud={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,50c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20c-10.102,0-19.2,6.423-21,16c0,0-1.165,0-2,0C5.292,29,1,34.292,1,40s4.292,10,10,10H55z"},"children":[]}]};exports.weather_cloud=weather_cloud;var weather_cloud_drop={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8H45"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,42c0,5.034,4.136,8,9,8c4.864,0,8-2.966,8-8\r\n\t\tc0-7-8-17-8-17S23,35,23,42z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,42c0,5.034,4.136,8,9,8c4.864,0,8-2.966,8-8\r\n\t\tc0-7-8-17-8-17S23,35,23,42z"},"children":[]}]}]}]};exports.weather_cloud_drop=weather_cloud_drop;var weather_cloud_lightning={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"37,23 23,42 29,42 \r\n\t27,55 41,36 35,36 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8h-9"},"children":[]}]};exports.weather_cloud_lightning=weather_cloud_lightning;var weather_cloud_snowflake={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8h-9"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"21,37 23,40 21,43 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"43,43 41,40 43,37 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"40","x2":"23","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"40","x2":"34","y2":"40"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"29,51 32,49 35,51 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"35,29 32,31 29,29 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"42","x2":"32","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"31","x2":"32","y2":"38"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"26.343,30.101 25.636,33.636 \r\n\t22.101,34.343 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"37.657,49.899 38.364,46.364 \r\n\t41.899,45.657 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"38","x2":"25.636","y2":"33.636"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38.364","y1":"46.364","x2":"34","y2":"42"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22.101,45.657 25.636,46.364 \r\n\t26.343,49.899 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"41.899,34.343 38.364,33.636 \r\n\t37.657,30.101 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"42","x2":"25.636","y2":"46.364"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38.364","y1":"33.636","x2":"34","y2":"38"},"children":[]}]};exports.weather_cloud_snowflake=weather_cloud_snowflake;var weather_downpour_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"12","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"22","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"32","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"42","y2":"62"},"children":[]}]};exports.weather_downpour_fullmoon=weather_downpour_fullmoon;var weather_downpour_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"12","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"22","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"32","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"42","y2":"62"},"children":[]}]};exports.weather_downpour_halfmoon=weather_downpour_halfmoon;var weather_downpour_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"12","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"22","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"32","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"42","y2":"62"},"children":[]}]};exports.weather_downpour_sun=weather_downpour_sun;var weather_drop={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M11,41.265C11.052,53.27,20.401,63,32,63\r\n\t\ts21-9.73,21-21.735C53,25.729,32.035,1,32.035,1S10.931,25.729,11,41.265z"},"children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M11,41.265C11.052,53.27,20.401,63,32,63\r\n\t\ts21-9.73,21-21.735C53,25.729,32.035,1,32.035,1S10.931,25.729,11,41.265z"},"children":[]}]}]}]};exports.weather_drop=weather_drop;var weather_fog={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"40","x2":"53","y2":"40"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"48","x2":"53","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"13","y1":"56","x2":"53","y2":"56"},"children":[]}]};exports.weather_fog=weather_fog;var weather_fog_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"45","x2":"54","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"51","x2":"54","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"57","x2":"54","y2":"57"},"children":[]}]};exports.weather_fog_fullmoon=weather_fog_fullmoon;var weather_fog_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"45","x2":"54","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"51","x2":"54","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"57","x2":"54","y2":"57"},"children":[]}]};exports.weather_fog_halfmoon=weather_fog_halfmoon;var weather_fog_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"45","x2":"54","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"51","x2":"54","y2":"51"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"57","x2":"54","y2":"57"},"children":[]}]};exports.weather_fog_sun=weather_fog_sun;var weather_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]}]};exports.weather_fullmoon=weather_fullmoon;var weather_gemini={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M0,8c0,0,16,4,32,4s32-4,32-4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M64,56c0,0-16-4-32-4S0,56,0,56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"12","x2":"21","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"43","y1":"12","x2":"43","y2":"52"},"children":[]}]};exports.weather_gemini=weather_gemini;var weather_hail={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"45","x2":"19","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"45","x2":"9","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"45","x2":"29","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"45","x2":"39","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"45","x2":"49","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"59","x2":"16","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"59","x2":"6","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"59","x2":"26","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"59","x2":"36","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"59","x2":"46","y2":"61"},"children":[]}]};exports.weather_hail=weather_hail;var weather_hail_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"16","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"26","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"36","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"46","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]}]};exports.weather_hail_fullmoon=weather_hail_fullmoon;var weather_hail_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"16","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"26","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"36","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"46","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]}]};exports.weather_hail_halfmoon=weather_hail_halfmoon;var weather_hail_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"16","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"26","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"36","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"46","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]}]};exports.weather_hail_sun=weather_hail_sun;var weather_last_quarter={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"59","x2":"47","y2":"59"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"53","x2":"55","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"59","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"41","x2":"62","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"63","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"1","x2":"32","y2":"63"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"29","x2":"63","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"23","x2":"62","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"59","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"11","x2":"55","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"5","x2":"47","y2":"5"},"children":[]}]};exports.weather_last_quarter=weather_last_quarter;var weather_leo={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M22.649,33.597\r\n\tc-8.337-4.888-11.134-15.608-6.247-23.946C21.29,1.312,32.012-1.485,40.35,3.403c8.337,4.888,11.134,15.608,6.247,23.946\r\n\tC46.597,27.35,36,46,36,54"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"19","cy":"42","r":"9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M53.064,58c-1.473,2.963-4.531,5-8.064,5\r\n\tc-4.971,0-9-4.029-9-9"},"children":[]}]};exports.weather_leo=weather_leo;var weather_libra={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41.667,38.002\r\n\tc3.913-2.939,6.444-7.619,6.444-12.891C48.111,16.213,40.897,9,32,9s-16.111,7.213-16.111,16.111c0,5.27,2.53,9.948,6.442,12.889"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"38","x2":"23","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"38","x2":"64","y2":"38"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"55","x2":"64","y2":"55"},"children":[]}]};exports.weather_libra=weather_libra;var weather_lightning={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"40,1 17,37 31,37 \r\n\t24,63 50,27 36,27 "},"children":[]}]};exports.weather_lightning=weather_lightning;var weather_mistyrain={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"17","y1":"59","x2":"16","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"59","x2":"6","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"59","x2":"26","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"59","x2":"36","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"59","x2":"46","y2":"61"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"52","x2":"23","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"52","x2":"13","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"52","x2":"33","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"52","x2":"43","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"52","x2":"53","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"44","x2":"18","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"44","x2":"8","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"44","x2":"28","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"44","x2":"38","y2":"46"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"44","x2":"48","y2":"46"},"children":[]}]};exports.weather_mistyrain=weather_mistyrain;var weather_mistyrain_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"48","x2":"18","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"48","x2":"28","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"48","x2":"38","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"48","x2":"48","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"54","x2":"10","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"54","x2":"20","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"54","x2":"30","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"54","x2":"40","y2":"56"},"children":[]}]};exports.weather_mistyrain_fullmoon=weather_mistyrain_fullmoon;var weather_mistyrain_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"48","x2":"18","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"48","x2":"28","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"48","x2":"38","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"48","x2":"48","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"54","x2":"10","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"54","x2":"20","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"54","x2":"30","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"54","x2":"40","y2":"56"},"children":[]}]};exports.weather_mistyrain_halfmoon=weather_mistyrain_halfmoon;var weather_mistyrain_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"60","x2":"14","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"25","y1":"60","x2":"24","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"35","y1":"60","x2":"34","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"60","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"48","x2":"18","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"48","x2":"28","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"39","y1":"48","x2":"38","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"48","x2":"48","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"54","x2":"10","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"21","y1":"54","x2":"20","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"31","y1":"54","x2":"30","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"54","x2":"40","y2":"56"},"children":[]}]};exports.weather_mistyrain_sun=weather_mistyrain_sun;var weather_moon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M6,52c14.359,0,26-11.641,26-26\r\n\tc0-9.994-6.729-18.648-15-23c3.396-1.277,8.158-2,12-2c17.121,0,31,13.879,31,31S46.121,63,29,63c-9.505,0-18.313-4.265-24-11\r\n\tC5.23,52.006,5.768,52,6,52z"},"children":[]}]};exports.weather_moon=weather_moon;var weather_moondown_full={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,53 32,60 \r\n\t39,53 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"},"children":[]}]};exports.weather_moondown_full=weather_moondown_full;var weather_moondown_half={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,53 32,60 \r\n\t39,53 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48.158,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19c-0.059,0-0.115,0.008-0.175,0.009C32.574,19.688,33,21.543,33,23.5C33,30.956,26.956,37,19.5,37\r\n\tc-2.323,0-4.51-0.588-6.418-1.621C13.037,35.914,13,36.453,13,37c0,3.668,1.039,7.094,2.841,9.998"},"children":[]}]};exports.weather_moondown_half=weather_moondown_half;var weather_moonset_full={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,60 32,53 \r\n\t25,60 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"},"children":[]}]};exports.weather_moonset_full=weather_moonset_full;var weather_moonset_half={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#010101","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#010101","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,53 32,60 \r\n\t39,53 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#010101","stroke-width":"2","stroke-miterlimit":"10","d":"M48.158,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19c-0.059,0-0.115,0.008-0.175,0.009C32.574,19.688,33,21.543,33,23.5C33,30.956,26.956,37,19.5,37\r\n\tc-2.323,0-4.51-0.588-6.418-1.621C13.037,35.914,13,36.453,13,37c0,3.668,1.039,7.094,2.841,9.998"},"children":[]}]};exports.weather_moonset_half=weather_moonset_half;var weather_move2={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"5","x2":"17","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"11","x2":"9","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"17","x2":"5","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"23","x2":"2","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"29","x2":"1","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"63","x2":"32","y2":"1"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"35","x2":"1","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"41","x2":"2","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"47","x2":"5","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"53","x2":"9","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"59","x2":"17","y2":"59"},"children":[]}]};exports.weather_move2=weather_move2;var weather_newmoon={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"5","x2":"17","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"11","x2":"9","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"59","y1":"17","x2":"5","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"23","x2":"2","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"29","x2":"1","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"35","x2":"1","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"62","y1":"41","x2":"2","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"59","y1":"47","x2":"5","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"55","y1":"53","x2":"9","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"59","x2":"17","y2":"59"},"children":[]}]};exports.weather_newmoon=weather_newmoon;var weather_pisces={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M54,0c0,0-10,16-10,32s10,32,10,32"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M10,64c0,0,10-16,10-32S10,0,10,0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"7","y1":"32","x2":"57","y2":"32"},"children":[]}]};exports.weather_pisces=weather_pisces;var weather_rain={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"},"children":[]},{"name":"g","attribs":{},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"46","x2":"22","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"46","x2":"22","y2":"60"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"46","x2":"12","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"12","y1":"46","x2":"12","y2":"60"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"46","x2":"32","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"46","x2":"32","y2":"60"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"46","x2":"42","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"46","x2":"42","y2":"60"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"46","x2":"52","y2":"60"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"52","y1":"46","x2":"52","y2":"60"},"children":[]}]}]}]};exports.weather_rain=weather_rain;var weather_rain_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"20","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"30","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"40","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"50","y2":"62"},"children":[]}]};exports.weather_rain_fullmoon=weather_rain_fullmoon;var weather_rain_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"20","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"30","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"40","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"50","y2":"62"},"children":[]}]};exports.weather_rain_halfmoon=weather_rain_halfmoon;var weather_rain_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"20","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"48","x2":"30","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"48","x2":"40","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"48","x2":"50","y2":"62"},"children":[]}]};exports.weather_rain_sun=weather_rain_sun;var weather_sagittarius={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"63","y1":"1","x2":"0","y2":"64"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"36,1 63,1 63,28 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"1","y1":"28","x2":"36","y2":"63"},"children":[]}]};exports.weather_sagittarius=weather_sagittarius;var weather_scorpio={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M30,52V12c0,0,0-11,8-11s8,11,8,11s0,33,0,40\r\n\tc0,0,0,6,6,6h5"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M14,52V12c0,0,0.083-11,8-11s8,11,8,11"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M14,12c0,0,0-10-8-10"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"52,53 57,58 \r\n\t52,63 "},"children":[]}]};exports.weather_scorpio=weather_scorpio;var weather_snow={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"43","x2":"22","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"52","x2":"22","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"45","x2":"24","y2":"48"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"52","x2":"17","y2":"55"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"55","x2":"24","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"48","x2":"17","y2":"45"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"29","y1":"50","x2":"24","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"50","x2":"15","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"48","x2":"42","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"57","x2":"42","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"50","x2":"44","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"57","x2":"37","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"60","x2":"44","y2":"57"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"53","x2":"37","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"49","y1":"55","x2":"44","y2":"55"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"55","x2":"35","y2":"55"},"children":[]}]};exports.weather_snow=weather_snow;var weather_snow_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"56","x2":"24","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"50","x2":"26","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"56","x2":"20","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"58","x2":"26","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"52","x2":"20","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"54","x2":"26","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"54","x2":"18","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"50","x2":"44","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"58","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"52","x2":"46","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"58","x2":"40","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"60","x2":"46","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"54","x2":"40","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"56","x2":"46","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"56","x2":"38","y2":"56"},"children":[]}]};exports.weather_snow_fullmoon=weather_snow_fullmoon;var weather_snow_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"56","x2":"24","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"50","x2":"26","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"56","x2":"20","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"58","x2":"26","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"52","x2":"20","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"54","x2":"26","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"54","x2":"18","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"50","x2":"44","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"58","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"52","x2":"46","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"58","x2":"40","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"60","x2":"46","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"54","x2":"40","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"56","x2":"46","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"56","x2":"38","y2":"56"},"children":[]}]};exports.weather_snow_halfmoon=weather_snow_halfmoon;var weather_snow_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"48","x2":"24","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"24","y1":"56","x2":"24","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"50","x2":"26","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"56","x2":"20","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"28","y1":"58","x2":"26","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"52","x2":"20","y2":"50"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"54","x2":"26","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"54","x2":"18","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"50","x2":"44","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"58","x2":"44","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"52","x2":"46","y2":"54"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"58","x2":"40","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"60","x2":"46","y2":"58"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"54","x2":"40","y2":"52"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"56","x2":"46","y2":"56"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"56","x2":"38","y2":"56"},"children":[]}]};exports.weather_snow_sun=weather_snow_sun;var weather_snowflake={"viewBox":"0 0 64 64","children":[{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"1,24 9,32 1,40 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"63,40 55,32 63,24 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"24,63 32,55 40,63 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"40,1 32,9 24,1 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"5,49 15,49 15,59 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"59,15 49,15 49,5 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"26","x2":"49","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"49","x2":"26","y2":"38"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"15,5 15,15 5,15 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"49,59 49,49 59,49 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"38","y1":"38","x2":"49","y2":"49"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"15","y1":"15","x2":"26","y2":"26"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"40","y1":"32","x2":"55","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"9","y1":"32","x2":"24","y2":"32"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"40","x2":"32","y2":"55"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"9","x2":"32","y2":"24"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"8"},"children":[]}]};exports.weather_snowflake=weather_snowflake;var weather_star={"viewBox":"0 0 64 64","children":[{"name":"polygon","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,47 12,62 20,38 2,24 24,24 32,1 40,24 \r\n\t62,24 44,38 52,62 "},"children":[]}]};exports.weather_star=weather_star;var weather_storm_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 34,55 30,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,48 39,55 44,55 40,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,48 19,55 24,55 20,62 "},"children":[]}]};exports.weather_storm_fullmoon=weather_storm_fullmoon;var weather_storm_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 34,55 30,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,48 39,55 44,55 40,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,48 19,55 24,55 20,62 "},"children":[]}]};exports.weather_storm_halfmoon=weather_storm_halfmoon;var weather_storm_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 34,55 30,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"42,48 39,55 44,55 40,62 "},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"22,48 19,55 24,55 20,62 "},"children":[]}]};exports.weather_storm_sun=weather_storm_sun;var weather_sun={"viewBox":"0 0 64 64","children":[{"name":"g","attribs":{},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"16"},"children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"16"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"10","x2":"32","y2":"0"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"10","x2":"32","y2":"0"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"54"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"64","x2":"32","y2":"54"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"32","x2":"64","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"54","y1":"32","x2":"64","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"10","y2":"32"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"32","x2":"10","y2":"32"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"16","x2":"53","y2":"11"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"16","x2":"53","y2":"11"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"16","y2":"48"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"53","x2":"16","y2":"48"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"48","x2":"53","y2":"53"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"48","y1":"48","x2":"53","y2":"53"},"children":[]}]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"11","x2":"16","y2":"16"},"children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"11","y1":"11","x2":"16","y2":"16"},"children":[]}]}]}]};exports.weather_sun=weather_sun;var weather_sundown={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"37","x2":"0","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"54","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"15","x2":"32","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"23","x2":"6","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"23","x2":"58","y2":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"25,53 32,60 \r\n\t39,53 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"},"children":[]}]};exports.weather_sundown=weather_sundown;var weather_sunset={"viewBox":"0 0 64 64","children":[{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"0","y1":"47","x2":"64","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"37","x2":"0","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"64","y1":"37","x2":"54","y2":"37"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"32","y1":"15","x2":"32","y2":"4"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"14","y1":"23","x2":"6","y2":"15"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"50","y1":"23","x2":"58","y2":"15"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-linejoin":"bevel","stroke-miterlimit":"10","points":"39,60 32,53 \r\n\t25,60 "},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"},"children":[]}]};exports.weather_sunset=weather_sunset;var weather_taurus={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"43","r":"18"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M0,3c14,0,15,12,15,12s0,10,17,10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M64,3C50,3,49,15,49,15s0,10-17,10"},"children":[]}]};exports.weather_taurus=weather_taurus;var weather_tempest={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,46 29,53 33,53 29,60 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"46","x2":"39","y2":"60"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"46","x2":"14","y2":"60"},"children":[]}]};exports.weather_tempest=weather_tempest;var weather_tempest_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 33,55 29,62 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"48","x2":"15","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"48","x2":"39","y2":"62"},"children":[]}]};exports.weather_tempest_fullmoon=weather_tempest_fullmoon;var weather_tempest_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 33,55 29,62 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"48","x2":"15","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"48","x2":"39","y2":"62"},"children":[]}]};exports.weather_tempest_halfmoon=weather_tempest_halfmoon;var weather_tempest_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"polyline","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","points":"32,48 29,55 33,55 29,62 "},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"48","x2":"15","y2":"62"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"47","y1":"48","x2":"39","y2":"62"},"children":[]}]};exports.weather_tempest_sun=weather_tempest_sun;var weather_variable_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,37.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,31.979,1,29.577,1,27c0-7.18,5.82-13,13-13c4.604,0,8.646,2.392,10.957,6.001"},"children":[]}]};exports.weather_variable_fullmoon=weather_variable_fullmoon;var weather_variable_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,20.001C22.646,16.392,18.604,14,14,14\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]}]};exports.weather_variable_halfmoon=weather_variable_halfmoon;var weather_variable_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,16.752C27.793,15.028,25.017,14,22,14\r\n\tc-7.18,0-13,5.82-13,13c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"27","x2":"0","y2":"27"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"11","x2":"22","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"15","x2":"4","y2":"9"},"children":[]}]};exports.weather_variable_sun=weather_variable_sun;var weather_virgo={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M54,64c0,0-6-5-6-12s0-40,0-40s0-11-8-11s-8,11-8,11\r\n\tv40"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,52V12c0,0,0.083-11,8-11s8,11,8,11"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M16,12c0,0,0-10-8-10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M48,24c0,0,0-14,6-14s6,14,6,14s-1,34-27,34"},"children":[]}]};exports.weather_virgo=weather_virgo;var weather_waning_cresent={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32.002","cy":"31.999","r":"31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41.002,61.999c-13.242-3.528-22-15.646-22-30\r\n\tc0-14.355,8.756-26.473,22-30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"5","x2":"47","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"11","x2":"55","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"17","x2":"59","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"23","x2":"62","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"29","x2":"63","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"35","x2":"63","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"41","x2":"62","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"47","x2":"59","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"53","x2":"55","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"59","x2":"47","y2":"59"},"children":[]}]};exports.weather_waning_cresent=weather_waning_cresent;var weather_waning_gibbous={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,2c13.242,3.528,22,15.646,22,30\r\n\tc0,14.355-8.756,26.473-22,30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"59","x2":"47","y2":"59"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"53","x2":"55","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"47","x2":"59","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"41","x2":"62","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"35","x2":"63","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"29","x2":"63","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"23","x2":"62","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"17","x2":"59","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"11","x2":"55","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"5","x2":"47","y2":"5"},"children":[]}]};exports.weather_waning_gibbous=weather_waning_gibbous;var weather_waxing_cresent={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23,2c13.243,3.528,22,15.646,22,30\r\n\tc0,14.355-8.756,26.473-22,30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"59","x2":"17","y2":"59"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"53","x2":"9","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"42","y1":"47","x2":"5","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"41","x2":"2","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"35","x2":"1","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"45","y1":"29","x2":"1","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"44","y1":"23","x2":"2","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"41","y1":"17","x2":"5","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"37","y1":"11","x2":"9","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"30","y1":"5","x2":"17","y2":"5"},"children":[]}]};exports.weather_waxing_cresent=weather_waxing_cresent;var weather_waxing_gibbous={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M41,62c-13.243-3.528-22-15.646-22-30\r\n\tc0-14.355,8.756-26.473,22-30"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"5","x2":"17","y2":"5"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"11","x2":"9","y2":"11"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"17","x2":"5","y2":"17"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"23","x2":"2","y2":"23"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"29","x2":"1","y2":"29"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"19","y1":"35","x2":"1","y2":"35"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"20","y1":"41","x2":"2","y2":"41"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"23","y1":"47","x2":"5","y2":"47"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"27","y1":"53","x2":"9","y2":"53"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"34","y1":"59","x2":"17","y2":"59"},"children":[]}]};exports.weather_waxing_gibbous=weather_waxing_gibbous;var weather_wind={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,42c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"},"children":[]}]};exports.weather_wind=weather_wind;var weather_wind_E={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M32,44c6.628,0,25-12,25-12S38.628,20,32,20\r\n\ts-12,5.373-12,12S25.372,44,32,44z"},"children":[]}]};exports.weather_wind_E=weather_wind_E;var weather_wind_N={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M44,32c0-6.628-12-25-12-25S20,25.372,20,32\r\n\ts5.373,12,12,12S44,38.628,44,32z"},"children":[]}]};exports.weather_wind_N=weather_wind_N;var weather_wind_NE={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40.485,40.484C45.172,35.798,49,15,49,15\r\n\ts-20.799,3.827-25.485,8.514c-4.687,4.688-4.686,12.285,0,16.971C28.2,45.171,35.799,45.172,40.485,40.484z"},"children":[]}]};exports.weather_wind_NE=weather_wind_NE;var weather_wind_NW={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40.484,23.514C35.798,18.828,15,15,15,15\r\n\ts3.827,20.799,8.514,25.484c4.688,4.688,12.285,4.686,16.971,0C45.171,35.799,45.172,28.201,40.484,23.514z"},"children":[]}]};exports.weather_wind_NW=weather_wind_NW;var weather_wind_S={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M20,32c0,6.628,12,25,12,25s12-18.372,12-25\r\n\ts-5.373-12-12-12S20,25.372,20,32z"},"children":[]}]};exports.weather_wind_S=weather_wind_S;var weather_wind_SE={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"31.999","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"31.999","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23.515,40.484\r\n\tc4.687,4.687,25.484,8.515,25.484,8.515S45.172,28.2,40.485,23.514c-4.688-4.687-12.285-4.686-16.971,0\r\n\tC18.828,28.199,18.827,35.798,23.515,40.484z"},"children":[]}]};exports.weather_wind_SE=weather_wind_SE;var weather_wind_SW={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"32","cy":"32","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M23.515,23.515C18.828,28.201,15,48.999,15,48.999\r\n\ts20.799-3.827,25.485-8.514c4.687-4.688,4.686-12.285,0-16.971C35.8,18.828,28.201,18.827,23.515,23.515z"},"children":[]}]};exports.weather_wind_SW=weather_wind_SW;var weather_wind_W={"viewBox":"0 0 64 64","children":[{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"31.999","cy":"31.999","r":"31"},"children":[]},{"name":"circle","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","cx":"31.999","cy":"31.999","r":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M31.999,19.999c-6.628,0-25,12-25,12\r\n\ts18.372,12,25,12s12-5.373,12-12S38.627,19.999,31.999,19.999z"},"children":[]}]};exports.weather_wind_W=weather_wind_W;var weather_wind_fullmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"},"children":[]}]};exports.weather_wind_fullmoon=weather_wind_fullmoon;var weather_wind_halfmoon={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"},"children":[]}]};exports.weather_wind_halfmoon=weather_wind_halfmoon;var weather_wind_sun={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"6","y1":"22","x2":"0","y2":"22"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"22","y1":"6","x2":"22","y2":"0"},"children":[]},{"name":"line","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","x1":"10","y1":"10","x2":"4","y2":"4"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"},"children":[]}]};exports.weather_wind_sun=weather_wind_sun;var weather_windgust={"viewBox":"0 0 64 64","children":[{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M44,40c0,3.866,3.134,7,7,7s7-3.134,7-7\r\n\ts-3.134-7-7-7H0"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M49,19c0-3.866,3.134-7,7-7s7,3.134,7,7\r\n\ts-3.134,7-7,7H0"},"children":[]},{"name":"path","attribs":{"fill":"none","stroke":"#000000","stroke-width":"2","stroke-miterlimit":"10","d":"M27,45c0,2.761,2.239,5,5,5s5-2.239,5-5\r\n\ts-2.239-5-5-5H0"},"children":[]}]};exports.weather_windgust=weather_windgust;
\ No newline at end of file
diff --git a/dist/linea/music_beginning_button.js b/dist/linea/music_beginning_button.js
new file mode 100644
index 000000000..25b4a48f2
--- /dev/null
+++ b/dist/linea/music_beginning_button.js
@@ -0,0 +1,105 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_beginning_button = void 0;
+var music_beginning_button = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "32,43 18,32 \r\n\t\t32,21 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "32,43 18,32 \r\n\t\t32,21 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "52,43 38,32 \r\n\t\t52,21 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "52,43 38,32 \r\n\t\t52,21 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "41",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "41",
+ "x2": "12",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_beginning_button = music_beginning_button;
\ No newline at end of file
diff --git a/dist/linea/music_bell.js b/dist/linea/music_bell.js
new file mode 100644
index 000000000..aeb7f6381
--- /dev/null
+++ b/dist/linea/music_bell.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_bell = void 0;
+var music_bell = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,55h25v-4l-7-7V25c0-9.941-8.059-18-18-18\r\n\ts-18,8.059-18,18v19l-7,7v4H32z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "41",
+ "x2": "50",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "35",
+ "x2": "50",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M39,55c0,4.418-3.582,8-8,8s-8-3.582-8-8"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "28,7 28,1 36,1 36,7 "
+ },
+ "children": []
+ }]
+};
+exports.music_bell = music_bell;
\ No newline at end of file
diff --git a/dist/linea/music_cd.js b/dist/linea/music_cd.js
new file mode 100644
index 000000000..8f70e082f
--- /dev/null
+++ b/dist/linea/music_cd.js
@@ -0,0 +1,167 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_cd = void 0;
+var music_cd = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "6"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "30",
+ "x2": "5",
+ "y2": "17"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "30",
+ "x2": "5",
+ "y2": "17"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "26",
+ "x2": "18",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "26",
+ "x2": "18",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "34",
+ "x2": "59",
+ "y2": "47"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "34",
+ "x2": "59",
+ "y2": "47"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "38",
+ "x2": "47",
+ "y2": "59"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "38",
+ "x2": "47",
+ "y2": "59"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_cd = music_cd;
\ No newline at end of file
diff --git a/dist/linea/music_diapason.js b/dist/linea/music_diapason.js
new file mode 100644
index 000000000..68a091f0c
--- /dev/null
+++ b/dist/linea/music_diapason.js
@@ -0,0 +1,72 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_diapason = void 0;
+var music_diapason = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "5",
+ "cy": "59",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M23,29c-3.124,3.124-3.124,8.876,0,12\r\n\tc3.124,3.124,8.876,2.124,12-1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "29",
+ "x2": "51",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "40",
+ "x2": "63",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "41",
+ "x2": "8",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.music_diapason = music_diapason;
\ No newline at end of file
diff --git a/dist/linea/music_eject_button.js b/dist/linea/music_eject_button.js
new file mode 100644
index 000000000..492bccb4f
--- /dev/null
+++ b/dist/linea/music_eject_button.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_eject_button = void 0;
+var music_eject_button = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "21,34 32,20 \r\n\t\t43,34 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "21,34 32,20 \r\n\t\t43,34 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "40",
+ "x2": "42",
+ "y2": "40"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "40",
+ "x2": "42",
+ "y2": "40"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_eject_button = music_eject_button;
\ No newline at end of file
diff --git a/dist/linea/music_end_button.js b/dist/linea/music_end_button.js
new file mode 100644
index 000000000..479944180
--- /dev/null
+++ b/dist/linea/music_end_button.js
@@ -0,0 +1,105 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_end_button = void 0;
+var music_end_button = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "32,21 46,32 \r\n\t\t32,43 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "32,21 46,32 \r\n\t\t32,43 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "12,21 26,32 \r\n\t\t12,43 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "12,21 26,32 \r\n\t\t12,43 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52",
+ "y1": "23",
+ "x2": "52",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52",
+ "y1": "23",
+ "x2": "52",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_end_button = music_end_button;
\ No newline at end of file
diff --git a/dist/linea/music_fastforward_button.js b/dist/linea/music_fastforward_button.js
new file mode 100644
index 000000000..d8de9eaf1
--- /dev/null
+++ b/dist/linea/music_fastforward_button.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_fastforward_button = void 0;
+var music_fastforward_button = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "36,21 50,32 \r\n\t\t36,43 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "36,21 50,32 \r\n\t\t36,43 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "16,21 30,32 \r\n\t\t16,43 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "16,21 30,32 \r\n\t\t16,43 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.84,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_fastforward_button = music_fastforward_button;
\ No newline at end of file
diff --git a/dist/linea/music_headphones.js b/dist/linea/music_headphones.js
new file mode 100644
index 000000000..df2505983
--- /dev/null
+++ b/dist/linea/music_headphones.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_headphones = void 0;
+var music_headphones = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M11,53C5.477,53,1,48.523,1,43s4.477-10,10-10h2v20\r\n\tH11z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53,33c5.523,0,10,4.477,10,10s-4.477,10-10,10h-2\r\n\tV33H53z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M13,36v-9c0,0,0-16,19-16s19,16,19,16v6"
+ },
+ "children": []
+ }]
+};
+exports.music_headphones = music_headphones;
\ No newline at end of file
diff --git a/dist/linea/music_ipod.js b/dist/linea/music_ipod.js
new file mode 100644
index 000000000..4f4ff84e0
--- /dev/null
+++ b/dist/linea/music_ipod.js
@@ -0,0 +1,145 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_ipod = void 0;
+var music_ipod = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "32",
+ "height": "62"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "36",
+ "x2": "48",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "36",
+ "x2": "48",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "5",
+ "x2": "48",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "5",
+ "x2": "48",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "31.5",
+ "cy": "49.5",
+ "r": "9.5"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "31.5",
+ "cy": "49.5",
+ "r": "9.5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "31.5",
+ "cy": "49.5",
+ "r": "2.5"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "cx": "31.5",
+ "cy": "49.5",
+ "r": "2.5"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_ipod = music_ipod;
\ No newline at end of file
diff --git a/dist/linea/music_loudspeaker.js b/dist/linea/music_loudspeaker.js
new file mode 100644
index 000000000..5702f9981
--- /dev/null
+++ b/dist/linea/music_loudspeaker.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_loudspeaker = void 0;
+var music_loudspeaker = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "40",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "42",
+ "r": "12"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "16",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "42",
+ "r": "2.5"
+ },
+ "children": []
+ }]
+};
+exports.music_loudspeaker = music_loudspeaker;
\ No newline at end of file
diff --git a/dist/linea/music_microphone.js b/dist/linea/music_microphone.js
new file mode 100644
index 000000000..6ae58f889
--- /dev/null
+++ b/dist/linea/music_microphone.js
@@ -0,0 +1,56 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_microphone = void 0;
+var music_microphone = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "45",
+ "cy": "15",
+ "r": "14"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,20 6,46 14,54 40,28 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "28",
+ "x2": "32",
+ "y2": "36"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "10,50 6,54 15,63 20,63 42,41 47,46 40,53 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.music_microphone = music_microphone;
\ No newline at end of file
diff --git a/dist/linea/music_microphone_old.js b/dist/linea/music_microphone_old.js
new file mode 100644
index 000000000..3e42a0137
--- /dev/null
+++ b/dist/linea/music_microphone_old.js
@@ -0,0 +1,109 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_microphone_old = void 0;
+var music_microphone_old = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "63",
+ "x2": "47",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "62",
+ "x2": "32",
+ "y2": "42"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48,26c0,8-8,16-16,16s-16-8-16-16"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M40,27c0,4.418-3.582,8-8,8s-8-3.582-8-8V9\r\n\tc0-4.418,3.582-8,8-8s8,3.582,8,8V27z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "13",
+ "x2": "24",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "23",
+ "x2": "24",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "13",
+ "x2": "35",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "23",
+ "x2": "35",
+ "y2": "23"
+ },
+ "children": []
+ }]
+};
+exports.music_microphone_old = music_microphone_old;
\ No newline at end of file
diff --git a/dist/linea/music_mixer.js b/dist/linea/music_mixer.js
new file mode 100644
index 000000000..3496ec5ee
--- /dev/null
+++ b/dist/linea/music_mixer.js
@@ -0,0 +1,102 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_mixer = void 0;
+var music_mixer = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "16",
+ "y1": "10",
+ "x2": "16",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "10",
+ "x2": "48",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "10",
+ "x2": "32",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "14",
+ "x2": "22",
+ "y2": "14"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "50",
+ "x2": "54",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "32",
+ "x2": "38",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.music_mixer = music_mixer;
\ No newline at end of file
diff --git a/dist/linea/music_mute.js b/dist/linea/music_mute.js
new file mode 100644
index 000000000..5e1b53f8f
--- /dev/null
+++ b/dist/linea/music_mute.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_mute = void 0;
+var music_mute = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "4,32 4,20 16,20 34,2 34,32 34,62 16,44 \r\n\t\t4,44 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "4,32 4,20 16,20 34,2 34,32 34,62 16,44 \r\n\t\t4,44 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "23",
+ "x2": "60",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "23",
+ "x2": "60",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "41",
+ "x2": "60",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "41",
+ "x2": "60",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_mute = music_mute;
\ No newline at end of file
diff --git a/dist/linea/music_note_multiple.js b/dist/linea/music_note_multiple.js
new file mode 100644
index 000000000..a33a2ec28
--- /dev/null
+++ b/dist/linea/music_note_multiple.js
@@ -0,0 +1,109 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_note_multiple = void 0;
+var music_note_multiple = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "18",
+ "cy": "55",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "18",
+ "cy": "55",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "46",
+ "cy": "49",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "46",
+ "cy": "49",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "54,49 54,1 26,7 26,55 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "54,49 54,1 26,7 26,55 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "23",
+ "x2": "54",
+ "y2": "17"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "26",
+ "y1": "23",
+ "x2": "54",
+ "y2": "17"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_note_multiple = music_note_multiple;
\ No newline at end of file
diff --git a/dist/linea/music_note_single.js b/dist/linea/music_note_single.js
new file mode 100644
index 000000000..265a0e6c0
--- /dev/null
+++ b/dist/linea/music_note_single.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_note_single = void 0;
+var music_note_single = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "22",
+ "cy": "55",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "22",
+ "cy": "55",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "30,55 30,7 50,1 50,15 30,21 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "30,55 30,7 50,1 50,15 30,21 \t"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_note_single = music_note_single;
\ No newline at end of file
diff --git a/dist/linea/music_pause_button.js b/dist/linea/music_pause_button.js
new file mode 100644
index 000000000..343144e1b
--- /dev/null
+++ b/dist/linea/music_pause_button.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_pause_button = void 0;
+var music_pause_button = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "23",
+ "x2": "25",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "23",
+ "x2": "25",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "23",
+ "x2": "38",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "23",
+ "x2": "38",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_pause_button = music_pause_button;
\ No newline at end of file
diff --git a/dist/linea/music_play_button.js b/dist/linea/music_play_button.js
new file mode 100644
index 000000000..8399e95cf
--- /dev/null
+++ b/dist/linea/music_play_button.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_play_button = void 0;
+var music_play_button = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "27,21 41,32 \r\n\t\t27,43 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "27,21 41,32 \r\n\t\t27,43 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_play_button = music_play_button;
\ No newline at end of file
diff --git a/dist/linea/music_playlist.js b/dist/linea/music_playlist.js
new file mode 100644
index 000000000..105a44798
--- /dev/null
+++ b/dist/linea/music_playlist.js
@@ -0,0 +1,98 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_playlist = void 0;
+var music_playlist = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "55",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "35",
+ "cy": "55",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "43,55 43,7 63,1 63,15 43,21 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "43,55 43,7 63,1 63,15 43,21 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "16",
+ "x2": "38",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "26",
+ "x2": "38",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "36",
+ "x2": "38",
+ "y2": "36"
+ },
+ "children": []
+ }]
+};
+exports.music_playlist = music_playlist;
\ No newline at end of file
diff --git a/dist/linea/music_radio_ghettoblaster.js b/dist/linea/music_radio_ghettoblaster.js
new file mode 100644
index 000000000..e0337be5a
--- /dev/null
+++ b/dist/linea/music_radio_ghettoblaster.js
@@ -0,0 +1,163 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_radio_ghettoblaster = void 0;
+var music_radio_ghettoblaster = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "21",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "35"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "17.5",
+ "cy": "38.5",
+ "r": "10.5"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "34",
+ "y": "35",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "23",
+ "height": "15"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "52",
+ "y": "27",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "5",
+ "height": "4"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "43",
+ "y": "27",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "5",
+ "height": "4"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "34",
+ "y": "27",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "5",
+ "height": "4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,21 5,8 59,8 59,21 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "5",
+ "y1": "12",
+ "x2": "59",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "48",
+ "x2": "14",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "48",
+ "x2": "21",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "35",
+ "x2": "27",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "42",
+ "x2": "27",
+ "y2": "42"
+ },
+ "children": []
+ }]
+};
+exports.music_radio_ghettoblaster = music_radio_ghettoblaster;
\ No newline at end of file
diff --git a/dist/linea/music_radio_portable.js b/dist/linea/music_radio_portable.js
new file mode 100644
index 000000000..dd68e8e9f
--- /dev/null
+++ b/dist/linea/music_radio_portable.js
@@ -0,0 +1,159 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_radio_portable = void 0;
+var music_radio_portable = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "22",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "38"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "20",
+ "cy": "41",
+ "r": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "36",
+ "x2": "32",
+ "y2": "36"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "8",
+ "y1": "46",
+ "x2": "32",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "29",
+ "x2": "25",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "29",
+ "x2": "15",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "43",
+ "y": "28",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "5",
+ "height": "4"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "52",
+ "y": "28",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "5",
+ "height": "4"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "52",
+ "cy": "49",
+ "r": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52",
+ "y1": "44",
+ "x2": "52",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "3,22 3,18 9,18 9,22 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "53,4 6,16 6,18 "
+ },
+ "children": []
+ }]
+};
+exports.music_radio_portable = music_radio_portable;
\ No newline at end of file
diff --git a/dist/linea/music_record.js b/dist/linea/music_record.js
new file mode 100644
index 000000000..c9f2d02e7
--- /dev/null
+++ b/dist/linea/music_record.js
@@ -0,0 +1,223 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_record = void 0;
+var music_record = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "8"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,48c-8.838,0-16-7.16-16-16"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,48c-8.838,0-16-7.16-16-16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32.002,48"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32.002,48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,16c8.838,0,16,7.162,16,16"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,16c8.838,0,16,7.162,16,16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,9"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32.003,55C19.299,55,9,44.707,9,32"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32.003,55C19.299,55,9,44.707,9,32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32.003,55"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32.003,55"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,32.002"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,32.002"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,9c12.704,0,23,10.295,23,23"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,9c12.704,0,23,10.295,23,23"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_record = music_record;
\ No newline at end of file
diff --git a/dist/linea/music_recordplayer.js b/dist/linea/music_recordplayer.js
new file mode 100644
index 000000000..962b8220f
--- /dev/null
+++ b/dist/linea/music_recordplayer.js
@@ -0,0 +1,111 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_recordplayer = void 0;
+var music_recordplayer = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "53",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "4",
+ "height": "8"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "27.5",
+ "cy": "27.5",
+ "r": "22.5"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "27.5",
+ "cy": "27.5",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "15",
+ "x2": "57",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "57,49 51,52 51,48 \r\n\t57,45 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "56",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "3"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "15",
+ "y": "56",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "6",
+ "height": "3"
+ },
+ "children": []
+ }]
+};
+exports.music_recordplayer = music_recordplayer;
\ No newline at end of file
diff --git a/dist/linea/music_repeat_button.js b/dist/linea/music_repeat_button.js
new file mode 100644
index 000000000..959da9287
--- /dev/null
+++ b/dist/linea/music_repeat_button.js
@@ -0,0 +1,53 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_repeat_button = void 0;
+var music_repeat_button = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "56,48 8,48 8,24 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "8,16 56,16 56,40 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "49,33 56,40 \r\n\t63,33 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "15,31 8,24 1,31 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.music_repeat_button = music_repeat_button;
\ No newline at end of file
diff --git a/dist/linea/music_rewind_button.js b/dist/linea/music_rewind_button.js
new file mode 100644
index 000000000..974661534
--- /dev/null
+++ b/dist/linea/music_rewind_button.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_rewind_button = void 0;
+var music_rewind_button = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "28,43 14,32 \r\n\t\t28,21 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "28,43 14,32 \r\n\t\t28,21 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "48,43 34,32 \r\n\t\t48,21 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "48,43 34,32 \r\n\t\t48,21 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081\r\n\t\tc12.107,12.105,12.107,31.732,0,43.838c-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838\r\n\t\tC22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_rewind_button = music_rewind_button;
\ No newline at end of file
diff --git a/dist/linea/music_shuffle_button.js b/dist/linea/music_shuffle_button.js
new file mode 100644
index 000000000..f92154f10
--- /dev/null
+++ b/dist/linea/music_shuffle_button.js
@@ -0,0 +1,74 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_shuffle_button = void 0;
+var music_shuffle_button = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "0,48 15,48 47,16 63,16 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "37,38 47,48 63,48 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "0,16 15,16 25,26 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M56,23"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "56,23 63,16 56,9 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "56,55 63,48 \r\n\t56,41 "
+ },
+ "children": []
+ }]
+};
+exports.music_shuffle_button = music_shuffle_button;
\ No newline at end of file
diff --git a/dist/linea/music_stop_button.js b/dist/linea/music_stop_button.js
new file mode 100644
index 000000000..1a2188b26
--- /dev/null
+++ b/dist/linea/music_stop_button.js
@@ -0,0 +1,34 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_stop_button = void 0;
+var music_stop_button = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "22",
+ "y": "22",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "20"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.92,10.081c12.107,12.105,12.107,31.732,0,43.838\r\n\tc-12.106,12.108-31.734,12.108-43.839,0c-12.107-12.105-12.107-31.732,0-43.838C22.186-2.027,41.813-2.027,53.92,10.081z"
+ },
+ "children": []
+ }]
+};
+exports.music_stop_button = music_stop_button;
\ No newline at end of file
diff --git a/dist/linea/music_tape.js b/dist/linea/music_tape.js
new file mode 100644
index 000000000..e4f9137c9
--- /dev/null
+++ b/dist/linea/music_tape.js
@@ -0,0 +1,84 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_tape = void 0;
+var music_tape = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "11",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "42"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "16",
+ "cy": "31",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "48",
+ "cy": "31",
+ "r": "6"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "57,53 54,43 32,43 10,43 7,53 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "55",
+ "height": "4"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "26",
+ "y": "28",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "12",
+ "height": "6"
+ },
+ "children": []
+ }]
+};
+exports.music_tape = music_tape;
\ No newline at end of file
diff --git a/dist/linea/music_volume_down.js b/dist/linea/music_volume_down.js
new file mode 100644
index 000000000..3939de18d
--- /dev/null
+++ b/dist/linea/music_volume_down.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_volume_down = void 0;
+var music_volume_down = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "8,32 8,20 20,20 38,2 38,32 38,62 20,44 \r\n\t\t8,44 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "8,32 8,20 20,20 38,2 38,32 38,62 20,44 \r\n\t\t8,44 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M46,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M46,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_volume_down = music_volume_down;
\ No newline at end of file
diff --git a/dist/linea/music_volume_up.js b/dist/linea/music_volume_up.js
new file mode 100644
index 000000000..85de36290
--- /dev/null
+++ b/dist/linea/music_volume_up.js
@@ -0,0 +1,75 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.music_volume_up = void 0;
+var music_volume_up = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "3,32 3,20 15,20 33,2 33,32 33,62 15,44 \r\n\t\t3,44 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "3,32 3,20 15,20 33,2 33,32 33,62 15,44 \r\n\t\t3,44 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,42c5.522,0,10-4.478,10-10s-4.478-10-10-10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,12c11.046,0,20,8.954,20,20s-8.954,20-20,20"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,12c11.046,0,20,8.954,20,20s-8.954,20-20,20"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.music_volume_up = music_volume_up;
\ No newline at end of file
diff --git a/dist/linea/software_add_vectorpoint.js b/dist/linea/software_add_vectorpoint.js
new file mode 100644
index 000000000..818c91c6b
--- /dev/null
+++ b/dist/linea/software_add_vectorpoint.js
@@ -0,0 +1,293 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_add_vectorpoint = void 0;
+var software_add_vectorpoint = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "53",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "53",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,22 44,20 42,20 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,22 44,20 42,20 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "40",
+ "y1": "20",
+ "x2": "23",
+ "y2": "20"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "40",
+ "y1": "20",
+ "x2": "23",
+ "y2": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,20 20,20 20,22 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,20 20,20 20,22 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "20",
+ "y1": "24",
+ "x2": "20",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "20",
+ "y1": "24",
+ "x2": "20",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "20,42 20,44 22,44 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "20,42 20,44 22,44 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "24",
+ "y1": "44",
+ "x2": "41",
+ "y2": "44"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "24",
+ "y1": "44",
+ "x2": "41",
+ "y2": "44"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,44 44,44 44,42 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,44 44,44 44,42 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "44",
+ "y1": "40",
+ "x2": "44",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "44",
+ "y1": "40",
+ "x2": "44",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "53",
+ "x2": "20",
+ "y2": "44"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "20",
+ "x2": "53",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "25",
+ "x2": "32",
+ "y2": "39"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "32",
+ "x2": "25",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.software_add_vectorpoint = software_add_vectorpoint;
\ No newline at end of file
diff --git a/dist/linea/software_box_oval.js b/dist/linea/software_box_oval.js
new file mode 100644
index 000000000..104db0155
--- /dev/null
+++ b/dist/linea/software_box_oval.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_box_oval = void 0;
+var software_box_oval = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "rx": "31",
+ "ry": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "32",
+ "x2": "63",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "12",
+ "x2": "32",
+ "y2": "52"
+ },
+ "children": []
+ }]
+};
+exports.software_box_oval = software_box_oval;
\ No newline at end of file
diff --git a/dist/linea/software_box_polygon.js b/dist/linea/software_box_polygon.js
new file mode 100644
index 000000000..041b4d1fa
--- /dev/null
+++ b/dist/linea/software_box_polygon.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_box_polygon = void 0;
+var software_box_polygon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "16.676,59 1.351,32 16.676,5 47.324,5 \r\n\t62.649,32 47.324,59 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "5",
+ "x2": "47",
+ "y2": "59"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "5",
+ "x2": "17",
+ "y2": "59"
+ },
+ "children": []
+ }]
+};
+exports.software_box_polygon = software_box_polygon;
\ No newline at end of file
diff --git a/dist/linea/software_box_rectangle.js b/dist/linea/software_box_rectangle.js
new file mode 100644
index 000000000..15734249e
--- /dev/null
+++ b/dist/linea/software_box_rectangle.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_box_rectangle = void 0;
+var software_box_rectangle = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "12",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "40"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "12",
+ "x2": "63",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "12",
+ "x2": "1",
+ "y2": "52"
+ },
+ "children": []
+ }]
+};
+exports.software_box_rectangle = software_box_rectangle;
\ No newline at end of file
diff --git a/dist/linea/software_box_roundedrectangle.js b/dist/linea/software_box_roundedrectangle.js
new file mode 100644
index 000000000..a1b2ca90b
--- /dev/null
+++ b/dist/linea/software_box_roundedrectangle.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_box_roundedrectangle = void 0;
+var software_box_roundedrectangle = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M63,40c0,6.627-5.373,12-12,12H13\r\n\tC6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "5",
+ "y1": "15",
+ "x2": "59",
+ "y2": "49"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "59",
+ "y1": "15",
+ "x2": "5",
+ "y2": "49"
+ },
+ "children": []
+ }]
+};
+exports.software_box_roundedrectangle = software_box_roundedrectangle;
\ No newline at end of file
diff --git a/dist/linea/software_character.js b/dist/linea/software_character.js
new file mode 100644
index 000000000..fffb53d43
--- /dev/null
+++ b/dist/linea/software_character.js
@@ -0,0 +1,74 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_character = void 0;
+var software_character = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,52.5 27,10 28,10 43,52.75 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "12,52.5 27,10 28,10 43,52.75 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "38",
+ "x2": "38",
+ "y2": "38"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "38",
+ "x2": "38",
+ "y2": "38"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52",
+ "y1": "0",
+ "x2": "52",
+ "y2": "64"
+ },
+ "children": []
+ }]
+};
+exports.software_character = software_character;
\ No newline at end of file
diff --git a/dist/linea/software_crop.js b/dist/linea/software_crop.js
new file mode 100644
index 000000000..73d9927ca
--- /dev/null
+++ b/dist/linea/software_crop.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_crop = void 0;
+var software_crop = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "0,11 53,11 53,64 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,0 11,53 64,53 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "53",
+ "x2": "63",
+ "y2": "1"
+ },
+ "children": []
+ }]
+};
+exports.software_crop = software_crop;
\ No newline at end of file
diff --git a/dist/linea/software_eyedropper.js b/dist/linea/software_eyedropper.js
new file mode 100644
index 000000000..bea8d42f2
--- /dev/null
+++ b/dist/linea/software_eyedropper.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_eyedropper = void 0;
+var software_eyedropper = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M47,26l12-12l4-4c0-4.371-4.628-9-9-9\r\n\tc0,0-2.563,2.533-4,4L38,17"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "28.479",
+ "y": "20.672",
+ "transform": "matrix(-0.7071 -0.7071 0.7071 -0.7071 52.5208 68.7548)",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "24.042",
+ "height": "5.657"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "34,22 4,54 4,56 1,59 5,63 8,60 10,60 \r\n\t42,30 "
+ },
+ "children": []
+ }]
+};
+exports.software_eyedropper = software_eyedropper;
\ No newline at end of file
diff --git a/dist/linea/software_font_allcaps.js b/dist/linea/software_font_allcaps.js
new file mode 100644
index 000000000..fd789625c
--- /dev/null
+++ b/dist/linea/software_font_allcaps.js
@@ -0,0 +1,124 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_allcaps = void 0;
+var software_font_allcaps = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "31,50.987 18,16 17,16 4,51 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "31,50.987 18,16 17,16 4,51 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "39",
+ "x2": "8",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "39",
+ "x2": "8",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "60,50.987 47,16 46,16 33,51 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "60,50.987 47,16 46,16 33,51 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "39",
+ "x2": "37",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "39",
+ "x2": "37",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.software_font_allcaps = software_font_allcaps;
\ No newline at end of file
diff --git a/dist/linea/software_font_baseline_shift.js b/dist/linea/software_font_baseline_shift.js
new file mode 100644
index 000000000..1daa35e8f
--- /dev/null
+++ b/dist/linea/software_font_baseline_shift.js
@@ -0,0 +1,178 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_baseline_shift = void 0;
+var software_font_baseline_shift = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,43 21,1 20,1 5,43 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,43 21,1 20,1 5,43 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31",
+ "y1": "29",
+ "x2": "10",
+ "y2": "29"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31",
+ "y1": "29",
+ "x2": "10",
+ "y2": "29"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,31 51,8 50,8 42,31 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,31 51,8 50,8 42,31 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "24",
+ "x2": "44",
+ "y2": "24"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "24",
+ "x2": "44",
+ "y2": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "47",
+ "x2": "2",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "62",
+ "y1": "35",
+ "x2": "40",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "58,47 51,40 \r\n\t44,47 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "51",
+ "y1": "64",
+ "x2": "51",
+ "y2": "40"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "51",
+ "y1": "64",
+ "x2": "51",
+ "y2": "40"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_font_baseline_shift = software_font_baseline_shift;
\ No newline at end of file
diff --git a/dist/linea/software_font_horizontal_scale.js b/dist/linea/software_font_horizontal_scale.js
new file mode 100644
index 000000000..2a05d259a
--- /dev/null
+++ b/dist/linea/software_font_horizontal_scale.js
@@ -0,0 +1,124 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_horizontal_scale = void 0;
+var software_font_horizontal_scale = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "17,44 32,2 33,2 48,44 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "17,44 32,2 33,2 48,44 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "30",
+ "x2": "43",
+ "y2": "30"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "30",
+ "x2": "43",
+ "y2": "30"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M55,63"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "55,63 62,56 \r\n\t55,49 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "9,49 2,56 9,63 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "62",
+ "y1": "56",
+ "x2": "2",
+ "y2": "56"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "62",
+ "y1": "56",
+ "x2": "2",
+ "y2": "56"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_font_horizontal_scale = software_font_horizontal_scale;
\ No newline at end of file
diff --git a/dist/linea/software_font_kerning.js b/dist/linea/software_font_kerning.js
new file mode 100644
index 000000000..59d58f86d
--- /dev/null
+++ b/dist/linea/software_font_kerning.js
@@ -0,0 +1,255 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_kerning = void 0;
+var software_font_kerning = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,35 13,12 14,12 22,35 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,35 13,12 14,12 22,35 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "28",
+ "x2": "20",
+ "y2": "28"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "28",
+ "x2": "20",
+ "y2": "28"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,35 50,12 51,12 59,35 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,35 50,12 51,12 59,35 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "28",
+ "x2": "57",
+ "y2": "28"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "28",
+ "x2": "57",
+ "y2": "28"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "6",
+ "x2": "32",
+ "y2": "8"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "6",
+ "x2": "32",
+ "y2": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "10",
+ "x2": "32",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "10",
+ "x2": "32",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "40",
+ "x2": "32",
+ "y2": "42"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "40",
+ "x2": "32",
+ "y2": "42"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "55,63 62,56 \r\n\t55,49 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "9,49 2,56 9,63 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "62",
+ "y1": "56",
+ "x2": "2",
+ "y2": "56"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "62",
+ "y1": "56",
+ "x2": "2",
+ "y2": "56"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_font_kerning = software_font_kerning;
\ No newline at end of file
diff --git a/dist/linea/software_font_leading.js b/dist/linea/software_font_leading.js
new file mode 100644
index 000000000..701b1eda7
--- /dev/null
+++ b/dist/linea/software_font_leading.js
@@ -0,0 +1,189 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_leading = void 0;
+var software_font_leading = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,24 44,1 45,1 53,24 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,24 44,1 45,1 53,24 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "17",
+ "x2": "51",
+ "y2": "17"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "17",
+ "x2": "51",
+ "y2": "17"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "28",
+ "x2": "61",
+ "y2": "28"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,57 44,34 45,34 53,57 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,57 44,34 45,34 53,57 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "50",
+ "x2": "51",
+ "y2": "50"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "50",
+ "x2": "51",
+ "y2": "50"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "61",
+ "x2": "61",
+ "y2": "61"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "5,55 12,62 19,55 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "19,34 12,27 5,34 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "62",
+ "x2": "12",
+ "y2": "27"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "62",
+ "x2": "12",
+ "y2": "27"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_font_leading = software_font_leading;
\ No newline at end of file
diff --git a/dist/linea/software_font_size.js b/dist/linea/software_font_size.js
new file mode 100644
index 000000000..5dd4f6622
--- /dev/null
+++ b/dist/linea/software_font_size.js
@@ -0,0 +1,163 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_size = void 0;
+var software_font_size = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "28,43 43,1 44,1 59,43 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "28,43 43,1 44,1 59,43 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "29",
+ "x2": "54",
+ "y2": "29"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "29",
+ "x2": "54",
+ "y2": "29"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,43 13,20 14,20 22,43 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,43 13,20 14,20 22,43 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "36",
+ "x2": "20",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "36",
+ "x2": "20",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "56,63 63,56 \r\n\t56,49 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "8,49 1,56 8,63 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "56",
+ "x2": "1",
+ "y2": "56"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "56",
+ "x2": "1",
+ "y2": "56"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_font_size = software_font_size;
\ No newline at end of file
diff --git a/dist/linea/software_font_smallcapital.js b/dist/linea/software_font_smallcapital.js
new file mode 100644
index 000000000..36581cc67
--- /dev/null
+++ b/dist/linea/software_font_smallcapital.js
@@ -0,0 +1,124 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_smallcapital = void 0;
+var software_font_smallcapital = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "37,51 22,9 21,9 6,51 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "37,51 22,9 21,9 6,51 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "37",
+ "x2": "11",
+ "y2": "37"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "37",
+ "x2": "11",
+ "y2": "37"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "58,51 50,28 49,28 41,51 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "58,51 50,28 49,28 41,51 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "44",
+ "x2": "43",
+ "y2": "44"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "56",
+ "y1": "44",
+ "x2": "43",
+ "y2": "44"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.software_font_smallcapital = software_font_smallcapital;
\ No newline at end of file
diff --git a/dist/linea/software_font_smallcaps.js b/dist/linea/software_font_smallcaps.js
new file mode 100644
index 000000000..b4a5ea59a
--- /dev/null
+++ b/dist/linea/software_font_smallcaps.js
@@ -0,0 +1,94 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_smallcaps = void 0;
+var software_font_smallcaps = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,51 23,9 22,9 7,51 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,51 23,9 22,9 7,51 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "37",
+ "x2": "12",
+ "y2": "37"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "33",
+ "y1": "37",
+ "x2": "12",
+ "y2": "37"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.software_font_smallcaps = software_font_smallcaps;
\ No newline at end of file
diff --git a/dist/linea/software_font_strikethrough.js b/dist/linea/software_font_strikethrough.js
new file mode 100644
index 000000000..19a3f2bcc
--- /dev/null
+++ b/dist/linea/software_font_strikethrough.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_strikethrough = void 0;
+var software_font_strikethrough = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,51 23,9 22,9 7,51 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,51 23,9 22,9 7,51 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "35",
+ "x2": "13",
+ "y2": "35"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "35",
+ "x2": "13",
+ "y2": "35"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "44",
+ "x2": "58",
+ "y2": "44"
+ },
+ "children": []
+ }]
+};
+exports.software_font_strikethrough = software_font_strikethrough;
\ No newline at end of file
diff --git a/dist/linea/software_font_tracking.js b/dist/linea/software_font_tracking.js
new file mode 100644
index 000000000..629efe8f3
--- /dev/null
+++ b/dist/linea/software_font_tracking.js
@@ -0,0 +1,439 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_tracking = void 0;
+var software_font_tracking = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,35 17,12 18,12 26,35 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "9,35 17,12 18,12 26,35 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "28",
+ "x2": "24",
+ "y2": "28"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "28",
+ "x2": "24",
+ "y2": "28"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,35 46,12 47,12 55,35 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,35 46,12 47,12 55,35 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "28",
+ "x2": "53",
+ "y2": "28"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "28",
+ "x2": "53",
+ "y2": "28"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "6",
+ "x2": "32",
+ "y2": "8"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "6",
+ "x2": "32",
+ "y2": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "10",
+ "x2": "32",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "10",
+ "x2": "32",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "40",
+ "x2": "32",
+ "y2": "42"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "40",
+ "x2": "32",
+ "y2": "42"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "6",
+ "x2": "4",
+ "y2": "8"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "6",
+ "x2": "4",
+ "y2": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "4",
+ "y1": "10",
+ "x2": "4",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "4",
+ "y1": "10",
+ "x2": "4",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "40",
+ "x2": "4",
+ "y2": "42"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "4",
+ "y1": "40",
+ "x2": "4",
+ "y2": "42"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "60",
+ "y1": "6",
+ "x2": "60",
+ "y2": "8"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "60",
+ "y1": "6",
+ "x2": "60",
+ "y2": "8"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "60",
+ "y1": "10",
+ "x2": "60",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "60",
+ "y1": "10",
+ "x2": "60",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "60",
+ "y1": "40",
+ "x2": "60",
+ "y2": "42"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "60",
+ "y1": "40",
+ "x2": "60",
+ "y2": "42"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "55,63 62,56 \r\n\t55,49 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "9,49 2,56 9,63 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "62",
+ "y1": "56",
+ "x2": "2",
+ "y2": "56"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "62",
+ "y1": "56",
+ "x2": "2",
+ "y2": "56"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_font_tracking = software_font_tracking;
\ No newline at end of file
diff --git a/dist/linea/software_font_underline.js b/dist/linea/software_font_underline.js
new file mode 100644
index 000000000..294982823
--- /dev/null
+++ b/dist/linea/software_font_underline.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_underline = void 0;
+var software_font_underline = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,51 23,9 22,9 7,51 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "38,51 23,9 22,9 7,51 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "35",
+ "x2": "13",
+ "y2": "35"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "35",
+ "x2": "13",
+ "y2": "35"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M44,34c0,0,1.5-2,5.5-2s5.5,3,5.5,5s0,10,0,10\r\n\ts0,3,2.5,3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,40h-5c0,0-7,0-7,5s4,5,5,5s7,0,7-7"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "55",
+ "x2": "58",
+ "y2": "55"
+ },
+ "children": []
+ }]
+};
+exports.software_font_underline = software_font_underline;
\ No newline at end of file
diff --git a/dist/linea/software_font_vertical_scale.js b/dist/linea/software_font_vertical_scale.js
new file mode 100644
index 000000000..5674c345f
--- /dev/null
+++ b/dist/linea/software_font_vertical_scale.js
@@ -0,0 +1,113 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_font_vertical_scale = void 0;
+var software_font_vertical_scale = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29,53 44,11 45,11 60,53 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29,53 44,11 45,11 60,53 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "39",
+ "x2": "55",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "39",
+ "x2": "55",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "5,55 12,62 19,55 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "19,9 12,2 5,9 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "62",
+ "x2": "12",
+ "y2": "2"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "62",
+ "x2": "12",
+ "y2": "2"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_font_vertical_scale = software_font_vertical_scale;
\ No newline at end of file
diff --git a/dist/linea/software_horizontal_align_center.js b/dist/linea/software_horizontal_align_center.js
new file mode 100644
index 000000000..38b995c16
--- /dev/null
+++ b/dist/linea/software_horizontal_align_center.js
@@ -0,0 +1,76 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_horizontal_align_center = void 0;
+var software_horizontal_align_center = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "51",
+ "x2": "32",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "0",
+ "x2": "32",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "29",
+ "x2": "32",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "6",
+ "y": "35",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "16"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "40",
+ "height": "16"
+ },
+ "children": []
+ }]
+};
+exports.software_horizontal_align_center = software_horizontal_align_center;
\ No newline at end of file
diff --git a/dist/linea/software_horizontal_align_left.js b/dist/linea/software_horizontal_align_left.js
new file mode 100644
index 000000000..8d1ef3680
--- /dev/null
+++ b/dist/linea/software_horizontal_align_left.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_horizontal_align_left = void 0;
+var software_horizontal_align_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "0",
+ "x2": "1",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "7",
+ "y": "35",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "16"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "7",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "40",
+ "height": "16"
+ },
+ "children": []
+ }]
+};
+exports.software_horizontal_align_left = software_horizontal_align_left;
\ No newline at end of file
diff --git a/dist/linea/software_horizontal_align_right.js b/dist/linea/software_horizontal_align_right.js
new file mode 100644
index 000000000..e3e184e30
--- /dev/null
+++ b/dist/linea/software_horizontal_align_right.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_horizontal_align_right = void 0;
+var software_horizontal_align_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "0",
+ "x2": "63",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "5",
+ "y": "35",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "16"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "17",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "40",
+ "height": "16"
+ },
+ "children": []
+ }]
+};
+exports.software_horizontal_align_right = software_horizontal_align_right;
\ No newline at end of file
diff --git a/dist/linea/software_horizontal_distribute_center.js b/dist/linea/software_horizontal_distribute_center.js
new file mode 100644
index 000000000..eac76162b
--- /dev/null
+++ b/dist/linea/software_horizontal_distribute_center.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_horizontal_distribute_center = void 0;
+var software_horizontal_distribute_center = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "43",
+ "y1": "0",
+ "x2": "43",
+ "y2": "12"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "43",
+ "y1": "52",
+ "x2": "43",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "0",
+ "x2": "21",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "58",
+ "x2": "21",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "35",
+ "y": "12",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "40"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "13",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "52"
+ },
+ "children": []
+ }]
+};
+exports.software_horizontal_distribute_center = software_horizontal_distribute_center;
\ No newline at end of file
diff --git a/dist/linea/software_horizontal_distribute_left.js b/dist/linea/software_horizontal_distribute_left.js
new file mode 100644
index 000000000..f61e1508c
--- /dev/null
+++ b/dist/linea/software_horizontal_distribute_left.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_horizontal_distribute_left = void 0;
+var software_horizontal_distribute_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "0",
+ "x2": "35",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "13",
+ "y1": "0",
+ "x2": "13",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "35",
+ "y": "12",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "40"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "13",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "52"
+ },
+ "children": []
+ }]
+};
+exports.software_horizontal_distribute_left = software_horizontal_distribute_left;
\ No newline at end of file
diff --git a/dist/linea/software_horizontal_distribute_right.js b/dist/linea/software_horizontal_distribute_right.js
new file mode 100644
index 000000000..62c785dd1
--- /dev/null
+++ b/dist/linea/software_horizontal_distribute_right.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_horizontal_distribute_right = void 0;
+var software_horizontal_distribute_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "64",
+ "x2": "29",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "51",
+ "y1": "64",
+ "x2": "51",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "13",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "52"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "35",
+ "y": "12",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "40"
+ },
+ "children": []
+ }]
+};
+exports.software_horizontal_distribute_right = software_horizontal_distribute_right;
\ No newline at end of file
diff --git a/dist/linea/software_indent_firstline.js b/dist/linea/software_indent_firstline.js
new file mode 100644
index 000000000..84ef9f2f7
--- /dev/null
+++ b/dist/linea/software_indent_firstline.js
@@ -0,0 +1,149 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_indent_firstline = void 0;
+var software_indent_firstline = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "10",
+ "x2": "64",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "20",
+ "x2": "53",
+ "y2": "20"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "30",
+ "x2": "64",
+ "y2": "30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "40",
+ "x2": "56",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "50",
+ "x2": "64",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "60",
+ "x2": "58",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "16,17 23,10 \r\n\t\t16,3 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "16,17 23,10 \r\n\t\t16,3 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "10",
+ "x2": "0",
+ "y2": "10"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "10",
+ "x2": "0",
+ "y2": "10"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.software_indent_firstline = software_indent_firstline;
\ No newline at end of file
diff --git a/dist/linea/software_indent_left.js b/dist/linea/software_indent_left.js
new file mode 100644
index 000000000..acea5ec0e
--- /dev/null
+++ b/dist/linea/software_indent_left.js
@@ -0,0 +1,143 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_indent_left = void 0;
+var software_indent_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "7",
+ "x2": "64",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "17",
+ "x2": "52",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "27",
+ "x2": "64",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "37",
+ "x2": "55",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "47",
+ "x2": "64",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "57",
+ "x2": "57",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "0",
+ "x2": "25",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "12,39 19,32 \r\n\t12,25 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "32",
+ "x2": "0",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "32",
+ "x2": "0",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_indent_left = software_indent_left;
\ No newline at end of file
diff --git a/dist/linea/software_indent_right.js b/dist/linea/software_indent_right.js
new file mode 100644
index 000000000..81f0a1e83
--- /dev/null
+++ b/dist/linea/software_indent_right.js
@@ -0,0 +1,143 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_indent_right = void 0;
+var software_indent_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "7",
+ "x2": "0",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "17",
+ "x2": "12",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "27",
+ "x2": "0",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "37",
+ "x2": "9",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "47",
+ "x2": "0",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "57",
+ "x2": "7",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "0",
+ "x2": "39",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "52,25 45,32 \r\n\t52,39 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "32",
+ "x2": "64",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "32",
+ "x2": "64",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_indent_right = software_indent_right;
\ No newline at end of file
diff --git a/dist/linea/software_lasso.js b/dist/linea/software_lasso.js
new file mode 100644
index 000000000..d6f6b6586
--- /dev/null
+++ b/dist/linea/software_lasso.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_lasso = void 0;
+var software_lasso = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "25.5",
+ "rx": "31",
+ "ry": "19.5"
+ },
+ "children": []
+ }, {
+ "name": "ellipse",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "21",
+ "cy": "48",
+ "rx": "6",
+ "ry": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M25,51c0,0,2,1,2,4s-2,3-2,3"
+ },
+ "children": []
+ }]
+};
+exports.software_lasso = software_lasso;
\ No newline at end of file
diff --git a/dist/linea/software_layers1.js b/dist/linea/software_layers1.js
new file mode 100644
index 000000000..c9a6b9eb2
--- /dev/null
+++ b/dist/linea/software_layers1.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layers1 = void 0;
+var software_layers1 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,32.066 2,39 32,51 62,39 46,32.067 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,38 62,26 32,13 2,26 "
+ },
+ "children": []
+ }]
+};
+exports.software_layers1 = software_layers1;
\ No newline at end of file
diff --git a/dist/linea/software_layers2.js b/dist/linea/software_layers2.js
new file mode 100644
index 000000000..a1bf891a8
--- /dev/null
+++ b/dist/linea/software_layers2.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layers2 = void 0;
+var software_layers2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,26.066 2,33 32,45 62,33 46,26.067 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "18,39.066 2,46 32,58 62,46 46,39.067 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,32 62,20 32,7 2,20 "
+ },
+ "children": []
+ }]
+};
+exports.software_layers2 = software_layers2;
\ No newline at end of file
diff --git a/dist/linea/software_layout.js b/dist/linea/software_layout.js
new file mode 100644
index 000000000..e909e38e6
--- /dev/null
+++ b/dist/linea/software_layout.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout = void 0;
+var software_layout = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.software_layout = software_layout;
\ No newline at end of file
diff --git a/dist/linea/software_layout_2columns.js b/dist/linea/software_layout_2columns.js
new file mode 100644
index 000000000..f573c3d8c
--- /dev/null
+++ b/dist/linea/software_layout_2columns.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_2columns = void 0;
+var software_layout_2columns = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_2columns = software_layout_2columns;
\ No newline at end of file
diff --git a/dist/linea/software_layout_3columns.js b/dist/linea/software_layout_3columns.js
new file mode 100644
index 000000000..e03b3a26d
--- /dev/null
+++ b/dist/linea/software_layout_3columns.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_3columns = void 0;
+var software_layout_3columns = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "43",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "21",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "22",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_3columns = software_layout_3columns;
\ No newline at end of file
diff --git a/dist/linea/software_layout_4boxes.js b/dist/linea/software_layout_4boxes.js
new file mode 100644
index 000000000..79b1224b6
--- /dev/null
+++ b/dist/linea/software_layout_4boxes.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_4boxes = void 0;
+var software_layout_4boxes = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "32",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "31"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "32",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "31"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "31"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "31"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_4boxes = software_layout_4boxes;
\ No newline at end of file
diff --git a/dist/linea/software_layout_4columns.js b/dist/linea/software_layout_4columns.js
new file mode 100644
index 000000000..501586891
--- /dev/null
+++ b/dist/linea/software_layout_4columns.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_4columns = void 0;
+var software_layout_4columns = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "15",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "15",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "47",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_4columns = software_layout_4columns;
\ No newline at end of file
diff --git a/dist/linea/software_layout_4lines.js b/dist/linea/software_layout_4lines.js
new file mode 100644
index 000000000..a29b53de7
--- /dev/null
+++ b/dist/linea/software_layout_4lines.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_4lines = void 0;
+var software_layout_4lines = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "15"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "16",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "16"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "32",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "15"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "47",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "16"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_4lines = software_layout_4lines;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header.js b/dist/linea/software_layout_header.js
new file mode 100644
index 000000000..5dc24be41
--- /dev/null
+++ b/dist/linea/software_layout_header.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header = void 0;
+var software_layout_header = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "48"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header = software_layout_header;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header_2columns.js b/dist/linea/software_layout_header_2columns.js
new file mode 100644
index 000000000..5add6eeaa
--- /dev/null
+++ b/dist/linea/software_layout_header_2columns.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header_2columns = void 0;
+var software_layout_header_2columns = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "48"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header_2columns = software_layout_header_2columns;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header_3columns.js b/dist/linea/software_layout_header_3columns.js
new file mode 100644
index 000000000..afeef9c99
--- /dev/null
+++ b/dist/linea/software_layout_header_3columns.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header_3columns = void 0;
+var software_layout_header_3columns = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "43",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "21",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "22",
+ "height": "48"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header_3columns = software_layout_header_3columns;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header_4boxes.js b/dist/linea/software_layout_header_4boxes.js
new file mode 100644
index 000000000..d1bc4a4f1
--- /dev/null
+++ b/dist/linea/software_layout_header_4boxes.js
@@ -0,0 +1,76 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header_4boxes = void 0;
+var software_layout_header_4boxes = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "39",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "24"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "39",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "24"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "24"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "24"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header_4boxes = software_layout_header_4boxes;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header_4columns.js b/dist/linea/software_layout_header_4columns.js
new file mode 100644
index 000000000..8306ea086
--- /dev/null
+++ b/dist/linea/software_layout_header_4columns.js
@@ -0,0 +1,76 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header_4columns = void 0;
+var software_layout_header_4columns = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "15",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "16",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "15",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "47",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "48"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header_4columns = software_layout_header_4columns;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header_complex.js b/dist/linea/software_layout_header_complex.js
new file mode 100644
index 000000000..ba5368651
--- /dev/null
+++ b/dist/linea/software_layout_header_complex.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header_complex = void 0;
+var software_layout_header_complex = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "15",
+ "x2": "22",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "38",
+ "x2": "63",
+ "y2": "38"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header_complex = software_layout_header_complex;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header_complex2.js b/dist/linea/software_layout_header_complex2.js
new file mode 100644
index 000000000..4d5bf8556
--- /dev/null
+++ b/dist/linea/software_layout_header_complex2.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header_complex2 = void 0;
+var software_layout_header_complex2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "15",
+ "x2": "42",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "38",
+ "x2": "42",
+ "y2": "38"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header_complex2 = software_layout_header_complex2;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header_complex3.js b/dist/linea/software_layout_header_complex3.js
new file mode 100644
index 000000000..4d399d1a7
--- /dev/null
+++ b/dist/linea/software_layout_header_complex3.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header_complex3 = void 0;
+var software_layout_header_complex3 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "15",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "47",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "48"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header_complex3 = software_layout_header_complex3;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header_complex4.js b/dist/linea/software_layout_header_complex4.js
new file mode 100644
index 000000000..490d27f9e
--- /dev/null
+++ b/dist/linea/software_layout_header_complex4.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header_complex4 = void 0;
+var software_layout_header_complex4 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "31",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "32",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "15",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "47",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "48"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header_complex4 = software_layout_header_complex4;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header_sideleft.js b/dist/linea/software_layout_header_sideleft.js
new file mode 100644
index 000000000..b0e38cd42
--- /dev/null
+++ b/dist/linea/software_layout_header_sideleft.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header_sideleft = void 0;
+var software_layout_header_sideleft = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "15",
+ "x2": "22",
+ "y2": "63"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header_sideleft = software_layout_header_sideleft;
\ No newline at end of file
diff --git a/dist/linea/software_layout_header_sideright.js b/dist/linea/software_layout_header_sideright.js
new file mode 100644
index 000000000..81f46b47f
--- /dev/null
+++ b/dist/linea/software_layout_header_sideright.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_header_sideright = void 0;
+var software_layout_header_sideright = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "14"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "15",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "15",
+ "x2": "42",
+ "y2": "63"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_header_sideright = software_layout_header_sideright;
\ No newline at end of file
diff --git a/dist/linea/software_layout_sidebar_left.js b/dist/linea/software_layout_sidebar_left.js
new file mode 100644
index 000000000..3b96ff9f9
--- /dev/null
+++ b/dist/linea/software_layout_sidebar_left.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_sidebar_left = void 0;
+var software_layout_sidebar_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "21",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_sidebar_left = software_layout_sidebar_left;
\ No newline at end of file
diff --git a/dist/linea/software_layout_sidebar_right.js b/dist/linea/software_layout_sidebar_right.js
new file mode 100644
index 000000000..1888bf8a7
--- /dev/null
+++ b/dist/linea/software_layout_sidebar_right.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_layout_sidebar_right = void 0;
+var software_layout_sidebar_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "43",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "20",
+ "height": "62"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "42",
+ "height": "62"
+ },
+ "children": []
+ }]
+};
+exports.software_layout_sidebar_right = software_layout_sidebar_right;
\ No newline at end of file
diff --git a/dist/linea/software_magnete.js b/dist/linea/software_magnete.js
new file mode 100644
index 000000000..22eda8b68
--- /dev/null
+++ b/dist/linea/software_magnete.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_magnete = void 0;
+var software_magnete = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24,42c0,4.418,3.582,8,8,8s8-3.582,8-8V1h13v41\r\n\tc0,11.598-9.402,21-21,21s-21-9.402-21-21V1h13V42z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "10",
+ "x2": "24",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "10",
+ "x2": "53",
+ "y2": "10"
+ },
+ "children": []
+ }]
+};
+exports.software_magnete = software_magnete;
\ No newline at end of file
diff --git a/dist/linea/software_pages.js b/dist/linea/software_pages.js
new file mode 100644
index 000000000..02a4da473
--- /dev/null
+++ b/dist/linea/software_pages.js
@@ -0,0 +1,112 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_pages = void 0;
+var software_pages = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,11 32,11 32,53 1,53 1,21 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "11,11 32,11 32,53 1,53 1,21 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,21 11,21 11,11 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,21 11,21 11,11 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "53,11 32,11 32,53 63,53 63,21 \t"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "53,11 32,11 32,53 63,53 63,21 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,21 53,21 53,11 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,21 53,21 53,11 \t"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "6",
+ "x2": "32",
+ "y2": "58"
+ },
+ "children": []
+ }]
+};
+exports.software_pages = software_pages;
\ No newline at end of file
diff --git a/dist/linea/software_paintbrush.js b/dist/linea/software_paintbrush.js
new file mode 100644
index 000000000..5a0ed5730
--- /dev/null
+++ b/dist/linea/software_paintbrush.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paintbrush = void 0;
+var software_paintbrush = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "30,42 26,46 18,38 22,34 62,1 63,2 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "34",
+ "x2": "30",
+ "y2": "42"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M26,46c0,0-8,17-25,17c0,0,2.752-16.314,9-21\r\n\tc4-3,8-4,8-4"
+ },
+ "children": []
+ }]
+};
+exports.software_paintbrush = software_paintbrush;
\ No newline at end of file
diff --git a/dist/linea/software_paintbucket.js b/dist/linea/software_paintbucket.js
new file mode 100644
index 000000000..b089fd3b0
--- /dev/null
+++ b/dist/linea/software_paintbucket.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paintbucket = void 0;
+var software_paintbucket = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "3,38 28,63 54,37 \r\n\t61,36 33,8 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "d": "M32,27V6\r\n\tc0-2.762-2.238-5-5-5s-5,2.238-5,5v13"
+ },
+ "children": []
+ }]
+};
+exports.software_paintbucket = software_paintbucket;
\ No newline at end of file
diff --git a/dist/linea/software_paintroller.js b/dist/linea/software_paintroller.js
new file mode 100644
index 000000000..3be8a0441
--- /dev/null
+++ b/dist/linea/software_paintroller.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paintroller = void 0;
+var software_paintroller = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "7",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "48",
+ "height": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "2",
+ "y1": "9",
+ "x2": "7",
+ "y2": "9"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "55,9 61,9 61,24 32,24 32,41 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "28",
+ "y": "42",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "8",
+ "height": "21"
+ },
+ "children": []
+ }]
+};
+exports.software_paintroller = software_paintroller;
\ No newline at end of file
diff --git a/dist/linea/software_paragraph.js b/dist/linea/software_paragraph.js
new file mode 100644
index 000000000..486bfeeb5
--- /dev/null
+++ b/dist/linea/software_paragraph.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paragraph = void 0;
+var software_paragraph = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "51,64 51,1 41,1 41,64 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "33",
+ "x2": "41",
+ "y2": "33"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29,33c0,0-16,0-16-16S29,1,29,1h12"
+ },
+ "children": []
+ }]
+};
+exports.software_paragraph = software_paragraph;
\ No newline at end of file
diff --git a/dist/linea/software_paragraph_align_left.js b/dist/linea/software_paragraph_align_left.js
new file mode 100644
index 000000000..9e724badf
--- /dev/null
+++ b/dist/linea/software_paragraph_align_left.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paragraph_align_left = void 0;
+var software_paragraph_align_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "7",
+ "x2": "64",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "17",
+ "x2": "46",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "27",
+ "x2": "64",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "37",
+ "x2": "50",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "47",
+ "x2": "64",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "57",
+ "x2": "54",
+ "y2": "57"
+ },
+ "children": []
+ }]
+};
+exports.software_paragraph_align_left = software_paragraph_align_left;
\ No newline at end of file
diff --git a/dist/linea/software_paragraph_align_right.js b/dist/linea/software_paragraph_align_right.js
new file mode 100644
index 000000000..668741b25
--- /dev/null
+++ b/dist/linea/software_paragraph_align_right.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paragraph_align_right = void 0;
+var software_paragraph_align_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "7",
+ "x2": "0",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "17",
+ "x2": "18",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "27",
+ "x2": "0",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "37",
+ "x2": "14",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "47",
+ "x2": "0",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "57",
+ "x2": "10",
+ "y2": "57"
+ },
+ "children": []
+ }]
+};
+exports.software_paragraph_align_right = software_paragraph_align_right;
\ No newline at end of file
diff --git a/dist/linea/software_paragraph_center.js b/dist/linea/software_paragraph_center.js
new file mode 100644
index 000000000..6e2abf810
--- /dev/null
+++ b/dist/linea/software_paragraph_center.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paragraph_center = void 0;
+var software_paragraph_center = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "7",
+ "x2": "64",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "9",
+ "y1": "17",
+ "x2": "55",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "27",
+ "x2": "64",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "37",
+ "x2": "57",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "47",
+ "x2": "64",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "5",
+ "y1": "57",
+ "x2": "59",
+ "y2": "57"
+ },
+ "children": []
+ }]
+};
+exports.software_paragraph_center = software_paragraph_center;
\ No newline at end of file
diff --git a/dist/linea/software_paragraph_justify_all.js b/dist/linea/software_paragraph_justify_all.js
new file mode 100644
index 000000000..a7396370c
--- /dev/null
+++ b/dist/linea/software_paragraph_justify_all.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paragraph_justify_all = void 0;
+var software_paragraph_justify_all = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "7",
+ "x2": "0",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "17",
+ "x2": "0",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "27",
+ "x2": "0",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "37",
+ "x2": "0",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "47",
+ "x2": "0",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "57",
+ "x2": "0",
+ "y2": "57"
+ },
+ "children": []
+ }]
+};
+exports.software_paragraph_justify_all = software_paragraph_justify_all;
\ No newline at end of file
diff --git a/dist/linea/software_paragraph_justify_center.js b/dist/linea/software_paragraph_justify_center.js
new file mode 100644
index 000000000..8d99fc046
--- /dev/null
+++ b/dist/linea/software_paragraph_justify_center.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paragraph_justify_center = void 0;
+var software_paragraph_justify_center = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "7",
+ "x2": "0",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "17",
+ "x2": "0",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "27",
+ "x2": "0",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "37",
+ "x2": "0",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "47",
+ "x2": "0",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "54",
+ "y1": "57",
+ "x2": "10",
+ "y2": "57"
+ },
+ "children": []
+ }]
+};
+exports.software_paragraph_justify_center = software_paragraph_justify_center;
\ No newline at end of file
diff --git a/dist/linea/software_paragraph_justify_left.js b/dist/linea/software_paragraph_justify_left.js
new file mode 100644
index 000000000..515a60247
--- /dev/null
+++ b/dist/linea/software_paragraph_justify_left.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paragraph_justify_left = void 0;
+var software_paragraph_justify_left = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "7",
+ "x2": "64",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "17",
+ "x2": "64",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "27",
+ "x2": "64",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "37",
+ "x2": "64",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "47",
+ "x2": "64",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "57",
+ "x2": "44",
+ "y2": "57"
+ },
+ "children": []
+ }]
+};
+exports.software_paragraph_justify_left = software_paragraph_justify_left;
\ No newline at end of file
diff --git a/dist/linea/software_paragraph_justify_right.js b/dist/linea/software_paragraph_justify_right.js
new file mode 100644
index 000000000..e2115b213
--- /dev/null
+++ b/dist/linea/software_paragraph_justify_right.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paragraph_justify_right = void 0;
+var software_paragraph_justify_right = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "7",
+ "x2": "0",
+ "y2": "7"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "17",
+ "x2": "0",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "27",
+ "x2": "0",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "37",
+ "x2": "0",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "47",
+ "x2": "0",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "57",
+ "x2": "20",
+ "y2": "57"
+ },
+ "children": []
+ }]
+};
+exports.software_paragraph_justify_right = software_paragraph_justify_right;
\ No newline at end of file
diff --git a/dist/linea/software_paragraph_space_after.js b/dist/linea/software_paragraph_space_after.js
new file mode 100644
index 000000000..9584a76e6
--- /dev/null
+++ b/dist/linea/software_paragraph_space_after.js
@@ -0,0 +1,327 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paragraph_space_after = void 0;
+var software_paragraph_space_after = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "6",
+ "x2": "64",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "16",
+ "x2": "56",
+ "y2": "16"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "26",
+ "x2": "64",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "36",
+ "x2": "58",
+ "y2": "36"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,48 59,46 57,46 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,48 59,46 57,46 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "55",
+ "y1": "46",
+ "x2": "26",
+ "y2": "46"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "55",
+ "y1": "46",
+ "x2": "26",
+ "y2": "46"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,46 23,46 23,48 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,46 23,46 23,48 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3,2",
+ "x1": "23",
+ "y1": "50",
+ "x2": "23",
+ "y2": "53"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3,2",
+ "x1": "23",
+ "y1": "50",
+ "x2": "23",
+ "y2": "53"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,54 23,56 25,56 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,54 23,56 25,56 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "27",
+ "y1": "56",
+ "x2": "56",
+ "y2": "56"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "27",
+ "y1": "56",
+ "x2": "56",
+ "y2": "56"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "57,56 59,56 59,54 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "57,56 59,56 59,54 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3,2",
+ "x1": "59",
+ "y1": "53",
+ "x2": "59",
+ "y2": "49"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3,2",
+ "x1": "59",
+ "y1": "53",
+ "x2": "59",
+ "y2": "49"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10,58 17,51 \r\n\t\t10,44 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10,58 17,51 \r\n\t\t10,44 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "51",
+ "x2": "0",
+ "y2": "51"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "51",
+ "x2": "0",
+ "y2": "51"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.software_paragraph_space_after = software_paragraph_space_after;
\ No newline at end of file
diff --git a/dist/linea/software_paragraph_space_before.js b/dist/linea/software_paragraph_space_before.js
new file mode 100644
index 000000000..14ca1a84b
--- /dev/null
+++ b/dist/linea/software_paragraph_space_before.js
@@ -0,0 +1,327 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_paragraph_space_before = void 0;
+var software_paragraph_space_before = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "29",
+ "x2": "64",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "39",
+ "x2": "56",
+ "y2": "39"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "49",
+ "x2": "64",
+ "y2": "49"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "59",
+ "x2": "58",
+ "y2": "59"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,11 59,9 57,9 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,11 59,9 57,9 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "55",
+ "y1": "9",
+ "x2": "26",
+ "y2": "9"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "55",
+ "y1": "9",
+ "x2": "26",
+ "y2": "9"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,9 23,9 23,11 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,9 23,9 23,11 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3,2",
+ "x1": "23",
+ "y1": "13",
+ "x2": "23",
+ "y2": "16"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3,2",
+ "x1": "23",
+ "y1": "13",
+ "x2": "23",
+ "y2": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,17 23,19 25,19 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,17 23,19 25,19 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "27",
+ "y1": "19",
+ "x2": "56",
+ "y2": "19"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "27",
+ "y1": "19",
+ "x2": "56",
+ "y2": "19"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "57,19 59,19 59,17 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "57,19 59,19 59,17 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3,2",
+ "x1": "59",
+ "y1": "16",
+ "x2": "59",
+ "y2": "12"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3,2",
+ "x1": "59",
+ "y1": "16",
+ "x2": "59",
+ "y2": "12"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10,21 17,14 \r\n\t\t10,7 \t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "10,21 17,14 \r\n\t\t10,7 \t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "14",
+ "x2": "0",
+ "y2": "14"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "14",
+ "x2": "0",
+ "y2": "14"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.software_paragraph_space_before = software_paragraph_space_before;
\ No newline at end of file
diff --git a/dist/linea/software_pathfinder_exclude.js b/dist/linea/software_pathfinder_exclude.js
new file mode 100644
index 000000000..ef2374065
--- /dev/null
+++ b/dist/linea/software_pathfinder_exclude.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_pathfinder_exclude = void 0;
+var software_pathfinder_exclude = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,23 41,41 23,41 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 1,41 1,1 41,1 41,23 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,23 63,23 63,63 23,63 23,41 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 23,23 41,23 "
+ },
+ "children": []
+ }]
+};
+exports.software_pathfinder_exclude = software_pathfinder_exclude;
\ No newline at end of file
diff --git a/dist/linea/software_pathfinder_intersect.js b/dist/linea/software_pathfinder_intersect.js
new file mode 100644
index 000000000..4bfb04f82
--- /dev/null
+++ b/dist/linea/software_pathfinder_intersect.js
@@ -0,0 +1,53 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_pathfinder_intersect = void 0;
+var software_pathfinder_intersect = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,23 41,41 23,41 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "points": "23,41 1,41 1,1 \r\n\t41,1 41,23 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "points": "41,23 63,23 63,63 \r\n\t23,63 23,41 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 23,23 41,23 "
+ },
+ "children": []
+ }]
+};
+exports.software_pathfinder_intersect = software_pathfinder_intersect;
\ No newline at end of file
diff --git a/dist/linea/software_pathfinder_subtract.js b/dist/linea/software_pathfinder_subtract.js
new file mode 100644
index 000000000..827c2b514
--- /dev/null
+++ b/dist/linea/software_pathfinder_subtract.js
@@ -0,0 +1,267 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_pathfinder_subtract = void 0;
+var software_pathfinder_subtract = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 1,41 1,1 41,1 41,23 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "23",
+ "x2": "43",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "23",
+ "x2": "43",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "45",
+ "y1": "23",
+ "x2": "60",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "45",
+ "y1": "23",
+ "x2": "60",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "61,23 63,23 63,25 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "61,23 63,23 63,25 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "63",
+ "y1": "27",
+ "x2": "63",
+ "y2": "60"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "63",
+ "y1": "27",
+ "x2": "63",
+ "y2": "60"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,61 63,63 61,63 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,61 63,63 61,63 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "59",
+ "y1": "63",
+ "x2": "26",
+ "y2": "63"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "59",
+ "y1": "63",
+ "x2": "26",
+ "y2": "63"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,63 23,63 23,61 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "25,63 23,63 23,61 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "23",
+ "y1": "59",
+ "x2": "23",
+ "y2": "44"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "23",
+ "y1": "59",
+ "x2": "23",
+ "y2": "44"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "43",
+ "x2": "23",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "43",
+ "x2": "23",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 23,23 41,23 "
+ },
+ "children": []
+ }]
+};
+exports.software_pathfinder_subtract = software_pathfinder_subtract;
\ No newline at end of file
diff --git a/dist/linea/software_pathfinder_unite.js b/dist/linea/software_pathfinder_unite.js
new file mode 100644
index 000000000..6cb45c392
--- /dev/null
+++ b/dist/linea/software_pathfinder_unite.js
@@ -0,0 +1,311 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_pathfinder_unite = void 0;
+var software_pathfinder_unite = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "23",
+ "x2": "41",
+ "y2": "25"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "23",
+ "x2": "41",
+ "y2": "25"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "41",
+ "y1": "27",
+ "x2": "41",
+ "y2": "38"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "41",
+ "y1": "27",
+ "x2": "41",
+ "y2": "38"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,39 41,41 39,41 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,39 41,41 39,41 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "37",
+ "y1": "41",
+ "x2": "26",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "37",
+ "y1": "41",
+ "x2": "26",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "41",
+ "x2": "23",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "41",
+ "x2": "23",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,41 1,41 1,1 41,1 41,23 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,23 63,23 63,63 23,63 23,41 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "41",
+ "x2": "23",
+ "y2": "39"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "41",
+ "x2": "23",
+ "y2": "39"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "23",
+ "y1": "37",
+ "x2": "23",
+ "y2": "26"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "23",
+ "y1": "37",
+ "x2": "23",
+ "y2": "26"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,25 23,23 25,23 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "23,25 23,23 25,23 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "27",
+ "y1": "23",
+ "x2": "38",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "27",
+ "y1": "23",
+ "x2": "38",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "23",
+ "x2": "41",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "23",
+ "x2": "41",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.software_pathfinder_unite = software_pathfinder_unite;
\ No newline at end of file
diff --git a/dist/linea/software_pen.js b/dist/linea/software_pen.js
new file mode 100644
index 000000000..565d3c3bb
--- /dev/null
+++ b/dist/linea/software_pen.js
@@ -0,0 +1,72 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_pen = void 0;
+var software_pen = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "23",
+ "y": "57",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "18",
+ "height": "6"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "19",
+ "y": "47",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "26",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "28.875",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "1",
+ "x2": "32",
+ "y2": "25"
+ },
+ "children": []
+ }]
+};
+exports.software_pen = software_pen;
\ No newline at end of file
diff --git a/dist/linea/software_pen_add.js b/dist/linea/software_pen_add.js
new file mode 100644
index 000000000..b8bd9034b
--- /dev/null
+++ b/dist/linea/software_pen_add.js
@@ -0,0 +1,73 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_pen_add = void 0;
+var software_pen_add = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "23",
+ "y": "57",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "18",
+ "height": "6"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "19",
+ "y": "47",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "26",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "23",
+ "x2": "32",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "30",
+ "x2": "25",
+ "y2": "30"
+ },
+ "children": []
+ }]
+};
+exports.software_pen_add = software_pen_add;
\ No newline at end of file
diff --git a/dist/linea/software_pen_remove.js b/dist/linea/software_pen_remove.js
new file mode 100644
index 000000000..6d35a7061
--- /dev/null
+++ b/dist/linea/software_pen_remove.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_pen_remove = void 0;
+var software_pen_remove = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "23",
+ "y": "57",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "18",
+ "height": "6"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "19",
+ "y": "47",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "26",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41,47 41,43 48,30 32,1 16,30 23,43 23,47 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "30",
+ "x2": "25",
+ "y2": "30"
+ },
+ "children": []
+ }]
+};
+exports.software_pen_remove = software_pen_remove;
\ No newline at end of file
diff --git a/dist/linea/software_pencil.js b/dist/linea/software_pencil.js
new file mode 100644
index 000000000..1eecc5553
--- /dev/null
+++ b/dist/linea/software_pencil.js
@@ -0,0 +1,87 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_pencil = void 0;
+var software_pencil = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "54",
+ "x2": "10",
+ "y2": "44"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "54",
+ "x2": "10",
+ "y2": "44"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "10,44 1,62 2,63 20,54 63,11 53,1 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "54",
+ "y1": "20",
+ "x2": "44",
+ "y2": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "58",
+ "y1": "16",
+ "x2": "48",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,54 9,55 10,59 "
+ },
+ "children": []
+ }]
+};
+exports.software_pencil = software_pencil;
\ No newline at end of file
diff --git a/dist/linea/software_polygonallasso.js b/dist/linea/software_polygonallasso.js
new file mode 100644
index 000000000..73e4c88dc
--- /dev/null
+++ b/dist/linea/software_polygonallasso.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_polygonallasso = void 0;
+var software_polygonallasso = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "21",
+ "cy": "53",
+ "rx": "6",
+ "ry": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M25,56c0,0,2,1,2,4s-2,3-2,3"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,49 5,12 40,18 59,1 59,41 26,51 "
+ },
+ "children": []
+ }]
+};
+exports.software_polygonallasso = software_polygonallasso;
\ No newline at end of file
diff --git a/dist/linea/software_reflect_horizontal.js b/dist/linea/software_reflect_horizontal.js
new file mode 100644
index 000000000..bb192c795
--- /dev/null
+++ b/dist/linea/software_reflect_horizontal.js
@@ -0,0 +1,290 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_reflect_horizontal = void 0;
+var software_reflect_horizontal = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,17 1,57 21,37 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "61.586,55.586 63,57 63,55 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "61.586,55.586 63,57 63,55 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "63",
+ "y1": "53",
+ "x2": "63",
+ "y2": "20"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "63",
+ "y1": "53",
+ "x2": "63",
+ "y2": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,19 63,17 61.586,18.414 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,19 63,17 61.586,18.414 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3.736,1.868",
+ "x1": "60.265",
+ "y1": "19.735",
+ "x2": "45.075",
+ "y2": "34.925"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3.736,1.868",
+ "x1": "60.265",
+ "y1": "19.735",
+ "x2": "45.075",
+ "y2": "34.925"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44.414,35.586 43,37 44.414,38.414 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44.414,35.586 43,37 44.414,38.414 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3.736,1.868",
+ "x1": "45.735",
+ "y1": "39.735",
+ "x2": "60.925",
+ "y2": "54.925"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3.736,1.868",
+ "x1": "45.735",
+ "y1": "39.735",
+ "x2": "60.925",
+ "y2": "54.925"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "61",
+ "x2": "32",
+ "y2": "59"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "61",
+ "x2": "32",
+ "y2": "59"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "57",
+ "x2": "32",
+ "y2": "16"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "32",
+ "y1": "57",
+ "x2": "32",
+ "y2": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "15",
+ "x2": "32",
+ "y2": "13"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "15",
+ "x2": "32",
+ "y2": "13"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "46,13 57,13 57,2 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M57,13C51.378,5.132,42.408,1,32,1\r\n\tC21.591,1,12.622,5.13,7,13"
+ },
+ "children": []
+ }]
+};
+exports.software_reflect_horizontal = software_reflect_horizontal;
\ No newline at end of file
diff --git a/dist/linea/software_reflect_vertical.js b/dist/linea/software_reflect_vertical.js
new file mode 100644
index 000000000..dd7e64a0c
--- /dev/null
+++ b/dist/linea/software_reflect_vertical.js
@@ -0,0 +1,290 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_reflect_vertical = void 0;
+var software_reflect_vertical = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "46,1 6,1 26,21 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "7.414,61.586 6,63 8,63 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "7.414,61.586 6,63 8,63 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "10",
+ "y1": "63",
+ "x2": "43",
+ "y2": "63"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "10",
+ "y1": "63",
+ "x2": "43",
+ "y2": "63"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,63 46,63 44.586,61.586 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,63 46,63 44.586,61.586 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3.736,1.868",
+ "x1": "43.265",
+ "y1": "60.265",
+ "x2": "28.075",
+ "y2": "45.075"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3.736,1.868",
+ "x1": "43.265",
+ "y1": "60.265",
+ "x2": "28.075",
+ "y2": "45.075"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27.414,44.414 26,43 24.586,44.414 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "27.414,44.414 26,43 24.586,44.414 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3.736,1.868",
+ "x1": "23.265",
+ "y1": "45.735",
+ "x2": "8.075",
+ "y2": "60.925"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3.736,1.868",
+ "x1": "23.265",
+ "y1": "45.735",
+ "x2": "8.075",
+ "y2": "60.925"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "2",
+ "y1": "32",
+ "x2": "4",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "2",
+ "y1": "32",
+ "x2": "4",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "6",
+ "y1": "32",
+ "x2": "47",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "6",
+ "y1": "32",
+ "x2": "47",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "32",
+ "x2": "50",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "32",
+ "x2": "50",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "51,46 51,57 \r\n\t62,57 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M51,57c7.868-5.622,12-14.592,12-25\r\n\tc0-10.409-4.13-19.378-12-25"
+ },
+ "children": []
+ }]
+};
+exports.software_reflect_vertical = software_reflect_vertical;
\ No newline at end of file
diff --git a/dist/linea/software_remove_vectorpoint.js b/dist/linea/software_remove_vectorpoint.js
new file mode 100644
index 000000000..c82955f72
--- /dev/null
+++ b/dist/linea/software_remove_vectorpoint.js
@@ -0,0 +1,280 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_remove_vectorpoint = void 0;
+var software_remove_vectorpoint = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "53",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "53",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,22 44,20 42,20 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "44,22 44,20 42,20 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "40",
+ "y1": "20",
+ "x2": "23",
+ "y2": "20"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "40",
+ "y1": "20",
+ "x2": "23",
+ "y2": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,20 20,20 20,22 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,20 20,20 20,22 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "20",
+ "y1": "24",
+ "x2": "20",
+ "y2": "41"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "20",
+ "y1": "24",
+ "x2": "20",
+ "y2": "41"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "20,42 20,44 22,44 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "20,42 20,44 22,44 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "24",
+ "y1": "44",
+ "x2": "41",
+ "y2": "44"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "24",
+ "y1": "44",
+ "x2": "41",
+ "y2": "44"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,44 44,44 44,42 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,44 44,44 44,42 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "44",
+ "y1": "40",
+ "x2": "44",
+ "y2": "23"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "44",
+ "y1": "40",
+ "x2": "44",
+ "y2": "23"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "53",
+ "x2": "20",
+ "y2": "44"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "20",
+ "x2": "53",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "32",
+ "x2": "25",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.software_remove_vectorpoint = software_remove_vectorpoint;
\ No newline at end of file
diff --git a/dist/linea/software_scale_expand.js b/dist/linea/software_scale_expand.js
new file mode 100644
index 000000000..213b722c5
--- /dev/null
+++ b/dist/linea/software_scale_expand.js
@@ -0,0 +1,59 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_scale_expand = void 0;
+var software_scale_expand = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "points": "1,28 1,1 63,1 \r\n\t63,63 36,63 "
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "33",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "30",
+ "height": "30"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "57,18 57,7 46,7 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "57",
+ "y1": "7",
+ "x2": "41",
+ "y2": "23"
+ },
+ "children": []
+ }]
+};
+exports.software_scale_expand = software_scale_expand;
\ No newline at end of file
diff --git a/dist/linea/software_scale_reduce.js b/dist/linea/software_scale_reduce.js
new file mode 100644
index 000000000..5fd45f95b
--- /dev/null
+++ b/dist/linea/software_scale_reduce.js
@@ -0,0 +1,249 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_scale_reduce = void 0;
+var software_scale_reduce = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,30 1,1 63,1 63,63 34,63 "
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "31,35 31,33 29,33 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "31,35 31,33 29,33 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "27",
+ "y1": "33",
+ "x2": "4",
+ "y2": "33"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "27",
+ "y1": "33",
+ "x2": "4",
+ "y2": "33"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "3,33 1,33 1,35 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "3,33 1,33 1,35 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "1",
+ "y1": "37",
+ "x2": "1",
+ "y2": "60"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "1",
+ "y1": "37",
+ "x2": "1",
+ "y2": "60"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,61 1,63 3,63 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,61 1,63 3,63 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "5",
+ "y1": "63",
+ "x2": "28",
+ "y2": "63"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "5",
+ "y1": "63",
+ "x2": "28",
+ "y2": "63"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29,63 31,63 31,61 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29,63 31,63 31,61 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "31",
+ "y1": "59",
+ "x2": "31",
+ "y2": "36"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "31",
+ "y1": "59",
+ "x2": "31",
+ "y2": "36"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "41,12 41,23 \r\n\t52,23 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "23",
+ "x2": "57",
+ "y2": "7"
+ },
+ "children": []
+ }]
+};
+exports.software_scale_reduce = software_scale_reduce;
\ No newline at end of file
diff --git a/dist/linea/software_selection_oval.js b/dist/linea/software_selection_oval.js
new file mode 100644
index 000000000..f263b831b
--- /dev/null
+++ b/dist/linea/software_selection_oval.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_selection_oval = void 0;
+var software_selection_oval = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.0012,2.0006",
+ "cx": "32",
+ "cy": "32",
+ "rx": "31",
+ "ry": "20"
+ },
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.0012,2.0006",
+ "cx": "32",
+ "cy": "32",
+ "rx": "31",
+ "ry": "20"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_selection_oval = software_selection_oval;
\ No newline at end of file
diff --git a/dist/linea/software_selection_polygon.js b/dist/linea/software_selection_polygon.js
new file mode 100644
index 000000000..8468e0bfc
--- /dev/null
+++ b/dist/linea/software_selection_polygon.js
@@ -0,0 +1,311 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_selection_polygon = void 0;
+var software_selection_polygon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "19,59 16.675,59 15.851,57.261 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "19,59 16.675,59 15.851,57.261 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1609,2.0805",
+ "x1": "14.661",
+ "y1": "55.451",
+ "x2": "2.851",
+ "y2": "34.644"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1609,2.0805",
+ "x1": "14.661",
+ "y1": "55.451",
+ "x2": "2.851",
+ "y2": "34.644"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "2.338,33.739 1.351,32 2.338,30.261 \t\t\r\n\t\t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "2.338,33.739 1.351,32 2.338,30.261 \t\t\r\n\t\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1609,2.0805",
+ "x1": "3.365",
+ "y1": "28.451",
+ "x2": "15.175",
+ "y2": "7.644"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1609,2.0805",
+ "x1": "3.365",
+ "y1": "28.451",
+ "x2": "15.175",
+ "y2": "7.644"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "15.851,6.739 16.675,5 19,5 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "15.851,6.739 16.675,5 19,5 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "21",
+ "y1": "5",
+ "x2": "44",
+ "y2": "5"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "21",
+ "y1": "5",
+ "x2": "44",
+ "y2": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "45,5 47.325,5 48.149,6.739 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "45,5 47.325,5 48.149,6.739 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1609,2.0805",
+ "x1": "49.339",
+ "y1": "8.549",
+ "x2": "61.149",
+ "y2": "29.356"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1609,2.0805",
+ "x1": "49.339",
+ "y1": "8.549",
+ "x2": "61.149",
+ "y2": "29.356"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "61.662,30.261 62.649,32 61.662,33.739 \r\n\t\t\t\t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "61.662,30.261 62.649,32 61.662,33.739 \r\n\t\t\t\t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1609,2.0805",
+ "x1": "60.635",
+ "y1": "35.549",
+ "x2": "48.825",
+ "y2": "56.356"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4.1609,2.0805",
+ "x1": "60.635",
+ "y1": "35.549",
+ "x2": "48.825",
+ "y2": "56.356"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "48.149,57.261 47.325,59 45,59 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "48.149,57.261 47.325,59 45,59 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "43",
+ "y1": "59",
+ "x2": "20",
+ "y2": "59"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "43",
+ "y1": "59",
+ "x2": "20",
+ "y2": "59"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.software_selection_polygon = software_selection_polygon;
\ No newline at end of file
diff --git a/dist/linea/software_selection_rectangle.js b/dist/linea/software_selection_rectangle.js
new file mode 100644
index 000000000..809780126
--- /dev/null
+++ b/dist/linea/software_selection_rectangle.js
@@ -0,0 +1,215 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_selection_rectangle = void 0;
+var software_selection_rectangle = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,50 63,52 61,52 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,50 63,52 61,52 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "59",
+ "y1": "52",
+ "x2": "4",
+ "y2": "52"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "59",
+ "y1": "52",
+ "x2": "4",
+ "y2": "52"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "3,52 1,52 1,50 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "3,52 1,52 1,50 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "1",
+ "y1": "48",
+ "x2": "1",
+ "y2": "15"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "1",
+ "y1": "48",
+ "x2": "1",
+ "y2": "15"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,14 1,12 3,12 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,14 1,12 3,12 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "5",
+ "y1": "12",
+ "x2": "60",
+ "y2": "12"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "5",
+ "y1": "12",
+ "x2": "60",
+ "y2": "12"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "61,12 63,12 63,14 \t\t"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "61,12 63,12 63,14 \t\t"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "63",
+ "y1": "16",
+ "x2": "63",
+ "y2": "49"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "4,2",
+ "x1": "63",
+ "y1": "16",
+ "x2": "63",
+ "y2": "49"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.software_selection_rectangle = software_selection_rectangle;
\ No newline at end of file
diff --git a/dist/linea/software_selection_roundedrectangle.js b/dist/linea/software_selection_roundedrectangle.js
new file mode 100644
index 000000000..b89b0bb2e
--- /dev/null
+++ b/dist/linea/software_selection_roundedrectangle.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_selection_roundedrectangle = void 0;
+var software_selection_roundedrectangle = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3.9436,1.9718",
+ "d": "M63,40\r\n\t\tc0,6.627-5.373,12-12,12H13C6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "stroke-dasharray": "3.9436,1.9718",
+ "d": "M63,40\r\n\t\tc0,6.627-5.373,12-12,12H13C6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.software_selection_roundedrectangle = software_selection_roundedrectangle;
\ No newline at end of file
diff --git a/dist/linea/software_shape_oval.js b/dist/linea/software_shape_oval.js
new file mode 100644
index 000000000..e902c3066
--- /dev/null
+++ b/dist/linea/software_shape_oval.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_shape_oval = void 0;
+var software_shape_oval = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "ellipse",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "rx": "31",
+ "ry": "20"
+ },
+ "children": []
+ }]
+};
+exports.software_shape_oval = software_shape_oval;
\ No newline at end of file
diff --git a/dist/linea/software_shape_polygon.js b/dist/linea/software_shape_polygon.js
new file mode 100644
index 000000000..77e08b9df
--- /dev/null
+++ b/dist/linea/software_shape_polygon.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_shape_polygon = void 0;
+var software_shape_polygon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "16.675,59 1.351,32 16.675,5 47.325,5 \r\n\t62.649,32 47.325,59 "
+ },
+ "children": []
+ }]
+};
+exports.software_shape_polygon = software_shape_polygon;
\ No newline at end of file
diff --git a/dist/linea/software_shape_rectangle.js b/dist/linea/software_shape_rectangle.js
new file mode 100644
index 000000000..08ae9765e
--- /dev/null
+++ b/dist/linea/software_shape_rectangle.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_shape_rectangle = void 0;
+var software_shape_rectangle = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "12",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "62",
+ "height": "40"
+ },
+ "children": []
+ }]
+};
+exports.software_shape_rectangle = software_shape_rectangle;
\ No newline at end of file
diff --git a/dist/linea/software_shape_roundedrectangle.js b/dist/linea/software_shape_roundedrectangle.js
new file mode 100644
index 000000000..9daadd3da
--- /dev/null
+++ b/dist/linea/software_shape_roundedrectangle.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_shape_roundedrectangle = void 0;
+var software_shape_roundedrectangle = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M63,40c0,6.627-5.373,12-12,12H13\r\n\tC6.373,52,1,46.627,1,40V24c0-6.627,5.373-12,12-12h38c6.627,0,12,5.373,12,12V40z"
+ },
+ "children": []
+ }]
+};
+exports.software_shape_roundedrectangle = software_shape_roundedrectangle;
\ No newline at end of file
diff --git a/dist/linea/software_slice.js b/dist/linea/software_slice.js
new file mode 100644
index 000000000..24c00d368
--- /dev/null
+++ b/dist/linea/software_slice.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_slice = void 0;
+var software_slice = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "1,59 37,23 44,30 \r\n\t36,45 "
+ },
+ "children": []
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,20 57,3 63,9 \r\n\t47,27 "
+ },
+ "children": []
+ }]
+};
+exports.software_slice = software_slice;
\ No newline at end of file
diff --git a/dist/linea/software_transform_bezier.js b/dist/linea/software_transform_bezier.js
new file mode 100644
index 000000000..f751572a2
--- /dev/null
+++ b/dist/linea/software_transform_bezier.js
@@ -0,0 +1,94 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_transform_bezier = void 0;
+var software_transform_bezier = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "41",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "53",
+ "y": "41",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "27",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "4",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "60",
+ "cy": "18",
+ "r": "3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7,18h20C6,18,6,41,6,41"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M57,18H37c21,0,21,23,21,23"
+ },
+ "children": []
+ }]
+};
+exports.software_transform_bezier = software_transform_bezier;
\ No newline at end of file
diff --git a/dist/linea/software_vector_box.js b/dist/linea/software_vector_box.js
new file mode 100644
index 000000000..212c56a23
--- /dev/null
+++ b/dist/linea/software_vector_box.js
@@ -0,0 +1,115 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_vector_box = void 0;
+var software_vector_box = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "53",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "53",
+ "y": "53",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "53",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "11",
+ "x2": "6",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "58",
+ "y1": "11",
+ "x2": "58",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "53",
+ "y1": "6",
+ "x2": "11",
+ "y2": "6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "53",
+ "y1": "58",
+ "x2": "11",
+ "y2": "58"
+ },
+ "children": []
+ }]
+};
+exports.software_vector_box = software_vector_box;
\ No newline at end of file
diff --git a/dist/linea/software_vector_composite.js b/dist/linea/software_vector_composite.js
new file mode 100644
index 000000000..2f6745746
--- /dev/null
+++ b/dist/linea/software_vector_composite.js
@@ -0,0 +1,76 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_vector_composite = void 0;
+var software_vector_composite = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "53",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "53",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "27",
+ "y": "27",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "53",
+ "x2": "27",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "27",
+ "x2": "53",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.software_vector_composite = software_vector_composite;
\ No newline at end of file
diff --git a/dist/linea/software_vector_line.js b/dist/linea/software_vector_line.js
new file mode 100644
index 000000000..3f675620e
--- /dev/null
+++ b/dist/linea/software_vector_line.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_vector_line = void 0;
+var software_vector_line = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "x": "1",
+ "y": "53",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "53",
+ "y": "1",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "10",
+ "height": "10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "53",
+ "x2": "53",
+ "y2": "11"
+ },
+ "children": []
+ }]
+};
+exports.software_vector_line = software_vector_line;
\ No newline at end of file
diff --git a/dist/linea/software_vertical_align_bottom.js b/dist/linea/software_vertical_align_bottom.js
new file mode 100644
index 000000000..f9d8ed537
--- /dev/null
+++ b/dist/linea/software_vertical_align_bottom.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_vertical_align_bottom = void 0;
+var software_vertical_align_bottom = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "63",
+ "x2": "0",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "13",
+ "y": "5",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "52"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "35",
+ "y": "17",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "40"
+ },
+ "children": []
+ }]
+};
+exports.software_vertical_align_bottom = software_vertical_align_bottom;
\ No newline at end of file
diff --git a/dist/linea/software_vertical_align_center.js b/dist/linea/software_vertical_align_center.js
new file mode 100644
index 000000000..21a420dd6
--- /dev/null
+++ b/dist/linea/software_vertical_align_center.js
@@ -0,0 +1,76 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_vertical_align_center = void 0;
+var software_vertical_align_center = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "13",
+ "y1": "32",
+ "x2": "0",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "32",
+ "x2": "51",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "32",
+ "x2": "29",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "13",
+ "y": "6",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "52"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "35",
+ "y": "12",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "40"
+ },
+ "children": []
+ }]
+};
+exports.software_vertical_align_center = software_vertical_align_center;
\ No newline at end of file
diff --git a/dist/linea/software_vertical_align_top.js b/dist/linea/software_vertical_align_top.js
new file mode 100644
index 000000000..2582e294b
--- /dev/null
+++ b/dist/linea/software_vertical_align_top.js
@@ -0,0 +1,50 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_vertical_align_top = void 0;
+var software_vertical_align_top = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "1",
+ "x2": "64",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "13",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "52"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "35",
+ "y": "7",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "16",
+ "height": "40"
+ },
+ "children": []
+ }]
+};
+exports.software_vertical_align_top = software_vertical_align_top;
\ No newline at end of file
diff --git a/dist/linea/software_vertical_distribute_bottom.js b/dist/linea/software_vertical_distribute_bottom.js
new file mode 100644
index 000000000..9b9037944
--- /dev/null
+++ b/dist/linea/software_vertical_distribute_bottom.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_vertical_distribute_bottom = void 0;
+var software_vertical_distribute_bottom = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "29",
+ "x2": "64",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "51",
+ "x2": "64",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "40",
+ "height": "16"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "6",
+ "y": "35",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "16"
+ },
+ "children": []
+ }]
+};
+exports.software_vertical_distribute_bottom = software_vertical_distribute_bottom;
\ No newline at end of file
diff --git a/dist/linea/software_vertical_distribute_center.js b/dist/linea/software_vertical_distribute_center.js
new file mode 100644
index 000000000..90a3a156f
--- /dev/null
+++ b/dist/linea/software_vertical_distribute_center.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_vertical_distribute_center = void 0;
+var software_vertical_distribute_center = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "21",
+ "x2": "12",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52",
+ "y1": "21",
+ "x2": "64",
+ "y2": "21"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "43",
+ "x2": "6",
+ "y2": "43"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "58",
+ "y1": "43",
+ "x2": "64",
+ "y2": "43"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "40",
+ "height": "16"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "6",
+ "y": "35",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "16"
+ },
+ "children": []
+ }]
+};
+exports.software_vertical_distribute_center = software_vertical_distribute_center;
\ No newline at end of file
diff --git a/dist/linea/software_vertical_distribute_top.js b/dist/linea/software_vertical_distribute_top.js
new file mode 100644
index 000000000..9ef70e08b
--- /dev/null
+++ b/dist/linea/software_vertical_distribute_top.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.software_vertical_distribute_top = void 0;
+var software_vertical_distribute_top = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "35",
+ "x2": "0",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "13",
+ "x2": "0",
+ "y2": "13"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "6",
+ "y": "35",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "52",
+ "height": "16"
+ },
+ "children": []
+ }, {
+ "name": "rect",
+ "attribs": {
+ "x": "12",
+ "y": "13",
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "width": "40",
+ "height": "16"
+ },
+ "children": []
+ }]
+};
+exports.software_vertical_distribute_top = software_vertical_distribute_top;
\ No newline at end of file
diff --git a/dist/linea/weather_aquarius.js b/dist/linea/weather_aquarius.js
new file mode 100644
index 000000000..20c9699fc
--- /dev/null
+++ b/dist/linea/weather_aquarius.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_aquarius = void 0;
+var weather_aquarius = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "0,28 16,16 20,28 36,16 40,28 55,16 63,28 \r\n\t"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "0,48 16,36 20,48 36,36 40,48 55,36 63,48 \r\n\t"
+ },
+ "children": []
+ }]
+};
+exports.weather_aquarius = weather_aquarius;
\ No newline at end of file
diff --git a/dist/linea/weather_aries.js b/dist/linea/weather_aries.js
new file mode 100644
index 000000000..8baadf83e
--- /dev/null
+++ b/dist/linea/weather_aries.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_aries = void 0;
+var weather_aries = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M6,25c0,0-5-5-5-11S3,1,13,1c13.25,0,19,22,19,63"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M58,25c0,0,5-5,5-11S61,1,51,1C37.75,1,32,23,32,64"
+ },
+ "children": []
+ }]
+};
+exports.weather_aries = weather_aries;
\ No newline at end of file
diff --git a/dist/linea/weather_cancer.js b/dist/linea/weather_cancer.js
new file mode 100644
index 000000000..fc4c7c19e
--- /dev/null
+++ b/dist/linea/weather_cancer.js
@@ -0,0 +1,55 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_cancer = void 0;
+var weather_cancer = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "11",
+ "cy": "27",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M5,19c0,0,7-6,28-6c15,0,31,10,31,10"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "53",
+ "cy": "37",
+ "r": "10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M59,45c0,0-7,6-28,6C16,51,0,41,0,41"
+ },
+ "children": []
+ }]
+};
+exports.weather_cancer = weather_cancer;
\ No newline at end of file
diff --git a/dist/linea/weather_capricorn.js b/dist/linea/weather_capricorn.js
new file mode 100644
index 000000000..95e0bdc66
--- /dev/null
+++ b/dist/linea/weather_capricorn.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_capricorn = void 0;
+var weather_capricorn = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M9,5c0,0,0-4,6-4c5,0,4,10,4,10v29"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M19,11c0,0,0-10,7-10s7,10,7,10v29c0,0-1,14,15,14"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48,40c-3,0-12,1-12,12c0,1,1,11-12,11"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48,54c3.866,0,7-3.134,7-7s-3.134-7-7-7"
+ },
+ "children": []
+ }]
+};
+exports.weather_capricorn = weather_capricorn;
\ No newline at end of file
diff --git a/dist/linea/weather_cloud.js b/dist/linea/weather_cloud.js
new file mode 100644
index 000000000..2472184ae
--- /dev/null
+++ b/dist/linea/weather_cloud.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_cloud = void 0;
+var weather_cloud = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,50c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20c-10.102,0-19.2,6.423-21,16c0,0-1.165,0-2,0C5.292,29,1,34.292,1,40s4.292,10,10,10H55z"
+ },
+ "children": []
+ }]
+};
+exports.weather_cloud = weather_cloud;
\ No newline at end of file
diff --git a/dist/linea/weather_cloud_drop.js b/dist/linea/weather_cloud_drop.js
new file mode 100644
index 000000000..b9e84465d
--- /dev/null
+++ b/dist/linea/weather_cloud_drop.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_cloud_drop = void 0;
+var weather_cloud_drop = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8H45"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M23,42c0,5.034,4.136,8,9,8c4.864,0,8-2.966,8-8\r\n\t\tc0-7-8-17-8-17S23,35,23,42z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M23,42c0,5.034,4.136,8,9,8c4.864,0,8-2.966,8-8\r\n\t\tc0-7-8-17-8-17S23,35,23,42z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.weather_cloud_drop = weather_cloud_drop;
\ No newline at end of file
diff --git a/dist/linea/weather_cloud_lightning.js b/dist/linea/weather_cloud_lightning.js
new file mode 100644
index 000000000..36c0e15fc
--- /dev/null
+++ b/dist/linea/weather_cloud_lightning.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_cloud_lightning = void 0;
+var weather_cloud_lightning = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "37,23 23,42 29,42 \r\n\t27,55 41,36 35,36 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8h-9"
+ },
+ "children": []
+ }]
+};
+exports.weather_cloud_lightning = weather_cloud_lightning;
\ No newline at end of file
diff --git a/dist/linea/weather_cloud_snowflake.js b/dist/linea/weather_cloud_snowflake.js
new file mode 100644
index 000000000..e7a29eddd
--- /dev/null
+++ b/dist/linea/weather_cloud_snowflake.js
@@ -0,0 +1,205 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_cloud_snowflake = void 0;
+var weather_cloud_snowflake = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M18,40h-7C5.292,40,1,35.708,1,30s4.292-11,10-11\r\n\tc0.835,0,2,0,2,0C14.8,9.423,23.898,3,34,3c11.414,0,21,8.586,21,20c4.565,0,8,4.435,8,9c0,4.565-3.435,8-8,8h-9"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "21,37 23,40 21,43 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "43,43 41,40 43,37 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "40",
+ "x2": "23",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "40",
+ "x2": "34",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "29,51 32,49 35,51 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "35,29 32,31 29,29 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "42",
+ "x2": "32",
+ "y2": "49"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "31",
+ "x2": "32",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "26.343,30.101 25.636,33.636 \r\n\t22.101,34.343 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "37.657,49.899 38.364,46.364 \r\n\t41.899,45.657 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "38",
+ "x2": "25.636",
+ "y2": "33.636"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38.364",
+ "y1": "46.364",
+ "x2": "34",
+ "y2": "42"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22.101,45.657 25.636,46.364 \r\n\t26.343,49.899 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "41.899,34.343 38.364,33.636 \r\n\t37.657,30.101 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "42",
+ "x2": "25.636",
+ "y2": "46.364"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38.364",
+ "y1": "33.636",
+ "x2": "34",
+ "y2": "38"
+ },
+ "children": []
+ }]
+};
+exports.weather_cloud_snowflake = weather_cloud_snowflake;
\ No newline at end of file
diff --git a/dist/linea/weather_downpour_fullmoon.js b/dist/linea/weather_downpour_fullmoon.js
new file mode 100644
index 000000000..a11afb0bc
--- /dev/null
+++ b/dist/linea/weather_downpour_fullmoon.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_downpour_fullmoon = void 0;
+var weather_downpour_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "48",
+ "x2": "12",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "48",
+ "x2": "22",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "48",
+ "x2": "32",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "48",
+ "x2": "42",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_downpour_fullmoon = weather_downpour_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_downpour_halfmoon.js b/dist/linea/weather_downpour_halfmoon.js
new file mode 100644
index 000000000..82e84b885
--- /dev/null
+++ b/dist/linea/weather_downpour_halfmoon.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_downpour_halfmoon = void 0;
+var weather_downpour_halfmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "48",
+ "x2": "12",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "48",
+ "x2": "22",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "48",
+ "x2": "32",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "48",
+ "x2": "42",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_downpour_halfmoon = weather_downpour_halfmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_downpour_sun.js b/dist/linea/weather_downpour_sun.js
new file mode 100644
index 000000000..23ce76b20
--- /dev/null
+++ b/dist/linea/weather_downpour_sun.js
@@ -0,0 +1,122 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_downpour_sun = void 0;
+var weather_downpour_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "22",
+ "x2": "0",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "6",
+ "x2": "22",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "10",
+ "x2": "4",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "48",
+ "x2": "12",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "48",
+ "x2": "22",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "48",
+ "x2": "32",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "48",
+ "x2": "42",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_downpour_sun = weather_downpour_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_drop.js b/dist/linea/weather_drop.js
new file mode 100644
index 000000000..89a6f7c4d
--- /dev/null
+++ b/dist/linea/weather_drop.js
@@ -0,0 +1,35 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_drop = void 0;
+var weather_drop = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M11,41.265C11.052,53.27,20.401,63,32,63\r\n\t\ts21-9.73,21-21.735C53,25.729,32.035,1,32.035,1S10.931,25.729,11,41.265z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M11,41.265C11.052,53.27,20.401,63,32,63\r\n\t\ts21-9.73,21-21.735C53,25.729,32.035,1,32.035,1S10.931,25.729,11,41.265z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.weather_drop = weather_drop;
\ No newline at end of file
diff --git a/dist/linea/weather_fog.js b/dist/linea/weather_fog.js
new file mode 100644
index 000000000..606994ecc
--- /dev/null
+++ b/dist/linea/weather_fog.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_fog = void 0;
+var weather_fog = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "13",
+ "y1": "40",
+ "x2": "53",
+ "y2": "40"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "13",
+ "y1": "48",
+ "x2": "53",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "13",
+ "y1": "56",
+ "x2": "53",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.weather_fog = weather_fog;
\ No newline at end of file
diff --git a/dist/linea/weather_fog_fullmoon.js b/dist/linea/weather_fog_fullmoon.js
new file mode 100644
index 000000000..689912eaf
--- /dev/null
+++ b/dist/linea/weather_fog_fullmoon.js
@@ -0,0 +1,70 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_fog_fullmoon = void 0;
+var weather_fog_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "45",
+ "x2": "54",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "51",
+ "x2": "54",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "57",
+ "x2": "54",
+ "y2": "57"
+ },
+ "children": []
+ }]
+};
+exports.weather_fog_fullmoon = weather_fog_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_fog_halfmoon.js b/dist/linea/weather_fog_halfmoon.js
new file mode 100644
index 000000000..8affe022e
--- /dev/null
+++ b/dist/linea/weather_fog_halfmoon.js
@@ -0,0 +1,70 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_fog_halfmoon = void 0;
+var weather_fog_halfmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "45",
+ "x2": "54",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "51",
+ "x2": "54",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "57",
+ "x2": "54",
+ "y2": "57"
+ },
+ "children": []
+ }]
+};
+exports.weather_fog_halfmoon = weather_fog_halfmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_fog_sun.js b/dist/linea/weather_fog_sun.js
new file mode 100644
index 000000000..b45a45721
--- /dev/null
+++ b/dist/linea/weather_fog_sun.js
@@ -0,0 +1,109 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_fog_sun = void 0;
+var weather_fog_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "22",
+ "x2": "0",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "6",
+ "x2": "22",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "10",
+ "x2": "4",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "45",
+ "x2": "54",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "51",
+ "x2": "54",
+ "y2": "51"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "57",
+ "x2": "54",
+ "y2": "57"
+ },
+ "children": []
+ }]
+};
+exports.weather_fog_sun = weather_fog_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_fullmoon.js b/dist/linea/weather_fullmoon.js
new file mode 100644
index 000000000..d83ff4163
--- /dev/null
+++ b/dist/linea/weather_fullmoon.js
@@ -0,0 +1,23 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_fullmoon = void 0;
+var weather_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }]
+};
+exports.weather_fullmoon = weather_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_gemini.js b/dist/linea/weather_gemini.js
new file mode 100644
index 000000000..e1782f86e
--- /dev/null
+++ b/dist/linea/weather_gemini.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_gemini = void 0;
+var weather_gemini = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M0,8c0,0,16,4,32,4s32-4,32-4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M64,56c0,0-16-4-32-4S0,56,0,56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "12",
+ "x2": "21",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "43",
+ "y1": "12",
+ "x2": "43",
+ "y2": "52"
+ },
+ "children": []
+ }]
+};
+exports.weather_gemini = weather_gemini;
\ No newline at end of file
diff --git a/dist/linea/weather_hail.js b/dist/linea/weather_hail.js
new file mode 100644
index 000000000..8e74f9d83
--- /dev/null
+++ b/dist/linea/weather_hail.js
@@ -0,0 +1,151 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_hail = void 0;
+var weather_hail = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "45",
+ "x2": "19",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "45",
+ "x2": "9",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "45",
+ "x2": "29",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "45",
+ "x2": "39",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "54",
+ "y1": "45",
+ "x2": "49",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "59",
+ "x2": "16",
+ "y2": "61"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "59",
+ "x2": "6",
+ "y2": "61"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "59",
+ "x2": "26",
+ "y2": "61"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "59",
+ "x2": "36",
+ "y2": "61"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "59",
+ "x2": "46",
+ "y2": "61"
+ },
+ "children": []
+ }]
+};
+exports.weather_hail = weather_hail;
\ No newline at end of file
diff --git a/dist/linea/weather_hail_fullmoon.js b/dist/linea/weather_hail_fullmoon.js
new file mode 100644
index 000000000..45238dee5
--- /dev/null
+++ b/dist/linea/weather_hail_fullmoon.js
@@ -0,0 +1,135 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_hail_fullmoon = void 0;
+var weather_hail_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "48",
+ "x2": "16",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "48",
+ "x2": "26",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "48",
+ "x2": "36",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "48",
+ "x2": "46",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "60",
+ "x2": "14",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "60",
+ "x2": "24",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "60",
+ "x2": "34",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "60",
+ "x2": "44",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_hail_fullmoon = weather_hail_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_hail_halfmoon.js b/dist/linea/weather_hail_halfmoon.js
new file mode 100644
index 000000000..061b91f3e
--- /dev/null
+++ b/dist/linea/weather_hail_halfmoon.js
@@ -0,0 +1,135 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_hail_halfmoon = void 0;
+var weather_hail_halfmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "48",
+ "x2": "16",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "48",
+ "x2": "26",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "48",
+ "x2": "36",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "48",
+ "x2": "46",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "60",
+ "x2": "14",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "60",
+ "x2": "24",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "60",
+ "x2": "34",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "60",
+ "x2": "44",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_hail_halfmoon = weather_hail_halfmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_hail_sun.js b/dist/linea/weather_hail_sun.js
new file mode 100644
index 000000000..d5be6ebaa
--- /dev/null
+++ b/dist/linea/weather_hail_sun.js
@@ -0,0 +1,174 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_hail_sun = void 0;
+var weather_hail_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "22",
+ "x2": "0",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "6",
+ "x2": "22",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "10",
+ "x2": "4",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "48",
+ "x2": "16",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "48",
+ "x2": "26",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "48",
+ "x2": "36",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "48",
+ "x2": "46",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "60",
+ "x2": "14",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "60",
+ "x2": "24",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "60",
+ "x2": "34",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "60",
+ "x2": "44",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_hail_sun = weather_hail_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_last_quarter.js b/dist/linea/weather_last_quarter.js
new file mode 100644
index 000000000..0c9c0008e
--- /dev/null
+++ b/dist/linea/weather_last_quarter.js
@@ -0,0 +1,166 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_last_quarter = void 0;
+var weather_last_quarter = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "59",
+ "x2": "47",
+ "y2": "59"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "53",
+ "x2": "55",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "47",
+ "x2": "59",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "41",
+ "x2": "62",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "35",
+ "x2": "63",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "1",
+ "x2": "32",
+ "y2": "63"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "29",
+ "x2": "63",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "23",
+ "x2": "62",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "17",
+ "x2": "59",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "11",
+ "x2": "55",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "5",
+ "x2": "47",
+ "y2": "5"
+ },
+ "children": []
+ }]
+};
+exports.weather_last_quarter = weather_last_quarter;
\ No newline at end of file
diff --git a/dist/linea/weather_leo.js b/dist/linea/weather_leo.js
new file mode 100644
index 000000000..bf50176a6
--- /dev/null
+++ b/dist/linea/weather_leo.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_leo = void 0;
+var weather_leo = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M22.649,33.597\r\n\tc-8.337-4.888-11.134-15.608-6.247-23.946C21.29,1.312,32.012-1.485,40.35,3.403c8.337,4.888,11.134,15.608,6.247,23.946\r\n\tC46.597,27.35,36,46,36,54"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "19",
+ "cy": "42",
+ "r": "9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M53.064,58c-1.473,2.963-4.531,5-8.064,5\r\n\tc-4.971,0-9-4.029-9-9"
+ },
+ "children": []
+ }]
+};
+exports.weather_leo = weather_leo;
\ No newline at end of file
diff --git a/dist/linea/weather_libra.js b/dist/linea/weather_libra.js
new file mode 100644
index 000000000..b02900cce
--- /dev/null
+++ b/dist/linea/weather_libra.js
@@ -0,0 +1,60 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_libra = void 0;
+var weather_libra = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41.667,38.002\r\n\tc3.913-2.939,6.444-7.619,6.444-12.891C48.111,16.213,40.897,9,32,9s-16.111,7.213-16.111,16.111c0,5.27,2.53,9.948,6.442,12.889"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "38",
+ "x2": "23",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "38",
+ "x2": "64",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "55",
+ "x2": "64",
+ "y2": "55"
+ },
+ "children": []
+ }]
+};
+exports.weather_libra = weather_libra;
\ No newline at end of file
diff --git a/dist/linea/weather_lightning.js b/dist/linea/weather_lightning.js
new file mode 100644
index 000000000..ed71b46fa
--- /dev/null
+++ b/dist/linea/weather_lightning.js
@@ -0,0 +1,22 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_lightning = void 0;
+var weather_lightning = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "40,1 17,37 31,37 \r\n\t24,63 50,27 36,27 "
+ },
+ "children": []
+ }]
+};
+exports.weather_lightning = weather_lightning;
\ No newline at end of file
diff --git a/dist/linea/weather_mistyrain.js b/dist/linea/weather_mistyrain.js
new file mode 100644
index 000000000..e36e48f9e
--- /dev/null
+++ b/dist/linea/weather_mistyrain.js
@@ -0,0 +1,216 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_mistyrain = void 0;
+var weather_mistyrain = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "17",
+ "y1": "59",
+ "x2": "16",
+ "y2": "61"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "59",
+ "x2": "6",
+ "y2": "61"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "59",
+ "x2": "26",
+ "y2": "61"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "59",
+ "x2": "36",
+ "y2": "61"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "59",
+ "x2": "46",
+ "y2": "61"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "52",
+ "x2": "23",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "52",
+ "x2": "13",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "52",
+ "x2": "33",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "52",
+ "x2": "43",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "54",
+ "y1": "52",
+ "x2": "53",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "44",
+ "x2": "18",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "9",
+ "y1": "44",
+ "x2": "8",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "44",
+ "x2": "28",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "44",
+ "x2": "38",
+ "y2": "46"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "49",
+ "y1": "44",
+ "x2": "48",
+ "y2": "46"
+ },
+ "children": []
+ }]
+};
+exports.weather_mistyrain = weather_mistyrain;
\ No newline at end of file
diff --git a/dist/linea/weather_mistyrain_fullmoon.js b/dist/linea/weather_mistyrain_fullmoon.js
new file mode 100644
index 000000000..6f8c57cac
--- /dev/null
+++ b/dist/linea/weather_mistyrain_fullmoon.js
@@ -0,0 +1,187 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_mistyrain_fullmoon = void 0;
+var weather_mistyrain_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "60",
+ "x2": "14",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "60",
+ "x2": "24",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "60",
+ "x2": "34",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "60",
+ "x2": "44",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "48",
+ "x2": "18",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "48",
+ "x2": "28",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "48",
+ "x2": "38",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "49",
+ "y1": "48",
+ "x2": "48",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "54",
+ "x2": "10",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "54",
+ "x2": "20",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31",
+ "y1": "54",
+ "x2": "30",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "54",
+ "x2": "40",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.weather_mistyrain_fullmoon = weather_mistyrain_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_mistyrain_halfmoon.js b/dist/linea/weather_mistyrain_halfmoon.js
new file mode 100644
index 000000000..bd5be354c
--- /dev/null
+++ b/dist/linea/weather_mistyrain_halfmoon.js
@@ -0,0 +1,187 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_mistyrain_halfmoon = void 0;
+var weather_mistyrain_halfmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "60",
+ "x2": "14",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "60",
+ "x2": "24",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "60",
+ "x2": "34",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "60",
+ "x2": "44",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "48",
+ "x2": "18",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "48",
+ "x2": "28",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "48",
+ "x2": "38",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "49",
+ "y1": "48",
+ "x2": "48",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "54",
+ "x2": "10",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "54",
+ "x2": "20",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31",
+ "y1": "54",
+ "x2": "30",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "54",
+ "x2": "40",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.weather_mistyrain_halfmoon = weather_mistyrain_halfmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_mistyrain_sun.js b/dist/linea/weather_mistyrain_sun.js
new file mode 100644
index 000000000..cf6dfc04a
--- /dev/null
+++ b/dist/linea/weather_mistyrain_sun.js
@@ -0,0 +1,226 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_mistyrain_sun = void 0;
+var weather_mistyrain_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "22",
+ "x2": "0",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "6",
+ "x2": "22",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "10",
+ "x2": "4",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "60",
+ "x2": "14",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "25",
+ "y1": "60",
+ "x2": "24",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "35",
+ "y1": "60",
+ "x2": "34",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "60",
+ "x2": "44",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "48",
+ "x2": "18",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "48",
+ "x2": "28",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "39",
+ "y1": "48",
+ "x2": "38",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "49",
+ "y1": "48",
+ "x2": "48",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "54",
+ "x2": "10",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "21",
+ "y1": "54",
+ "x2": "20",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "31",
+ "y1": "54",
+ "x2": "30",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "54",
+ "x2": "40",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.weather_mistyrain_sun = weather_mistyrain_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_moon.js b/dist/linea/weather_moon.js
new file mode 100644
index 000000000..ac9a56c59
--- /dev/null
+++ b/dist/linea/weather_moon.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_moon = void 0;
+var weather_moon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M6,52c14.359,0,26-11.641,26-26\r\n\tc0-9.994-6.729-18.648-15-23c3.396-1.277,8.158-2,12-2c17.121,0,31,13.879,31,31S46.121,63,29,63c-9.505,0-18.313-4.265-24-11\r\n\tC5.23,52.006,5.768,52,6,52z"
+ },
+ "children": []
+ }]
+};
+exports.weather_moon = weather_moon;
\ No newline at end of file
diff --git a/dist/linea/weather_moondown_full.js b/dist/linea/weather_moondown_full.js
new file mode 100644
index 000000000..f041346af
--- /dev/null
+++ b/dist/linea/weather_moondown_full.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_moondown_full = void 0;
+var weather_moondown_full = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "47",
+ "x2": "64",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,53 32,60 \r\n\t39,53 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"
+ },
+ "children": []
+ }]
+};
+exports.weather_moondown_full = weather_moondown_full;
\ No newline at end of file
diff --git a/dist/linea/weather_moondown_half.js b/dist/linea/weather_moondown_half.js
new file mode 100644
index 000000000..44adebf80
--- /dev/null
+++ b/dist/linea/weather_moondown_half.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_moondown_half = void 0;
+var weather_moondown_half = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "47",
+ "x2": "64",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,53 32,60 \r\n\t39,53 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48.158,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19c-0.059,0-0.115,0.008-0.175,0.009C32.574,19.688,33,21.543,33,23.5C33,30.956,26.956,37,19.5,37\r\n\tc-2.323,0-4.51-0.588-6.418-1.621C13.037,35.914,13,36.453,13,37c0,3.668,1.039,7.094,2.841,9.998"
+ },
+ "children": []
+ }]
+};
+exports.weather_moondown_half = weather_moondown_half;
\ No newline at end of file
diff --git a/dist/linea/weather_moonset_full.js b/dist/linea/weather_moonset_full.js
new file mode 100644
index 000000000..2cde4f439
--- /dev/null
+++ b/dist/linea/weather_moonset_full.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_moonset_full = void 0;
+var weather_moonset_full = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "47",
+ "x2": "64",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,60 32,53 \r\n\t25,60 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"
+ },
+ "children": []
+ }]
+};
+exports.weather_moonset_full = weather_moonset_full;
\ No newline at end of file
diff --git a/dist/linea/weather_moonset_half.js b/dist/linea/weather_moonset_half.js
new file mode 100644
index 000000000..3035de842
--- /dev/null
+++ b/dist/linea/weather_moonset_half.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_moonset_half = void 0;
+var weather_moonset_half = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#010101",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "47",
+ "x2": "64",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#010101",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,53 32,60 \r\n\t39,53 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#010101",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48.158,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19c-0.059,0-0.115,0.008-0.175,0.009C32.574,19.688,33,21.543,33,23.5C33,30.956,26.956,37,19.5,37\r\n\tc-2.323,0-4.51-0.588-6.418-1.621C13.037,35.914,13,36.453,13,37c0,3.668,1.039,7.094,2.841,9.998"
+ },
+ "children": []
+ }]
+};
+exports.weather_moonset_half = weather_moonset_half;
\ No newline at end of file
diff --git a/dist/linea/weather_move2.js b/dist/linea/weather_move2.js
new file mode 100644
index 000000000..f7bd70f18
--- /dev/null
+++ b/dist/linea/weather_move2.js
@@ -0,0 +1,166 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_move2 = void 0;
+var weather_move2 = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "5",
+ "x2": "17",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "11",
+ "x2": "9",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "17",
+ "x2": "5",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "23",
+ "x2": "2",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "29",
+ "x2": "1",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "63",
+ "x2": "32",
+ "y2": "1"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "35",
+ "x2": "1",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "41",
+ "x2": "2",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "47",
+ "x2": "5",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "53",
+ "x2": "9",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "59",
+ "x2": "17",
+ "y2": "59"
+ },
+ "children": []
+ }]
+};
+exports.weather_move2 = weather_move2;
\ No newline at end of file
diff --git a/dist/linea/weather_newmoon.js b/dist/linea/weather_newmoon.js
new file mode 100644
index 000000000..3af4203f7
--- /dev/null
+++ b/dist/linea/weather_newmoon.js
@@ -0,0 +1,153 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_newmoon = void 0;
+var weather_newmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "5",
+ "x2": "17",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "55",
+ "y1": "11",
+ "x2": "9",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "59",
+ "y1": "17",
+ "x2": "5",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "62",
+ "y1": "23",
+ "x2": "2",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "29",
+ "x2": "1",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "35",
+ "x2": "1",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "62",
+ "y1": "41",
+ "x2": "2",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "59",
+ "y1": "47",
+ "x2": "5",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "55",
+ "y1": "53",
+ "x2": "9",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "59",
+ "x2": "17",
+ "y2": "59"
+ },
+ "children": []
+ }]
+};
+exports.weather_newmoon = weather_newmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_pisces.js b/dist/linea/weather_pisces.js
new file mode 100644
index 000000000..a86812e01
--- /dev/null
+++ b/dist/linea/weather_pisces.js
@@ -0,0 +1,44 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_pisces = void 0;
+var weather_pisces = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M54,0c0,0-10,16-10,32s10,32,10,32"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M10,64c0,0,10-16,10-32S10,0,10,0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "7",
+ "y1": "32",
+ "x2": "57",
+ "y2": "32"
+ },
+ "children": []
+ }]
+};
+exports.weather_pisces = weather_pisces;
\ No newline at end of file
diff --git a/dist/linea/weather_rain.js b/dist/linea/weather_rain.js
new file mode 100644
index 000000000..64ae2d29d
--- /dev/null
+++ b/dist/linea/weather_rain.js
@@ -0,0 +1,155 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_rain = void 0;
+var weather_rain = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "46",
+ "x2": "22",
+ "y2": "60"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "46",
+ "x2": "22",
+ "y2": "60"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "46",
+ "x2": "12",
+ "y2": "60"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "12",
+ "y1": "46",
+ "x2": "12",
+ "y2": "60"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "46",
+ "x2": "32",
+ "y2": "60"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "46",
+ "x2": "32",
+ "y2": "60"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "46",
+ "x2": "42",
+ "y2": "60"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "46",
+ "x2": "42",
+ "y2": "60"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52",
+ "y1": "46",
+ "x2": "52",
+ "y2": "60"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "52",
+ "y1": "46",
+ "x2": "52",
+ "y2": "60"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.weather_rain = weather_rain;
\ No newline at end of file
diff --git a/dist/linea/weather_rain_fullmoon.js b/dist/linea/weather_rain_fullmoon.js
new file mode 100644
index 000000000..75faad754
--- /dev/null
+++ b/dist/linea/weather_rain_fullmoon.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_rain_fullmoon = void 0;
+var weather_rain_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "48",
+ "x2": "20",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "48",
+ "x2": "30",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "48",
+ "x2": "40",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "48",
+ "x2": "50",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_rain_fullmoon = weather_rain_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_rain_halfmoon.js b/dist/linea/weather_rain_halfmoon.js
new file mode 100644
index 000000000..b3e8ed0b7
--- /dev/null
+++ b/dist/linea/weather_rain_halfmoon.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_rain_halfmoon = void 0;
+var weather_rain_halfmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "48",
+ "x2": "20",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "48",
+ "x2": "30",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "48",
+ "x2": "40",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "48",
+ "x2": "50",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_rain_halfmoon = weather_rain_halfmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_rain_sun.js b/dist/linea/weather_rain_sun.js
new file mode 100644
index 000000000..1223c35b9
--- /dev/null
+++ b/dist/linea/weather_rain_sun.js
@@ -0,0 +1,122 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_rain_sun = void 0;
+var weather_rain_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "22",
+ "x2": "0",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "6",
+ "x2": "22",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "10",
+ "x2": "4",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "48",
+ "x2": "20",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "48",
+ "x2": "30",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "48",
+ "x2": "40",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "48",
+ "x2": "50",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_rain_sun = weather_rain_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_sagittarius.js b/dist/linea/weather_sagittarius.js
new file mode 100644
index 000000000..ce5d03804
--- /dev/null
+++ b/dist/linea/weather_sagittarius.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_sagittarius = void 0;
+var weather_sagittarius = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "63",
+ "y1": "1",
+ "x2": "0",
+ "y2": "64"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "36,1 63,1 63,28 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "1",
+ "y1": "28",
+ "x2": "36",
+ "y2": "63"
+ },
+ "children": []
+ }]
+};
+exports.weather_sagittarius = weather_sagittarius;
\ No newline at end of file
diff --git a/dist/linea/weather_scorpio.js b/dist/linea/weather_scorpio.js
new file mode 100644
index 000000000..2b1fbe344
--- /dev/null
+++ b/dist/linea/weather_scorpio.js
@@ -0,0 +1,52 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_scorpio = void 0;
+var weather_scorpio = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M30,52V12c0,0,0-11,8-11s8,11,8,11s0,33,0,40\r\n\tc0,0,0,6,6,6h5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M14,52V12c0,0,0.083-11,8-11s8,11,8,11"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M14,12c0,0,0-10-8-10"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "52,53 57,58 \r\n\t52,63 "
+ },
+ "children": []
+ }]
+};
+exports.weather_scorpio = weather_scorpio;
\ No newline at end of file
diff --git a/dist/linea/weather_snow.js b/dist/linea/weather_snow.js
new file mode 100644
index 000000000..9383b2d5b
--- /dev/null
+++ b/dist/linea/weather_snow.js
@@ -0,0 +1,229 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_snow = void 0;
+var weather_snow = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "43",
+ "x2": "22",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "52",
+ "x2": "22",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "45",
+ "x2": "24",
+ "y2": "48"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "52",
+ "x2": "17",
+ "y2": "55"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "55",
+ "x2": "24",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "48",
+ "x2": "17",
+ "y2": "45"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "29",
+ "y1": "50",
+ "x2": "24",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "50",
+ "x2": "15",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "48",
+ "x2": "42",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "57",
+ "x2": "42",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "50",
+ "x2": "44",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "57",
+ "x2": "37",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "60",
+ "x2": "44",
+ "y2": "57"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "53",
+ "x2": "37",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "49",
+ "y1": "55",
+ "x2": "44",
+ "y2": "55"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "55",
+ "x2": "35",
+ "y2": "55"
+ },
+ "children": []
+ }]
+};
+exports.weather_snow = weather_snow;
\ No newline at end of file
diff --git a/dist/linea/weather_snow_fullmoon.js b/dist/linea/weather_snow_fullmoon.js
new file mode 100644
index 000000000..e63200991
--- /dev/null
+++ b/dist/linea/weather_snow_fullmoon.js
@@ -0,0 +1,239 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_snow_fullmoon = void 0;
+var weather_snow_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "48",
+ "x2": "24",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "56",
+ "x2": "24",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "50",
+ "x2": "26",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "56",
+ "x2": "20",
+ "y2": "58"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "58",
+ "x2": "26",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "52",
+ "x2": "20",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "54",
+ "x2": "26",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "54",
+ "x2": "18",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "50",
+ "x2": "44",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "58",
+ "x2": "44",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "52",
+ "x2": "46",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "58",
+ "x2": "40",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "60",
+ "x2": "46",
+ "y2": "58"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "54",
+ "x2": "40",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "56",
+ "x2": "46",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "56",
+ "x2": "38",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.weather_snow_fullmoon = weather_snow_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_snow_halfmoon.js b/dist/linea/weather_snow_halfmoon.js
new file mode 100644
index 000000000..2b9980d1c
--- /dev/null
+++ b/dist/linea/weather_snow_halfmoon.js
@@ -0,0 +1,239 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_snow_halfmoon = void 0;
+var weather_snow_halfmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "48",
+ "x2": "24",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "56",
+ "x2": "24",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "50",
+ "x2": "26",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "56",
+ "x2": "20",
+ "y2": "58"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "58",
+ "x2": "26",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "52",
+ "x2": "20",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "54",
+ "x2": "26",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "54",
+ "x2": "18",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "50",
+ "x2": "44",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "58",
+ "x2": "44",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "52",
+ "x2": "46",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "58",
+ "x2": "40",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "60",
+ "x2": "46",
+ "y2": "58"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "54",
+ "x2": "40",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "56",
+ "x2": "46",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "56",
+ "x2": "38",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.weather_snow_halfmoon = weather_snow_halfmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_snow_sun.js b/dist/linea/weather_snow_sun.js
new file mode 100644
index 000000000..1b7f1f819
--- /dev/null
+++ b/dist/linea/weather_snow_sun.js
@@ -0,0 +1,278 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_snow_sun = void 0;
+var weather_snow_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "22",
+ "x2": "0",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "6",
+ "x2": "22",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "10",
+ "x2": "4",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "48",
+ "x2": "24",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "24",
+ "y1": "56",
+ "x2": "24",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "50",
+ "x2": "26",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "56",
+ "x2": "20",
+ "y2": "58"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "28",
+ "y1": "58",
+ "x2": "26",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "52",
+ "x2": "20",
+ "y2": "50"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "54",
+ "x2": "26",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "54",
+ "x2": "18",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "50",
+ "x2": "44",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "58",
+ "x2": "44",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "52",
+ "x2": "46",
+ "y2": "54"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "58",
+ "x2": "40",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "60",
+ "x2": "46",
+ "y2": "58"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "54",
+ "x2": "40",
+ "y2": "52"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "56",
+ "x2": "46",
+ "y2": "56"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "56",
+ "x2": "38",
+ "y2": "56"
+ },
+ "children": []
+ }]
+};
+exports.weather_snow_sun = weather_snow_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_snowflake.js b/dist/linea/weather_snowflake.js
new file mode 100644
index 000000000..99f5db2a7
--- /dev/null
+++ b/dist/linea/weather_snowflake.js
@@ -0,0 +1,207 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_snowflake = void 0;
+var weather_snowflake = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "1,24 9,32 1,40 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "63,40 55,32 63,24 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "24,63 32,55 40,63 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "40,1 32,9 24,1 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "5,49 15,49 15,59 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "59,15 49,15 49,5 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "26",
+ "x2": "49",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "49",
+ "x2": "26",
+ "y2": "38"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "15,5 15,15 5,15 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "49,59 49,49 59,49 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "38",
+ "y1": "38",
+ "x2": "49",
+ "y2": "49"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "15",
+ "y1": "15",
+ "x2": "26",
+ "y2": "26"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "40",
+ "y1": "32",
+ "x2": "55",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "9",
+ "y1": "32",
+ "x2": "24",
+ "y2": "32"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "40",
+ "x2": "32",
+ "y2": "55"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "9",
+ "x2": "32",
+ "y2": "24"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "8"
+ },
+ "children": []
+ }]
+};
+exports.weather_snowflake = weather_snowflake;
\ No newline at end of file
diff --git a/dist/linea/weather_star.js b/dist/linea/weather_star.js
new file mode 100644
index 000000000..3a781d277
--- /dev/null
+++ b/dist/linea/weather_star.js
@@ -0,0 +1,21 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_star = void 0;
+var weather_star = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,47 12,62 20,38 2,24 24,24 32,1 40,24 \r\n\t62,24 44,38 52,62 "
+ },
+ "children": []
+ }]
+};
+exports.weather_star = weather_star;
\ No newline at end of file
diff --git a/dist/linea/weather_storm_fullmoon.js b/dist/linea/weather_storm_fullmoon.js
new file mode 100644
index 000000000..bb8c700e7
--- /dev/null
+++ b/dist/linea/weather_storm_fullmoon.js
@@ -0,0 +1,61 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_storm_fullmoon = void 0;
+var weather_storm_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,48 29,55 34,55 30,62 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,48 39,55 44,55 40,62 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,48 19,55 24,55 20,62 "
+ },
+ "children": []
+ }]
+};
+exports.weather_storm_fullmoon = weather_storm_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_storm_halfmoon.js b/dist/linea/weather_storm_halfmoon.js
new file mode 100644
index 000000000..758b81f63
--- /dev/null
+++ b/dist/linea/weather_storm_halfmoon.js
@@ -0,0 +1,61 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_storm_halfmoon = void 0;
+var weather_storm_halfmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,48 29,55 34,55 30,62 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,48 39,55 44,55 40,62 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,48 19,55 24,55 20,62 "
+ },
+ "children": []
+ }]
+};
+exports.weather_storm_halfmoon = weather_storm_halfmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_storm_sun.js b/dist/linea/weather_storm_sun.js
new file mode 100644
index 000000000..5dbe24660
--- /dev/null
+++ b/dist/linea/weather_storm_sun.js
@@ -0,0 +1,100 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_storm_sun = void 0;
+var weather_storm_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "22",
+ "x2": "0",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "6",
+ "x2": "22",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "10",
+ "x2": "4",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,48 29,55 34,55 30,62 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "42,48 39,55 44,55 40,62 "
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "22,48 19,55 24,55 20,62 "
+ },
+ "children": []
+ }]
+};
+exports.weather_storm_sun = weather_storm_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_sun.js b/dist/linea/weather_sun.js
new file mode 100644
index 000000000..5784c6c6f
--- /dev/null
+++ b/dist/linea/weather_sun.js
@@ -0,0 +1,247 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_sun = void 0;
+var weather_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "16"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "10",
+ "x2": "32",
+ "y2": "0"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "10",
+ "x2": "32",
+ "y2": "0"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "64",
+ "x2": "32",
+ "y2": "54"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "64",
+ "x2": "32",
+ "y2": "54"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "54",
+ "y1": "32",
+ "x2": "64",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "54",
+ "y1": "32",
+ "x2": "64",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "32",
+ "x2": "10",
+ "y2": "32"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "32",
+ "x2": "10",
+ "y2": "32"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "16",
+ "x2": "53",
+ "y2": "11"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "16",
+ "x2": "53",
+ "y2": "11"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "53",
+ "x2": "16",
+ "y2": "48"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "53",
+ "x2": "16",
+ "y2": "48"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "48",
+ "x2": "53",
+ "y2": "53"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "48",
+ "y1": "48",
+ "x2": "53",
+ "y2": "53"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "11",
+ "x2": "16",
+ "y2": "16"
+ },
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "11",
+ "y1": "11",
+ "x2": "16",
+ "y2": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.weather_sun = weather_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_sundown.js b/dist/linea/weather_sundown.js
new file mode 100644
index 000000000..71fad3e24
--- /dev/null
+++ b/dist/linea/weather_sundown.js
@@ -0,0 +1,110 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_sundown = void 0;
+var weather_sundown = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "47",
+ "x2": "64",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "37",
+ "x2": "0",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "37",
+ "x2": "54",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "15",
+ "x2": "32",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "23",
+ "x2": "6",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "23",
+ "x2": "58",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "25,53 32,60 \r\n\t39,53 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"
+ },
+ "children": []
+ }]
+};
+exports.weather_sundown = weather_sundown;
\ No newline at end of file
diff --git a/dist/linea/weather_sunset.js b/dist/linea/weather_sunset.js
new file mode 100644
index 000000000..c97f45940
--- /dev/null
+++ b/dist/linea/weather_sunset.js
@@ -0,0 +1,110 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_sunset = void 0;
+var weather_sunset = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "0",
+ "y1": "47",
+ "x2": "64",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "37",
+ "x2": "0",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "64",
+ "y1": "37",
+ "x2": "54",
+ "y2": "37"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "32",
+ "y1": "15",
+ "x2": "32",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "14",
+ "y1": "23",
+ "x2": "6",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "50",
+ "y1": "23",
+ "x2": "58",
+ "y2": "15"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-linejoin": "bevel",
+ "stroke-miterlimit": "10",
+ "points": "39,60 32,53 \r\n\t25,60 "
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48.159,47C49.96,44.096,51,40.669,51,37\r\n\tc0-10.493-8.506-19-19-19s-19,8.507-19,19c0,3.668,1.04,7.094,2.841,9.998"
+ },
+ "children": []
+ }]
+};
+exports.weather_sunset = weather_sunset;
\ No newline at end of file
diff --git a/dist/linea/weather_taurus.js b/dist/linea/weather_taurus.js
new file mode 100644
index 000000000..050f42b57
--- /dev/null
+++ b/dist/linea/weather_taurus.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_taurus = void 0;
+var weather_taurus = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "43",
+ "r": "18"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M0,3c14,0,15,12,15,12s0,10,17,10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M64,3C50,3,49,15,49,15s0,10-17,10"
+ },
+ "children": []
+ }]
+};
+exports.weather_taurus = weather_taurus;
\ No newline at end of file
diff --git a/dist/linea/weather_tempest.js b/dist/linea/weather_tempest.js
new file mode 100644
index 000000000..5f209ed51
--- /dev/null
+++ b/dist/linea/weather_tempest.js
@@ -0,0 +1,57 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_tempest = void 0;
+var weather_tempest = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10H55z"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,46 29,53 33,53 29,60 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "46",
+ "x2": "39",
+ "y2": "60"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "46",
+ "x2": "14",
+ "y2": "60"
+ },
+ "children": []
+ }]
+};
+exports.weather_tempest = weather_tempest;
\ No newline at end of file
diff --git a/dist/linea/weather_tempest_fullmoon.js b/dist/linea/weather_tempest_fullmoon.js
new file mode 100644
index 000000000..67f6771f6
--- /dev/null
+++ b/dist/linea/weather_tempest_fullmoon.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_tempest_fullmoon = void 0;
+var weather_tempest_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,48 29,55 33,55 29,62 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "48",
+ "x2": "15",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "48",
+ "x2": "39",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_tempest_fullmoon = weather_tempest_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_tempest_halfmoon.js b/dist/linea/weather_tempest_halfmoon.js
new file mode 100644
index 000000000..1a9bb58ce
--- /dev/null
+++ b/dist/linea/weather_tempest_halfmoon.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_tempest_halfmoon = void 0;
+var weather_tempest_halfmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,48 29,55 33,55 29,62 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "48",
+ "x2": "15",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "48",
+ "x2": "39",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_tempest_halfmoon = weather_tempest_halfmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_tempest_sun.js b/dist/linea/weather_tempest_sun.js
new file mode 100644
index 000000000..515d6853d
--- /dev/null
+++ b/dist/linea/weather_tempest_sun.js
@@ -0,0 +1,106 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_tempest_sun = void 0;
+var weather_tempest_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "22",
+ "x2": "0",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "6",
+ "x2": "22",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "10",
+ "x2": "4",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "points": "32,48 29,55 33,55 29,62 "
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "48",
+ "x2": "15",
+ "y2": "62"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "47",
+ "y1": "48",
+ "x2": "39",
+ "y2": "62"
+ },
+ "children": []
+ }]
+};
+exports.weather_tempest_sun = weather_tempest_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_variable_fullmoon.js b/dist/linea/weather_variable_fullmoon.js
new file mode 100644
index 000000000..7cab324bc
--- /dev/null
+++ b/dist/linea/weather_variable_fullmoon.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_variable_fullmoon = void 0;
+var weather_variable_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7.004,37.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,31.979,1,29.577,1,27c0-7.18,5.82-13,13-13c4.604,0,8.646,2.392,10.957,6.001"
+ },
+ "children": []
+ }]
+};
+exports.weather_variable_fullmoon = weather_variable_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_variable_halfmoon.js b/dist/linea/weather_variable_halfmoon.js
new file mode 100644
index 000000000..e30d2df8c
--- /dev/null
+++ b/dist/linea/weather_variable_halfmoon.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_variable_halfmoon = void 0;
+var weather_variable_halfmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24.957,20.001C22.646,16.392,18.604,14,14,14\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"
+ },
+ "children": []
+ }]
+};
+exports.weather_variable_halfmoon = weather_variable_halfmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_variable_sun.js b/dist/linea/weather_variable_sun.js
new file mode 100644
index 000000000..bbcf551ca
--- /dev/null
+++ b/dist/linea/weather_variable_sun.js
@@ -0,0 +1,70 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_variable_sun = void 0;
+var weather_variable_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,50c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.233,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9H56z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29.999,16.752C27.793,15.028,25.017,14,22,14\r\n\tc-7.18,0-13,5.82-13,13c0,2.577,0.707,3.979,2,6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "27",
+ "x2": "0",
+ "y2": "27"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "11",
+ "x2": "22",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "15",
+ "x2": "4",
+ "y2": "9"
+ },
+ "children": []
+ }]
+};
+exports.weather_variable_sun = weather_variable_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_virgo.js b/dist/linea/weather_virgo.js
new file mode 100644
index 000000000..443734b0d
--- /dev/null
+++ b/dist/linea/weather_virgo.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_virgo = void 0;
+var weather_virgo = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M54,64c0,0-6-5-6-12s0-40,0-40s0-11-8-11s-8,11-8,11\r\n\tv40"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16,52V12c0,0,0.083-11,8-11s8,11,8,11"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M16,12c0,0,0-10-8-10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M48,24c0,0,0-14,6-14s6,14,6,14s-1,34-27,34"
+ },
+ "children": []
+ }]
+};
+exports.weather_virgo = weather_virgo;
\ No newline at end of file
diff --git a/dist/linea/weather_waning_cresent.js b/dist/linea/weather_waning_cresent.js
new file mode 100644
index 000000000..da90d6380
--- /dev/null
+++ b/dist/linea/weather_waning_cresent.js
@@ -0,0 +1,163 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_waning_cresent = void 0;
+var weather_waning_cresent = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32.002",
+ "cy": "31.999",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41.002,61.999c-13.242-3.528-22-15.646-22-30\r\n\tc0-14.355,8.756-26.473,22-30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "5",
+ "x2": "47",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "11",
+ "x2": "55",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "17",
+ "x2": "59",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "23",
+ "x2": "62",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "29",
+ "x2": "63",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "35",
+ "x2": "63",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "41",
+ "x2": "62",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "47",
+ "x2": "59",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "53",
+ "x2": "55",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "59",
+ "x2": "47",
+ "y2": "59"
+ },
+ "children": []
+ }]
+};
+exports.weather_waning_cresent = weather_waning_cresent;
\ No newline at end of file
diff --git a/dist/linea/weather_waning_gibbous.js b/dist/linea/weather_waning_gibbous.js
new file mode 100644
index 000000000..ada6fe6b9
--- /dev/null
+++ b/dist/linea/weather_waning_gibbous.js
@@ -0,0 +1,163 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_waning_gibbous = void 0;
+var weather_waning_gibbous = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M23,2c13.242,3.528,22,15.646,22,30\r\n\tc0,14.355-8.756,26.473-22,30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "59",
+ "x2": "47",
+ "y2": "59"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "53",
+ "x2": "55",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "47",
+ "x2": "59",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "41",
+ "x2": "62",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "35",
+ "x2": "63",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "29",
+ "x2": "63",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "23",
+ "x2": "62",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "17",
+ "x2": "59",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "11",
+ "x2": "55",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "5",
+ "x2": "47",
+ "y2": "5"
+ },
+ "children": []
+ }]
+};
+exports.weather_waning_gibbous = weather_waning_gibbous;
\ No newline at end of file
diff --git a/dist/linea/weather_waxing_cresent.js b/dist/linea/weather_waxing_cresent.js
new file mode 100644
index 000000000..4e2481da6
--- /dev/null
+++ b/dist/linea/weather_waxing_cresent.js
@@ -0,0 +1,163 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_waxing_cresent = void 0;
+var weather_waxing_cresent = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M23,2c13.243,3.528,22,15.646,22,30\r\n\tc0,14.355-8.756,26.473-22,30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "59",
+ "x2": "17",
+ "y2": "59"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "53",
+ "x2": "9",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "42",
+ "y1": "47",
+ "x2": "5",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "41",
+ "x2": "2",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "35",
+ "x2": "1",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "45",
+ "y1": "29",
+ "x2": "1",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "44",
+ "y1": "23",
+ "x2": "2",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "41",
+ "y1": "17",
+ "x2": "5",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "37",
+ "y1": "11",
+ "x2": "9",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "30",
+ "y1": "5",
+ "x2": "17",
+ "y2": "5"
+ },
+ "children": []
+ }]
+};
+exports.weather_waxing_cresent = weather_waxing_cresent;
\ No newline at end of file
diff --git a/dist/linea/weather_waxing_gibbous.js b/dist/linea/weather_waxing_gibbous.js
new file mode 100644
index 000000000..5584de151
--- /dev/null
+++ b/dist/linea/weather_waxing_gibbous.js
@@ -0,0 +1,163 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_waxing_gibbous = void 0;
+var weather_waxing_gibbous = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M41,62c-13.243-3.528-22-15.646-22-30\r\n\tc0-14.355,8.756-26.473,22-30"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "5",
+ "x2": "17",
+ "y2": "5"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "11",
+ "x2": "9",
+ "y2": "11"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "17",
+ "x2": "5",
+ "y2": "17"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "23",
+ "x2": "2",
+ "y2": "23"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "29",
+ "x2": "1",
+ "y2": "29"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "19",
+ "y1": "35",
+ "x2": "1",
+ "y2": "35"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "20",
+ "y1": "41",
+ "x2": "2",
+ "y2": "41"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "23",
+ "y1": "47",
+ "x2": "5",
+ "y2": "47"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "27",
+ "y1": "53",
+ "x2": "9",
+ "y2": "53"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "34",
+ "y1": "59",
+ "x2": "17",
+ "y2": "59"
+ },
+ "children": []
+ }]
+};
+exports.weather_waxing_gibbous = weather_waxing_gibbous;
\ No newline at end of file
diff --git a/dist/linea/weather_wind.js b/dist/linea/weather_wind.js
new file mode 100644
index 000000000..67aee523e
--- /dev/null
+++ b/dist/linea/weather_wind.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind = void 0;
+var weather_wind = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M55,40c4.565,0,8-3.435,8-8c0-4.565-3.435-9-8-9\r\n\tc0-11.414-9.586-20-21-20C23.898,3,14.8,9.423,13,19c0,0-1.165,0-2,0C5.292,19,1,24.292,1,30s4.292,10,10,10"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M40,42c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind = weather_wind;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_E.js b/dist/linea/weather_wind_E.js
new file mode 100644
index 000000000..114eef584
--- /dev/null
+++ b/dist/linea/weather_wind_E.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_E = void 0;
+var weather_wind_E = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M32,44c6.628,0,25-12,25-12S38.628,20,32,20\r\n\ts-12,5.373-12,12S25.372,44,32,44z"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_E = weather_wind_E;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_N.js b/dist/linea/weather_wind_N.js
new file mode 100644
index 000000000..c77b599d0
--- /dev/null
+++ b/dist/linea/weather_wind_N.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_N = void 0;
+var weather_wind_N = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M44,32c0-6.628-12-25-12-25S20,25.372,20,32\r\n\ts5.373,12,12,12S44,38.628,44,32z"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_N = weather_wind_N;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_NE.js b/dist/linea/weather_wind_NE.js
new file mode 100644
index 000000000..ae90b2496
--- /dev/null
+++ b/dist/linea/weather_wind_NE.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_NE = void 0;
+var weather_wind_NE = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M40.485,40.484C45.172,35.798,49,15,49,15\r\n\ts-20.799,3.827-25.485,8.514c-4.687,4.688-4.686,12.285,0,16.971C28.2,45.171,35.799,45.172,40.485,40.484z"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_NE = weather_wind_NE;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_NW.js b/dist/linea/weather_wind_NW.js
new file mode 100644
index 000000000..3e6249c70
--- /dev/null
+++ b/dist/linea/weather_wind_NW.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_NW = void 0;
+var weather_wind_NW = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M40.484,23.514C35.798,18.828,15,15,15,15\r\n\ts3.827,20.799,8.514,25.484c4.688,4.688,12.285,4.686,16.971,0C45.171,35.799,45.172,28.201,40.484,23.514z"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_NW = weather_wind_NW;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_S.js b/dist/linea/weather_wind_S.js
new file mode 100644
index 000000000..a6b927107
--- /dev/null
+++ b/dist/linea/weather_wind_S.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_S = void 0;
+var weather_wind_S = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M20,32c0,6.628,12,25,12,25s12-18.372,12-25\r\n\ts-5.373-12-12-12S20,25.372,20,32z"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_S = weather_wind_S;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_SE.js b/dist/linea/weather_wind_SE.js
new file mode 100644
index 000000000..8ae392555
--- /dev/null
+++ b/dist/linea/weather_wind_SE.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_SE = void 0;
+var weather_wind_SE = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "31.999",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "31.999",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M23.515,40.484\r\n\tc4.687,4.687,25.484,8.515,25.484,8.515S45.172,28.2,40.485,23.514c-4.688-4.687-12.285-4.686-16.971,0\r\n\tC18.828,28.199,18.827,35.798,23.515,40.484z"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_SE = weather_wind_SE;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_SW.js b/dist/linea/weather_wind_SW.js
new file mode 100644
index 000000000..e62453b41
--- /dev/null
+++ b/dist/linea/weather_wind_SW.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_SW = void 0;
+var weather_wind_SW = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "32",
+ "cy": "32",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M23.515,23.515C18.828,28.201,15,48.999,15,48.999\r\n\ts20.799-3.827,25.485-8.514c4.687-4.688,4.686-12.285,0-16.971C35.8,18.828,28.201,18.827,23.515,23.515z"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_SW = weather_wind_SW;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_W.js b/dist/linea/weather_wind_W.js
new file mode 100644
index 000000000..e8b7f1f06
--- /dev/null
+++ b/dist/linea/weather_wind_W.js
@@ -0,0 +1,45 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_W = void 0;
+var weather_wind_W = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "31.999",
+ "cy": "31.999",
+ "r": "31"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "cx": "31.999",
+ "cy": "31.999",
+ "r": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M31.999,19.999c-6.628,0-25,12-25,12\r\n\ts18.372,12,25,12s12-5.373,12-12S38.627,19.999,31.999,19.999z"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_W = weather_wind_W;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_fullmoon.js b/dist/linea/weather_wind_fullmoon.js
new file mode 100644
index 000000000..cb240da45
--- /dev/null
+++ b/dist/linea/weather_wind_fullmoon.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_fullmoon = void 0;
+var weather_wind_fullmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M7.004,32.959c-1.59-1.017-2.943-2.37-3.961-3.96\r\n\tC1.75,26.979,1,24.577,1,22C1,14.82,6.82,9,14,9c4.604,0,8.646,2.392,10.957,6.001"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_fullmoon = weather_wind_fullmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_halfmoon.js b/dist/linea/weather_wind_halfmoon.js
new file mode 100644
index 000000000..888f6636a
--- /dev/null
+++ b/dist/linea/weather_wind_halfmoon.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_halfmoon = void 0;
+var weather_wind_halfmoon = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M24.957,15.001C22.646,11.392,18.604,9,14,9\r\n\tc-0.826,0-1.631,0.085-2.414,0.233c0.891,1.396,1.414,3.05,1.414,4.83c0,4.971-4.029,9-9,9c-1.046,0-2.046-0.188-2.98-0.516\r\n\tc0.099,2.368,0.822,4.576,2.023,6.452c1.018,1.59,2.371,2.943,3.961,3.96"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_halfmoon = weather_wind_halfmoon;
\ No newline at end of file
diff --git a/dist/linea/weather_wind_sun.js b/dist/linea/weather_wind_sun.js
new file mode 100644
index 000000000..d831d8697
--- /dev/null
+++ b/dist/linea/weather_wind_sun.js
@@ -0,0 +1,90 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_wind_sun = void 0;
+var weather_wind_sun = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M56,45c4.19,0,7-2.81,7-7c0-4.189-2.81-9-7-9\r\n\tc0-10.475-9.525-18-20-18c-9.271,0-17.348,6.211-19,15c0,0-1.232,0-2,0c-5.238,0-9,4.762-9,10s3.762,9,9,9"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M29.999,11.752C27.793,10.028,25.017,9,22,9\r\n\tC14.82,9,9,14.82,9,22c0,2.577,0.707,3.979,2,6"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "6",
+ "y1": "22",
+ "x2": "0",
+ "y2": "22"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "22",
+ "y1": "6",
+ "x2": "22",
+ "y2": "0"
+ },
+ "children": []
+ }, {
+ "name": "line",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "x1": "10",
+ "y1": "10",
+ "x2": "4",
+ "y2": "4"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M27,58c0,2.761,2.238,5,5,5s5-2.239,5-5\r\n\ts-2.238-5-5-5H2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M40,44c0-2.761,2.238-5,5-5s5,2.239,5,5\r\n\ts-2.238,5-5,5H4"
+ },
+ "children": []
+ }]
+};
+exports.weather_wind_sun = weather_wind_sun;
\ No newline at end of file
diff --git a/dist/linea/weather_windgust.js b/dist/linea/weather_windgust.js
new file mode 100644
index 000000000..a169f3629
--- /dev/null
+++ b/dist/linea/weather_windgust.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.weather_windgust = void 0;
+var weather_windgust = {
+ "viewBox": "0 0 64 64",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M44,40c0,3.866,3.134,7,7,7s7-3.134,7-7\r\n\ts-3.134-7-7-7H0"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M49,19c0-3.866,3.134-7,7-7s7,3.134,7,7\r\n\ts-3.134,7-7,7H0"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "fill": "none",
+ "stroke": "#000000",
+ "stroke-width": "2",
+ "stroke-miterlimit": "10",
+ "d": "M27,45c0,2.761,2.239,5,5,5s5-2.239,5-5\r\n\ts-2.239-5-5-5H0"
+ },
+ "children": []
+ }]
+};
+exports.weather_windgust = weather_windgust;
\ No newline at end of file
diff --git a/dist/md/ic_10k.js b/dist/md/ic_10k.js
new file mode 100644
index 000000000..31fdde8fa
--- /dev/null
+++ b/dist/md/ic_10k.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_10k = void 0;
+var ic_10k = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M10 10.5h1.5v3H10zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 15H6v-4.5H4.5V9h3v6zm5.5-1c0 .55-.45 1-1 1H9.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H12c.55 0 1 .45 1 1v4zm6.5 1h-1.75L16 12.75V15h-1.5V9H16v2.25L17.75 9h1.75l-2.25 3 2.25 3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_10k = ic_10k;
\ No newline at end of file
diff --git a/dist/md/ic_10mp.js b/dist/md/ic_10mp.js
new file mode 100644
index 000000000..c2104ed7c
--- /dev/null
+++ b/dist/md/ic_10mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_10mp = void 0;
+var ic_10mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M13.5 7H15v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_10mp = ic_10mp;
\ No newline at end of file
diff --git a/dist/md/ic_11mp.js b/dist/md/ic_11mp.js
new file mode 100644
index 000000000..65b16c8e0
--- /dev/null
+++ b/dist/md/ic_11mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_11mp = void 0;
+var ic_11mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 5.5v6H9.5V7H8V5.5h3zm5 0v6h-1.5V7H13V5.5h3zm-.5 8.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_11mp = ic_11mp;
\ No newline at end of file
diff --git a/dist/md/ic_12mp.js b/dist/md/ic_12mp.js
new file mode 100644
index 000000000..e0f03c45d
--- /dev/null
+++ b/dist/md/ic_12mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_12mp = void 0;
+var ic_12mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM15.5 9h-2v1h3v1.5H12V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm0 5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_12mp = ic_12mp;
\ No newline at end of file
diff --git a/dist/md/ic_13mp.js b/dist/md/ic_13mp.js
new file mode 100644
index 000000000..6838ac0ae
--- /dev/null
+++ b/dist/md/ic_13mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_13mp = void 0;
+var ic_13mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H12V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_13mp = ic_13mp;
\ No newline at end of file
diff --git a/dist/md/ic_14mp.js b/dist/md/ic_14mp.js
new file mode 100644
index 000000000..8bac454aa
--- /dev/null
+++ b/dist/md/ic_14mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_14mp = void 0;
+var ic_14mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm7.5 4.5h-1v1.5H15V10h-3V5.5h1.5v3H15v-3h1.5v3h1V10zm-2 4H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_14mp = ic_14mp;
\ No newline at end of file
diff --git a/dist/md/ic_15mp.js b/dist/md/ic_15mp.js
new file mode 100644
index 000000000..51c20349e
--- /dev/null
+++ b/dist/md/ic_15mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_15mp = void 0;
+var ic_15mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM16.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H12V10h3V9h-3V5.5h4.5V7zm-1 7H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_15mp = ic_15mp;
\ No newline at end of file
diff --git a/dist/md/ic_16mp.js b/dist/md/ic_16mp.js
new file mode 100644
index 000000000..7b2732c40
--- /dev/null
+++ b/dist/md/ic_16mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_16mp = void 0;
+var ic_16mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M13.5 9H15v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm3 6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13zm2.5 2.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_16mp = ic_16mp;
\ No newline at end of file
diff --git a/dist/md/ic_17mp.js b/dist/md/ic_17mp.js
new file mode 100644
index 000000000..ee536205a
--- /dev/null
+++ b/dist/md/ic_17mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_17mp = void 0;
+var ic_17mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm5 6h-1.75L14.62 7H12V5.5h3.5c.67 0 1.15.65.96 1.29L15 11.5zm.5 2.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_17mp = ic_17mp;
\ No newline at end of file
diff --git a/dist/md/ic_18mp.js b/dist/md/ic_18mp.js
new file mode 100644
index 000000000..f8b7502c5
--- /dev/null
+++ b/dist/md/ic_18mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_18mp = void 0;
+var ic_18mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-3 0H15V9h-1.5v1.5zm0-2.5H15V6.5h-1.5V8zm2 6H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_18mp = ic_18mp;
\ No newline at end of file
diff --git a/dist/md/ic_19mp.js b/dist/md/ic_19mp.js
new file mode 100644
index 000000000..dcc3cc191
--- /dev/null
+++ b/dist/md/ic_19mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_19mp = void 0;
+var ic_19mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 7h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H12V10zm1.5-2H15V6.5h-1.5V8zM7 5.5h3v6H8.5V7H7V5.5zm5 13h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm6.5-2.5c0 .55-.45 1-1 1h-2v1.5H14v-6h3.5c.55 0 1 .45 1 1V16zm-3-2H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_19mp = ic_19mp;
\ No newline at end of file
diff --git a/dist/md/ic_1k.js b/dist/md/ic_1k.js
new file mode 100644
index 000000000..bd13888af
--- /dev/null
+++ b/dist/md/ic_1k.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_1k = void 0;
+var ic_1k = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 12H9v-4.5H7.5V9h3v6zm7 0h-1.75L14 12.75V15h-1.5V9H14v2.25L15.75 9h1.75l-2.25 3 2.25 3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_1k = ic_1k;
\ No newline at end of file
diff --git a/dist/md/ic_1k_plus.js b/dist/md/ic_1k_plus.js
new file mode 100644
index 000000000..5a0b4208a
--- /dev/null
+++ b/dist/md/ic_1k_plus.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_1k_plus = void 0;
+var ic_1k_plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 15H7.5v-4.5H6V9h3v6zm4.75 0L12 12.75V15h-1.5V9H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75zm5.75-2.5H18V14h-1v-1.5h-1.5v-1H17V10h1v1.5h1.5v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_1k_plus = ic_1k_plus;
\ No newline at end of file
diff --git a/dist/md/ic_20mp.js b/dist/md/ic_20mp.js
new file mode 100644
index 000000000..0b67cfd4a
--- /dev/null
+++ b/dist/md/ic_20mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_20mp = void 0;
+var ic_20mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14.5 7H16v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm2-8c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm5.5 5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_20mp = ic_20mp;
\ No newline at end of file
diff --git a/dist/md/ic_21mp.js b/dist/md/ic_21mp.js
new file mode 100644
index 000000000..8bd001e33
--- /dev/null
+++ b/dist/md/ic_21mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_21mp = void 0;
+var ic_21mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 9H9v1h3v1.5H7.5V9c0-.55.45-1 1-1h2V7h-3V5.5H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm3-3.5h3v6h-1.5V7H14V5.5zm1.5 8.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_21mp = ic_21mp;
\ No newline at end of file
diff --git a/dist/md/ic_22mp.js b/dist/md/ic_22mp.js
new file mode 100644
index 000000000..fbe7accae
--- /dev/null
+++ b/dist/md/ic_22mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_22mp = void 0;
+var ic_22mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm6.5 0h-2v1h3v1.5H13V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm-1 5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_22mp = ic_22mp;
\ No newline at end of file
diff --git a/dist/md/ic_23mp.js b/dist/md/ic_23mp.js
new file mode 100644
index 000000000..5c99d576e
--- /dev/null
+++ b/dist/md/ic_23mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_23mp = void 0;
+var ic_23mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm7.5 1.5c0 .55-.45 1-1 1H13V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-2 3.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_23mp = ic_23mp;
\ No newline at end of file
diff --git a/dist/md/ic_24mp.js b/dist/md/ic_24mp.js
new file mode 100644
index 000000000..1ffc1397e
--- /dev/null
+++ b/dist/md/ic_24mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_24mp = void 0;
+var ic_24mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm8.5 1h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10zm-3 4H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_24mp = ic_24mp;
\ No newline at end of file
diff --git a/dist/md/ic_2k.js b/dist/md/ic_2k.js
new file mode 100644
index 000000000..04c1010e4
--- /dev/null
+++ b/dist/md/ic_2k.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_2k = void 0;
+var ic_2k = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9.5H8v1h3V15H6.5v-2.5c0-.55.45-1 1-1h2v-1h-3V9H10c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1zm8 2.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_2k = ic_2k;
\ No newline at end of file
diff --git a/dist/md/ic_2k_plus.js b/dist/md/ic_2k_plus.js
new file mode 100644
index 000000000..a980f4bff
--- /dev/null
+++ b/dist/md/ic_2k_plus.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_2k_plus = void 0;
+var ic_2k_plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 8.5c0 .55-.45 1-1 1h-2v1h3V15H5v-2.5c0-.55.45-1 1-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v1.5zm4.75 3.5l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75zM20 12.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_2k_plus = ic_2k_plus;
\ No newline at end of file
diff --git a/dist/md/ic_2mp.js b/dist/md/ic_2mp.js
new file mode 100644
index 000000000..b74593f57
--- /dev/null
+++ b/dist/md/ic_2mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_2mp = void 0;
+var ic_2mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2-9.5h-2v1h3v1.5H10V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm2 5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_2mp = ic_2mp;
\ No newline at end of file
diff --git a/dist/md/ic_360.js b/dist/md/ic_360.js
new file mode 100644
index 000000000..14eff3ec6
--- /dev/null
+++ b/dist/md/ic_360.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_360 = void 0;
+var ic_360 = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_360 = ic_360;
\ No newline at end of file
diff --git a/dist/md/ic_360_outline.js b/dist/md/ic_360_outline.js
new file mode 100644
index 000000000..a81c78bc6
--- /dev/null
+++ b/dist/md/ic_360_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_360_outline = void 0;
+var ic_360_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_360_outline = ic_360_outline;
\ No newline at end of file
diff --git a/dist/md/ic_360_twotone.js b/dist/md/ic_360_twotone.js
new file mode 100644
index 000000000..09d4b63e5
--- /dev/null
+++ b/dist/md/ic_360_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_360_twotone = void 0;
+var ic_360_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M9 16.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5S2 9.24 2 12c0 2.24 2.94 4.13 7 4.77z"
+ },
+ "children": []
+ }]
+};
+exports.ic_360_twotone = ic_360_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_3d_rotation.js b/dist/md/ic_3d_rotation.js
new file mode 100644
index 000000000..0212f5795
--- /dev/null
+++ b/dist/md/ic_3d_rotation.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_3d_rotation = void 0;
+var ic_3d_rotation = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72c.13-.29.2-.61.2-.97 0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46.05-.16.07-.32.07-.48 0-.36-.06-.68-.18-.96-.12-.28-.29-.51-.51-.69-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34c.11-.09.23-.17.38-.22.15-.05.3-.08.48-.08.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49-.05.15-.14.27-.25.37-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4.07.16.1.35.1.57 0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27.45-.18.84-.43 1.16-.76.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57-.18-.47-.43-.87-.75-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.44 4.84 18.29 0 12 0z"
+ },
+ "children": []
+ }]
+};
+exports.ic_3d_rotation = ic_3d_rotation;
\ No newline at end of file
diff --git a/dist/md/ic_3d_rotation_outline.js b/dist/md/ic_3d_rotation_outline.js
new file mode 100644
index 000000000..46b1b95c9
--- /dev/null
+++ b/dist/md/ic_3d_rotation_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_3d_rotation_outline = void 0;
+var ic_3d_rotation_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z"
+ },
+ "children": []
+ }]
+};
+exports.ic_3d_rotation_outline = ic_3d_rotation_outline;
\ No newline at end of file
diff --git a/dist/md/ic_3d_rotation_twotone.js b/dist/md/ic_3d_rotation_twotone.js
new file mode 100644
index 000000000..21bfdcdbc
--- /dev/null
+++ b/dist/md/ic_3d_rotation_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_3d_rotation_twotone = void 0;
+var ic_3d_rotation_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z"
+ },
+ "children": []
+ }]
+};
+exports.ic_3d_rotation_twotone = ic_3d_rotation_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_3k.js b/dist/md/ic_3k.js
new file mode 100644
index 000000000..b3968f6de
--- /dev/null
+++ b/dist/md/ic_3k.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_3k = void 0;
+var ic_3k = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_3k = ic_3k;
\ No newline at end of file
diff --git a/dist/md/ic_3k_plus.js b/dist/md/ic_3k_plus.js
new file mode 100644
index 000000000..7a53d7af2
--- /dev/null
+++ b/dist/md/ic_3k_plus.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_3k_plus = void 0;
+var ic_3k_plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6v-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_3k_plus = ic_3k_plus;
\ No newline at end of file
diff --git a/dist/md/ic_3mp.js b/dist/md/ic_3mp.js
new file mode 100644
index 000000000..62de764a3
--- /dev/null
+++ b/dist/md/ic_3mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_3mp = void 0;
+var ic_3mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_3mp = ic_3mp;
\ No newline at end of file
diff --git a/dist/md/ic_4k.js b/dist/md/ic_4k.js
new file mode 100644
index 000000000..180fd4caf
--- /dev/null
+++ b/dist/md/ic_4k.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_4k = void 0;
+var ic_4k = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 10.5h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.5zm6 1.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_4k = ic_4k;
\ No newline at end of file
diff --git a/dist/md/ic_4k_outline.js b/dist/md/ic_4k_outline.js
new file mode 100644
index 000000000..ad80b9e7b
--- /dev/null
+++ b/dist/md/ic_4k_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_4k_outline = void 0;
+var ic_4k_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14zm-9.5-4H11v-1.49h1V12h-1V9H9.5v3H8V9H6.5v4.5h3zm8.7 0l-2-3 2-3h-1.7l-2 3 2 3zm-3.7-3V9H13v6h1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_4k_outline = ic_4k_outline;
\ No newline at end of file
diff --git a/dist/md/ic_4k_plus.js b/dist/md/ic_4k_plus.js
new file mode 100644
index 000000000..70ebd33e8
--- /dev/null
+++ b/dist/md/ic_4k_plus.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_4k_plus = void 0;
+var ic_4k_plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 10.5h-1V15H8v-1.5H5V9h1.5v3H8V9h1.5v3h1v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_4k_plus = ic_4k_plus;
\ No newline at end of file
diff --git a/dist/md/ic_4k_twotone.js b/dist/md/ic_4k_twotone.js
new file mode 100644
index 000000000..ae233fe03
--- /dev/null
+++ b/dist/md/ic_4k_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_4k_twotone = void 0;
+var ic_4k_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 5H5v14h14V5zm-7 8.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm6 4H9.5v3H8V9H6.5v4.5h3V15H11v-1.49h1V12h-1zm5.5 0l-2 3 2 3h1.7l-2-3 2-3zM13 9v6h1.5V9z"
+ },
+ "children": []
+ }]
+};
+exports.ic_4k_twotone = ic_4k_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_4mp.js b/dist/md/ic_4mp.js
new file mode 100644
index 000000000..9c740f61b
--- /dev/null
+++ b/dist/md/ic_4mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_4mp = void 0;
+var ic_4mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3-8.5h-1v1.5h-1.5V10h-3V5.5H11v3h1.5v-3H14v3h1V10zm.5 8.5H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_4mp = ic_4mp;
\ No newline at end of file
diff --git a/dist/md/ic_5g.js b/dist/md/ic_5g.js
new file mode 100644
index 000000000..2caa51312
--- /dev/null
+++ b/dist/md/ic_5g.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_5g = void 0;
+var ic_5g = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,13h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4V13z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,13h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4V13z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_5g = ic_5g;
\ No newline at end of file
diff --git a/dist/md/ic_5g_outline.js b/dist/md/ic_5g_outline.js
new file mode 100644
index 000000000..e7de11e3f
--- /dev/null
+++ b/dist/md/ic_5g_outline.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_5g_outline = void 0;
+var ic_5g_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_5g_outline = ic_5g_outline;
\ No newline at end of file
diff --git a/dist/md/ic_5g_twotone.js b/dist/md/ic_5g_twotone.js
new file mode 100644
index 000000000..988f9e944
--- /dev/null
+++ b/dist/md/ic_5g_twotone.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_5g_twotone = void 0;
+var ic_5g_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_5g_twotone = ic_5g_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_5k.js b/dist/md/ic_5k.js
new file mode 100644
index 000000000..f4899958c
--- /dev/null
+++ b/dist/md/ic_5k.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_5k = void 0;
+var ic_5k = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-3V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_5k = ic_5k;
\ No newline at end of file
diff --git a/dist/md/ic_5k_plus.js b/dist/md/ic_5k_plus.js
new file mode 100644
index 000000000..1acef951e
--- /dev/null
+++ b/dist/md/ic_5k_plus.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_5k_plus = void 0;
+var ic_5k_plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5h3v-1H5V9h4.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_5k_plus = ic_5k_plus;
\ No newline at end of file
diff --git a/dist/md/ic_5mp.js b/dist/md/ic_5mp.js
new file mode 100644
index 000000000..37d7e9bd4
--- /dev/null
+++ b/dist/md/ic_5mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_5mp = void 0;
+var ic_5mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM14.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H10V10h3V9h-3V5.5h4.5V7zm1 7H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_5mp = ic_5mp;
\ No newline at end of file
diff --git a/dist/md/ic_6_ft_apart.js b/dist/md/ic_6_ft_apart.js
new file mode 100644
index 000000000..8cfbd012a
--- /dev/null
+++ b/dist/md/ic_6_ft_apart.js
@@ -0,0 +1,26 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_6_ft_apart = void 0;
+var ic_6_ft_apart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24",
+ "x": "0"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_6_ft_apart = ic_6_ft_apart;
\ No newline at end of file
diff --git a/dist/md/ic_6_ft_apart_outline.js b/dist/md/ic_6_ft_apart_outline.js
new file mode 100644
index 000000000..3ad681d2f
--- /dev/null
+++ b/dist/md/ic_6_ft_apart_outline.js
@@ -0,0 +1,26 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_6_ft_apart_outline = void 0;
+var ic_6_ft_apart_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24",
+ "x": "0"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_6_ft_apart_outline = ic_6_ft_apart_outline;
\ No newline at end of file
diff --git a/dist/md/ic_6_ft_apart_twotone.js b/dist/md/ic_6_ft_apart_twotone.js
new file mode 100644
index 000000000..b6914515b
--- /dev/null
+++ b/dist/md/ic_6_ft_apart_twotone.js
@@ -0,0 +1,26 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_6_ft_apart_twotone = void 0;
+var ic_6_ft_apart_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24",
+ "x": "0"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_6_ft_apart_twotone = ic_6_ft_apart_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_6k.js b/dist/md/ic_6k.js
new file mode 100644
index 000000000..f202e7c1b
--- /dev/null
+++ b/dist/md/ic_6k.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_6k = void 0;
+var ic_6k = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M8 12.5h1.5V14H8zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_6k = ic_6k;
\ No newline at end of file
diff --git a/dist/md/ic_6k_plus.js b/dist/md/ic_6k_plus.js
new file mode 100644
index 000000000..9c7abb204
--- /dev/null
+++ b/dist/md/ic_6k_plus.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_6k_plus = void 0;
+var ic_6k_plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6.5 12.5H8V14H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_6k_plus = ic_6k_plus;
\ No newline at end of file
diff --git a/dist/md/ic_6mp.js b/dist/md/ic_6mp.js
new file mode 100644
index 000000000..c0d2cad8d
--- /dev/null
+++ b/dist/md/ic_6mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_6mp = void 0;
+var ic_6mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11.5 9H13v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm-1-7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11zm4.5 7H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_6mp = ic_6mp;
\ No newline at end of file
diff --git a/dist/md/ic_7k.js b/dist/md/ic_7k.js
new file mode 100644
index 000000000..ffc94fcc2
--- /dev/null
+++ b/dist/md/ic_7k.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_7k = void 0;
+var ic_7k = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 15H7.75l1.38-4.5H6.5V9H10c.67 0 1.15.65.96 1.29L9.5 15zm8.5 0h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_7k = ic_7k;
\ No newline at end of file
diff --git a/dist/md/ic_7k_plus.js b/dist/md/ic_7k_plus.js
new file mode 100644
index 000000000..c19289bd2
--- /dev/null
+++ b/dist/md/ic_7k_plus.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_7k_plus = void 0;
+var ic_7k_plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 15H6.25l1.38-4.5H5V9h3.5c.67 0 1.15.65.96 1.29L8 15zm8 0h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_7k_plus = ic_7k_plus;
\ No newline at end of file
diff --git a/dist/md/ic_7mp.js b/dist/md/ic_7mp.js
new file mode 100644
index 000000000..c8021abaa
--- /dev/null
+++ b/dist/md/ic_7mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_7mp = void 0;
+var ic_7mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2.5-7h-1.75L12.62 7H10V5.5h3.5c.67 0 1.15.65.96 1.29L13 11.5zm2.5 2.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_7mp = ic_7mp;
\ No newline at end of file
diff --git a/dist/md/ic_8k.js b/dist/md/ic_8k.js
new file mode 100644
index 000000000..e80bd5157
--- /dev/null
+++ b/dist/md/ic_8k.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_8k = void 0;
+var ic_8k = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M8 12.5h1.5V14H8zM8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_8k = ic_8k;
\ No newline at end of file
diff --git a/dist/md/ic_8k_plus.js b/dist/md/ic_8k_plus.js
new file mode 100644
index 000000000..a0e7dcfe2
--- /dev/null
+++ b/dist/md/ic_8k_plus.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_8k_plus = void 0;
+var ic_8k_plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6.5 12.5H8V14H6.5zm0-2.5H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_8k_plus = ic_8k_plus;
\ No newline at end of file
diff --git a/dist/md/ic_8mp.js b/dist/md/ic_8mp.js
new file mode 100644
index 000000000..81845512a
--- /dev/null
+++ b/dist/md/ic_8mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_8mp = void 0;
+var ic_8mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11.5 9H13v1.5h-1.5zm0-2.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_8mp = ic_8mp;
\ No newline at end of file
diff --git a/dist/md/ic_9k.js b/dist/md/ic_9k.js
new file mode 100644
index 000000000..896d70ca9
--- /dev/null
+++ b/dist/md/ic_9k.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_9k = void 0;
+var ic_9k = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_9k = ic_9k;
\ No newline at end of file
diff --git a/dist/md/ic_9k_plus.js b/dist/md/ic_9k_plus.js
new file mode 100644
index 000000000..fe2a782f5
--- /dev/null
+++ b/dist/md/ic_9k_plus.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_9k_plus = void 0;
+var ic_9k_plus = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6.5 10H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_9k_plus = ic_9k_plus;
\ No newline at end of file
diff --git a/dist/md/ic_9mp.js b/dist/md/ic_9mp.js
new file mode 100644
index 000000000..8bc993c58
--- /dev/null
+++ b/dist/md/ic_9mp.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_9mp = void 0;
+var ic_9mp = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11.5 6.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_9mp = ic_9mp;
\ No newline at end of file
diff --git a/dist/md/ic_ac_unit.js b/dist/md/ic_ac_unit.js
new file mode 100644
index 000000000..51b5e6ddc
--- /dev/null
+++ b/dist/md/ic_ac_unit.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_ac_unit = void 0;
+var ic_ac_unit = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22z"
+ },
+ "children": []
+ }]
+};
+exports.ic_ac_unit = ic_ac_unit;
\ No newline at end of file
diff --git a/dist/md/ic_ac_unit_outline.js b/dist/md/ic_ac_unit_outline.js
new file mode 100644
index 000000000..4f1287211
--- /dev/null
+++ b/dist/md/ic_ac_unit_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_ac_unit_outline = void 0;
+var ic_ac_unit_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_ac_unit_outline = ic_ac_unit_outline;
\ No newline at end of file
diff --git a/dist/md/ic_ac_unit_twotone.js b/dist/md/ic_ac_unit_twotone.js
new file mode 100644
index 000000000..ccc27c192
--- /dev/null
+++ b/dist/md/ic_ac_unit_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_ac_unit_twotone = void 0;
+var ic_ac_unit_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_ac_unit_twotone = ic_ac_unit_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_access_alarm.js b/dist/md/ic_access_alarm.js
new file mode 100644
index 000000000..7784e15ea
--- /dev/null
+++ b/dist/md/ic_access_alarm.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_access_alarm = void 0;
+var ic_access_alarm = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"
+ },
+ "children": []
+ }]
+};
+exports.ic_access_alarm = ic_access_alarm;
\ No newline at end of file
diff --git a/dist/md/ic_access_alarm_outline.js b/dist/md/ic_access_alarm_outline.js
new file mode 100644
index 000000000..461bc8825
--- /dev/null
+++ b/dist/md/ic_access_alarm_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_access_alarm_outline = void 0;
+var ic_access_alarm_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"
+ },
+ "children": []
+ }]
+};
+exports.ic_access_alarm_outline = ic_access_alarm_outline;
\ No newline at end of file
diff --git a/dist/md/ic_access_alarm_twotone.js b/dist/md/ic_access_alarm_twotone.js
new file mode 100644
index 000000000..e797c9e5c
--- /dev/null
+++ b/dist/md/ic_access_alarm_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_access_alarm_twotone = void 0;
+var ic_access_alarm_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm.5-12H11v6l4.75 2.85.75-1.23-4-2.37zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53z"
+ },
+ "children": []
+ }]
+};
+exports.ic_access_alarm_twotone = ic_access_alarm_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_access_alarms.js b/dist/md/ic_access_alarms.js
new file mode 100644
index 000000000..a55f4e5ce
--- /dev/null
+++ b/dist/md/ic_access_alarms.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_access_alarms = void 0;
+var ic_access_alarms = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M-618-568H782v3600H-618zM0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z"
+ },
+ "children": []
+ }]
+};
+exports.ic_access_alarms = ic_access_alarms;
\ No newline at end of file
diff --git a/dist/md/ic_access_alarms_outline.js b/dist/md/ic_access_alarms_outline.js
new file mode 100644
index 000000000..5c7dfbd4e
--- /dev/null
+++ b/dist/md/ic_access_alarms_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_access_alarms_outline = void 0;
+var ic_access_alarms_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z"
+ },
+ "children": []
+ }]
+};
+exports.ic_access_alarms_outline = ic_access_alarms_outline;
\ No newline at end of file
diff --git a/dist/md/ic_access_alarms_twotone.js b/dist/md/ic_access_alarms_twotone.js
new file mode 100644
index 000000000..04cf73100
--- /dev/null
+++ b/dist/md/ic_access_alarms_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_access_alarms_twotone = void 0;
+var ic_access_alarms_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 6c-3.9 0-7 3.1-7 7s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7zm3.7 10.9L11 14V8h1.5v5.3l4 2.4-.8 1.2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_access_alarms_twotone = ic_access_alarms_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_access_time.js b/dist/md/ic_access_time.js
new file mode 100644
index 000000000..d06bb70a7
--- /dev/null
+++ b/dist/md/ic_access_time.js
@@ -0,0 +1,30 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_access_time = void 0;
+var ic_access_time = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z"
+ },
+ "children": []
+ }]
+};
+exports.ic_access_time = ic_access_time;
\ No newline at end of file
diff --git a/dist/md/ic_access_time_outline.js b/dist/md/ic_access_time_outline.js
new file mode 100644
index 000000000..36b1b0c4b
--- /dev/null
+++ b/dist/md/ic_access_time_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_access_time_outline = void 0;
+var ic_access_time_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"
+ },
+ "children": []
+ }]
+};
+exports.ic_access_time_outline = ic_access_time_outline;
\ No newline at end of file
diff --git a/dist/md/ic_access_time_twotone.js b/dist/md/ic_access_time_twotone.js
new file mode 100644
index 000000000..0999b8189
--- /dev/null
+++ b/dist/md/ic_access_time_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_access_time_twotone = void 0;
+var ic_access_time_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"
+ },
+ "children": []
+ }]
+};
+exports.ic_access_time_twotone = ic_access_time_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_accessibility.js b/dist/md/ic_accessibility.js
new file mode 100644
index 000000000..ceb23f181
--- /dev/null
+++ b/dist/md/ic_accessibility.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessibility = void 0;
+var ic_accessibility = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessibility = ic_accessibility;
\ No newline at end of file
diff --git a/dist/md/ic_accessibility_new.js b/dist/md/ic_accessibility_new.js
new file mode 100644
index 000000000..f29588e79
--- /dev/null
+++ b/dist/md/ic_accessibility_new.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessibility_new = void 0;
+var ic_accessibility_new = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessibility_new = ic_accessibility_new;
\ No newline at end of file
diff --git a/dist/md/ic_accessibility_new_outline.js b/dist/md/ic_accessibility_new_outline.js
new file mode 100644
index 000000000..c673fb33e
--- /dev/null
+++ b/dist/md/ic_accessibility_new_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessibility_new_outline = void 0;
+var ic_accessibility_new_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessibility_new_outline = ic_accessibility_new_outline;
\ No newline at end of file
diff --git a/dist/md/ic_accessibility_new_twotone.js b/dist/md/ic_accessibility_new_twotone.js
new file mode 100644
index 000000000..c1c6ff2d8
--- /dev/null
+++ b/dist/md/ic_accessibility_new_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessibility_new_twotone = void 0;
+var ic_accessibility_new_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessibility_new_twotone = ic_accessibility_new_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_accessibility_outline.js b/dist/md/ic_accessibility_outline.js
new file mode 100644
index 000000000..3043bda06
--- /dev/null
+++ b/dist/md/ic_accessibility_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessibility_outline = void 0;
+var ic_accessibility_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessibility_outline = ic_accessibility_outline;
\ No newline at end of file
diff --git a/dist/md/ic_accessibility_twotone.js b/dist/md/ic_accessibility_twotone.js
new file mode 100644
index 000000000..f73dc160a
--- /dev/null
+++ b/dist/md/ic_accessibility_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessibility_twotone = void 0;
+var ic_accessibility_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessibility_twotone = ic_accessibility_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_accessible.js b/dist/md/ic_accessible.js
new file mode 100644
index 000000000..337101736
--- /dev/null
+++ b/dist/md/ic_accessible.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessible = void 0;
+var ic_accessible = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "4",
+ "r": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessible = ic_accessible;
\ No newline at end of file
diff --git a/dist/md/ic_accessible_forward.js b/dist/md/ic_accessible_forward.js
new file mode 100644
index 000000000..edb82715b
--- /dev/null
+++ b/dist/md/ic_accessible_forward.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessible_forward = void 0;
+var ic_accessible_forward = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "17",
+ "cy": "4.54",
+ "r": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C17.42 8.5 16.44 7 14.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L7.22 10l1.92.53L9.79 9H12l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H17v5h2v-5.5c0-1.1-.9-2-2-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessible_forward = ic_accessible_forward;
\ No newline at end of file
diff --git a/dist/md/ic_accessible_forward_outline.js b/dist/md/ic_accessible_forward_outline.js
new file mode 100644
index 000000000..c16c71397
--- /dev/null
+++ b/dist/md/ic_accessible_forward_outline.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessible_forward_outline = void 0;
+var ic_accessible_forward_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "4.54",
+ "r": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessible_forward_outline = ic_accessible_forward_outline;
\ No newline at end of file
diff --git a/dist/md/ic_accessible_forward_twotone.js b/dist/md/ic_accessible_forward_twotone.js
new file mode 100644
index 000000000..609150b9e
--- /dev/null
+++ b/dist/md/ic_accessible_forward_twotone.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessible_forward_twotone = void 0;
+var ic_accessible_forward_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "18",
+ "cy": "4.54",
+ "r": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessible_forward_twotone = ic_accessible_forward_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_accessible_outline.js b/dist/md/ic_accessible_outline.js
new file mode 100644
index 000000000..c94ceadbc
--- /dev/null
+++ b/dist/md/ic_accessible_outline.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessible_outline = void 0;
+var ic_accessible_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "4",
+ "r": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessible_outline = ic_accessible_outline;
\ No newline at end of file
diff --git a/dist/md/ic_accessible_twotone.js b/dist/md/ic_accessible_twotone.js
new file mode 100644
index 000000000..b4a3bbc78
--- /dev/null
+++ b/dist/md/ic_accessible_twotone.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_accessible_twotone = void 0;
+var ic_accessible_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "4",
+ "r": "2"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z"
+ },
+ "children": []
+ }]
+};
+exports.ic_accessible_twotone = ic_accessible_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_account_balance.js b/dist/md/ic_account_balance.js
new file mode 100644
index 000000000..c152a3f6a
--- /dev/null
+++ b/dist/md/ic_account_balance.js
@@ -0,0 +1,127 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_balance = void 0;
+var ic_account_balance = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "7",
+ "width": "3",
+ "x": "4",
+ "y": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "7",
+ "width": "3",
+ "x": "4",
+ "y": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "7",
+ "width": "3",
+ "x": "10.5",
+ "y": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "7",
+ "width": "3",
+ "x": "10.5",
+ "y": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "3",
+ "width": "20",
+ "x": "2",
+ "y": "19"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "3",
+ "width": "20",
+ "x": "2",
+ "y": "19"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "7",
+ "width": "3",
+ "x": "17",
+ "y": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "7",
+ "width": "3",
+ "x": "17",
+ "y": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "12,1 2,6 2,8 22,8 22,6"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "12,1 2,6 2,8 22,8 22,6"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_account_balance = ic_account_balance;
\ No newline at end of file
diff --git a/dist/md/ic_account_balance_outline.js b/dist/md/ic_account_balance_outline.js
new file mode 100644
index 000000000..13293acda
--- /dev/null
+++ b/dist/md/ic_account_balance_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_balance_outline = void 0;
+var ic_account_balance_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-6.74L16.71 6H6.29l5.21-2.74m0-2.26L2 6v2h19V6l-9.5-5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_balance_outline = ic_account_balance_outline;
\ No newline at end of file
diff --git a/dist/md/ic_account_balance_twotone.js b/dist/md/ic_account_balance_twotone.js
new file mode 100644
index 000000000..4fcab5be4
--- /dev/null
+++ b/dist/md/ic_account_balance_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_balance_twotone = void 0;
+var ic_account_balance_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6.29 6l5.21-2.74L16.71 6z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-9L2 6v2h19V6l-9.5-5zM6.29 6l5.21-2.74L16.71 6H6.29z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_balance_twotone = ic_account_balance_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_account_balance_wallet.js b/dist/md/ic_account_balance_wallet.js
new file mode 100644
index 000000000..5fe29782b
--- /dev/null
+++ b/dist/md/ic_account_balance_wallet.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_balance_wallet = void 0;
+var ic_account_balance_wallet = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 18v1c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2V5c0-1.1.89-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_balance_wallet = ic_account_balance_wallet;
\ No newline at end of file
diff --git a/dist/md/ic_account_balance_wallet_outline.js b/dist/md/ic_account_balance_wallet_outline.js
new file mode 100644
index 000000000..d6d2c02db
--- /dev/null
+++ b/dist/md/ic_account_balance_wallet_outline.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_balance_wallet_outline = void 0;
+var ic_account_balance_wallet_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.37-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "16",
+ "cy": "12",
+ "r": "1.5"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_balance_wallet_outline = ic_account_balance_wallet_outline;
\ No newline at end of file
diff --git a/dist/md/ic_account_balance_wallet_twotone.js b/dist/md/ic_account_balance_wallet_twotone.js
new file mode 100644
index 000000000..784e3742e
--- /dev/null
+++ b/dist/md/ic_account_balance_wallet_twotone.js
@@ -0,0 +1,39 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_balance_wallet_twotone = void 0;
+var ic_account_balance_wallet_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M13 17c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6V5H5v14h14v-2h-6z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.38-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "16",
+ "cy": "12",
+ "r": "1.5"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_balance_wallet_twotone = ic_account_balance_wallet_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_account_box.js b/dist/md/ic_account_box.js
new file mode 100644
index 000000000..4fc745c41
--- /dev/null
+++ b/dist/md/ic_account_box.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_box = void 0;
+var ic_account_box = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_box = ic_account_box;
\ No newline at end of file
diff --git a/dist/md/ic_account_box_outline.js b/dist/md/ic_account_box_outline.js
new file mode 100644
index 000000000..8451f4901
--- /dev/null
+++ b/dist/md/ic_account_box_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_box_outline = void 0;
+var ic_account_box_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 5v14H5V5h14m0-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 9c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6 10H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18zm-9.69-2h7.38c-.69-.56-2.38-1.12-3.69-1.12s-3.01.56-3.69 1.12z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_box_outline = ic_account_box_outline;
\ No newline at end of file
diff --git a/dist/md/ic_account_box_twotone.js b/dist/md/ic_account_box_twotone.js
new file mode 100644
index 000000000..ffd4453b6
--- /dev/null
+++ b/dist/md/ic_account_box_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_box_twotone = void 0;
+var ic_account_box_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 19h14V5H5v14zm7-13c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 16.47c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18H6v-1.53z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7-5H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-1-2.53c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.53zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_box_twotone = ic_account_box_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_account_circle.js b/dist/md/ic_account_circle.js
new file mode 100644
index 000000000..bdeb59271
--- /dev/null
+++ b/dist/md/ic_account_circle.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_circle = void 0;
+var ic_account_circle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_circle = ic_account_circle;
\ No newline at end of file
diff --git a/dist/md/ic_account_circle_outline.js b/dist/md/ic_account_circle_outline.js
new file mode 100644
index 000000000..dc7f3e523
--- /dev/null
+++ b/dist/md/ic_account_circle_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_circle_outline = void 0;
+var ic_account_circle_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_circle_outline = ic_account_circle_outline;
\ No newline at end of file
diff --git a/dist/md/ic_account_circle_twotone.js b/dist/md/ic_account_circle_twotone.js
new file mode 100644
index 000000000..ab14a5fb1
--- /dev/null
+++ b/dist/md/ic_account_circle_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_circle_twotone = void 0;
+var ic_account_circle_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 4c-4.41 0-8 3.59-8 8 0 1.82.62 3.49 1.64 4.83 1.43-1.74 4.9-2.33 6.36-2.33s4.93.59 6.36 2.33C19.38 15.49 20 13.82 20 12c0-4.41-3.59-8-8-8zm0 9c-1.94 0-3.5-1.56-3.5-3.5S10.06 6 12 6s3.5 1.56 3.5 3.5S13.94 13 12 13z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.07 18.28c.43-.9 3.05-1.78 4.93-1.78s4.51.88 4.93 1.78C15.57 19.36 13.86 20 12 20s-3.57-.64-4.93-1.72zm11.29-1.45c-1.43-1.74-4.9-2.33-6.36-2.33s-4.93.59-6.36 2.33C4.62 15.49 4 13.82 4 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.82-.62 3.49-1.64 4.83zM12 6c-1.94 0-3.5 1.56-3.5 3.5S10.06 13 12 13s3.5-1.56 3.5-3.5S13.94 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_circle_twotone = ic_account_circle_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_account_tree.js b/dist/md/ic_account_tree.js
new file mode 100644
index 000000000..64dc4818e
--- /dev/null
+++ b/dist/md/ic_account_tree.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_tree = void 0;
+var ic_account_tree = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_tree = ic_account_tree;
\ No newline at end of file
diff --git a/dist/md/ic_account_tree_outline.js b/dist/md/ic_account_tree_outline.js
new file mode 100644
index 000000000..e7f19708b
--- /dev/null
+++ b/dist/md/ic_account_tree_outline.js
@@ -0,0 +1,25 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_tree_outline = void 0;
+var ic_account_tree_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_account_tree_outline = ic_account_tree_outline;
\ No newline at end of file
diff --git a/dist/md/ic_account_tree_twotone.js b/dist/md/ic_account_tree_twotone.js
new file mode 100644
index 000000000..876824cfe
--- /dev/null
+++ b/dist/md/ic_account_tree_twotone.js
@@ -0,0 +1,77 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_account_tree_twotone = void 0;
+var ic_account_tree_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "opacity": ".3",
+ "points": "7,5 7,9 4,9 4,5 7,5"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "opacity": ".3",
+ "points": "7,5 7,9 4,9 4,5 7,5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "opacity": ".3",
+ "points": "20,5 20,9 17,9 17,5 20,5"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "opacity": ".3",
+ "points": "20,5 20,9 17,9 17,5 20,5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polyline",
+ "attribs": {
+ "opacity": ".3",
+ "points": "20,15 20,19 17,19 17,15 20,15"
+ },
+ "children": [{
+ "name": "polyline",
+ "attribs": {
+ "opacity": ".3",
+ "points": "20,15 20,19 17,19 17,15 20,15"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_account_tree_twotone = ic_account_tree_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_ad_units.js b/dist/md/ic_ad_units.js
new file mode 100644
index 000000000..cd4df45bf
--- /dev/null
+++ b/dist/md/ic_ad_units.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_ad_units = void 0;
+var ic_ad_units = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM8 6h8v2H8z"
+ },
+ "children": []
+ }]
+};
+exports.ic_ad_units = ic_ad_units;
\ No newline at end of file
diff --git a/dist/md/ic_ad_units_outline.js b/dist/md/ic_ad_units_outline.js
new file mode 100644
index 000000000..af1e21d5a
--- /dev/null
+++ b/dist/md/ic_ad_units_outline.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_ad_units_outline = void 0;
+var ic_ad_units_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "16,7 8,7 8,9 16,9 16,7"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "16,7 8,7 8,9 16,9 16,7"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_ad_units_outline = ic_ad_units_outline;
\ No newline at end of file
diff --git a/dist/md/ic_ad_units_twotone.js b/dist/md/ic_ad_units_twotone.js
new file mode 100644
index 000000000..ba6249a14
--- /dev/null
+++ b/dist/md/ic_ad_units_twotone.js
@@ -0,0 +1,119 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_ad_units_twotone = void 0;
+var ic_ad_units_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "3"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "20"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "16,7 8,7 8,9 16,9 16,7"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "16,7 8,7 8,9 16,9 16,7"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_ad_units_twotone = ic_ad_units_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_adb.js b/dist/md/ic_adb.js
new file mode 100644
index 000000000..14a80a27f
--- /dev/null
+++ b/dist/md/ic_adb.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_adb = void 0;
+var ic_adb = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_adb = ic_adb;
\ No newline at end of file
diff --git a/dist/md/ic_adb_outline.js b/dist/md/ic_adb_outline.js
new file mode 100644
index 000000000..1ebb14a7d
--- /dev/null
+++ b/dist/md/ic_adb_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_adb_outline = void 0;
+var ic_adb_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_adb_outline = ic_adb_outline;
\ No newline at end of file
diff --git a/dist/md/ic_adb_twotone.js b/dist/md/ic_adb_twotone.js
new file mode 100644
index 000000000..bd33c4913
--- /dev/null
+++ b/dist/md/ic_adb_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_adb_twotone = void 0;
+var ic_adb_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_adb_twotone = ic_adb_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add.js b/dist/md/ic_add.js
new file mode 100644
index 000000000..1446157f3
--- /dev/null
+++ b/dist/md/ic_add.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add = void 0;
+var ic_add = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add = ic_add;
\ No newline at end of file
diff --git a/dist/md/ic_add_a_photo.js b/dist/md/ic_add_a_photo.js
new file mode 100644
index 000000000..d98d059e1
--- /dev/null
+++ b/dist/md/ic_add_a_photo.js
@@ -0,0 +1,25 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_a_photo = void 0;
+var ic_add_a_photo = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3,4V1h2v3h3v2H5v3H3V6H0V4H3z M6,10V7h3V4h7l1.83,2H21c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V10H6z M13,19c2.76,0,5-2.24,5-5s-2.24-5-5-5s-5,2.24-5,5S10.24,19,13,19z M9.8,14c0,1.77,1.43,3.2,3.2,3.2s3.2-1.43,3.2-3.2 s-1.43-3.2-3.2-3.2S9.8,12.23,9.8,14z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_a_photo = ic_add_a_photo;
\ No newline at end of file
diff --git a/dist/md/ic_add_a_photo_outline.js b/dist/md/ic_add_a_photo_outline.js
new file mode 100644
index 000000000..c57882ff3
--- /dev/null
+++ b/dist/md/ic_add_a_photo_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_a_photo_outline = void 0;
+var ic_add_a_photo_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 6h-3.17L16 4h-6v2h5.12l1.83 2H21v12H5v-9H3v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 6h3V4H5V1H3v3H0v2h3v3h2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_a_photo_outline = ic_add_a_photo_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_a_photo_twotone.js b/dist/md/ic_add_a_photo_twotone.js
new file mode 100644
index 000000000..f4729cc3d
--- /dev/null
+++ b/dist/md/ic_add_a_photo_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_a_photo_twotone = void 0;
+var ic_add_a_photo_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 7v3H5v10h16V8h-4.05l-1.83-2H9v1H6zm7 2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 6h-3.17L16 4H9v2h6.12l1.83 2H21v12H5V10H3v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 9V6h3V4H5V1H3v3H0v2h3v3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_a_photo_twotone = ic_add_a_photo_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_alarm.js b/dist/md/ic_add_alarm.js
new file mode 100644
index 000000000..668a85dc8
--- /dev/null
+++ b/dist/md/ic_add_alarm.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_alarm = void 0;
+var ic_add_alarm = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_alarm = ic_add_alarm;
\ No newline at end of file
diff --git a/dist/md/ic_add_alarm_outline.js b/dist/md/ic_add_alarm_outline.js
new file mode 100644
index 000000000..fda92c7c0
--- /dev/null
+++ b/dist/md/ic_add_alarm_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_alarm_outline = void 0;
+var ic_add_alarm_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_alarm_outline = ic_add_alarm_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_alarm_twotone.js b/dist/md/ic_add_alarm_twotone.js
new file mode 100644
index 000000000..249bb5206
--- /dev/null
+++ b/dist/md/ic_add_alarm_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_alarm_twotone = void 0;
+var ic_add_alarm_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3zm9-3.28l-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_alarm_twotone = ic_add_alarm_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_alert.js b/dist/md/ic_add_alert.js
new file mode 100644
index 000000000..8f64a248a
--- /dev/null
+++ b/dist/md/ic_add_alert.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_alert = void 0;
+var ic_add_alert = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zm8.87-4.19V11c0-3.25-2.25-5.97-5.29-6.69v-.72C13.59 2.71 12.88 2 12 2s-1.59.71-1.59 1.59v.72C7.37 5.03 5.12 7.75 5.12 11v5.82L3 18.94V20h18v-1.06l-2.12-2.12zM16 13.01h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_alert = ic_add_alert;
\ No newline at end of file
diff --git a/dist/md/ic_add_alert_outline.js b/dist/md/ic_add_alert_outline.js
new file mode 100644
index 000000000..95d3251b4
--- /dev/null
+++ b/dist/md/ic_add_alert_outline.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_alert_outline = void 0;
+var ic_add_alert_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_alert_outline = ic_add_alert_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_alert_twotone.js b/dist/md/ic_add_alert_twotone.js
new file mode 100644
index 000000000..8e3390fb0
--- /dev/null
+++ b/dist/md/ic_add_alert_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_alert_twotone = void 0;
+var ic_add_alert_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm4 7h-3v3h-2v-3H8v-2h3V8h2v3h3v2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zm-4-7V8h-2v3H8v2h3v3h2v-3h3v-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_alert_twotone = ic_add_alert_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_box.js b/dist/md/ic_add_box.js
new file mode 100644
index 000000000..5fa4d7ff9
--- /dev/null
+++ b/dist/md/ic_add_box.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_box = void 0;
+var ic_add_box = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_box = ic_add_box;
\ No newline at end of file
diff --git a/dist/md/ic_add_box_outline.js b/dist/md/ic_add_box_outline.js
new file mode 100644
index 000000000..2b2f672d5
--- /dev/null
+++ b/dist/md/ic_add_box_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_box_outline = void 0;
+var ic_add_box_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_box_outline = ic_add_box_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_box_twotone.js b/dist/md/ic_add_box_twotone.js
new file mode 100644
index 000000000..a77e54f40
--- /dev/null
+++ b/dist/md/ic_add_box_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_box_twotone = void 0;
+var ic_add_box_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 19h14V5H5v14zm2-8h4V7h2v4h4v2h-4v4h-2v-4H7v-2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_box_twotone = ic_add_box_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_business.js b/dist/md/ic_add_business.js
new file mode 100644
index 000000000..28ecc4ade
--- /dev/null
+++ b/dist/md/ic_add_business.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_business = void 0;
+var ic_add_business = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "2",
+ "width": "15",
+ "x": "2",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "2",
+ "width": "15",
+ "x": "2",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_add_business = ic_add_business;
\ No newline at end of file
diff --git a/dist/md/ic_add_business_outline.js b/dist/md/ic_add_business_outline.js
new file mode 100644
index 000000000..ee1eb6364
--- /dev/null
+++ b/dist/md/ic_add_business_outline.js
@@ -0,0 +1,85 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_business_outline = void 0;
+var ic_add_business_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "2",
+ "width": "15",
+ "x": "2",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "2",
+ "width": "15",
+ "x": "2",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "23,18 20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "23,18 20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_add_business_outline = ic_add_business_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_business_twotone.js b/dist/md/ic_add_business_twotone.js
new file mode 100644
index 000000000..18c665688
--- /dev/null
+++ b/dist/md/ic_add_business_twotone.js
@@ -0,0 +1,99 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_business_twotone = void 0;
+var ic_add_business_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "opacity": ".3",
+ "points": "15.36,9 3.64,9 3.04,12 15.96,12"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "opacity": ".3",
+ "points": "15.36,9 3.64,9 3.04,12 15.96,12"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "2",
+ "width": "15",
+ "x": "2",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "2",
+ "width": "15",
+ "x": "2",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_add_business_twotone = ic_add_business_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_call.js b/dist/md/ic_add_call.js
new file mode 100644
index 000000000..dbaf4009e
--- /dev/null
+++ b/dist/md/ic_add_call.js
@@ -0,0 +1,17 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_call = void 0;
+var ic_add_call = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM21 6h-3V3h-2v3h-3v2h3v3h2V8h3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_call = ic_add_call;
\ No newline at end of file
diff --git a/dist/md/ic_add_chart.js b/dist/md/ic_add_chart.js
new file mode 100644
index 000000000..fc5131ca9
--- /dev/null
+++ b/dist/md/ic_add_chart.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_chart = void 0;
+var ic_add_chart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 9.99h2v7H6zm8 3h2v4h-2zm-4-6h2v10h-2zM20 7V4h-2v3h-3v2h3v3h2V9h3V7zm-2 12H4V5h12V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5h-2v5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_chart = ic_add_chart;
\ No newline at end of file
diff --git a/dist/md/ic_add_circle.js b/dist/md/ic_add_circle.js
new file mode 100644
index 000000000..f4e9908cc
--- /dev/null
+++ b/dist/md/ic_add_circle.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_circle = void 0;
+var ic_add_circle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_circle = ic_add_circle;
\ No newline at end of file
diff --git a/dist/md/ic_add_circle_outline.js b/dist/md/ic_add_circle_outline.js
new file mode 100644
index 000000000..ae7382250
--- /dev/null
+++ b/dist/md/ic_add_circle_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_circle_outline = void 0;
+var ic_add_circle_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_circle_outline = ic_add_circle_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_circle_outline_outline.js b/dist/md/ic_add_circle_outline_outline.js
new file mode 100644
index 000000000..10e134e78
--- /dev/null
+++ b/dist/md/ic_add_circle_outline_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_circle_outline_outline = void 0;
+var ic_add_circle_outline_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_circle_outline_outline = ic_add_circle_outline_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_circle_outline_twotone.js b/dist/md/ic_add_circle_outline_twotone.js
new file mode 100644
index 000000000..940452fc7
--- /dev/null
+++ b/dist/md/ic_add_circle_outline_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_circle_outline_twotone = void 0;
+var ic_add_circle_outline_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_circle_outline_twotone = ic_add_circle_outline_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_circle_twotone.js b/dist/md/ic_add_circle_twotone.js
new file mode 100644
index 000000000..8759f0c87
--- /dev/null
+++ b/dist/md/ic_add_circle_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_circle_twotone = void 0;
+var ic_add_circle_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_circle_twotone = ic_add_circle_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_comment.js b/dist/md/ic_add_comment.js
new file mode 100644
index 000000000..424625be8
--- /dev/null
+++ b/dist/md/ic_add_comment.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_comment = void 0;
+var ic_add_comment = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM17 11h-4v4h-2v-4H7V9h4V5h2v4h4v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_comment = ic_add_comment;
\ No newline at end of file
diff --git a/dist/md/ic_add_comment_outline.js b/dist/md/ic_add_comment_outline.js
new file mode 100644
index 000000000..4d8cf3300
--- /dev/null
+++ b/dist/md/ic_add_comment_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_comment_outline = void 0;
+var ic_add_comment_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-2 13.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_comment_outline = ic_add_comment_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_comment_twotone.js b/dist/md/ic_add_comment_twotone.js
new file mode 100644
index 000000000..4650fc8d3
--- /dev/null
+++ b/dist/md/ic_add_comment_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_comment_twotone = void 0;
+var ic_add_comment_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 4v12h14.83L20 17.17V4H4zm13 7h-4v4h-2v-4H7V9h4V5h2v4h4v2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_comment_twotone = ic_add_comment_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_ic_call.js b/dist/md/ic_add_ic_call.js
new file mode 100644
index 000000000..c47962b7c
--- /dev/null
+++ b/dist/md/ic_add_ic_call.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_ic_call = void 0;
+var ic_add_ic_call = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM21 6h-3V3h-2v3h-3v2h3v3h2V8h3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_ic_call = ic_add_ic_call;
\ No newline at end of file
diff --git a/dist/md/ic_add_ic_call_outline.js b/dist/md/ic_add_ic_call_outline.js
new file mode 100644
index 000000000..e8d4409f6
--- /dev/null
+++ b/dist/md/ic_add_ic_call_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_ic_call_outline = void 0;
+var ic_add_ic_call_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 15.45c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.92c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 5.95v-3h-2v3h-3v2h3v3h2v-3h3v-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_ic_call_outline = ic_add_ic_call_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_ic_call_twotone.js b/dist/md/ic_add_ic_call_twotone.js
new file mode 100644
index 000000000..6f5bf263a
--- /dev/null
+++ b/dist/md/ic_add_ic_call_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_ic_call_twotone = void 0;
+var ic_add_ic_call_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 17.41c-.88-.07-1.75-.22-2.6-.45l-1.2 1.2c1.21.41 2.48.67 3.8.76v-1.51zM6.54 4.95h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 20.95c.55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.99c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zm10.97 6h2v-3h3v-2h-3v-3h-2v3h-3v2h3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_ic_call_twotone = ic_add_ic_call_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_link.js b/dist/md/ic_add_link.js
new file mode 100644
index 000000000..2c651222e
--- /dev/null
+++ b/dist/md/ic_add_link.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_link = void 0;
+var ic_add_link = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M8 11h8v2H8zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_link = ic_add_link;
\ No newline at end of file
diff --git a/dist/md/ic_add_location.js b/dist/md/ic_add_location.js
new file mode 100644
index 000000000..7e75278ce
--- /dev/null
+++ b/dist/md/ic_add_location.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_location = void 0;
+var ic_add_location = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm4 8h-3v3h-2v-3H8V8h3V5h2v3h3v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_location = ic_add_location;
\ No newline at end of file
diff --git a/dist/md/ic_add_location_alt.js b/dist/md/ic_add_location_alt.js
new file mode 100644
index 000000000..7b95ba170
--- /dev/null
+++ b/dist/md/ic_add_location_alt.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_location_alt = void 0;
+var ic_add_location_alt = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_location_alt = ic_add_location_alt;
\ No newline at end of file
diff --git a/dist/md/ic_add_location_alt_outline.js b/dist/md/ic_add_location_alt_outline.js
new file mode 100644
index 000000000..8021cbb4f
--- /dev/null
+++ b/dist/md/ic_add_location_alt_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_location_alt_outline = void 0;
+var ic_add_location_alt_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm1-9.94v2.02A6.53 6.53 0 0 0 12 5c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14V11h2v.2c0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.34 0 .67.02 1 .06z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_location_alt_outline = ic_add_location_alt_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_location_alt_twotone.js b/dist/md/ic_add_location_alt_twotone.js
new file mode 100644
index 000000000..acd620d3f
--- /dev/null
+++ b/dist/md/ic_add_location_alt_twotone.js
@@ -0,0 +1,32 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_location_alt_twotone = void 0;
+var ic_add_location_alt_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14,4.8V7h3v3h1.41c0.06,0.39,0.09,0.79,0.09,1.2c0,2.57-2.1,5.79-6.16,9.51L12,21.01l-0.34-0.31 C7.6,16.99,5.5,13.77,5.5,11.2c0-3.84,2.82-6.7,6.5-6.7C12.7,4.5,13.37,4.6,14,4.8z",
+ "fill-opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20,1v3h3v2h-3v3h-2V6h-3V4h3V1H20z M12,13c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,13,12,13z M14,3.25v2.08 C13.38,5.11,12.7,5,12,5c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14c4.05-3.7,6-6.79,6-9.14c0-0.41-0.03-0.81-0.1-1.2h2.02 c0.05,0.39,0.08,0.79,0.08,1.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,6.22,7.8,3,12,3C12.68,3,13.35,3.08,14,3.25z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_location_alt_twotone = ic_add_location_alt_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_location_outline.js b/dist/md/ic_add_location_outline.js
new file mode 100644
index 000000000..49f11c57e
--- /dev/null
+++ b/dist/md/ic_add_location_outline.js
@@ -0,0 +1,71 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_location_outline = void 0;
+var ic_add_location_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_add_location_outline = ic_add_location_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_location_twotone.js b/dist/md/ic_add_location_twotone.js
new file mode 100644
index 000000000..73341e8ce
--- /dev/null
+++ b/dist/md/ic_add_location_twotone.js
@@ -0,0 +1,51 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_location_twotone = void 0;
+var ic_add_location_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18.5,10.2c0,2.57-2.1,5.79-6.16,9.51L12,20.01l-0.34-0.31 C7.6,15.99,5.5,12.77,5.5,10.2c0-3.84,2.82-6.7,6.5-6.7S18.5,6.35,18.5,10.2z",
+ "enable-background": "new",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_add_location_twotone = ic_add_location_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_moderator.js b/dist/md/ic_add_moderator.js
new file mode 100644
index 000000000..362f548c4
--- /dev/null
+++ b/dist/md/ic_add_moderator.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_moderator = void 0;
+var ic_add_moderator = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M13.22 22.61c-.4.15-.8.29-1.22.39-5.16-1.26-9-6.45-9-12V5l9-4 9 4v6c0 .9-.11 1.78-.3 2.65-.81-.41-1.73-.65-2.7-.65-3.31 0-6 2.69-6 6 0 1.36.46 2.61 1.22 3.61zM19 20v2.99s-1.99.01-2 0V20h-3v-2h3v-3h2v3h3v2h-3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_moderator = ic_add_moderator;
\ No newline at end of file
diff --git a/dist/md/ic_add_outline.js b/dist/md/ic_add_outline.js
new file mode 100644
index 000000000..c80760444
--- /dev/null
+++ b/dist/md/ic_add_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_outline = void 0;
+var ic_add_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_outline = ic_add_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_photo_alternate.js b/dist/md/ic_add_photo_alternate.js
new file mode 100644
index 000000000..a4ba8d484
--- /dev/null
+++ b/dist/md/ic_add_photo_alternate.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_photo_alternate = void 0;
+var ic_add_photo_alternate = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8h-3zM5 19l3-4 2 3 3-4 4 5H5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_photo_alternate = ic_add_photo_alternate;
\ No newline at end of file
diff --git a/dist/md/ic_add_photo_alternate_outline.js b/dist/md/ic_add_photo_alternate_outline.js
new file mode 100644
index 000000000..759c6d7f6
--- /dev/null
+++ b/dist/md/ic_add_photo_alternate_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_photo_alternate_outline = void 0;
+var ic_add_photo_alternate_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18 20H4V6h9V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2v9zm-7.79-3.17l-1.96-2.36L5.5 18h11l-3.54-4.71zM20 4V1h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V6h3V4h-3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_photo_alternate_outline = ic_add_photo_alternate_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_photo_alternate_twotone.js b/dist/md/ic_add_photo_alternate_twotone.js
new file mode 100644
index 000000000..836ea0456
--- /dev/null
+++ b/dist/md/ic_add_photo_alternate_twotone.js
@@ -0,0 +1,37 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_photo_alternate_twotone = void 0;
+var ic_add_photo_alternate_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M10.21 16.83l-1.96-2.36L5.5 18h11l-3.54-4.71z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M16.5 18h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zM17 7h-3V6H4v14h14V10h-1V7z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 4V1h-2v3h-3v2h3v2.99h2V6h3V4zm-2 16H4V6h10V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V10h-2v10z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_photo_alternate_twotone = ic_add_photo_alternate_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_road.js b/dist/md/ic_add_road.js
new file mode 100644
index 000000000..8858ef346
--- /dev/null
+++ b/dist/md/ic_add_road.js
@@ -0,0 +1,145 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_road = void 0;
+var ic_add_road = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "9",
+ "width": "2",
+ "x": "18",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "9",
+ "width": "2",
+ "x": "18",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "16",
+ "width": "2",
+ "x": "4",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "16",
+ "width": "2",
+ "x": "4",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_add_road = ic_add_road;
\ No newline at end of file
diff --git a/dist/md/ic_add_road_outline.js b/dist/md/ic_add_road_outline.js
new file mode 100644
index 000000000..a87da3dcf
--- /dev/null
+++ b/dist/md/ic_add_road_outline.js
@@ -0,0 +1,145 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_road_outline = void 0;
+var ic_add_road_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "9",
+ "width": "2",
+ "x": "18",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "9",
+ "width": "2",
+ "x": "18",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "16",
+ "width": "2",
+ "x": "4",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "16",
+ "width": "2",
+ "x": "4",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_add_road_outline = ic_add_road_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_road_twotone.js b/dist/md/ic_add_road_twotone.js
new file mode 100644
index 000000000..1a70f1c4e
--- /dev/null
+++ b/dist/md/ic_add_road_twotone.js
@@ -0,0 +1,145 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_road_twotone = void 0;
+var ic_add_road_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "9",
+ "width": "2",
+ "x": "18",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "9",
+ "width": "2",
+ "x": "18",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "16",
+ "width": "2",
+ "x": "4",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "16",
+ "width": "2",
+ "x": "4",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "2",
+ "x": "11",
+ "y": "16"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_add_road_twotone = ic_add_road_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_shopping_cart.js b/dist/md/ic_add_shopping_cart.js
new file mode 100644
index 000000000..2bccb1f55
--- /dev/null
+++ b/dist/md/ic_add_shopping_cart.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_shopping_cart = void 0;
+var ic_add_shopping_cart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0zm18.31 6l-2.76 5z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-9.83-3.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4h-.01l-1.1 2-2.76 5H8.53l-.13-.27L6.16 6l-.95-2-.94-2H1v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.13 0-.25-.11-.25-.25z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_shopping_cart = ic_add_shopping_cart;
\ No newline at end of file
diff --git a/dist/md/ic_add_shopping_cart_outline.js b/dist/md/ic_add_shopping_cart_outline.js
new file mode 100644
index 000000000..ca5d302d8
--- /dev/null
+++ b/dist/md/ic_add_shopping_cart_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_shopping_cart_outline = void 0;
+var ic_add_shopping_cart_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_shopping_cart_outline = ic_add_shopping_cart_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_shopping_cart_twotone.js b/dist/md/ic_add_shopping_cart_twotone.js
new file mode 100644
index 000000000..ccc03ab0e
--- /dev/null
+++ b/dist/md/ic_add_shopping_cart_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_shopping_cart_twotone = void 0;
+var ic_add_shopping_cart_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.41 4l-3.86 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_shopping_cart_twotone = ic_add_shopping_cart_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_task.js b/dist/md/ic_add_task.js
new file mode 100644
index 000000000..39ac217ce
--- /dev/null
+++ b/dist/md/ic_add_task.js
@@ -0,0 +1,25 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_task = void 0;
+var ic_add_task = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_task = ic_add_task;
\ No newline at end of file
diff --git a/dist/md/ic_add_task_outline.js b/dist/md/ic_add_task_outline.js
new file mode 100644
index 000000000..f6d364a13
--- /dev/null
+++ b/dist/md/ic_add_task_outline.js
@@ -0,0 +1,25 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_task_outline = void 0;
+var ic_add_task_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_task_outline = ic_add_task_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_task_twotone.js b/dist/md/ic_add_task_twotone.js
new file mode 100644
index 000000000..8ab6c141d
--- /dev/null
+++ b/dist/md/ic_add_task_twotone.js
@@ -0,0 +1,25 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_task_twotone = void 0;
+var ic_add_task_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_task_twotone = ic_add_task_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_to_drive.js b/dist/md/ic_add_to_drive.js
new file mode 100644
index 000000000..5b50567d5
--- /dev/null
+++ b/dist/md/ic_add_to_drive.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_to_drive = void 0;
+var ic_add_to_drive = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7.71 3.52L1.15 15l3.42 5.99 6.56-11.47-3.42-6zM13.35 15H9.73L6.3 21h8.24c-.96-1.06-1.54-2.46-1.54-4 0-.7.13-1.37.35-2zM20 16v-3h-2v3h-3v2h3v3h2v-3h3v-2h-3zm.71-4.75L15.42 2H8.58v.01l6.15 10.77C15.82 11.68 17.33 11 19 11c.59 0 1.17.09 1.71.25z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_to_drive = ic_add_to_drive;
\ No newline at end of file
diff --git a/dist/md/ic_add_to_home_screen.js b/dist/md/ic_add_to_home_screen.js
new file mode 100644
index 000000000..53bedfdf9
--- /dev/null
+++ b/dist/md/ic_add_to_home_screen.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_to_home_screen = void 0;
+var ic_add_to_home_screen = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_to_home_screen = ic_add_to_home_screen;
\ No newline at end of file
diff --git a/dist/md/ic_add_to_home_screen_outline.js b/dist/md/ic_add_to_home_screen_outline.js
new file mode 100644
index 000000000..694884b3a
--- /dev/null
+++ b/dist/md/ic_add_to_home_screen_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_to_home_screen_outline = void 0;
+var ic_add_to_home_screen_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_to_home_screen_outline = ic_add_to_home_screen_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_to_home_screen_twotone.js b/dist/md/ic_add_to_home_screen_twotone.js
new file mode 100644
index 000000000..edbf939fc
--- /dev/null
+++ b/dist/md/ic_add_to_home_screen_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_to_home_screen_twotone = void 0;
+var ic_add_to_home_screen_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_to_home_screen_twotone = ic_add_to_home_screen_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_to_photos.js b/dist/md/ic_add_to_photos.js
new file mode 100644
index 000000000..15ce9e9d6
--- /dev/null
+++ b/dist/md/ic_add_to_photos.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_to_photos = void 0;
+var ic_add_to_photos = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_to_photos = ic_add_to_photos;
\ No newline at end of file
diff --git a/dist/md/ic_add_to_photos_outline.js b/dist/md/ic_add_to_photos_outline.js
new file mode 100644
index 000000000..4017beccd
--- /dev/null
+++ b/dist/md/ic_add_to_photos_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_to_photos_outline = void 0;
+var ic_add_to_photos_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_to_photos_outline = ic_add_to_photos_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_to_photos_twotone.js b/dist/md/ic_add_to_photos_twotone.js
new file mode 100644
index 000000000..d9b4b857d
--- /dev/null
+++ b/dist/md/ic_add_to_photos_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_to_photos_twotone = void 0;
+var ic_add_to_photos_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 4H8v12h12V4zm-1 7h-4v4h-2v-4H9V9h4V5h2v4h4v2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm4-4h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM8 4h12v12H8V4zm7 1h-2v4H9v2h4v4h2v-4h4V9h-4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_to_photos_twotone = ic_add_to_photos_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_to_queue.js b/dist/md/ic_add_to_queue.js
new file mode 100644
index 000000000..906d3af5e
--- /dev/null
+++ b/dist/md/ic_add_to_queue.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_to_queue = void 0;
+var ic_add_to_queue = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_to_queue = ic_add_to_queue;
\ No newline at end of file
diff --git a/dist/md/ic_add_to_queue_outline.js b/dist/md/ic_add_to_queue_outline.js
new file mode 100644
index 000000000..7fbc8f354
--- /dev/null
+++ b/dist/md/ic_add_to_queue_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_to_queue_outline = void 0;
+var ic_add_to_queue_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_to_queue_outline = ic_add_to_queue_outline;
\ No newline at end of file
diff --git a/dist/md/ic_add_to_queue_twotone.js b/dist/md/ic_add_to_queue_twotone.js
new file mode 100644
index 000000000..9982b0c89
--- /dev/null
+++ b/dist/md/ic_add_to_queue_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_to_queue_twotone = void 0;
+var ic_add_to_queue_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3 17h18V5H3v12zm5-7h3V7h2v3h3v2h-3v3h-2v-3H8v-2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_to_queue_twotone = ic_add_to_queue_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_add_twotone.js b/dist/md/ic_add_twotone.js
new file mode 100644
index 000000000..84ec3132b
--- /dev/null
+++ b/dist/md/ic_add_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_add_twotone = void 0;
+var ic_add_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_add_twotone = ic_add_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_addchart.js b/dist/md/ic_addchart.js
new file mode 100644
index 000000000..363c16cc2
--- /dev/null
+++ b/dist/md/ic_addchart.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_addchart = void 0;
+var ic_addchart = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_addchart = ic_addchart;
\ No newline at end of file
diff --git a/dist/md/ic_addchart_outline.js b/dist/md/ic_addchart_outline.js
new file mode 100644
index 000000000..1ac0a5e55
--- /dev/null
+++ b/dist/md/ic_addchart_outline.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_addchart_outline = void 0;
+var ic_addchart_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_addchart_outline = ic_addchart_outline;
\ No newline at end of file
diff --git a/dist/md/ic_addchart_twotone.js b/dist/md/ic_addchart_twotone.js
new file mode 100644
index 000000000..dae58ae11
--- /dev/null
+++ b/dist/md/ic_addchart_twotone.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_addchart_twotone = void 0;
+var ic_addchart_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_addchart_twotone = ic_addchart_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_adjust.js b/dist/md/ic_adjust.js
new file mode 100644
index 000000000..f31e33241
--- /dev/null
+++ b/dist/md/ic_adjust.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_adjust = void 0;
+var ic_adjust = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_adjust = ic_adjust;
\ No newline at end of file
diff --git a/dist/md/ic_adjust_outline.js b/dist/md/ic_adjust_outline.js
new file mode 100644
index 000000000..c0fb3c9b6
--- /dev/null
+++ b/dist/md/ic_adjust_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_adjust_outline = void 0;
+var ic_adjust_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_adjust_outline = ic_adjust_outline;
\ No newline at end of file
diff --git a/dist/md/ic_adjust_twotone.js b/dist/md/ic_adjust_twotone.js
new file mode 100644
index 000000000..7cc3b1060
--- /dev/null
+++ b/dist/md/ic_adjust_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_adjust_twotone = void 0;
+var ic_adjust_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0-7C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"
+ },
+ "children": []
+ }]
+};
+exports.ic_adjust_twotone = ic_adjust_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_admin_panel_settings.js b/dist/md/ic_admin_panel_settings.js
new file mode 100644
index 000000000..f1b9557a3
--- /dev/null
+++ b/dist/md/ic_admin_panel_settings.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_admin_panel_settings = void 0;
+var ic_admin_panel_settings = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,11c0.34,0,0.67,0.04,1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55 C11.41,19.47,11,18.28,11,17C11,13.69,13.69,11,17,11z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,11c0.34,0,0.67,0.04,1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55 C11.41,19.47,11,18.28,11,17C11,13.69,13.69,11,17,11z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38c0.62,0,1.12,0.51,1.12,1.12 s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75c-0.93,0-1.74-0.46-2.24-1.17 c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38c0.62,0,1.12,0.51,1.12,1.12 s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75c-0.93,0-1.74-0.46-2.24-1.17 c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_admin_panel_settings = ic_admin_panel_settings;
\ No newline at end of file
diff --git a/dist/md/ic_admin_panel_settings_outline.js b/dist/md/ic_admin_panel_settings_outline.js
new file mode 100644
index 000000000..bfa6436fb
--- /dev/null
+++ b/dist/md/ic_admin_panel_settings_outline.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_admin_panel_settings_outline = void 0;
+var ic_admin_panel_settings_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "17",
+ "cy": "15.5",
+ "fill-rule": "evenodd",
+ "r": "1.12"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "17",
+ "cy": "15.5",
+ "fill-rule": "evenodd",
+ "r": "1.12"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17 s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z",
+ "fill-rule": "evenodd"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17 s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z",
+ "fill-rule": "evenodd"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82 c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17 c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51 C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C21,19.21,19.21,21,17,21z",
+ "fill-rule": "evenodd"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82 c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17 c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51 C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C21,19.21,19.21,21,17,21z",
+ "fill-rule": "evenodd"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_admin_panel_settings_outline = ic_admin_panel_settings_outline;
\ No newline at end of file
diff --git a/dist/md/ic_admin_panel_settings_twotone.js b/dist/md/ic_admin_panel_settings_twotone.js
new file mode 100644
index 000000000..7de3b27b6
--- /dev/null
+++ b/dist/md/ic_admin_panel_settings_twotone.js
@@ -0,0 +1,111 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_admin_panel_settings_twotone = void 0;
+var ic_admin_panel_settings_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,7.58l-5.5-2.4L5,7.58v3.6c0,3.5,2.33,6.74,5.5,7.74c0.25-0.08,0.49-0.2,0.73-0.3 C11.08,18.11,11,17.56,11,17c0-2.97,2.16-5.43,5-5.91V7.58z",
+ "opacity": ".3"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16,7.58l-5.5-2.4L5,7.58v3.6c0,3.5,2.33,6.74,5.5,7.74c0.25-0.08,0.49-0.2,0.73-0.3 C11.08,18.11,11,17.56,11,17c0-2.97,2.16-5.43,5-5.91V7.58z",
+ "opacity": ".3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38 c0.62,0,1.12,0.51,1.12,1.12s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75 c-0.93,0-1.74-0.46-2.24-1.17c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z",
+ "opacity": ".3"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38 c0.62,0,1.12,0.51,1.12,1.12s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75 c-0.93,0-1.74-0.46-2.24-1.17c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z",
+ "opacity": ".3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "17",
+ "cy": "15.5",
+ "r": "1.12"
+ },
+ "children": [{
+ "name": "circle",
+ "attribs": {
+ "cx": "17",
+ "cy": "15.5",
+ "r": "1.12"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23 c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3 c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4 s4,1.79,4,4C21,19.21,19.21,21,17,21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23 c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3 c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4 s4,1.79,4,4C21,19.21,19.21,21,17,21z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_admin_panel_settings_twotone = ic_admin_panel_settings_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_agriculture.js b/dist/md/ic_agriculture.js
new file mode 100644
index 000000000..0b23aa9cf
--- /dev/null
+++ b/dist/md/ic_agriculture.js
@@ -0,0 +1,91 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_agriculture = void 0;
+var ic_agriculture = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.5,12c0.93,0,1.78,0.28,2.5,0.76V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71 l1.41-1.41L13,6.71V9c0,1.1-0.9,2-2,2h-0.54c0.95,1.06,1.54,2.46,1.54,4c0,0.34-0.04,0.67-0.09,1h3.14 C15.3,13.75,17.19,12,19.5,12z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.5,12c0.93,0,1.78,0.28,2.5,0.76V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71 l1.41-1.41L13,6.71V9c0,1.1-0.9,2-2,2h-0.54c0.95,1.06,1.54,2.46,1.54,4c0,0.34-0.04,0.67-0.09,1h3.14 C15.3,13.75,17.19,12,19.5,12z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S21.43,13,19.5,13z M19.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S21.43,13,19.5,13z M19.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M9.83,13.82l-0.18-0.47L10.58,13c-0.46-1.06-1.28-1.91-2.31-2.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4C10.87,16.26,11,15.64,11,15c0-0.53-0.11-1.04-0.26-1.52L9.83,13.82z M7.15,17.77c-1.53,0.63-3.29-0.09-3.92-1.62c-0.63-1.53,0.09-3.29,1.62-3.92c1.53-0.63,3.29,0.09,3.92,1.62 C9.41,15.38,8.68,17.14,7.15,17.77z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.83,13.82l-0.18-0.47L10.58,13c-0.46-1.06-1.28-1.91-2.31-2.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4C10.87,16.26,11,15.64,11,15c0-0.53-0.11-1.04-0.26-1.52L9.83,13.82z M7.15,17.77c-1.53,0.63-3.29-0.09-3.92-1.62c-0.63-1.53,0.09-3.29,1.62-3.92c1.53-0.63,3.29,0.09,3.92,1.62 C9.41,15.38,8.68,17.14,7.15,17.77z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_agriculture = ic_agriculture;
\ No newline at end of file
diff --git a/dist/md/ic_agriculture_outline.js b/dist/md/ic_agriculture_outline.js
new file mode 100644
index 000000000..c8058f023
--- /dev/null
+++ b/dist/md/ic_agriculture_outline.js
@@ -0,0 +1,67 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_agriculture_outline = void 0;
+var ic_agriculture_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_agriculture_outline = ic_agriculture_outline;
\ No newline at end of file
diff --git a/dist/md/ic_agriculture_twotone.js b/dist/md/ic_agriculture_twotone.js
new file mode 100644
index 000000000..e48c49011
--- /dev/null
+++ b/dist/md/ic_agriculture_twotone.js
@@ -0,0 +1,89 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_agriculture_twotone = void 0;
+var ic_agriculture_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20,13.05V8h-5v1c0,2.21-1.79,4-4,4c0,0-0.42,0-0.42,0c0.14,0.32,0.25,0.65,0.32,1h6.16 c0.63-0.62,1.49-1,2.44-1C19.67,13,19.84,13.03,20,13.05z",
+ "opacity": ".3"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20,13.05V8h-5v1c0,2.21-1.79,4-4,4c0,0-0.42,0-0.42,0c0.14,0.32,0.25,0.65,0.32,1h6.16 c0.63-0.62,1.49-1,2.44-1C19.67,13,19.84,13.03,20,13.05z",
+ "opacity": ".3"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_agriculture_twotone = ic_agriculture_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_flat.js b/dist/md/ic_airline_seat_flat.js
new file mode 100644
index 000000000..02e781f23
--- /dev/null
+++ b/dist/md/ic_airline_seat_flat.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_flat = void 0;
+var ic_airline_seat_flat = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 11v2H9V7h9c2.21 0 4 1.79 4 4zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_flat = ic_airline_seat_flat;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_flat_angled.js b/dist/md/ic_airline_seat_flat_angled.js
new file mode 100644
index 000000000..c12b15c69
--- /dev/null
+++ b/dist/md/ic_airline_seat_flat_angled.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_flat_angled = void 0;
+var ic_airline_seat_flat_angled = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22.25 14.29l-.69 1.89L9.2 11.71l2.08-5.66 8.56 3.09c2.1.76 3.18 3.06 2.41 5.15zM1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_flat_angled = ic_airline_seat_flat_angled;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_flat_angled_outline.js b/dist/md/ic_airline_seat_flat_angled_outline.js
new file mode 100644
index 000000000..7c62bc1c2
--- /dev/null
+++ b/dist/md/ic_airline_seat_flat_angled_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_flat_angled_outline = void 0;
+var ic_airline_seat_flat_angled_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 6.5c.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1m6.47 2.11l6.69 2.41c.52.19.93.56 1.15 1.05.22.48.25 1.03.06 1.53l-.01.02-8.59-3.11.7-1.9M10 15.19l4 1.44V17h-4v-1.81M6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5zm5.28 1.55L9.2 11.71l12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15l-8.56-3.09zm-9.09 4.2l-.69 1.89L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_flat_angled_outline = ic_airline_seat_flat_angled_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_flat_angled_twotone.js b/dist/md/ic_airline_seat_flat_angled_twotone.js
new file mode 100644
index 000000000..9540c8866
--- /dev/null
+++ b/dist/md/ic_airline_seat_flat_angled_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_flat_angled_twotone = void 0;
+var ic_airline_seat_flat_angled_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14 16.64l-4-1.45V17h4zM6 8.5c.15 0 .3-.03.44-.1.49-.24.7-.84.46-1.34-.19-.41-.59-.56-.9-.56-.15 0-.3.03-.44.1-.32.16-.45.42-.5.56-.05.15-.12.44.04.77.2.42.59.57.9.57zm13.16 2.52l-6.69-2.41-.7 1.91 8.59 3.11.01-.02c.19-.51.17-1.05-.06-1.53-.23-.5-.63-.87-1.15-1.06z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm8.5 3.05l4 1.44V17h-4v-1.81zm9.84-6.05l-8.56-3.09-2.08 5.66 12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15zm.53 4.46l-.01.02-8.59-3.11.7-1.91 6.69 2.41c.52.19.93.56 1.15 1.05.23.49.25 1.04.06 1.54zM6 10.5c.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7zm-.94-3.34c.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_flat_angled_twotone = ic_airline_seat_flat_angled_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_flat_outline.js b/dist/md/ic_airline_seat_flat_outline.js
new file mode 100644
index 000000000..628f66237
--- /dev/null
+++ b/dist/md/ic_airline_seat_flat_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_flat_outline = void 0;
+var ic_airline_seat_flat_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_flat_outline = ic_airline_seat_flat_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_flat_twotone.js b/dist/md/ic_airline_seat_flat_twotone.js
new file mode 100644
index 000000000..677124f43
--- /dev/null
+++ b/dist/md/ic_airline_seat_flat_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_flat_twotone = void 0;
+var ic_airline_seat_flat_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 11c.27 0 .52-.11.71-.3.39-.4.39-1.02-.01-1.41C5.51 9.11 5.26 9 5 9c-.27 0-.52.11-.71.3-.39.4-.39 1.02.01 1.41.19.18.44.29.7.29zm13-2h-7v2h9c0-1.1-.9-2-2-2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_flat_twotone = ic_airline_seat_flat_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_individual_suite.js b/dist/md/ic_airline_seat_individual_suite.js
new file mode 100644
index 000000000..ac5d50f4c
--- /dev/null
+++ b/dist/md/ic_airline_seat_individual_suite.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_individual_suite = void 0;
+var ic_airline_seat_individual_suite = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm12-6h-8v7H3V7H1v10h22v-6c0-2.21-1.79-4-4-4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_individual_suite = ic_airline_seat_individual_suite;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_individual_suite_outline.js b/dist/md/ic_airline_seat_individual_suite_outline.js
new file mode 100644
index 000000000..29b48342a
--- /dev/null
+++ b/dist/md/ic_airline_seat_individual_suite_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_individual_suite_outline = void 0;
+var ic_airline_seat_individual_suite_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_individual_suite_outline = ic_airline_seat_individual_suite_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_individual_suite_twotone.js b/dist/md/ic_airline_seat_individual_suite_twotone.js
new file mode 100644
index 000000000..f881c87ff
--- /dev/null
+++ b/dist/md/ic_airline_seat_individual_suite_twotone.js
@@ -0,0 +1,40 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_individual_suite_twotone = void 0;
+var ic_airline_seat_individual_suite_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "7",
+ "cy": "11",
+ "opacity": ".3",
+ "r": "1"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_individual_suite_twotone = ic_airline_seat_individual_suite_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_legroom_extra.js b/dist/md/ic_airline_seat_legroom_extra.js
new file mode 100644
index 000000000..2e172f506
--- /dev/null
+++ b/dist/md/ic_airline_seat_legroom_extra.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_legroom_extra = void 0;
+var ic_airline_seat_legroom_extra = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98c-.34-.68-1.03-1.12-1.79-1.12L11 9V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_legroom_extra = ic_airline_seat_legroom_extra;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_legroom_extra_outline.js b/dist/md/ic_airline_seat_legroom_extra_outline.js
new file mode 100644
index 000000000..cc1bd0027
--- /dev/null
+++ b/dist/md/ic_airline_seat_legroom_extra_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_legroom_extra_outline = void 0;
+var ic_airline_seat_legroom_extra_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_legroom_extra_outline = ic_airline_seat_legroom_extra_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_legroom_extra_twotone.js b/dist/md/ic_airline_seat_legroom_extra_twotone.js
new file mode 100644
index 000000000..cc61245f3
--- /dev/null
+++ b/dist/md/ic_airline_seat_legroom_extra_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_legroom_extra_twotone = void 0;
+var ic_airline_seat_legroom_extra_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_legroom_extra_twotone = ic_airline_seat_legroom_extra_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_legroom_normal.js b/dist/md/ic_airline_seat_legroom_normal.js
new file mode 100644
index 000000000..6a5641a2a
--- /dev/null
+++ b/dist/md/ic_airline_seat_legroom_normal.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_legroom_normal = void 0;
+var ic_airline_seat_legroom_normal = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_legroom_normal = ic_airline_seat_legroom_normal;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_legroom_normal_outline.js b/dist/md/ic_airline_seat_legroom_normal_outline.js
new file mode 100644
index 000000000..e4860ee0c
--- /dev/null
+++ b/dist/md/ic_airline_seat_legroom_normal_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_legroom_normal_outline = void 0;
+var ic_airline_seat_legroom_normal_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_legroom_normal_outline = ic_airline_seat_legroom_normal_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_legroom_normal_twotone.js b/dist/md/ic_airline_seat_legroom_normal_twotone.js
new file mode 100644
index 000000000..33331a496
--- /dev/null
+++ b/dist/md/ic_airline_seat_legroom_normal_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_legroom_normal_twotone = void 0;
+var ic_airline_seat_legroom_normal_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_legroom_normal_twotone = ic_airline_seat_legroom_normal_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_legroom_reduced.js b/dist/md/ic_airline_seat_legroom_reduced.js
new file mode 100644
index 000000000..dfd5419e6
--- /dev/null
+++ b/dist/md/ic_airline_seat_legroom_reduced.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_legroom_reduced = void 0;
+var ic_airline_seat_legroom_reduced = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_legroom_reduced = ic_airline_seat_legroom_reduced;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_legroom_reduced_outline.js b/dist/md/ic_airline_seat_legroom_reduced_outline.js
new file mode 100644
index 000000000..2d8b83094
--- /dev/null
+++ b/dist/md/ic_airline_seat_legroom_reduced_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_legroom_reduced_outline = void 0;
+var ic_airline_seat_legroom_reduced_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_legroom_reduced_outline = ic_airline_seat_legroom_reduced_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_legroom_reduced_twotone.js b/dist/md/ic_airline_seat_legroom_reduced_twotone.js
new file mode 100644
index 000000000..ef42f27d2
--- /dev/null
+++ b/dist/md/ic_airline_seat_legroom_reduced_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_legroom_reduced_twotone = void 0;
+var ic_airline_seat_legroom_reduced_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_legroom_reduced_twotone = ic_airline_seat_legroom_reduced_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_recline_extra.js b/dist/md/ic_airline_seat_recline_extra.js
new file mode 100644
index 000000000..a33a71938
--- /dev/null
+++ b/dist/md/ic_airline_seat_recline_extra.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_recline_extra = void 0;
+var ic_airline_seat_recline_extra = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_recline_extra = ic_airline_seat_recline_extra;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_recline_extra_outline.js b/dist/md/ic_airline_seat_recline_extra_outline.js
new file mode 100644
index 000000000..5c9136701
--- /dev/null
+++ b/dist/md/ic_airline_seat_recline_extra_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_recline_extra_outline = void 0;
+var ic_airline_seat_recline_extra_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_recline_extra_outline = ic_airline_seat_recline_extra_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_recline_extra_twotone.js b/dist/md/ic_airline_seat_recline_extra_twotone.js
new file mode 100644
index 000000000..76c82f6a0
--- /dev/null
+++ b/dist/md/ic_airline_seat_recline_extra_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_recline_extra_twotone = void 0;
+var ic_airline_seat_recline_extra_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_recline_extra_twotone = ic_airline_seat_recline_extra_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_recline_normal.js b/dist/md/ic_airline_seat_recline_normal.js
new file mode 100644
index 000000000..6acd5dbc6
--- /dev/null
+++ b/dist/md/ic_airline_seat_recline_normal.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_recline_normal = void 0;
+var ic_airline_seat_recline_normal = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7.59 5.41c-.78-.78-.78-2.05 0-2.83.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_recline_normal = ic_airline_seat_recline_normal;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_recline_normal_outline.js b/dist/md/ic_airline_seat_recline_normal_outline.js
new file mode 100644
index 000000000..a1746a98f
--- /dev/null
+++ b/dist/md/ic_airline_seat_recline_normal_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_recline_normal_outline = void 0;
+var ic_airline_seat_recline_normal_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_recline_normal_outline = ic_airline_seat_recline_normal_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airline_seat_recline_normal_twotone.js b/dist/md/ic_airline_seat_recline_normal_twotone.js
new file mode 100644
index 000000000..787189dc1
--- /dev/null
+++ b/dist/md/ic_airline_seat_recline_normal_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airline_seat_recline_normal_twotone = void 0;
+var ic_airline_seat_recline_normal_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airline_seat_recline_normal_twotone = ic_airline_seat_recline_normal_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airplanemode_active.js b/dist/md/ic_airplanemode_active.js
new file mode 100644
index 000000000..0dcfbaa3c
--- /dev/null
+++ b/dist/md/ic_airplanemode_active.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airplanemode_active = void 0;
+var ic_airplanemode_active = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_airplanemode_active = ic_airplanemode_active;
\ No newline at end of file
diff --git a/dist/md/ic_airplanemode_active_outline.js b/dist/md/ic_airplanemode_active_outline.js
new file mode 100644
index 000000000..c40645db6
--- /dev/null
+++ b/dist/md/ic_airplanemode_active_outline.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airplanemode_active_outline = void 0;
+var ic_airplanemode_active_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_airplanemode_active_outline = ic_airplanemode_active_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airplanemode_active_twotone.js b/dist/md/ic_airplanemode_active_twotone.js
new file mode 100644
index 000000000..4c1941b26
--- /dev/null
+++ b/dist/md/ic_airplanemode_active_twotone.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airplanemode_active_twotone = void 0;
+var ic_airplanemode_active_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_airplanemode_active_twotone = ic_airplanemode_active_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airplanemode_inactive.js b/dist/md/ic_airplanemode_inactive.js
new file mode 100644
index 000000000..b778ae3c8
--- /dev/null
+++ b/dist/md/ic_airplanemode_inactive.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airplanemode_inactive = void 0;
+var ic_airplanemode_inactive = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_airplanemode_inactive = ic_airplanemode_inactive;
\ No newline at end of file
diff --git a/dist/md/ic_airplanemode_inactive_outline.js b/dist/md/ic_airplanemode_inactive_outline.js
new file mode 100644
index 000000000..a5edef003
--- /dev/null
+++ b/dist/md/ic_airplanemode_inactive_outline.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airplanemode_inactive_outline = void 0;
+var ic_airplanemode_inactive_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_airplanemode_inactive_outline = ic_airplanemode_inactive_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airplanemode_inactive_twotone.js b/dist/md/ic_airplanemode_inactive_twotone.js
new file mode 100644
index 000000000..c8f29c48b
--- /dev/null
+++ b/dist/md/ic_airplanemode_inactive_twotone.js
@@ -0,0 +1,41 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airplanemode_inactive_twotone = void 0;
+var ic_airplanemode_inactive_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0,0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_airplanemode_inactive_twotone = ic_airplanemode_inactive_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airplay.js b/dist/md/ic_airplay.js
new file mode 100644
index 000000000..82e4af763
--- /dev/null
+++ b/dist/md/ic_airplay.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airplay = void 0;
+var ic_airplay = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "6,22 18,22 12,16"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "6,22 18,22 12,16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_airplay = ic_airplay;
\ No newline at end of file
diff --git a/dist/md/ic_airplay_outline.js b/dist/md/ic_airplay_outline.js
new file mode 100644
index 000000000..41757c94a
--- /dev/null
+++ b/dist/md/ic_airplay_outline.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airplay_outline = void 0;
+var ic_airplay_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "6,22 18,22 12,16"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "6,22 18,22 12,16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_airplay_outline = ic_airplay_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airplay_twotone.js b/dist/md/ic_airplay_twotone.js
new file mode 100644
index 000000000..c1cf6e948
--- /dev/null
+++ b/dist/md/ic_airplay_twotone.js
@@ -0,0 +1,107 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airplay_twotone = void 0;
+var ic_airplay_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "6,22 18,22 12,16"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "6,22 18,22 12,16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_airplay_twotone = ic_airplay_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_airport_shuttle.js b/dist/md/ic_airport_shuttle.js
new file mode 100644
index 000000000..466e3382f
--- /dev/null
+++ b/dist/md/ic_airport_shuttle.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airport_shuttle = void 0;
+var ic_airport_shuttle = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.65 1.34 3 3 3s3-1.35 3-3h5.5c0 1.65 1.34 3 3 3s3-1.35 3-3H23v-5l-6-6zM3 11V7h4v4H3zm3 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7-6.5H9V7h4v4zm4.5 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM15 11V7h1l4 4h-5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airport_shuttle = ic_airport_shuttle;
\ No newline at end of file
diff --git a/dist/md/ic_airport_shuttle_outline.js b/dist/md/ic_airport_shuttle_outline.js
new file mode 100644
index 000000000..27ebd271e
--- /dev/null
+++ b/dist/md/ic_airport_shuttle_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airport_shuttle_outline = void 0;
+var ic_airport_shuttle_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airport_shuttle_outline = ic_airport_shuttle_outline;
\ No newline at end of file
diff --git a/dist/md/ic_airport_shuttle_twotone.js b/dist/md/ic_airport_shuttle_twotone.js
new file mode 100644
index 000000000..f1a123bd2
--- /dev/null
+++ b/dist/md/ic_airport_shuttle_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_airport_shuttle_twotone = void 0;
+var ic_airport_shuttle_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M3 14h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1h7.56c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H21v-2H3v2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_airport_shuttle_twotone = ic_airport_shuttle_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_alarm.js b/dist/md/ic_alarm.js
new file mode 100644
index 000000000..3e03a461a
--- /dev/null
+++ b/dist/md/ic_alarm.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm = void 0;
+var ic_alarm = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm = ic_alarm;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_add.js b/dist/md/ic_alarm_add.js
new file mode 100644
index 000000000..b01d651f8
--- /dev/null
+++ b/dist/md/ic_alarm_add.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_add = void 0;
+var ic_alarm_add = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_add = ic_alarm_add;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_add_outline.js b/dist/md/ic_alarm_add_outline.js
new file mode 100644
index 000000000..0d3d0b7b2
--- /dev/null
+++ b/dist/md/ic_alarm_add_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_add_outline = void 0;
+var ic_alarm_add_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_add_outline = ic_alarm_add_outline;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_add_twotone.js b/dist/md/ic_alarm_add_twotone.js
new file mode 100644
index 000000000..4de68d942
--- /dev/null
+++ b/dist/md/ic_alarm_add_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_add_twotone = void 0;
+var ic_alarm_add_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_add_twotone = ic_alarm_add_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_off.js b/dist/md/ic_alarm_off.js
new file mode 100644
index 000000000..192abe7ab
--- /dev/null
+++ b/dist/md/ic_alarm_off.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_off = void 0;
+var ic_alarm_off = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 6c3.87 0 7 3.13 7 7 0 .84-.16 1.65-.43 2.4l1.52 1.52c.58-1.19.91-2.51.91-3.92 0-4.97-4.03-9-9-9-1.41 0-2.73.33-3.92.91L9.6 6.43C10.35 6.16 11.16 6 12 6zm10-.28l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM2.92 2.29L1.65 3.57 2.98 4.9l-1.11.93 1.42 1.42 1.11-.94.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.02 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.2 2.2 1.27-1.27L3.89 3.27l-.97-.98zm13.55 16.1C15.26 19.39 13.7 20 12 20c-3.87 0-7-3.13-7-7 0-1.7.61-3.26 1.61-4.47l9.86 9.86zM8.02 3.28L6.6 1.86l-.86.71 1.42 1.42.86-.71z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_off = ic_alarm_off;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_off_outline.js b/dist/md/ic_alarm_off_outline.js
new file mode 100644
index 000000000..99742ef84
--- /dev/null
+++ b/dist/md/ic_alarm_off_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_off_outline = void 0;
+var ic_alarm_off_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1L1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_off_outline = ic_alarm_off_outline;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_off_twotone.js b/dist/md/ic_alarm_off_twotone.js
new file mode 100644
index 000000000..4d4549e30
--- /dev/null
+++ b/dist/md/ic_alarm_off_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_off_twotone = void 0;
+var ic_alarm_off_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zm1.903 16.51l-1.43-1.43-9.7-9.7-1.43-1.43-.74-.74L4.52 3.6l-1.5-1.5-1.41 1.41 1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41-2.16-2.17zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_off_twotone = ic_alarm_off_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_on.js b/dist/md/ic_alarm_on.js
new file mode 100644
index 000000000..ecc82c3c0
--- /dev/null
+++ b/dist/md/ic_alarm_on.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_on = void 0;
+var ic_alarm_on = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.46-5.47L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06-4.93 4.95z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_on = ic_alarm_on;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_on_outline.js b/dist/md/ic_alarm_on_outline.js
new file mode 100644
index 000000000..a13173e6d
--- /dev/null
+++ b/dist/md/ic_alarm_on_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_on_outline = void 0;
+var ic_alarm_on_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_on_outline = ic_alarm_on_outline;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_on_twotone.js b/dist/md/ic_alarm_on_twotone.js
new file mode 100644
index 000000000..8f60f2f99
--- /dev/null
+++ b/dist/md/ic_alarm_on_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_on_twotone = void 0;
+var ic_alarm_on_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm-1.47 10.64l-3.18-3.18 1.06-1.06 2.13 2.13 4.93-4.95 1.06 1.06-6 6z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_on_twotone = ic_alarm_on_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_outline.js b/dist/md/ic_alarm_outline.js
new file mode 100644
index 000000000..f36a4ad2e
--- /dev/null
+++ b/dist/md/ic_alarm_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_outline = void 0;
+var ic_alarm_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_outline = ic_alarm_outline;
\ No newline at end of file
diff --git a/dist/md/ic_alarm_twotone.js b/dist/md/ic_alarm_twotone.js
new file mode 100644
index 000000000..4358e64dd
--- /dev/null
+++ b/dist/md/ic_alarm_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alarm_twotone = void 0;
+var ic_alarm_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alarm_twotone = ic_alarm_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_album.js b/dist/md/ic_album.js
new file mode 100644
index 000000000..2eea8211a
--- /dev/null
+++ b/dist/md/ic_album.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_album = void 0;
+var ic_album = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_album = ic_album;
\ No newline at end of file
diff --git a/dist/md/ic_album_outline.js b/dist/md/ic_album_outline.js
new file mode 100644
index 000000000..56098b037
--- /dev/null
+++ b/dist/md/ic_album_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_album_outline = void 0;
+var ic_album_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_album_outline = ic_album_outline;
\ No newline at end of file
diff --git a/dist/md/ic_album_twotone.js b/dist/md/ic_album_twotone.js
new file mode 100644
index 000000000..99033eabb
--- /dev/null
+++ b/dist/md/ic_album_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_album_twotone = void 0;
+var ic_album_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 12.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_album_twotone = ic_album_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_all_inbox.js b/dist/md/ic_all_inbox.js
new file mode 100644
index 000000000..8da5d9a78
--- /dev/null
+++ b/dist/md/ic_all_inbox.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_all_inbox = void 0;
+var ic_all_inbox = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v3c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_all_inbox = ic_all_inbox;
\ No newline at end of file
diff --git a/dist/md/ic_all_inbox_outline.js b/dist/md/ic_all_inbox_outline.js
new file mode 100644
index 000000000..0f5616514
--- /dev/null
+++ b/dist/md/ic_all_inbox_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_all_inbox_outline = void 0;
+var ic_all_inbox_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-2 7h-3v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-4zM5 17h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_all_inbox_outline = ic_all_inbox_outline;
\ No newline at end of file
diff --git a/dist/md/ic_all_inbox_twotone.js b/dist/md/ic_all_inbox_twotone.js
new file mode 100644
index 000000000..1e220f652
--- /dev/null
+++ b/dist/md/ic_all_inbox_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_all_inbox_twotone = void 0;
+var ic_all_inbox_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-5 7v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-7zm-9 2h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M8.13 10H5v2h4.4c-.6-.53-1.06-1.22-1.27-2zm6.47 2H19v-2h-3.13c-.21.78-.67 1.47-1.27 2zm-6.38 5.25c-.03-.08-.06-.16-.09-.25H5v2h4.4c-.53-.47-.94-1.07-1.18-1.75zm7.65-.25c-.02.09-.06.17-.09.25-.23.68-.64 1.28-1.18 1.75H19v-2h-3.13z",
+ "opacity": ".3"
+ },
+ "children": []
+ }]
+};
+exports.ic_all_inbox_twotone = ic_all_inbox_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_all_inclusive.js b/dist/md/ic_all_inclusive.js
new file mode 100644
index 000000000..66b456e8b
--- /dev/null
+++ b/dist/md/ic_all_inclusive.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_all_inclusive = void 0;
+var ic_all_inclusive = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L12 10.66 10.48 12h.01L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z"
+ },
+ "children": []
+ }]
+};
+exports.ic_all_inclusive = ic_all_inclusive;
\ No newline at end of file
diff --git a/dist/md/ic_all_inclusive_outline.js b/dist/md/ic_all_inclusive_outline.js
new file mode 100644
index 000000000..41e66a60d
--- /dev/null
+++ b/dist/md/ic_all_inclusive_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_all_inclusive_outline = void 0;
+var ic_all_inclusive_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z"
+ },
+ "children": []
+ }]
+};
+exports.ic_all_inclusive_outline = ic_all_inclusive_outline;
\ No newline at end of file
diff --git a/dist/md/ic_all_inclusive_twotone.js b/dist/md/ic_all_inclusive_twotone.js
new file mode 100644
index 000000000..2f975cbbd
--- /dev/null
+++ b/dist/md/ic_all_inclusive_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_all_inclusive_twotone = void 0;
+var ic_all_inclusive_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z"
+ },
+ "children": []
+ }]
+};
+exports.ic_all_inclusive_twotone = ic_all_inclusive_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_all_out.js b/dist/md/ic_all_out.js
new file mode 100644
index 000000000..758c14838
--- /dev/null
+++ b/dist/md/ic_all_out.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_all_out = void 0;
+var ic_all_out = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M16.21 4.16l4 4v-4zm4 12l-4 4h4zm-12 4l-4-4v4zm-4-12l4-4h-4zm12.95-.95c-2.73-2.73-7.17-2.73-9.9 0s-2.73 7.17 0 9.9 7.17 2.73 9.9 0 2.73-7.16 0-9.9zm-1.1 8.8c-2.13 2.13-5.57 2.13-7.7 0s-2.13-5.57 0-7.7 5.57-2.13 7.7 0 2.13 5.57 0 7.7z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M.21.16h24v24h-24z",
+ "fill": "none"
+ },
+ "children": []
+ }]
+};
+exports.ic_all_out = ic_all_out;
\ No newline at end of file
diff --git a/dist/md/ic_all_out_outline.js b/dist/md/ic_all_out_outline.js
new file mode 100644
index 000000000..e36360623
--- /dev/null
+++ b/dist/md/ic_all_out_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_all_out_outline = void 0;
+var ic_all_out_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_all_out_outline = ic_all_out_outline;
\ No newline at end of file
diff --git a/dist/md/ic_all_out_twotone.js b/dist/md/ic_all_out_twotone.js
new file mode 100644
index 000000000..186207b20
--- /dev/null
+++ b/dist/md/ic_all_out_twotone.js
@@ -0,0 +1,33 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_all_out_twotone = void 0;
+var ic_all_out_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "circle",
+ "attribs": {
+ "cx": "12",
+ "cy": "12",
+ "opacity": ".3",
+ "r": "5"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"
+ },
+ "children": []
+ }]
+};
+exports.ic_all_out_twotone = ic_all_out_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_alt_route.js b/dist/md/ic_alt_route.js
new file mode 100644
index 000000000..37111a53b
--- /dev/null
+++ b/dist/md/ic_alt_route.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alt_route = void 0;
+var ic_alt_route = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_alt_route = ic_alt_route;
\ No newline at end of file
diff --git a/dist/md/ic_alt_route_outline.js b/dist/md/ic_alt_route_outline.js
new file mode 100644
index 000000000..0249f716f
--- /dev/null
+++ b/dist/md/ic_alt_route_outline.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alt_route_outline = void 0;
+var ic_alt_route_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_alt_route_outline = ic_alt_route_outline;
\ No newline at end of file
diff --git a/dist/md/ic_alt_route_twotone.js b/dist/md/ic_alt_route_twotone.js
new file mode 100644
index 000000000..eb9b43518
--- /dev/null
+++ b/dist/md/ic_alt_route_twotone.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alt_route_twotone = void 0;
+var ic_alt_route_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_alt_route_twotone = ic_alt_route_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_alternate_email.js b/dist/md/ic_alternate_email.js
new file mode 100644
index 000000000..6675a6472
--- /dev/null
+++ b/dist/md/ic_alternate_email.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alternate_email = void 0;
+var ic_alternate_email = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alternate_email = ic_alternate_email;
\ No newline at end of file
diff --git a/dist/md/ic_alternate_email_outline.js b/dist/md/ic_alternate_email_outline.js
new file mode 100644
index 000000000..4bb5de4dd
--- /dev/null
+++ b/dist/md/ic_alternate_email_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alternate_email_outline = void 0;
+var ic_alternate_email_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 1.95c-5.52 0-10 4.48-10 10s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"
+ },
+ "children": []
+ }]
+};
+exports.ic_alternate_email_outline = ic_alternate_email_outline;
\ No newline at end of file
diff --git a/dist/md/ic_alternate_email_twotone.js b/dist/md/ic_alternate_email_twotone.js
new file mode 100644
index 000000000..7695ef219
--- /dev/null
+++ b/dist/md/ic_alternate_email_twotone.js
@@ -0,0 +1,25 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_alternate_email_twotone = void 0;
+var ic_alternate_email_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M12 21.95h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10s-10 4.48-10 10 4.48 10 10 10zm0-7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z",
+ "fill-opacity": ".9"
+ },
+ "children": []
+ }]
+};
+exports.ic_alternate_email_twotone = ic_alternate_email_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_amp_stories.js b/dist/md/ic_amp_stories.js
new file mode 100644
index 000000000..b27b847e8
--- /dev/null
+++ b/dist/md/ic_amp_stories.js
@@ -0,0 +1,105 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_amp_stories = void 0;
+var ic_amp_stories = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "15",
+ "width": "10",
+ "x": "7",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "15",
+ "width": "10",
+ "x": "7",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "3",
+ "y": "6"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "3",
+ "y": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "19",
+ "y": "6"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "19",
+ "y": "6"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_amp_stories = ic_amp_stories;
\ No newline at end of file
diff --git a/dist/md/ic_amp_stories_outline.js b/dist/md/ic_amp_stories_outline.js
new file mode 100644
index 000000000..936f2c0ac
--- /dev/null
+++ b/dist/md/ic_amp_stories_outline.js
@@ -0,0 +1,99 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_amp_stories_outline = void 0;
+var ic_amp_stories_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7,19h10V4H7V19z M9,6h6v11H9V6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7,19h10V4H7V19z M9,6h6v11H9V6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "3",
+ "y": "6"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "3",
+ "y": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "19",
+ "y": "6"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "19",
+ "y": "6"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_amp_stories_outline = ic_amp_stories_outline;
\ No newline at end of file
diff --git a/dist/md/ic_amp_stories_twotone.js b/dist/md/ic_amp_stories_twotone.js
new file mode 100644
index 000000000..f1e9076e0
--- /dev/null
+++ b/dist/md/ic_amp_stories_twotone.js
@@ -0,0 +1,129 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_amp_stories_twotone = void 0;
+var ic_amp_stories_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "opacity": ".3"
+ },
+ "children": [{
+ "name": "g",
+ "attribs": {
+ "opacity": ".3"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "6",
+ "x": "9",
+ "y": "6"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "6",
+ "x": "9",
+ "y": "6"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M7,19h10V4H7V19z M9,6h6v11H9V6z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M7,19h10V4H7V19z M9,6h6v11H9V6z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "3",
+ "y": "6"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "3",
+ "y": "6"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "19",
+ "y": "6"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "11",
+ "width": "2",
+ "x": "19",
+ "y": "6"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_amp_stories_twotone = ic_amp_stories_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_analytics.js b/dist/md/ic_analytics.js
new file mode 100644
index 000000000..cbab21949
--- /dev/null
+++ b/dist/md/ic_analytics.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_analytics = void 0;
+var ic_analytics = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z"
+ },
+ "children": []
+ }]
+};
+exports.ic_analytics = ic_analytics;
\ No newline at end of file
diff --git a/dist/md/ic_analytics_outline.js b/dist/md/ic_analytics_outline.js
new file mode 100644
index 000000000..e5bbfc6f5
--- /dev/null
+++ b/dist/md/ic_analytics_outline.js
@@ -0,0 +1,123 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_analytics_outline = void 0;
+var ic_analytics_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "5",
+ "width": "2",
+ "x": "7",
+ "y": "12"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "5",
+ "width": "2",
+ "x": "7",
+ "y": "12"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "10",
+ "width": "2",
+ "x": "15",
+ "y": "7"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "10",
+ "width": "2",
+ "x": "15",
+ "y": "7"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "3",
+ "width": "2",
+ "x": "11",
+ "y": "14"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "3",
+ "width": "2",
+ "x": "11",
+ "y": "14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "2",
+ "width": "2",
+ "x": "11",
+ "y": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "2",
+ "width": "2",
+ "x": "11",
+ "y": "10"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_analytics_outline = ic_analytics_outline;
\ No newline at end of file
diff --git a/dist/md/ic_analytics_twotone.js b/dist/md/ic_analytics_twotone.js
new file mode 100644
index 000000000..8d090fe1a
--- /dev/null
+++ b/dist/md/ic_analytics_twotone.js
@@ -0,0 +1,151 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_analytics_twotone = void 0;
+var ic_analytics_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "14",
+ "opacity": ".3",
+ "width": "14",
+ "x": "5",
+ "y": "5"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "14",
+ "opacity": ".3",
+ "width": "14",
+ "x": "5",
+ "y": "5"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "5",
+ "width": "2",
+ "x": "7",
+ "y": "12"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "5",
+ "width": "2",
+ "x": "7",
+ "y": "12"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "10",
+ "width": "2",
+ "x": "15",
+ "y": "7"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "10",
+ "width": "2",
+ "x": "15",
+ "y": "7"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "3",
+ "width": "2",
+ "x": "11",
+ "y": "14"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "3",
+ "width": "2",
+ "x": "11",
+ "y": "14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "2",
+ "width": "2",
+ "x": "11",
+ "y": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "2",
+ "width": "2",
+ "x": "11",
+ "y": "10"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_analytics_twotone = ic_analytics_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_anchor.js b/dist/md/ic_anchor.js
new file mode 100644
index 000000000..dc65bd141
--- /dev/null
+++ b/dist/md/ic_anchor.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_anchor = void 0;
+var ic_anchor = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_anchor = ic_anchor;
\ No newline at end of file
diff --git a/dist/md/ic_anchor_outline.js b/dist/md/ic_anchor_outline.js
new file mode 100644
index 000000000..29660f1e1
--- /dev/null
+++ b/dist/md/ic_anchor_outline.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_anchor_outline = void 0;
+var ic_anchor_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_anchor_outline = ic_anchor_outline;
\ No newline at end of file
diff --git a/dist/md/ic_anchor_twotone.js b/dist/md/ic_anchor_twotone.js
new file mode 100644
index 000000000..5b5a4bea4
--- /dev/null
+++ b/dist/md/ic_anchor_twotone.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_anchor_twotone = void 0;
+var ic_anchor_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_anchor_twotone = ic_anchor_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_android.js b/dist/md/ic_android.js
new file mode 100644
index 000000000..27591c365
--- /dev/null
+++ b/dist/md/ic_android.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_android = void 0;
+var ic_android = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_android = ic_android;
\ No newline at end of file
diff --git a/dist/md/ic_android_outline.js b/dist/md/ic_android_outline.js
new file mode 100644
index 000000000..89c6869a2
--- /dev/null
+++ b/dist/md/ic_android_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_android_outline = void 0;
+var ic_android_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 18c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h2v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h1c.55 0 1-.45 1-1V8H6v10zM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5S5 17.33 5 16.5v-7C5 8.67 4.33 8 3.5 8zm17 0c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5zm-4.97-5.84l1.3-1.3c.2-.2.2-.51 0-.71s-.51-.2-.71 0l-1.48 1.48C13.85 1.23 12.95 1 12 1c-.96 0-1.86.23-2.66.63L7.85.15c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l1.31 1.31C6.97 3.26 6 5.01 6 7h12c0-1.99-.97-3.75-2.47-4.84zM10 5H9V4h1v1zm5 0h-1V4h1v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_android_outline = ic_android_outline;
\ No newline at end of file
diff --git a/dist/md/ic_android_twotone.js b/dist/md/ic_android_twotone.js
new file mode 100644
index 000000000..7f57e74a0
--- /dev/null
+++ b/dist/md/ic_android_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_android_twotone = void 0;
+var ic_android_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M6 18c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h2v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h1c.55 0 1-.45 1-1V8H6v10zM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5S5 17.33 5 16.5v-7C5 8.67 4.33 8 3.5 8zm17 0c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5zm-4.97-5.84l1.3-1.3c.2-.2.2-.51 0-.71s-.51-.2-.71 0l-1.48 1.48C13.85 1.23 12.95 1 12 1c-.96 0-1.86.23-2.66.63L7.85.15c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l1.31 1.31C6.97 3.26 6 5.01 6 7h12c0-1.99-.97-3.75-2.47-4.84zM10 5H9V4h1v1zm5 0h-1V4h1v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_android_twotone = ic_android_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_animation.js b/dist/md/ic_animation.js
new file mode 100644
index 000000000..ed3ed219b
--- /dev/null
+++ b/dist/md/ic_animation.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_animation = void 0;
+var ic_animation = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0zm0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }]
+};
+exports.ic_animation = ic_animation;
\ No newline at end of file
diff --git a/dist/md/ic_announcement.js b/dist/md/ic_announcement.js
new file mode 100644
index 000000000..68c832a6c
--- /dev/null
+++ b/dist/md/ic_announcement.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_announcement = void 0;
+var ic_announcement = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_announcement = ic_announcement;
\ No newline at end of file
diff --git a/dist/md/ic_announcement_outline.js b/dist/md/ic_announcement_outline.js
new file mode 100644
index 000000000..4285cde02
--- /dev/null
+++ b/dist/md/ic_announcement_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_announcement_outline = void 0;
+var ic_announcement_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_announcement_outline = ic_announcement_outline;
\ No newline at end of file
diff --git a/dist/md/ic_announcement_twotone.js b/dist/md/ic_announcement_twotone.js
new file mode 100644
index 000000000..faa86888b
--- /dev/null
+++ b/dist/md/ic_announcement_twotone.js
@@ -0,0 +1,31 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_announcement_twotone = void 0;
+var ic_announcement_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 4v13.17l.59-.59.58-.58H20V4H4zm9 11h-2v-2h2v2zm0-4h-2V5h2v6z",
+ "opacity": ".3"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z"
+ },
+ "children": []
+ }]
+};
+exports.ic_announcement_twotone = ic_announcement_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_apartment.js b/dist/md/ic_apartment.js
new file mode 100644
index 000000000..a1492e25d
--- /dev/null
+++ b/dist/md/ic_apartment.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_apartment = void 0;
+var ic_apartment = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_apartment = ic_apartment;
\ No newline at end of file
diff --git a/dist/md/ic_apartment_outline.js b/dist/md/ic_apartment_outline.js
new file mode 100644
index 000000000..c8177a569
--- /dev/null
+++ b/dist/md/ic_apartment_outline.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_apartment_outline = void 0;
+var ic_apartment_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_apartment_outline = ic_apartment_outline;
\ No newline at end of file
diff --git a/dist/md/ic_apartment_twotone.js b/dist/md/ic_apartment_twotone.js
new file mode 100644
index 000000000..b991f095c
--- /dev/null
+++ b/dist/md/ic_apartment_twotone.js
@@ -0,0 +1,47 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_apartment_twotone = void 0;
+var ic_apartment_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_apartment_twotone = ic_apartment_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_api.js b/dist/md/ic_api.js
new file mode 100644
index 000000000..41bbc4db5
--- /dev/null
+++ b/dist/md/ic_api.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_api = void 0;
+var ic_api = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_api = ic_api;
\ No newline at end of file
diff --git a/dist/md/ic_api_outline.js b/dist/md/ic_api_outline.js
new file mode 100644
index 000000000..1ef769d85
--- /dev/null
+++ b/dist/md/ic_api_outline.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_api_outline = void 0;
+var ic_api_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_api_outline = ic_api_outline;
\ No newline at end of file
diff --git a/dist/md/ic_api_twotone.js b/dist/md/ic_api_twotone.js
new file mode 100644
index 000000000..a422fa459
--- /dev/null
+++ b/dist/md/ic_api_twotone.js
@@ -0,0 +1,43 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_api_twotone = void 0;
+var ic_api_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_api_twotone = ic_api_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_app_blocking.js b/dist/md/ic_app_blocking.js
new file mode 100644
index 000000000..780ee9f47
--- /dev/null
+++ b/dist/md/ic_app_blocking.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_app_blocking = void 0;
+var ic_app_blocking = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_app_blocking = ic_app_blocking;
\ No newline at end of file
diff --git a/dist/md/ic_app_blocking_outline.js b/dist/md/ic_app_blocking_outline.js
new file mode 100644
index 000000000..7d3ad5a96
--- /dev/null
+++ b/dist/md/ic_app_blocking_outline.js
@@ -0,0 +1,63 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_app_blocking_outline = void 0;
+var ic_app_blocking_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_app_blocking_outline = ic_app_blocking_outline;
\ No newline at end of file
diff --git a/dist/md/ic_app_blocking_twotone.js b/dist/md/ic_app_blocking_twotone.js
new file mode 100644
index 000000000..f7580ea55
--- /dev/null
+++ b/dist/md/ic_app_blocking_twotone.js
@@ -0,0 +1,111 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_app_blocking_twotone = void 0;
+var ic_app_blocking_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "3"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "20"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "20"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_app_blocking_twotone = ic_app_blocking_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_app_registration.js b/dist/md/ic_app_registration.js
new file mode 100644
index 000000000..a99fa56ae
--- /dev/null
+++ b/dist/md/ic_app_registration.js
@@ -0,0 +1,169 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_app_registration = void 0;
+var ic_app_registration = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "4",
+ "x": "10",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "4",
+ "x": "10",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "4",
+ "x": "4",
+ "y": "16"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "4",
+ "x": "4",
+ "y": "16"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "4",
+ "x": "4",
+ "y": "10"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "4",
+ "x": "4",
+ "y": "10"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "4",
+ "x": "4",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "4",
+ "x": "4",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "14,12.42 14,10 10,10 10,14 12.42,14"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "14,12.42 14,10 10,10 10,14 12.42,14"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M20.88,11.29l-1.17-1.17c-0.16-0.16-0.42-0.16-0.58,0L18.25,11L20,12.75l0.88-0.88C21.04,11.71,21.04,11.45,20.88,11.29z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M20.88,11.29l-1.17-1.17c-0.16-0.16-0.42-0.16-0.58,0L18.25,11L20,12.75l0.88-0.88C21.04,11.71,21.04,11.45,20.88,11.29z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "polygon",
+ "attribs": {
+ "points": "11,18.25 11,20 12.75,20 19.42,13.33 17.67,11.58"
+ },
+ "children": [{
+ "name": "polygon",
+ "attribs": {
+ "points": "11,18.25 11,20 12.75,20 19.42,13.33 17.67,11.58"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "4",
+ "x": "16",
+ "y": "4"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "4",
+ "width": "4",
+ "x": "16",
+ "y": "4"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_app_registration = ic_app_registration;
\ No newline at end of file
diff --git a/dist/md/ic_app_settings_alt.js b/dist/md/ic_app_settings_alt.js
new file mode 100644
index 000000000..492583d78
--- /dev/null
+++ b/dist/md/ic_app_settings_alt.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_app_settings_alt = void 0;
+var ic_app_settings_alt = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21.81 12.74l-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17 17h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1z"
+ },
+ "children": []
+ }]
+};
+exports.ic_app_settings_alt = ic_app_settings_alt;
\ No newline at end of file
diff --git a/dist/md/ic_app_settings_alt_outline.js b/dist/md/ic_app_settings_alt_outline.js
new file mode 100644
index 000000000..abf558f97
--- /dev/null
+++ b/dist/md/ic_app_settings_alt_outline.js
@@ -0,0 +1,83 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_app_settings_alt_outline = void 0;
+var ic_app_settings_alt_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "1",
+ "width": "10",
+ "x": "7",
+ "y": "20"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "1",
+ "width": "10",
+ "x": "7",
+ "y": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "1",
+ "width": "10",
+ "x": "7",
+ "y": "3"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "1",
+ "width": "10",
+ "x": "7",
+ "y": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05c0.03-0.02,0.06-0.04,0.09-0.06 l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3 c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05c0.03-0.02,0.06-0.04,0.09-0.06 l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3 c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+};
+exports.ic_app_settings_alt_outline = ic_app_settings_alt_outline;
\ No newline at end of file
diff --git a/dist/md/ic_app_settings_alt_twotone.js b/dist/md/ic_app_settings_alt_twotone.js
new file mode 100644
index 000000000..442e9fb4f
--- /dev/null
+++ b/dist/md/ic_app_settings_alt_twotone.js
@@ -0,0 +1,131 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_app_settings_alt_twotone = void 0;
+var ic_app_settings_alt_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "1",
+ "width": "10",
+ "x": "7",
+ "y": "20"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "1",
+ "width": "10",
+ "x": "7",
+ "y": "20"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "1",
+ "width": "10",
+ "x": "7",
+ "y": "3"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "1",
+ "width": "10",
+ "x": "7",
+ "y": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05 c0.03-0.02,0.06-0.04,0.09-0.06l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48 C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2 v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05 c0.03-0.02,0.06-0.04,0.09-0.06l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48 C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2 v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "3"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "3"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "20"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "height": "1",
+ "opacity": ".3",
+ "width": "10",
+ "x": "7",
+ "y": "20"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_app_settings_alt_twotone = ic_app_settings_alt_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_approval.js b/dist/md/ic_approval.js
new file mode 100644
index 000000000..2d87450d2
--- /dev/null
+++ b/dist/md/ic_approval.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_approval = void 0;
+var ic_approval = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 16v6h16v-6c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm14 2H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5zm0 9L9 7c0-1.66 1.34-3 3-3s3 1.34 3 3l-3 4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_approval = ic_approval;
\ No newline at end of file
diff --git a/dist/md/ic_apps.js b/dist/md/ic_apps.js
new file mode 100644
index 000000000..267b6319c
--- /dev/null
+++ b/dist/md/ic_apps.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_apps = void 0;
+var ic_apps = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_apps = ic_apps;
\ No newline at end of file
diff --git a/dist/md/ic_apps_outline.js b/dist/md/ic_apps_outline.js
new file mode 100644
index 000000000..1cad3ee92
--- /dev/null
+++ b/dist/md/ic_apps_outline.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_apps_outline = void 0;
+var ic_apps_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_apps_outline = ic_apps_outline;
\ No newline at end of file
diff --git a/dist/md/ic_apps_twotone.js b/dist/md/ic_apps_twotone.js
new file mode 100644
index 000000000..7b33c4397
--- /dev/null
+++ b/dist/md/ic_apps_twotone.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_apps_twotone = void 0;
+var ic_apps_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0V0z",
+ "fill": "none"
+ },
+ "children": []
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z"
+ },
+ "children": []
+ }]
+};
+exports.ic_apps_twotone = ic_apps_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_architecture.js b/dist/md/ic_architecture.js
new file mode 100644
index 000000000..a9e1c48e5
--- /dev/null
+++ b/dist/md/ic_architecture.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_architecture = void 0;
+var ic_architecture = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_architecture = ic_architecture;
\ No newline at end of file
diff --git a/dist/md/ic_architecture_outline.js b/dist/md/ic_architecture_outline.js
new file mode 100644
index 000000000..4467cc64a
--- /dev/null
+++ b/dist/md/ic_architecture_outline.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_architecture_outline = void 0;
+var ic_architecture_outline = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_architecture_outline = ic_architecture_outline;
\ No newline at end of file
diff --git a/dist/md/ic_architecture_twotone.js b/dist/md/ic_architecture_twotone.js
new file mode 100644
index 000000000..8561b6d48
--- /dev/null
+++ b/dist/md/ic_architecture_twotone.js
@@ -0,0 +1,79 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_architecture_twotone = void 0;
+var ic_architecture_twotone = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": [{
+ "name": "rect",
+ "attribs": {
+ "fill": "none",
+ "height": "24",
+ "width": "24"
+ },
+ "children": []
+ }]
+ }]
+ }, {
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "g",
+ "attribs": {},
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z"
+ },
+ "children": []
+ }]
+ }, {
+ "name": "path",
+ "attribs": {
+ "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"
+ },
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z"
+ },
+ "children": []
+ }]
+ }]
+ }]
+ }]
+ }]
+};
+exports.ic_architecture_twotone = ic_architecture_twotone;
\ No newline at end of file
diff --git a/dist/md/ic_archive.js b/dist/md/ic_archive.js
new file mode 100644
index 000000000..db9d2ae7d
--- /dev/null
+++ b/dist/md/ic_archive.js
@@ -0,0 +1,24 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.ic_archive = void 0;
+var ic_archive = {
+ "viewBox": "0 0 24 24",
+ "children": [{
+ "name": "path",
+ "attribs": {
+ "d": "M0 0h24v24H0z",
+ "fill": "none"
+ },
+ "children": []
+ }